Learn R Programming

micromap (version 1.9.9)

create_map_table: Prepares A Polygon Table

Description

Takes the user supplied polygon table and prepares it to be plotted correctly with the lmplot function.

Usage

create_map_table(tmp.map, IDcolumn = NA, poly.thresh = 1e-04)

Value

A flat table of all the polygons in the shapefile with an entry for each vertice.

Arguments

tmp.map

a shapefile to be parsed into a flat table for use with ggplot2.

IDcolumn

specify which column in the data file to use as a unique identifier.

poly.thresh

specify the minimum polygon area which to keep. All polygons with less area will be dropped.

Author

Quinn Payton Payton.Quinn@epa.gov

Examples

Run this code

data("USstates")
head(USstates@data)
statePolys <- create_map_table(USstates, IDcolumn="ST")
head(statePolys)

Run the code above in your browser using DataLab