This map shows the Fire Occurrence Locations and Burned Area Boundaries from the beginning of the Landsat Thematic Mapper archive to the present in the US. The Monitoring Trends in Burn Severity (MTBS) project maps the location, extent, and severity of all large fires in the conterminous United States, Alaska, Hawaii and Puerto Rico from the beginning of the Landsat Thematic Mapper archive to the present. All documented fires greater than 1,000 acres in the western U.S. and greater than 500 acres in the eastern U.S. are mapped across all ownerships. The data was updated on 03-31-2020.
library(readr)
FireDataHW5 <- read_csv("~/UTSA documents/2022 - Spring/STA 4233 - R/FireDataHW5.csv")
## Rows: 1345 Columns: 25
## -- Column specification --------------------------------------------------------
## Delimiter: ","
## chr (7): FIRE_ID, ASMNT_TYPE, FIRE_TYPE, FIRE_NAME, IG_DATE, MAP_PROG, COMM...
## dbl (17): X, Y, OBJECTID, PRE_ID, POST_ID, NODATA_THRESHOLD, LOW_THRESHOLD, ...
## lgl (1): IRWINID
##
## i Use `spec()` to retrieve the full column specification for this data.
## i Specify the column types or set `show_col_types = FALSE` to quiet this message.
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.1.3
FireDataHW5 %>%
leaflet() %>%
addTiles() %>%
addMarkers(popup=FireDataHW5$FIRE_TYPE , clusterOptions=markerClusterOptions())
## Assuming "LONGITUDE" and "LATITUDE" are longitude and latitude, respectively