datacube.api.GridWorkflow.list_cells¶
-
GridWorkflow.
list_cells
(cell_index=None, **query)[source]¶ List cells that match the query.
Returns a dictionary of cell indexes to
Tile
objects.Cells are included if they contain any datasets that match the query using the same format as
datacube.Datacube.load()
.E.g.:
gw.list_cells(product='ls5_nbar_albers', time=('2001-1-1 00:00:00', '2001-3-31 23:59:59'))
- Parameters
query – see
datacube.api.query.Query
- Return type
dict[(int, int),
Tile
]