This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# author: Bartosz Mazurkiewicz | |
# Downloading OSM data via the overpass API with python3. Pay attention to not generate that much traffic. | |
# The servers are for everyone and the resources are limited. See the usage policy at http://wiki.openstreetmap.org/wiki/Overpass_API | |
import time | |
import os | |
import urllib.request | |
# Bounding box - example Florence, Italy | |
north = str(43.8) |