Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bradoyler/atlas-make
Makefiles for building geo/topojson & csv from public Shape files 🌎
https://github.com/bradoyler/atlas-make
Last synced: 11 days ago
JSON representation
Makefiles for building geo/topojson & csv from public Shape files 🌎
- Host: GitHub
- URL: https://github.com/bradoyler/atlas-make
- Owner: bradoyler
- Created: 2016-08-27T20:35:07.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-18T17:38:11.000Z (almost 7 years ago)
- Last Synced: 2024-10-11T01:14:18.899Z (about 1 month ago)
- Language: Makefile
- Homepage:
- Size: 56.6 KB
- Stars: 30
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Atlas Make
A toolbelt for building many different data formats via public Shape files (census.gov, usgs.gov)
### Install System prereqs (Linux/MacOSX):
```
$ brew install node
$ brew install gdal
```### Clone repo and install dependencies
```
$ git clone https://github.com/bradoyler/atlas-make.git
$ cd atlas-make
$ npm install
```### Make all targets/recipes
```
$ make all
```
this may take about 15mins, so try `$ make us-states` first### Current targets:
[`$ make na-places`](na-places) (populated places in North America )
[`$ make us-states`](us-states)
[`$ make us-counties`](us-counties)
[`$ make us-towns`](us-towns) (county subdivisions)
[`$ make us-cities`](us-cities)
[`$ make us-demographics`](us-demographics)
[`$ make us-transportation`](us-transportation)
[`$ make us-energy`](us-energy)
[`$ make us-congress`](us-congress)
### Future plans:
- expand `us-demographics` data (Census & ACS)
- recipes for inserting data into PostgreSQL
- more `world-*` targets
- more map layers: roads, airports, etc.
- rendered map examples using [D3.js](https://d3js.org/) & [D3-Node](https://github.com/bradoyler/d3-node)#### Inspiration
- [Why Use Make](https://bost.ocks.org/mike/make/)