gitextract_yatmm7b4/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ ├── FUNDING.yml │ └── workflows/ │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── R/ │ ├── enumeration_units.R │ ├── fips_codes.R │ ├── geocode.R │ ├── helpers.R │ ├── landmarks.R │ ├── legislative.R │ ├── metro_areas.R │ ├── national.R │ ├── native.R │ ├── places.R │ ├── pumas.R │ ├── shift_geometry.R │ ├── states.R │ ├── tigris-package.R │ ├── transportation.R │ ├── utils.R │ ├── water.R │ └── zzz.R ├── README.md ├── data/ │ └── fips_codes.rda ├── data-raw/ │ ├── national_county.txt │ ├── prep-zip-lookup.R │ ├── prep_codes.R │ ├── state.txt │ └── zcta_county_rel_10.txt ├── man/ │ ├── address_ranges.Rd │ ├── alaska_native_regional_corporations.Rd │ ├── append_geoid.Rd │ ├── area_water.Rd │ ├── block_groups.Rd │ ├── blocks.Rd │ ├── call_geolocator.Rd │ ├── call_geolocator_latlon.Rd │ ├── coastline.Rd │ ├── combined_statistical_areas.Rd │ ├── congressional_districts.Rd │ ├── core_based_statistical_areas.Rd │ ├── counties.Rd │ ├── county_subdivisions.Rd │ ├── divisions.Rd │ ├── erase_water.Rd │ ├── filter_place.Rd │ ├── filter_state.Rd │ ├── fips_codes.Rd │ ├── geo_join.Rd │ ├── grep_place.Rd │ ├── grep_state.Rd │ ├── is_tigris.Rd │ ├── landmarks.Rd │ ├── linear_water.Rd │ ├── list_counties.Rd │ ├── list_places.Rd │ ├── list_states.Rd │ ├── load_tiger.Rd │ ├── load_tiger_doc_template.Rd │ ├── lookup_code.Rd │ ├── metro_divisions.Rd │ ├── military.Rd │ ├── nation.Rd │ ├── native_areas.Rd │ ├── new_england.Rd │ ├── places.Rd │ ├── primary_roads.Rd │ ├── primary_secondary_roads.Rd │ ├── pumas.Rd │ ├── rails.Rd │ ├── rbind_tigris.Rd │ ├── regions.Rd │ ├── roads.Rd │ ├── school_districts.Rd │ ├── shift_geometry.Rd │ ├── state_legislative_districts.Rd │ ├── states.Rd │ ├── tigris-exports.Rd │ ├── tigris-package.Rd │ ├── tigris_cache_dir.Rd │ ├── tigris_type.Rd │ ├── tracts.Rd │ ├── tribal_block_groups.Rd │ ├── tribal_census_tracts.Rd │ ├── tribal_subdivisions_national.Rd │ ├── urban_areas.Rd │ ├── validate_county.Rd │ ├── validate_state.Rd │ ├── voting_districts.Rd │ └── zctas.Rd ├── tests/ │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── enumeration_units.md │ │ │ └── landmarks.md │ │ ├── test-enumeration_units.R │ │ ├── test-geocode.R │ │ ├── test-landmarks.R │ │ ├── test-legislative.R │ │ ├── test-lookup_helper.R │ │ ├── test-metro_areas.R │ │ ├── test-national.R │ │ ├── test-native.R │ │ ├── test-places.R │ │ ├── test-pumas.R │ │ ├── test-shift_geometry.R │ │ ├── test-states.R │ │ ├── test-transportation.R │ │ ├── test-water.R │ │ └── test_lookup_helper.R │ └── testthat.R └── tigris.Rproj