-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from dieghernan/structured
Add structured query api
- Loading branch information
Showing
65 changed files
with
2,529 additions
and
523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,4 @@ | |
^CODE_OF_CONDUCT\.md$ | ||
^CONTRIBUTING\.md$ | ||
^Rplots\.pdf$ | ||
^vignettes/articles$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,21 +109,6 @@ references: | |
- type: url | ||
value: https://arxiv.org/abs/1403.2805 | ||
version: '>= 1.7.0' | ||
- type: software | ||
title: lifecycle | ||
abstract: 'lifecycle: Manage the Life Cycle of your Package Functions' | ||
notes: Imports | ||
url: https://lifecycle.r-lib.org/ | ||
repository: https://CRAN.R-project.org/package=lifecycle | ||
authors: | ||
- family-names: Henry | ||
given-names: Lionel | ||
email: [email protected] | ||
- family-names: Wickham | ||
given-names: Hadley | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0003-4757-117X | ||
year: '2024' | ||
- type: software | ||
title: sf | ||
abstract: 'sf: Simple Features for R' | ||
|
@@ -211,6 +196,21 @@ references: | |
email: [email protected] | ||
orcid: https://orcid.org/0000-0003-0645-5666 | ||
year: '2024' | ||
- type: software | ||
title: lifecycle | ||
abstract: 'lifecycle: Manage the Life Cycle of your Package Functions' | ||
notes: Suggests | ||
url: https://lifecycle.r-lib.org/ | ||
repository: https://CRAN.R-project.org/package=lifecycle | ||
authors: | ||
- family-names: Henry | ||
given-names: Lionel | ||
email: [email protected] | ||
- family-names: Wickham | ||
given-names: Hadley | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0003-4757-117X | ||
year: '2024' | ||
- type: software | ||
title: rmarkdown | ||
abstract: 'rmarkdown: Dynamic Documents for R' | ||
|
@@ -266,6 +266,21 @@ references: | |
email: [email protected] | ||
year: '2024' | ||
version: '>= 3.0.0' | ||
- type: software | ||
title: tibble | ||
abstract: 'tibble: Simple Data Frames' | ||
notes: Suggests | ||
url: https://tibble.tidyverse.org/ | ||
repository: https://CRAN.R-project.org/package=tibble | ||
authors: | ||
- family-names: Müller | ||
given-names: Kirill | ||
email: [email protected] | ||
orcid: https://orcid.org/0000-0002-1416-3412 | ||
- family-names: Wickham | ||
given-names: Hadley | ||
email: [email protected] | ||
year: '2024' | ||
- type: software | ||
title: tidygeocoder | ||
abstract: 'tidygeocoder: Geocoding Made Easy' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#' OpenStreetMap amenity database | ||
#' | ||
#' @description | ||
#' Database with the list of amenities available on OpenStreetMap. | ||
#' | ||
#' @family datasets | ||
#' @family amenity | ||
#' | ||
#' @encoding UTF-8 | ||
#' | ||
#' @name osm_amenities | ||
#' | ||
#' @docType data | ||
#' | ||
#' @format | ||
#' A [`tibble`][tibble::tibble] with with | ||
#' `r prettyNum(nrow(nominatimlite::osm_amenities), big.mark=",")` rows and | ||
#' fields: | ||
#' \describe{ | ||
#' \item{category}{The category of the amenity.} | ||
#' \item{amenity}{The value of the amenity.} | ||
#' \item{comment}{A brief description of the type of amenity.} | ||
#' } | ||
#' | ||
#' | ||
#' @source <https://wiki.openstreetmap.org/wiki/Key:amenity> | ||
#' | ||
#' @note Data extracted on **03 April 2024**. | ||
#' | ||
#' @examples | ||
#' | ||
#' data("osm_amenities") | ||
#' | ||
#' osm_amenities | ||
NULL |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.