Skip to content

Instantly share code, notes, and snippets.

@rodrigosdo
Forked from cristiangreco/data.geojson
Created March 29, 2018 22:22
Show Gist options
  • Save rodrigosdo/4187bbe2cc8fe506cf3f2186e44ba89f to your computer and use it in GitHub Desktop.
Save rodrigosdo/4187bbe2cc8fe506cf3f2186e44ba89f to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
#!/usr/bin/env python
import json
with open("data.geojson") as file:
j = json.load(file)
for feature in j["features"]:
id = feature["id"]
name = "h:" + id[5:]
coords = feature["geometry"]["coordinates"]
print "set " + name + " '" + json.dumps(feature) + "'"
print "geoadd hotels " + str(coords[0]) + " " + str(coords[1]) + " " + name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment