Download information on the latest deforestation alerts detected by Geobosque
Source:R/get_early_warning.R
get_early_warning.Rd
This function allows you to download deforestation alert information detected by Geobosque for any polygon located in Peru. For more details, please visit the following website: https://geobosques.minam.gob.pe
Examples
# \donttest{
library(geoidep)
amazonas <- get_departaments(show_progress = FALSE) |> subset(NOMBDEP == "AMAZONAS")
warning_point <- get_early_warning(region = amazonas, sf = TRUE, show_progress = FALSE)
head(warning_point)
#> Simple feature collection with 6 features and 1 field
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -77.49057 ymin: -6.333926 xmax: -77.47212 ymax: -6.327956
#> Geodetic CRS: WGS 84
#> # A tibble: 6 × 2
#> descrip geometry
#> <chr> <POINT [°]>
#> 1 Warning points (-77.49003 -6.333926)
#> 2 Warning points (-77.4903 -6.333926)
#> 3 Warning points (-77.49057 -6.333926)
#> 4 Warning points (-77.47267 -6.331483)
#> 5 Warning points (-77.47348 -6.331483)
#> 6 Warning points (-77.47212 -6.327956)
# }