Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 26 additions & 27 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,44 +1,43 @@
Package: tigris
Type: Package
Package: tigris
Title: Load Census TIGER/Line Shapefiles
Version: 2.2.1.9000
Date: 2025-07-18
Authors@R: c(
person(given="Kyle", family="Walker", email="kyle@walker-data.com", role=c("aut", "cre")),
person(given="Bob", family="Rudis", email="bob@rudis.net", role="ctb"),
person(given="Eli", family="Pousson", email="Eli.Pousson@baltimorecity.gov", role="ctb")
)
URL: https://github.com/walkerke/tigris
BugReports: https://github.com/walkerke/tigris/issues
Description: Download TIGER/Line shapefiles from the United States Census Bureau
person("Kyle", "Walker", , "kyle@walker-data.com", role = c("aut", "cre")),
person("Bob", "Rudis", , "bob@rudis.net", role = "ctb"),
person("Eli", "Pousson", , "eli.pousson@gmail.com", role = "ctb",
comment = c(ORCID = "0000-0001-8280-1706"))
)
Description: Download TIGER/Line shapefiles from the United States Census
Bureau
(<https://www.census.gov/geographies/mapping-files/time-series/geo/tiger-line-file.html>)
and load into R as 'sf' objects.
License: MIT + file LICENSE
LazyData: TRUE
Encoding: UTF-8
URL: https://github.com/walkerke/tigris
BugReports: https://github.com/walkerke/tigris/issues
Depends:
R (>= 3.3.0)
Imports:
cli,
dplyr,
httr,
magrittr,
methods,
rappdirs,
rlang,
sf,
stringr,
utils
Suggests:
testthat (>= 3.0.0),
ggplot2,
ggthemes,
leaflet,
knitr,
tidycensus,
leaflet,
sp,
testthat (>= 3.0.0),
withr
Imports:
stringr,
magrittr,
utils,
rappdirs,
httr,
uuid,
sf,
dplyr,
methods,
cli,
rlang
Config/testthat/edition: 3
RoxygenNote: 7.3.2
Encoding: UTF-8
LazyData: TRUE
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.3
3 changes: 1 addition & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,8 @@ import(rappdirs)
import(rlang)
import(sf)
import(utils)
import(uuid)
importFrom(cli,cli_abort)
importFrom(cli,cli_inform)
importFrom(cli,cli_bullets)
importFrom(cli,cli_warn)
importFrom(dplyr,mutate)
importFrom(httr,GET)
Expand Down
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
tigris development
-------------------------------------------------------
* Add `{rlang}` and `{cli}` packages to Imports. Add `{withr}` to Suggests.
* Add `{rlang}` and `{cli}` packages to Imports. Add `{withr}` to Suggests. Remove `{uuid}` and `{tidycensus}` from Suggests.

* Switch to use `cli::cli_abort()`, `cli::cli_warn()` and `cli::cli_bullets()` for all errors, warnings, and messages.

* Warn users when `filter_by` contains multiple geometries and only part of the filter can be used.

* Export `validate_state()` and `validate_county()` functions with added `multiple` argument to allow validation of multiple states or counties in a single call.

* Improve consistency of validation for input `year`, `cb`, and `resolution` arguments.

* Expand test coverage.

tigris 2.2.1
Expand Down
Loading
Loading