Skip to content

Commit 8a1321a

Browse files
committedFeb 14, 2013
Initial commit.
0 parents  commit 8a1321a

File tree

4 files changed

+84
-0
lines changed

4 files changed

+84
-0
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
zip
2+
geo
3+
shp
4+
topo
5+
node_modules

‎Makefile

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
TOPOJSON = ./node_modules/topojson/bin/topojson
2+
3+
COLLECTIONS = \
4+
ne_10m_admin_0_countries \
5+
ne_10m_admin_0_countries_lakes
6+
7+
all: node_modules $(addprefix topo/,$(addsuffix .json,$(COLLECTIONS)))
8+
9+
node_modules:
10+
npm install
11+
12+
zip/%.zip:
13+
mkdir -p $(dir $@) && curl "http://www.nacis.org/naturalearth/$*.zip" -o $@.download && mv $@.download $@
14+
15+
# Admin 0 – countries (8.4M)
16+
shp/ne_10m_admin_0_countries.shp: zip/10m/cultural/ne_10m_admin_0_countries.zip
17+
mkdir -p $(dir $@) && unzip -d shp $< && touch $@
18+
19+
# Admin 0 – countries without boundary lakes (8.6M)
20+
shp/ne_10m_admin_0_countries_lakes.shp: zip/10m/cultural/ne_10m_admin_0_countries_lakes.zip
21+
mkdir -p $(dir $@) && unzip -d shp $< && touch $@
22+
23+
geo/%.json: shp/%.shp
24+
mkdir -p geo && rm -f $@ && ogr2ogr -f GeoJSON $@ $<
25+
26+
topo/%.json: geo/%.json
27+
mkdir -p $(dir $@) && $(TOPOJSON) -o $@ -- $<

‎README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# World Atlas TopoJSON
2+
3+
This repository provides a convenient mechanism for generating TopoJSON files from [National Earth](http://naturalearthdata.com/).
4+
5+
## Installing via Homebrew
6+
7+
Before you can run `make`, you’ll need to install Node.js. Here’s how to do that using [Homebrew](http://mxcl.github.com/homebrew/) on Mac OS X:
8+
9+
```bash
10+
brew install node
11+
```
12+
13+
And then, from this repository’s root directory, install the dependencies:
14+
15+
```bash
16+
npm install
17+
```
18+
19+
If you want to install this software using an alternate method see the website for [TopoJSON](https://github.com/mbostock/topojson). I also recommend reading my tutorial, [Let’s Make a Map](http://bost.ocks.org/mike/map/).
20+
21+
## Generating TopoJSON
22+
23+
Once you have everything installed, simply run:
24+
25+
```
26+
make
27+
```
28+
29+
This will generate various TopoJSON files in the `topo` directory. As a by-product of producing these files, you’ll also download the shapefiles directly from National Earth and convert them into GeoJSON and filter.
30+
31+
If you want to generate a custom map, I recommend modifying the Makefile. Or, just use the Makefile as a set of examples, and run the appropriate `ogr2ogr` and `topojson` commands from the terminal.

‎package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "world-atlas",
3+
"version": "0.0.1",
4+
"description": "Roll your own TopoJSON from Natural Earth.",
5+
"keywords": [
6+
"topojson",
7+
"geojson",
8+
"shapefile"
9+
],
10+
"author": {
11+
"name": "Mike Bostock",
12+
"url": "http://bost.ocks.org/mike"
13+
},
14+
"repository": {
15+
"type": "git",
16+
"url": "http://github.com/mbostock/world-atlas.git"
17+
},
18+
"devDependencies": {
19+
"topojson": ">= 0.0.15"
20+
}
21+
}

0 commit comments

Comments
 (0)