This file contains hidden or 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 | |
| # HEMA ExplorerMAP | |
| # Download tiles from http://skippy.hema-labs.com/AUS/ExplorerMap_v1_2/ | |
| # To remove empty files when it finishes use: find . -type d -empty -delete | |
| # To compress the files use: advpng -z4 | |
| # To build an .mbtiles flies from the resulting folders, use https://github.com/mapbox/mbutil | |
| import sys | |
| import os | |
| import math | |
| import requests |
NewerOlder