Map of invasive species in Minnesota.
Data from the Minnesota DNR and their awesome Data Deli:
- Invasive Species - Aquatic Observations
- http://deli.dnr.state.mn.us/metadata.html?id=L390007760203
- ftp://ftp.dnr.state.mn.us/pub/deli/d24157283106212.zip
- Invasive Species - Terrestrial Observations
- http://deli.dnr.state.mn.us/metadata.html?id=L390004820203
- ftp://ftp.dnr.state.mn.us/pub/deli/d23954283106172.zip
- Combined, optimized, and reprojected Shapefile (utilizing ogr2ogr and shapeindex):
- Data from the DNR site concerning invasive species.
- To work on the TileMill project:
cd data-processing/tiles && fab map:mn-invasive link; cd -;
- In order to get the shapefile into a PostGIS database to do some basic analysis, make sure you have a PostGIS database name Minnpost.
- Create species metadata:
- Generate thumbs from CSV, Wikipedia, and DBPedia:
cd data-processing && fab vdata_get_thumbs; cd -;
- Get colors from ColorSuckr:
cd data-processing && fab vdata_get_colors:True; cd -;
- Put colors into TileMill project:
cd data-processing && fab vdata_tile_colors; cd -;
- Get extra DNR data via Scraper Wiki:
cd data-processing && fab vdata_get_dnr_data; cd -;
- Get counts with:
cd data-processing && fab vdata_counts; cd -;
- Generate thumbs from CSV, Wikipedia, and DBPedia:
- Export tiles to S3:
cd data-processing/tiles && fab map:mn-invasive production export_deploy:32,4,5; cd -;