Skip to content

Commit 83637a5

Browse files
committed
Tweaking the metadata / documentation
1 parent 2ce9eea commit 83637a5

File tree

3 files changed

+170
-2114
lines changed

3 files changed

+170
-2114
lines changed

notebooks/drought_fire_risk/00_Search_Download_Scenes.ipynb

+14-8
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"\n",
1111
"#### Introduction\n",
1212
"\n",
13-
"Wildfire impacts to communities are on the rise across much of the world and especially in western North America. Increasing extreme fire behavior and societal impacts are associated with a warmer and drier climate, lack of fire and a culture of fire suppression in fire-prone regions (REF), and rapid development in flammable landscapes. \n",
13+
"Wildfire impacts to communities are on the rise across much of the world and especially in western North America. Increasing extreme fire behavior and societal impacts are associated with a warmer and drier climate which is drying out fuels (1), lack of fire and a culture of fire suppression in fire-prone regions (2), and rapid development in flammable landscapes (3). \n",
1414
"\n",
1515
"The Wildland Urban Interface (WUI), where homes and building intermix with wildland fuels, is the fastest growing land use type in the US leading to increasing wildfire-related impacts. While many regions of the western US are at high risk, the Colorado Front Range is particularly vulnerable/susceptible given the rapidly growing population and impacts from changing climatic patterns leading to more extreme fire behavior. \n",
1616
"\n",
17-
"The 2020 fire season was record-setting in terms of area burned globally (REF). In CO it produced three of the state's top five largest wildfires. In particular, the Cameron Peak and East Troublesome fires both resulted in extreme fire behavior and hundreds of destroyed structures on the Front Range.\n",
17+
"The 2020 fire season was record-setting in terms of area burned globally (4). In CO it produced three of the state's top five largest wildfires. In particular, the Cameron Peak and East Troublesome fires both resulted in extreme fire behavior and hundreds of destroyed structures on the Front Range.\n",
1818
"\n",
1919
"Satellite earth observation (EO) has contributed to major advances in understanding fire risk and impacts in recent decades. Characterization of vegetative fuel using multispectral and radar imagery has changed the way we model fire behavior. Active mapping of wildfire hotspots and daily growth has improved firefighter safety and led to a better understanding of the mechanisims which drive fire growth. Future advances in tracking fuel conditions in near-real-time will improve our ability to understand and map fire risk for communities and fire management personnel.\n",
2020
"\n",
@@ -25,8 +25,17 @@
2525
"Goals for this notebook:\n",
2626
"\n",
2727
"- Search for ECOSTRESS data using 'earthaccess' and a region of interest\n",
28-
"- Use the cloud cover product to identify granules with low cloud cover\n",
29-
"- Download the data granules for further analysis"
28+
"- Filter data granules based on time of acquisition and browse images\n",
29+
"- Download the data granules for further analysis\n",
30+
"\n",
31+
"NOTE: We will be working with Version 001 (V001) ECOSTRESS data in this notebook. Over the next year, V001 will be superceded by V002. However, there were few V002 data granules in our region of interest, as you will see later in the notebook.\n",
32+
"\n",
33+
"References:\n",
34+
"\n",
35+
"1. Abatzoglou, J.T., Williams, A.P., 2016. Impact of anthropogenic climate change on wildfire across western US forests. PNAS 113, 11770–11775. https://doi.org/10.1073/pnas.1607171113\n",
36+
"2. Lake, F.K., Wright, V., Morgan, P., McFadzen, M., McWethy, D., Stevens-Rumann, C., 2017. Returning Fire to the Land: Celebrating Traditional Knowledge and Fire. Journal of Forestry 115, 343–353. https://doi.org/10.5849/jof.2016-043R2\n",
37+
"3. Iglesias, V., Braswell, A.E., Rossi, M.W., Joseph, M.B., McShane, C., Cattau, M., Koontz, M.J., McGlinchy, J., Nagy, R.C., Balch, J., Leyk, S., Travis, W.R., 2021. Risky Development: Increasing Exposure to Natural Hazards in the United States. Earth’s Future 9, e2020EF001795. https://doi.org/10.1029/2020EF001795\n",
38+
"4. Higuera, P.E., Abatzoglou, J.T., 2021. Record-setting climate enabled the extraordinary 2020 fire season in the western United States. Global Change Biology 27, 1–2. https://doi.org/10.1111/gcb.15388"
3039
]
3140
},
3241
{
@@ -2084,10 +2093,7 @@
20842093
" \n",
20852094
" # Download the Granule Asset if it doesn't exist\n",
20862095
" if not os.path.isfile(fp):\n",
2087-
" with fs.get(url,stream=True) as src:\n",
2088-
" with open(fp,'wb') as dst:\n",
2089-
" for chunk in src.iter_content(chunk_size=64*1024*1024):\n",
2090-
" dst.write(chunk)\n",
2096+
" earthaccess.download(lst_links[0], local_path=out_path)\n",
20912097
" else:\n",
20922098
" print(\"*** Already downloaded ***\")\n",
20932099
" print(\" \")\n",

0 commit comments

Comments
 (0)