Skip to content

Collection.find

def Collection.find(
datapoint_id: str,
skip_data: bool = False
) -> xarray.Dataset

Find a specific datapoint in a collection by its id.

datapoint_id str

The id of the datapoint to find.

skip_data bool

If True, the response contains only the ID and the timestamp for the datapoint. Defaults to False.

An xarray.Dataset containing the requested data point.

Since it returns only a single data point, the output xarray dataset does not include a time dimension.

NotFoundError No such datapoint: <id>

The specified datapoint does not exist in this collection.