Skip to contents

A sf object containing a single polygon representing the border of Missouri. The boundary was derived by dissolving the county boundaries from the tigris county data layer. It is in NAD83 UTM 15N (meters) coordinate system.

Usage

state.mo

Format

An object of class sf (inherits from tbl_df, tbl, data.frame) with 1 rows and 2 columns.

Examples

if (FALSE) { # \dontrun{
tigris::counties(state='MO')%>%
sf::st_transform(., crs=26915)%>% # reproject to NAD83 UTM 15N
 select(STATEFP,
        COUNTYFP,GEOID,
        NAME,
        NAMELSAD,
        LSAD)->counties.mo

 counties.mo%>%
 group_by(STATEFP)%>%
 summarize()->state.mo
} # }