-
Notifications
You must be signed in to change notification settings - Fork 1
Verification files
Thomas Nipen edited this page Jan 23, 2025
·
17 revisions
Bris-inference can generate files suitable for verification. In particular, this output generates files with forecasts and observations in Verif format (https://github.com/WFRT/verif).
This can be configured by adding a Verif output in the config file:
outputs:
- verif:
filename: output_filename.nc
variable: 2t
obs_sources:
- verif:
filename: observation_file.nc
obs_sources is a list of observation sources, described next.
At the moment, observations can be provided by a NetCDF file with the following format:
netcdf format {
dimensions:
time = UNLIMITED;
location = 10;
variables:
int time(time); // Valid time of forecast initialization in
// number of seconds since 1970-01-01 00:00:00 +00:00
float lat(location); // Decimal degrees latitude
float lon(location); // Decimal degrees longitude
float altitude(location); // Altitude in meters
float obs(time, location); // Observations
}
This inspired by the Verif format for storing observations (https://github.com/WFRT/verif/wiki/Arranging-my-own-data). In fact, Bris inference will also parse Verify files in it's full format (not just the simplified format described above).
Copyright © 2024-2025 MET Norway