rs_workflows/earthdatahub_flow.md
EarthDataHub flow implementation.
earthdatahub_search_task(*args, **kwargs)
async
See: search
Source code in docs/rs-client-libraries/rs_workflows/earthdatahub_flow.py
56 57 58 59 | |
search(env, edh_cql2, error_if_empty=False)
async
Search STAC products in EarthDataHub catalogue.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
env
|
FlowEnvArgs
|
Prefect flow environment (at least the owner_id is required) |
required |
edh_cql2
|
dict
|
CQL2 filter read from the processor tasktable. |
required |
error_if_empty
|
bool
|
Raise a ValueError if the results are empty. |
False
|
Source code in docs/rs-client-libraries/rs_workflows/earthdatahub_flow.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |