Skip to content

Commit 44257eb

Browse files
Partial collapse of multi-dim string coords: take 2 (#5955)
* add failing tests * pass tests * add and pass bounded tests * simpler bounds loop * consider masked case * whatsnew * consider case when all axes chosen * slicing loops -= 1 * remove dubious check; reorder tests * ruff format * improve apply_along_axis comment * add tests for collapsing 2 dimensions --------- Co-authored-by: stephenworsley <[email protected]>
1 parent 5cc6737 commit 44257eb

File tree

3 files changed

+139
-12
lines changed

3 files changed

+139
-12
lines changed

docs/src/whatsnew/latest.rst

+3
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ This document explains the changes made to Iris for this release
3838

3939
#. N/A
4040

41+
#. `@rcomer`_ enabled partial collapse of multi-dimensional string coordinates,
42+
fixing :issue:`3653`. (:pull:`5955`)
43+
4144

4245
💣 Incompatible Changes
4346
=======================

lib/iris/coords.py

+29-12
Original file line numberDiff line numberDiff line change
@@ -2115,22 +2115,39 @@ def collapsed(self, dims_to_collapse=None):
21152115
if np.issubdtype(self.dtype, np.str_):
21162116
# Collapse the coordinate by serializing the points and
21172117
# bounds as strings.
2118-
def serialize(x):
2119-
return "|".join([str(i) for i in x.flatten()])
2118+
def serialize(x, axis):
2119+
if axis is None:
2120+
return "|".join(str(i) for i in x.flatten())
2121+
2122+
# np.apply_along_axis combined with str.join will truncate strings in
2123+
# some cases (https://github.com/numpy/numpy/issues/8352), so we need to
2124+
# loop through the array directly. First move (possibly multiple) axis
2125+
# of interest to trailing dim(s), then make a 2D array we can loop
2126+
# through.
2127+
work_array = np.moveaxis(x, axis, range(-len(axis), 0))
2128+
out_shape = work_array.shape[: -len(axis)]
2129+
work_array = work_array.reshape(np.prod(out_shape, dtype=int), -1)
2130+
2131+
joined = []
2132+
for arr_slice in work_array:
2133+
joined.append(serialize(arr_slice, None))
2134+
2135+
return np.array(joined).reshape(out_shape)
21202136

21212137
bounds = None
21222138
if self.has_bounds():
2123-
shape = self._bounds_dm.shape[1:]
2124-
bounds = []
2125-
for index in np.ndindex(shape):
2126-
index_slice = (slice(None),) + tuple(index)
2127-
bounds.append(serialize(self.bounds[index_slice]))
2128-
dtype = np.dtype("U{}".format(max(map(len, bounds))))
2129-
bounds = np.array(bounds, dtype=dtype).reshape((1,) + shape)
2130-
points = serialize(self.points)
2131-
dtype = np.dtype("U{}".format(len(points)))
2139+
# Express dims_to_collapse as non-negative integers.
2140+
if dims_to_collapse is None:
2141+
dims_to_collapse = range(self.ndim)
2142+
else:
2143+
dims_to_collapse = tuple(
2144+
dim % self.ndim for dim in dims_to_collapse
2145+
)
2146+
bounds = serialize(self.bounds, dims_to_collapse)
2147+
2148+
points = serialize(self.points, dims_to_collapse)
21322149
# Create the new collapsed coordinate.
2133-
coord = self.copy(points=np.array(points, dtype=dtype), bounds=bounds)
2150+
coord = self.copy(points=np.array(points), bounds=bounds)
21342151
else:
21352152
# Collapse the coordinate by calculating the bounded extremes.
21362153
if self.ndim > 1:

lib/iris/tests/unit/coords/test_Coord.py

+107
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
import cf_units
1717
import dask.array as da
1818
import numpy as np
19+
import numpy.ma as ma
1920
import pytest
2021

2122
import iris
@@ -701,6 +702,112 @@ def test_lazy_3_bounds(self):
701702
self.assertArrayAlmostEqual(collapsed_coord.points, da.array([2.0]))
702703
self.assertArrayAlmostEqual(collapsed_coord.bounds, da.array([[0.0, 4.0]]))
703704

705+
def test_string_masked(self):
706+
points = ma.array(["foo", "bar", "bing"], mask=[0, 1, 0], dtype=str)
707+
coord = AuxCoord(points)
708+
709+
collapsed_coord = coord.collapsed(0)
710+
711+
expected = "foo|--|bing"
712+
self.assertEqual(collapsed_coord.points, expected)
713+
714+
def test_string_nd_first(self):
715+
self.setupTestArrays((3, 4))
716+
coord = AuxCoord(self.pts_real.astype(str))
717+
718+
collapsed_coord = coord.collapsed(0)
719+
expected = [
720+
"0.0|40.0|80.0",
721+
"10.0|50.0|90.0",
722+
"20.0|60.0|100.0",
723+
"30.0|70.0|110.0",
724+
]
725+
726+
self.assertArrayEqual(collapsed_coord.points, expected)
727+
728+
def test_string_nd_second(self):
729+
self.setupTestArrays((3, 4))
730+
coord = AuxCoord(self.pts_real.astype(str))
731+
732+
collapsed_coord = coord.collapsed(1)
733+
expected = [
734+
"0.0|10.0|20.0|30.0",
735+
"40.0|50.0|60.0|70.0",
736+
"80.0|90.0|100.0|110.0",
737+
]
738+
739+
self.assertArrayEqual(collapsed_coord.points, expected)
740+
741+
def test_string_nd_both(self):
742+
self.setupTestArrays((3, 4))
743+
coord = AuxCoord(self.pts_real.astype(str))
744+
745+
collapsed_coord = coord.collapsed()
746+
expected = ["0.0|10.0|20.0|30.0|40.0|50.0|60.0|70.0|80.0|90.0|100.0|110.0"]
747+
748+
self.assertArrayEqual(collapsed_coord.points, expected)
749+
750+
def test_string_nd_bounds_first(self):
751+
self.setupTestArrays((3, 4))
752+
coord = AuxCoord(self.pts_real.astype(str), bounds=self.bds_real.astype(str))
753+
754+
collapsed_coord = coord.collapsed(0)
755+
756+
# Points handling is as for non bounded case. So just check bounds.
757+
expected_lower = [
758+
"-2.0|38.0|78.0",
759+
"8.0|48.0|88.0",
760+
"18.0|58.0|98.0",
761+
"28.0|68.0|108.0",
762+
]
763+
764+
expected_upper = [
765+
"2.0|42.0|82.0",
766+
"12.0|52.0|92.0",
767+
"22.0|62.0|102.0",
768+
"32.0|72.0|112.0",
769+
]
770+
771+
self.assertArrayEqual(collapsed_coord.bounds[:, 0], expected_lower)
772+
self.assertArrayEqual(collapsed_coord.bounds[:, 1], expected_upper)
773+
774+
def test_string_nd_bounds_second(self):
775+
self.setupTestArrays((3, 4))
776+
coord = AuxCoord(self.pts_real.astype(str), bounds=self.bds_real.astype(str))
777+
778+
collapsed_coord = coord.collapsed(1)
779+
780+
# Points handling is as for non bounded case. So just check bounds.
781+
expected_lower = [
782+
"-2.0|8.0|18.0|28.0",
783+
"38.0|48.0|58.0|68.0",
784+
"78.0|88.0|98.0|108.0",
785+
]
786+
787+
expected_upper = [
788+
"2.0|12.0|22.0|32.0",
789+
"42.0|52.0|62.0|72.0",
790+
"82.0|92.0|102.0|112.0",
791+
]
792+
793+
self.assertArrayEqual(collapsed_coord.bounds[:, 0], expected_lower)
794+
self.assertArrayEqual(collapsed_coord.bounds[:, 1], expected_upper)
795+
796+
def test_string_nd_bounds_both(self):
797+
self.setupTestArrays((3, 4))
798+
coord = AuxCoord(self.pts_real.astype(str), bounds=self.bds_real.astype(str))
799+
800+
collapsed_coord = coord.collapsed()
801+
802+
# Points handling is as for non bounded case. So just check bounds.
803+
expected_lower = ["-2.0|8.0|18.0|28.0|38.0|48.0|58.0|68.0|78.0|88.0|98.0|108.0"]
804+
expected_upper = [
805+
"2.0|12.0|22.0|32.0|42.0|52.0|62.0|72.0|82.0|92.0|102.0|112.0"
806+
]
807+
808+
self.assertArrayEqual(collapsed_coord.bounds[:, 0], expected_lower)
809+
self.assertArrayEqual(collapsed_coord.bounds[:, 1], expected_upper)
810+
704811

705812
class Test_is_compatible(tests.IrisTest):
706813
def setUp(self):

0 commit comments

Comments
 (0)