Last active
May 22, 2024 05:14
-
-
Save madole/31f236e51977a3e0712fe552d0ef5bc2 to your computer and use it in GitHub Desktop.
GeoJSON Point
This file contains hidden or 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": "b2d6c2e1-0f1b-4b38-bd83-771f134dc1a4", | |
"properties": { | |
"timestamp": "2024-05-17T10:00:00Z", | |
"confidence": 0.74 | |
}, | |
"geometry": { | |
"type": "GeometryCollection", | |
"geometries": [ | |
{ | |
"type": "Point", | |
"coordinates": [ | |
148.648375, | |
-31.223779 | |
] | |
}, | |
{ | |
"type": "Polygon", | |
"coordinates": [ | |
[ | |
[148.648375, -31.123779], | |
[148.748375, -31.173779], | |
[148.748375, -31.273779], | |
[148.648375, -31.323779], | |
[148.548375, -31.273779], | |
[148.548375, -31.173779], | |
[148.648375, -31.123779] | |
] | |
] | |
} | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment