cf.FieldList.concatenate

FieldList.concatenate(axis=0, cull_graph=True)[source]

Join the sequence of fields within the field list together.

This is different to cf.aggregate because it does not account for all metadata. For example, it assumes that the axis order is the same in each field.

New in version 1.0.

Parameters
axis: int, optional

The axis along which the arrays will be joined. The default is 0. Note that scalar arrays are treated as if they were one dimensional.

cull_graph: bool, optional

By default cull_graph is True, meaning that unnecessary tasks are removed (culled) from each array’s dask graph before concatenation. This process has a small overhead but can improve performance overall. If set to False then dask graphs are not culled. See dask.optimization.cull for details.

New in version 3.14.0.

Returns
Field

The field generated from the concatenation of all of the fields contained in the input field list.