walz.geojson 514 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"type": "FeatureCollection",
"name": "data_point",
"crs": { 
    "type": "name",
     "properties": { 
         "name": "urn:ogc:def:crs:OGC:1.3:CRS84" 
        } 
    },
"features": [
    { 
        "type": "Feature",
         "properties": { 
             "id": null,
              "name": "datapoint"
         },
         "geometry": { 
             "type": "Point",
              "coordinates": [ 
Patrick's avatar
Patrick committed
20
21
                    9.102749376273382,
          48.805324304404905
22
23
24
25
26
                   ] 
        } 
    }
]
}