Skip to content

Instantly share code, notes, and snippets.

View nigel-v-thomas's full-sized avatar

Nigel V Thomas nigel-v-thomas

View GitHub Profile
@nigel-v-thomas
nigel-v-thomas / osm_maps_downloader.py
Last active August 29, 2015 14:26 — forked from jessearmand/osm_maps_downloader.py
Download map tiles from MapQuest open street map source
#!/usr/local/bin/python
from sys import argv
import os
import math
import urllib2
def deg2num(lat_deg, lon_deg, zoom):
lat_rad = math.radians(lat_deg)
n = 2.0 ** zoom