Skip to content

Commit

Permalink
Merge pull request #6 from CMAP-REPOS/2020-tigerline
Browse files Browse the repository at this point in the history
Census data update: 2020 enumeration units and crosswalks, plus 2021 TIGER/Line vintage update
  • Loading branch information
nmpeterson authored Feb 23, 2022
2 parents 3701cfa + b8307fb commit b1c1f03
Show file tree
Hide file tree
Showing 62 changed files with 1,076 additions and 1,130 deletions.
6 changes: 4 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: cmapgeo
Title: R-Friendly Geodata for the Chicago Region
Version: 0.1.3
Version: 0.2.0
Authors@R: c(
person("Noel", "Peterson",
role = c("aut", "cre"),
Expand All @@ -25,10 +25,12 @@ LazyData: true
LazyDataCompression: gzip
Depends:
R (>= 2.10)
Imports:
sf,
tibble
Suggests:
dplyr,
ggplot2,
sf,
tidycensus
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

export(cmap_crs)
export(county_fips_codes)
import(sf)
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# cmapgeo 0.2.0
February 23, 2022

* `block_sf`, `blockgroup_sf` and `tract_sf` now represent the 2020 census
geographies. (2010 census geographies are still available with a `_2010`
suffix for use with ACS data from 2010 through 2019.)
* Crosswalk tables (`xwalk_*`) have also been updated to use 2020 Census data,
and a new employment allocation factor (based on 2019
[LEHD](https://lehd.ces.census.gov/data) data) has been added to each. The
prior crosswalks based on the 2010 Census data are still available with a
`_2010` suffix for use with ACS data from 2010 through 2019 (although they
still lack an employment allocation factor).
* All datasets based on the Census Bureau's TIGER/Line boundaries have been
updated with the 2021 vintage. (The exception is the 2010 blocks, block groups
and tracts, which are still based on the 2019 vintage.)
* Added `sf` and `tibble` packages as requirements instead of suggestions.


# cmapgeo 0.1.3
November 3, 2021

Expand Down
1 change: 1 addition & 0 deletions R/cmapgeo.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#'
#' @name cmapgeo
#' @docType package
#' @import sf
#' @keywords internal
"_PACKAGE"

Expand Down
780 changes: 351 additions & 429 deletions R/data.R

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,7 @@ format, and includes boundaries for:
- Municipalities
- Chicago community areas (CCAs) and wards
- Census tracts, block groups, blocks, public use microdata areas (PUMAs) and
ZIP code tabulation areas (ZCTAs) — *2019 vintage, for use with most recent ACS data*
- Census tracts, block groups and blocks — *2020 vintage, for use with 2020 Census data*
ZIP code tabulation areas (ZCTAs)
- CMAP travel modeling zones and subzones
- CMAP subregional Councils of Mayors (COMs)
- Legislative districts (state and federal)
Expand All @@ -72,7 +71,7 @@ Run the following to install or update cmapgeo:

```{r install, eval=FALSE, message=FALSE, warning=FALSE}
## Install current version from GitHub
devtools::install_github("CMAP-REPOS/cmapgeo", build_vignettes=TRUE)
devtools::install_github("CMAP-REPOS/cmapgeo")
## Then load the package as you would any other
library(cmapgeo)
Expand Down
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ format, and includes boundaries for:
- Municipalities
- Chicago community areas (CCAs) and wards
- Census tracts, block groups, blocks, public use microdata areas
(PUMAs) and ZIP code tabulation areas (ZCTAs) — *2019 vintage, for
use with most recent ACS data*
- Census tracts, block groups and blocks — *2020 vintage, for use with
2020 Census data*
(PUMAs) and ZIP code tabulation areas (ZCTAs)
- CMAP travel modeling zones and subzones
- CMAP subregional Councils of Mayors (COMs)
- Legislative districts (state and federal)
Expand All @@ -63,7 +60,7 @@ Run the following to install or update cmapgeo:

``` r
## Install current version from GitHub
devtools::install_github("CMAP-REPOS/cmapgeo", build_vignettes=TRUE)
devtools::install_github("CMAP-REPOS/cmapgeo")

## Then load the package as you would any other
library(cmapgeo)
Expand Down
Loading

0 comments on commit b1c1f03

Please sign in to comment.