-
Notifications
You must be signed in to change notification settings - Fork 1.1k
wildfire risk forecasting using climax #2172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
This is the new pr for this notebook - #2226 |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:47Z Wildfire risk forecasting across the usa using ClimaX and multi-dimensional time-series weather data |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:48Z text is not consistent, some are canel cases while others are not. Keep minimum headings for example
|
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:49Z Wildfires are an increasingly prevalent and destructive natural disaster, particularly in regions of the United States that are prone to dry conditions, high temperatures, and droughts. The unpredictability of wildfires poses significant challenges for disaster management, risk assessment, and environmental protection. Accurate forecasting of wildfire likelihood is crucial for enabling early intervention and effective resource allocation in affected regions. This project aims to leverage cutting-edge technologies in machine learning and climate data analysis to forecast the likelihood of wildfires in the United States. Specifically, it utilizes the pretrained ClimaX foundational model—a state-of-the-art machine learning model by Microsoft, designed for forecasting weather and climate tasks as well as events impacted by them, such as wildfires. Here, the model utilizes a multi-dimensional time-series dataset**,** the Wildfire Weather Cube. This dataset contains historical data on key weather parameters such as temperature, humidity, wind speed, and precipitation (remove 'etc.') recorded from 2001 to 2021, which are critical in predicting the conditions conducive to wildfires. The project intends to generate a likelihood raster of wildfire risk, enabling more informed decision-making for emergency response teams, policymakers (one word), and communities. The objective is to provide actionable insights into when and where such events are most likely to occur, based on historical weather patterns and climate projections.Key Corrections:
|
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:49Z All non-arcgis imports should be on top, followd by arcgis related imports. Currently, it's a mix of both |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:50Z we should remove this cell |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:51Z _out_variables is a hidden argument which should not be exposed |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:52Z heading not required |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:52Z make spacing consistent model = ClimaX(data, backbone="1.40625deg", patch_size=4) |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:53Z We should have model.supported_backbones propery, however the one used here is a hidden one which should not be used |
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:54Z spacing should be fixed odel.save("climax_wildfire_likelihood_forecast_v1.model", publish=True)
|
View / edit / reply to this conversation on ReviewNB priyankatuteja commented on 2025-02-20T07:21:55Z incorrect formatting. the code is visible for pasting gif
|
<insert pull request description here>
Checklist
Please go through each entry in the below checklist and mark an 'X' if that condition has been met. Every entry should be marked with an 'X' to be get the Pull Request approved.
import
s are in the first cell?arcgis
imports? Note that in some cases, for samples, it is a good idea to keep the imports next to where they are used, particularly for uncommonly used features that we want to highlight.GIS
object instantiations are one of the following?gis = GIS()
gis = GIS('home')
orgis = GIS('pro')
gis = GIS(profile="your_online_portal")
gis = GIS(profile="your_enterprise_portal")
./misc/setup.py
and/or./misc/teardown.py
?api_data_owner
user?api_data_owner
account and change the notebook to first download and unpack the files.<img src="base64str_here">
instead of<img src="https://some.url">
? All map widgets contain a static image preview? (Callmapview_inst.take_screenshot()
to do so)os.path.join()
? (Instead ofr"\foo\bar"
,os.path.join(os.path.sep, "foo", "bar")
, etc.)Export Training Data Using Deep Learning
tool published on geosaurus org (api data owner account) and added in the notebook usinggis.content.get
function?gis.content.get
function? Note: This includes providing test raster and trained model.