darts_acquisition.load_s2_from_stac¶
Load a Sentinel 2 scene from the Copernicus STAC API and return it as an xarray dataset.
Parameters:
-
s2id
(str
) –The Sentinel 2 image ID.
-
bands_mapping
(dict[str, str]
, default:{'B02_10m': 'blue', 'B03_10m': 'green', 'B04_10m': 'red', 'B08_10m': 'nir'}
) –A mapping from bands to obtain. Will be renamed to the corresponding band names. Defaults to {"B2": "blue", "B3": "green", "B4": "red", "B8": "nir"}.
-
scale_and_offset
(bool | tuple[float, float]
, default:True
) –Whether to apply the scale and offset to the bands. If a tuple is provided, it will be used as the (
scale
,offset
) values withband * scale + offset
. If True, use the default values ofscale
= 0.0001 andoffset
= 0, taken from ee_extra. Defaults to True. -
cache
(pathlib.Path | None
, default:None
) –The path to the cache directory. If None, no caching will be done. Defaults to None.
Returns:
Source code in darts-acquisition/src/darts_acquisition/s2.py
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
|