-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathcopernicus_climate.json
More file actions
9098 lines (9098 loc) · 593 KB
/
copernicus_climate.json
File metadata and controls
9098 lines (9098 loc) · 593 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-era5-single-levels",
"title": "ERA5 hourly data on single levels from 1940 to present",
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate and weather for the past 8 decades.\nData is available from 1940 onwards.\nERA5 replaces the ERA-Interim reanalysis.\nReanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. This principle, called data assimilation, is based on the method used by numerical weather prediction centres, where every so many hours (12 hours at ECMWF) a previous forecast is combined with newly available observations in an optimal way to produce a new best estimate of the state of the atmosphere, called analysis, from which an updated, improved forecast is issued. Reanalysis works in the same way, but at reduced resolution to allow for the provision of a dataset spanning back several decades. Reanalysis does not have the constraint of issuing timely forecasts, so there is more time to collect observations, and when going further back in time, to allow for the ingestion of improved versions of the original observations, which all benefit the quality of the reanalysis product.\nERA5 provides hourly estimates for a large number of atmospheric, ocean-wave and land-surface quantities.\nAn uncertainty estimate is sampled by an underlying 10-member ensemble\nat three-hourly intervals. Ensemble mean and spread have been pre-computed for convenience.\nSuch uncertainty estimates are closely related to the information content of the available observing system which\nhas evolved considerably over time. They also indicate flow-dependent sensitive areas.\nTo facilitate many climate applications, monthly-mean averages have been pre-calculated too,\nthough monthly means are not available for the ensemble mean and spread.\nERA5 is updated daily with a latency of about 5 days. In case that serious flaws are detected in this early release (called ERA5T), this data could be different from the final release 2 to 3 months later. In case that this occurs users are notified.\nThe data set presented here is a regridded subset of the full ERA5 data set on native resolution.\nIt is online on spinning disk, which should ensure fast and easy access.\nIt should satisfy the requirements for most common applications.\nAn overview of all ERA5 datasets can be found in this article.\nInformation on access to ERA5 data on native resolution is provided in these guidelines.\nData has been regridded to a regular lat-lon grid of 0.25 degrees for the reanalysis and 0.5 degrees for\nthe uncertainty estimate (0.5 and 1 degree respectively for ocean waves).\nThere are four main sub sets: hourly and monthly products, both on pressure levels (upper air fields) and single levels (atmospheric, ocean-wave and land surface quantities).\nThe present entry is \"ERA5 hourly data on single levels from 1940 to present\".",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-era5-single-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1940-01-01T00:00:00Z",
"2026-02-23T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-era5-single-levels/overview_48ac7d4fc21db572d6e7b887e00421aaac8489186a1cc3f0b67e2ae33394a8a3.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-era5-pressure-levels",
"title": "ERA5 hourly data on pressure levels from 1940 to present",
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate and weather for the past 8 decades.\nData is available from 1940 onwards.\nERA5 replaces the ERA-Interim reanalysis.\nReanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. This principle, called data assimilation, is based on the method used by numerical weather prediction centres, where every so many hours (12 hours at ECMWF) a previous forecast is combined with newly available observations in an optimal way to produce a new best estimate of the state of the atmosphere, called analysis, from which an updated, improved forecast is issued. Reanalysis works in the same way, but at reduced resolution to allow for the provision of a dataset spanning back several decades. Reanalysis does not have the constraint of issuing timely forecasts, so there is more time to collect observations, and when going further back in time, to allow for the ingestion of improved versions of the original observations, which all benefit the quality of the reanalysis product.\nERA5 provides hourly estimates for a large number of atmospheric, ocean-wave and land-surface quantities.\nAn uncertainty estimate is sampled by an underlying 10-member ensemble\nat three-hourly intervals. Ensemble mean and spread have been pre-computed for convenience.\nSuch uncertainty estimates are closely related to the information content of the available observing system which\nhas evolved considerably over time. They also indicate flow-dependent sensitive areas.\nTo facilitate many climate applications, monthly-mean averages have been pre-calculated too,\nthough monthly means are not available for the ensemble mean and spread.\nERA5 is updated daily with a latency of about 5 days. In case that serious flaws are detected in this early release (called ERA5T), this data could be different from the final release 2 to 3 months later. In case that this occurs users are notified.\nThe data set presented here is a regridded subset of the full ERA5 data set on native resolution.\nIt is online on spinning disk, which should ensure fast and easy access.\nIt should satisfy the requirements for most common applications.\nAn overview of all ERA5 datasets can be found in this article.\nInformation on access to ERA5 data on native resolution is provided in these guidelines.\nData has been regridded to a regular lat-lon grid of 0.25 degrees for the reanalysis and 0.5 degrees for\nthe uncertainty estimate (0.5 and 1 degree respectively for ocean waves).\nThere are four main sub sets: hourly and monthly products, both on pressure levels (upper air fields) and single levels (atmospheric, ocean-wave and land surface quantities).\nThe present entry is \"ERA5 hourly data on pressure levels from 1940 to present\".",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-era5-pressure-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1940-01-01T00:00:00Z",
"2026-02-23T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-era5-pressure-levels/overview_652fd83a7b2ed724ce541e563beff9c4484c3482bc08334a638a4bc47ae4cf0f.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-era5-land",
"title": "ERA5-Land hourly data from 1950 to present",
"description": "ERA5-Land is a reanalysis dataset providing a consistent view of the evolution of land variables over several decades at an enhanced resolution compared to ERA5. ERA5-Land has been produced by replaying the land component of the ECMWF ERA5 climate reanalysis. Reanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. Reanalysis produces data that goes several decades back in time, providing an accurate description of the climate of the past. \nERA5-Land uses as input to control the simulated land fields ERA5 atmospheric variables, such as air temperature and air humidity. This is called the atmospheric forcing. Without the constraint of the atmospheric forcing, the model-based estimates can rapidly deviate from reality. Therefore, while observations are not directly used in the production of ERA5-Land, they have an indirect influence through the atmospheric forcing used to run the simulation. In addition, the input air temperature, air humidity and pressure used to run ERA5-Land are corrected to account for the altitude difference between the grid of the forcing and the higher resolution grid of ERA5-Land. This correction is called 'lapse rate correction'. \nThe ERA5-Land dataset, as any other simulation, provides estimates which have some degree of uncertainty. Numerical models can only provide a more or less accurate representation of the real physical processes governing different components of the Earth System. In general, the uncertainty of model estimates grows as we go back in time, because the number of observations available to create a good quality atmospheric forcing is lower. ERA5-land parameter fields can currently be used in combination with the uncertainty of the equivalent ERA5 fields. \nThe temporal and spatial resolutions of ERA5-Land makes this dataset very useful for all kind of land surface applications such as flood or drought forecasting. The temporal and spatial resolution of this dataset, the period covered in time, as well as the fixed grid used for the data distribution at any period enables decisions makers, businesses and individuals to access and use more accurate information on land states.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-era5-land"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Land (biosphere)",
"Variable domain: Land (hydrology)",
"Provider: Copernicus C3S",
"Variable domain: Land (physics)"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1950-01-01T00:00:00Z",
"2026-02-23T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-era5-land/overview_b1aff34cd85b75516f935463b89486af284bdeb61afeb565d6e5d273bcfb4ac6.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-era5-single-levels-timeseries",
"title": "ERA5 hourly time-series data on single levels from 1940 to present",
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate and weather for the past 8 decades.\nData is available from 1940 onwards. ERA5 replaces the ERA-Interim reanalysis.\nReanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. This principle, called data assimilation, is based on the method used by numerical weather prediction centres, where every so many hours (12 hours at ECMWF) a previous forecast is combined with newly available observations in an optimal way to produce a new best estimate of the state of the atmosphere, called analysis, from which an updated, improved forecast is issued. Reanalysis works in the same way, but at reduced resolution to allow for the provision of a dataset spanning back several decades. Reanalysis does not have the constraint of issuing timely forecasts, so there is more time to collect observations, and when going further back in time, to allow for the ingestion of improved versions of the original observations, which all benefit the quality of the reanalysis product.\nERA5 provides hourly estimates for a large number of atmospheric, ocean-wave and land-surface quantities.\nAn uncertainty estimate is sampled by an underlying 10-member ensemble\nat three-hourly intervals. Ensemble mean and spread have been pre-computed for convenience.\nSuch uncertainty estimates are closely related to the information content of the available observing system which\nhas evolved considerably over time. They also indicate flow-dependent sensitive areas.\nTo facilitate many climate applications, monthly-mean averages have been pre-calculated too,\nthough monthly means are not available for the ensemble mean and spread.\nERA5 is updated daily with a latency of about 5 days. In case that serious flaws are detected in this early release (called ERA5T), this data could be different from the final release 2 to 3 months later. In case that this occurs users are notified.\nThe dataset presented here is a regridded subset of the full ERA5 data set on native resolution that is stored in a format designed for retrieving long time-series for a single point. When the requested location does not match the exact location of a grid point then the nearest grid point is used instead. It is this source of ERA5 data that is used by the ERA-Explorer to ensure response times required for the interactive web-application.\nAn overview of all ERA5 datasets can be found in this article.\nInformation on access to ERA5 data on native resolution is provided in these guidelines.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-era5-single-levels-timeseries"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
-180.0,
-89.0,
180.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1940-01-01T00:00:00Z",
"2024-12-06T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-era5-single-levels-timeseries/overview_d9a171109cee68a5dab12ba883fe32b5867f52ca4d64e9f6d5b6f25998d4735c.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "derived-era5-pressure-levels-daily-statistics",
"title": "ERA5 post-processed daily statistics on pressure levels from 1940 to present",
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate and weather for the past 8 decades.\nData is available from 1940 onwards.\nERA5 replaces the ERA-Interim reanalysis.\nReanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. This principle, called data assimilation, is based on the method used by numerical weather prediction centres, where every so many hours (12 hours at ECMWF) a previous forecast is combined with newly available observations in an optimal way to produce a new best estimate of the state of the atmosphere, called analysis, from which an updated, improved forecast is issued. Reanalysis works in the same way, but at reduced resolution to allow for the provision of a dataset spanning back several decades. Reanalysis does not have the constraint of issuing timely forecasts, so there is more time to collect observations, and when going further back in time, to allow for the ingestion of improved versions of the original observations, which all benefit the quality of the reanalysis product.\nThis catalogue entry provides post-processed ERA5 hourly pressure-level data aggregated to daily time steps. In addition to the data selection options found on the hourly page, the following options can be selected for the daily statistic calculation:\n\nThe daily aggregation statistic (daily mean, daily max, daily min)\nThe sub-daily frequency sampling of the original data (1 hour, 3 hours, 6 hours)\nThe option to shift to any local time zone in UTC (no shift means the statistic is computed from UTC+00:00)\n\nUsers should be aware that the daily aggregation is calculated during the retrieval process and is not part of a permanently archived dataset. For more details on how the daily statistics are calculated, including demonstrative code, please see the documentation.\nFor more details on the hourly data used to calculate the daily statistics, please refer to the ERA5 hourly pressure-level data catalogue entry and the documentation found therein.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/derived-era5-pressure-levels-daily-statistics"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1940-01-01T00:00:00Z",
"2026-02-22T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/derived-era5-pressure-levels-daily-statistics/overview_e28f72b6546b38a861b557b9226de6d4045d8e4e36bc5beaa9e43cbd4dd81363.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "derived-era5-single-levels-daily-statistics",
"title": "ERA5 post-processed daily statistics on single levels from 1940 to present",
"description": "ERA5 is the fifth generation ECMWF reanalysis for the global climate and weather for the past 8 decades.\nData is available from 1940 onwards.\nERA5 replaces the ERA-Interim reanalysis.\nReanalysis combines model data with observations from across the world into a globally complete and consistent dataset using the laws of physics. This principle, called data assimilation, is based on the method used by numerical weather prediction centres, where every so many hours (12 hours at ECMWF) a previous forecast is combined with newly available observations in an optimal way to produce a new best estimate of the state of the atmosphere, called analysis, from which an updated, improved forecast is issued. Reanalysis works in the same way, but at reduced resolution to allow for the provision of a dataset spanning back several decades. Reanalysis does not have the constraint of issuing timely forecasts, so there is more time to collect observations, and when going further back in time, to allow for the ingestion of improved versions of the original observations, which all benefit the quality of the reanalysis product.\nThis catalogue entry provides post-processed ERA5 hourly single-level data aggregated to daily time steps. In addition to the data selection options found on the hourly page, the following options can be selected for the daily statistic calculation:\n\nThe daily aggregation statistic (daily mean, daily max, daily min, daily sum*)\nThe sub-daily frequency sampling of the original data (1 hour, 3 hours, 6 hours)\nThe option to shift to any local time zone in UTC (no shift means the statistic is computed from UTC+00:00)\n\n*The daily sum is only available for the accumulated variables (see ERA5 documentation for more details).\nUsers should be aware that the daily aggregation is calculated during the retrieval process and is not part of a permanently archived dataset. For more details on how the daily statistics are calculated, including demonstrative code, please see the documentation.\nFor more details on the hourly data used to calculate the daily statistics, please refer to the ERA5 hourly single-level data catalogue entry and the documentation found therein.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/derived-era5-single-levels-daily-statistics"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1940-01-01T00:00:00Z",
"2026-02-22T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/derived-era5-single-levels-daily-statistics/overview_593e6a72773f0dd1e6b665ff4fe2e184f1cd7b175c143e28caa61c569fe82dd3.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "derived-utci-historical",
"title": "Thermal comfort indices derived from ERA5 reanalysis",
"description": "This dataset provides a complete historical reconstruction for a set of indices representing human thermal stress and discomfort in outdoor conditions. This dataset, also known as ERA5-HEAT (Human thErmAl comforT) represents the current state-of-the-art for bioclimatology data record production.\nThe dataset is organised around two main variables:\n\nthe mean radiant temperature (MRT)\nthe universal thermal climate index (UTCI)\n\nThese variables describe how the human body experiences atmospheric conditions, specifically air temperature, humidity, ventilation and radiation.\nThe dataset is computed using the ERA5 reanalysis from the European Centre for Medium-Range Forecasts (ECMWF). ERA5 combines model data with observations from across the world to provide a globally complete and consistent description of the Earth\u2019s climate and its evolution in recent decades. ERA5 is regarded as a good proxy for observed atmospheric conditions.\nThe dataset currently covers 01/01/1940 to near real time and is regularly extended as ERA5 data become available.\nThe dataset is produced by the European Centre for Medium-range Weather Forecasts.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/derived-utci-historical"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Atmosphere (surface)",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S"
],
"license": "other",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-60.0,
360.0,
90.0
]
]
},
"temporal": {
"interval": [
[
"1939-12-01T00:00:00Z",
"2026-02-23T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/derived-utci-historical/overview_67efa41f6b71502f2884c803b25437e4ac764e2b462945cfc5488eb49d1619d7.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-era5-land-timeseries",
"title": "ERA5 Land hourly time-series data from 1950 to present",
"description": "ERA5-Land is a reanalysis dataset providing a consistent view of the evolution of land variables over several decades at an enhanced resolution compared to the \nFifth Generation of the European Centre for Medium-Range Weather Forecasts (ECMWF) Reanalysis (ERA5).\nProduced by replaying only the land component of the ECMWF ERA5 climate reanalysis, it benefits from the same physical data-assimilation framework but runs offline at \nhigher spatial detail (9 km grid) to deliver richer land-surface information. \nReanalysis merges numerical model output with global observations into a globally complete, physically consistent climate record; \nthis \u201cdata assimilation\u201d approach mirrors operational weather forecasting but is optimised for historical completeness rather than forecast timeliness.\nReanalysis datasets extend back several decades by sacrificing forecast deadlines, allowing additional time to gather observations and retrospectively ingest improved data, \nthereby enhancing data quality in earlier periods.\nERA5-Land uses atmospheric fields from ERA5\u2014air temperature, humidity, pressure\u2014as \u201cforcing\u201d inputs to drive its land-surface model, \npreventing rapid drift from reality that unconstrained simulations would suffer.\n Although observations do not enter the land model directly, they shape the atmospheric forcing through assimilation, giving ERA5-Land an indirect observational anchor.\n To reconcile ERA5\u2019s coarser grid with ERA5-Land\u2019s finer 9 km grid, a lapse-rate correction adjusts input temperatures, humidity, and pressures for altitude differences.\nLike all numerical simulations, ERA5-Land carries uncertainty that generally grows backward in time as fewer observations were available to constrain the forcing.\n Users can combine ERA5-Land fields with the uncertainty estimates from equivalent ERA5 variables to assess confidence bounds.\nThe temporal resolution (hourly) and spatial detail (9 km) of ERA5-Land make it invaluable for land-surface applications such as flood and drought forecasting, \nagricultural monitoring, and hydrological studies.\nThe dataset presented here is a regridded subset of the full ERA5-Land archive, stored in an Analysis-Ready, \nCloud-Optimised (ARCO) format specifically designed for retrieving long time-series for individual points. \nWhen a user\u2019s requested location does not exactly match a grid point, the nearest grid point is automatically selected. This optimised data source ensures rapid response times.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-era5-land-timeseries"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Land (biosphere)",
"Variable domain: Land (hydrology)",
"Provider: Copernicus C3S",
"Variable domain: Land (physics)"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
-180.0,
-89.0,
180.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1950-01-01T00:00:00Z",
"2026-12-31T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-era5-land-timeseries/overview_822e6553dc049058d8147471c52249fc5f0b1e2835136654411ed93c440d014a.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-carra-pressure-levels",
"title": "Arctic regional reanalysis on pressure levels from 1991 to present",
"description": "The C3S Arctic Regional Reanalysis (CARRA) dataset contains hourly data including 3-hourly analyses and hourly short term forecasts of atmospheric pressure level meteorological variables (temperature, humidity, wind, and other thermodynamic variables) at 2.5 km resolution. Additionally, forecasts up to 30 hours initialised from the analyses at 00 and 12 UTC are available.\nThe dataset includes two domains. The West domain covers Greenland, the Labrador Sea, Davis Strait, Baffin Bay, Denmark Strait, Iceland, Jan Mayen, the Greenland Sea and Svalbard. The East domain covers Svalbard, Jan Mayen, Franz Josef Land, Novaya Zemlya, the Barents Sea, and the northern parts of the Norwegian Sea and Scandinavia.\nThe dataset has been produced with the use of the HARMONIE-AROME state-of-the-art non-hydrostatic regional numerical weather prediction model. High resolution reanalysis for the Arctic region is particularly important because climate change is more pronounced in the Arctic region than elsewhere on Earth. This fact calls for a better description of this region providing additional details with respect to the global reanalyses (ERA5 for instance). The additional information is provided by the higher horizontal resolution, more local observations (from the Nordic countries and Greenland), a better description of surface characteristics (high resolution satellite and physiographic data), high resolution non-hydrostatic dynamics and improved physical parameterisation of clouds and precipitation in particular.\nThe inputs to CARRA reanalysis are the observations, the ERA5 global reanalysis as lateral boundary conditions and the physiographic datasets describing the surface characteristics of the model. The observation values and information about their quality are used together to constrain the reanalysis where observations are available and provide information for the data assimilation system in areas in where fewer observations are available.\nMore details about the reanalysis dataset and the extensive input data are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-carra-pressure-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/reanalysis-carra-pressure-levels?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Variable domain: Atmosphere (upper air)",
"Spatial coverage: Arctic"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
360.0,
65.0,
0.0,
90.0
]
]
},
"temporal": {
"interval": [
[
"1990-09-01T00:00:00Z",
"2025-12-31T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-carra-pressure-levels/overview_2fe93a87f5415de88b47a4d91ce5f05485b2893eef75ba306876f4b09d422ffe.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-carra-model-levels",
"title": "Arctic regional reanalysis on model levels from 1991 to present",
"description": "The C3S Arctic Regional Reanalysis (CARRA) dataset contains hourly data including 3-hourly analyses and hourly short term forecasts of atmospheric model level meteorological variables (temperature, humidity, wind, cloud, precipitation and turbulent kinetic energy) at 2.5 km resolution. Additionally, forecasts up to 30 hours initialised from the analyses at 00 and 12 UTC are available.\nThe dataset includes two domains. The West domain covers Greenland, the Labrador Sea, Davis Strait, Baffin Bay, Denmark Strait, Iceland, Jan Mayen, the Greenland Sea and Svalbard. The East domain covers Svalbard, Jan Mayen, Franz Josef Land, Novaya Zemlya, the Barents Sea, and the northern parts of the Norwegian Sea and Scandinavia.\nThe dataset has been produced with the use of the HARMONIE-AROME state-of-the-art non-hydrostatic regional numerical weather prediction model. High resolution reanalysis for the Arctic region is particularly important because climate change is more pronounced in the Arctic region than elsewhere in on Earth. This fact calls for a better description of this region providing additional details with respect to the global reanalyses (ERA5 for instance). The additional information is provided by the higher horizontal resolution, more local observations (from the Nordic countries and Greenland), a better description of surface characteristics (high resolution satellite and physiographic data), high resolution non-hydrostatic dynamics and improved physical parameterisation of clouds and precipitation in particular.\nThe inputs to CARRA reanalysis are the observations, the ERA5 global reanalysis as lateral boundary conditions and the physiographic datasets describing the surface characteristics of the model. The observation values and information about their quality are used together to constrain the reanalysis where observations are available and provide information for the data assimilation system in areas in where fewer observations are available.\nMore details about the reanalysis dataset and the extensive input data are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-carra-model-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/reanalysis-carra-model-levels?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Variable domain: Atmosphere (upper air)",
"Spatial coverage: Arctic"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
360.0,
65.0,
0.0,
90.0
]
]
},
"temporal": {
"interval": [
[
"1990-09-01T00:00:00Z",
"2025-12-31T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-carra-model-levels/overview_9067d7a00495ca5711ca0133b189e2b62589dd3ffb7d5926e2758c0f193acdff.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-carra-height-levels",
"title": "Arctic regional reanalysis on height levels from 1991 to present",
"description": "The C3S Arctic Regional Reanalysis (CARRA) dataset contains hourly data including 3-hourly analyses and hourly short term forecasts of atmospheric height level meteorological variables (temperature, humidity, wind, and other thermodynamic variables) at 2.5 km resolution. Additionally, forecasts up to 30 hours initialised from the analyses at 00 and 12 UTC are available.\nThe dataset includes two domains. The West domain covers Greenland, the Labrador Sea, Davis Strait, Baffin Bay, Denmark Strait, Iceland, Jan Mayen, the Greenland Sea and Svalbard. The East domain covers Svalbard, Jan Mayen, Franz Josef Land, Novaya Zemlya, the Barents Sea, and the northern parts of the Norwegian Sea and Scandinavia.\nThe dataset has been produced with the use of the HARMONIE-AROME state-of-the-art non-hydrostatic regional numerical weather prediction model. High resolution reanalysis for the Arctic region is particularly important because climate change is more pronounced in the Arctic region than elsewhere on Earth. This fact calls for a better description of this region providing additional details with respect to the global reanalyses (ERA5 for instance). The additional information is provided by the higher horizontal resolution, more local observations (from the Nordic countries and Greenland), a better description of surface characteristics (high resolution satellite and physiographic data), high resolution non-hydrostatic dynamics and improved physical parameterisation of clouds and precipitation in particular.\nThe inputs to CARRA reanalysis are the observations, the ERA5 global reanalysis as lateral boundary conditions and the physiographic datasets describing the surface characteristics of the model. The observation values and information about their quality are used together to constrain the reanalysis where observations are available and provide information for the data assimilation system in areas in where fewer observations are available.\nMore details about the reanalysis dataset and the extensive input data are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-carra-height-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/reanalysis-carra-height-levels?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Variable domain: Atmosphere (upper air)",
"Spatial coverage: Arctic"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
360.0,
65.0,
0.0,
90.0
]
]
},
"temporal": {
"interval": [
[
"1990-09-01T00:00:00Z",
"2025-12-31T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-carra-height-levels/overview_3c89b83d1b8d2a2c47f7083e0524cf6706772bc19c5f5ba90ee1f529223c9e58.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "reanalysis-carra-single-levels",
"title": "Arctic regional reanalysis on single levels from 1991 to present",
"description": "The C3S Arctic Regional Reanalysis (CARRA) dataset contains 3-hourly analyses and hourly short term forecasts of atmospheric and surface meteorological variables (surface and near-surface temperature, surface and top of atmosphere fluxes, precipitation, cloud, humidity, wind, pressure, snow and sea variables) at 2.5 km resolution. Additionally, forecasts up to 30 hours initialised from the analyses at 00 and 12 UTC are available.\nThe dataset includes two domains. The West domain covers Greenland, the Labrador Sea, Davis Strait, Baffin Bay, Denmark Strait, Iceland, Jan Mayen, the Greenland Sea and Svalbard. The East domain covers Svalbard, Jan Mayen, Franz Josef Land, Novaya Zemlya, the Barents Sea, and the northern parts of the Norwegian Sea and Scandinavia.\nThe dataset has been produced with the use of the HARMONIE-AROME state-of-the-art non-hydrostatic regional numerical weather prediction model. High resolution reanalysis for the Arctic region is particularly important because the climate change is more pronounced in the Arctic region than elsewhere in the Earth. This fact calls for a better description of this region providing additional details with respect to the global reanalyses (ERA5 for instance). The additional information is provided by the higher horizontal resolution, more local observations (from the Nordic countries and Greenland), better description of surface characteristics (high resolution satellite and physiographic data), high resolution non-hydrostatic dynamics and improved physical parameterisation of clouds and precipitation in particular.\nThe inputs to CARRA reanalysis are the observations, the ERA5 global reanalysis as lateral boundary conditions and the physiographic datasets describing the surface characteristics of the model. The observation values and information about their quality are used together to constrain the reanalysis where observations are available and provide information for the data assimilation system in areas in where less observations are available.\nMore details about the reanalysis dataset and the extensive input data are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/reanalysis-carra-single-levels"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/reanalysis-carra-single-levels?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Product type: Reanalysis",
"Temporal coverage: Past",
"Variable domain: Atmosphere (upper air)",
"Spatial coverage: Arctic"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
15.0,
60.0,
65.0,
72.0
]
]
},
"temporal": {
"interval": [
[
"1990-09-01T00:00:00Z",
"2025-12-31T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/reanalysis-carra-single-levels/overview_8e4c8ccf15929a4b7c88f06d965ef1b809917c49b7f733bf2d1091d7fa08fbe1.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "satellite-soil-moisture",
"title": "Soil moisture gridded data from 1978 to present",
"description": "The C3S satellite soil moisture (SM) service provides a range of global soil moisture variables derived from numerous satellite sensors, including scatterometers and radiometers. The products are designed primarily for applications related to climate variability and change, land\u2013atmosphere interactions, global biogeochemical cycles, ecology, hydrological and land surface modelling, drought monitoring, and meteorology. \nAll C3S SM data are based on algorithms and scientific methods developed within the ESA Climate Change Initiative for Soil Moisture (ESA CCI SM) programme. They represent the current state of the art in the production of satellite-based soil moisture climate data records and comply with the Systematic Observation Requirements for Satellite-Based Products for Climate defined by the Global Climate Observing System (GCOS). The data are provided on a regular latitude\u2013longitude grid, with potential gaps in space and time due to missing satellite overpasses. \nIn satellite-based climate datasets, it is common to distinguish between Climate Data Records (CDR) and Interim Climate Data Records (ICDR). In this dataset, both the CDR and ICDR components are generated using the same software and algorithms. The CDR provides sufficiently long, consistent, and continuous time series suitable for detecting climate variability and change. The ICDR offers short-latency access to near-real-time data, with consistency maintained relative to the CDR baseline. \nAvailable Products: \n- Surface Soil Moisture (SSM) combines observations different sources. C3S SM provides separate ACTIVE (multi-scatterometer) and PASSIVE (multi-radiometer) - products, as well as a COMBINED product that merges all available satellite input sources to achieve the highest possible data quality. The COMBINED dataset is recommended for most applications.\n- Root-Zone Soil Moisture (RZSM) uses the COMBINED SSM product as input together with a water infiltration model to estimate moisture in multiple depth layers within the plant root zone (0\u201310, 10\u201340, 40\u2013100, and 0\u2013100 cm). RZSM is commonly preferred over SSM for drought and large-scale agricultural applications.\n- Freeze/Thaw (F/T) provides a binary classification of the surface soil moisture state (frozen or unfrozen) based on K-band radiometer brightness temperatures.\nThis dataset is produced on behalf of the Copernicus Climate Change Service (C3S) by TU Wien, Planet, and EODC GmbH.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/satellite-soil-moisture"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/satellite-soil-moisture?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Temporal coverage: Past",
"Spatial coverage: Global",
"Variable domain: Land (hydrology)",
"Product type: Satellite observations",
"Provider: Copernicus C3S"
],
"license": "CC-BY-4.0",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1978-11-01T00:00:00Z",
"2026-02-10T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/satellite-soil-moisture/overview_2608b02ec723746fb179c05e97c0c5bd33ac314dbf17d18456c194c9e32f33e6.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "satellite-cloud-properties",
"title": "Cloud properties global gridded monthly and daily data from 1979 to present derived from satellite observations",
"description": "Cloud properties directly influence the state of the Earth\u00b4s upper-air atmosphere. Clouds have an effect on weather and climate through their contribution to the Earth\u2019s water cycle and impact on the Earth\u2019s energy budget. They impact atmospheric motions on a range of spatial and temporal scales and contribute to changes in the atmospheric composition. Water vapour originating from surface evaporation and transpiration condensates to form clouds, eventually leading to precipitation, which constitutes a fundamental mechanism of water redistribution around the globe. Therefore, knowledge of cloud properties allows for a deeper understanding of the feedback mechanisms within the hydrological cycle, directly in terms of precipitation, but also indirectly on the Earth\u00b4s energy budget through the changes in radiative fluxes. According to the 6th Intergovernmental Panel on Climate Change (IPCC) assessment report, clouds (together with aerosols) are among the largest sources of uncertainty of the estimates of the Earth\u00b4s energy budget, as well as of the potential feedback mechanisms and responses to climate change.\nThe Cloud Properties ECV contains four main variables, which can be separated into averaged cloudiness, cloud height products, and cloud physical properties for both the ice and liquid water phases. These variables are provided in two \u201cproduct families\u201d, according to the data provenance. The \"CCI product family\" originates from the European Space Agency (ESA) Cloud_cci project, which produced a Thematic Climate Data Record (TCDR) based on ATSR2 and AATSR (Origin: \u201cESA\u201d), and extensions using SLSTR produced specifically for the Copernicus Climate Change Service (Origin: \u201cC3S\u201d). The \u201cCLARA (CM SAF cLoud, Albedo and surface Radiation) product family\u201d originates in the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT) Satellite Application Facility on Climate Monitoring (CM SAF), who produced a TCDR based on AVHRR observations. Both product families provide two complementary data records, differing in algorithms, input data, temporal and horizontal resolution. These TCDR timeseries are intended to have sufficient length, consistency, and continuity to detect climate variability and change. They are frequently updated with Interim Climate Data Records (ICDR) or simply extensions, generated using the same software and algorithms to cover more recent periods. Further details on algorithms, data description, and extensive validation results are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/satellite-cloud-properties"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "root",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"
},
{
"rel": "qa",
"href": "https://cds.climate.copernicus.eu/datasets/satellite-cloud-properties?tab=quality_assurance_tab",
"title": "Quality assessment of the dataset",
"type": "text/html"
}
],
"keywords": [
"Temporal coverage: Past",
"Spatial coverage: Global",
"Temporal coverage: Present",
"Product type: Satellite observations",
"Variable domain: Atmosphere (upper air)",
"Provider: Copernicus C3S",
"Provider: ESA CCI",
"Provider: EUMETSAT SAF"
],
"license": "other",
"providers": [
{
"name": "ECMWF"
}
],
"extent": {
"spatial": {
"bbox": [
[
0.0,
-89.0,
360.0,
89.0
]
]
},
"temporal": {
"interval": [
[
"1979-01-01T00:00:00Z",
"2025-06-30T00:00:00Z"
]
]
}
},
"summaries": "{}",
"assets": {
"thumbnail": {
"href": "https://object-store.os-api.cci2.ecmwf.int:443/cci2-prod-catalogue/resources/satellite-cloud-properties/overview_f2a8ef7987a602c38aecaac3ad1b751682240e0f908d023e281aa40b98586f01.png",
"type": "image/jpg",
"roles": [
"thumbnail"
]
}
}
},
{
"type": "Collection",
"stac_version": "1.1.0",
"id": "satellite-surface-radiation-budget",
"title": "Surface radiation budget from 1979 to present derived from satellite observations",
"description": "The Surface Radiation Budget (SRB) represents the balance between the heating of the Earth\u2019s surface through absorption of incoming solar radiation and cooling through the emission of infra-red radiation, which is a fundamental component of the surface energy budget. Small changes in the surface radiation budget can lead to large climatological responses, which makes a permanent and precise monitoring indispensable. Accurate understanding of the surface radiation budget at regional and global scales can improve the understanding of the Earth\u2019s climate system and supports research on current and anticipated climate change, as well as the evaluation of radiative processes in climate models. Better knowledge of the global and regional surface radiation is also required for a successful utilisation of renewable energy sources, such as solar power plants.\nThe dataset contains seven variables, which can be separated into solar (shortwave) and thermal (longwave) surface radiation components. Both components include incoming (downwelling), outgoing (upwelling), and the net radiation fluxes. These variables are provided from two \u201cproduct families\u201d, according to the data provenance. The \"CCI product family\" originated from the European Space Agency (ESA) Cloud_cci project, which produced a Thematic Climate Data Record (TCDR) based on ATSR2 and AATSR (\u201cOrigin\u201d:\u201cESA\u201d) and extensions using SLSTR produced specifically for Copernicus Climate Change Service (\u201cOrigin\u201d: \u201cC3S\u201d). The \u201cCLARA (CM SAF cLoud, Albedo and surface Radiation) product family\u201d originates in the EUMETSAT\u00b4s Satellite Application Facility on Climate Monitoring (CM SAF), who produced a TCDR based on AVHRR observations. The two product families follow somewhat different nomenclatures. Therefore, a table relating the names used in the download form with the names used within the files and in other datasets distributed by the Climate Data Store is added at the end of this overview. \nThe \u201cCLARA product family\u201d and \u201cCCI product family\u201d provide complementary data records, differing in temporal and horizontal resolution. These TCDR timeseries are intended to have sufficient length, consistency, and continuity to detect climate variability and change. They are frequently updated with Interim Climate Data Records (ICDRs) or simply extensions, generated using the same software and algorithms to cover more recent periods. Further details on algorithms, data description, and extensive validation results are given in the Documentation section.",
"links": [
{
"rel": "self",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/collections/satellite-surface-radiation-budget"
},
{
"rel": "parent",
"type": "application/json",
"href": "https://cds.climate.copernicus.eu/api/catalogue/v1/"