You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the script src/utils/fuelload.py (line 32) the fuel_load_dataset is calculated as agb_data * ba_data. However units are not consistent: AGB [Mg/hectar] and BA [m2]. A conversion is needed.
The text was updated successfully, but these errors were encountered:
…conversion to dataframe (model input). It solves issues #10 and #12. It also defines a new threshold for BA (50 hectares, see #11, the new threshold is defined by FDG - fire expert) but a reliable reference source is still not available.
* Updated paths
* Implemented conversion of Burned Area from m2 to hectares before the fuel load is calculated in fuelload.py. This addresses issue #10.
* Added new notebook with more concise pre-processing. It includes the conversion to dataframe (model input). It solves issues #10 and #12. It also defines a new threshold for BA (50 hectares, see #11, the new threshold is defined by FDG - fire expert) but a reliable reference source is still not available.
* Notebook notebooks/preprocess_all_in_one.ipynb reformatted using black
* Formatted src/utils/fuelload.py using black
* Minor changes to notebooks/preprocess_all_in_one.ipynb
* renamed notebook and finalised concise version of the data preparation step
* Complete re-write of the data pre-processing step to avoid resampling. This addresses issue #13.
* Added the following amongst predictors: GFED4 basis regions (as categorical variable) and area of grid cell at point (as continuous variable).
* Load formula changed to BA*CC*AGB/AREA
* added log-transformed variables
* updated notebooks with latest run
* model 6h, MAE
* experiments as in ESA-D1 report
* Updated README files to clarify there are two sets of experiments (by wikilimo and ecmwf).
* Update README.md
Describe the bug
In the script
src/utils/fuelload.py
(line 32) thefuel_load_dataset
is calculated asagb_data * ba_data
. However units are not consistent: AGB [Mg/hectar] and BA [m2]. A conversion is needed.The text was updated successfully, but these errors were encountered: