Precipitation and wildfire analysis of Reno, Nevada

Spatial analysis course project using python Spring 2022

In this study I explore the relationship between precipitation and wildfire in the Reno, Nevada area for a 41 year period. Using 4 km precipitation data from gridmet and historical fire perimeters from the BLM, I processed the data to test the correlation between average annual rainfall and wildfire frequency in the Reno area. Then, I tested the correlation between average rainfall and total burned acres each year from 1979 to 2020. Finally, I tested the correlation between average rainfall and the following year’s total burned acres for the time period 1979 to 2020. I found a strong correlation in this lagged relationship.

I downloaded gridmet using code to pull files from a url where the files were listed directly, referencing published code (Ahmadalipour 2022). I downloaded the daily precipitation from 1979 to 2022. Once I determined that I only had fire perimeters through 2020, I restricted the precipitation dataset to 2020 as well. The historical fires data set I downloaded from the blm website as a shapefile (Bureau of Land Management). Refer to the figure below for a visualization of the wildfire dataset restricted to 1979- 2020 and the Reno area with the roads shown as well to illustrate the developed extent. The roads dataset is from the Washoe County GIS portal.

I calculated the area burned by year by using the group by function on the discovery year for the fire attributes. One complication of the data is that there was not a fire every year for the time span. In order to make the data comparable to the average annual rainfall, I appended a “0” to every year that was missing in the historical wildfire dataset. I found the average annual rainfall over the area by averaging with the dimension latitude and longitude.

This shows the annual rainfall per year and the total burned area in acres per year, not including the added zeroes. This visualization is encouraging as it shows some evidence of the relationship found in Pilliod et al. (2017) in which a proportionally large amount of total acres burned follows a proportionally high rainfall year.

To assess the relationship between one year’s rainfall and the total burned acres for the following year, which is the relationship observed in Pilliod et al. (2017), I used the same average annual rainfall averaged over the reno area per year. To create a lagged total burned area dataset, I added a 0 to the end and dropped the first value in order to shift the values forward one year, to compare 1979 average rainfall with 1980 total burned area in acres and so on. This relationship is much more compelling, with a slope of 26.182 and an r-squared value of 0.2351, as seen in the figure below. The p-value of 0.001 indicates that this correlation is significant.

References

Abatzoglou, J. T. 2013. Development of gridded surface meteorological data for ecological applications and modelling. International Journal of Climatology 33:121–131.

Ahmadalipour, A. 2022. Python for Climate Data Analysis: A Tutorial + Code. LinkedIn. Accessed November 14 2022. https://www.linkedin.com/pulse/python-climate-data-analysis-tutorial-code-ali-ahmadalipour

Balch, J. K., B. A. Bradley, C. M. D’Antonio, and J. Gómez-Dans. 2013. Introduced annual grass increases regional fire activity across the arid western USA (1980-2009). Global Change Biology 19:173–183.

Bureau of Land Management. 2021. BLM National Fire Perimeters Polygon. U.S. Department of the Interior. https://gis.blm.gov/EGISDownload/LayerPackages/BLM_National_Fire_Perimeters.zip

Chambers, J. C., B. A. Roundy, R. R. Blank, S. E. Meyer, and A. Whittaker. 2007. What Makes Great Basin Sagebrush Ecosystems Invasible by Bromus tectorum? Ecological Monographs 77:117–145.

Pilliod, D. S., J. L. Welty, and R. S. Arkle. 2017. Refining the cheatgrass-fire cycle in the Great Basin: Precipitation timing and fine fuel composition predict wildfire trends. Ecology and Evolution 7:8126–8151.