From b61db21d791848a78b1a83497a8fa3e434452254 Mon Sep 17 00:00:00 2001 From: Dhiraj Srivastava Date: Mon, 25 Nov 2024 09:19:41 -0600 Subject: [PATCH] Lat/Long geojson --- tests/testdata/epsg4326points.geojson | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/testdata/epsg4326points.geojson diff --git a/tests/testdata/epsg4326points.geojson b/tests/testdata/epsg4326points.geojson new file mode 100644 index 0000000..0e0a503 --- /dev/null +++ b/tests/testdata/epsg4326points.geojson @@ -0,0 +1,12 @@ +{ +"type": "FeatureCollection", +"name": "epsg4326points", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "Point", "coordinates": [ -90.457889274175201, 38.847795218128709 ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "Point", "coordinates": [ -90.457842139564363, 38.847839210432156 ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "Point", "coordinates": [ -90.457876704945647, 38.847903627733636 ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "Point", "coordinates": [ -90.458036962622501, 38.847880060428217 ] } }, +{ "type": "Feature", "properties": { "id": null }, "geometry": { "type": "Point", "coordinates": [ -90.457790291492444, 38.847996325801624 ] } } +] +}