Skip to content
Snippets Groups Projects
Commit 6039aacd authored by tomrink's avatar tomrink
Browse files

minor

parent 850147f8
Branches
No related tags found
No related merge requests found
...@@ -538,6 +538,7 @@ def get_grid_values(h5f, grid_name, scale_factor_name='scale_factor', add_offset ...@@ -538,6 +538,7 @@ def get_grid_values(h5f, grid_name, scale_factor_name='scale_factor', add_offset
grd_vals = hfds[:, :] grd_vals = hfds[:, :]
grd_vals = np.where(grd_vals == -999, np.nan, grd_vals) grd_vals = np.where(grd_vals == -999, np.nan, grd_vals)
grd_vals = np.where(grd_vals == -127, np.nan, grd_vals)
grd_vals = np.where(grd_vals == -32768, np.nan, grd_vals) grd_vals = np.where(grd_vals == -32768, np.nan, grd_vals)
if attrs is None: if attrs is None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment