Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

define the "inner_mask" for locstream case #292

Merged
merged 9 commits into from
Aug 23, 2023
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ Contributors
* David Huard <huard.david@ouranos.ca> `@huard <https://github.com/huard>`_
* Travis Logan <logan.travis@ouranos.ca> `@tlogan2000 <https://github.com/tlogan2000>`_
* Martin Schupfner <schupfner@dkrz.de> `@sol1105 <https://github.com/sol1105>`_
* Marco Braun <Braun.Marco@ouranos.ca> `@vindelico <https://github.com/vindelico>`_
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Version History
===============

v0.12.0 (unreleased)
--------------------

Bug Fixes
^^^^^^^^^
* Calling `subset_shape()` with a `locstream case` (#288) returned all coordinates inside `inner_mask` which is equivalent to the bounding box of the polygon, not the area inside the polygon. Fixed by defining the `inner_mask` in `subset_shape()` for the locstream case. (#292).

v0.11.0 (2023-08-22)
--------------------

Expand Down
43 changes: 26 additions & 17 deletions clisops/core/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,20 +1101,25 @@ def subset_shape(

sp_dims = set(mask_2d.dims) # Spatial dimensions

# Find the outer mask. When subsetting unconnected shapes,
# we don't want to drop the inner NaN regions, it may cause problems downstream.
inner_mask = xarray.full_like(mask_2d, True, dtype=bool)
for dim in sp_dims:
# For each dimension, propagate shape indexes in either directions
# Then sum on the other dimension. You get a step function going from 0 to X.
# The non-zero part that left and right have in common is the "inner" zone.
left = mask_2d.bfill(dim).sum(sp_dims - {dim})
right = mask_2d.ffill(dim).sum(sp_dims - {dim})
# True in the inner zone, False in the outer
inner_mask = inner_mask & (left != 0) & (right != 0)

# inner_mask including the shapes
inner_mask = mask_2d.notnull() | inner_mask
if len(sp_dims) > 1:
# Find the outer mask. When subsetting unconnected shapes,
# we don't want to drop the inner NaN regions, it may cause problems downstream.
inner_mask = xarray.full_like(mask_2d, True, dtype=bool)
for dim in sp_dims:
# For each dimension, propagate shape indexes in either directions
# Then sum on the other dimension. You get a step function going from 0 to X.
# The non-zero part that left and right have in common is the "inner" zone.
left = mask_2d.bfill(dim).sum(sp_dims - {dim})
right = mask_2d.ffill(dim).sum(sp_dims - {dim})
# True in the inner zone, False in the outer
inner_mask = inner_mask & (left != 0) & (right != 0)

# inner_mask including the shapes
inner_mask = mask_2d.notnull() | inner_mask
else:
# in the locstream case inner_mask remains all True, but all non-polygon values can be dropped,
# so here "outside inner_mask" is everything outside the polygon.
inner_mask = mask_2d.notnull()

# loop through variables
for v in ds_copy.data_vars:
Expand All @@ -1125,9 +1130,13 @@ def subset_shape(
# Remove grid points outside the inner mask
# Then extract the coords.
# Using a where(inner_mask) on ds_copy triggers warnings with dask, sel seems safer.
mask_2d = mask_2d.where(inner_mask, drop=True)
for dim in sp_dims:
ds_copy = ds_copy.sel({dim: mask_2d[dim]})
# But this only works if dims have coords.
if set(sp_dims).issubset(ds_copy.coords.keys()):
mask_2d = mask_2d.where(inner_mask, drop=True)
for dim in sp_dims:
ds_copy = ds_copy.sel({dim: mask_2d[dim]})
else:
ds_copy = ds_copy.where(inner_mask, drop=True)

# Add a CRS definition using CF conventions and as a global attribute in CRS_WKT for reference purposes
ds_copy.attrs["crs"] = raster_crs.to_string()
Expand Down
10 changes: 5 additions & 5 deletions tests/test_core_subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,17 +868,17 @@ def test_vectorize_touches_polygons(self):

def test_locstream(self):
da = xr.DataArray(
[1, 2, 3, 4],
[1, 2, 3, 4, 5, 6, 7, 8, 9],
dims=("site",),
coords={
"lat": (("site",), [10, 30, 20, 40]),
"lon": (("site",), [-50, -80, -70, -100]),
"lat": (("site",), [55, 55, 55, 40, 40, 40, 25, 25, 25]),
"lon": (("site",), [-80, -70, -60, -80, -70, -60, -80, -70, -60]),
},
)
poly = Polygon([[-90, 15], [-65, 15], [-65, 35], [-90, 35]])
poly = Polygon([[-90, 40], [-70, 20], [-50, 40], [-70, 60]])
shape = gpd.GeoDataFrame(geometry=[poly])
sub = subset.subset_shape(da, shape=shape)
exp = da.isel(site=[1, 2])
exp = da.isel(site=[1, 3, 4, 5, 7])
xr.testing.assert_identical(sub, exp)


Expand Down