forked from pnavarrc's block: Adding labels to a Map
Last active
November 18, 2017 07:27
-
-
Save lorenzopub/45fdd5914d87b18e9e7e536149eb15f8 to your computer and use it in GitHub Desktop.
Adding labels to a Map
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
license: mit |
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
# 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* |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment