Skip to content

Instantly share code, notes, and snippets.

View pnavarrc's full-sized avatar

Pablo Navarro pnavarrc

  • Act Now Coalition
  • Vancouver, Canada
  • 19:40 (UTC -07:00)
View GitHub Profile
@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
Loading
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)
Loading
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 04:29
Greenland Scaled
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pnavarrc
pnavarrc / Makefile
Last active August 30, 2016 18:09
Countries by Size
# 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
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 / README.md
Last active October 6, 2015 17:39
Git Essential Commands

Basic Git Commands

List Local Branches

git branch

Commit

@pnavarrc
pnavarrc / Makefile
Last active February 15, 2017 13:47
Equidistant lines and Location API
# 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 / index.html
Last active February 27, 2024 04:38
Simple SVG Path Demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Simple SVG Path</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
@pnavarrc
pnavarrc / README.md
Last active July 1, 2021 09:28
Jade Preview