Skip to content

Commit b1c1f03

Browse files
authored
Merge pull request #6 from CMAP-REPOS/2020-tigerline
Census data update: 2020 enumeration units and crosswalks, plus 2021 TIGER/Line vintage update
2 parents 3701cfa + b8307fb commit b1c1f03

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1076
-1130
lines changed

DESCRIPTION

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: cmapgeo
22
Title: R-Friendly Geodata for the Chicago Region
3-
Version: 0.1.3
3+
Version: 0.2.0
44
Authors@R: c(
55
person("Noel", "Peterson",
66
role = c("aut", "cre"),
@@ -25,10 +25,12 @@ LazyData: true
2525
LazyDataCompression: gzip
2626
Depends:
2727
R (>= 2.10)
28+
Imports:
29+
sf,
30+
tibble
2831
Suggests:
2932
dplyr,
3033
ggplot2,
31-
sf,
3234
tidycensus
3335
Roxygen: list(markdown = TRUE)
3436
RoxygenNote: 7.1.2

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
export(cmap_crs)
44
export(county_fips_codes)
5+
import(sf)

NEWS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# cmapgeo 0.2.0
2+
February 23, 2022
3+
4+
* `block_sf`, `blockgroup_sf` and `tract_sf` now represent the 2020 census
5+
geographies. (2010 census geographies are still available with a `_2010`
6+
suffix for use with ACS data from 2010 through 2019.)
7+
* Crosswalk tables (`xwalk_*`) have also been updated to use 2020 Census data,
8+
and a new employment allocation factor (based on 2019
9+
[LEHD](https://lehd.ces.census.gov/data) data) has been added to each. The
10+
prior crosswalks based on the 2010 Census data are still available with a
11+
`_2010` suffix for use with ACS data from 2010 through 2019 (although they
12+
still lack an employment allocation factor).
13+
* All datasets based on the Census Bureau's TIGER/Line boundaries have been
14+
updated with the 2021 vintage. (The exception is the 2010 blocks, block groups
15+
and tracts, which are still based on the 2019 vintage.)
16+
* Added `sf` and `tibble` packages as requirements instead of suggestions.
17+
18+
119
# cmapgeo 0.1.3
220
November 3, 2021
321

R/cmapgeo.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#'
1414
#' @name cmapgeo
1515
#' @docType package
16+
#' @import sf
1617
#' @keywords internal
1718
"_PACKAGE"
1819

R/data.R

Lines changed: 351 additions & 429 deletions
Large diffs are not rendered by default.

README.Rmd

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ format, and includes boundaries for:
5757
- Municipalities
5858
- Chicago community areas (CCAs) and wards
5959
- Census tracts, block groups, blocks, public use microdata areas (PUMAs) and
60-
ZIP code tabulation areas (ZCTAs) — *2019 vintage, for use with most recent ACS data*
61-
- Census tracts, block groups and blocks — *2020 vintage, for use with 2020 Census data*
60+
ZIP code tabulation areas (ZCTAs)
6261
- CMAP travel modeling zones and subzones
6362
- CMAP subregional Councils of Mayors (COMs)
6463
- Legislative districts (state and federal)
@@ -72,7 +71,7 @@ Run the following to install or update cmapgeo:
7271

7372
```{r install, eval=FALSE, message=FALSE, warning=FALSE}
7473
## Install current version from GitHub
75-
devtools::install_github("CMAP-REPOS/cmapgeo", build_vignettes=TRUE)
74+
devtools::install_github("CMAP-REPOS/cmapgeo")
7675
7776
## Then load the package as you would any other
7877
library(cmapgeo)

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ format, and includes boundaries for:
4747
- Municipalities
4848
- Chicago community areas (CCAs) and wards
4949
- Census tracts, block groups, blocks, public use microdata areas
50-
(PUMAs) and ZIP code tabulation areas (ZCTAs) — *2019 vintage, for
51-
use with most recent ACS data*
52-
- Census tracts, block groups and blocks — *2020 vintage, for use with
53-
2020 Census data*
50+
(PUMAs) and ZIP code tabulation areas (ZCTAs)
5451
- CMAP travel modeling zones and subzones
5552
- CMAP subregional Councils of Mayors (COMs)
5653
- Legislative districts (state and federal)
@@ -63,7 +60,7 @@ Run the following to install or update cmapgeo:
6360

6461
``` r
6562
## Install current version from GitHub
66-
devtools::install_github("CMAP-REPOS/cmapgeo", build_vignettes=TRUE)
63+
devtools::install_github("CMAP-REPOS/cmapgeo")
6764

6865
## Then load the package as you would any other
6966
library(cmapgeo)

0 commit comments

Comments
 (0)