add missing file

This commit is contained in:
rlx 2011-10-02 13:17:37 +00:00
parent 8e490eca2e
commit 67e4fe30a2

10
tools/geo/py/fix_json.py Normal file
View file

@ -0,0 +1,10 @@
import json
import ox
f = open('../json/countries.json')
data = json.loads(f.read())
f.close()
f = open('../json/countries.json', 'w')
f.write(json.dumps(data, indent=4, sort_keys=True))
f.close()