rs_workflows/utils/cadip.md
Helper task to interact with the rs-cadip.
cadip_session_search(env, cadip_collection_identifier, limit=10)
async
Search for CADIP sessions within a given time interval.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
env
|
FlowEnvArgs
|
Flow environment arguments (e.g., owner_id, credentials). |
required |
cadip_collection_identifier
|
list[str]
|
CADIP collection identifier (e.g., "s1_sgs") to specify the station. |
required |
limit
|
int
|
Number maximum of STAC items to be retrieved |
10
|
Returns:
| Name | Type | Description |
|---|---|---|
ItemCollection |
ItemCollection
|
A pystac ItemCollection containing the sessions found. |
Source code in docs/rs-client-libraries/rs_workflows/utils/cadip.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 | |
get_cadip_station(flow_env, session, cadip_collections)
async
Retrieve a cadip station that owns the session.
Source code in docs/rs-client-libraries/rs_workflows/utils/cadip.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
is_evicted(item)
Check if the CADIP session is evicted.
Source code in docs/rs-client-libraries/rs_workflows/utils/cadip.py
31 32 33 34 35 36 37 38 39 40 | |