Skip to content

Commit 1b63e40

Browse files
committed
Faster concatenation of cubes with AuxCoordFactories
1 parent 1a73e84 commit 1b63e40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/iris/_concatenate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def name_key_func(factory):
469469

470470
for factory in sorted(cube.aux_factories, key=name_key_func):
471471
coord = factory.make_coord(cube.coord_dims)
472-
dims = cube.coord_dims(coord)
472+
dims = factory.derived_dims(cube.coord_dims)
473473
metadata = _CoordMetaData(coord, dims)
474474
self.derived_metadata.append(metadata)
475475
coord_and_dims = _DerivedCoordAndDims(coord, tuple(dims), factory)

0 commit comments

Comments
 (0)