getdata

📍🌎 A R package to get location data from a variety of open sources

https://github.com/elipousson/getdata

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (18.7%) to scientific vocabulary

Keywords

r r-package rspatial rstats
Last synced: 6 months ago · JSON representation

Repository

📍🌎 A R package to get location data from a variety of open sources

Basic Info
Statistics
  • Stars: 12
  • Watchers: 2
  • Forks: 2
  • Open Issues: 2
  • Releases: 0
Topics
r r-package rspatial rstats
Created over 3 years ago · Last pushed over 1 year ago
Metadata Files
Readme Changelog Contributing License Codemeta

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)
```

# getdata 


[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![Codecov test coverage](https://codecov.io/gh/elipousson/getdata/branch/main/graph/badge.svg)](https://app.codecov.io/gh/elipousson/getdata?branch=main)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)


The goal of {getdata} is to make the experience of getting location data easier and more consistent across a wide variety of sources. {getdata} started as part of the [{overedge}](https://elipousson.github.io/overedge/) package along with [{maplayer}](https://elipousson.github.io/maplayer/) and [{sfext}](https://elipousson.github.io/sfext/).

{getdata} is designed to work well with location-specific data packages such as [{mapmaryland}](https://elipousson.github.io/mapmaryland/) and [{mapbaltimore}](https://elipousson.github.io/mapbaltimore/) and to support reproducible approaches to map-making and place-based data analysis. Using data access functions from {sfext} and additional API wrapper functions, this package supports data access for sources including:

-   ArcGIS FeatureServer and MapServer layers (using [{esri2sf}](https://github.com/yonghah/esri2sf))
-   U.S. Census Bureau data (using [{tigris}](https://github.com/walkerke/tigris))
-   OpenStreetMap (using [{osmdata}](https://docs.ropensci.org/osmdata/))
-   Socrata Open Data resources (using [{RSocrata](https://github.com/Chicago/RSocrata)})
-   Google Sheets (using [{googlesheets4}](https://googlesheets4.tidyverse.org/))
-   Flickr photos (using [{FlickrAPI}](https://koki25ando.github.io/FlickrAPI/))
-   Static map images from Mapbox (using [{mapboxapi}](https://walker-data.com/mapboxapi/))
-   Airtable bases (using {httr2} and the [Airtable API](https://airtable.com/api))
-   Wikipedia articles (using {httr2} and the [Wikipedia Geosearch API](https://www.mediawiki.org/wiki/Extension:GeoData))
-   Other spatial data sources including Google MyMaps, GitHub gists, and any data source already supported by [sf::read_sf()](https://r-spatial.github.io/sf/reference/st_read.html) (see [sfext::read_sf_ext()](https://elipousson.github.io/sfext/reference/read_sf_ext.html) for more details)

The advantage of using {getdata} is that it provides a consistent interface for using a location to create a bounding box for spatial filtering. Many functions also support querying spatial data by name or id. Where possible, a spatial filter is used before importing or downloading data to avoid the need to load large data files when you are only need a small area. The package also provides a consistent approach for handling API tokens and keys and for caching data locally (see [set_access_token()](https://elipousson.github.io/getdata/reference/set_access_token.html) or [filenamr::get_data_dir()](https://elipousson.github.io/sfext/reference/get_data_dir.html) for more details).

The related {sfext} package allows {getdata} to supports the easy conversion of tabular data into spatial data. For example, if the source data has coordinates, you can convert the data into an sf object. If data has an address column, you can geocode the data using the [{tidygeocoder}](https://jessecambon.github.io/tidygeocoder/) package. If the data has a location name column, such as "neighborhood", you can join the data to a simple feature object with the related geometry. You also can turn off these options by setting `geometry = FALSE` for most data access functions.

Lastly, the [format_data()](https://elipousson.github.io/getdata/reference/format_data.html) and [format_sf_data()](https://elipousson.github.io/getdata/reference/format_sf_data.html) functions provide convenient options for working with the data after it is downloaded. While advanced R users may prefer to create more custom formatting scripts, these functions are designed to support the creation of custom data formatting and access functions such as [format_md_crash_data()](https://elipousson.github.io/mapmaryland/reference/format_md_sf.html) and [get_md_crash_data()](https://elipousson.github.io/mapmaryland/reference/get_md_open_data.html).

Fair warning: this package is *not* optimized for speed and I have no plans to submit it to CRAN. This package imports {rlang} for both non-standard evaluation and error handling and relies on {dplyr}, {purrr}, and other tidyverse packages. Suggestions for additional data sources to support, new functions, or improvements to existing functions are welcome.

## Installation

You can install the development version of getdata like so:

``` r
pak::pkg_install("elipousson/getdata")
```

## Basic usage

`get_location_data()` is a flexible function for reading and subsetting data. In this example, data is a file path but it can also be a URL, the name of a data set in another package, or a sf object.

```{r}
library(getdata)
library(dplyr)

# location is optional
nc <- get_location_data(data = system.file("shape/nc.shp", package = "sf"))
```

You can use [get_location()](https://elipousson.github.io/getdata/reference/) to get a specific location from a larger simple feature collection that includes a specific type of locations, such as counties in North Carolina. The most basic approach is filtering by name or id:

```{r get_location}
# get_location works with a type sf object and name and id values
location <- get_location(type = nc, name = "Warren", name_col = "NAME")
```

You can then access data within or around this specific location. For example, `get_location_data()` can return all counties within a quarter-mile of Warren County.

```{r}
nearby_counties <- get_location_data(
  data = nc,
  location = location,
  dist = 0.25,
  unit = "mi",
  crop = FALSE
)

glimpse(nearby_counties)
```

This same approach of using names as an attribute query or locations with buffers as a spatial filter works for most functions in this package. You can access data from OpenStreetMap:

```{r}
county_parks <- get_osm_data(
  location = nearby_counties[1, ],
  asp = 1,
  key = "leisure",
  value = "park",
  geometry = "polygons"
)

glimpse(county_parks)
```

You can also access data from any public ArcGIS MapServer or FeatureServer layers:

```{r}
nps_park_url <- "https://carto.nationalmap.gov/arcgis/rest/services/govunits/MapServer/29"

nps_park <- get_esri_data(
  url = nps_park_url,
  name = "Cape Lookout National Seashore",
  name_col = "NAME",
  quiet = TRUE
)

glimpse(nps_park)
```

In some cases, an API key may be required for functions to work:

```{r get_open_data, eval = FALSE}
## Get Q2 2020 vehicle crash data for Cecil County, Maryland
get_open_data(
  source_url = "https://opendata.maryland.gov",
  data = "65du-s3qu",
  where = "(year = '2020') AND (quarter = 'Q2')",
  name_col = "county_desc",
  name = "Cecil",
  token = Sys.getenv("MARYLAND_OPEN_DATA_API_KEY")
)
```

You must set or provide an API token or key for `get_open_data()`, `get_airtable_data()`, `get_flickr_photos()` to work. `get_gsheet_data()` will require user authentication (handled automatically by the {googlesheets4} package).

## Helper and utility functions

The package also includes a handful of helper and wrapper functions designed that can be used for formatting, labelling, and other tasks.

For example, you can use `fix_epoch_date()` to convert columns with [UNIX time](https://en.wikipedia.org/wiki/Unix_time) numeric values to POSIXct values:

```{r}
nps_park[["loaddate"]]

nps_park <- fix_epoch_date(nps_park)

nps_park[["loaddate"]]
```

You can use `make_variable_dictionary()` to make a custom dictionary:

```{r}
make_variable_dictionary(
  nps_park[, c(10:12)],
  .labels = c(
    "Geographic Names Information System identifier",
    "Park name",
    "Area (sq km)",
    "Geometry"
  )
)
```

Or you can use `rename_with_xwalk()` to rename columns:

```{r}
rename_with_xwalk(
  nps_park[, c(10:12)],
  xwalk = list(
    "gnis" = "gnis_id",
    "sq_km" = "areasqkm"
  )
)
```

Owner

  • Name: Eli Pousson
  • Login: elipousson
  • Kind: user
  • Location: Baltimore, MD
  • Company: Baltimore City Department of Planning

I love old buildings and bicycles. Planner with the Baltimore City Department of Planning. Former preservationist @baltimoreheritage

CodeMeta (codemeta.json)

{
  "@context": "https://doi.org/10.5063/schema/codemeta-2.0",
  "@type": "SoftwareSourceCode",
  "identifier": "getdata",
  "description": "Download and format spatial and non-spatial data with simple filtering by location.",
  "name": "getdata: Get Easy Access to Tabular and Spatial Data",
  "relatedLink": "https://elipousson.github.io/getdata/",
  "codeRepository": "https://github.com/elipousson/getdata",
  "issueTracker": "https://github.com/elipousson/getdata/issues",
  "license": "https://spdx.org/licenses/MIT",
  "version": "0.1.0.9005",
  "programmingLanguage": {
    "@type": "ComputerLanguage",
    "name": "R",
    "url": "https://r-project.org"
  },
  "runtimePlatform": "R version 4.3.2 (2023-10-31)",
  "author": [
    {
      "@type": "Person",
      "givenName": "Eli",
      "familyName": "Pousson",
      "email": "eli.pousson@gmail.com",
      "@id": "https://orcid.org/0000-0001-8280-1706"
    }
  ],
  "copyrightHolder": [
    {
      "@type": "Person",
      "givenName": "Eli",
      "familyName": "Pousson",
      "email": "eli.pousson@gmail.com",
      "@id": "https://orcid.org/0000-0001-8280-1706"
    }
  ],
  "maintainer": [
    {
      "@type": "Person",
      "givenName": "Eli",
      "familyName": "Pousson",
      "email": "eli.pousson@gmail.com",
      "@id": "https://orcid.org/0000-0001-8280-1706"
    }
  ],
  "softwareSuggestions": [
    {
      "@type": "SoftwareApplication",
      "identifier": "bingmapr",
      "name": "bingmapr",
      "version": ">= 0.1.0",
      "sameAs": "https://github.com/elipousson/bingmapr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "covr",
      "name": "covr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=covr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "elevatr",
      "name": "elevatr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=elevatr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "filenamr",
      "name": "filenamr",
      "sameAs": "https://github.com/elipousson/filenamr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "FlickrAPI",
      "name": "FlickrAPI",
      "version": ">= 0.1.0.1",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=FlickrAPI"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "googlesheets4",
      "name": "googlesheets4",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=googlesheets4"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "knitr",
      "name": "knitr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=knitr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "labelled",
      "name": "labelled",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=labelled"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "lubridate",
      "name": "lubridate",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=lubridate"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "mapboxapi",
      "name": "mapboxapi",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=mapboxapi"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "naniar",
      "name": "naniar",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=naniar"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "osmdata",
      "name": "osmdata",
      "version": ">= 0.1.10",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=osmdata"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "rairtable",
      "name": "rairtable",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rairtable"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "readr",
      "name": "readr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=readr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "roxygen2",
      "name": "roxygen2",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=roxygen2"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "RSocrata",
      "name": "RSocrata",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://github.com/Chicago/RSocrata"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "smoothr",
      "name": "smoothr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=smoothr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "stringr",
      "name": "stringr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=stringr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "testthat",
      "name": "testthat",
      "version": ">= 3.0.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=testthat"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tidygeocoder",
      "name": "tidygeocoder",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tidygeocoder"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tidyr",
      "name": "tidyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tidyr"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "tigris",
      "name": "tigris",
      "version": ">= 2.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tigris"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "units",
      "name": "units",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=units"
    },
    {
      "@type": "SoftwareApplication",
      "identifier": "withr",
      "name": "withr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=withr"
    }
  ],
  "softwareRequirements": {
    "1": {
      "@type": "SoftwareApplication",
      "identifier": "R",
      "name": "R",
      "version": ">= 2.10"
    },
    "2": {
      "@type": "SoftwareApplication",
      "identifier": "cli",
      "name": "cli",
      "version": ">= 2.5.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=cli"
    },
    "3": {
      "@type": "SoftwareApplication",
      "identifier": "cliExtras",
      "name": "cliExtras",
      "version": ">= 0.1.0",
      "sameAs": "https://github.com/elipousson/cliExtras"
    },
    "4": {
      "@type": "SoftwareApplication",
      "identifier": "DBI",
      "name": "DBI",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=DBI"
    },
    "5": {
      "@type": "SoftwareApplication",
      "identifier": "dplyr",
      "name": "dplyr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=dplyr"
    },
    "6": {
      "@type": "SoftwareApplication",
      "identifier": "esri2sf",
      "name": "esri2sf",
      "version": ">= 0.2.0",
      "sameAs": "https://github.com/elipousson/esri2sf"
    },
    "7": {
      "@type": "SoftwareApplication",
      "identifier": "glue",
      "name": "glue",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=glue"
    },
    "8": {
      "@type": "SoftwareApplication",
      "identifier": "httr2",
      "name": "httr2",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=httr2"
    },
    "9": {
      "@type": "SoftwareApplication",
      "identifier": "janitor",
      "name": "janitor",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=janitor"
    },
    "10": {
      "@type": "SoftwareApplication",
      "identifier": "lifecycle",
      "name": "lifecycle",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=lifecycle"
    },
    "11": {
      "@type": "SoftwareApplication",
      "identifier": "magrittr",
      "name": "magrittr",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=magrittr"
    },
    "12": {
      "@type": "SoftwareApplication",
      "identifier": "rlang",
      "name": "rlang",
      "version": ">= 1.1.0",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=rlang"
    },
    "13": {
      "@type": "SoftwareApplication",
      "identifier": "sf",
      "name": "sf",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=sf"
    },
    "14": {
      "@type": "SoftwareApplication",
      "identifier": "sfext",
      "name": "sfext",
      "version": ">= 0.0.0.9001",
      "sameAs": "https://github.com/elipousson/sfext"
    },
    "15": {
      "@type": "SoftwareApplication",
      "identifier": "tibble",
      "name": "tibble",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tibble"
    },
    "16": {
      "@type": "SoftwareApplication",
      "identifier": "tidyselect",
      "name": "tidyselect",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=tidyselect"
    },
    "17": {
      "@type": "SoftwareApplication",
      "identifier": "utils",
      "name": "utils"
    },
    "18": {
      "@type": "SoftwareApplication",
      "identifier": "vctrs",
      "name": "vctrs",
      "provider": {
        "@id": "https://cran.r-project.org",
        "@type": "Organization",
        "name": "Comprehensive R Archive Network (CRAN)",
        "url": "https://cran.r-project.org"
      },
      "sameAs": "https://CRAN.R-project.org/package=vctrs"
    },
    "SystemRequirements": null
  },
  "fileSize": "407.19KB",
  "releaseNotes": "https://github.com/elipousson/getdata/blob/master/NEWS.md",
  "readme": "https://github.com/elipousson/getdata/blob/main/README.md",
  "contIntegration": "https://app.codecov.io/gh/elipousson/getdata?branch=main",
  "developmentStatus": [
    "https://lifecycle.r-lib.org/articles/stages.html#experimental",
    "https://www.repostatus.org/#active"
  ],
  "keywords": [
    "r",
    "rstats",
    "r-package",
    "rspatial"
  ]
}

GitHub Events

Total
  • Push event: 6
Last Year
  • Push event: 6

Committers

Last synced: about 2 years ago

All Time
  • Total Commits: 376
  • Total Committers: 2
  • Avg Commits per committer: 188.0
  • Development Distribution Score (DDS): 0.003
Past Year
  • Commits: 128
  • Committers: 2
  • Avg Commits per committer: 64.0
  • Development Distribution Score (DDS): 0.008
Top Committers
Name Email Commits
Eli Pousson e****n@g****m 375
ming m****t@g****m 1

Issues and Pull Requests

Last synced: over 1 year ago

All Time
  • Total issues: 2
  • Total pull requests: 1
  • Average time to close issues: N/A
  • Average time to close pull requests: about 1 hour
  • Total issue authors: 1
  • Total pull request authors: 1
  • Average comments per issue: 0.0
  • Average comments per pull request: 1.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 1
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 1
  • Pull request authors: 0
  • Average comments per issue: 0.0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • elipousson (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/pkgdown.yaml actions
  • JamesIves/github-pages-deploy-action 4.1.4 composite
  • actions/checkout v2 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/test-coverage.yaml actions
  • actions/checkout v3 composite
  • actions/upload-artifact v3 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION cran
  • R >= 2.10 depends
  • cli * imports
  • cliExtras >= 0.1.0 imports
  • dplyr * imports
  • glue * imports
  • httr2 * imports
  • janitor * imports
  • lifecycle * imports
  • magrittr * imports
  • purrr * imports
  • rlang >= 0.4.11 imports
  • sf * imports
  • sfext >= 0.0.0.9001 imports
  • tibble * imports
  • utils * imports
  • vctrs * imports
  • withr * imports
  • FlickrAPI >= 0.1.0.1 suggests
  • RSocrata * suggests
  • bingmapr >= 0.1.0 suggests
  • covr * suggests
  • esri2sf * suggests
  • googlesheets4 * suggests
  • knitr * suggests
  • labelled * suggests
  • lubridate * suggests
  • mapboxapi * suggests
  • naniar * suggests
  • osmdata >= 0.1.10 suggests
  • rappdirs * suggests
  • roxygen2 * suggests
  • smoothr * suggests
  • stringr * suggests
  • testthat >= 3.0.0 suggests
  • tidygeocoder * suggests
  • tidyr * suggests
  • tigris * suggests
  • units * suggests