Skip to content

Instantly share code, notes, and snippets.

@eightysteele
Last active December 10, 2015 18:48
Show Gist options
  • Save eightysteele/4476832 to your computer and use it in GitHub Desktop.
Save eightysteele/4476832 to your computer and use it in GitHub Desktop.
WIP: Geomancer API JSON response. The georefs.feature is a GeoJSON Feature Object (http://www.geojson.org/geojson-spec.html#feature-objects) and the geometry can be any GeoJSON Geometry object (http://www.geojson.org/geojson-spec.html#geometry-objects).
{
"locality":{
"original":"Berkeley",
"normalized":"berkeley"
},
"georefs":[
{
"feature":{
"type": "Feature",
"bbox": [-180.0, -90.0, 180.0, 90.0],
"geometry": {
"type": "Point",
"coordinates": [100.0, 0.0]
}
},
"uncertainty": 100
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment