gitextract_haf2t6ds/ ├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── ccdf_labels.R │ ├── counties.R │ ├── counties_labels.R │ ├── countydata.R │ ├── get_urbn_labels.R │ ├── get_urbn_map.R │ ├── statedata.R │ ├── states.R │ ├── states_labels.R │ ├── sysdata.rda │ ├── territories_counties.R │ └── territories_labels.R ├── README.Rmd ├── README.md ├── data/ │ ├── counties.rda │ ├── countydata.rda │ ├── statedata.rda │ └── states.rda ├── data-raw/ │ ├── ccdf.R │ ├── ccdf_labels.R │ ├── counties.R │ ├── counties_labels.R │ ├── counties_sf.R │ ├── countydata.R │ ├── generate_sysdata.R │ ├── statedata.R │ ├── states.R │ ├── states_labels.R │ ├── states_sf.R │ ├── territories.R │ ├── territories_counties.R │ ├── territories_counties_sf.R │ ├── territories_labels.R │ ├── territories_sf.R │ └── utils.R ├── docs/ │ ├── CODE_OF_CONDUCT.html │ ├── articles/ │ │ ├── index.html │ │ ├── introducing-urbnmapr.html │ │ └── start-to-finish.html │ ├── authors.html │ ├── docsearch.css │ ├── docsearch.js │ ├── index.html │ ├── news/ │ │ └── index.html │ ├── pkgdown.css │ ├── pkgdown.js │ ├── pkgdown.yml │ └── reference/ │ ├── ccdf_labels.html │ ├── counties.html │ ├── counties_labels.html │ ├── countydata.html │ ├── get_urbn_labels.html │ ├── get_urbn_map.html │ ├── index.html │ ├── statedata.html │ ├── states.html │ ├── states_labels.html │ ├── territories_counties.html │ └── territories_labels.html ├── hexsticker.R ├── man/ │ ├── ccdf_labels.Rd │ ├── counties.Rd │ ├── counties_labels.Rd │ ├── countydata.Rd │ ├── get_urbn_labels.Rd │ ├── get_urbn_map.Rd │ ├── statedata.Rd │ ├── states.Rd │ ├── states_labels.Rd │ ├── territories_counties.Rd │ └── territories_labels.Rd ├── urbnmapr.Rproj └── vignettes/ └── introducing-urbnmapr.Rmd