Last active
November 30, 2022 16:53
-
-
Save sicarul/ea4410d69d3b0ad48084efac20a42218 to your computer and use it in GitHub Desktop.
Test geojson
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"type": "Feature", | |
"id": 0, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [[ | |
[ | |
0.0011, | |
0.0011 | |
],[ | |
0.0019, | |
0.0011 | |
],[ | |
0.0019, | |
0.0019 | |
],[ | |
0.0011, | |
0.0019 | |
],[ | |
0.0011, | |
0.0011 | |
] | |
]] | |
}, | |
"properties": { | |
"tile_id": "1|1" | |
} | |
}, | |
{ | |
"type": "Feature", | |
"id": 1, | |
"geometry": { | |
"type": "Polygon", | |
"coordinates": [[ | |
[ | |
0.0021, | |
0.0021 | |
],[ | |
0.0029, | |
0.0021 | |
],[ | |
0.0029, | |
0.0029 | |
],[ | |
0.0021, | |
0.0029 | |
],[ | |
0.0021, | |
0.0021 | |
] | |
]] | |
}, | |
"properties": { | |
"tile_id": "2|2" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment