You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I found that the format of geojson is wrong, there should be three square bracket in "coordinate part", but now there are only two.
here is a correct example below.
{"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [[ // <-----Here
[
-97.999417, 30.172574 // the longitude and latitude of the left up point of one sample image.
],
...
]]// <-----Here
},
"properties": {
"name": "train_1.png" // the sample name
}
},
...
]
}
It would be great that you guys can correct it.
The text was updated successfully, but these errors were encountered:
Great job on updating spatial information about each image in LEVIR_CD!
But I found that the format of geojson is wrong, there should be three square bracket in "coordinate part", but now there are only two.
here is a correct example below.
It would be great that you guys can correct it.
The text was updated successfully, but these errors were encountered: