Skip to content

Commit

Permalink
working on places
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherkenny committed Aug 27, 2022
1 parent 6127609 commit 2608d98
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ Imports:
Suggests:
sf,
geos,
redist,
testthat (>= 3.0.0)
redist
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.0
RoxygenNote: 7.2.1
URL: https://github.com/alarm-redist/ggredist,
https://alarm-redist.github.io/ggredist/
BugReports: https://github.com/alarm-redist/ggredist/issues
Expand Down
2 changes: 1 addition & 1 deletion R/dra.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ scale_color_dra <- function(...) {
#' @rdname scale_dra
#' @concept colors
#' @export
scale_colour_dra = scale_color_dra
scale_colour_dra <- scale_color_dra
Empty file added R/geom_place.R
Empty file.
Binary file added R/sysdata.rda
Binary file not shown.
8 changes: 8 additions & 0 deletions data-raw/small_states.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
library(tidyverse)
library(sf)
s <- tinytiger::tt_states()

small_states <- rmapshaper::ms_simplify(s, keep = 0.0005)
small_states %>% ggplot() + geom_sf()

usethis::use_data(small_states, internal = TRUE)

0 comments on commit 2608d98

Please sign in to comment.