coincident.search.search#
- coincident.search.search(dataset, intersects=None, datetime=None, **kwargs)[source]#
Perform a search for geospatial data using STAC or non-STAC APIs for a single dataset.
- Parameters:
dataset (
str|Dataset) – The dataset to search. Can be a string alias or a Dataset object.intersects (
GeoDataFrame|GeoSeries|None) – A GeoDataFrame or GeoSeries containing a geometry to restrict the search area.datetime (
str|list[str] |None) – The datetime range for the search in ISO 8601 format. If None, no datetime filter is applied.**kwargs (
Any) – Additional keyword arguments to pass to the search functions. For STAC searches, common options includebbox,idsFor details, seepystac_client.ItemSearch.
- Return type:
- Returns:
A GeoDataFrame containing the search results.
- Raises:
ValueError – If the provided dataset alias is not supported.