////////////////////////////////////////////////////////////////////////////////
//
// Series-Analysis configuration file.
//
// For additional information, please see the MET User's Guide.
//
////////////////////////////////////////////////////////////////////////////////

//
// Output model name to be written
//
model = "${MODEL}";

//
// Output description to be written
//
desc = "NA";

//
// Output observation type to be written
//
obtype = "${OBTYPE}";

////////////////////////////////////////////////////////////////////////////////

//
// Verification grid
//
regrid = {
   to_grid    = NONE;
   method     = NEAREST;
   width      = 1;
   vld_thresh = 0.5;
}

////////////////////////////////////////////////////////////////////////////////

cnt_thresh  = [ NA ];
cnt_logic   = UNION;

//
// Forecast and observation fields to be verified
//
fcst = {
   cat_thresh = [ ${FCST_CAT_THRESH} ];
   field      = [ ${FCST_FIELD}      ];
}

obs = {
   cat_thresh = [ ${OBS_CAT_THRESH} ];
   field      = [ ${OBS_FIELD}      ];
}

////////////////////////////////////////////////////////////////////////////////

//
// Climatology data
//
climo_mean = {

   file_name = [];
   field     = [];

   regrid = {
      method     = NEAREST;
      width      = 1;
      vld_thresh = 0.5;
      shape      = SQUARE;
   }

   time_interp_method = DW_MEAN;
   day_interval       = 31;
   hour_interval      = 6;
}

climo_stdev = climo_mean;
climo_stdev = {
   file_name = [];
}

climo_cdf = {
   cdf_bins    = 1;
   center_bins = FALSE;
   direct_prob = FALSE;
}

////////////////////////////////////////////////////////////////////////////////

//
// Confidence interval settings
//
ci_alpha  = [ 0.05, 0.10 ];

boot = {
   interval = PCTILE;
   rep_prop = 1.0;
   n_rep    = 0;
   rng      = "mt19937";
   seed     = "1";
}

////////////////////////////////////////////////////////////////////////////////

//
// Verification masking regions
//
mask = {
   grid = "";
   poly = "${MASK_POLY}";
}

//
// Number of grid points to be processed concurrently. Set smaller to use less
// memory but increase the number of passes through the data. If set <= 0, all
// grid points are processed concurrently.
//
block_size = 169*154;

//
// Ratio of valid matched pairs to compute statistics for a grid point
//
vld_thresh = 1.0;

////////////////////////////////////////////////////////////////////////////////

//
// Statistical output types
//
output_stats = {
   fho    = [ ${FHO_STATS}    ];
   ctc    = [ ${CTC_STATS}    ];
   cts    = [ ${CTS_STATS}    ];
   mctc   = [ ${MCTC_STATS}   ];
   mcts   = [ ${MCTS_STATS}   ];
   cnt    = [ ${CNT_STATS}    ];
   sl1l2  = [ ${SL1L2_STATS}  ];
   sal1l2 = [ ${SAL1L2_STATS} ];
   pct    = [ ${PCT_STATS}    ];
   pstd   = [ ${PSTD_STATS}   ];
   pjc    = [ ${PJC_STATS}    ];
   prc    = [ ${PRC_STATS}    ];
}

////////////////////////////////////////////////////////////////////////////////

hss_ec_value   = NA;
rank_corr_flag = FALSE;
tmp_dir        = "/tmp";
version        = "V11.1.0";

////////////////////////////////////////////////////////////////////////////////
