├── .gitignore ├── LICENSE ├── README.md ├── convert.py └── coordinates_to_address.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pbf 2 | *.db 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punnerud/rgcosm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punnerud/rgcosm/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punnerud/rgcosm/HEAD/convert.py -------------------------------------------------------------------------------- /coordinates_to_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/punnerud/rgcosm/HEAD/coordinates_to_address.py --------------------------------------------------------------------------------