Last active
May 8, 2022 15:27
-
-
Save 0Charliecat/4e6e2b74024ae7c17a32e25b99fe9e46 to your computer and use it in GitHub Desktop.
Sample of GeoJson file as data stream for bike sharing system
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", | |
"properties": { | |
"name": "ŽST", | |
"id": "pk1", | |
"bikes": 3, | |
"docks": 8 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.270143032073975, | |
48.282693128254074 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Radničné námestie", | |
"id": "pk2", | |
"bikes": 1, | |
"docks": 4 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.269770205020905, | |
48.28614320737679 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Pošta / OC Plus", | |
"id": "pk3", | |
"bikes": 0, | |
"docks": 4 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.26876974105835, | |
48.28673753270632 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "OC Plus", | |
"id": "pk4", | |
"bikes": 1, | |
"docks": 4 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.268337905406952, | |
48.287267600813934 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Kultúrne Centrum", | |
"id": "pk5", | |
"bikes": 1, | |
"docks": 4 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.2677880525589, | |
48.28792080849053 | |
] | |
} | |
}, | |
{ | |
"type": "Feature", | |
"properties": { | |
"name": "Zámok", | |
"id": "pk6", | |
"bikes": 5, | |
"docks": 8 | |
}, | |
"geometry": { | |
"type": "Point", | |
"coordinates": [ | |
17.268404960632324, | |
48.290181984752124 | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment