Skip to content

Instantly share code, notes, and snippets.

View pnavarrc's full-sized avatar

Pablo Navarro pnavarrc

  • Act Now Coalition
  • Vancouver, Canada
  • 11:43 (UTC -07:00)
View GitHub Profile
@pnavarrc
pnavarrc / Makefile
Created September 22, 2015 12:47
D3 Geo Projection Plugin
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles
@pnavarrc
pnavarrc / Makefile
Last active September 23, 2015 00:13
Adding labels to a Map
# 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
@pnavarrc
pnavarrc / Makefile
Last active September 25, 2015 23:11
Simple Map with D3
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles
@pnavarrc
pnavarrc / Makefile
Last active September 26, 2015 02:47
Map with Graticule
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles
@pnavarrc
pnavarrc / Makefile
Last active September 26, 2015 03:03
Mercator Projection
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles
@pnavarrc
pnavarrc / greenland.geojson
Created September 26, 2015 03:52
Greenland
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pnavarrc
pnavarrc / greenland.geojson
Created September 26, 2015 03:56
Greenland (Centered)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pnavarrc
pnavarrc / countries.topojson
Last active September 26, 2015 12:31
Custom Raw Projection
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pnavarrc
pnavarrc / Makefile
Created September 26, 2015 14:23
Click and Zoom
# 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
@pnavarrc
pnavarrc / Makefile
Last active September 26, 2015 14:38
Zoom Behavior (Scale)
# Download and Transform the 1:50m Country Shapefiles from Natural Earth
# http://www.naturalearthdata.com/downloads/110m-physical-vectors/
URL = http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/physical/ne_110m_land.zip
# Download the zip file from the Natural Earth server
ne_110m_land.zip:
curl -LO $(URL)
# Unzip the shapefiles