Skip to content

Commit

Permalink
Per #2437, the convert and censor logic was intentionally added to th…
Browse files Browse the repository at this point in the history
…e RegridInfo struct in #1293. Instead of removing it entirely, I'll try to limit the scope of parsing those entries to just the regrid dictionary WITHOUT doing any lookup in its parents.
  • Loading branch information
JohnHalleyGotway committed Feb 4, 2023
1 parent 90f92f4 commit f42005d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/libcode/vx_regrid/vx_regrid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,18 @@ switch ( info.method ) {

} // switch info.method

//
// apply convert logic
//

out.convert(info.convert_fx);

//
// apply censor logic
//

out.censor(info.censor_thresh, info.censor_val);

//
// done
//
Expand Down

0 comments on commit f42005d

Please sign in to comment.