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
TL;DR: It is not clear to me how to download the ERA5 constants.
I'm trying to download ERA5 for use in my own project. I want to do "direct-forecasting" and I am using the cl.data.IterDataModule.
In the docs, it says that land_sea_mask, orography, and lattitude should be downloaded as constants. If I include "constants" in my list of variables, it seems to work fine and downloads a file called "constants.nc". The docs for preprocessing say that "constants should not be included in variables and it handles it automatically", and the preprocessing script seems to run fine.
However, when I try to run training, I get an error saying it cannot find the three constants. If I remove the three constants from the data loader, my training script runs fine. (I just have 138 input channels instead of 141.)
So I think the issue is me doing something wrong when I am downloading the constants...
This is what I am using to download and preprocess the data. Is there something obvious I am doing wrong?
TL;DR: It is not clear to me how to download the ERA5 constants.
I'm trying to download ERA5 for use in my own project. I want to do
"direct-forecasting"
and I am using thecl.data.IterDataModule
.In the docs, it says that
land_sea_mask
,orography
, andlattitude
should be downloaded asconstants
. If I include "constants" in my list of variables, it seems to work fine and downloads a file called "constants.nc". The docs for preprocessing say that "constants should not be included in variables and it handles it automatically", and the preprocessing script seems to run fine.However, when I try to run training, I get an error saying it cannot find the three constants. If I remove the three constants from the data loader, my training script runs fine. (I just have 138 input channels instead of 141.)
So I think the issue is me doing something wrong when I am downloading the constants...
This is what I am using to download and preprocess the data. Is there something obvious I am doing wrong?
Download script
Preprocessing Script
The text was updated successfully, but these errors were encountered: