Skip to content

Commit

Permalink
Bugfix for tile interpolation without vertical crs info
Browse files Browse the repository at this point in the history
  • Loading branch information
Parallel Works app-run user authored and SorooshMani-NOAA committed Oct 11, 2023
1 parent 452f00e commit 9a0419e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocsmesh/mesh/mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def interpolate(
vert_cs = rast_crs.source_crs


vert_cs_name = vert_cs.name
vert_cs_name = vert_cs.name if vert_cs else None
idxs = np.argwhere(mask).ravel()
interp_info_map.update({
idx: (rast.path, vert_cs_name)
Expand Down

0 comments on commit 9a0419e

Please sign in to comment.