US_countyCodes The following columns for US states and territories:
stateCode -- ISO 3166-2 alpha-2
stateFIPS -- 2-digit FIPS code
countyName -- English language county name
countyFIPS -- five-digit FIPS code (2-digit state and 3-digit
county combined to create a unique identifier)
This dataset was generated on 2020-10-26 by running:
library(MazamaSpatialUtils)
setSpatialDataDir("~/Data/Spatial")
loadSpatialData("USCensusCounties_02")US_countyCodes <-
USCensusCounties_02@data
dplyr::select(stateCode, stateFIPS, countyName, countyFIPS)
save(US_countyCodes, file = "data/US_countyCodes.rda")
US_countyCodesA dataframe with 3196 rows and 4 columns of data.