QueryPage when you need manual pagination. Use Datapoints.Query for automatic lazy pagination.
Parameters
The ID of the dataset to query.
Options for querying datapoints.
Options
Specify the time or datapoint ID interval to query.
datasets.WithSpatialExtent(spatialExtent orb.Geometry)
Specify the geographical extent to query.
datasets.WithSpatialExtentFilter(spatialExtent query.SpatialExtent)
Specify a geographical extent with an explicit spatial filter mode and coordinate system.
datasets.WithCollections(collections ...*datasets.Collection)
Restrict the query to specific dataset collections by collection object.
datasets.WithCollectionIDs(collectionIDs ...uuid.UUID)
Restrict the query to specific dataset collections by collection ID.
Skip datapoint data and return only required and generated fields.
datasets.WithCursor(cursor *datasets.Cursor)
Start the query after the cursor returned by a previous page.
datasets.WithLimit(limit int64)
Limit the number of datapoints returned in this page.
Returns
ADatapointPage with raw protobuf datapoints in Datapoints and an optional NextCursor for the next page.