title | author | date | output |
---|---|---|---|
Intro to geospatial |
Revised by Julien Brun from Jim Regetz 2013 and Jefferson Heard OSS 2014 |
June, 2016 |
html_document |
- Cross-platform
- Open source
- Free
QGIS is a good tool to explore your geospatial data and conduct geospatial processing and analysis. It is also possible to script QGIS analysis in Python.
- Load raster, vector, and delimited coordinate data
- Adjust colors, symbols, transparency
- Select features, measure distances, and more
- Design map layouts
- Add legend, scale bar, labels, images
- Digitize, edit, and save data
- Interface to GRASS GIS
- Full-fledged analytical GIS environment
- Run many GDAL/OGR utilities
- Swiss army knife for geospatial data
Note: this challenge has been built using QGIS 2.14.3
You can find in the qgis-handson
directory a csv file with all the farmers market locations in the US.
- We need to transform this csv into a shapefile. This will require to define the projection. Assuming the locations has been taken with a GPS, can you guess what projection this data are using?
- Add the shapefile of the US counties
- Use the
count points in polygon
toolVector -> Analysis Tool
to compute the number of points in each county. - What does the error message suggest? Check the projection of the counties? What is the problem?
- Reproject the farmers market shapefile by saving the layer
- Compute the number of points per county
- Create a choropleth map of the number of farmers market
- Don't forget the legend and scale!