File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,9 @@ This document explains the changes made to Iris for this release
83
83
#. `@bouweandela `_ updated :meth: `iris.cube.CubeList.concatenate ` so it keeps
84
84
ancillary variables and cell measures lazy. (:pull: `6010 `)
85
85
86
+ #. `@bouweandela `_ made :meth: `iris.cube.CubeList.concatenate ` faster for cubes
87
+ that have coordinate factories. (:pull: `6038 `)
88
+
86
89
🔥 Deprecations
87
90
===============
88
91
Original file line number Diff line number Diff line change @@ -469,7 +469,7 @@ def name_key_func(factory):
469
469
470
470
for factory in sorted (cube .aux_factories , key = name_key_func ):
471
471
coord = factory .make_coord (cube .coord_dims )
472
- dims = cube .coord_dims ( coord )
472
+ dims = factory . derived_dims ( cube .coord_dims )
473
473
metadata = _CoordMetaData (coord , dims )
474
474
self .derived_metadata .append (metadata )
475
475
coord_and_dims = _DerivedCoordAndDims (coord , tuple (dims ), factory )
You can’t perform that action at this time.
0 commit comments