def Collection.find( datapoint_id: str, skip_data: bool = False) -> xarray.DatasetFind a specific datapoint in a collection by its id.
Parameters
Section titled “Parameters”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.
Returns
Section titled “Returns”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.
Errors
Section titled “Errors”NotFoundError No such datapoint: <id> The specified datapoint does not exist in this collection.