brownag commited on
Commit
a156f80
·
verified ·
1 Parent(s): 9a888cb

Upload test_features.geojson with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
+ }