Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
hafen committed Nov 29, 2023
1 parent 8e8fe1d commit 35d0197
Show file tree
Hide file tree
Showing 161 changed files with 126 additions and 67 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ geofacet.code-workspace
^docs$
^pkgdown$
^revdep$
^\.github$
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

13 changes: 8 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
Package: geofacet
Title: 'ggplot2' Faceting Utilities for Geographical Data
Version: 0.2.0
Version: 0.2.1
Authors@R: c(
person("Ryan", "Hafen", email = "[email protected]", role = c("aut", "cre")),
person("Barret", "Schloerke", email = "[email protected]", role = "ctb"))
Description: Provides geofaceting functionality for 'ggplot2'. Geofaceting arranges a sequence of plots of data for different geographical entities into a grid that preserves some of the geographical orientation.
Description: Provides geofaceting functionality for 'ggplot2'. Geofaceting
arranges a sequence of plots of data for different geographical entities
into a grid that preserves some of the geographical orientation.
Depends: R (>= 3.2)
License: MIT + file LICENSE
Encoding: UTF-8
Expand All @@ -15,19 +17,20 @@ Imports:
graphics,
rnaturalearth,
sp,
sf,
ggrepel,
imguR,
gridExtra,
geogrid,
methods
methods,
rlang
Suggests:
sf,
testthat,
covr,
lintr,
knitr,
rmarkdown
URL: https://github.com/hafen/geofacet
BugReports: https://github.com/hafen/geofacet/issues
RoxygenNote: 7.1.0
RoxygenNote: 7.2.3
VignetteBuilder: knitr
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ importFrom(gridExtra,grid.arrange)
importFrom(gtable,gtable_filter)
importFrom(imguR,upload_image)
importFrom(methods,as)
importFrom(rlang,.data)
importFrom(rnaturalearth,ne_countries)
importFrom(rnaturalearth,ne_states)
importFrom(sp,CRS)
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.2.1
----------------------------------------------------------------------

- Fix issue with unicode characters in grid names

Version 0.2
----------------------------------------------------------------------

Expand Down
20 changes: 13 additions & 7 deletions R/facet_geo.R
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ ggplot_add.facet_geo_spec <- function(object, plot, object_name) {
grd <- tmp$grd

plot <- plot %+% do.call(ggplot2::facet_wrap, object)
attr(plot, "geofacet") <- list(grid = grd, move_axes = move_axes, scales = object$scales)
attr(plot, "geofacet") <- list(
grid = grd,
move_axes = move_axes,
scales = object$scales
)

class(plot) <- c("facet_geo", class(plot))
return(plot)
Expand Down Expand Up @@ -172,6 +176,7 @@ plot.facet_geo <- function(x, ...) {
#' @export
#' @importFrom ggplot2 ggplot geom_rect geom_text aes xlim ylim
#' @importFrom gridExtra grid.arrange
#' @importFrom rlang .data
#' @examples
#' grid_preview(us_state_grid2)
#' grid_preview(eu_grid1, label = "name")
Expand All @@ -191,7 +196,7 @@ grid_preview <- function(x, label = NULL, label_raw = NULL) {
x$txt <- x[[label]]
}

p <- ggplot2::ggplot(x, ggplot2::aes_string("col", "row", label = "txt")) +
p <- ggplot2::ggplot(x, ggplot2::aes(.data$col, .data$row, label = "txt")) +
ggplot2::geom_rect(
xmin = as.numeric(x$col) - 0.5, xmax = as.numeric(x$col) + 0.5,
ymin = as.numeric(x$row) - 0.5, ymax = as.numeric(x$row) + 0.5,
Expand All @@ -216,7 +221,7 @@ grid_preview <- function(x, label = NULL, label_raw = NULL) {
p2 <- plot_geo_raw(spdf, label = label_raw)
p <- gridExtra::grid.arrange(p2, p, nrow = 1)
} else {
plot(p)
suppressWarnings(plot(p))
}
invisible(p)
}
Expand Down Expand Up @@ -404,10 +409,11 @@ get_grid <- function(grid) {
}
} else if (inherits(grid, "data.frame")) {
grd <- check_grid(grid)
message_nice("Note: You provided a user-specified grid. ",
"If this is a generally-useful grid, please consider submitting it ",
"to become a part of the geofacet package. You can do this easily by ",
"calling:\ngrid_submit(__grid_df_name__)")
if (!inherits(grid, "geofacet_grid"))
message_nice("Note: You provided a user-specified grid. ",
"If this is a generally-useful grid, please consider submitting it ",
"to become a part of the geofacet package. You can do this easily by ",
"calling:\ngrid_submit(__grid_df_name__)")
} else {
stop("grid not recognized...")
}
Expand Down
12 changes: 6 additions & 6 deletions R/grid_docs.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ NULL

#' @name gb_london_boroughs_grid
#' @description
#' * **gb_london_boroughs_grid:** Grid layout for the boroughs of London. Note that the column \code{code_ons} contains the \href{http://geoportal.statistics.gov.uk/datasets/464be6191a434a91a5fa2f52c7433333_0?uiTab=table}{codes} used by UK Office for National Statistics. Image reference [here](https://cloud.githubusercontent.com/assets/13021448/26399784/3133d684-4076-11e7-8eac-1e74d023bf18.jpg). Thanks to [eldenvo](https://github.com/eldenvo).
#' * **gb_london_boroughs_grid:** Grid layout for the boroughs of London. Note that the column \code{code_ons} contains the codes used by UK Office for National Statistics. Image reference [here](https://cloud.githubusercontent.com/assets/13021448/26399784/3133d684-4076-11e7-8eac-1e74d023bf18.jpg). Thanks to [eldenvo](https://github.com/eldenvo).
#' @usage gb_london_boroughs_grid
#' @rdname grids
#' @md
NULL

#' @name nhs_scot_grid
#' @description
#' * **nhs_scot_grid:** Grid layout for a grid of NHS Scotland Health Boards. Note that the column \code{code} contains the \href{http://geoportal.statistics.gov.uk/datasets/61dca36aa33e4aee99bbfa784fa9eb25_0?uiTab=table}{codes} used by UK Office for National Statistics. Image reference [here](https://cloud.githubusercontent.com/assets/24879214/26426113/253658d0-40cf-11e7-88b5-fe5ee7fda44f.png). Thanks to [jsphdms](https://github.com/jsphdms).
#' * **nhs_scot_grid:** Grid layout for a grid of NHS Scotland Health Boards. Note that the column \code{code} contains the codes used by UK Office for National Statistics. Image reference [here](https://cloud.githubusercontent.com/assets/24879214/26426113/253658d0-40cf-11e7-88b5-fe5ee7fda44f.png). Thanks to [jsphdms](https://github.com/jsphdms).
#' @usage nhs_scot_grid
#' @rdname grids
#' @md
Expand Down Expand Up @@ -138,7 +138,7 @@ NULL

#' @name us_wa_counties_grid1
#' @description
#' * **us_wa_counties_grid1:** Grid for Washington counties. Image reference [here](http://www.countymapsofwashington.com/aapics/washingstate.gif).
#' * **us_wa_counties_grid1:** Grid for Washington counties. Image reference [here](https://www.countymapsofwashington.com/aapics/washingstate.gif).
#' @usage us_wa_counties_grid1
#' @rdname grids
#' @md
Expand All @@ -162,7 +162,7 @@ NULL

#' @name se_counties_grid1
#' @description
#' * **se_counties_grid1:** Grid for counties of Sweden. Image reference [here](http://www.worldatlas.com/webimage/countrys/europe/lgcolor/secounties.gif). Thanks to [duleise](https://github.com/duleise).
#' * **se_counties_grid1:** Grid for counties of Sweden. Image reference [here](https://www.worldatlas.com/webimage/countrys/europe/lgcolor/secounties.gif). Thanks to [duleise](https://github.com/duleise).
#' @usage se_counties_grid1
#' @rdname grids
#' @md
Expand Down Expand Up @@ -338,7 +338,7 @@ NULL

#' @name sk_province_grid1
#' @description
#' * **sk_province_grid1:** Grid layout for South Korean sis and dos (metropolitan/special/autonomous cities and provinces). Image reference [here](http://tong.visitkorea.or.kr/enu/images/koreastay/korea_map.jpg). Thanks to [heon131](https://github.com/heon131).
#' * **sk_province_grid1:** Grid layout for South Korean sis and dos (metropolitan/special/autonomous cities and provinces). Image reference [here](https://tong.visitkorea.or.kr/enu/images/koreastay/korea_map.jpg). Thanks to [heon131](https://github.com/heon131).
#' @usage sk_province_grid1
#' @rdname grids
#' @md
Expand Down Expand Up @@ -386,7 +386,7 @@ NULL

#' @name br_states_grid2
#' @description
#' * **br_states_grid2:** Grid for the 27 states of Brazil. Image reference [here](http://www.brazil-help.com/mapa_do_brasil.gif). Thanks to [hafen](https://github.com/hafen).
#' * **br_states_grid2:** Grid for the 27 states of Brazil. Image reference [here](https://www.brazil-help.com/mapa_do_brasil.gif). Thanks to [hafen](https://github.com/hafen).
#' @usage br_states_grid2
#' @rdname grids
#' @md
Expand Down
6 changes: 3 additions & 3 deletions R/package-geofacet.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ NULL
#' @name election
#' @docType data
#' @description
#' 2016 US presidential election results, obtained from \url{http://bit.ly/2016votecount}.
#' 2016 US presidential election results, obtained from \url{https://bit.ly/2016votecount}.
#' @usage election
#' @keywords data
NULL
Expand All @@ -60,7 +60,7 @@ NULL
#' @name eu_imm
#' @docType data
#' @description
#' Annual number of resettled persons for each EU country. "Resettled refugees means persons who have been granted an authorization to reside in a Member State within the framework of a national or Community resettlement scheme.". Source: \url{http://ec.europa.eu/eurostat/cache/metadata/en/migr_asydec_esms.htm}. Dataset ID: tps00195.
#' Annual number of resettled persons for each EU country. "Resettled refugees means persons who have been granted an authorization to reside in a Member State within the framework of a national or Community resettlement scheme.". Source: \url{https://ec.europa.eu/eurostat/cache/metadata/en/migr_asydec_esms.htm}. Dataset ID: tps00195.
#' @usage eu_imm
#' @keywords data
NULL
Expand All @@ -70,7 +70,7 @@ NULL
#' @name eu_gdp
#' @docType data
#' @description
#' GDP per capita in PPS - Index (EU28 = 100). "Gross domestic product (GDP) is a measure for the economic activity. It is defined as the value of all goods and services produced less the value of any goods or services used in their creation. The volume index of GDP per capita in Purchasing Power Standards (PPS) is expressed in relation to the European Union (EU28) average set to equal 100. If the index of a country is higher than 100, this country's level of GDP per head is higher than the EU average and vice versa. Basic figures are expressed in PPS, i.e. a common currency that eliminates the differences in price levels between countries allowing meaningful volume comparisons of GDP between countries. Please note that the index, calculated from PPS figures and expressed with respect to EU28 = 100, is intended for cross-country comparisons rather than for temporal comparisons." Source: \url{http://ec.europa.eu/eurostat/web/national-accounts/data/main-tables}. Dataset ID: tec00114.
#' GDP per capita in PPS - Index (EU28 = 100). "Gross domestic product (GDP) is a measure for the economic activity. It is defined as the value of all goods and services produced less the value of any goods or services used in their creation. The volume index of GDP per capita in Purchasing Power Standards (PPS) is expressed in relation to the European Union (EU28) average set to equal 100. If the index of a country is higher than 100, this country's level of GDP per head is higher than the EU average and vice versa. Basic figures are expressed in PPS, i.e. a common currency that eliminates the differences in price levels between countries allowing meaningful volume comparisons of GDP between countries. Please note that the index, calculated from PPS figures and expressed with respect to EU28 = 100, is intended for cross-country comparisons rather than for temporal comparisons." Source is no longer available (previously at http://ec.europa.eu/eurostat/web/national-accounts/data/main-tables). Dataset ID: tec00114.
#' @usage eu_gdp
#' @keywords data
NULL
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build Status](https://travis-ci.org/hafen/geofacet.svg?branch=master)](https://travis-ci.org/hafen/geofacet)
[![Coverage Status](https://img.shields.io/codecov/c/github/hafen/geofacet/master.svg)](https://codecov.io/github/hafen/geofacet?branch=master)
[![R-CMD-check](https://github.com/hafen/geofacet/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/hafen/geofacet/actions/workflows/R-CMD-check.yaml)
[![Codecov test coverage](https://codecov.io/gh/hafen/geofacet/branch/master/graph/badge.svg)](https://app.codecov.io/gh/hafen/geofacet?branch=master)
[![CRAN](http://www.r-pkg.org/badges/version/geofacet)](https://CRAN.R-project.org/package=geofacet)
[![CRAN Downloads](http://cranlogs.r-pkg.org/badges/geofacet)](https://CRAN.R-project.org/package=geofacet)

Expand Down
44 changes: 44 additions & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1 +1,45 @@
destination: docs

## layout the order in which topics are presented in the rd docs
# 1. get a list of topics with the following:
# db <- tools::Rd_db("geofacet")
# topics <- gsub("\\.Rd", "", names(db))
# cat(paste(topics, collapse = "\n"))
# 2. arrange the topic names into sections as desired in the format below:
## If you need to see which topics are missing, do the following in addition:
# cur <- yaml::yaml.load_file("rd_index.yaml")
# cur <- unlist(lapply(cur, function(x) x$topics))
# cat(paste(setdiff(topics, cur), collapse = "\n"))
knitr:
eval: false

sections:
-
section_name: Package Functions
topics:
- facet_geo
- get_grid_names
- grid_design
- grid_preview
- grid_submit

-
section_name: Grids
topics:
-
file: grids.Rd
title: "grids"

-
section_name: Datasets
topics:
- aus_pop
- election
- eu_gdp
- eu_imm
- india_pop
- london_afford
- nhs_scot_dental
- sa_pop_dens
- state_ranks
- state_unemp
13 changes: 13 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
comment: false

coverage:
status:
project:
default:
target: auto
threshold: 1%
informational: true
patch:
default:
target: auto
threshold: 1%
informational: true
5 changes: 3 additions & 2 deletions data-raw/grids.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ sort(nchar(grid_list$ref_img))

lapply(nms, function(x) {
message(x)
url <- sprintf("https://raw.githubusercontent.com/hafen/grid-designer/master/grids/%s.csv", x)
urlstr <- sprintf("https://raw.githubusercontent.com/hafen/grid-designer/master/grids/%s.csv", x)
# tmp <- utils::read.csv(url, stringsAsFactors = FALSE, nrows = 1)
# # all columns other than "row" and "col" will be strings (names and codes)
# cls <- ifelse(names(tmp) %in% c("row", "col"), "integer", "character")
# # use read.csv simply because it means one less dependency...
# res <- utils::read.csv(url, colClasses = cls, stringsAsFactors = FALSE, na.strings = NULL)
res <- data.frame(readr::read_csv(url, na = ""))
res <- data.frame(readr::read_csv(url(urlstr), na = ""))
class(res) <- c("data.frame", "geofacet_grid")
assign(x, res)
eval(parse(text = sprintf("usethis::use_data(%s, overwrite = TRUE)", x)))
})
Expand Down
Binary file modified data/af_prov_grid1.rda
Binary file not shown.
Binary file modified data/africa_countries_grid1.rda
Binary file not shown.
Binary file modified data/ar_buenos_aires_prov_electoral_dist_grid1.rda
Binary file not shown.
Binary file modified data/ar_buenosaires_communes_grid1.rda
Binary file not shown.
Binary file modified data/ar_catamarca_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_chaco_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_cordoba_dep_grid1.rda
Binary file not shown.
Binary file modified data/ar_formosa_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_jujuy_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_la_rioja_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_mendoza_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_neuquen_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_rio_negro_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_salta_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_salta_prov_grid2.rda
Binary file not shown.
Binary file modified data/ar_san_juan_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_san_luis_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_santa_fe_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_santiago_del_estero_prov_grid1.rda
Binary file not shown.
Binary file modified data/ar_tucuman_province_grid1.rda
Binary file not shown.
Binary file modified data/argentina_grid1.rda
Binary file not shown.
Binary file modified data/argentina_grid2.rda
Binary file not shown.
Binary file modified data/at_states_grid1.rda
Binary file not shown.
Binary file modified data/aus_grid1.rda
Binary file not shown.
Binary file modified data/bd_upazila_grid1.rda
Binary file not shown.
Binary file modified data/be_province_grid1.rda
Binary file not shown.
Binary file modified data/bg_prov_grid1.rda
Binary file not shown.
Binary file modified data/br_states_grid1.rda
Binary file not shown.
Binary file modified data/br_states_grid2.rda
Binary file not shown.
Binary file modified data/ca_prov_grid1.rda
Binary file not shown.
Binary file modified data/ca_quebec_electoral_districts_grid1.rda
Binary file not shown.
Binary file modified data/ch_aargau_districts_grid1.rda
Binary file not shown.
Binary file modified data/ch_cantons_fl_grid1.rda
Binary file not shown.
Binary file modified data/ch_cantons_grid1.rda
Binary file not shown.
Binary file modified data/ch_cantons_grid2.rda
Binary file not shown.
Binary file modified data/china_city_grid1.rda
Binary file not shown.
Binary file modified data/china_prov_grid1.rda
Binary file not shown.
Binary file modified data/china_prov_grid2.rda
Binary file not shown.
Binary file modified data/cl_santiago_prov_grid1.rda
Binary file not shown.
Binary file modified data/cn_bj_districts_grid1.rda
Binary file not shown.
Binary file modified data/cn_bj_districts_grid2.rda
Binary file not shown.
Binary file modified data/cn_fujian_prov_grid1.rda
Binary file not shown.
Binary file modified data/co_cali_subdivisions_grid1.rda
Binary file not shown.
Binary file modified data/de_states_grid1.rda
Binary file not shown.
Binary file modified data/ec_prov_grid1.rda
Binary file not shown.
Binary file modified data/eu_grid1.rda
Binary file not shown.
Binary file modified data/europe_countries_grid1.rda
Binary file not shown.
Binary file modified data/europe_countries_grid2.rda
Binary file not shown.
Binary file modified data/fr_departements_grid1.rda
Binary file not shown.
Binary file modified data/fr_departements_grid2.rda
Binary file not shown.
Binary file modified data/fr_regions_grid1.rda
Binary file not shown.
Binary file modified data/gb_london_boroughs_grid.rda
Binary file not shown.
Binary file modified data/ie_counties_grid1.rda
Binary file not shown.
Binary file modified data/in_state_ut_grid1.rda
Binary file not shown.
Binary file modified data/in_state_ut_grid2.rda
Binary file not shown.
Binary file modified data/india_grid1.rda
Binary file not shown.
Binary file modified data/india_grid2.rda
Binary file not shown.
Binary file modified data/italy_grid1.rda
Binary file not shown.
Binary file modified data/italy_grid2.rda
Binary file not shown.
Binary file modified data/italy_grid3.rda
Binary file not shown.
Binary file modified data/jo_gov_grid1.rda
Binary file not shown.
Binary file modified data/jp_prefs_grid1.rda
Binary file not shown.
Binary file modified data/jp_prefs_grid2.rda
Binary file not shown.
Binary file modified data/kr_seoul_district_grid1.rda
Binary file not shown.
Binary file modified data/lk_districts_grid1.rda
Binary file not shown.
Binary file modified data/mm_state_grid1.rda
Binary file not shown.
Binary file modified data/mx_ciudad_prov_grid1.rda
Binary file not shown.
Binary file modified data/mx_state_grid1.rda
Binary file not shown.
Binary file modified data/mx_state_grid2.rda
Binary file not shown.
Binary file modified data/mx_state_grid3.rda
Binary file not shown.
Binary file modified data/mys_grid1.rda
Binary file not shown.
Binary file modified data/na_regions_grid1.rda
Binary file not shown.
Binary file modified data/ng_state_grid1.rda
Binary file not shown.
Binary file modified data/nhs_scot_grid.rda
Binary file not shown.
Binary file modified data/nl_prov_grid1.rda
Binary file not shown.
Binary file modified data/nl_prov_grid2.rda
Binary file not shown.
Binary file modified data/no_counties_grid1.rda
Binary file not shown.
Binary file modified data/nz_regions_grid1.rda
Binary file not shown.
Binary file modified data/nz_regions_grid2.rda
Binary file not shown.
Binary file modified data/oecd_grid1.rda
Binary file not shown.
Binary file modified data/pe_prov_grid1.rda
Binary file not shown.
Binary file modified data/pl_voivodeships_grid1.rda
Binary file not shown.
Binary file modified data/ru_federal_subjects_grid1.rda
Binary file not shown.
Binary file modified data/sa_prov_grid1.rda
Binary file not shown.
Binary file modified data/sa_prov_grid2.rda
Binary file not shown.
Binary file modified data/scotland_local_authority_grid1.rda
Binary file not shown.
Binary file modified data/se_counties_grid1.rda
Binary file not shown.
Binary file modified data/se_counties_grid2.rda
Binary file not shown.
Binary file modified data/sea_grid1.rda
Binary file not shown.
Binary file modified data/sf_bay_area_counties_grid1.rda
Binary file not shown.
Binary file modified data/sg_planning_area_grid1.rda
Binary file not shown.
Binary file modified data/sg_planning_area_grid2.rda
Binary file not shown.
Binary file modified data/sg_regions_grid1.rda
Binary file not shown.
Binary file modified data/sk_province_grid1.rda
Binary file not shown.
Binary file modified data/sl_regions_grid1.rda
Binary file not shown.
Binary file modified data/spain_ccaa_grid1.rda
Binary file not shown.
Binary file modified data/spain_prov_grid1.rda
Binary file not shown.
Binary file modified data/spain_prov_grid2.rda
Binary file not shown.
Binary file modified data/tr_provinces_grid1.rda
Binary file not shown.
Binary file modified data/tw_counties_grid1.rda
Binary file not shown.
Binary file modified data/tw_counties_grid2.rda
Binary file not shown.
Binary file modified data/ua_region_grid1.rda
Binary file not shown.
Binary file modified data/uk_regions1.rda
Binary file not shown.
Binary file modified data/us_ca_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_census_div_grid1.rda
Binary file not shown.
Binary file modified data/us_fl_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_hhs_regions_grid1.rda
Binary file not shown.
Binary file modified data/us_ia_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_id_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_il_chicago_community_areas_grid1.rda
Binary file not shown.
Binary file modified data/us_in_central_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_in_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_in_northern_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_mi_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_mo_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_nc_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_nh_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_ny_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_oh_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_or_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_pa_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_state_contiguous_grid1.rda
Binary file not shown.
Binary file modified data/us_state_grid1.rda
Binary file not shown.
Binary file modified data/us_state_grid2.rda
Binary file not shown.
Binary file modified data/us_state_grid3.rda
Binary file not shown.
Binary file modified data/us_state_grid7.rda
Binary file not shown.
Binary file modified data/us_state_with_DC_PR_grid1.rda
Binary file not shown.
Binary file modified data/us_state_with_DC_PR_grid2.rda
Binary file not shown.
Binary file modified data/us_state_with_DC_PR_grid3.rda
Binary file not shown.
Binary file modified data/us_state_without_DC_grid1.rda
Binary file not shown.
Binary file modified data/us_state_without_DC_grid2.rda
Binary file not shown.
Binary file modified data/us_state_without_DC_grid3.rda
Binary file not shown.
Binary file modified data/us_states_territories_grid1.rda
Binary file not shown.
Binary file modified data/us_tn_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_tx_capcog_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_va_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_wa_counties_grid1.rda
Binary file not shown.
Binary file modified data/us_wi_counties_grid1.rda
Binary file not shown.
Binary file modified data/uy_departamentos_grid1.rda
Binary file not shown.
Binary file modified data/world_86countries_grid.rda
Binary file not shown.
Binary file modified data/world_countries_grid1.rda
Binary file not shown.
9 changes: 9 additions & 0 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 1.5.1
pkgdown_sha: ~
articles:
geofacet: geofacet.html
last_built: 2020-05-25T18:08Z
last_built: 2020-05-25T22:47Z

Loading

0 comments on commit 35d0197

Please sign in to comment.