Learn R Programming

⚠️There's a newer version (0.8.6) of this package.Take me there.

title: "MazamaSpatialUtils" pagetitle: MazamaSpatialUtils

MazamaSpatialUtils

A suite of conversion scripts to create internally standardized spatial
polygons dataframes. Utility scripts use these datasets to return values such
as country, state, timezone, watershed, etc. associated with a set of 
longitude/latitude pairs. (They also make cool maps.)

Background

The MazamaSpatialUtils package was created by MazamaScience to regularize our work with spatial data. The sp, rgdal and maptools packages have made it much easier to work with spatial data found in shapefiles. Many sources of shapefile data are available and can be used to make beautiful maps in R. Unfortunately, the data attached to these datasets, even when fairly complete, often lacks standardized identifiers such as the ISO 3166-1 alpha-2 encodings for countries. Maddeningly, even when these ISO codes are used, the dataframe column in which they are stored does not have a standardized name. It may be called ISO or ISO2 or alpha or COUNTRY or any of a dozen other names we have seen.

While many mapping packages provide ‘natural’ naming of countries, those who wish to develop operational, GIS-like systems need something that is both standardized and language-independent. The ISO 3166-1 alpha-2 encodings have emerged as the defacto standard for this sort of work. In similar fashion, ISO 3166-2 alpha-2 encodings are available for the next administrative level down – state/province/oblast, etc.. For timezones, the defacto standard is the set of Olson timezones used in all UNIX systems.

The main goal of this package is to create an internally standardized set of spatial data that we can use in various projects. Along with three built-in datasets, this package provides ‘convert~’ functions for other spatial datasets that we currently use. These convert functions all follow the same recipe:

  • download spatial data in shapefile format into a standard directory
  • convert shapefile data into a sp SpatialPolygonsDataFrame
  • modify the dataframe in the @data slot so that it adheres to package internal standards

Other datasets can be added following the same procedure.

The ‘package internal standards’ are very simple. Every spatial dataset will have at least one of the following, consistently named columns of data:

  • polygonID – unique identifier associated with each polygon
  • countryCode – ISO 3166-1 alpha-2
  • stateCode – ISO 3166-2 alpha-2
  • timezone – Olson timezone

If another column contains this data, that column must be renamed or duplicated with the internally standardized name. This simple level of consistency makes it possible to generate maps for any data that is ISO encoded. It also makes it possible to create functions that return the country, state or timezone associated with a set of locations.

Installation

This package is designed to be used with R (>= 3.1.0) and RStudio so make sure you have those installed first.

Users can use the devtools package to install the latest version of the package which may have new features that are not yet available on CRAN:

devtools::install_github('mazamascience/MazamaSpatialUtils', build_vignettes=TRUE)

Spatial Datasets

Package Datasets

The package comes with the following simplified spatial spatial datasets:

 * 276K	data/SimpleCountries.RData
 * 2.1M	data/SimpleCountriesEEZ.RData
 * 1.1M	data/SimpleTimezones.RData

These datasets allow you to work with low-resolution country outlines and timezones.

Core Datasets

Additional datasets are available at http://mazamascience.com/RData/Spatial/ and can be loaded with the following commands:

# Create a location where large spatial datasets will be stored
dir.create('~/Data/Spatial', recursive = TRUE)

# Tell the package about this location
setSpatialDataDir('~/Data/Spatial')

# Install core spatial data
installSpatialData()

Datasets included in the core set include:

 * 2.1M EEZCountries.RData
 *  15M NaturalEarthAdm1.RData
 *  61M OSMTimezones.RData
 * 3.0M	OSMTimezones_05.RData
 * 3.6M TMWorldBorders.RData
 *  48MTerrestrialEcoregions.RData
 * 3.5M TerrestrialEcoregions_05.RData
 * 7.5M USCensus115thCongress.RData
 *  17M USCensusCounties.RData
 * 4.6M USCensusStates.RData
 * 1.2M USIndianLands.RData
 *  17M WorldTimezones.RData

Further details about each dataset are provided in the associated convert~() function. Datasets appearing with, e.g., _05 are simplified datasets whose polygons retain only 5% of the vertices of the original .

Additional Datasets

Mazama Science regularly generates new datasets that adhere to package standards. These can be download manually from http://mazamascience.com/RData/Spatial/. As of Jan 10, 2019, the full list of available datasets includes:

 * 24K	CA_AirBasins_01.RData
 * 44K	CA_AirBasins_02.RData
 * 100K	CA_AirBasins_05.RData
 * 2.1M	CA_AirBasins.RData
 * 2.2M	EEZCountries.RData
 * 404K	GACC_05.RData
 * 7.0M	GACC.RData
 * 15M	NaturalEarthAdm1.RData
 * 3.1M	OSMTimezones_05.RData
 * 62M	OSMTimezones.RData
 * 3.6M	TerrestrialEcoregions_05.RData
 * 49M	TerrestrialEcoregions.RData
 * 3.7M	TMWorldBorders.RData
 * 7.6M	USCensus115thCongress.RData
 * 564K	USCensusCBSA_01.RData
 * 944K	USCensusCBSA_02.RData
 * 2.0M	USCensusCBSA_05.RData
 * 34M	USCensusCBSA.RData
 * 2.3M	USCensusCounties.RData
 * 3.5M	USCensusStates.RData
 * 1.2M	USIndianLands.RData
 * 769M	WBDHU10.RData
 * 1.5G	WBDHU12.RData
 * 424K	WBDHU2_01.RData
 * 840K	WBDHU2_02.RData
 * 38M	WBDHU2.RData
 * 1.1M	WBDHU4_01.RData
 * 2.2M	WBDHU4_02.RData
 * 108M	WBDHU4.RData
 * 1.4M	WBDHU6_01.RData
 * 2.8M	WBDHU6_02.RData
 * 137M	WBDHU6.RData
 * 295M	WBDHU8.RData
 * 18M	WorldTimezones.RData

Examples

Vignettes

The package vignette 'Introduction to MazamaSpatialUtils' has numerous examples.

Demos

There are three demos associated with the package:

demo(package = 'MazamaSpatialUtils')

Shiny App

There is also an exampe R Shiny app which uses the WBDHU# datasets combines two large datasets:

  • location data from the National Bridge Inventory
  • shapefiles from the Watershed Boundary Dataset

The app allows you to aggregate point location data by watershed to create summary values associated with each watershed. It also demonstrates the need to enable caching in a shiny app when plots take a long time to generate.

library(MazamaSpatialUtils)
setSpatialDataDir('~/Data/Spatial')
runExample()

Mapshaper

Instructions for installing the javascript mapshaper utility and using it to simplify large shapefiles are found in the localMapshaper/ directory.


This project is supported by Mazama Science.

Copy Link

Version

Install

install.packages('MazamaSpatialUtils')

Monthly Downloads

864

Version

0.6.1

License

GPL-2

Issues

Pull Requests

Stars

Forks

Maintainer

Jonathan Callahan

Last Published

January 30th, 2019

Functions in MazamaSpatialUtils (0.6.1)

codeToCountry

Convert Country Codes to Country Names
codeToState

Convert State Codes to State Names
convertPHDs

Convert Public Health Districts Shapefile
convertSimpleCountries

Convert (Simple) World Borders Shapefile
SimpleTimezones

World Timezone Polygons
convertWikipediaTimezoneTable

Convert Wikipedia Timezone Table to Dataframe
convertWorldEEZ

Convert World Exclusive Economic Zones Boundaries Shapefile
SpatialDataDir

Directory for Spatial Data
getHUC

Return HUCs at Specified Locations
convertLayer

Convert Shapefile Layer to Spatial Polygon Dataframe
convertNWSFireZones

Convert NWS Public Forecast Zones Shapefile
convertUSCensusCBSA

Convert US Core Based Statistical Areas Shapefile
getHUCName

Return HUC Names at Specified Locations
getVariable

Return SpatialDataframe Variable at Specified Locations
CONUS

CONUS State Codes
convertUSCensusCongress

Convert US congressional districts shapefile
MazamaSpatialUtils

Mazama Science spatial data and utility functions.
SimpleCountriesEEZ

World Country EEZ Polygons
SimpleCountries

World Country Polygons
installSpatialData

Install Spatial Datasets
summarizeByPolygon

Summarize values by polygon
convertNaturalEarthAdm1

Convert Level 1 (State) Borders Shapefile
runExample

Run Shiny app example
convertOSMTimezones

Convert OSM Timezone Shapefile
convertUSCensusCounties

Convert US County Borders Shapefile
removeSpatialDataDir

Remove Package Data Directory
convertUSCensusStates

Convert US Census State Shapefile
getPolygonID

Get PolygonID from SPDF of Interest
getSpatialData

Return spatial data associated with a set of locations
convertSimpleTimezones

Convert SimpleTimezones Shapefile
convertSimpleCountriesEEZ

Convert (Simple) World Borders Shapefile
convertCARBAirBasins

Convert California Air Resources Board basin shapefiles
dissolve

Aggregate shapes in a SpatialPolygonsDataFrame
getCountry

Return Country Names at Specified Locations
convertEEZCountries

Convert Exclusive Economic Zones countries shapefile
convertTMWorldBordersSimple

Convert (Simple) World Borders Shapefile
convertTerrestrialEcoregions

Convert Terrestrial Ecoregion Shapefile
getStateCode

Return State ISO Codes at Specified Locations
getStateName

Return State Names at Specified Locations
loadSpatialData

Load Spatial Datasets
organizePolygons

Organize Ungrouped Polygons
stateToCode

Convert State Names to State Codes
US_52

US State Codes
US_stateCodes

Dataframe of US State Codes
subsetHUC

Subset pre-formatted HUC files into smaller groupings.
convertHMSSmoke

Convert NOAA Hazard Mapping System Smoke Shapefiles
convertIndianLands

Convert Indian Lands Shapefile
convertWBDHUC

Convert USGS hydrologic unit shapefiles
convertWeatherZones

Convert NWS Public Forecast Zones Shapefile
convertGACC

Convert Geographic Area Coordination Center geojson, as defined by NIFC
convertGADM

Convert Global Administrative Areas (GADM) Shapefile
convertStateLegislativeDistricts

Convert US dtate legislative districts shapefile
convertTMWorldBorders

Convert World Borders Shapefile
getCountryCode

Return Country ISO Codes at Specified Locations
convertWorldTimezones

Convert Timezone Shapefile
getCountryName

Return Country Names at Specified Locations
getTimezone

Return Olson Timezones at Specified Locations
getUSCounty

Return US County Name at Specified Locations
countryToCode

Convert Country Names to Country Codes
getSpatialDataDir

Get Package Data Directory
getState

Return State Names at Specified Locations
setSpatialDataDir

Set Package Data Directory
simplify

Simplify SpatialPolygonsDataFrame
iso2ToIso3

Convert From ISO2 to ISO3 Country Codes
iso3ToIso2

Convert from ISO3 to ISO2 Country Codes