uwacan.positional.SensorPosition.isel#

SensorPosition.isel(indexers=None, drop=False, missing_dims='raise', drop_allnan=True, **indexers_kwargs)#

Select a subset of the data from the coordinate indices.

The selection is easiest done with keywords, e.g. obj.sel(sensor=0) to select the zeroth sensor. Use a slice to select a range of values, e.g., obj.sel(frequency=slice(10, 100)).

For more details, see xarray.DataArray.isel and xarray.Dataset.isel.