Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: eppoFindeR
Type: Package
Title: R interface to the EPPO Database and Public APIs
Title: R Interface to the EPPO Database and Public APIs
Version: 2.0.0
Maintainer: Luca Belmonte <luca.belmonte@efsa.europa.eu>
Authors@R:
Expand Down Expand Up @@ -31,10 +31,10 @@ Description: The eppoFindeR package provides an interface to the public APIs
services and datasets. The package also includes utilities for data
wrangling, including the integration of taxonomy with rank information.
License: file LICENSE
URL: https://openefsa.github.io/eppoFindeR
URL: https://openefsa.github.io/eppoFindeR/
BugReports: https://github.com/openefsa/eppoFindeR/issues
Depends:
R (>= 4.0.0)
R (>= 4.1.0)
Imports:
cli (>= 3.6.5),
httr2 (>= 1.2.1),
Expand Down
2 changes: 1 addition & 1 deletion R/reportingService.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#'
#' @param params `list`. A named list of query parameters to include in the
#' request. The list of available parameters can be accessed via the
#' [EPPO API Documentation](https://data2025.eppo.int/ui/#/docs/GDAPI)
#' [EPPO API Documentation](https://data.eppo.int/ui/#/docs/GDAPI)
#' platform.
#'
#' By default: no parameters, you need to specify the required ones.
Expand Down
2 changes: 1 addition & 1 deletion R/taxons.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#'
#' @param params `list` (optional). A named list of query parameters to include
#' in the request. The list of available parameters can be accessed via the
#' [EPPO API Documentation](https://data2025.eppo.int/ui/#/docs/GDAPI)
#' [EPPO API Documentation](https://data.eppo.int/ui/#/docs/GDAPI)
#' platform.
#'
#' By default: default parameters.
Expand Down
2 changes: 1 addition & 1 deletion R/tools.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#'
#' @param params `list`. A named list of query parameters to include in the
#' request. The list of available parameters can be accessed via the
#' [EPPO API Documentation](https://data2025.eppo.int/ui/#/docs/GDAPI)
#' [EPPO API Documentation](https://data.eppo.int/ui/#/docs/GDAPI)
#' platform.
#'
#' By default: no parameters, you need to specify the required ones.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# eppoFindeR <img src="man/figures/logo.png" height="140" align="right"/>
# eppoFindeR <img src="https://raw.githubusercontent.com/openefsa/eppoFindeR/main/man/figures/logo.png" height="140" align="right"/>

[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) [![codecov](https://codecov.io/gh/openefsa/eppoFindeR/branch/main/graph/badge.svg?token=TR7ETTDG2Z)](https://codecov.io/gh/openefsa/eppoFindeR)

Expand Down
4 changes: 2 additions & 2 deletions man/eppoFindeR-package.Rd

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

2 changes: 1 addition & 1 deletion man/reportingService.Rd

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

2 changes: 1 addition & 1 deletion man/taxons.Rd

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

2 changes: 1 addition & 1 deletion man/tools.Rd

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

4 changes: 2 additions & 2 deletions vignettes/eppoFindeR.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ help("taxon")

## Querying a specific category

The *eppoFindeR* package allows you to query all categories available in version 2.0 of the EPPO APIs: General, Taxons, Taxon, Country, Tools, Reporting Services, and References.
The *eppoFindeR* package allows you to query all categories available in version 2.0 of the EPPO APIs: General, Taxons, Taxon, Country, RPPO, Tools, Reporting Service, and References.

Each category has a corresponding function in the package with the same name in *lowerCamelCase* format: general(), taxons(), taxon(), country(), tools(), reportingService(), and reportings(). By default, these functions return all data available under the selected category, but you can customize the query by specifying the desired services.
Each category has a corresponding function in the package with the same name in *lowerCamelCase* format: general(), taxons(), taxon(), country(), rppo(), tools(), reportingService(), and references(). By default, these functions return all data available under the selected category, but you can customize the query by specifying the desired services.

For example, to query all services of the Taxon category for the EPPO code "BEMITA", you can use the following code:

Expand Down
Loading