Skip to content

Commit

Permalink
Per #1335 issue (1), replace nan Gerrity score with NA.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed May 14, 2020
1 parent 6223be6 commit d082ebc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions met/src/libcode/vx_statistics/contable_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1054,6 +1054,12 @@ for (j=0; j<Nrows; ++j) {

}

//
// replace nan with bad data
//

if (isnan(sum)) sum = bad_data_double;

//
// done
//
Expand Down

0 comments on commit d082ebc

Please sign in to comment.