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

Find a specific datapoint in a collection by its id.

Parameters

datapoint_id
str

The id of the datapoint to find.

skip_data
bool

Whether to skip loading the data for the datapoint. If True, only the metadata for the datapoint is loaded.

Returns

An xarray.Dataset containing the requested data point.

Errors

NotFoundError
No such datapoint: <id>

The specified datapoint does not exist in this collection.