Skip to content

Commit

Permalink
plot new CRPS_EMP_FAIR stat #421
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaBurek committed Nov 2, 2022
1 parent 3e8db60 commit cae0f74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/edu/ucar/metviewer/MVUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,6 @@ public class MVUtil {
statsEnscnt.put("ENS_CRPSF", new String[]{});
statsEnscnt.put("ENS_CRPSCL", new String[]{});
statsEnscnt.put("ENS_CRPSS", new String[]{});

}

static {
Expand Down Expand Up @@ -605,6 +604,7 @@ public class MVUtil {
statsEcnt.put("ECNT_CRPS_EMP", new String[]{ECNT});
statsEcnt.put("ECNT_CRPSCL_EMP", new String[]{ECNT});
statsEcnt.put("ECNT_CRPSS_EMP", new String[]{ECNT});
statsEcnt.put("ECNT_CRPS_EMP_FAIR", new String[]{ECNT});
statsEcnt.put("ECNT_TOTAL", new String[]{ECNT});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,8 @@ public List<String> buildPlotSql(
+ "\n ld.crpscl,"
+ "\n ld.crps_emp,"
+ "\n ld.crpscl_emp,"
+ "\n ld.crpss_emp";
+ "\n ld.crpss_emp,"
+ "\n ld.crps_emp_fair";
} else if (job.getAggPct()) {

if (job.getPlotTmpl().equals("eclv.R_tmpl")) {
Expand Down

0 comments on commit cae0f74

Please sign in to comment.