Lab-06: If you please sir...which way to the Secret Garden?

Introduction

What is there to not like about maps!!!

We will learn to make static and interactive maps and to show off different kinds of data on them, data that have an inherently “spatial” spread or significance!

Trade Routes? Populations? Street Crime hotspots? Theatre and Food districts and popular Restaurants? Literary Paris, London and Barcelona?

All possible !!

References

  1. OSM Basic Maps Vignette

  2. Nikita Voevodin, R, Not the Best Practices

  3. Nico Hahn, Making Maps with R

  4. Emine Fidan, Interactive Maps in R

  5. Lovelace et al, Geocomputation in R

R Spatial Analysis Notes

Spatial Analysis in R

Key Packages

  • sp - defines the set of base classes for spatial data in R. Most useful for creating, converting, merging, transforming (e.g. projection), and plotting (see spplot) Spatial* objects.
  • rgdal - wrapper for GDAL. Most useful for reading in vector data (e.g. ESRI Shapefiles, GeoJSON, KML) with the function readOGR and reading raster data (e.g. NetCDF, GeoTiff) with the function readGDAL.
  • rgeos - wrapper for the GEOS library. Most useful for common spatial operations such as calculating distances between objects, areas, intersections, buffers, centroids, etc. See help(package = "rgeos") for a complete list of functions.
  • raster - provides a set of object classes and functions specific to working with raster data. Most useful for loading, transforming, and analyzing raster data. A particularly useful function getData retrieves commonly used spatial data such as administrative boundaries or world climate data.

R Spatial Resources

R Spatial Tutorials

Spatial Visualization and Mapping

General R Resources

Basics

Data Visualization

Advanced

General GIS Resources

General Data Analysis Resources

  • Tidy Data Wickham (2014). Journal of Statistical Software.
Previous
Next