rs_server_cadip/cadip_utils.md
Module for interacting with CADU system through a FastAPI APIRouter.
This module provides functionality to retrieve a list of products from the CADU system for a specified station. It includes an API endpoint, utility functions, and initialization for accessing EODataAccessGateway.
cadip_map_mission(platform, constellation)
Map STAC platform and constellation into OData Satellite.
Input: platform = sentinel-1a Output: A Input: constellation = sentinel-1 Output: A, B, C
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
cadip_odata_to_stac_template()
cached
Used each time to read the ODataToSTAC_template json template.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
54 55 56 57 58 59 | |
cadip_reverse_map_mission(platform)
Function used to re-map platform and constellation based on satellite value.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
212 213 214 215 216 217 218 219 220 | |
cadip_session_odata_to_stac_template()
cached
Used each time to read the cadip_session_ODataToSTAC_template json template.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
62 63 64 65 66 67 | |
cadip_session_stac_mapper()
cached
Used each time to read the cadip_sessions_stac_mapper json config.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
78 79 80 81 82 83 | |
cadip_stac_mapper()
cached
Used each time to read the cadip_stac_mapper json config.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
70 71 72 73 74 75 | |
from_session_expand_to_assets_serializer(feature_collection, input_session, mapper)
Associate all expanded files with session from feature_collection and create a stac_pydantic.Asset for each file.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
from_session_expand_to_dag_serializer(input_sessions)
Convert a list of sessions containing expanded files metadata into a list of files for serialization into the DB.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
128 129 130 131 132 133 134 135 136 137 138 | |
link_assets_to_session(session_features, asset_items)
Update input session items with associated assets based on session id property.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | |
map_dag_file_to_asset(mapper, product, href)
This function is used to map extended files from odata to stac format.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
120 121 122 123 124 125 | |
prepare_collection(collection)
Used to create a more complex mapping on platform/constallation from odata to stac.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
263 264 265 266 267 268 269 | |
read_conf()
cached
Used each time to read RSPY_CADIP_SEARCH_CONFIG config yaml.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
45 46 47 48 49 50 51 | |
rename_keys(product)
Rename keys in the product dictionary. To match eodag specific properties key name (id / startTime..)
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
103 104 105 106 107 108 109 | |
select_config(configuration_id)
Used to select a specific configuration from yaml file, returns None if not found.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
86 87 88 89 90 91 | |
stac_to_odata(stac_params)
Convert a parameter directory from STAC keys to OData keys. Return the new directory.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
94 95 96 97 98 99 100 | |
update_product(product)
Update product with renamed keys and default geometry.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
112 113 114 115 116 117 | |
validate_products(products)
Function used to remove all miconfigured outputs.
Source code in docs/rs-server/services/cadip/rs_server_cadip/cadip_utils.py
163 164 165 166 167 168 169 170 171 172 173 | |