Skip to content

Commit

Permalink
Per #2022: Added ANOM_CORR, ANOM_CORR_BCL, ANOM_CORR_BCU to write_vcn…
Browse files Browse the repository at this point in the history
…t_cols. SL
  • Loading branch information
Seth Linden committed Apr 8, 2022
1 parent 426da69 commit 2cede27
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion met/src/libcode/vx_stat_out/stat_columns.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2953,6 +2953,7 @@ void write_vcnt_cols(const VL1L2Info &vcnt_info, AsciiTable &at, int r, int c)
// SPD_ABSERR, SPD_ABSERR_BCL, SPD_ABSERR_BCU,
// DIR_ERR, DIR_ERR_BCL, DIR_ERR_BCU,
// DIR_ABSERR, DIR_ABSERR_BCL, DIR_ABSERR_BCU,
// ANOM_CORR, ANOM_CORR_BCL, ANOM_CORR_BCU


at.set_entry(r, c++, vcnt_info.vcount); // TOTAL
Expand Down Expand Up @@ -3028,7 +3029,11 @@ void write_vcnt_cols(const VL1L2Info &vcnt_info, AsciiTable &at, int r, int c)
at.set_entry(r, c++, vcnt_info.DIR_ABSERR); // DIR_ABSERR
at.set_entry(r, c++, (string)na_str); // DIR_ABSERR_BCL
at.set_entry(r, c++, (string)na_str); // DIR_ABSERR_BCU


at.set_entry(r, c++, vcnt_info.ANOM_CORR); // ANOM_CORR
at.set_entry(r, c++, (string)na_str); // ANOM_CORR_BCL
at.set_entry(r, c++, (string)na_str); // ANOM_CORR_BCU

//
//
//
Expand Down

0 comments on commit 2cede27

Please sign in to comment.