eodag 4.0.0a1__py3-none-any.whl → 4.0.0a3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. eodag/__init__.py +6 -1
  2. eodag/api/collection.py +354 -0
  3. eodag/api/core.py +324 -303
  4. eodag/api/product/_product.py +15 -29
  5. eodag/api/product/drivers/__init__.py +2 -42
  6. eodag/api/product/drivers/base.py +0 -11
  7. eodag/api/product/metadata_mapping.py +34 -5
  8. eodag/api/search_result.py +144 -9
  9. eodag/cli.py +18 -15
  10. eodag/config.py +37 -3
  11. eodag/plugins/apis/ecmwf.py +16 -4
  12. eodag/plugins/apis/usgs.py +18 -7
  13. eodag/plugins/crunch/filter_latest_intersect.py +1 -0
  14. eodag/plugins/crunch/filter_overlap.py +3 -7
  15. eodag/plugins/search/__init__.py +3 -0
  16. eodag/plugins/search/base.py +6 -6
  17. eodag/plugins/search/build_search_result.py +157 -56
  18. eodag/plugins/search/cop_marine.py +48 -8
  19. eodag/plugins/search/csw.py +18 -8
  20. eodag/plugins/search/qssearch.py +331 -88
  21. eodag/plugins/search/static_stac_search.py +11 -12
  22. eodag/resources/collections.yml +610 -348
  23. eodag/resources/ext_collections.json +1 -1
  24. eodag/resources/ext_product_types.json +1 -1
  25. eodag/resources/providers.yml +334 -62
  26. eodag/resources/stac_provider.yml +4 -2
  27. eodag/resources/user_conf_template.yml +9 -0
  28. eodag/types/__init__.py +2 -0
  29. eodag/types/queryables.py +16 -0
  30. eodag/utils/__init__.py +47 -2
  31. eodag/utils/repr.py +2 -0
  32. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/METADATA +4 -2
  33. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/RECORD +37 -36
  34. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/WHEEL +0 -0
  35. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/entry_points.txt +0 -0
  36. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/licenses/LICENSE +0 -0
  37. {eodag-4.0.0a1.dist-info → eodag-4.0.0a3.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ CBERS4_MUX_L2:
28
28
  keywords: ["MUX", "CBERS", "CBERS-4", "L2"]
29
29
  eodag:sensor_type: OPTICAL
30
30
  license: other
31
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
31
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
32
32
  title: CBERS-4 MUX Level-2
33
33
 
34
34
  CBERS4_AWFI_L2:
@@ -42,7 +42,7 @@ CBERS4_AWFI_L2:
42
42
  keywords: ["AWFI", "CBERS", "CBERS-4", "L2"]
43
43
  eodag:sensor_type: OPTICAL
44
44
  license: other
45
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
45
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
46
46
  title: CBERS-4 AWFI Level-2
47
47
 
48
48
  CBERS4_PAN5M_L2:
@@ -56,7 +56,7 @@ CBERS4_PAN5M_L2:
56
56
  keywords: ["PAN5M", "CBERS", "CBERS-4", "L2"]
57
57
  eodag:sensor_type: OPTICAL
58
58
  license: other
59
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
59
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
60
60
  title: CBERS-4 PAN5M Level-2
61
61
 
62
62
  CBERS4_PAN10M_L2:
@@ -70,7 +70,7 @@ CBERS4_PAN10M_L2:
70
70
  keywords: ["PAN10M", "CBERS", "CBERS-4", "L2"]
71
71
  eodag:sensor_type: OPTICAL
72
72
  license: other
73
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
73
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
74
74
  title: CBERS-4 PAN10M Level-2
75
75
 
76
76
  CBERS4_MUX_L4:
@@ -84,7 +84,7 @@ CBERS4_MUX_L4:
84
84
  keywords: ["MUX", "CBERS", "CBERS-4", "L4"]
85
85
  eodag:sensor_type: OPTICAL
86
86
  license: other
87
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
87
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
88
88
  title: CBERS-4 MUX Level-4
89
89
 
90
90
  CBERS4_AWFI_L4:
@@ -98,7 +98,7 @@ CBERS4_AWFI_L4:
98
98
  keywords: ["AWFI", "CBERS", "CBERS-4", "L4"]
99
99
  eodag:sensor_type: OPTICAL
100
100
  license: other
101
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
101
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
102
102
  title: CBERS-4 AWFI Level-4
103
103
 
104
104
  CBERS4_PAN5M_L4:
@@ -112,7 +112,7 @@ CBERS4_PAN5M_L4:
112
112
  keywords: ["PAN5M", "CBERS", "CBERS-4", "L4"]
113
113
  eodag:sensor_type: OPTICAL
114
114
  license: other
115
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
115
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
116
116
  title: CBERS-4 PAN5M Level-4
117
117
 
118
118
  CBERS4_PAN10M_L4:
@@ -126,7 +126,7 @@ CBERS4_PAN10M_L4:
126
126
  keywords: ["PAN10M", "CBERS", "CBERS-4", "L4"]
127
127
  eodag:sensor_type: OPTICAL
128
128
  license: other
129
- extent: {"temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
129
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-12-07T00:00:00Z", null]]}}
130
130
  title: CBERS-4 PAN10M Level-4
131
131
 
132
132
  # MARK: Landsat -----------------------------------------------------------------------
@@ -142,7 +142,7 @@ L8_OLI_TIRS_C1L1:
142
142
  keywords: ["OLI", "TIRS", "LANDSAT", "LANDSAT8", "L8", "L1", "C1", "COLLECTION1"]
143
143
  eodag:sensor_type: OPTICAL
144
144
  license: other
145
- extent: {"temporal": {"interval": [["2013-02-11T00:00:00Z", null]]}}
145
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-02-11T00:00:00Z", null]]}}
146
146
  title: Landsat 8 Level-1
147
147
 
148
148
  LANDSAT_C2L1:
@@ -156,7 +156,7 @@ LANDSAT_C2L1:
156
156
  eodag:sensor_type: OPTICAL
157
157
  license: other
158
158
  title: Landsat Collection 2 Level-1 Product
159
- extent: {"temporal": {"interval": [["1972-07-25T00:00:00Z", null]]}}
159
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1972-07-25T00:00:00Z", null]]}}
160
160
 
161
161
  LANDSAT_C2L2:
162
162
  description: |
@@ -170,7 +170,7 @@ LANDSAT_C2L2:
170
170
  eodag:sensor_type: OPTICAL
171
171
  license: other
172
172
  title: Landsat OLI and TIRS Collection 2 Level-2 Science Products 30-meter multispectral data.
173
- extent: {"temporal": {"interval": [["2013-02-11T00:00:00Z", null]]}}
173
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-02-11T00:00:00Z", null]]}}
174
174
 
175
175
  LANDSAT_C2L2_SR:
176
176
  description: |
@@ -184,7 +184,7 @@ LANDSAT_C2L2_SR:
184
184
  eodag:sensor_type: OPTICAL
185
185
  license: other
186
186
  title: Landsat Collection 2 Level-2 UTM Surface Reflectance (SR) Product
187
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
187
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
188
188
 
189
189
  LANDSAT_C2L2_ST:
190
190
  description: |
@@ -197,7 +197,7 @@ LANDSAT_C2L2_ST:
197
197
  eodag:sensor_type: OPTICAL
198
198
  license: other
199
199
  title: Landsat Collection 2 Level-2 UTM Surface Temperature (ST) Product
200
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
200
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
201
201
 
202
202
  LANDSAT_C2L2ALB_BT:
203
203
  description: |
@@ -211,7 +211,7 @@ LANDSAT_C2L2ALB_BT:
211
211
  eodag:sensor_type: OPTICAL
212
212
  license: other
213
213
  title: Landsat Collection 2 Level-2 Albers Top of Atmosphere Brightness Temperature (BT) Product
214
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
214
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
215
215
 
216
216
  LANDSAT_C2L2ALB_SR:
217
217
  description: |
@@ -225,7 +225,7 @@ LANDSAT_C2L2ALB_SR:
225
225
  eodag:sensor_type: OPTICAL
226
226
  license: other
227
227
  title: Landsat Collection 2 Level-2 Albers Surface Reflectance (SR) Product
228
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
228
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
229
229
 
230
230
  LANDSAT_C2L2ALB_ST:
231
231
  description: |
@@ -238,7 +238,7 @@ LANDSAT_C2L2ALB_ST:
238
238
  eodag:sensor_type: OPTICAL
239
239
  license: other
240
240
  title: Landsat Collection 2 Level-2 Albers Surface Temperature (ST) Product
241
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
241
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
242
242
 
243
243
  LANDSAT_C2L2ALB_TA:
244
244
  description: |
@@ -252,7 +252,7 @@ LANDSAT_C2L2ALB_TA:
252
252
  eodag:sensor_type: OPTICAL
253
253
  license: other
254
254
  title: Landsat Collection 2 Level-2 Albers Top of Atmosphere (TA) Reflectance Product
255
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
255
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", null]]}}
256
256
 
257
257
  LANDSAT_TM_C1:
258
258
  description: |
@@ -268,7 +268,7 @@ LANDSAT_TM_C1:
268
268
  eodag:sensor_type: OPTICAL
269
269
  license: other
270
270
  title: Landsat 4-5 Thematic Mapper (TM) Collection-1 Level-1 Data Products
271
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
271
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
272
272
 
273
273
  LANDSAT_TM_C2L1:
274
274
  description: |
@@ -284,7 +284,7 @@ LANDSAT_TM_C2L1:
284
284
  eodag:sensor_type: OPTICAL
285
285
  license: other
286
286
  title: Landsat 4-5 Thematic Mapper (TM) Collection-2 Level-1 Data Products
287
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
287
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
288
288
 
289
289
  LANDSAT_TM_C2L2:
290
290
  description: |
@@ -298,7 +298,7 @@ LANDSAT_TM_C2L2:
298
298
  eodag:sensor_type: OPTICAL
299
299
  license: other
300
300
  title: Landsat 4-5 Thematic Mapper (TM) Collection-2 Level-2 Data Products
301
- extent: {"temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
301
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-08-22T00:00:00Z", "2013-06-06T00:00:00Z"]]}}
302
302
 
303
303
  LANDSAT_ETM_C1:
304
304
  description: |
@@ -314,7 +314,7 @@ LANDSAT_ETM_C1:
314
314
  eodag:sensor_type: OPTICAL
315
315
  license: other
316
316
  title: Enhanced Thematic Mapper Plus (ETM+) 15- to 30-meter multispectral Collection-1 Level-1 data from Landsat 7
317
- extent: {"temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
317
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
318
318
 
319
319
  LANDSAT_ETM_C2L1:
320
320
  description: |
@@ -330,7 +330,7 @@ LANDSAT_ETM_C2L1:
330
330
  eodag:sensor_type: OPTICAL
331
331
  license: other
332
332
  title: Enhanced Thematic Mapper Plus (ETM+) 15- to 30-meter multispectral Collection-2 Level-1 data from Landsat 7
333
- extent: {"temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
333
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
334
334
 
335
335
  LANDSAT_ETM_C2L2:
336
336
  description: |
@@ -344,7 +344,7 @@ LANDSAT_ETM_C2L2:
344
344
  eodag:sensor_type: OPTICAL
345
345
  license: other
346
346
  title: Enhanced Thematic Mapper Plus (ETM+) 15- to 30-meter multispectral Collection-2 Level-2 data from Landsat 7
347
- extent: {"temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
347
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-04-15T00:00:00Z", null]]}}
348
348
 
349
349
  # MARK: MODIS --------------------------------------------------------------------------
350
350
  MODIS_MCD43A4:
@@ -362,7 +362,7 @@ MODIS_MCD43A4:
362
362
  keywords: ["MODIS", "Terra", "Aqua", "EOS", "AM-1+PM-1", "L3", "MCD43A4"]
363
363
  eodag:sensor_type: OPTICAL
364
364
  license: other
365
- extent: {"temporal": {"interval": [["2000-03-05T00:00:00Z", null]]}}
365
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2000-03-05T00:00:00Z", null]]}}
366
366
  title: MODIS MCD43A4
367
367
 
368
368
  # MARK: NAIP ---------------------------------------------------------------------------
@@ -382,7 +382,7 @@ NAIP:
382
382
  keywords: ["film", "digital", "cameras", "Agriculture", "NAIP"]
383
383
  eodag:sensor_type: OPTICAL
384
384
  license: other
385
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
385
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
386
386
  title: National Agriculture Imagery Program
387
387
 
388
388
  # MARK: Sentinel 1 ---------------------------------------------------------------------
@@ -401,7 +401,7 @@ S1_AUX_GNSSRD:
401
401
  eodag:sensor_type: RADAR
402
402
  license: other
403
403
  title: SENTINEL1 Auxiliary Product
404
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
404
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
405
405
 
406
406
  S1_AUX_MOEORB:
407
407
  description: |
@@ -419,7 +419,7 @@ S1_AUX_MOEORB:
419
419
  eodag:sensor_type: RADAR
420
420
  license: other
421
421
  title: SENTINEL1 Auxiliary Product
422
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
422
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
423
423
 
424
424
  S1_AUX_POEORB:
425
425
  description: |
@@ -437,7 +437,7 @@ S1_AUX_POEORB:
437
437
  eodag:sensor_type: RADAR
438
438
  license: other
439
439
  title: SENTINEL1 Auxiliary Product
440
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
440
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
441
441
 
442
442
  S1_AUX_PREORB:
443
443
  description: |
@@ -455,7 +455,7 @@ S1_AUX_PREORB:
455
455
  eodag:sensor_type: RADAR
456
456
  license: other
457
457
  title: SENTINEL1 Auxiliary Product
458
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
458
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
459
459
 
460
460
  S1_AUX_PROQUA:
461
461
  description: |
@@ -473,7 +473,7 @@ S1_AUX_PROQUA:
473
473
  eodag:sensor_type: RADAR
474
474
  license: other
475
475
  title: SENTINEL1 Auxiliary Product
476
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
476
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
477
477
 
478
478
  S1_AUX_RESORB:
479
479
  description: |
@@ -491,7 +491,7 @@ S1_AUX_RESORB:
491
491
  eodag:sensor_type: RADAR
492
492
  license: other
493
493
  title: SENTINEL1 Auxiliary Product
494
- extent: {"temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
494
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-06T00:00:00Z", null]]}}
495
495
 
496
496
  S1_SAR_L3_IW_MCM:
497
497
  description: |
@@ -509,7 +509,7 @@ S1_SAR_L3_IW_MCM:
509
509
  eodag:sensor_type: RADAR
510
510
  license: other
511
511
  title: SENTINEL1 Level-3 IW MCM
512
- extent: {"temporal": {"interval": [["2023-01-01T00:00:00Z", null]]}}
512
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-01-01T00:00:00Z", null]]}}
513
513
 
514
514
  S1_SAR_L3_DH_MCM:
515
515
  description: |
@@ -527,7 +527,7 @@ S1_SAR_L3_DH_MCM:
527
527
  eodag:sensor_type: RADAR
528
528
  license: other
529
529
  title: SENTINEL1 Level-3 DH MCM
530
- extent: {"temporal": {"interval": [["2023-01-01T00:00:00Z", null]]}}
530
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-01-01T00:00:00Z", null]]}}
531
531
 
532
532
  S1_SAR_OCN:
533
533
  description: |
@@ -550,7 +550,7 @@ S1_SAR_OCN:
550
550
  eodag:sensor_type: RADAR
551
551
  license: other
552
552
  title: SENTINEL1 Level-2 OCN
553
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
553
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
554
554
 
555
555
  S1_SAR_GRD:
556
556
  description: |
@@ -574,7 +574,7 @@ S1_SAR_GRD:
574
574
  eodag:sensor_type: RADAR
575
575
  license: other
576
576
  title: SENTINEL1 Level-1 Ground Range Detected
577
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
577
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
578
578
 
579
579
  S1_SAR_GRD_JP2:
580
580
  description: |
@@ -598,7 +598,7 @@ S1_SAR_GRD_JP2:
598
598
  eodag:sensor_type: RADAR
599
599
  license: other
600
600
  title: SENTINEL1 Level-1 Ground Range Detected
601
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
601
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
602
602
 
603
603
  S1_SAR_GRD_COG:
604
604
  description: |
@@ -622,7 +622,7 @@ S1_SAR_GRD_COG:
622
622
  eodag:sensor_type: RADAR
623
623
  license: other
624
624
  title: SENTINEL1 Level-1 Ground Range Detected
625
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
625
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
626
626
 
627
627
  S1_SAR_SLC:
628
628
  description: |
@@ -640,7 +640,7 @@ S1_SAR_SLC:
640
640
  eodag:sensor_type: RADAR
641
641
  license: other
642
642
  title: SENTINEL1 Level-1 Single Look Complex
643
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
643
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
644
644
 
645
645
  S1_SAR_RAW:
646
646
  description: |
@@ -657,7 +657,7 @@ S1_SAR_RAW:
657
657
  eodag:sensor_type: RADAR
658
658
  license: other
659
659
  title: SENTINEL1 SAR Level-0
660
- extent: {"temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
660
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-04-03T00:00:00Z", null]]}}
661
661
 
662
662
  # MARK: Sentinel 2 ---------------------------------------------------------------------
663
663
  S2_MSI_L1C:
@@ -677,7 +677,7 @@ S2_MSI_L1C:
677
677
  keywords: ["MSI", "SENTINEL", "SENTINEL2", "S2", "S2A", "S2B", "S2C", "L1", "L1C", "SAFE"]
678
678
  eodag:sensor_type: OPTICAL
679
679
  license: other
680
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
680
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
681
681
  title: SENTINEL2 Level-1C
682
682
 
683
683
  S2_MSI_L1C_JP2:
@@ -697,7 +697,7 @@ S2_MSI_L1C_JP2:
697
697
  keywords: ["MSI", "SENTINEL", "SENTINEL2", "S2", "S2A", "S2B", "S2C", "L1C", "JP2"]
698
698
  eodag:sensor_type: OPTICAL
699
699
  license: other
700
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
700
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
701
701
  title: SENTINEL2 Level-1C
702
702
 
703
703
  S2_MSI_L2A:
@@ -713,7 +713,7 @@ S2_MSI_L2A:
713
713
  eodag:sensor_type: OPTICAL
714
714
  license: other
715
715
  title: SENTINEL2 Level-2A
716
- extent: {"temporal": {"interval": [["2018-03-26T00:00:00Z", null]]}}
716
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2018-03-26T00:00:00Z", null]]}}
717
717
 
718
718
  S2_MSI_L2A_JP2:
719
719
  description: |
@@ -728,7 +728,7 @@ S2_MSI_L2A_JP2:
728
728
  eodag:sensor_type: OPTICAL
729
729
  license: other
730
730
  title: SENTINEL2 Level-2A
731
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
731
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
732
732
 
733
733
  S2_MSI_L2A_COG:
734
734
  description: |
@@ -743,7 +743,7 @@ S2_MSI_L2A_COG:
743
743
  eodag:sensor_type: OPTICAL
744
744
  license: other
745
745
  title: SENTINEL2 Level-2A
746
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
746
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
747
747
 
748
748
  S2_MSI_L2A_MAJA:
749
749
  description: |
@@ -759,7 +759,7 @@ S2_MSI_L2A_MAJA:
759
759
  eodag:sensor_type: OPTICAL
760
760
  license: other
761
761
  title: SENTINEL2 Level-2A
762
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
762
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
763
763
 
764
764
  S2_MSI_L2B_MAJA_SNOW:
765
765
  description: |
@@ -774,7 +774,7 @@ S2_MSI_L2B_MAJA_SNOW:
774
774
  keywords: ["MSI", "MAJA", "SENTINEL", "sentinel2", "S2", "S2A", "S2B", "S2C", "L2", "L2B", "SNOW"]
775
775
  eodag:sensor_type: OPTICAL
776
776
  license: other
777
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
777
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
778
778
  title: SENTINEL2 snow product
779
779
 
780
780
  S2_MSI_L2B_MAJA_WATER:
@@ -788,7 +788,7 @@ S2_MSI_L2B_MAJA_WATER:
788
788
  keywords: ["MSI", "MAJA", "SENTINEL", "sentinel2", "S2", "S2A", "S2B", "S2C", "L2", "L2B", "WATER"]
789
789
  eodag:sensor_type: OPTICAL
790
790
  license: other
791
- extent: {"temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
791
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-06-23T00:00:00Z", null]]}}
792
792
  title: SENTINEL2 L2B-WATER
793
793
 
794
794
  # MARK: Sentinel 3 ---------------------------------------------------------------------
@@ -814,7 +814,7 @@ S3_EFR:
814
814
  eodag:sensor_type: OPTICAL
815
815
  license: other
816
816
  title: SENTINEL3 EFR
817
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
817
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
818
818
 
819
819
  S3_EFR_BC002:
820
820
  description: |
@@ -837,7 +837,7 @@ S3_EFR_BC002:
837
837
  eodag:sensor_type: OPTICAL
838
838
  license: other
839
839
  title: OLCI Level 1B Full Resolution (version BC002) - Sentinel-3 - Reprocessed
840
- extent: {"temporal": {"interval": [["2016-04-25T00:00:00Z", "2019-10-29T00:00:00Z"]]}}
840
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-04-25T00:00:00Z", "2019-10-29T00:00:00Z"]]}}
841
841
 
842
842
  S3_ERR:
843
843
  description: |
@@ -860,7 +860,7 @@ S3_ERR:
860
860
  eodag:sensor_type: OPTICAL
861
861
  license: other
862
862
  title: SENTINEL3 ERR
863
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
863
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
864
864
 
865
865
  S3_ERR_BC002:
866
866
  description: |
@@ -882,7 +882,7 @@ S3_ERR_BC002:
882
882
  eodag:sensor_type: OPTICAL
883
883
  license: other
884
884
  title: OLCI Level 1B Reduced Resolution (version BC002) - Sentinel-3 - Reprocessed
885
- extent: {"temporal": {"interval": [["2016-04-25T00:00:00Z", "2019-10-29T00:00:00Z"]]}}
885
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-04-25T00:00:00Z", "2019-10-29T00:00:00Z"]]}}
886
886
 
887
887
  S3_RAC:
888
888
  description: |
@@ -895,7 +895,7 @@ S3_RAC:
895
895
  eodag:sensor_type: OPTICAL
896
896
  license: other
897
897
  title: SENTINEL3 RAC
898
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
898
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
899
899
 
900
900
  # MARK: S3 OLCI L2
901
901
  S3_OLCI_L2LRR:
@@ -913,7 +913,7 @@ S3_OLCI_L2LRR:
913
913
  eodag:sensor_type: OPTICAL
914
914
  license: other
915
915
  title: SENTINEL3 OLCI Level-2 Land Reduced Resolution
916
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
916
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
917
917
 
918
918
  S3_OLCI_L2LFR:
919
919
  description: |
@@ -930,7 +930,7 @@ S3_OLCI_L2LFR:
930
930
  eodag:sensor_type: OPTICAL
931
931
  license: other
932
932
  title: SENTINEL3 OLCI Level-2 Land Full Resolution
933
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
933
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
934
934
 
935
935
  S3_OLCI_L2WRR:
936
936
  description: |
@@ -947,7 +947,7 @@ S3_OLCI_L2WRR:
947
947
  eodag:sensor_type: OPTICAL
948
948
  license: other
949
949
  title: SENTINEL3 OLCI Level-2 Water Reduced Resolution
950
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
950
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
951
951
 
952
952
  S3_OLCI_L2WRR_BC003:
953
953
  description: |
@@ -965,7 +965,7 @@ S3_OLCI_L2WRR_BC003:
965
965
  eodag:sensor_type: OPTICAL
966
966
  license: other
967
967
  title: SENTINEL3 OLCI Level-2 Water Reduced Resolution Reprocessed from BC003
968
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
968
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
969
969
 
970
970
  S3_OLCI_L2WFR:
971
971
  description: |
@@ -982,7 +982,7 @@ S3_OLCI_L2WFR:
982
982
  eodag:sensor_type: OPTICAL
983
983
  license: other
984
984
  title: SENTINEL3 OLCI Level-2 Water Full Resolution
985
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
985
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
986
986
 
987
987
  S3_OLCI_L2WFR_BC003:
988
988
  description: |
@@ -1001,7 +1001,7 @@ S3_OLCI_L2WFR_BC003:
1001
1001
  eodag:sensor_type: OPTICAL
1002
1002
  license: other
1003
1003
  title: SENTINEL3 OLCI Level-2 Water Full Resolution Reprocessed from BC003
1004
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1004
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1005
1005
 
1006
1006
  S3_OLCI_L4BALTIC:
1007
1007
  description: |
@@ -1019,7 +1019,7 @@ S3_OLCI_L4BALTIC:
1019
1019
  eodag:sensor_type: OPTICAL
1020
1020
  license: other
1021
1021
  title: SENTINEL3 OLCI Baltic Sea Surface Ocean Colour Plankton
1022
- extent: {"temporal": {"interval": [["2023-04-10T00:00:00Z", null]]}}
1022
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-04-10T00:00:00Z", null]]}}
1023
1023
 
1024
1024
  # MARK: S3 SLSTR
1025
1025
  S3_SLSTR_L1RBT:
@@ -1038,7 +1038,7 @@ S3_SLSTR_L1RBT:
1038
1038
  eodag:sensor_type: ATMOSPHERIC
1039
1039
  license: other
1040
1040
  title: SENTINEL3 SLSTR Level-1
1041
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1041
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1042
1042
 
1043
1043
  S3_SLSTR_L1RBT_BC003:
1044
1044
  description: |
@@ -1058,7 +1058,7 @@ S3_SLSTR_L1RBT_BC003:
1058
1058
  eodag:sensor_type: ATMOSPHERIC
1059
1059
  license: other
1060
1060
  title: SLSTR Level 1B Radiances and Brightness Temperatures (version BC003) - Sentinel-3 - Reprocessed
1061
- extent: {"temporal": {"interval": [["2016-04-19T00:00:00Z", "2018-04-04T00:00:00Z"]]}}
1061
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-04-19T00:00:00Z", "2018-04-04T00:00:00Z"]]}}
1062
1062
 
1063
1063
  S3_SLSTR_L1RBT_BC004:
1064
1064
  description: |
@@ -1078,7 +1078,7 @@ S3_SLSTR_L1RBT_BC004:
1078
1078
  eodag:sensor_type: ATMOSPHERIC
1079
1079
  license: other
1080
1080
  title: SENTINEL3 SLSTR Level-1 RBT - Reprocessed from BC004
1081
- extent: {"temporal": {"interval": [["2018-05-09T00:00:00Z", null]]}}
1081
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2018-05-09T00:00:00Z", null]]}}
1082
1082
 
1083
1083
  S3_SLSTR_L2LST:
1084
1084
  description: |
@@ -1093,7 +1093,7 @@ S3_SLSTR_L2LST:
1093
1093
  eodag:sensor_type: ATMOSPHERIC
1094
1094
  license: other
1095
1095
  title: SENTINEL3 SLSTR Level-2 LST
1096
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1096
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1097
1097
 
1098
1098
  S3_SLSTR_L2WST:
1099
1099
  description: |
@@ -1108,7 +1108,7 @@ S3_SLSTR_L2WST:
1108
1108
  eodag:sensor_type: ATMOSPHERIC
1109
1109
  license: other
1110
1110
  title: SENTINEL3 SLSTR Level-2 WST
1111
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1111
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1112
1112
 
1113
1113
  S3_SLSTR_L2WST_BC003:
1114
1114
  description: |
@@ -1124,7 +1124,7 @@ S3_SLSTR_L2WST_BC003:
1124
1124
  eodag:sensor_type: ATMOSPHERIC
1125
1125
  license: other
1126
1126
  title: SENTINEL3 SLSTR Level-2 WST Reprocessed from BC003
1127
- extent: {"temporal": {"interval": [["2016-04-18T00:00:00Z", null]]}}
1127
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-04-18T00:00:00Z", null]]}}
1128
1128
 
1129
1129
  S3_SLSTR_L2AOD:
1130
1130
  description: |
@@ -1141,7 +1141,7 @@ S3_SLSTR_L2AOD:
1141
1141
  eodag:sensor_type: ATMOSPHERIC
1142
1142
  license: other
1143
1143
  title: SENTINEL3 SLSTR Level-2 AOD
1144
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1144
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1145
1145
 
1146
1146
  S3_SLSTR_L2FRP:
1147
1147
  description: |
@@ -1157,7 +1157,7 @@ S3_SLSTR_L2FRP:
1157
1157
  eodag:sensor_type: ATMOSPHERIC
1158
1158
  license: other
1159
1159
  title: SENTINEL3 SLSTR Level-2 FRP
1160
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1160
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1161
1161
 
1162
1162
  S3_SLSTR_L2:
1163
1163
  description: |
@@ -1182,7 +1182,7 @@ S3_SLSTR_L2:
1182
1182
  eodag:sensor_type: ATMOSPHERIC
1183
1183
  license: other
1184
1184
  title: SENTINEL3 SLSTR Level-2
1185
- extent: {"temporal": {"interval": [["2017-07-05T00:00:00Z", null]]}}
1185
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-07-05T00:00:00Z", null]]}}
1186
1186
 
1187
1187
  # MARK: S3 SRAL
1188
1188
  S3_SRA:
@@ -1201,7 +1201,7 @@ S3_SRA:
1201
1201
  eodag:sensor_type: RADAR
1202
1202
  license: other
1203
1203
  title: SENTINEL3 SRAL Level-1
1204
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1204
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1205
1205
 
1206
1206
  S3_SRA_A:
1207
1207
  description: |
@@ -1216,7 +1216,7 @@ S3_SRA_A:
1216
1216
  eodag:sensor_type: RADAR
1217
1217
  license: other
1218
1218
  title: SENTINEL3 SRAL Level-1 SRA_A
1219
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1219
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1220
1220
 
1221
1221
  S3_SRA_BS:
1222
1222
  description: |
@@ -1233,7 +1233,7 @@ S3_SRA_BS:
1233
1233
  eodag:sensor_type: RADAR
1234
1234
  license: other
1235
1235
  title: SENTINEL3 SRAL Level-1 SRA_BS
1236
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1236
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1237
1237
 
1238
1238
  S3_SRA_1A_BC004:
1239
1239
  description: |
@@ -1251,7 +1251,7 @@ S3_SRA_1A_BC004:
1251
1251
  eodag:sensor_type: RADAR
1252
1252
  license: other
1253
1253
  title: SENTINEL3 SRAL Level-1A Unpacked - Reprocessed from BC004
1254
- extent: {"temporal": {"interval": [["2016-03-01T00:00:00Z", null]]}}
1254
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-03-01T00:00:00Z", null]]}}
1255
1255
 
1256
1256
  S3_SRA_1A_BC005:
1257
1257
  description: |
@@ -1268,7 +1268,7 @@ S3_SRA_1A_BC005:
1268
1268
  eodag:sensor_type: RADAR
1269
1269
  license: other
1270
1270
  title: SRAL Level 1A Unpacked L0 Complex Echoes (version BC005) - Sentinel-3 - Reprocessed
1271
- extent: {"temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1271
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1272
1272
 
1273
1273
  S3_SRA_1B_BC004:
1274
1274
  description: |
@@ -1286,7 +1286,7 @@ S3_SRA_1B_BC004:
1286
1286
  eodag:sensor_type: RADAR
1287
1287
  license: other
1288
1288
  title: SENTINEL3 SRAL Level-1B - Reprocessed from BC004
1289
- extent: {"temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1289
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1290
1290
 
1291
1291
  S3_SRA_1B_BC005:
1292
1292
  description: |
@@ -1303,7 +1303,7 @@ S3_SRA_1B_BC005:
1303
1303
  eodag:sensor_type: RADAR
1304
1304
  license: other
1305
1305
  title: SRAL Level 1B (version BC005) - Sentinel-3 - Reprocessed
1306
- extent: {"temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1306
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1307
1307
 
1308
1308
  S3_SRA_BS_BC004:
1309
1309
  description: |
@@ -1324,7 +1324,7 @@ S3_SRA_BS_BC004:
1324
1324
  eodag:sensor_type: RADAR
1325
1325
  license: other
1326
1326
  title: SENTINEL3 SRAL Level-1B Stack Echoes - Reprocessed from BC004
1327
- extent: {"temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1327
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1328
1328
 
1329
1329
  S3_SRA_BS_BC005:
1330
1330
  description: |
@@ -1344,7 +1344,7 @@ S3_SRA_BS_BC005:
1344
1344
  eodag:sensor_type: RADAR
1345
1345
  license: other
1346
1346
  title: SRAL Level 1B Stack Echoes (version BC005) - Sentinel-3 - Reprocessed
1347
- extent: {"temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1347
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1348
1348
 
1349
1349
  S3_WAT:
1350
1350
  description: |
@@ -1368,7 +1368,7 @@ S3_WAT:
1368
1368
  eodag:sensor_type: RADAR
1369
1369
  license: other
1370
1370
  title: SENTINEL3 SRAL Level-2 WAT
1371
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1371
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1372
1372
 
1373
1373
  S3_WAT_BC004:
1374
1374
  description: |
@@ -1389,7 +1389,7 @@ S3_WAT_BC004:
1389
1389
  eodag:sensor_type: RADAR
1390
1390
  license: other
1391
1391
  title: SRAL Level 2 Altimetry Global - Reprocessed from BC004
1392
- extent: {"temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1392
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-03-01T00:00:00Z", "2019-12-31T00:00:00Z"]]}}
1393
1393
 
1394
1394
  S3_WAT_BC005:
1395
1395
  description: |
@@ -1410,7 +1410,7 @@ S3_WAT_BC005:
1410
1410
  eodag:sensor_type: RADAR
1411
1411
  license: other
1412
1412
  title: SRAL Level 2 Altimetry Global (version BC005) - Sentinel-3 - Reprocessed
1413
- extent: {"temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1413
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-05-05T00:00:00Z", "2023-03-09T00:00:00Z"]]}}
1414
1414
 
1415
1415
  S3_LAN:
1416
1416
  description: LAN or SR_2_LAN___ (peps)
@@ -1422,7 +1422,7 @@ S3_LAN:
1422
1422
  eodag:sensor_type: RADAR
1423
1423
  license: other
1424
1424
  title: SENTINEL3 SRAL Level-2 LAN
1425
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1425
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1426
1426
 
1427
1427
  S3_LAN_HY:
1428
1428
  description: |
@@ -1446,7 +1446,7 @@ S3_LAN_HY:
1446
1446
  eodag:sensor_type: RADAR
1447
1447
  license: other
1448
1448
  title: SENTINEL3 SRAL Level-2 LAN HYDRO
1449
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1449
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1450
1450
 
1451
1451
  S3_LAN_SI:
1452
1452
  description: |
@@ -1470,7 +1470,7 @@ S3_LAN_SI:
1470
1470
  eodag:sensor_type: RADAR
1471
1471
  license: other
1472
1472
  title: SENTINEL3 SRAL Level-2 LAN SEA ICE
1473
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1473
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1474
1474
 
1475
1475
  S3_LAN_LI:
1476
1476
  description: |
@@ -1494,7 +1494,7 @@ S3_LAN_LI:
1494
1494
  eodag:sensor_type: RADAR
1495
1495
  license: other
1496
1496
  title: SENTINEL3 SRAL Level-2 LAN LAND ICE
1497
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1497
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1498
1498
 
1499
1499
  # MARK: MFG
1500
1500
  MFG_GSA_57:
@@ -1514,7 +1514,7 @@ MFG_GSA_57:
1514
1514
  eodag:sensor_type: OPTICAL
1515
1515
  license: other
1516
1516
  title: GSA Level 2 Climate Data Record Release 2 - MFG - 57 degree
1517
- extent: {"temporal": {"interval": [["2006-12-07T00:00:00Z", "2017-03-30T23:59:59Z"]]}}
1517
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2006-12-07T00:00:00Z", "2017-03-30T23:59:59Z"]]}}
1518
1518
 
1519
1519
  MFG_GSA_63:
1520
1520
  description: |
@@ -1533,23 +1533,20 @@ MFG_GSA_63:
1533
1533
  eodag:sensor_type: OPTICAL
1534
1534
  license: other
1535
1535
  title: GSA Level 2 Climate Data Record Release 2 - MFG - 63 degree
1536
- extent: {"temporal": {"interval": [["1998-07-10T00:00:00Z", "2007-04-10T23:59:59Z"]]}}
1536
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1998-07-10T00:00:00Z", "2007-04-10T23:59:59Z"]]}}
1537
1537
 
1538
1538
  HIRS_FDR_1_MULTI:
1539
1539
  description: |
1540
- This is Release 1 of the Fundamental Data Record (FDR) brightness
1541
- temperatures from the High Resolution Infrared Radiation Sounder (HIRS) on
1542
- board NOAA and Metop satellites. The data record covers more than 40 years
1543
- from 29 October 1978 to 31 December 2020. Release 1 provides recalibrated
1544
- Level 1c brightness temperatures based on the V4.0 calibration method
1545
- developed by Cao et al. (2007). This method was implemented into the
1546
- NWP-SAF software ATOVS and AVHRR processing Package (AAPP). This software
1547
- was consistently used to recalibrate and reprocess data from all HIRS
1548
- instruments on board TIROS-N, NOAA-06 to NOAA-19, Metop-A, and Metop-B. The
1549
- polygons, required for the data tailoring, show problems with non-continues
1550
- data. Some polygons of the HIRS data record are found to be incorrect.
1551
- However, this does not affect the correctness of the data itself. This is a
1552
- Fundamental Data Record (FDR).
1540
+ This is Release 2 of the Fundamental Data Record (FDR) brightness temperatures
1541
+ from the High Resolution Infrared Radiation Sounder (HIRS) on board NOAA and Metop
1542
+ satellites. The data record covers more than 40 years from 29 October 1978 to 31
1543
+ December 2022. Release 2 provides recalibrated Level 1c brightness temperatures
1544
+ based on the V4.0 calibration method developed by Cao et al. (2007). This method
1545
+ was implemented into the NWP-SAF software ATOVS and AVHRR processing Package (AAPP).
1546
+ This software was consistently used to recalibrate and reprocess data from all HIRS
1547
+ instruments on board TIROS-N, NOAA-06 to NOAA-19, Metop-A, and Metop-B. Input HIRS
1548
+ data were collected from NOAA/CLASS and ECMWF archives and merged to produce a
1549
+ longer time series of some of the satellites.
1553
1550
  instruments: ["HIRS"]
1554
1551
  constellation: Metop,TIROS,NOAA
1555
1552
  platform: Metop,TIROS,NOAA
@@ -1557,8 +1554,8 @@ HIRS_FDR_1_MULTI:
1557
1554
  keywords: ["HIRS", "L1C", "HIRS", "TIROS", "Metop", "NOAA", "Sounder", "FDR"]
1558
1555
  eodag:sensor_type: Sounder
1559
1556
  license: other
1560
- title: HIRS Level 1C Fundamental Data Record Release 1 - Multimission - Global
1561
- extent: {"temporal": {"interval": [["1978-10-29T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
1557
+ title: HIRS Level 1C Fundamental Data Record Release 2 - Multimission - Global
1558
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1978-10-29T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
1562
1559
 
1563
1560
  S6_RADIO_OCCULTATION:
1564
1561
  description: |
@@ -1573,7 +1570,7 @@ S6_RADIO_OCCULTATION:
1573
1570
  eodag:sensor_type: Radio Occultation
1574
1571
  license: other
1575
1572
  title: Radio Occultation Level 1B Products - Sentinel-6
1576
- extent: {"temporal": {"interval": [["2021-11-19T00:00:00Z", null]]}}
1573
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2021-11-19T00:00:00Z", null]]}}
1577
1574
 
1578
1575
  MTG_LI_AF:
1579
1576
  description: |
@@ -1597,7 +1594,7 @@ MTG_LI_AF:
1597
1594
  eodag:sensor_type: Lightning Imager
1598
1595
  license: other
1599
1596
  title: LI Accumulated Flashes - MTG - 0 degree
1600
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1597
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1601
1598
 
1602
1599
  MTG_LI_LFL:
1603
1600
  description: |
@@ -1619,7 +1616,7 @@ MTG_LI_LFL:
1619
1616
  eodag:sensor_type: Lightning Imager
1620
1617
  license: other
1621
1618
  title: LI Lightning Flashes - MTG - 0 degree
1622
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1619
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1623
1620
 
1624
1621
  MTG_LI_LGR:
1625
1622
  description: |
@@ -1647,7 +1644,7 @@ MTG_LI_LGR:
1647
1644
  eodag:sensor_type: Lightning Imager
1648
1645
  license: other
1649
1646
  title: LI Lightning Groups - MTG - 0 degree
1650
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1647
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1651
1648
 
1652
1649
  MTG_LI_AFA:
1653
1650
  description: |
@@ -1671,7 +1668,7 @@ MTG_LI_AFA:
1671
1668
  eodag:sensor_type: Lightning Imager
1672
1669
  license: other
1673
1670
  title: LI Accumulated Flash Area - MTG - 0 degree
1674
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1671
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1675
1672
 
1676
1673
  MTG_LI_AFR:
1677
1674
  description: |
@@ -1689,7 +1686,7 @@ MTG_LI_AFR:
1689
1686
  eodag:sensor_type: Lightning Imager
1690
1687
  license: other
1691
1688
  title: LI Accumulated Flash Radiance - MTG - 0 degree
1692
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1689
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1693
1690
 
1694
1691
  MTG_LI_LEF:
1695
1692
  description: |
@@ -1711,7 +1708,7 @@ MTG_LI_LEF:
1711
1708
  eodag:sensor_type: Lightning Imager
1712
1709
  license: other
1713
1710
  title: LI Lightning Events Filtered - MTG - 0 degree
1714
- extent: {"temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1711
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-07-08T00:00:00Z", null]]}}
1715
1712
 
1716
1713
  MTG_FCI_FDHSI:
1717
1714
  description: |
@@ -1739,7 +1736,7 @@ MTG_FCI_FDHSI:
1739
1736
  eodag:sensor_type: Imager
1740
1737
  license: other
1741
1738
  title: FCI Level 1c Normal Resolution Image Data - MTG - 0 degree
1742
- extent: {"temporal": {"interval": [["2024-09-24T00:00:00Z", null]]}}
1739
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-09-24T00:00:00Z", null]]}}
1743
1740
 
1744
1741
  MTG_FCI_HRFI:
1745
1742
  description: |
@@ -1769,7 +1766,7 @@ MTG_FCI_HRFI:
1769
1766
  eodag:sensor_type: Imager
1770
1767
  license: other
1771
1768
  title: FCI Level 1c High Resolution Image Data - MTG - 0 degree
1772
- extent: {"temporal": {"interval": [["2024-09-24T00:00:00Z", null]]}}
1769
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-09-24T00:00:00Z", null]]}}
1773
1770
 
1774
1771
  MTG_FCI_ASR_BUFR:
1775
1772
  description: |
@@ -1790,7 +1787,7 @@ MTG_FCI_ASR_BUFR:
1790
1787
  eodag:sensor_type: Imager
1791
1788
  license: other
1792
1789
  title: All Sky Radiance (BUFR) - MTG - 0 degree
1793
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1790
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1794
1791
 
1795
1792
  MTG_FCI_ASR_NETCDF:
1796
1793
  description: |
@@ -1811,7 +1808,7 @@ MTG_FCI_ASR_NETCDF:
1811
1808
  eodag:sensor_type: Imager
1812
1809
  license: other
1813
1810
  title: All Sky Radiance (netCDF) - MTG - 0 degree
1814
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1811
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1815
1812
 
1816
1813
  MTG_FCI_AMV_BUFR:
1817
1814
  description: |
@@ -1832,7 +1829,7 @@ MTG_FCI_AMV_BUFR:
1832
1829
  eodag:sensor_type: Imager
1833
1830
  license: other
1834
1831
  title: Atmospheric Motion Vectors (BUFR) - MTG - 0 degree
1835
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1832
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1836
1833
 
1837
1834
  MTG_FCI_AMV_NETCDF:
1838
1835
  description: |
@@ -1853,7 +1850,7 @@ MTG_FCI_AMV_NETCDF:
1853
1850
  eodag:sensor_type: Imager
1854
1851
  license: other
1855
1852
  title: Atmospheric Motion Vectors (netCDF) - MTG - 0 degree
1856
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1853
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1857
1854
 
1858
1855
  MTG_FCI_CLM:
1859
1856
  description: |
@@ -1875,7 +1872,7 @@ MTG_FCI_CLM:
1875
1872
  eodag:sensor_type: Imager
1876
1873
  license: other
1877
1874
  title: Cloud Mask - MTG - 0 degree
1878
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1875
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1879
1876
 
1880
1877
  MTG_FCI_GII:
1881
1878
  description: |
@@ -1898,7 +1895,7 @@ MTG_FCI_GII:
1898
1895
  eodag:sensor_type: Imager
1899
1896
  license: other
1900
1897
  title: Global Instability Indices - MTG - 0 degree
1901
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1898
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1902
1899
 
1903
1900
  MTG_FCI_OCA:
1904
1901
  description: |
@@ -1920,7 +1917,7 @@ MTG_FCI_OCA:
1920
1917
  eodag:sensor_type: Imager
1921
1918
  license: other
1922
1919
  title: Optimal Cloud Analysis - MTG - 0 degree
1923
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1920
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1924
1921
 
1925
1922
  MTG_FCI_OLR:
1926
1923
  description: |
@@ -1942,7 +1939,7 @@ MTG_FCI_OLR:
1942
1939
  eodag:sensor_type: Imager
1943
1940
  license: other
1944
1941
  title: Outgoing LW radiation at TOA - MTG - 0 degree
1945
- extent: {"temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1942
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2025-01-22T00:00:00Z", null]]}}
1946
1943
 
1947
1944
  # MARK: S3 SYNERGY
1948
1945
  # Synergy data products are generally combinations of OLCI and SLSTR instruments
@@ -1961,7 +1958,7 @@ S3_SY_SYN:
1961
1958
  eodag:sensor_type: OPTICAL,RADAR
1962
1959
  license: other
1963
1960
  title: SENTINEL3 SYNERGY Level-2 SYN
1964
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1961
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1965
1962
 
1966
1963
  S3_SY_AOD:
1967
1964
  description: |
@@ -1977,7 +1974,7 @@ S3_SY_AOD:
1977
1974
  eodag:sensor_type: OPTICAL,RADAR
1978
1975
  license: other
1979
1976
  title: SENTINEL3 SYNERGY Level-2 AOD
1980
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1977
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1981
1978
 
1982
1979
  S3_SY_V10:
1983
1980
  description: |
@@ -1993,7 +1990,7 @@ S3_SY_V10:
1993
1990
  eodag:sensor_type: OPTICAL,RADAR
1994
1991
  license: other
1995
1992
  title: SENTINEL3 SYNERGY Level-2 V10
1996
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1993
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
1997
1994
 
1998
1995
  S3_SY_VG1:
1999
1996
  description: |
@@ -2009,7 +2006,7 @@ S3_SY_VG1:
2009
2006
  eodag:sensor_type: OPTICAL,RADAR
2010
2007
  license: other
2011
2008
  title: SENTINEL3 SYNERGY Level-2 VG1
2012
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
2009
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
2013
2010
 
2014
2011
  S3_SY_VGP:
2015
2012
  description: |
@@ -2025,7 +2022,7 @@ S3_SY_VGP:
2025
2022
  eodag:sensor_type: OPTICAL,RADAR
2026
2023
  license: other
2027
2024
  title: SENTINEL3 SYNERGY Level-2 VGP
2028
- extent: {"temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
2025
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-02-16T00:00:00Z", null]]}}
2029
2026
 
2030
2027
  # MARK: Sentinel 5P --------------------------------------------------------------------
2031
2028
  S5P_L1B2_IR_ALL:
@@ -2045,7 +2042,7 @@ S5P_L1B2_IR_ALL:
2045
2042
  eodag:sensor_type: ATMOSPHERIC
2046
2043
  license: other
2047
2044
  title: Sentinel-5 Precursor Level 1B and Level 2 Irradiances for the SWIR and UNV bands
2048
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2045
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2049
2046
 
2050
2047
  S5P_L1B_IR_ALL:
2051
2048
  description: |
@@ -2064,7 +2061,7 @@ S5P_L1B_IR_ALL:
2064
2061
  eodag:sensor_type: ATMOSPHERIC
2065
2062
  license: other
2066
2063
  title: Sentinel-5 Precursor Level 1B Irradiances for the SWIR and UNV bands
2067
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2064
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2068
2065
 
2069
2066
  S5P_L2_IR_ALL:
2070
2067
  description: |
@@ -2084,7 +2081,7 @@ S5P_L2_IR_ALL:
2084
2081
  eodag:sensor_type: ATMOSPHERIC
2085
2082
  license: other
2086
2083
  title: Sentinel-5 Precursor Level 2 Data
2087
- extent: {"temporal": {"interval": [["2018-04-01T00:00:00Z", null]]}}
2084
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2018-04-01T00:00:00Z", null]]}}
2088
2085
 
2089
2086
  S5P_L1B_IR_SIR:
2090
2087
  description: |
@@ -2105,7 +2102,7 @@ S5P_L1B_IR_SIR:
2105
2102
  eodag:sensor_type: ATMOSPHERIC
2106
2103
  license: other
2107
2104
  title: Sentinel-5 Precursor Level 1B Irradiances for the SWIR bands
2108
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2105
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2109
2106
 
2110
2107
  S5P_L1B_IR_UVN:
2111
2108
  description: |
@@ -2126,7 +2123,7 @@ S5P_L1B_IR_UVN:
2126
2123
  eodag:sensor_type: ATMOSPHERIC
2127
2124
  license: other
2128
2125
  title: Sentinel-5 Precursor Level 1B Irradiances for the UVN bands
2129
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2126
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2130
2127
 
2131
2128
  S5P_L1B_RA_BD1:
2132
2129
  description: |
@@ -2147,7 +2144,7 @@ S5P_L1B_RA_BD1:
2147
2144
  eodag:sensor_type: ATMOSPHERIC
2148
2145
  license: other
2149
2146
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 1
2150
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2147
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2151
2148
 
2152
2149
  S5P_L1B_RA_BD2:
2153
2150
  description: |
@@ -2168,7 +2165,7 @@ S5P_L1B_RA_BD2:
2168
2165
  eodag:sensor_type: ATMOSPHERIC
2169
2166
  license: other
2170
2167
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 2
2171
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2168
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2172
2169
 
2173
2170
  S5P_L1B_RA_BD3:
2174
2171
  description: |
@@ -2189,7 +2186,7 @@ S5P_L1B_RA_BD3:
2189
2186
  eodag:sensor_type: ATMOSPHERIC
2190
2187
  license: other
2191
2188
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 3
2192
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2189
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2193
2190
 
2194
2191
  S5P_L1B_RA_BD4:
2195
2192
  description: |
@@ -2210,7 +2207,7 @@ S5P_L1B_RA_BD4:
2210
2207
  eodag:sensor_type: ATMOSPHERIC
2211
2208
  license: other
2212
2209
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 4
2213
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2210
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2214
2211
 
2215
2212
  S5P_L1B_RA_BD5:
2216
2213
  description: |
@@ -2231,7 +2228,7 @@ S5P_L1B_RA_BD5:
2231
2228
  eodag:sensor_type: ATMOSPHERIC
2232
2229
  license: other
2233
2230
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 5
2234
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2231
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2235
2232
 
2236
2233
  S5P_L1B_RA_BD6:
2237
2234
  description: |
@@ -2252,7 +2249,7 @@ S5P_L1B_RA_BD6:
2252
2249
  eodag:sensor_type: ATMOSPHERIC
2253
2250
  license: other
2254
2251
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 6
2255
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2252
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2256
2253
 
2257
2254
  S5P_L1B_RA_BD7:
2258
2255
  description: |
@@ -2273,7 +2270,7 @@ S5P_L1B_RA_BD7:
2273
2270
  eodag:sensor_type: ATMOSPHERIC
2274
2271
  license: other
2275
2272
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 7
2276
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2273
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2277
2274
 
2278
2275
  S5P_L1B_RA_BD8:
2279
2276
  description: |
@@ -2294,7 +2291,7 @@ S5P_L1B_RA_BD8:
2294
2291
  eodag:sensor_type: ATMOSPHERIC
2295
2292
  license: other
2296
2293
  title: Sentinel-5 Precursor Level 1B Radiances for spectral band 8
2297
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2294
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2298
2295
 
2299
2296
  S5P_L2_NO2:
2300
2297
  description: |
@@ -2311,7 +2308,7 @@ S5P_L2_NO2:
2311
2308
  eodag:sensor_type: ATMOSPHERIC
2312
2309
  license: other
2313
2310
  title: Sentinel-5 Precursor Level 2 Nitrogen Dioxide
2314
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2311
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2315
2312
 
2316
2313
  S5P_L2_CLOUD:
2317
2314
  description: |
@@ -2328,7 +2325,7 @@ S5P_L2_CLOUD:
2328
2325
  eodag:sensor_type: ATMOSPHERIC
2329
2326
  license: other
2330
2327
  title: Sentinel-5 Precursor Level 2 Cloud
2331
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2328
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2332
2329
 
2333
2330
  S5P_L2_O3:
2334
2331
  description: |
@@ -2346,7 +2343,7 @@ S5P_L2_O3:
2346
2343
  eodag:sensor_type: ATMOSPHERIC
2347
2344
  license: other
2348
2345
  title: Sentinel-5 Precursor Level 2 Ozone
2349
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2346
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2350
2347
 
2351
2348
  S5P_L2_CO:
2352
2349
  description: |
@@ -2363,7 +2360,7 @@ S5P_L2_CO:
2363
2360
  eodag:sensor_type: ATMOSPHERIC
2364
2361
  license: other
2365
2362
  title: Sentinel-5 Precursor Level 2 Carbon Monoxide
2366
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2363
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2367
2364
 
2368
2365
  S5P_L2_AER_AI:
2369
2366
  description: |
@@ -2380,7 +2377,7 @@ S5P_L2_AER_AI:
2380
2377
  eodag:sensor_type: ATMOSPHERIC
2381
2378
  license: other
2382
2379
  title: Sentinel-5 Precursor Level 2 Ultraviolet Aerosol Index
2383
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2380
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2384
2381
 
2385
2382
  S5P_L2_O3_PR:
2386
2383
  description: |
@@ -2399,7 +2396,7 @@ S5P_L2_O3_PR:
2399
2396
  eodag:sensor_type: ATMOSPHERIC
2400
2397
  license: other
2401
2398
  title: Sentinel-5 Precursor Level 2 Ozone Profile
2402
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2399
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2403
2400
 
2404
2401
  S5P_L2_O3_TCL:
2405
2402
  description: |
@@ -2420,7 +2417,7 @@ S5P_L2_O3_TCL:
2420
2417
  eodag:sensor_type: ATMOSPHERIC
2421
2418
  license: other
2422
2419
  title: Sentinel-5 Precursor Level 2 Tropospheric Ozone
2423
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2420
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2424
2421
 
2425
2422
  S5P_L2_AER_LH:
2426
2423
  description: |
@@ -2438,7 +2435,7 @@ S5P_L2_AER_LH:
2438
2435
  eodag:sensor_type: ATMOSPHERIC
2439
2436
  license: other
2440
2437
  title: Sentinel-5 Precursor Level 2 Aerosol Layer Height
2441
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2438
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2442
2439
 
2443
2440
  S5P_L2_HCHO:
2444
2441
  description: |
@@ -2457,7 +2454,7 @@ S5P_L2_HCHO:
2457
2454
  eodag:sensor_type: ATMOSPHERIC
2458
2455
  license: other
2459
2456
  title: Sentinel-5 Precursor Level 2 Formaldehyde
2460
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2457
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2461
2458
 
2462
2459
  S5P_L2_CH4:
2463
2460
  description: |
@@ -2484,7 +2481,7 @@ S5P_L2_CH4:
2484
2481
  eodag:sensor_type: ATMOSPHERIC
2485
2482
  license: other
2486
2483
  title: Sentinel-5 Precursor Level 2 Methane
2487
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2484
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2488
2485
 
2489
2486
  S5P_L2_NP_BD3:
2490
2487
  description: |
@@ -2508,7 +2505,7 @@ S5P_L2_NP_BD3:
2508
2505
  eodag:sensor_type: ATMOSPHERIC
2509
2506
  license: other
2510
2507
  title: Sentinel-5 Precursor Level 2 NPP Cloud for band 3
2511
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2508
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2512
2509
 
2513
2510
  S5P_L2_NP_BD6:
2514
2511
  description: |
@@ -2532,7 +2529,7 @@ S5P_L2_NP_BD6:
2532
2529
  eodag:sensor_type: ATMOSPHERIC
2533
2530
  license: other
2534
2531
  title: Sentinel-5 Precursor Level 2 NPP Cloud for band 6
2535
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2532
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2536
2533
 
2537
2534
  S5P_L2_NP_BD7:
2538
2535
  description: |
@@ -2556,7 +2553,7 @@ S5P_L2_NP_BD7:
2556
2553
  eodag:sensor_type: ATMOSPHERIC
2557
2554
  license: other
2558
2555
  title: Sentinel-5 Precursor Level 2 NPP Cloud for band 7
2559
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2556
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2560
2557
 
2561
2558
  S5P_L2_SO2:
2562
2559
  description: |
@@ -2574,7 +2571,7 @@ S5P_L2_SO2:
2574
2571
  eodag:sensor_type: ATMOSPHERIC
2575
2572
  license: other
2576
2573
  title: Sentinel-5 Precursor Level 2 Sulphur Dioxide
2577
- extent: {"temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2574
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-10-13T00:00:00Z", null]]}}
2578
2575
 
2579
2576
  # MARK: Sentinel 6
2580
2577
  S6_P4_L1AHR_F06:
@@ -2595,7 +2592,7 @@ S6_P4_L1AHR_F06:
2595
2592
  eodag:sensor_type: ALTIMETRIC
2596
2593
  license: other
2597
2594
  title: Sentinel 6 - Poseidon-4 Altimetry Level 1A High Resolution Reprocessed at F06
2598
- extent: {"temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2595
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2599
2596
 
2600
2597
  S6_P4_L1BLR_F06:
2601
2598
  description: |
@@ -2615,7 +2612,7 @@ S6_P4_L1BLR_F06:
2615
2612
  eodag:sensor_type: ALTIMETRIC
2616
2613
  license: other
2617
2614
  title: Sentinel 6 - Poseidon-4 Altimetry Level 1B Low Resolution Reprocessed at F06
2618
- extent: {"temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2615
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2619
2616
 
2620
2617
  S6_P4_L1BAHR_F06:
2621
2618
  description: |
@@ -2635,7 +2632,7 @@ S6_P4_L1BAHR_F06:
2635
2632
  eodag:sensor_type: ALTIMETRIC
2636
2633
  license: other
2637
2634
  title: Sentinel 6 - Poseidon-4 Altimetry Level 1B High Resolution Reprocessed at F06
2638
- extent: {"temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2635
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2639
2636
 
2640
2637
  S6_P4_L2LR_F06:
2641
2638
  description: |
@@ -2658,7 +2655,7 @@ S6_P4_L2LR_F06:
2658
2655
  eodag:sensor_type: ALTIMETRIC
2659
2656
  license: other
2660
2657
  title: Sentinel 6 - Poseidon-4 Altimetry Level 2 Low Resolution Reprocessed at F06
2661
- extent: {"temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2658
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2662
2659
 
2663
2660
  S6_P4_L2HR_F06:
2664
2661
  description: |
@@ -2683,7 +2680,7 @@ S6_P4_L2HR_F06:
2683
2680
  eodag:sensor_type: ALTIMETRIC
2684
2681
  license: other
2685
2682
  title: Sentinel 6 - Poseidon-4 Altimetry Level 2 High Resolution Reprocessed at F06
2686
- extent: {"temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2683
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-17T00:00:00Z", null]]}}
2687
2684
 
2688
2685
  S6_AMR_L2_F06:
2689
2686
  description: |
@@ -2701,7 +2698,7 @@ S6_AMR_L2_F06:
2701
2698
  eodag:sensor_type: RADIOMETER
2702
2699
  license: other
2703
2700
  title: Sentinel 6 - Climate-quality Advanced Microwave Radiometer Level 2 Products Reprocessed at F06
2704
- extent: {"temporal": {"interval": [["2020-11-28T00:00:00Z", null]]}}
2701
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-11-28T00:00:00Z", null]]}}
2705
2702
 
2706
2703
  # MARK: VENUS --------------------------------------------------------------------------
2707
2704
  VENUS_L1C:
@@ -2715,7 +2712,7 @@ VENUS_L1C:
2715
2712
  eodag:sensor_type: OPTICAL
2716
2713
  license: other
2717
2714
  title: Venus Level1-C
2718
- extent: {"temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2715
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2719
2716
 
2720
2717
  VENUS_L2A_MAJA:
2721
2718
  description: |
@@ -2729,7 +2726,7 @@ VENUS_L2A_MAJA:
2729
2726
  eodag:sensor_type: OPTICAL
2730
2727
  license: other
2731
2728
  title: Venus Level2-A
2732
- extent: {"temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2729
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2733
2730
 
2734
2731
  VENUS_L3A_MAJA:
2735
2732
  description: ""
@@ -2741,7 +2738,7 @@ VENUS_L3A_MAJA:
2741
2738
  eodag:sensor_type: OPTICAL
2742
2739
  license: other
2743
2740
  title: Venus Level3-A
2744
- extent: {"temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2741
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-08-02T00:00:00Z", null]]}}
2745
2742
 
2746
2743
  # MARK: ECMWF --------------------------------------------------------------------------
2747
2744
 
@@ -2757,7 +2754,7 @@ TIGGE_CF_SFC:
2757
2754
  eodag:sensor_type: ATMOSPHERIC
2758
2755
  license: other
2759
2756
  title: TIGGE ECMWF Surface Control forecast
2760
- extent: {"temporal": {"interval": [["2006-10-01T00:00:00Z", null]]}}
2757
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2006-10-01T00:00:00Z", null]]}}
2761
2758
 
2762
2759
  # MARK: COPERNICUS ADS -----------------------------------------------------------------
2763
2760
  CAMS_GAC_FORECAST:
@@ -2782,7 +2779,7 @@ CAMS_GAC_FORECAST:
2782
2779
  eodag:sensor_type: ATMOSPHERIC
2783
2780
  license: other
2784
2781
  title: CAMS global atmospheric composition forecasts
2785
- extent: {"temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
2782
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
2786
2783
 
2787
2784
  CAMS_EU_AIR_QUALITY_FORECAST:
2788
2785
  description: |
@@ -2803,7 +2800,7 @@ CAMS_EU_AIR_QUALITY_FORECAST:
2803
2800
  eodag:sensor_type: ATMOSPHERIC
2804
2801
  license: other
2805
2802
  title: CAMS European air quality forecasts
2806
- extent: {"temporal": {"interval": [["2022-01-03T00:00:00Z", null]]}}
2803
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2022-01-03T00:00:00Z", null]]}}
2807
2804
 
2808
2805
  CAMS_GFE_GFAS:
2809
2806
  description: |
@@ -2821,7 +2818,7 @@ CAMS_GFE_GFAS:
2821
2818
  eodag:sensor_type: ATMOSPHERIC
2822
2819
  license: other
2823
2820
  title: CAMS global biomass burning emissions based on fire radiative power (GFAS)
2824
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2821
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2825
2822
 
2826
2823
  CAMS_SOLAR_RADIATION:
2827
2824
  description: |
@@ -2841,7 +2838,7 @@ CAMS_SOLAR_RADIATION:
2841
2838
  eodag:sensor_type: ATMOSPHERIC
2842
2839
  license: other
2843
2840
  title: CAMS solar radiation time-series
2844
- extent: {"temporal": {"interval": [["2004-01-02T00:00:00Z", null]]}}
2841
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2004-01-02T00:00:00Z", null]]}}
2845
2842
 
2846
2843
  CAMS_GREENHOUSE_INVERSION:
2847
2844
  description: |
@@ -2862,7 +2859,7 @@ CAMS_GREENHOUSE_INVERSION:
2862
2859
  eodag:sensor_type: ATMOSPHERIC
2863
2860
  license: other
2864
2861
  title: CAMS global inversion-optimised greenhouse gas fluxes and concentrations
2865
- extent: {"temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
2862
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
2866
2863
 
2867
2864
  CAMS_EAC4_MONTHLY:
2868
2865
  description: |
@@ -2886,7 +2883,7 @@ CAMS_EAC4_MONTHLY:
2886
2883
  eodag:sensor_type: ATMOSPHERIC
2887
2884
  license: other
2888
2885
  title: CAMS global reanalysis (EAC4) monthly averaged fields
2889
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2886
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2890
2887
 
2891
2888
  CAMS_EU_AIR_QUALITY_RE:
2892
2889
  description: |
@@ -2907,7 +2904,7 @@ CAMS_EU_AIR_QUALITY_RE:
2907
2904
  eodag:sensor_type: ATMOSPHERIC
2908
2905
  license: other
2909
2906
  title: CAMS European air quality reanalyses
2910
- extent: {"temporal": {"interval": [["2013-01-01T00:00:00Z", null]]}}
2907
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-01-01T00:00:00Z", null]]}}
2911
2908
 
2912
2909
  CAMS_EAC4:
2913
2910
  description: |
@@ -2929,7 +2926,7 @@ CAMS_EAC4:
2929
2926
  eodag:sensor_type: ATMOSPHERIC
2930
2927
  license: other
2931
2928
  title: CAMS global reanalysis (EAC4)
2932
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2929
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2933
2930
 
2934
2931
  CAMS_GRF_AUX:
2935
2932
  description: |
@@ -2947,7 +2944,7 @@ CAMS_GRF_AUX:
2947
2944
  eodag:sensor_type: ATMOSPHERIC
2948
2945
  license: other
2949
2946
  title: CAMS global radiative forcing - auxilliary variables
2950
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2947
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2951
2948
 
2952
2949
  CAMS_GRF:
2953
2950
  description: |
@@ -2973,7 +2970,7 @@ CAMS_GRF:
2973
2970
  eodag:sensor_type: ATMOSPHERIC
2974
2971
  license: other
2975
2972
  title: CAMS global radiative forcings
2976
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2973
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2977
2974
 
2978
2975
  CAMS_GREENHOUSE_EGG4_MONTHLY:
2979
2976
  description: |
@@ -2998,7 +2995,7 @@ CAMS_GREENHOUSE_EGG4_MONTHLY:
2998
2995
  eodag:sensor_type: ATMOSPHERIC
2999
2996
  license: other
3000
2997
  title: CAMS global greenhouse gas reanalysis (EGG4) monthly averaged fields
3001
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
2998
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
3002
2999
 
3003
3000
  CAMS_GREENHOUSE_EGG4:
3004
3001
  description: |
@@ -3023,7 +3020,7 @@ CAMS_GREENHOUSE_EGG4:
3023
3020
  eodag:sensor_type: ATMOSPHERIC
3024
3021
  license: other
3025
3022
  title: CAMS global greenhouse gas reanalysis (EGG4)
3026
- extent: {"temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
3023
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2003-01-01T00:00:00Z", null]]}}
3027
3024
 
3028
3025
  CAMS_GLOBAL_EMISSIONS:
3029
3026
  description: |
@@ -3043,7 +3040,7 @@ CAMS_GLOBAL_EMISSIONS:
3043
3040
  eodag:sensor_type: ATMOSPHERIC
3044
3041
  license: other
3045
3042
  title: CAMS global emission inventories
3046
- extent: {"temporal": {"interval": [["2000-01-01T00:00:00Z", null]]}}
3043
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2000-01-01T00:00:00Z", null]]}}
3047
3044
 
3048
3045
  # MARK: COPERNICUS CDS -----------------------------------------------------------------
3049
3046
  AG_ERA5:
@@ -3068,7 +3065,7 @@ AG_ERA5:
3068
3065
  eodag:sensor_type: ATMOSPHERIC
3069
3066
  license: other
3070
3067
  title: Agrometeorological indicators from 1979 to present derived from reanalysis
3071
- extent: {"temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
3068
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
3072
3069
 
3073
3070
  ERA5_SL:
3074
3071
  description: |
@@ -3106,7 +3103,7 @@ ERA5_SL:
3106
3103
  eodag:sensor_type: ATMOSPHERIC
3107
3104
  license: other
3108
3105
  title: ERA5 hourly data on single levels from 1940 to present
3109
- extent: {"temporal": {"interval": [["1940-01-01T09:00:00Z", null]]}}
3106
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1940-01-01T09:00:00Z", null]]}}
3110
3107
 
3111
3108
  ERA5_SL_MONTHLY:
3112
3109
  description: |
@@ -3144,7 +3141,7 @@ ERA5_SL_MONTHLY:
3144
3141
  eodag:sensor_type: ATMOSPHERIC
3145
3142
  license: other
3146
3143
  title: ERA5 monthly averaged data on single levels from 1940 to present
3147
- extent: {"temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3144
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3148
3145
 
3149
3146
  ERA5_PL:
3150
3147
  description: |
@@ -3187,7 +3184,7 @@ ERA5_PL:
3187
3184
  eodag:sensor_type: ATMOSPHERIC
3188
3185
  license: other
3189
3186
  title: ERA5 hourly data on pressure levels from 1940 to present
3190
- extent: {"temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3187
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3191
3188
 
3192
3189
  ERA5_PL_MONTHLY:
3193
3190
  description: |
@@ -3230,7 +3227,7 @@ ERA5_PL_MONTHLY:
3230
3227
  eodag:sensor_type: ATMOSPHERIC
3231
3228
  license: other
3232
3229
  title: ERA5 monthly averaged data on pressure levels from 1940 to present
3233
- extent: {"temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3230
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1940-01-01T00:00:00Z", null]]}}
3234
3231
 
3235
3232
  ERA5_LAND:
3236
3233
  description: |
@@ -3273,7 +3270,7 @@ ERA5_LAND:
3273
3270
  eodag:sensor_type: ATMOSPHERIC
3274
3271
  license: other
3275
3272
  title: ERA5-Land hourly data from 1950 to present
3276
- extent: {"temporal": {"interval": [["1950-01-02T00:00:00Z", null]]}}
3273
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1950-01-02T00:00:00Z", null]]}}
3277
3274
 
3278
3275
  ERA5_LAND_MONTHLY:
3279
3276
  description: |
@@ -3308,7 +3305,7 @@ ERA5_LAND_MONTHLY:
3308
3305
  eodag:sensor_type: ATMOSPHERIC
3309
3306
  license: other
3310
3307
  title: ERA5-Land monthly averaged data from 1950 to present
3311
- extent: {"temporal": {"interval": [["1950-01-01T00:00:00Z", null]]}}
3308
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1950-01-01T00:00:00Z", null]]}}
3312
3309
 
3313
3310
  UERRA_EUROPE_SL:
3314
3311
  description: |
@@ -3342,7 +3339,7 @@ UERRA_EUROPE_SL:
3342
3339
  eodag:sensor_type: ATMOSPHERIC
3343
3340
  license: other
3344
3341
  title: UERRA regional reanalysis for Europe on single levels from 1961 to 2019
3345
- extent: {"temporal": {"interval": [["1961-01-01T00:00:00Z", null]]}}
3342
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1961-01-01T00:00:00Z", null]]}}
3346
3343
 
3347
3344
  GLACIERS_ELEVATION_AND_MASS_CHANGE:
3348
3345
  description: |
@@ -3360,7 +3357,7 @@ GLACIERS_ELEVATION_AND_MASS_CHANGE:
3360
3357
  eodag:sensor_type: ATMOSPHERIC
3361
3358
  license: other
3362
3359
  title: Glaciers elevation and mass change data from 1850 to present from the Fluctuations of Glaciers Database
3363
- extent: {"temporal": {"interval": [["1850-01-01T00:00:00Z", null]]}}
3360
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1850-01-01T00:00:00Z", null]]}}
3364
3361
 
3365
3362
  GLACIERS_DIST_RANDOLPH:
3366
3363
  description: |
@@ -3380,7 +3377,7 @@ GLACIERS_DIST_RANDOLPH:
3380
3377
  eodag:sensor_type: ATMOSPHERIC
3381
3378
  license: other
3382
3379
  title: Glaciers distribution data from the Randolph Glacier Inventory for year 2000
3383
- extent: {"temporal": {"interval": [["2000-01-01T00:00:00Z", "2000-12-31T23:59:00Z"]]}}
3380
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2000-01-01T00:00:00Z", "2000-12-31T23:59:00Z"]]}}
3384
3381
 
3385
3382
  GRIDDED_GLACIERS_MASS_CHANGE:
3386
3383
  description: |
@@ -3418,7 +3415,7 @@ GRIDDED_GLACIERS_MASS_CHANGE:
3418
3415
  eodag:sensor_type: ATMOSPHERIC
3419
3416
  license: other
3420
3417
  title: Glacier mass change gridded data from 1976 to present derived from the Fluctuations of Glaciers Database
3421
- extent: {"temporal": {"interval": [["1975-01-01T00:00:00Z", null]]}}
3418
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1975-01-01T00:00:00Z", null]]}}
3422
3419
 
3423
3420
  SATELLITE_CARBON_DIOXIDE:
3424
3421
  description: |
@@ -3458,7 +3455,7 @@ SATELLITE_CARBON_DIOXIDE:
3458
3455
  eodag:sensor_type: ATMOSPHERIC
3459
3456
  license: other
3460
3457
  title: Carbon dioxide data from 2002 to present derived from satellite observations
3461
- extent: {"temporal": {"interval": [["2002-10-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
3458
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2002-10-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
3462
3459
 
3463
3460
  SATELLITE_FIRE_BURNED_AREA:
3464
3461
  description: |
@@ -3491,7 +3488,7 @@ SATELLITE_FIRE_BURNED_AREA:
3491
3488
  eodag:sensor_type: ATMOSPHERIC
3492
3489
  license: other
3493
3490
  title: Fire burned area from 2001 to present derived from satellite observations
3494
- extent: {"temporal": {"interval": [["2001-01-01T00:00:00Z", "2022-04-01T23:59:59Z"]]}}
3491
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2001-01-01T00:00:00Z", "2022-04-01T23:59:59Z"]]}}
3495
3492
 
3496
3493
  SATELLITE_METHANE:
3497
3494
  description: |
@@ -3528,7 +3525,7 @@ SATELLITE_METHANE:
3528
3525
  eodag:sensor_type: ATMOSPHERIC
3529
3526
  license: other
3530
3527
  title: Methane data from 2003 to present derived from satellite observations
3531
- extent: {"temporal": {"interval": [["2002-10-01T00:00:00Z", null]]}}
3528
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2002-10-01T00:00:00Z", null]]}}
3532
3529
 
3533
3530
  SATELLITE_SEA_ICE_EDGE_TYPE:
3534
3531
  description: |
@@ -3570,7 +3567,7 @@ SATELLITE_SEA_ICE_EDGE_TYPE:
3570
3567
  eodag:sensor_type: ATMOSPHERIC
3571
3568
  license: other
3572
3569
  title: Sea ice edge and type daily gridded data from 1978 to present derived from satellite observations
3573
- extent: {"temporal": {"interval": [["1978-10-25T00:00:00Z", "2023-05-02T23:59:59Z"]]}}
3570
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1978-10-25T00:00:00Z", "2023-05-02T23:59:59Z"]]}}
3574
3571
 
3575
3572
  SATELLITE_SEA_ICE_THICKNESS:
3576
3573
  description: |
@@ -3615,7 +3612,7 @@ SATELLITE_SEA_ICE_THICKNESS:
3615
3612
  eodag:sensor_type: ATMOSPHERIC
3616
3613
  license: other
3617
3614
  title: Sea ice thickness monthly gridded data for the Arctic from 2002 to present derived from satellite observations
3618
- extent: {"temporal": {"interval": [["2002-10-01T00:00:00Z", null]]}}
3615
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2002-10-01T00:00:00Z", null]]}}
3619
3616
 
3620
3617
  SATELLITE_SEA_ICE_CONCENTRATION:
3621
3618
  description: |
@@ -3644,7 +3641,7 @@ SATELLITE_SEA_ICE_CONCENTRATION:
3644
3641
  eodag:sensor_type: ATMOSPHERIC
3645
3642
  license: other
3646
3643
  title: Sea ice concentration daily gridded data from 1978 to present derived from satellite observations
3647
- extent: {"temporal": {"interval": [["1978-10-25T00:00:00Z", null]]}}
3644
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1978-10-25T00:00:00Z", null]]}}
3648
3645
 
3649
3646
  SEASONAL_POSTPROCESSED_PL:
3650
3647
  description: |
@@ -3686,7 +3683,7 @@ SEASONAL_POSTPROCESSED_PL:
3686
3683
  eodag:sensor_type: ATMOSPHERIC
3687
3684
  license: other
3688
3685
  title: Seasonal forecast anomalies on pressure levels
3689
- extent: {"temporal": {"interval": [["2017-09-01T00:00:00Z", null]]}}
3686
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-09-01T00:00:00Z", null]]}}
3690
3687
 
3691
3688
  SATELLITE_SEA_LEVEL_GLOBAL:
3692
3689
  description: |
@@ -3728,7 +3725,7 @@ SATELLITE_SEA_LEVEL_GLOBAL:
3728
3725
  eodag:sensor_type: HYDROLOGICAL
3729
3726
  license: other
3730
3727
  title: Sea level gridded data from satellite observations for the global ocean
3731
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", "2022-08-04T23:59:59Z"]]}}
3728
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", "2022-08-04T23:59:59Z"]]}}
3732
3729
 
3733
3730
  SEASONAL_POSTPROCESSED_SL:
3734
3731
  description: |
@@ -3782,7 +3779,7 @@ SEASONAL_POSTPROCESSED_SL:
3782
3779
  eodag:sensor_type: ATMOSPHERIC
3783
3780
  license: other
3784
3781
  title: Seasonal forecast anomalies on single levels
3785
- extent: {"temporal": {"interval": [["2017-09-01T00:00:00Z", null]]}}
3782
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-09-01T00:00:00Z", null]]}}
3786
3783
 
3787
3784
  SEASONAL_ORIGINAL_SL:
3788
3785
  description: |
@@ -3832,7 +3829,7 @@ SEASONAL_ORIGINAL_SL:
3832
3829
  eodag:sensor_type: ATMOSPHERIC
3833
3830
  license: other
3834
3831
  title: Seasonal forecast daily and subdaily data on single levels
3835
- extent: {"temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3832
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3836
3833
 
3837
3834
  SEASONAL_ORIGINAL_PL:
3838
3835
  description: |
@@ -3876,7 +3873,7 @@ SEASONAL_ORIGINAL_PL:
3876
3873
  eodag:sensor_type: ATMOSPHERIC
3877
3874
  license: other
3878
3875
  title: Seasonal forecast subdaily data on pressure levels
3879
- extent: {"temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3876
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3880
3877
 
3881
3878
  SEASONAL_MONTHLY_PL:
3882
3879
  description: |
@@ -3919,7 +3916,7 @@ SEASONAL_MONTHLY_PL:
3919
3916
  eodag:sensor_type: ATMOSPHERIC
3920
3917
  license: other
3921
3918
  title: Seasonal forecast monthly statistics on pressure levels
3922
- extent: {"temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3919
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-01-01T00:00:00Z", null]]}}
3923
3920
 
3924
3921
  SEASONAL_MONTHLY_SL:
3925
3922
  description: |
@@ -3970,7 +3967,7 @@ SEASONAL_MONTHLY_SL:
3970
3967
  eodag:sensor_type: ATMOSPHERIC
3971
3968
  license: other
3972
3969
  title: Seasonal forecast monthly statistics on single levels
3973
- extent: {"temporal": {"interval": [["1981-01-01T00:00:00Z", "2023-05-01T00:00:00Z"]]}}
3970
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-01-01T00:00:00Z", "2023-05-01T00:00:00Z"]]}}
3974
3971
 
3975
3972
  SIS_HYDRO_MET_PROJ:
3976
3973
  description: |
@@ -4006,7 +4003,7 @@ SIS_HYDRO_MET_PROJ:
4006
4003
  eodag:sensor_type: ATMOSPHERIC
4007
4004
  license: other
4008
4005
  title: Temperature and precipitation climate impact indicators from 1970 to 2100 derived from European climate projections
4009
- extent: {"temporal": {"interval": [["1970-01-01T00:00:00Z", "2100-12-31T23:59:00Z"]]}}
4006
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1970-01-01T00:00:00Z", "2100-12-31T23:59:00Z"]]}}
4010
4007
 
4011
4008
  CMIP6_CLIMATE_PROJECTIONS:
4012
4009
  description: |
@@ -4035,7 +4032,7 @@ CMIP6_CLIMATE_PROJECTIONS:
4035
4032
  keywords: ["ECMWF","CDS","C3S","CMIP6","historical","projection","global"]
4036
4033
  license: other
4037
4034
  title: CMIP6 climate projections
4038
- extent: {"temporal": {"interval": [["1850-01-01T00:00:00Z", "2100-12-31T23:59:00Z"]]}}
4035
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1850-01-01T00:00:00Z", "2100-12-31T23:59:00Z"]]}}
4039
4036
 
4040
4037
  # MARK: CEMS
4041
4038
 
@@ -4062,7 +4059,7 @@ FIRE_HISTORICAL:
4062
4059
  eodag:sensor_type: ATMOSPHERIC
4063
4060
  license: other
4064
4061
  title: Fire danger indices historical data from the Copernicus Emergency Management Service
4065
- extent: {"temporal": {"interval": [["1940-03-01T00:00:00Z", null]]}}
4062
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1940-03-01T00:00:00Z", null]]}}
4066
4063
 
4067
4064
  FIRE_SEASONAL:
4068
4065
  description: |
@@ -4095,7 +4092,7 @@ FIRE_SEASONAL:
4095
4092
  eodag:sensor_type:
4096
4093
  license: other
4097
4094
  title: Seasonal forecast of fire danger indices from the Copernicus Emergency Management Service
4098
- extent: {"temporal": {"interval": [["1981-02-01T00:00:00Z", null]]}}
4095
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-02-01T00:00:00Z", null]]}}
4099
4096
 
4100
4097
  GLOFAS_FORECAST:
4101
4098
  description: |
@@ -4115,7 +4112,7 @@ GLOFAS_FORECAST:
4115
4112
  eodag:sensor_type: ATMOSPHERIC
4116
4113
  license: other
4117
4114
  title: River discharge and related forecasted data by the Global Flood Awareness System
4118
- extent: {"temporal": {"interval": [["2019-11-05T00:00:00Z", null]]}}
4115
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2019-11-05T00:00:00Z", null]]}}
4119
4116
 
4120
4117
  GLOFAS_HISTORICAL:
4121
4118
  description: |
@@ -4133,7 +4130,7 @@ GLOFAS_HISTORICAL:
4133
4130
  eodag:sensor_type: ATMOSPHERIC
4134
4131
  license: other
4135
4132
  title: River discharge and related historical data from the Global Flood Awareness System
4136
- extent: {"temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
4133
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1979-01-01T00:00:00Z", null]]}}
4137
4134
 
4138
4135
  GLOFAS_REFORECAST:
4139
4136
  description: |
@@ -4164,7 +4161,7 @@ GLOFAS_REFORECAST:
4164
4161
  eodag:sensor_type: ATMOSPHERIC
4165
4162
  license: other
4166
4163
  title: Reforecasts of river discharge and related data by the Global Flood Awareness System
4167
- extent: {"temporal": {"interval": [["1999-01-03T00:00:00Z", "2023-11-25T23:59:59Z"]]}}
4164
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-01-03T00:00:00Z", "2023-11-25T23:59:59Z"]]}}
4168
4165
 
4169
4166
  GLOFAS_SEASONAL:
4170
4167
  description: |
@@ -4194,7 +4191,7 @@ GLOFAS_SEASONAL:
4194
4191
  eodag:sensor_type: ATMOSPHERIC
4195
4192
  license: other
4196
4193
  title: Seasonal forecasts of river discharge and related data by the Global Flood Awareness System
4197
- extent: {"temporal": {"interval": [["2020-12-01T00:00:00Z", null]]}}
4194
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-01T00:00:00Z", null]]}}
4198
4195
 
4199
4196
  GLOFAS_SEASONAL_REFORECAST:
4200
4197
  description: |
@@ -4228,7 +4225,7 @@ GLOFAS_SEASONAL_REFORECAST:
4228
4225
  eodag:sensor_type: ATMOSPHERIC
4229
4226
  license: other
4230
4227
  title: Seasonal reforecasts of river discharge and related data from the Global Flood Awareness System
4231
- extent: {"temporal": {"interval": [["1981-01-27T00:00:00Z", null]]}}
4228
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-01-27T00:00:00Z", null]]}}
4232
4229
 
4233
4230
  EFAS_FORECAST:
4234
4231
  description: |
@@ -4266,7 +4263,7 @@ EFAS_FORECAST:
4266
4263
  eodag:sensor_type: ATMOSPHERIC
4267
4264
  license: other
4268
4265
  title: River discharge and related forecasted data by the European Flood Awareness System
4269
- extent: {"temporal": {"interval": [["2018-10-11T00:00:00Z", null]]}}
4266
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2018-10-11T00:00:00Z", null]]}}
4270
4267
 
4271
4268
  EFAS_HISTORICAL:
4272
4269
  description: |
@@ -4299,7 +4296,7 @@ EFAS_HISTORICAL:
4299
4296
  eodag:sensor_type: ATMOSPHERIC
4300
4297
  license: other
4301
4298
  title: River discharge and related historical data from the European Flood Awareness System
4302
- extent: {"temporal": {"interval": [["1991-01-01T06:00:00Z", null]]}}
4299
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1991-01-01T06:00:00Z", null]]}}
4303
4300
 
4304
4301
  EFAS_REFORECAST:
4305
4302
  description: |
@@ -4335,7 +4332,7 @@ EFAS_REFORECAST:
4335
4332
  eodag:sensor_type: ATMOSPHERIC
4336
4333
  license: other
4337
4334
  title: Reforecasts of river discharge and related data by the European Flood Awareness System
4338
- extent: {"temporal": {"interval": [["1999-01-03T00:00:00Z", "2023-11-21T23:59:59Z"]]}}
4335
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-01-03T00:00:00Z", "2023-11-21T23:59:59Z"]]}}
4339
4336
 
4340
4337
  EFAS_SEASONAL:
4341
4338
  description: |
@@ -4370,7 +4367,7 @@ EFAS_SEASONAL:
4370
4367
  eodag:sensor_type: ATMOSPHERIC
4371
4368
  license: other
4372
4369
  title: Seasonal forecasts of river discharge and related data by the European Flood Awareness System
4373
- extent: {"temporal": {"interval": [["2020-11-01T00:00:00Z", "2023-09-30T00:00:00Z"]]}}
4370
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-11-01T00:00:00Z", "2023-09-30T00:00:00Z"]]}}
4374
4371
 
4375
4372
  EFAS_SEASONAL_REFORECAST:
4376
4373
  description: |
@@ -4404,7 +4401,7 @@ EFAS_SEASONAL_REFORECAST:
4404
4401
  eodag:sensor_type: ATMOSPHERIC
4405
4402
  license: other
4406
4403
  title: Seasonal reforecasts of river discharge and related data by the European Flood Awareness System
4407
- extent: {"temporal": {"interval": [["1991-01-01T00:00:00Z", "2020-10-01T00:00:00Z"]]}}
4404
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1991-01-01T00:00:00Z", "2020-10-01T00:00:00Z"]]}}
4408
4405
 
4409
4406
  # MARK: COPERNICUS Digital Elevation Model
4410
4407
  COP_DEM_GLO30_DGED:
@@ -4422,7 +4419,7 @@ COP_DEM_GLO30_DGED:
4422
4419
  eodag:sensor_type: ALTIMETRIC
4423
4420
  license: other
4424
4421
  title: Copernicus DEM GLO-30 DGED
4425
- extent: {"temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4422
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4426
4423
  COP_DEM_GLO30_DTED:
4427
4424
  description: |
4428
4425
  Digital Terrain Elevation Data (DTED, 16 Bit signed integer) formatted Copernicus DEM GLO-30 data.
@@ -4438,7 +4435,7 @@ COP_DEM_GLO30_DTED:
4438
4435
  eodag:sensor_type: ALTIMETRIC
4439
4436
  license: other
4440
4437
  title: Copernicus DEM GLO-30 DTED
4441
- extent: {"temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4438
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4442
4439
  COP_DEM_GLO90_DGED:
4443
4440
  description: |
4444
4441
  Defence Gridded Elevation Data (DGED, 32 Bit floating point) formatted Copernicus DEM GLO-90 data.
@@ -4454,7 +4451,7 @@ COP_DEM_GLO90_DGED:
4454
4451
  eodag:sensor_type: ALTIMETRIC
4455
4452
  license: other
4456
4453
  title: Copernicus DEM GLO-90 DGED
4457
- extent: {"temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4454
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4458
4455
  COP_DEM_GLO90_DTED:
4459
4456
  description: |
4460
4457
  Digital Terrain Elevation Data (DTED, 16 Bit signed integer) formatted Copernicus DEM GLO-90 data.
@@ -4470,7 +4467,7 @@ COP_DEM_GLO90_DTED:
4470
4467
  eodag:sensor_type: ALTIMETRIC
4471
4468
  license: other
4472
4469
  title: Copernicus DEM GLO-90 DTED
4473
- extent: {"temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4470
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2010-06-21T00:00:00Z", null]]}}
4474
4471
 
4475
4472
  # MARK: Copernicus Land Monitoring Service
4476
4473
  CLMS_CORINE:
@@ -4490,7 +4487,7 @@ CLMS_CORINE:
4490
4487
  eodag:sensor_type:
4491
4488
  license: other
4492
4489
  title: CORINE Land Cover
4493
- extent: {"temporal": {"interval": [["1986-01-01T00:00:00Z", null]]}}
4490
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1986-01-01T00:00:00Z", null]]}}
4494
4491
 
4495
4492
  CLMS_GLO_FCOVER_333M:
4496
4493
  description: |
@@ -4507,7 +4504,7 @@ CLMS_GLO_FCOVER_333M:
4507
4504
  eodag:sensor_type:
4508
4505
  license: other
4509
4506
  title: Global 10-daily Fraction of Vegetation Cover 333m
4510
- extent: {"temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4507
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4511
4508
 
4512
4509
  CLMS_GLO_NDVI_333M:
4513
4510
  description: |
@@ -4522,7 +4519,7 @@ CLMS_GLO_NDVI_333M:
4522
4519
  eodag:sensor_type:
4523
4520
  license: other
4524
4521
  title: Global 10-daily Normalized Difference Vegetation Index 333M
4525
- extent: {"temporal": {"interval": [["2014-01-01T00:00:00Z", "2021-01-01T23:59:59Z"]]}}
4522
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-01T00:00:00Z", "2021-01-01T23:59:59Z"]]}}
4526
4523
 
4527
4524
  CLMS_GLO_NDVI_1KM_LTS:
4528
4525
  description: |
@@ -4541,7 +4538,7 @@ CLMS_GLO_NDVI_1KM_LTS:
4541
4538
  eodag:sensor_type:
4542
4539
  license: other
4543
4540
  title: "Normalized Difference Vegetation Index: global Long Term Statistics (raster 1km) - version 2, Apr 2019"
4544
- extent: {"temporal": {"interval": [["1999-01-01T00:00:00Z", null]]}}
4541
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-01-01T00:00:00Z", null]]}}
4545
4542
 
4546
4543
  CLMS_GLO_DMP_333M:
4547
4544
  description: |
@@ -4559,7 +4556,7 @@ CLMS_GLO_DMP_333M:
4559
4556
  eodag:sensor_type:
4560
4557
  license: other
4561
4558
  title: 10-daily Dry Matter Productivity 333M
4562
- extent: {"temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4559
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4563
4560
 
4564
4561
  CLMS_GLO_GDMP_333M:
4565
4562
  description: |
@@ -4577,7 +4574,7 @@ CLMS_GLO_GDMP_333M:
4577
4574
  eodag:sensor_type:
4578
4575
  license: other
4579
4576
  title: 10-daily Gross Dry Matter Productivity 333M
4580
- extent: {"temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4577
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4581
4578
 
4582
4579
  CLMS_GLO_LAI_333M:
4583
4580
  description: |
@@ -4597,7 +4594,7 @@ CLMS_GLO_LAI_333M:
4597
4594
  eodag:sensor_type:
4598
4595
  license: other
4599
4596
  title: Global 10-daily Leaf Area Index 333m
4600
- extent: {"temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4597
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4601
4598
 
4602
4599
  CLMS_GLO_FAPAR_333M:
4603
4600
  description: |
@@ -4615,7 +4612,7 @@ CLMS_GLO_FAPAR_333M:
4615
4612
  eodag:sensor_type:
4616
4613
  license: other
4617
4614
  title: Global 10-daily Fraction of Absorbed PAR 333m
4618
- extent: {"temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4615
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-10T00:00:00Z", null]]}}
4619
4616
 
4620
4617
  EEA_DAILY_SWI_1KM:
4621
4618
  description: |
@@ -4635,7 +4632,7 @@ EEA_DAILY_SWI_1KM:
4635
4632
  eodag:sensor_type: RADAR
4636
4633
  license: other
4637
4634
  title: "Soil Water Index: continental Europe daily (raster 1km) - version 1, Apr 2019"
4638
- extent: {"temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
4635
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
4639
4636
 
4640
4637
  EEA_DAILY_SSM_1KM:
4641
4638
  description: |
@@ -4656,28 +4653,7 @@ EEA_DAILY_SSM_1KM:
4656
4653
  eodag:sensor_type: RADAR
4657
4654
  license: other
4658
4655
  title: "Surface Soil Moisture: continental Europe daily (raster 1km) - version 1, Apr 2019"
4659
- extent: {"temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
4660
-
4661
- EEA_DAILY_VI:
4662
- description: |
4663
- Vegetation Indices (VI) comprises four daily vegetation indices (PPI, NDVI, LAI and FAPAR) and quality information,
4664
- that are part of the Copernicus Land Monitoring Service (CLMS) HR-VPP product suite. The 10m resolution, daily updated
4665
- Plant Phenology Index (PPI), Normalized Difference Vegetation Index (NDVI), Leaf Area Index (LAI) and Fraction of Absorbed
4666
- Photosynthetically Active Radiation (fAPAR) are derived from Copernicus Sentinel-2 satellite observations. They are
4667
- provided together with a related quality indicator (QFLAG2) that flags clouds, shadows, snow, open water and other areas
4668
- where the VI retrieval is less reliable. These Vegetation Indices are made available as a set of raster files with 10 x 10m
4669
- resolution, in UTM/WGS84 projection corresponding to the Sentinel-2 tiling grid, for those tiles that cover the EEA38
4670
- countries and the United Kingdom and for the period from 2017 until today, with daily updates. The Vegetation Indices
4671
- are part of the pan-European High Resolution Vegetation Phenology and Productivity (HR-VPP) component of the Copernicus
4672
- Land Monitoring Service (CLMS).
4673
- instruments: []
4674
- constellation: Sentinel-2
4675
- platform: S2A,S2B,S2C
4676
- processing:level:
4677
- keywords: ["Land", "Plant-phenology-index", "Phenology", "Vegetation", "Sentinel-2", "S2A", "S2B", "S2C"]
4678
- eodag:sensor_type: RADAR
4679
- license: other
4680
- title: Vegetation Indices, daily, UTM projection
4656
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
4681
4657
 
4682
4658
  EEA_HRL_TCF:
4683
4659
  description: |
@@ -4694,7 +4670,98 @@ EEA_HRL_TCF:
4694
4670
  eodag:sensor_type: RADAR
4695
4671
  license: other
4696
4672
  title: Tree Cover Fraction, UTM projection
4697
- extent: {"temporal": {"interval": [["2017-01-01T00:00:00Z", null]]}}
4673
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-01-01T00:00:00Z", null]]}}
4674
+
4675
+ CLMS_HRVPP_ST:
4676
+ description: |
4677
+ The Seasonal Trajectories product is a filtered time series of Plant Phenology Index (PPI), with regular time step, part of the Copernicus Land Monitoring Service (CLMS) HR-VPP product suite.
4678
+ Plant Phenology Index (PPI) is a physically based vegetation index that is optimized for monitoring vegetation phenology and has a linear relationship with green leaf area index.
4679
+ The Seasonal Trajectories (ST) products are derived from a function fitting of the time series of the PPI vegetation index and hence provide a filtered PPI time series, with regular 10-day time step, together with related quality information (QFLAG).
4680
+ The PPI Seasonal Trajectories are derived from the PPI vegetation index and hence based on Copernicus Sentinel-2 satellite observations.
4681
+ The ST products are made available as a set of raster files with 10m and 100m resolution, in ETRS89/LAEA projection corresponding to the High Resolution Layers tiling grid, for those tiles that cover the EEA38 countries and the United Kingdom, and for the period from 2017 until today, with yearly updates.
4682
+ These Seasonal Trajectories are part of the pan-European High Resolution Vegetation Phenology and Productivity (HR-VPP) component of the Copernicus Land Monitoring Service (CLMS).
4683
+ instruments: []
4684
+ constellation: Sentinel-2
4685
+ platform: S2A,S2B,S2C
4686
+ processing:level:
4687
+ keywords: ["Land", "Plant-phenology-index", "Phenology", "Vegetation", "Sentinel-2", "S2A", "S2B", "S2C"]
4688
+ eodag:sensor_type:
4689
+ license: other
4690
+ title: Seasonal Trajectories, 10-daily, ST projection
4691
+ links:
4692
+ - rel: describedby
4693
+ href: https://land.copernicus.eu/en/technical-library/hr-vpp-data-access-manual/@@download/file
4694
+ type: application/pdf
4695
+ title: User Manual
4696
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [[null, null]]}}
4697
+
4698
+ CLMS_HRVPP_ST_LAEA:
4699
+ description: |
4700
+ The Seasonal Trajectories product is a filtered time series of Plant Phenology Index (PPI), with regular time step, part of the Copernicus Land Monitoring Service (CLMS) HR-VPP product suite.
4701
+ Plant Phenology Index (PPI) is a physically based vegetation index that is optimized for monitoring vegetation phenology and has a linear relationship with green leaf area index.
4702
+ The Seasonal Trajectories (ST) products are derived from a function fitting of the time series of the PPI vegetation index and hence provide a filtered PPI time series, with regular 10-day time step, together with related quality information (QFLAG).
4703
+ The PPI Seasonal Trajectories are derived from the PPI vegetation index and hence based on Copernicus Sentinel-2 satellite observations.
4704
+ The ST products are made available as a set of raster files with 10m and 100m resolution, in ETRS89/LAEA projection corresponding to the High Resolution Layers tiling grid, for those tiles that cover the EEA38 countries and the United Kingdom, and for the period from 2017 until today, with yearly updates.
4705
+ These Seasonal Trajectories are part of the pan-European High Resolution Vegetation Phenology and Productivity (HR-VPP) component of the Copernicus Land Monitoring Service (CLMS).
4706
+ instruments: []
4707
+ constellation: Sentinel-2
4708
+ platform: S2A,S2B,S2C
4709
+ processing:level:
4710
+ keywords: ["Land", "Plant-phenology-index", "Phenology", "Vegetation", "Sentinel-2", "S2A", "S2B", "S2C"]
4711
+ eodag:sensor_type:
4712
+ license: other
4713
+ title: Seasonal Trajectories, 10-daily, LAEA projection
4714
+ links:
4715
+ - rel: describedby
4716
+ href: https://land.copernicus.eu/en/technical-library/hr-vpp-data-access-manual/@@download/file
4717
+ type: application/pdf
4718
+ title: User Manual
4719
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [[null, null]]}}
4720
+
4721
+ CLMS_HRVPP_VPP:
4722
+ description: |
4723
+ Vegetation Phenology and Productivity (VPP) comprise 13 parameters up to 2 seasons that characterize the vegetation growth cycle. It is part of the Copernicus Land Monitoring Service (CLMS) HR-VPP product suite.
4724
+ A set of 13 Vegetation Phenology and Productivity parameters are derived, for up to two growing seasons. These parameters include the start, end and length of the growing season, the dates when the vegetation index reaches its minimum and maximum values, the maximum value itself and its distance to the minimum (amplitude), the slopes of the green-up and green-down periods and the seasonal and total productivity.
4725
+ The Vegetation and Productivity parameters are extracted from the filtered PPI time-series, the HR-VPP Seasonal Trajectories, and hence based on Copernicus Sentinel-2 satellite observations.
4726
+ The VPP parameters are made available as a set of raster files with 10m and 100m resolution, in ETRS89/LAEA projection corresponding to the High Resolution Layers tiling grid, for those tiles that cover the EEA38 countries and the United Kingdom and for the period from 2017 until today, with yearly updates.
4727
+ This VPP product is part of the pan-European High Resolution Vegetation Phenology and Productivity (HR-VPP) component of the Copernicus Land Monitoring Service (CLMS).
4728
+ instruments: []
4729
+ constellation: Sentinel-2
4730
+ platform: S2A,S2B,S2C
4731
+ processing:level:
4732
+ keywords: ["Land", "Plant-phenology-index", "Phenology", "Vegetation", "Sentinel-2", "S2A", "S2B", "S2C"]
4733
+ eodag:sensor_type:
4734
+ license: other
4735
+ title: Vegetation Phenology and Productivity, yearly, UTM projection
4736
+ links:
4737
+ - rel: describedby
4738
+ href: https://land.copernicus.eu/en/technical-library/hr-vpp-data-access-manual/@@download/file
4739
+ type: application/pdf
4740
+ title: User Manual
4741
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [[null, null]]}}
4742
+
4743
+ CLMS_HRVPP_VPP_LAEA:
4744
+ description: |
4745
+ Vegetation Phenology and Productivity (VPP) comprise 13 parameters up to 2 seasons that characterize the vegetation growth cycle. It is part of the Copernicus Land Monitoring Service (CLMS) HR-VPP product suite.
4746
+ A set of 13 Vegetation Phenology and Productivity parameters are derived, for up to two growing seasons. These parameters include the start, end and length of the growing season, the dates when the vegetation index reaches its minimum and maximum values, the maximum value itself and its distance to the minimum (amplitude), the slopes of the green-up and green-down periods and the seasonal and total productivity.
4747
+ The Vegetation and Productivity parameters are extracted from the filtered PPI time-series, the HR-VPP Seasonal Trajectories, and hence based on Copernicus Sentinel-2 satellite observations.
4748
+ The VPP parameters are made available as a set of raster files with 10m and 100m resolution, in ETRS89/LAEA projection corresponding to the High Resolution Layers tiling grid, for those tiles that cover the EEA38 countries and the United Kingdom and for the period from 2017 until today, with yearly updates.
4749
+ This VPP product is part of the pan-European High Resolution Vegetation Phenology and Productivity (HR-VPP) component of the Copernicus Land Monitoring Service (CLMS).
4750
+ instruments: []
4751
+ constellation: Sentinel-2
4752
+ platform: S2A,S2B,S2C
4753
+ processing:level:
4754
+ keywords: ["Land", "Plant-phenology-index", "Phenology", "Vegetation", "Sentinel-2", "S2A", "S2B", "S2C"]
4755
+ eodag:sensor_type:
4756
+ license: other
4757
+ title: Vegetation Phenology and Productivity, yearly, LAEA projection
4758
+ links:
4759
+ - rel: describedby
4760
+ href: https://land.copernicus.eu/en/technical-library/hr-vpp-data-access-manual/@@download/file
4761
+ type: application/pdf
4762
+ title: User Manual
4763
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [[null, null]]}}
4764
+
4698
4765
 
4699
4766
  # MARK: AERIS --------------------------------------------------------------------------
4700
4767
  AERIS_IAGOS:
@@ -4710,7 +4777,7 @@ AERIS_IAGOS:
4710
4777
  eodag:sensor_type: ATMOSPHERIC
4711
4778
  license: other
4712
4779
  title: In-service Aircraft for a Global Observing System
4713
- extent: {"temporal": {"interval": [["1994-08-01T00:00:00Z", null]]}}
4780
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1994-08-01T00:00:00Z", null]]}}
4714
4781
 
4715
4782
  # MARK: Global Surface Water------------------------------------------------------------------
4716
4783
  GSW_CHANGE:
@@ -4726,7 +4793,7 @@ GSW_CHANGE:
4726
4793
  eodag:sensor_type: HYDROLOGICAL
4727
4794
  license: proprietary
4728
4795
  title: Global Surface Water Occurrence Change Intensity 1984-2020
4729
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
4796
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
4730
4797
 
4731
4798
  GSW_EXTENT:
4732
4799
  description: |
@@ -4740,7 +4807,7 @@ GSW_EXTENT:
4740
4807
  eodag:sensor_type: HYDROLOGICAL
4741
4808
  license: proprietary
4742
4809
  title: Global Surface Water Maximum Water Extent 1984-2021
4743
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4810
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4744
4811
 
4745
4812
  GSW_OCCURRENCE:
4746
4813
  description: |
@@ -4755,7 +4822,7 @@ GSW_OCCURRENCE:
4755
4822
  eodag:sensor_type: HYDROLOGICAL
4756
4823
  license: proprietary
4757
4824
  title: Global Surface Water Occurrence 1984-2021
4758
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4825
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4759
4826
 
4760
4827
  GSW_RECURRENCE:
4761
4828
  description: |
@@ -4770,7 +4837,7 @@ GSW_RECURRENCE:
4770
4837
  eodag:sensor_type: HYDROLOGICAL
4771
4838
  license: proprietary
4772
4839
  title: Global Surface Water Recurrence 1984-2021
4773
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4840
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4774
4841
 
4775
4842
  GSW_SEASONALITY:
4776
4843
  description: |
@@ -4785,7 +4852,7 @@ GSW_SEASONALITY:
4785
4852
  eodag:sensor_type: HYDROLOGICAL
4786
4853
  license: proprietary
4787
4854
  title: Global Surface Water Seasonality 2014-2020
4788
- extent: {"temporal": {"interval": [["2014-01-01T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
4855
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-01T00:00:00Z", "2020-12-31T23:59:59Z"]]}}
4789
4856
 
4790
4857
  GSW_TRANSITIONS:
4791
4858
  description: |
@@ -4800,7 +4867,7 @@ GSW_TRANSITIONS:
4800
4867
  eodag:sensor_type: HYDROLOGICAL
4801
4868
  license: proprietary
4802
4869
  title: Global Surface Water Transitions 1984-2021
4803
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4870
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4804
4871
 
4805
4872
  # MARK: Eurostat --------------------------------------------------------------------------
4806
4873
  EUSTAT_GREENHOUSE_GAS_EMISSION_AGRICULTURE:
@@ -4817,7 +4884,7 @@ EUSTAT_GREENHOUSE_GAS_EMISSION_AGRICULTURE:
4817
4884
  eodag:sensor_type:
4818
4885
  license: proprietary
4819
4886
  title: Eurostat - Greenhouse gas emissions from agriculture
4820
- extent: {"temporal": {"interval": [["2011-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
4887
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2011-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
4821
4888
 
4822
4889
  EUSTAT_POP_AGE_SEX_NUTS2:
4823
4890
  description: |
@@ -4833,7 +4900,7 @@ EUSTAT_POP_AGE_SEX_NUTS2:
4833
4900
  eodag:sensor_type:
4834
4901
  license: proprietary
4835
4902
  title: Population on 1 January by age, sex and NUTS 2 region
4836
- extent: {"temporal": {"interval": [["1990-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4903
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4837
4904
 
4838
4905
  EUSTAT_POP_AGE_GROUP_SEX_NUTS3:
4839
4906
  description: |
@@ -4849,7 +4916,7 @@ EUSTAT_POP_AGE_GROUP_SEX_NUTS3:
4849
4916
  eodag:sensor_type:
4850
4917
  license: proprietary
4851
4918
  title: Population on 1 January by age, sex and NUTS 3 region
4852
- extent: {"temporal": {"interval": [["2014-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4919
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2014-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4853
4920
 
4854
4921
  EUSTAT_POP_CHANGE_DEMO_BALANCE_CRUDE_RATES_NUTS3:
4855
4922
  description: |
@@ -4866,7 +4933,7 @@ EUSTAT_POP_CHANGE_DEMO_BALANCE_CRUDE_RATES_NUTS3:
4866
4933
  eodag:sensor_type:
4867
4934
  license: proprietary
4868
4935
  title: Population change - Demographic balance and crude rates at regional level (NUTS 3)
4869
- extent: {"temporal": {"interval": [["2000-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4936
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2000-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4870
4937
 
4871
4938
  EUSTAT_SHARE_ENERGY_FROM_RENEWABLE:
4872
4939
  description: |
@@ -4893,7 +4960,7 @@ EUSTAT_SHARE_ENERGY_FROM_RENEWABLE:
4893
4960
  eodag:sensor_type:
4894
4961
  license: proprietary
4895
4962
  title: Share of energy from renewable sources
4896
- extent: {"temporal": {"interval": [["2004-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4963
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2004-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4897
4964
 
4898
4965
  EUSTAT_AVAILABLE_BEDS_HOSPITALS_NUTS2:
4899
4966
  description: |
@@ -4906,7 +4973,7 @@ EUSTAT_AVAILABLE_BEDS_HOSPITALS_NUTS2:
4906
4973
  eodag:sensor_type:
4907
4974
  license: proprietary
4908
4975
  title: Available beds in hospitals by NUTS 2 region
4909
- extent: {"temporal": {"interval": [["2013-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
4976
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
4910
4977
 
4911
4978
  EUSTAT_BATHING_SITES_WATER_QUALITY:
4912
4979
  description: |
@@ -4919,7 +4986,7 @@ EUSTAT_BATHING_SITES_WATER_QUALITY:
4919
4986
  eodag:sensor_type:
4920
4987
  license: proprietary
4921
4988
  title: Bathing sites with excellent water quality by location
4922
- extent: {"temporal": {"interval": [["2011-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4989
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2011-01-01T00:00:00Z", "2023-12-31T23:59:59Z"]]}}
4923
4990
 
4924
4991
  EUSTAT_POP_DENSITY_NUTS3:
4925
4992
  description: |
@@ -4932,7 +4999,7 @@ EUSTAT_POP_DENSITY_NUTS3:
4932
4999
  eodag:sensor_type:
4933
5000
  license: proprietary
4934
5001
  title: Population density by NUTS 3 region
4935
- extent: {"temporal": {"interval": [["1990-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
5002
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2021-12-31T23:59:59Z"]]}}
4936
5003
 
4937
5004
  EUSTAT_SOIL_SEALING_INDEX:
4938
5005
  description: |
@@ -4945,7 +5012,7 @@ EUSTAT_SOIL_SEALING_INDEX:
4945
5012
  eodag:sensor_type:
4946
5013
  license: proprietary
4947
5014
  title: Soil sealing index
4948
- extent: {"temporal": {"interval": [["2006-01-01T00:00:00Z", "2018-12-31T23:59:59Z"]]}}
5015
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2006-01-01T00:00:00Z", "2018-12-31T23:59:59Z"]]}}
4949
5016
 
4950
5017
  EUSTAT_SURFACE_TERRESTRIAL_PROTECTED_AREAS:
4951
5018
  description: |
@@ -4958,7 +5025,7 @@ EUSTAT_SURFACE_TERRESTRIAL_PROTECTED_AREAS:
4958
5025
  eodag:sensor_type:
4959
5026
  license: proprietary
4960
5027
  title: Surface of the terrestrial protected areas
4961
- extent: {"temporal": {"interval": [["2013-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
5028
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
4962
5029
 
4963
5030
  # MARK: ISIMIP -------------------------------------------------------------------------
4964
5031
  ISIMIP_CLIMATE_FORCING_ISIMIP3B:
@@ -4983,7 +5050,7 @@ ISIMIP_CLIMATE_FORCING_ISIMIP3B:
4983
5050
  eodag:sensor_type:
4984
5051
  license: other
4985
5052
  title: ISIMIP3b climate input data
4986
- extent: {"temporal": {"interval": [["1601-01-01T00:00:00Z", "2500-12-31T23:59:59Z"]]}}
5053
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1601-01-01T00:00:00Z", "2500-12-31T23:59:59Z"]]}}
4987
5054
 
4988
5055
  ISIMIP_SOCIO_ECONOMIC_FORCING_ISIMIP3B:
4989
5056
  description: |
@@ -5007,7 +5074,7 @@ ISIMIP_SOCIO_ECONOMIC_FORCING_ISIMIP3B:
5007
5074
  eodag:sensor_type:
5008
5075
  license: other
5009
5076
  title: ISIMIP3b socio-economic input data
5010
- extent: {"temporal": {"interval": [["1601-01-01T00:00:00Z", "2100-12-31T23:59:59Z"]]}}
5077
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1601-01-01T00:00:00Z", "2100-12-31T23:59:59Z"]]}}
5011
5078
 
5012
5079
  # MARK: METEOBLUE ----------------------------------------------------------------------
5013
5080
  NEMSGLOBAL_TCDC:
@@ -5023,7 +5090,7 @@ NEMSGLOBAL_TCDC:
5023
5090
  eodag:sensor_type: ATMOSPHERIC
5024
5091
  license: other
5025
5092
  title: NEMSGLOBAL Total Cloud Cover daily mean
5026
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", null]]}}
5093
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", null]]}}
5027
5094
 
5028
5095
  NEMSAUTO_TCDC:
5029
5096
  description: |
@@ -5043,7 +5110,7 @@ NEMSAUTO_TCDC:
5043
5110
  eodag:sensor_type: ATMOSPHERIC
5044
5111
  license: other
5045
5112
  title: NEMSAUTO Total Cloud Cover daily mean
5046
- extent: {"temporal": {"interval": [["1984-01-01T00:00:00Z", null]]}}
5113
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1984-01-01T00:00:00Z", null]]}}
5047
5114
 
5048
5115
  # MARK: DE DT Outputs ------------------------------------------------------------------
5049
5116
  DT_EXTREMES:
@@ -5059,7 +5126,8 @@ DT_EXTREMES:
5059
5126
  eodag:sensor_type: ATMOSPHERIC
5060
5127
  license: other
5061
5128
  title: Weather and Geophysical Extremes Digital Twin (DT)
5062
- extent: {"temporal": {"interval": [["2024-04-04T00:00:00Z", "2024-06-07T00:00:00Z"]]}}
5129
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2024-04-04T00:00:00Z", "2024-06-07T00:00:00Z"]]}}
5130
+
5063
5131
  DT_CLIMATE_ADAPTATION:
5064
5132
  description: |
5065
5133
  The Digital Twin on Climate Change Adaptation support the analysis and testing of
@@ -5074,7 +5142,201 @@ DT_CLIMATE_ADAPTATION:
5074
5142
  eodag:sensor_type: ATMOSPHERIC
5075
5143
  license: other
5076
5144
  title: Climate Change Adaptation Digital Twin (DT)
5077
- extent: {"temporal": {"interval": [["2020-01-01T00:00:00Z", null]]}}
5145
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-01-01T00:00:00Z", null]]}}
5146
+
5147
+ DT_CLIMATE_G1_CMIP6_HIST_ICON_R1:
5148
+ description: |
5149
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5150
+ sector-specific information over multiple decades at high resolution via a unified
5151
+ framework combining advanced Earth system models, impact assessments, and observations.
5152
+ This Collection gives access to 'Historical Simulation' data based on the 'ICON' model.
5153
+ instruments: []
5154
+ constellation: Digital Twin
5155
+ platform: DT
5156
+ processing:level:
5157
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "CMIP6", "ICON", "Historical Simulation"]
5158
+ eodag:sensor_type: ATMOSPHERIC
5159
+ license: CC-BY-4.0
5160
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Historical Simulation - ICON
5161
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", "2019-12-31T23:59:59Z"]]}}
5162
+
5163
+ DT_CLIMATE_G1_CMIP6_HIST_IFS_NEMO_R1:
5164
+ description: |
5165
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5166
+ sector-specific information over multiple decades at high resolution via a unified
5167
+ framework combining advanced Earth system models, impact assessments, and observations.
5168
+ This Collection gives access to 'Historical Simulation' data based on the 'IFS-NEMO' model.
5169
+ instruments: []
5170
+ constellation: Digital Twin
5171
+ platform: DT
5172
+ processing:level:
5173
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "CMIP6", "IFS-NEMO","Historical Simulation"]
5174
+ eodag:sensor_type: ATMOSPHERIC
5175
+ license: CC-BY-4.0
5176
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Historical Simulation - IFS-NEMO
5177
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2002-02-28T23:59:59Z"]]}}
5178
+
5179
+ DT_CLIMATE_G1_HIGHRESMIP_CONT_IFS_FESOM_R1:
5180
+ description: |
5181
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5182
+ sector-specific information over multiple decades at high resolution via a unified
5183
+ framework combining advanced Earth system models, impact assessments, and observations.
5184
+ This Collection gives access to 'Control Simulation' data based on the 'IFS-FESOM' model.
5185
+ instruments: []
5186
+ constellation: Digital Twin
5187
+ platform: DT
5188
+ processing:level:
5189
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "HIGHRESMIP", "IFS-FESOM","Control Simulation"]
5190
+ eodag:sensor_type: ATMOSPHERIC
5191
+ license: CC-BY-4.0
5192
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Control Simulation - IFS-FESOM
5193
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2004-12-31T23:59:59Z"]]}}
5194
+
5195
+ DT_CLIMATE_G1_HIGHRESMIP_CONT_IFS_NEMO_R1:
5196
+ description: |
5197
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5198
+ sector-specific information over multiple decades at high resolution via a unified
5199
+ framework combining advanced Earth system models, impact assessments, and observations.
5200
+ This Collection gives access to 'Control Simulation' data based on the 'IFS-NEMO' model.
5201
+ instruments: []
5202
+ constellation: Digital Twin
5203
+ platform: DT
5204
+ processing:level:
5205
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "HIGHRESMIP", "IFS-NEMO","Control Simulation"]
5206
+ eodag:sensor_type: ATMOSPHERIC
5207
+ license: CC-BY-4.0
5208
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Control Simulation - IFS-NEMO
5209
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2007-04-30T23:59:59Z"]]}}
5210
+
5211
+ DT_CLIMATE_G1_SCENARIOMIP_SSP3_7_0_ICON_R1:
5212
+ description: |
5213
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5214
+ sector-specific information over multiple decades at high resolution via a unified
5215
+ framework combining advanced Earth system models, impact assessments, and observations.
5216
+ This Collection gives access to 'Future Projection' data based on the 'ICON' model.
5217
+ instruments: []
5218
+ constellation: Digital Twin
5219
+ platform: DT
5220
+ processing:level:
5221
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "SCENARIOMIP", "ICON","Future Projection", "SSP3-7.0"]
5222
+ eodag:sensor_type: ATMOSPHERIC
5223
+ license: CC-BY-4.0
5224
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Future Projection - ICON
5225
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-09-01T00:00:00Z", "2039-12-31T23:59:59Z"]]}}
5226
+
5227
+ DT_CLIMATE_G1_SCENARIOMIP_SSP3_7_0_IFS_FESOM_R1:
5228
+ description: |
5229
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5230
+ sector-specific information over multiple decades at high resolution via a unified
5231
+ framework combining advanced Earth system models, impact assessments, and observations.
5232
+ This Collection gives access to 'Future Projection' data based on the 'IFS-FESOM' model.
5233
+ instruments: []
5234
+ constellation: Digital Twin
5235
+ platform: DT
5236
+ processing:level:
5237
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "SCENARIOMIP", "IFS-FESOM","Future Projection", "SSP3-7.0"]
5238
+ eodag:sensor_type: ATMOSPHERIC
5239
+ license: CC-BY-4.0
5240
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Future Projection - IFS-FESOM
5241
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-01-01T00:00:00Z", "2039-12-31T23:59:59Z"]]}}
5242
+
5243
+ DT_CLIMATE_G1_SCENARIOMIP_SSP3_7_0_IFS_NEMO_R1:
5244
+ description: |
5245
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5246
+ sector-specific information over multiple decades at high resolution via a unified
5247
+ framework combining advanced Earth system models, impact assessments, and observations.
5248
+ This Collection gives access to 'Future Projection' data based on the 'IFS-NEMO' model.
5249
+ instruments: []
5250
+ constellation: Digital Twin
5251
+ platform: DT
5252
+ processing:level:
5253
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "SCENARIOMIP", "IFS-NEMO","Future Projection", "SSP3-7.0"]
5254
+ eodag:sensor_type: ATMOSPHERIC
5255
+ license: CC-BY-4.0
5256
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Future Projection - IFS-NEMO
5257
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-01-01T00:00:00Z", "2039-12-31T23:59:59Z"]]}}
5258
+
5259
+ DT_CLIMATE_G1_STORY_NUDGING_CONT_IFS_FESOM_R1:
5260
+ description: |
5261
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5262
+ sector-specific information over multiple decades at high resolution via a unified
5263
+ framework combining advanced Earth system models, impact assessments, and observations.
5264
+ This Collection gives access to 'Storyline Simulation Present Climate' data based on the 'IFS-FESOM' model.
5265
+ instruments: []
5266
+ constellation: Digital Twin
5267
+ platform: DT
5268
+ processing:level:
5269
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "story nudging", "IFS-FESOM","Control Simulation", "Storyline Simulation Present Climate"]
5270
+ eodag:sensor_type: ATMOSPHERIC
5271
+ license: CC-BY-4.0
5272
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Storyline Simulation Present Climate - IFS-FESOM
5273
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-01-01T00:00:00Z", "2024-11-15T23:59:59Z"]]}}
5274
+
5275
+ DT_CLIMATE_G1_STORY_NUDGING_HIST_IFS_FESOM_R1:
5276
+ description: |
5277
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5278
+ sector-specific information over multiple decades at high resolution via a unified
5279
+ framework combining advanced Earth system models, impact assessments, and observations.
5280
+ This Collection gives access to 'Storyline Simulation Past Climate' data based on the 'IFS-FESOM' model.
5281
+ instruments: []
5282
+ constellation: Digital Twin
5283
+ platform: DT
5284
+ processing:level:
5285
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "story nudging", "IFS-FESOM","Historical Simulation", "Storyline Simulation Present Climate"]
5286
+ eodag:sensor_type: ATMOSPHERIC
5287
+ license: CC-BY-4.0
5288
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Storyline Simulation Past Climate - IFS-FESOM
5289
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-01-01T00:00:00Z", "2024-11-15T23:59:59Z"]]}}
5290
+
5291
+ DT_CLIMATE_G1_STORY_NUDGING_TPLUS2_0K_IFS_FESOM_R1:
5292
+ description: |
5293
+ The Climate Change Adaptation Digital Twin provides global climate projections and
5294
+ sector-specific information over multiple decades at high resolution via a unified
5295
+ framework combining advanced Earth system models, impact assessments, and observations.
5296
+ This Collection gives access to 'Storyline Simulation Future Climate' data based on the 'IFS-FESOM' model.
5297
+ instruments: []
5298
+ constellation: Digital Twin
5299
+ platform: DT
5300
+ processing:level:
5301
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "story nudging", "IFS-FESOM","Tplus2.0K", "Storyline Simulation Present Climate"]
5302
+ eodag:sensor_type: ATMOSPHERIC
5303
+ license: CC-BY-4.0
5304
+ title: Climate Change Adaptation Digital Twin (Climate Adaptation DT) - Storyline Simulation Future Climate - IFS-FESOM
5305
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-01-01T00:00:00Z", "2024-11-15T23:59:59Z"]]}}
5306
+
5307
+ DT_CLIMATE_G1_CMIP6_HIST_IFS_FESOM_R1:
5308
+ description: |
5309
+ The nextGEMS data is aligned with the Climate Change Adaptation Digital Twin. The Climate
5310
+ Change Adaptation Digital Twin provides global climate projections and sector-specific
5311
+ information over multiple decades at high resolution via a unified framework combining
5312
+ advanced Earth system models, impact assessments, and observations. This nextGEMS Collection
5313
+ gives access to 'Historical Simulation' data based on the 'IFS-FESOM' model.
5314
+ instruments: []
5315
+ constellation: Digital Twin
5316
+ platform: DT
5317
+ processing:level:
5318
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "CMIP6", "IFS-FESOM","Historical Simulation", "nextGEMS"]
5319
+ eodag:sensor_type: ATMOSPHERIC
5320
+ license: CC-BY-4.0
5321
+ title: nextGEMS - Historical Simulation - IFS-FESOM
5322
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1990-01-01T00:00:00Z", "2019-12-31T23:59:59Z"]]}}
5323
+
5324
+ DT_CLIMATE_G1_SCENARIOMIP_SSP3_7_0_IFS_FESOM_R2:
5325
+ description: |
5326
+ The nextGEMS data is aligned with the Climate Change Adaptation Digital Twin. The
5327
+ Climate Change Adaptation Digital Twin provides global climate projections and
5328
+ sector-specific information over multiple decades at high resolution via a unified
5329
+ framework combining advanced Earth system models, impact assessments, and observations.
5330
+ This nextGEMS Collection gives access to 'Future Projection' data based on the 'IFS-FESOM' model.
5331
+ instruments: []
5332
+ constellation: Digital Twin
5333
+ platform: DT
5334
+ processing:level:
5335
+ keywords: ["DT", "DE", "LUMI", "Destination-Earth", "Digital-Twin", "Climate Change", "SCENARIOMIP", "IFS-FESOM","Future Projection", "nextGEMS", "SSP3-7.0"]
5336
+ eodag:sensor_type: ATMOSPHERIC
5337
+ license: CC-BY-4.0
5338
+ title: nextGEMS - Future Projection - IFS-FESOM
5339
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2021-01-01T00:00:00Z", "2049-12-31T23:59:59Z"]]}}
5078
5340
 
5079
5341
  # MARK: METOP --------------------------------------------------------------------------
5080
5342
  METOP_AMSU_L1:
@@ -5093,7 +5355,7 @@ METOP_AMSU_L1:
5093
5355
  eodag:sensor_type: SOUNDER
5094
5356
  license: other
5095
5357
  title: AMSU-A Level 1B - Metop - Global
5096
- extent: {"temporal": {"interval": [["2008-03-01T00:00:00Z", null]]}}
5358
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2008-03-01T00:00:00Z", null]]}}
5097
5359
  METOP_OSI_104:
5098
5360
  description: |
5099
5361
  Equivalent neutral 10m winds over the global oceans, with specific sampling to
@@ -5111,7 +5373,7 @@ METOP_OSI_104:
5111
5373
  eodag:sensor_type: SCATTEROMETER
5112
5374
  license: other
5113
5375
  title: ASCAT Coastal Winds at 12.5 km Swath Grid - Metop
5114
- extent: {"temporal": {"interval": [["2013-04-16T00:00:00Z", null]]}}
5376
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-04-16T00:00:00Z", null]]}}
5115
5377
  METOP_OSI_150A:
5116
5378
  description: |
5117
5379
  The ASCAT Wind Product contains stress equivalent 10m winds (speed and direction)
@@ -5126,7 +5388,7 @@ METOP_OSI_150A:
5126
5388
  eodag:sensor_type: SCATTEROMETER
5127
5389
  license: other
5128
5390
  title: ASCAT L2 25 km Winds Data Record Release 1 - Metop
5129
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5391
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5130
5392
  METOP_OSI_150B:
5131
5393
  description: |
5132
5394
  The ASCAT Wind Product contains stress equivalent 10m winds (speed and direction)
@@ -5141,7 +5403,7 @@ METOP_OSI_150B:
5141
5403
  eodag:sensor_type: SCATTEROMETER
5142
5404
  license: other
5143
5405
  title: ASCAT L2 12.5 km Winds Data Record Release 1 - Metop
5144
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5406
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5145
5407
  METOP_ASCSZF1B:
5146
5408
  description: |
5147
5409
  The prime objective of the Advanced SCATterometer (ASCAT) is to measure wind speed
@@ -5165,7 +5427,7 @@ METOP_ASCSZF1B:
5165
5427
  eodag:sensor_type: SCATTEROMETER
5166
5428
  license: other
5167
5429
  title: ASCAT Level 1 Sigma0 Full Resolution - Metop - Global
5168
- extent: {"temporal": {"interval": [["2007-05-31T00:00:00Z", null]]}}
5430
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-05-31T00:00:00Z", null]]}}
5169
5431
  METOP_ASCSZR1B:
5170
5432
  description: |
5171
5433
  The prime objective of the Advanced SCATterometer (ASCAT) is to measure wind speed
@@ -5187,7 +5449,7 @@ METOP_ASCSZR1B:
5187
5449
  eodag:sensor_type: SCATTEROMETER
5188
5450
  license: other
5189
5451
  title: ASCAT Level 1 Sigma0 resampled at 12.5 km Swath Grid - Metop - Global
5190
- extent: {"temporal": {"interval": [["2007-03-01T00:00:00Z", null]]}}
5452
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-03-01T00:00:00Z", null]]}}
5191
5453
  METOP_ASCSZO1B:
5192
5454
  description: |
5193
5455
  The prime objective of the Advanced SCATterometer (ASCAT) is to measure wind speed
@@ -5209,7 +5471,7 @@ METOP_ASCSZO1B:
5209
5471
  eodag:sensor_type: SCATTEROMETER
5210
5472
  license: other
5211
5473
  title: ASCAT Level 1 Sigma0 resampled at 25 km Swath Grid - Metop - Global
5212
- extent: {"temporal": {"interval": [["2007-03-01T00:00:00Z", null]]}}
5474
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-03-01T00:00:00Z", null]]}}
5213
5475
  METOP_ASCSZFR02:
5214
5476
  description: |
5215
5477
  Reprocessed L1B data from the Advanced Scatterometer (ASCAT) on METOP-A, resampled
@@ -5231,7 +5493,7 @@ METOP_ASCSZFR02:
5231
5493
  eodag:sensor_type: SCATTEROMETER
5232
5494
  license: other
5233
5495
  title: ASCAT Level 1 SZF Climate Data Record Release 2 - Metop
5234
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5496
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5235
5497
  METOP_ASCSZOR02:
5236
5498
  description: |
5237
5499
  Reprocessed L1B data from the Advanced Scatterometer (ASCAT) on METOP-A, resampled
@@ -5253,7 +5515,7 @@ METOP_ASCSZOR02:
5253
5515
  eodag:sensor_type: SCATTEROMETER
5254
5516
  license: other
5255
5517
  title: ASCAT Level 1 SZO Climate Data Record Release 2 - Metop
5256
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5518
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5257
5519
  METOP_ASCSZRR02:
5258
5520
  description: |
5259
5521
  Reprocessed L1B data from the Advanced Scatterometer (ASCAT) on METOP-A, resampled
@@ -5275,7 +5537,7 @@ METOP_ASCSZRR02:
5275
5537
  eodag:sensor_type: SCATTEROMETER
5276
5538
  license: other
5277
5539
  title: ASCAT Level 1 SZR Climate Data Record Release 2 - Metop
5278
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5540
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", "2014-04-01T00:00:00Z"]]}}
5279
5541
  METOP_SOMO12:
5280
5542
  description: |
5281
5543
  The Soil Moisture (SM) product is derived from the Advanced SCATterometer (ASCAT)
@@ -5298,7 +5560,7 @@ METOP_SOMO12:
5298
5560
  eodag:sensor_type: SCATTEROMETER
5299
5561
  license: other
5300
5562
  title: ASCAT Soil Moisture at 12.5 km Swath Grid in NRT - Metop
5301
- extent: {"temporal": {"interval": [["2007-06-01T00:00:00Z", null]]}}
5563
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-06-01T00:00:00Z", null]]}}
5302
5564
  METOP_SOMO25:
5303
5565
  description: |
5304
5566
  The Soil Moisture (SM) product is derived from the Advanced SCATterometer (ASCAT)
@@ -5321,7 +5583,7 @@ METOP_SOMO25:
5321
5583
  eodag:sensor_type: SCATTEROMETER
5322
5584
  license: other
5323
5585
  title: ASCAT Soil Moisture at 25 km Swath Grid in NRT - Metop
5324
- extent: {"temporal": {"interval": [["2007-06-01T00:00:00Z", null]]}}
5586
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-06-01T00:00:00Z", null]]}}
5325
5587
  METOP_AVHRRGACR02:
5326
5588
  description: |
5327
5589
  This is the second release of the reprocessed polar Atmospheric Motion Vectors (AMV)
@@ -5344,7 +5606,7 @@ METOP_AVHRRGACR02:
5344
5606
  eodag:sensor_type: RADIOMETER
5345
5607
  license: other
5346
5608
  title: AVHRR GAC Atmospheric Motion Vectors Climate Data Record Release 2 - Multimission - Polar
5347
- extent: {"temporal": {"interval": [["1979-01-01T00:00:00Z", "2019-09-01T00:00:00Z"]]}}
5609
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1979-01-01T00:00:00Z", "2019-09-01T00:00:00Z"]]}}
5348
5610
  METOP_AVHRRL1:
5349
5611
  description: |
5350
5612
  The Advanced Very High Resolution Radiometer (AVHRR) operates at 5 different channels simultaneously in the visible
@@ -5361,7 +5623,7 @@ METOP_AVHRRL1:
5361
5623
  eodag:sensor_type: RADIOMETER
5362
5624
  license: other
5363
5625
  title: AVHRR Level 1B - Metop - Global
5364
- extent: {"temporal": {"interval": [["2008-03-01T00:00:00Z", null]]}}
5626
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2008-03-01T00:00:00Z", null]]}}
5365
5627
  METOP_LSA_002:
5366
5628
  description: |
5367
5629
  The EDLST (EPS Daily Land Surface Temperature) provides a composite of day-time and nigh-time retrievals of LST
@@ -5375,7 +5637,7 @@ METOP_LSA_002:
5375
5637
  eodag:sensor_type: RADIOMETER
5376
5638
  license: other
5377
5639
  title: Daily Land Surface Temperature - Metop
5378
- extent: {"temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
5640
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2015-01-01T00:00:00Z", null]]}}
5379
5641
  METOP_GLB_SST_NC:
5380
5642
  description: |
5381
5643
  Global Metop/AVHRR sub-skin Sea Surface Temperature (GBL SST) is a 12 hourly synthesis on a 0.05° global grid. The
@@ -5389,7 +5651,7 @@ METOP_GLB_SST_NC:
5389
5651
  eodag:sensor_type: RADIOMETER
5390
5652
  license: other
5391
5653
  title: Global L3C AVHRR Sea Surface Temperature (GHRSST) - Metop
5392
- extent: {"temporal": {"interval": [["2016-07-12T00:00:00Z", null]]}}
5654
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-07-12T00:00:00Z", null]]}}
5393
5655
  METOP_GOMEL1:
5394
5656
  description: |
5395
5657
  The Global Ozone Monitoring Experiment-2 (GOME-2) spectrometer measures profiles and total columns of ozone and of
@@ -5403,7 +5665,7 @@ METOP_GOMEL1:
5403
5665
  eodag:sensor_type: SPECTROMETER
5404
5666
  license: other
5405
5667
  title: GOME-2 Level 1B - Metop - Global
5406
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", null]]}}
5668
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", null]]}}
5407
5669
  METOP_GOMEL1R03:
5408
5670
  description: |
5409
5671
  This is release 3 of the Global Ozone Monitoring Experiment 2 (GOME-2) Level 1B Fundamental Data Record from Metop-A
@@ -5420,7 +5682,7 @@ METOP_GOMEL1R03:
5420
5682
  eodag:sensor_type: SPECTROMETER
5421
5683
  license: other
5422
5684
  title: GOME-2 Level 1B Fundamental Data Record Release 3 - Metop-A and -B
5423
- extent: {"temporal": {"interval": [["2007-04-01T00:00:00Z", "2020-08-01T00:00:00Z"]]}}
5685
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-04-01T00:00:00Z", "2020-08-01T00:00:00Z"]]}}
5424
5686
  METOP_IASTHR011:
5425
5687
  description: |
5426
5688
  This is the release 1.1 of the climate data record of "all-sky" temperature and humidity profiles and their
@@ -5437,7 +5699,7 @@ METOP_IASTHR011:
5437
5699
  eodag:sensor_type: INTERFEROMETER
5438
5700
  license: other
5439
5701
  title: IASI All Sky Temperature and Humidity Profiles - Climate Data Record Release 1.1 - Metop-A and -B
5440
- extent: {"temporal": {"interval": [["2007-07-10T00:00:00Z", "2023-01-01T00:00:00Z"]]}}
5702
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-07-10T00:00:00Z", "2023-01-01T00:00:00Z"]]}}
5441
5703
  METOP_IASSND02:
5442
5704
  description: |
5443
5705
  The main objective of the Infrared Atmospheric Sounding Interferometer (IASI) is to provide high resolution
@@ -5456,7 +5718,7 @@ METOP_IASSND02:
5456
5718
  eodag:sensor_type: INTERFEROMETER
5457
5719
  license: other
5458
5720
  title: IASI Combined Sounding Products - Metop
5459
- extent: {"temporal": {"interval": [["2008-02-13T00:00:00Z", null]]}}
5721
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2008-02-13T00:00:00Z", null]]}}
5460
5722
  METOP_IASIL1C_ALL:
5461
5723
  description: |
5462
5724
  This product covers all spectral samples. The main objective of the Infrared Atmospheric Sounding Interferometer
@@ -5473,7 +5735,7 @@ METOP_IASIL1C_ALL:
5473
5735
  eodag:sensor_type: INTERFEROMETER
5474
5736
  license: other
5475
5737
  title: IASI Level 1C - All Spectral Samples - Metop - Global
5476
- extent: {"temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5738
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5477
5739
  METOP_MHSL1:
5478
5740
  description: |
5479
5741
  The Microwave Humidity Sounder (MHS) is a 5 channel instrument used to provide input to the retrieval of surface
@@ -5487,7 +5749,7 @@ METOP_MHSL1:
5487
5749
  eodag:sensor_type: SOUNDER
5488
5750
  license: other
5489
5751
  title: MHS Level 1B - Metop - Global
5490
- extent: {"temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5752
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5491
5753
  METOP_HIRSL1:
5492
5754
  description: |
5493
5755
  The High Resolution Infrared Sounder (HIRS) operates at 20 channels (19 channels in the infrared and one in the
@@ -5501,7 +5763,7 @@ METOP_HIRSL1:
5501
5763
  eodag:sensor_type: SOUNDER
5502
5764
  license: other
5503
5765
  title: HIRS Level 1B - Metop - Global
5504
- extent: {"temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5766
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2009-03-23T00:00:00Z", null]]}}
5505
5767
 
5506
5768
  # MARK: MSG --------------------------------------------------------------------------
5507
5769
  MSG_MFG_GSA_0:
@@ -5522,7 +5784,7 @@ MSG_MFG_GSA_0:
5522
5784
  eodag:sensor_type: OPTICAL
5523
5785
  license: other
5524
5786
  title: GSA Level 2 Climate Data Record Release 2 - MFG and MSG - 0 degree
5525
- extent: {"temporal": {"interval": [["1982-02-10T00:00:00Z", "2017-12-31T23:59:59Z"]]}}
5787
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-02-10T00:00:00Z", "2017-12-31T23:59:59Z"]]}}
5526
5788
 
5527
5789
  MSG_OCA_CDR:
5528
5790
  description: |
@@ -5546,7 +5808,7 @@ MSG_OCA_CDR:
5546
5808
  eodag:sensor_type: MSG
5547
5809
  license: other
5548
5810
  title: Optimal Cloud Analysis Climate Data Record Release 1 - MSG - 0 degree
5549
- extent: {"temporal": {"interval": [["2004-01-19T00:00:00Z", "2019-08-31T23:59:59Z"]]}}
5811
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2004-01-19T00:00:00Z", "2019-08-31T23:59:59Z"]]}}
5550
5812
 
5551
5813
  MSG_CLM:
5552
5814
  description: |
@@ -5562,7 +5824,7 @@ MSG_CLM:
5562
5824
  eodag:sensor_type: OPTICAL
5563
5825
  license: other
5564
5826
  title: Cloud Mask - MSG - 0 degree
5565
- extent: {"temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
5827
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
5566
5828
 
5567
5829
  MSG_CLM_IODC:
5568
5830
  description: |
@@ -5579,7 +5841,7 @@ MSG_CLM_IODC:
5579
5841
  eodag:sensor_type: OPTICAL
5580
5842
  license: other
5581
5843
  title: Cloud Mask - MSG - Indian Ocean
5582
- extent: {"temporal": {"interval": [["2017-02-01T00:00:00Z", null]]}}
5844
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-02-01T00:00:00Z", null]]}}
5583
5845
 
5584
5846
  MSG_GSAL2R02:
5585
5847
  description: |
@@ -5596,7 +5858,7 @@ MSG_GSAL2R02:
5596
5858
  eodag:sensor_type: OPTICAL
5597
5859
  license: other
5598
5860
  title: GSA Level 2 Climate Data Record Release 2 - MFG and MSG - 0 degree
5599
- extent: {"temporal": {"interval": [["1982-02-10T00:00:00Z", null]]}}
5861
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1982-02-10T00:00:00Z", null]]}}
5600
5862
 
5601
5863
  MSG_HRSEVIRI:
5602
5864
  description: |
@@ -5617,7 +5879,7 @@ MSG_HRSEVIRI:
5617
5879
  eodag:sensor_type: OPTICAL
5618
5880
  license: other
5619
5881
  title: High Rate SEVIRI Level 1.5 Image Data - MSG - 0 degree
5620
- extent: {"temporal": {"interval": [["2004-01-19T00:00:00Z", null]]}}
5882
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2004-01-19T00:00:00Z", null]]}}
5621
5883
 
5622
5884
  MSG_HRSEVIRI_IODC:
5623
5885
  description: |
@@ -5639,7 +5901,7 @@ MSG_HRSEVIRI_IODC:
5639
5901
  eodag:sensor_type: OPTICAL
5640
5902
  license: other
5641
5903
  title: High Rate SEVIRI Level 1.5 Image Data - MSG - Indian Ocean
5642
- extent: {"temporal": {"interval": [["2017-02-01T00:00:00Z", null]]}}
5904
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2017-02-01T00:00:00Z", null]]}}
5643
5905
 
5644
5906
  MSG_RSS_CLM:
5645
5907
  description: |
@@ -5655,7 +5917,7 @@ MSG_RSS_CLM:
5655
5917
  eodag:sensor_type: OPTICAL
5656
5918
  license: other
5657
5919
  title: Rapid Scan Cloud Mask - MSG
5658
- extent: {"temporal": {"interval": [["2013-02-28T00:00:00Z", null]]}}
5920
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2013-02-28T00:00:00Z", null]]}}
5659
5921
 
5660
5922
  MSG_MSG15_RSS:
5661
5923
  description: |
@@ -5674,7 +5936,7 @@ MSG_MSG15_RSS:
5674
5936
  eodag:sensor_type: OPTICAL
5675
5937
  license: other
5676
5938
  title: Rapid Scan High Rate SEVIRI Level 1.5 Image Data - MSG
5677
- extent: {"temporal": {"interval": [["2008-05-13T00:00:00Z", null]]}}
5939
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2008-05-13T00:00:00Z", null]]}}
5678
5940
 
5679
5941
  MSG_LSA_FRM:
5680
5942
  description: |
@@ -5694,7 +5956,7 @@ MSG_LSA_FRM:
5694
5956
  # displayed on the download page (2023-09-21 - 2024-10-20).
5695
5957
  #
5696
5958
  # Using the available time range start date here.
5697
- extent: {"temporal": {"interval": [["2023-09-21T00:00:00Z", null]]}}
5959
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-09-21T00:00:00Z", null]]}}
5698
5960
 
5699
5961
  MSG_LSA_LST_CDR:
5700
5962
  description: |
@@ -5709,7 +5971,7 @@ MSG_LSA_LST_CDR:
5709
5971
  eodag:sensor_type: OPTICAL
5710
5972
  license: other
5711
5973
  title: Land Surface Temperature Climate Data Record - MSG
5712
- extent: {"temporal": {"interval": [["2004-01-21T00:00:00Z", "2015-12-31T00:00:00Z"]]}}
5974
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2004-01-21T00:00:00Z", "2015-12-31T00:00:00Z"]]}}
5713
5975
 
5714
5976
  MSG_LSA_LSTDE:
5715
5977
  description: |
@@ -5729,7 +5991,7 @@ MSG_LSA_LSTDE:
5729
5991
  eodag:sensor_type: OPTICAL
5730
5992
  license: other
5731
5993
  title: Land Surface Temperature with Directional Effects - MSG
5732
- extent: {"temporal": {"interval": [["2005-01-16T00:00:00Z", null]]}}
5994
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2005-01-16T00:00:00Z", null]]}}
5733
5995
 
5734
5996
  MSG_AMVR02:
5735
5997
  description: |
@@ -5749,7 +6011,7 @@ MSG_AMVR02:
5749
6011
  eodag:sensor_type: OPTICAL
5750
6012
  license: other
5751
6013
  title: Atmospheric Motion Vectors Climate Data Record Release 2 - MFG and MSG - 0 degree
5752
- extent: {"temporal": {"interval": [["1981-09-03", null]]}}
6014
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-09-03T00:00:00Z", null]]}}
5753
6015
 
5754
6016
  MSG_CTH:
5755
6017
  description: |
@@ -5763,7 +6025,7 @@ MSG_CTH:
5763
6025
  eodag:sensor_type: OPTICAL
5764
6026
  license: other
5765
6027
  title: Cloud Top Height - MSG - 0 degree
5766
- extent: {"temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
6028
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
5767
6029
 
5768
6030
  MSG_CTH_IODC:
5769
6031
  description: |
@@ -5778,7 +6040,7 @@ MSG_CTH_IODC:
5778
6040
  eodag:sensor_type: OPTICAL
5779
6041
  license: other
5780
6042
  title: Cloud Top Height - MSG - Indian Ocean
5781
- extent: {"temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
6043
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-09-01T00:00:00Z", null]]}}
5782
6044
 
5783
6045
 
5784
6046
  # Copernicus Marine
@@ -5800,7 +6062,7 @@ MO_GLOBAL_ANALYSISFORECAST_PHY_001_024:
5800
6062
  eodag:sensor_type:
5801
6063
  license: other
5802
6064
  title: Global Ocean Physics Analysis and Forecast
5803
- extent: {"temporal": {"interval": [["2019-01-01T00:00:00Z", null]]}}
6065
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2019-01-01T00:00:00Z", null]]}}
5804
6066
 
5805
6067
  MO_GLOBAL_ANALYSISFORECAST_BGC_001_028:
5806
6068
  description: |
@@ -5824,7 +6086,7 @@ MO_GLOBAL_ANALYSISFORECAST_BGC_001_028:
5824
6086
  eodag:sensor_type:
5825
6087
  license: other
5826
6088
  title: Global Ocean Biogeochemistry Analysis and Forecast
5827
- extent: {"temporal": {"interval": [["2021-10-01T00:00:00Z", null]]}}
6089
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2021-10-01T00:00:00Z", null]]}}
5828
6090
 
5829
6091
  MO_GLOBAL_ANALYSISFORECAST_WAV_001_027:
5830
6092
  description: |
@@ -5851,7 +6113,7 @@ MO_GLOBAL_ANALYSISFORECAST_WAV_001_027:
5851
6113
  eodag:sensor_type:
5852
6114
  license: other
5853
6115
  title: Global Ocean Waves Analysis and Forecast
5854
- extent: {"temporal": {"interval": [["2021-01-01T00:00:00Z", null]]}}
6116
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2021-01-01T00:00:00Z", null]]}}
5855
6117
 
5856
6118
  MO_GLOBAL_MULTIYEAR_BGC_001_033:
5857
6119
  description: |
@@ -5874,7 +6136,7 @@ MO_GLOBAL_MULTIYEAR_BGC_001_033:
5874
6136
  eodag:sensor_type:
5875
6137
  license: other
5876
6138
  title: Global ocean low and mid trophic levels biomass content hindcast
5877
- extent: {"temporal": {"interval": [["1998-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
6139
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1998-01-01T00:00:00Z", "2022-12-31T23:59:59Z"]]}}
5878
6140
 
5879
6141
  MO_GLOBAL_MULTIYEAR_WAV_001_032:
5880
6142
  description: |
@@ -5895,7 +6157,7 @@ MO_GLOBAL_MULTIYEAR_WAV_001_032:
5895
6157
  eodag:sensor_type:
5896
6158
  license: other
5897
6159
  title: Global Ocean Waves Reanalysis
5898
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", "2024-01-31T21:00:00Z"]]}}
6160
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", "2024-01-31T21:00:00Z"]]}}
5899
6161
 
5900
6162
  MO_GLOBAL_MULTIYEAR_PHY_ENS_001_031:
5901
6163
  description: |
@@ -5919,7 +6181,7 @@ MO_GLOBAL_MULTIYEAR_PHY_ENS_001_031:
5919
6181
  eodag:sensor_type:
5920
6182
  license: other
5921
6183
  title: Global Ocean Ensemble Physics Reanalysis
5922
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", "2022-12-31T00:00:00Z"]]}}
6184
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", "2022-12-31T00:00:00Z"]]}}
5923
6185
 
5924
6186
  MO_INSITU_GLO_PHY_UV_DISCRETE_NRT_013_048:
5925
6187
  description: |
@@ -5939,7 +6201,7 @@ MO_INSITU_GLO_PHY_UV_DISCRETE_NRT_013_048:
5939
6201
  eodag:sensor_type:
5940
6202
  license: other
5941
6203
  title: Global Ocean- in-situ Near real time observations of ocean currents
5942
- extent: {"temporal": {"interval": [["1997-01-01T00:00:00Z", null]]}}
6204
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1997-01-01T00:00:00Z", null]]}}
5943
6205
 
5944
6206
  MO_INSITU_GLO_PHY_TS_OA_NRT_013_002:
5945
6207
  description: |
@@ -5956,7 +6218,7 @@ MO_INSITU_GLO_PHY_TS_OA_NRT_013_002:
5956
6218
  eodag:sensor_type:
5957
6219
  license: other
5958
6220
  title: Global Ocean- Real time in-situ observations objective analysis
5959
- extent: {"temporal": {"interval": [["2023-01-15T00:00:00Z", "2024-12-01T00:00:00Z"]]}}
6221
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-01-15T00:00:00Z", "2024-12-01T00:00:00Z"]]}}
5960
6222
 
5961
6223
  MO_INSITU_GLO_PHY_TS_OA_MY_013_052:
5962
6224
  description: |
@@ -5972,7 +6234,7 @@ MO_INSITU_GLO_PHY_TS_OA_MY_013_052:
5972
6234
  eodag:sensor_type:
5973
6235
  license: other
5974
6236
  title: Global Ocean- Delayed Mode gridded CORA- In-situ Observations objective analysis in Delayed Mode
5975
- extent: {"temporal": {"interval": [["1960-01-01T00:00:00Z", "2023-12-01T00:00:00Z"]]}}
6237
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1960-01-01T00:00:00Z", "2023-12-01T00:00:00Z"]]}}
5976
6238
 
5977
6239
  MO_MULTIOBS_GLO_BIO_BGC_3D_REP_015_010:
5978
6240
  description: |
@@ -5991,7 +6253,7 @@ MO_MULTIOBS_GLO_BIO_BGC_3D_REP_015_010:
5991
6253
  eodag:sensor_type:
5992
6254
  license: other
5993
6255
  title: Global Ocean 3D Chlorophyll-a concentration, Particulate Backscattering coefficient and Particulate Organic Carbon
5994
- extent: {"temporal": {"interval": [["1998-01-07T00:00:00Z", "2021-12-29T00:00:00Z"]]}}
6256
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1998-01-07T00:00:00Z", "2021-12-29T00:00:00Z"]]}}
5995
6257
 
5996
6258
  MO_MULTIOBS_GLO_BIO_CARBON_SURFACE_MYNRT_015_008:
5997
6259
  description: |
@@ -6015,7 +6277,7 @@ MO_MULTIOBS_GLO_BIO_CARBON_SURFACE_MYNRT_015_008:
6015
6277
  eodag:sensor_type:
6016
6278
  license: other
6017
6279
  title: Global Ocean Surface Carbon
6018
- extent: {"temporal": {"interval": [["1985-01-01T00:00:00Z", "2023-12-01T00:00:00Z"]]}}
6280
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1985-01-01T00:00:00Z", "2023-12-01T00:00:00Z"]]}}
6019
6281
 
6020
6282
  MO_MULTIOBS_GLO_BGC_NUTRIENTS_CARBON_PROFILES_MYNRT_015_009:
6021
6283
  description: |
@@ -6041,7 +6303,7 @@ MO_MULTIOBS_GLO_BGC_NUTRIENTS_CARBON_PROFILES_MYNRT_015_009:
6041
6303
  eodag:sensor_type:
6042
6304
  license: other
6043
6305
  title: Nutrient and carbon profiles vertical distribution
6044
- extent: {"temporal": {"interval": [["2002-09-01T00:00:00Z", "2022-08-31T00:00:00Z"]]}}
6306
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2002-09-01T00:00:00Z", "2022-08-31T00:00:00Z"]]}}
6045
6307
 
6046
6308
  MO_MULTIOBS_GLO_PHY_MYNRT_015_003:
6047
6309
  description: |
@@ -6064,7 +6326,7 @@ MO_MULTIOBS_GLO_PHY_MYNRT_015_003:
6064
6326
  eodag:sensor_type:
6065
6327
  license: other
6066
6328
  title: Global Total (COPERNICUS-GLOBCURRENT), Ekman and Geostrophic currents at the Surface and 15m
6067
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6329
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6068
6330
 
6069
6331
  MO_MULTIOBS_GLO_PHY_S_SURFACE_MYNRT_015_013:
6070
6332
  description: |
@@ -6094,7 +6356,7 @@ MO_MULTIOBS_GLO_PHY_S_SURFACE_MYNRT_015_013:
6094
6356
  eodag:sensor_type:
6095
6357
  license: other
6096
6358
  title: Multi Observation Global Ocean Sea Surface Salinity and Sea Surface Density
6097
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6359
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6098
6360
 
6099
6361
  MO_MULTIOBS_GLO_PHY_TSUV_3D_MYNRT_015_012:
6100
6362
  description: |
@@ -6117,7 +6379,7 @@ MO_MULTIOBS_GLO_PHY_TSUV_3D_MYNRT_015_012:
6117
6379
  eodag:sensor_type:
6118
6380
  license: other
6119
6381
  title: Multi Observation Global Ocean 3D Temperature Salinity Height Geostrophic Current and MLD
6120
- extent: {"temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6382
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-01T00:00:00Z", null]]}}
6121
6383
 
6122
6384
  MO_MULTIOBS_GLO_PHY_W_3D_REP_015_007:
6123
6385
  description: |
@@ -6142,7 +6404,7 @@ MO_MULTIOBS_GLO_PHY_W_3D_REP_015_007:
6142
6404
  eodag:sensor_type:
6143
6405
  license: other
6144
6406
  title: Global Observed Ocean Physics 3D Quasi-Geostrophic Currents (OMEGA3D)
6145
- extent: {"temporal": {"interval": [["1993-01-06T00:00:00Z", "2018-12-26T00:00:00Z"]]}}
6407
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-06T00:00:00Z", "2018-12-26T00:00:00Z"]]}}
6146
6408
 
6147
6409
  MO_SEAICE_GLO_SEAICE_L4_NRT_OBSERVATIONS_011_001:
6148
6410
  description: |
@@ -6160,7 +6422,7 @@ MO_SEAICE_GLO_SEAICE_L4_NRT_OBSERVATIONS_011_001:
6160
6422
  eodag:sensor_type:
6161
6423
  license: other
6162
6424
  title: Global Ocean - Arctic and Antarctic - Sea Ice Concentration, Edge, Type and Drift (OSI-SAF)
6163
- extent: {"temporal": {"interval": [["2019-05-04T00:00:00Z", null]]}}
6425
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2019-05-04T00:00:00Z", null]]}}
6164
6426
 
6165
6427
  MO_SEAICE_GLO_SEAICE_L4_NRT_OBSERVATIONS_011_006:
6166
6428
  description: |
@@ -6175,7 +6437,7 @@ MO_SEAICE_GLO_SEAICE_L4_NRT_OBSERVATIONS_011_006:
6175
6437
  eodag:sensor_type:
6176
6438
  license: other
6177
6439
  title: Global Ocean - High Resolution SAR Sea Ice Drift
6178
- extent: {"temporal": {"interval": [["2019-05-04T00:00:00Z", null]]}}
6440
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2019-05-04T00:00:00Z", null]]}}
6179
6441
 
6180
6442
  MO_SEAICE_GLO_SEAICE_L4_REP_OBSERVATIONS_011_009:
6181
6443
  description: |
@@ -6194,7 +6456,7 @@ MO_SEAICE_GLO_SEAICE_L4_REP_OBSERVATIONS_011_009:
6194
6456
  eodag:sensor_type:
6195
6457
  license: other
6196
6458
  title: Global Ocean Sea Ice Concentration Time Series REPROCESSED (OSI-SAF)
6197
- extent: {"temporal": {"interval": [["1978-10-25T00:00:00Z", null]]}}
6459
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1978-10-25T00:00:00Z", null]]}}
6198
6460
 
6199
6461
  MO_SEALEVEL_GLO_PHY_L4_NRT_008_046:
6200
6462
  description: |
@@ -6212,7 +6474,7 @@ MO_SEALEVEL_GLO_PHY_L4_NRT_008_046:
6212
6474
  eodag:sensor_type:
6213
6475
  license: other
6214
6476
  title: GLOBAL OCEAN GRIDDED L4 SEA SURFACE HEIGHTS AND DERIVED VARIABLES NRT
6215
- extent: {"temporal": {"interval": [["2022-01-01T00:00:00Z", null]]}}
6477
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2022-01-01T00:00:00Z", null]]}}
6216
6478
 
6217
6479
  MO_SEALEVEL_GLO_PHY_MDT_008_063:
6218
6480
  description: |
@@ -6227,7 +6489,7 @@ MO_SEALEVEL_GLO_PHY_MDT_008_063:
6227
6489
  eodag:sensor_type:
6228
6490
  license: other
6229
6491
  title: GLOBAL OCEAN MEAN DYNAMIC TOPOGRAPHY
6230
- extent: {"temporal": {"interval": [["1993-01-06T00:00:00Z", null]]}}
6492
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1993-01-06T00:00:00Z", null]]}}
6231
6493
 
6232
6494
  MO_SST_GLO_SST_L3S_NRT_OBSERVATIONS_010_010:
6233
6495
  description: |
@@ -6246,7 +6508,7 @@ MO_SST_GLO_SST_L3S_NRT_OBSERVATIONS_010_010:
6246
6508
  eodag:sensor_type:
6247
6509
  license: other
6248
6510
  title: ODYSSEA Global Ocean - Sea Surface Temperature Multi-sensor L3 Observations
6249
- extent: {"temporal": {"interval": [["2020-12-31T00:00:00Z", null]]}}
6511
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-12-31T00:00:00Z", null]]}}
6250
6512
 
6251
6513
  MO_SST_GLO_SST_L4_NRT_OBSERVATIONS_010_001:
6252
6514
  description: |
@@ -6271,7 +6533,7 @@ MO_SST_GLO_SST_L4_NRT_OBSERVATIONS_010_001:
6271
6533
  eodag:sensor_type:
6272
6534
  license: other
6273
6535
  title: Global Ocean OSTIA Sea Surface Temperature and Sea Ice Analysis
6274
- extent: {"temporal": {"interval": [["2007-01-01T00:00:00Z", null]]}}
6536
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2007-01-01T00:00:00Z", null]]}}
6275
6537
 
6276
6538
  MO_SST_GLO_SST_L4_REP_OBSERVATIONS_010_011:
6277
6539
  description: |
@@ -6290,7 +6552,7 @@ MO_SST_GLO_SST_L4_REP_OBSERVATIONS_010_011:
6290
6552
  eodag:sensor_type:
6291
6553
  license: other
6292
6554
  title: Global Ocean OSTIA Sea Surface Temperature and Sea Ice Reprocessed
6293
- extent: {"temporal": {"interval": [["1981-10-01T00:00:00Z", "2022-05-31T00:00:00Z"]]}}
6555
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-10-01T00:00:00Z", "2022-05-31T00:00:00Z"]]}}
6294
6556
 
6295
6557
  MO_SST_GLO_SST_L4_REP_OBSERVATIONS_010_024:
6296
6558
  description: |
@@ -6317,7 +6579,7 @@ MO_SST_GLO_SST_L4_REP_OBSERVATIONS_010_024:
6317
6579
  eodag:sensor_type:
6318
6580
  license: other
6319
6581
  title: ESA SST CCI and C3S reprocessed sea surface temperature analyses
6320
- extent: {"temporal": {"interval": [["1981-09-01T00:00:00Z", "2022-10-31T00:00:00Z"]]}}
6582
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1981-09-01T00:00:00Z", "2022-10-31T00:00:00Z"]]}}
6321
6583
 
6322
6584
  MO_WAVE_GLO_PHY_SPC_FWK_L3_NRT_014_002:
6323
6585
  description: |
@@ -6342,7 +6604,7 @@ MO_WAVE_GLO_PHY_SPC_FWK_L3_NRT_014_002:
6342
6604
  eodag:sensor_type:
6343
6605
  license: other
6344
6606
  title: Global Ocean L 3 Spectral Parameters From Nrt Satellite Measurements
6345
- extent: {"temporal": {"interval": [["2018-04-22T00:00:00Z", null]]}}
6607
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2018-04-22T00:00:00Z", null]]}}
6346
6608
 
6347
6609
  MO_WAVE_GLO_PHY_SWH_L3_NRT_014_001:
6348
6610
  description: |
@@ -6368,7 +6630,7 @@ MO_WAVE_GLO_PHY_SWH_L3_NRT_014_001:
6368
6630
  eodag:sensor_type:
6369
6631
  license: other
6370
6632
  title: GLOBAL OCEAN L3 SIGNIFICANT WAVE HEIGHT FROM NRT SATELLITE MEASUREMENTS
6371
- extent: {"temporal": {"interval": [["2021-01-01T00:00:00Z", null]]}}
6633
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2021-01-01T00:00:00Z", null]]}}
6372
6634
 
6373
6635
  MO_WAVE_GLO_PHY_SWH_L4_NRT_014_003:
6374
6636
  description: |
@@ -6388,7 +6650,7 @@ MO_WAVE_GLO_PHY_SWH_L4_NRT_014_003:
6388
6650
  eodag:sensor_type:
6389
6651
  license: other
6390
6652
  title: GLOBAL OCEAN L4 SIGNIFICANT WAVE HEIGHT FROM NRT SATELLITE MEASUREMENTS
6391
- extent: {"temporal": {"interval": [["2020-01-01T00:00:00Z", null]]}}
6653
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-01-01T00:00:00Z", null]]}}
6392
6654
 
6393
6655
  MO_WIND_GLO_PHY_CLIMATE_L4_MY_012_003:
6394
6656
  description: |
@@ -6406,7 +6668,7 @@ MO_WIND_GLO_PHY_CLIMATE_L4_MY_012_003:
6406
6668
  eodag:sensor_type:
6407
6669
  license: other
6408
6670
  title: Global Ocean Monthly Mean Sea Surface Wind and Stress from Scatterometer and Model
6409
- extent: {"temporal": {"interval": [["1999-08-01T00:00:00Z", "2024-01-01T00:00:00Z"]]}}
6671
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1999-08-01T00:00:00Z", "2024-01-01T00:00:00Z"]]}}
6410
6672
 
6411
6673
  MO_WIND_GLO_PHY_L3_NRT_012_002:
6412
6674
  description: |
@@ -6427,7 +6689,7 @@ MO_WIND_GLO_PHY_L3_NRT_012_002:
6427
6689
  eodag:sensor_type:
6428
6690
  license: other
6429
6691
  title: Global Ocean Daily Gridded Sea Surface Winds from Scatterometer
6430
- extent: {"temporal": {"interval": [["2016-01-01T00:00:00Z", null]]}}
6692
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2016-01-01T00:00:00Z", null]]}}
6431
6693
 
6432
6694
  MO_WIND_GLO_PHY_L3_MY_012_005:
6433
6695
  description: |
@@ -6448,7 +6710,7 @@ MO_WIND_GLO_PHY_L3_MY_012_005:
6448
6710
  eodag:sensor_type:
6449
6711
  license: other
6450
6712
  title: Global Ocean Daily Gridded Reprocessed L3 Sea Surface Winds from Scatterometer
6451
- extent: {"temporal": {"interval": [["1991-08-01T00:00:00Z", "2023-12-31T00:00:00Z"]]}}
6713
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1991-08-01T00:00:00Z", "2023-12-31T00:00:00Z"]]}}
6452
6714
 
6453
6715
  MO_WIND_GLO_PHY_L4_NRT_012_004:
6454
6716
  description: |
@@ -6467,7 +6729,7 @@ MO_WIND_GLO_PHY_L4_NRT_012_004:
6467
6729
  eodag:sensor_type:
6468
6730
  license: other
6469
6731
  title: Global Ocean Hourly Sea Surface Wind and Stress from Scatterometer and Model
6470
- extent: {"temporal": {"interval": [["2020-07-01T00:00:00Z", null]]}}
6732
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2020-07-01T00:00:00Z", null]]}}
6471
6733
 
6472
6734
  MO_WIND_GLO_PHY_L4_MY_012_006:
6473
6735
  description: |
@@ -6487,7 +6749,7 @@ MO_WIND_GLO_PHY_L4_MY_012_006:
6487
6749
  eodag:sensor_type:
6488
6750
  license: other
6489
6751
  title: Global Ocean Hourly Reprocessed Sea Surface Wind and Stress from Scatterometer and Model
6490
- extent: {"temporal": {"interval": [["1994-06-01T00:00:00Z", "2024-01-21T23:00:00Z"]]}}
6752
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1994-06-01T00:00:00Z", "2024-01-21T23:00:00Z"]]}}
6491
6753
 
6492
6754
  MO_OCEANCOLOUR_GLO_BGC_L3_MY_009_107:
6493
6755
  description: |
@@ -6506,7 +6768,7 @@ MO_OCEANCOLOUR_GLO_BGC_L3_MY_009_107:
6506
6768
  eodag:sensor_type: multi
6507
6769
  license: other
6508
6770
  title: Global Ocean Colour Plankton and Reflectances MY L3 daily observations
6509
- extent: {"temporal": {"interval": [["1997-09-04T00:00:00Z", "2024-04-30T00:00:00Z"]]}}
6771
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1997-09-04T00:00:00Z", "2024-04-30T00:00:00Z"]]}}
6510
6772
 
6511
6773
  MO_OCEANCOLOUR_GLO_BGC_L3_NRT_009_101:
6512
6774
  description: |
@@ -6527,7 +6789,7 @@ MO_OCEANCOLOUR_GLO_BGC_L3_NRT_009_101:
6527
6789
  eodag:sensor_type:
6528
6790
  license: other
6529
6791
  title: Global Ocean Colour (Copernicus-GlobColour), Bio-Geo-Chemical, L3 (daily) from Satellite Observations (Near Real Time)
6530
- extent: {"temporal": {"interval": [["2023-04-25T00:00:00Z", null]]}}
6792
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-04-25T00:00:00Z", null]]}}
6531
6793
 
6532
6794
  MO_OCEANCOLOUR_GLO_BGC_L3_MY_009_103:
6533
6795
  description: |
@@ -6547,7 +6809,7 @@ MO_OCEANCOLOUR_GLO_BGC_L3_MY_009_103:
6547
6809
  eodag:sensor_type:
6548
6810
  license: other
6549
6811
  title: Global Ocean Colour (Copernicus-GlobColour), Bio-Geo-Chemical, L3 (daily) from Satellite Observations (1997-ongoing)
6550
- extent: {"temporal": {"interval": [["1997-09-04T00:00:00Z", null]]}}
6812
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1997-09-04T00:00:00Z", null]]}}
6551
6813
 
6552
6814
  MO_OCEANCOLOUR_GLO_BGC_L4_NRT_009_102:
6553
6815
  description: |
@@ -6569,7 +6831,7 @@ MO_OCEANCOLOUR_GLO_BGC_L4_NRT_009_102:
6569
6831
  eodag:sensor_type:
6570
6832
  license: other
6571
6833
  title: Global Ocean Colour (Copernicus-GlobColour), Bio-Geo-Chemical, L4 (monthly and interpolated) from Satellite Observations (Near Real Time)
6572
- extent: {"temporal": {"interval": [["2023-04-01T00:00:00Z", null]]}}
6834
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["2023-04-01T00:00:00Z", null]]}}
6573
6835
 
6574
6836
  MO_OCEANCOLOUR_GLO_BGC_L4_MY_009_104:
6575
6837
  description: |
@@ -6591,7 +6853,7 @@ MO_OCEANCOLOUR_GLO_BGC_L4_MY_009_104:
6591
6853
  eodag:sensor_type:
6592
6854
  license: other
6593
6855
  title: Global Ocean Colour (Copernicus-GlobColour), Bio-Geo-Chemical, L4 (monthly and interpolated) from Satellite Observations (1997-ongoing)
6594
- extent: {"temporal": {"interval": [["1997-09-01T00:00:00Z", null]]}}
6856
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1997-09-01T00:00:00Z", null]]}}
6595
6857
 
6596
6858
  MO_OCEANCOLOUR_GLO_BGC_L4_MY_009_108:
6597
6859
  description: |
@@ -6609,7 +6871,7 @@ MO_OCEANCOLOUR_GLO_BGC_L4_MY_009_108:
6609
6871
  eodag:sensor_type: multi
6610
6872
  license: other
6611
6873
  title: Global Ocean Colour Plankton MY L4 monthly observations
6612
- extent: {"temporal": {"interval": [["1997-09-01T00:00:00Z", "2024-04-01T00:00:00Z"]]}}
6874
+ extent: {"spatial": {"bbox": [[-180.0, -90.0, 180.0, 90.0]]}, "temporal": {"interval": [["1997-09-01T00:00:00Z", "2024-04-01T00:00:00Z"]]}}
6613
6875
 
6614
6876
  # MARK: GENERIC ------------------------------------------------------------------------
6615
6877
  GENERIC_COLLECTION:
@@ -6622,4 +6884,4 @@ GENERIC_COLLECTION:
6622
6884
  eodag:sensor_type:
6623
6885
  license:
6624
6886
  title:
6625
- extent: {"temporal": {"interval": [[null, null]]}}
6887
+ extent: {"spatial": {"bbox": [[-180, -90, 180, 90]]}, "temporal": {"interval": [[null, null]]}}