Skip to content

Commit

Permalink
Merge pull request #805 from xylar/cap-land-ice-fraction
Browse files Browse the repository at this point in the history
Cap fractions from topography to one
  • Loading branch information
xylar authored Jun 10, 2024
2 parents 1588d78 + 3cd7b72 commit a4c66df
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions compass/ocean/mesh/remap_topography.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os

import numpy as np
import xarray as xr
from mpas_tools.io import write_netcdf
from pyremap import LatLonGridDescriptor, MpasCellMeshDescriptor, Remapper
Expand Down Expand Up @@ -138,6 +139,11 @@ def run(self):
out_var = rename[option]
ds_out[out_var] = ds_in[in_var]

# make sure fractions don't exceed 1
for var in ['landIceFracObserved', 'landIceGroundedFracObserved',
'oceanFracObserved']:
ds_out[var] = np.minimum(ds_out[var], 1.)

# renormalize elevation variables
norm = ds_out.oceanFracObserved
valid = norm > renorm_threshold
Expand Down

0 comments on commit a4c66df

Please sign in to comment.