Upload test_features.geojson with huggingface_hub
Browse files- test_features.geojson +15 -0
test_features.geojson
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"type": "FeatureCollection",
|
| 3 |
+
"features": [
|
| 4 |
+
{
|
| 5 |
+
"type": "Feature",
|
| 6 |
+
"properties": {"name": "test_point_1"},
|
| 7 |
+
"geometry": {"type": "Point", "coordinates": [0, 0]}
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"type": "Feature",
|
| 11 |
+
"properties": {"name": "test_point_2"},
|
| 12 |
+
"geometry": {"type": "Point", "coordinates": [1, 1]}
|
| 13 |
+
}
|
| 14 |
+
]
|
| 15 |
+
}
|