CRPSS missing in EnsembleStat #1740
-
Again, refer to the issue#1725, I just found that following setting only works for the case in which fcst, obs and climo data ENSEMBLE_STAT_CLIMO_MEAN_FILE_NAME = {climpath}/mean_{valid?fmt=%m%d} But if the field names in fcst or obs are different from the same fields in climo data, the above I tested this case in MET outside of METplus. The CRPSS can be created from EnsembleStat. field = [
]; climo_mean = fcst; file_name = "${CLIM_MEAN}"; field = [
]; } The issue #1725 has been closed, so I open this new issue. Thanks! Binbin |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
@BinbinZhou-NOAA, The ENSEMBLE_STAT_CLIMO_MEAN_USE_FCST variable adds Let me know if this does not resolve your issue. |
Beta Was this translation helpful? Give feedback.
@BinbinZhou-NOAA,
If the field name for the climo field does not match the fcst or obs, then you would not set
ENSEMBLE_STAT_CLIMO_MEAN_USE_FCST
and instead set:ENSEMBLE_STAT_CLIMO_MEAN_FIELD = { name="HGT"; level="P500"; }
The ENSEMBLE_STAT_CLIMO_MEAN_USE_FCST variable adds
climo_mean = fcst;
which essentially just obtains the field list from the fcst dictionary. If the fields are not the same, then you don't need to set this.Let me know if this does not resolve your issue.