-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
78 lines (60 loc) · 3.28 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
output: github_document
---
<!--
####### UUUUUUUU ,ad8888ba, 88b d88 db 88888888ba
####### :UUUUUUU d8"' `"8b 888b d888 d88b 88 "8b
#######. :UUUUUU d8' 88`8b d8'88 d8'`8b 88 ,8P
######## :UUUUU 88 88 `8b d8' 88 d8' `8b 88aaaaaa8P'
#########: :UUU 88 88 `8b d8' 88 d8YaaaaY8b 88""""""'
##########: ' Y8, 88 `8b d8' 88 d8""""""""8b 88
#############:. Y8a. .a8P 88 `888' 88 d8' `8b 88
################ `"Y8888Y"' 88 `8' 88 d8' `8b 88
PROUDLY PRESENTS
,adPPYba, 88,dPYba,,adPYba, ,adPPYYba, 8b,dPPYba, ,adPPYb,d8 ,adPPYba, ,adPPYba,
a8" "" 88P' "88" "8a "" `Y8 88P' "8a a8" `Y88 a8P_____88 a8" "8a
8b 88 88 88 ,adPPPPP88 88 d8 8b 88 8PP""""""" 8b d8
"8a, ,aa 88 88 88 88, ,88 88b, ,a8" "8a, ,d88 "8b, ,aa "8a, ,a8"
`"Ybbd8"' 88 88 88 `"8bbdP"Y8 88`YbbdP"' `"YbbdP"Y8 `"Ybbd8"' `"YbbdP"'
88 aa, ,88
88 "Y8bbdP"
An R package made with ♥ in Chicago by and for CMAP staff.
-->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# cmapgeo <img src="man/figures/logo.png" align="right" alt="cmapplot logo" width="128">
<!-- badges: start -->
[![R-CMD-check](https://github.com/CMAP-REPOS/cmapgeo/workflows/R-CMD-check/badge.svg)](https://github.com/CMAP-REPOS/cmapgeo/actions)
[![pkgdown](https://github.com/CMAP-REPOS/cmapgeo/workflows/pkgdown/badge.svg)](https://github.com/CMAP-REPOS/cmapgeo/actions)
[![CRAN status](https://www.r-pkg.org/badges/version/cmapgeo)](https://cran.r-project.org/package=cmapgeo)
<!-- badges: end -->
The cmapgeo package for [R](https://www.r-project.org) is a repository of
geodata files representing various geographic and administrative boundaries in
the Chicago region, maintained by the
[Chicago Metropolitan Agency for Planning](https://www.cmap.illinois.gov)
(CMAP). Data is in the [`sf`](https://r-spatial.github.io/sf) (simple features)
format, and includes boundaries for:
- Counties
- Municipalities
- Chicago community areas (CCAs) and wards
- Census tracts, block groups, blocks, public use microdata areas (PUMAs) and
ZIP code tabulation areas (ZCTAs)
- CMAP travel modeling zones and subzones
- CMAP subregional Councils of Mayors (COMs)
- Legislative districts (state and federal)
- IDOT districts
- Facility Planning Areas (FPAs)
## Installation
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")
## Then load the package as you would any other
library(cmapgeo)
```