merge_coord_managers
merge_coord_managers(
coord_managers: collections.abc.Sequence[CoordManager] ,
dim: str ,
snap_tolerance: float | None[float, None] = None,
drop_conflicting: bool = False,
dim_coord = None,
)-> ‘dc.CoordManager’
Merge coordinate managers along a specified dimension.
Parameters
| Parameter | Description |
|---|---|
| coord_managers | A sequence of coord_managers to merge. |
| dim | The dimension along which to merge. |
| snap_tolerance |
The tolerance for snapping CoordRanges together. E.G, allows coord ranges that have snap_tolerances differences from their start/end to be joined together. If they don’t meet this requirement an CoordMergeError is raised. If None, no checks are performed. |
| drop_conflicting |
If True, drop conflicting (non-dimensional) coordinates, otherwise raise an exception if they occur. |
| dim_coord |
If provided, use this coordinate for dim instead ofconcatenating the members’ values (which materializes them); callers which already built the merged dimension coordinate (e.g. via concat_coords) pass it here to avoid that cost.
|