data-raw/county_abbreviations.R

library(usethis)


county_abb <- data.frame(
  county = c(
    "Annapolis", "Antigonish", "Cape Breton", "Colchester", "Cumberland",
    "Digby", "Guysborough", "Halifax", "Hants", "Inverness", "Kings",
    "Lunenburg", "Pictou", "Queens", "Richmond", "Shelburne",
    "Victoria", "Yarmouth"
  ),
  abb = c(
    "AN", "AT", "CB", "CL", "CM", "DG", "GY", "HL", "HN", "IV", "KN",
    "LN", "PC", "QN", "RC", "SH", "VC", "YR"
  )
)

usethis::use_data(county_abb, internal = TRUE)
dempsey-CMAR/adcp documentation built on April 17, 2025, 4:30 a.m.