abstreet/data/geojson_to_osmosis.py

11 lines
158 B
Python
Raw Normal View History

#!/usr/bin/python3
coordinates = [
]
print('map_name')
print('1')
for (x, y) in coordinates:
print(' {} {}'.format(x, y))
print('END')
print('END')