Ioannis K Breier
View the Project on GitHub jkarakas/Wrangle-OpenStreetMaps-Data-with-SQL
OpenStreetMap is a free, editable map of the whole world that is being built by volunteers largely from scratch and released with an open-content license.
The OpenStreetMap License allows free (or almost free) access to the map images and all of the underlying map data. The project aims to promote new and interesting uses of this data.
The application:
report_viz.html - The report documenting the audit process and SQL-query & aggregation findings.
data.py - Audit (using audit.py) the warsaw-poland.OSM
map and write it in the following CSV files(with the corresponding[headers]:
warsaw_poland_nodes.csv.......... ['id', 'lat', 'lon', 'user', 'uid', 'version', 'changeset', 'timestamp']
warsaw_poland_nodes_tags.csv..... ['id', 'key', 'value', 'type']
warsaw_poland_ways.csv........... ['id', 'user', 'uid', 'version', 'changeset', 'timestamp']
warsaw_poland_ways_nodes.csv..... ['id', 'key', 'value', 'type']
warsaw_poland_ways_tags.csv...... ['id', 'node_id', 'position']
store.py - Create a SQL Database warsaw_poland.db
and store the CSV’s according to the provided schema.