Skip to content

Commit

Permalink
SST ice fix (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
GwenChen-NOAA authored Feb 19, 2025
1 parent fbfa515 commit 4ed0116
Showing 1 changed file with 7 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LOG_METPLUS =

OUTPUT_BASE = {ENV[output_base]}

# time looping - options are INIT, VALID, RETRO, and REALTIME
# Time looping - options are INIT, VALID, RETRO, and REALTIME
LOOP_BY = VALID

# Format of VALID_BEG and VALID_END
Expand All @@ -24,19 +24,19 @@ METPLUS_PATH = {ENV[METPLUS_PATH]}
STAT_ANALYSIS_RUNTIME_FREQ = RUN_ONCE_PER_INIT_OR_VALID

# List of applications to run
#PROCESS_LIST = EnsembleStat, GridStat
PROCESS_LIST = EnsembleStat

#convert fcst icec from 0~1 to 0~ 100% to match OSI_SAF data

FCST_VAR1_NAME = TMP_Z0_mean
FCST_VAR1_LEVELS = "(*,*)"
FCST_VAR1_OPTIONS = censor_thresh = [ <271.15 ]; censor_val = [ -9999 ]; vld_thresh = 0.5;
OBS_VAR1_NAME = analysed_sst
OBS_VAR1_LEVELS = "(0,*,*)"
OBS_VAR1_OPTIONS = censor_thresh = [ <271.15 ]; censor_val = [ -9999 ];
ENSEMBLE_STAT_DESC = GE271.15

lead = {ENV[lead]}
LEAD_SEQ = {lead}
#Other environment parameters passed from scripts
# Other environment parameters passed from scripts
MODEL = {ENV[MODEL]}
model = {ENV[model]}

Expand All @@ -48,7 +48,6 @@ TMP_DIR = {OUTPUT_BASE}/tmp
GRID_STAT_ONCE_PER_FIELD = False

ENSEMBLE_STAT_REGRID_TO_GRID = G003
ENSEMBLE_STAT_DESC = NA
ENSEMBLE_STAT_REGRID_METHOD = BILIN
ENSEMBLE_STAT_REGRID_WIDTH = 2
ENSEMBLE_STAT_REGRID_VLD_THRESH = 0.5
Expand All @@ -70,7 +69,6 @@ ENSEMBLE_STAT_INTERP_SHAPE = SQUARE
ENSEMBLE_STAT_INTERP_TYPE_METHOD = NEAREST
ENSEMBLE_STAT_INTERP_TYPE_WIDTH = 1


ENSEMBLE_STAT_OUTPUT_FLAG_ECNT = BOTH
ENSEMBLE_STAT_OUTPUT_FLAG_RPS = NONE
ENSEMBLE_STAT_OUTPUT_FLAG_RHIST = NONE
Expand All @@ -90,8 +88,6 @@ ENSEMBLE_STAT_NC_PAIRS_FLAG_GRADIENT = FALSE
ENSEMBLE_STAT_NC_PAIRS_FLAG_DISTANCE_MAP = FALSE
ENSEMBLE_STAT_NC_PAIRS_FLAG_APPLY_MASK = FALSE



ENSEMBLE_STAT_MET_CONFIG_OVERRIDES = tmp_dir = "{TMP_DIR}"; obs = { file_type = NETCDF_NCCF; }

###############################################################
Expand All @@ -103,15 +99,14 @@ modeltail = {ENV[modeltail]}
obsvpath = {ENV[obsvpath]}
obsvhead = {ENV[obsvhead]}


members = {ENV[members]}

# location of ensemble_stat and grid_stat MET config files
# Location of ensemble_stat MET config file
ENSEMBLE_STAT_CONFIG_FILE = {METPLUS_BASE}/parm/met_config/EnsembleStatConfig_wrapped
ENSEMBLE_STAT_ONCE_PER_FIELD = False
ENSEMBLE_STAT_SKIP_IF_OUTPUT_EXISTS = False

#Defines the name of final metplus conf
# Define the name of final metplus conf
METPLUS_CONF = {OUTPUT_BASE}/final_{model}_sst24h_ens.conf

FCST_ENSEMBLE_STAT_INPUT_DATATYPE = NETCDF
Expand All @@ -126,12 +121,8 @@ FCST_ENSEMBLE_STAT_INPUT_DIR = {modelpath}
OBS_ENSEMBLE_STAT_GRID_INPUT_DIR = {obsvpath}
ENSEMBLE_STAT_OUTPUT_DIR = {OUTPUT_BASE}/stat/{model}


[filename_templates]

FCST_ENSEMBLE_STAT_INPUT_TEMPLATE = atmos.{init?fmt=%Y%m%d}/{modelhead}/{modelhead}.ens??.t{init?fmt=%H}z.{modelgrid}{lead?fmt=%3H}{modeltail}

OBS_ENSEMBLE_STAT_GRID_INPUT_TEMPLATE = atmos.{valid?fmt=%Y%m%d}/{modelhead}/{obsvhead}.t{valid?fmt=%H}z.nc



0 comments on commit 4ed0116

Please sign in to comment.