import numpy as np
import dascore as dc
pa = dc.get_example_patch()
# Add 1 to all distance coords
new_dist = pa.coords['distance'] + 1
pa2 = pa.update_coords(distance=new_dist)
assert np.all(pa2.coords['distance'] == (pa.coords['distance'] + 1))update_coords
update_coords(
self: Patch ,
**kwargs ,
)-> ‘PatchType’
Update the coordiantes of a patch.
Will either add new coordinates, or update existing ones.
Parameters
| Parameter | Description |
|---|---|
| **kwargs | The mapping from old names to new names |