Created
September 21, 2015 23:58
Map Zoom and Rotate
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
# Download and Transform the 1:50m Country Shapefiles from Natural Earth | |
# http://www.naturalearthdata.com/downloads/50m-cultural-vectors/ | |
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/50m/cultural/ne_50m_admin_0_countries.zip | |
# Download the zip file from the Natural Earth server | |
ne_50m_admin_0_countries.zip: | |
curl -LO $(URL) | |
# Unzip the shapefiles | |
ne_50m_admin_0_countries.shp: ne_50m_admin_0_countries.zip | |
unzip ne_50m_admin_0_countries.zip | |
touch ne_50m_admin_0_countries.shp | |
# Convert the shapefiles to GeoJSON | |
countries.geojson: ne_50m_admin_0_countries.shp | |
ogr2ogr -f GeoJSON countries.geojson ne_50m_admin_0_countries.shp | |
# Convert the GeoJSON file to TopoJSON | |
countries.topojson: countries.geojson | |
topojson -p -o countries.topojson countries.geojson | |
# Remove source and temporary files | |
clean: | |
rm ne_50m_admin_0_countries* |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment