Download available hot spot data from Serfor's Satellite Monitoring Unit
Source:R/get_hotspots_data.R
get_hotspots_data.Rd
This function allows you to download the latest version of forest fire data available from the Satellite Monitoring Unit of the National Forestry and Wildlife Service of Peru. For more information, please visit the following website: Serfor Platform
Examples
# \donttest{
library(geoidep)
library(sf)
hot_spots <- get_hotspots_data(show_progress = FALSE)
#> Reading layer `file1fa010472a84' from data source
#> `/tmp/Rtmpl42D4M/file1fa010472a84.geojson' using driver `GeoJSON'
#> Simple feature collection with 236 features and 29 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -81.23231 ymin: -17.60513 xmax: -69.27317 ymax: -3.76058
#> Geodetic CRS: WGS 84
head(hot_spots)
#> Simple feature collection with 6 features and 29 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -72.76215 ymin: -17.60513 xmax: -70.99329 ymax: -16.6017
#> Geodetic CRS: WGS 84
#> OBJECTID FUENTE DOCREG
#> 1 11030907 Servicio Nacional Forestal y de Fauna Silvestre
#> 2 11030908 Servicio Nacional Forestal y de Fauna Silvestre
#> 3 11030909 Servicio Nacional Forestal y de Fauna Silvestre
#> 4 11030910 Servicio Nacional Forestal y de Fauna Silvestre
#> 5 11030911 Servicio Nacional Forestal y de Fauna Silvestre
#> 6 11030912 Servicio Nacional Forestal y de Fauna Silvestre
#> FECREG
#> 1 2025-03-23 05:00:00
#> 2 2025-03-23 05:00:00
#> 3 2025-03-23 05:00:00
#> 4 2025-03-23 05:00:00
#> 5 2025-03-23 05:00:00
#> 6 2025-03-23 05:00:00
#> OBSERV
#> 1 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> 2 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> 3 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> 4 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> 5 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> 6 Información generada por la Unidad Funcional de Monitoreo Satelital de la DGIOFFS de SERFOR
#> ZONUTM ORIGEN NOMDEP NOMPRO NOMDIS CAPITAL
#> 1 19 2 MOQUEGUA MARISCAL NIETO MOQUEGUA MOQUEGUA
#> 2 18 2 AREQUIPA CAMANA MARISCAL CACERES SAN JOSE
#> 3 18 2 AREQUIPA CAMANA CAMANA CAMANA
#> 4 18 2 AREQUIPA CAMANA MARISCAL CACERES SAN JOSE
#> 5 18 2 AREQUIPA CAMANA MARISCAL CACERES SAN JOSE
#> 6 18 2 AREQUIPA CAMANA JOSE MARIA QUIMPER EL CARDO
#> FECHA HORA CATEG NOMCATEG LATITUD LONGITUD COORES
#> 1 2025-03-22 05:00:00 13:53:00 30 -17.60513 -70.99329 288485.3
#> 2 2025-03-22 05:00:00 14:19:00 30 -16.61737 -72.76006 738956.2
#> 3 2025-03-23 05:00:00 12:43:00 30 -16.61656 -72.71292 743988.4
#> 4 2025-03-22 05:00:00 13:56:00 30 -16.61553 -72.75883 739089.8
#> 5 2025-03-22 05:00:00 13:56:00 30 -16.61543 -72.76215 738735.6
#> 6 2025-03-23 05:00:00 13:36:00 30 -16.60170 -72.73278 741887.4
#> COORNO created_user created_date last_edited_user last_edited_date
#> 1 8052387 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> 2 8161436 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> 3 8161469 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> 4 8161639 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> 5 8161654 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> 6 8163138 USUFMS 2025-03-24 08:07:30 USUFMS 2025-03-24 08:07:30
#> TIPCOB SENSAT PELIGRO CATDEP CATPRO CATDIS
#> 1 Cobertura Forestal N21 0 18 1801 180101
#> 2 Cobertura Agrícola N 0 04 0402 040204
#> 3 Cobertura Agrícola N20 0 04 0402 040201
#> 4 Cobertura Agrícola N21 0 04 0402 040204
#> 5 Cobertura Agrícola N21 0 04 0402 040204
#> 6 Cobertura Agrícola N21 0 04 0402 040202
#> geometry
#> 1 POINT (-70.99329 -17.60513)
#> 2 POINT (-72.76006 -16.61737)
#> 3 POINT (-72.71292 -16.61656)
#> 4 POINT (-72.75883 -16.61553)
#> 5 POINT (-72.76215 -16.61543)
#> 6 POINT (-72.73278 -16.6017)
# }