fires.txt [23K] -- Wildfire dates, locations, and areas burned for Los Angeles County, 1976--2000. Fires smaller than 10 acres were excluded and the locations are the x-y coordinates of the centroids of the polygons defining the burn area. The format of the table is as follows:
The locations are the x-y coordinates of the centroids of the polygons defining the burn area. After downloading the file, the data can be read into R (version 2.0.0 or higher) with the following command:
fires <- read.table("fires.txt", header = TRUE, colClasses = c("Date", rep("numeric", 3)))
fires.rda [12K] -- Same wildfire data as above except stored as a compressed R workspace file. After downloading the file, the data can be loaded directly into R using the load() function.
More information about the wildfire data can be obtained by contacting
James A. WoodsBIdata.txt [1.3M] -- Burning Index (BI) daily data for 8 weather stations in Los Angeles County. The table has 3 columns:
A value of NA indicates missing data. After downloading the file, the data can be read into R (version 2.0.0 or higher) with the following command:
bidata <- read.table("BIdata.txt", header = TRUE, colClasses = c("numeric", "factor", "Date"))
BIdata.rda [240K] -- Same BI data as above except stored as a compressed R workspace file.
The reference for the paper is:
Peng RD, Schoenberg FP, Woods JA (2005). "A space-time conditional intensity model for evaluating a wildfire hazard index," Journal of the American Statistical Association, 100 (469), 26--35.