Nothing
#' OVCCoordenadas: Reverse geocode a cadastral reference
#'
#' @description
#' Implementation of the OVCCoordenadas service
#' [Consulta RCCOOR](`r ovcurl("RCCOOR")`). Returns the cadastral
#' reference found for a set of specific coordinates.
#'
#' @encoding UTF-8
#' @family OVCCoordenadas
#' @family cadastral references
#' @inheritParams catr_ovc_get_rccoor_distancia
#' @export
#' @inherit catr_ovc_get_rccoor_distancia return
#'
#' @references
#' [Consulta RCCOOR](`r ovcurl("RCCOOR")`).
#'
#' @seealso [catr_srs_values], `vignette("ovcservice", package = "CatastRo")`
#' @inheritParams catr_ovc_get_rccoor_distancia
#'
#' @details
#' When the API does not provide any result, the function returns a
#' [tibble][tibble::tbl_df] with the input arguments only.
#'
#' On a successful query, the function returns a [tibble][tibble::tbl_df] with
#' one row by cadastral reference, including the following columns:
#' - `geo.xcen`, `geo.ycen`, `geo.srs`: Input arguments of the query.
#' - `refcat`: Cadastral Reference.
#' - `address`: Address as recorded in the Cadastre.
#' - Rest of fields: Check the API Docs.
#'
#' @examplesIf run_example()
#' \donttest{
#' catr_ovc_get_rccoor(
#' lat = 38.6196566583596,
#' lon = -3.45624183836806,
#' srs = 4326
#' )
#' }
catr_ovc_get_rccoor <- function(lat, lon, srs = 4326, verbose = FALSE) {
# Sanity checks
lat <- validate_non_empty_arg(lat)
lon <- validate_non_empty_arg(lon)
valid_srs <- CatastRo::catr_srs_values
valid <- as.character(valid_srs[valid_srs$ovc_service, ]$SRS)
srs <- match_arg_pretty(srs, valid)
srs <- paste0("EPSG:", srs)
# Prepare query
## Build url
api_entry <- paste0(
"http://ovc.catastro.meh.es/ovcservweb/",
"OVCSWLocalizacionRC/OVCCoordenadas.asmx/Consulta_RCCOOR?",
"SRS=&Coordenada_X=&Coordenada_Y="
)
api_entry <- httr2::url_modify_query(
api_entry,
SRS = srs,
Coordenada_X = lon,
Coordenada_Y = lat
)
# Extract results
resp <- get_request_body(api_entry, verbose = verbose)
if (is.null(resp)) {
return(NULL)
}
content_list <- xml2::as_list(httr2::resp_body_xml(resp))
# Check API custom error
err <- content_list[["consulta_coordenadas"]]
if (("lerr" %in% names(err))) {
df <- tibble::as_tibble_row(unlist(err["lerr"]))
cli::cli_alert_danger(
paste0("Error code: ", df[1, 1], ". ", df[1, 2])
)
empty <- tibble::tibble(
a = lat,
b = lon,
srs = srs
)
names(empty) <- c("geo.xcen", "geo.ycen", "geo.srs")
return(empty)
}
res <- content_list[["consulta_coordenadas"]][["coordenadas"]][["coord"]]
# Get info of the query
overall <- tibble::as_tibble_row(unlist(res))
# Extract helper info
rc_help <- tibble::tibble(
refcat = paste0(overall$pc.pc1, overall$pc.pc2),
address = overall$ldt
)
# Join all
out <- dplyr::bind_cols(
rc_help,
overall
)
# Numeric
out["geo.xcen"] <- as.numeric(out[["geo.xcen"]])
out["geo.ycen"] <- as.numeric(out[["geo.ycen"]])
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.