-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hello,
I tried to set up CloudCast locally for a custom region and followed the preprocessing steps. I successfully completed Step 1 ("Creating our own training dataset from NWCSAF data"). There are my output files in the nwcsaf directory and the files have normal name format (e.g. 20230905T090000.grib2).
However, I'm encountering an problem with the next step, running tools/create-dataset.py. The script does not find my input files.
Input directory nwcsaf exists and contains GRIB2 files (e.g. 20230905T090000.grib2).
I run the following command:
python tools/create-dataset.py --start_date="2023-09-01 00:00:00" --stop_date="2023-10-01 00:00:00" --preprocess=test --producer=nwcsaf --param=CloudProbability ODIR
Result:
Input directory: nwcsaf
Filter matched 0 files
What is the expected filename pattern for the --producer=nwcsaf option? My files are named YYYYMMDDThhmmss.grib2. Should they follow a different convention?
Could you clarify the purpose and other required values for these options?
--preprocess
--packing_type
--dtype
The producer argument can be set to mnwc, meps, DEM, LSM, clim, cloudcast. Are they intended for fetching additional ancillary data (like orography or land-sea masks) required for the main preprocessing?
If yes, where can I get these files?
Any guidance on resolving the file matching issue or clarifying the parameters would be greatly appreciated.
Best regards,
zion0210