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
#!/usr/bin/python | |
# GoogleMapDownloader.py | |
# Created by Emilio Riquelme [[email protected]] | |
# | |
# A script which when given a longitude, latitude and zoom level downloads a | |
# high resolution google map | |
import urllib.request | |
from PIL import Image | |
import os | |
import math |