-
Notifications
You must be signed in to change notification settings - Fork 9
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
Challenge #26 -Forecasting wildfire danger using deep learning #10
Comments
Are historical data will be provided and if yes, which data and how long will be historie. Futhermore, how many fire events (targets ML training) will be provided. |
Hi @anton-stgt , |
Hi , If I have well understood, Target Variable could be selected among CAMS fire or FWI-ERA5, concerning the features of interest can you please indicate which is the reference data-set and the list of main weather variables . Thanks |
Hi @saferplaces |
Thanks a lot for your prompt reply, can you share the available historical daily input dataset used by GEFF system indicator? |
Hi @saferplaces, the inputs for GEFF are in the ERA5 dataset available from the Copernicus Climate Data Store. |
Dear cvitolo, thanks for you rreply,
are those variable available in ERA5? |
Whatever is not available from the Climate Data Store, will be made available to the successful candidates at the beginning of the coding period. |
What is the ground truth we are supposed to use for this project/ where can it be found? |
Hi @RamaniLachyan
You can find more information of GFAS here: Please also keep in mind that this is our suggestion to the proposal. We are very welcome with other good ideas for improving fire danger forecasting. Hope it helps. |
Depending on the spatial extent of this challenge, one might consider combining historical data with satellite imagery. For example the BC government publishes spatial data on historical fires (accessed here through the bcdata R package): library(bcdata)
library(dplyr)
fires <- bcdc_query_geodata('fire-perimeters-historical') %>%
filter(FIRE_YEAR == 2019) %>%
collect()
fires
#> Simple feature collection with 156 features and 17 fields
#> geometry type: MULTIPOLYGON
#> dimension: XY
#> bbox: xmin: 524349.6 ymin: 388236.1 xmax: 1794982 ymax: 1670523
#> CRS: 3005
#> # A tibble: 156 x 18
#> id FIRE_NUMBER VERSION_NUMBER FIRE_YEAR FIRE_CAUSE FIRE_LABEL
#> * <chr> <chr> <int> <int> <chr> <chr>
#> 1 WHSE~ C10085 2019042501 2019 Person 2019-C100~
#> 2 WHSE~ C10092 2019081501 2019 Person 2019-C100~
#> 3 WHSE~ C10094 2019050701 2019 Person 2019-C100~
#> 4 WHSE~ C10193 2019051201 2019 Person 2019-C101~
#> 5 WHSE~ C10205 2019080902 2019 Person 2019-C102~
#> 6 WHSE~ C20025 2019040501 2019 Person 2019-C200~
#> 7 WHSE~ C21414 2019081501 2019 Person 2019-C214~
#> 8 WHSE~ C40192 2019050801 2019 Person 2019-C401~
#> 9 WHSE~ C40408 2019053001 2019 Lightning 2019-C404~
#> 10 WHSE~ C40589 2019061501 2019 Lightning 2019-C405~
#> # ... with 146 more rows, and 12 more variables: FIRE_SIZE_HECTARES <dbl>,
#> # SOURCE <chr>, GPS_TRACK_DATE <chr>, LOAD_DATE <chr>, FIRE_DATE <chr>,
#> # CREATION_METHOD <chr>, FEATURE_CODE <chr>, OBJECTID <int>,
#> # SE_ANNO_CAD_DATA <chr>, FEATURE_AREA_SQM <dbl>, FEATURE_LENGTH_M <dbl>,
#> # geometry <MULTIPOLYGON [m]> Created on 2020-04-06 by the reprex package (v0.3.0) Just stumbled across this issue and thought I'd offer this given the interest in ground truth data. |
Thank you. Are we expected to generate our own GEFF outputs as I cannot seem to find any public GEFF-reanalysis dataset (https://confluence.ecmwf.int/pages/viewpage.action?pageId=73017108) |
Thanks for the suggestion @boshek, that's very valuable! Hi @RamaniLachyan, GEFF reanalysis data was recently migrated to the Copernicus Climate Data Store: https://cds.climate.copernicus.eu/cdsapp#!/dataset/cems-fire-historical?tab=overview |
Hi FWI ModelFire Weather Index - FWI Mc-Arthur 5Fire Danger Index NFDRSBurning Index thank you |
Hi @fadouaeddounia ! |
Only 4 days left to apply to be part of ECMWF Summer of Weather Code 2020. |
Do we have an idea about the ballpark accuracy levels of the existing FORTRAN implementation of GEFF with the ground truth? Could be for any time scales or any geography. Just trying to understand what kind of benchmarks we need to reproduce with the DL models. |
Dear All, we have a doubts concerning the Real value of the target variable to be predicted by ML/DL model, for example in case we would like to train and build a model for FWI target variable, which are the "real" or observation value of the FWI to be used for training the model? I was thinking to use the GEFF Reanalysis FWI value is it correct? are available other FWI observation from Satellite or other surveys? Thanks a lot Regards Stefano |
@lazyoracle we expect to see at least 80% accuracy in Europe
@saferplaces FWI is not observed, it is an index of 'potential danger' derived from meteorological observations. In terms of ground truth you can use: 1) GEFF reanalysis FWI or 2) FWI calculated from ground based meteorological observations. |
What does an "open source" proposal imply? |
Challenge #26 - Forecasting wildfire danger using deep learning
Goal
The project aims to explore whether a deep learning model could be used to predict wildfire danger at various lead times.
Mentors and skills
Challenge description
The Global ECMWF Fire Forecasting (GEFF) system uses Numerical Weather Predictions to drive a number of empirical models to predict forest fire danger indices up to 10/15 days ahead. The current system, written in Fortran, works in both reanalysis and forecast (deterministic and probabilistic) mode. The most widely used fire danger indices were originally designed by Canadian fire experts and later calibrated to better predict fire regimes and patterns occurring in Europe. This means the performance of the forecasts varies widely across the world, working well only in regions like North America and Europe. There might be underlying factors and phenomena ignored or not well captured by the GEFF system, or usage of outdated input which prevents the fire danger forecasts from performing equally well in other regions of the globe.
A machine learning (deep learning) approach (U-Net etc) could be used to explore the relationship between the weather information and the expected fire danger and gain valuable insights.
This project will focus on the following:
We would like interested developers to provide a clear implementation plan, including a description of the model to be used and a validation strategy.
Suggested deliverables and milestones:
We value proposals that are:
The text was updated successfully, but these errors were encountered: