R/get_apikeys.R

Defines functions get_apikeys

Documented in get_apikeys

#' @title List of all API keys from IGN
#'
#' @description
#' All API keys are manually extract from this
#' [table](https://geoservices.ign.fr/documentation/services/tableau_ressources)
#' provided by IGN.
#'
#' @name get_apikeys
#' @return `character`
#' @export
#'
#' @examples
#' \dontrun{
#' # One API key
#' get_apikeys()[1]
#'
#' # All API keys
#' get_apikeys()
#' }
#'
get_apikeys <- function() {
   apikeys <- c(
      "administratif",
      "adresse",
      "agriculture",
      "altimetrie",
      "cartes",
      "cartovecto",
      "clc",
      "economie",
      "enr",
      "environnement",
      "geodesie",
      "lambert93",
      "ocsge",
      "ortho",
      "orthohisto",
      "parcellaire",
      "satellite",
      "sol",
      "topographie",
      "transports"
   )
   apikeys
}
paul-carteron/happign documentation built on June 15, 2025, 8:24 a.m.