From a87ca8a94988714a18c685cdd2e0dd2f51ea2196 Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Fri, 26 Feb 2021 19:18:10 +0100 Subject: [PATCH] Add example GeoJson for testing --- sample-geojson/access.json | 43 ++++++++++++++++ sample-geojson/streets.json | 90 ++++++++++++++++++++++++++++++++++ sample-geojson/trainlines.json | 85 ++++++++++++++++++++++++++++++++ 3 files changed, 218 insertions(+) create mode 100644 sample-geojson/access.json create mode 100644 sample-geojson/streets.json create mode 100644 sample-geojson/trainlines.json diff --git a/sample-geojson/access.json b/sample-geojson/access.json new file mode 100644 index 0000000..81addb6 --- /dev/null +++ b/sample-geojson/access.json @@ -0,0 +1,43 @@ +[ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -856, + -305 + ], + [ + -863, + -273 + ] + ] + }, + "properties": { + "name": "S1:Tom Lehrer Station South" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -966, + 27 + ], + [ + -942, + 44 + ] + ] + }, + "properties": { + "name": "S1:Mueller Station East" + } + }, + { + + } +] diff --git a/sample-geojson/streets.json b/sample-geojson/streets.json new file mode 100644 index 0000000..1d91e4c --- /dev/null +++ b/sample-geojson/streets.json @@ -0,0 +1,90 @@ +[ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1213, + -305 + ], + [ + -771, + -305 + ], + [ + -771, + -301 + ], + [ + -645, + -101 + ] + ] + }, + "properties": { + "name": "Tom Lehrer Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -852, + 42 + ], + [ + -937, + 40 + ], + [ + -1080, + 42 + ], + [ + -1087, + 102 + ], + [ + -1141, + 121 + ] + ] + }, + "properties": { + "name": "Mister Mueller Street" + } + }, + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -1028, + 67 + ], + [ + -1033, + -134 + ], + [ + -1065, + -135 + ], + [ + -1086, + -409 + ] + ] + }, + "properties": { + "name": "Heinzi Street" + } + }, + { + + } +] diff --git a/sample-geojson/trainlines.json b/sample-geojson/trainlines.json new file mode 100644 index 0000000..7025238 --- /dev/null +++ b/sample-geojson/trainlines.json @@ -0,0 +1,85 @@ +[ + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -967, + 184 + ], + [ + -960, + -51 + ], + [ + -921, + -96 + ], + [ + -878, + -111 + ], + [ + -866, + -151 + ], + [ + -867, + -213 + ], + [ + -863, + -243 + ], + [ + -863, + -309 + ], + [ + -864, + -405 + ], + [ + -864, + -551 + ], + [ + -802, + -624 + ], + [ + -688, + -662 + ], + [ + -566, + -620 + ], + [ + -522, + -534 + ], + [ + -347, + -483 + ], + [ + -126, + -467 + ], + [ + 36, + -472 + ] + ] + }, + "properties": { + "name": "S1", + "line": "S1" + } + }, + { + + } +]