-
Notifications
You must be signed in to change notification settings - Fork 41
/
pc_catalog.json
2200 lines (2200 loc) · 108 KB
/
pc_catalog.json
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
[
{
"title": "10m Annual Land Use Land Cover (9-class)",
"id": "io-lulc-9-class",
"description": "Global land cover information with 9 classes for for 2017-2022 at 10m resolution",
"bbox": "-180, -90, 180, 90",
"start_date": "2017-01-01",
"end_date": "2023-01-01",
"group_id": "io-land-cover",
"container": "io-lulc",
"storage_account": "ai4edataeuwest",
"keywords": "Global, Land Cover, Land Use, Sentinel",
"providers": "Esri, Impact Observatory, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "ALOS Forest/Non-Forest Annual Mosaic",
"id": "alos-fnf-mosaic",
"description": "Global 25m resolution map classifying \"forest\" and \"non-forest\" landcover.",
"bbox": "-180.0, 85.0, 180.0, -56.0",
"start_date": "2015-01-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "palsar",
"storage_account": "https://pceo.blob.core.windows.net/",
"keywords": "ALOS, JAXA, Forest, Land Cover, Global",
"providers": "Japan Aerospace Exploration Agency, Development Seed, Microsoft Planetary Computer",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic",
"variables": "",
"dimensions": "",
"assets": "C"
},
{
"title": "ALOS PALSAR Annual Mosaic",
"id": "alos-palsar-mosaic",
"description": "Global 25m resolution SAR image mosaic.",
"bbox": "-180.0, 85.0, 180.0, -56.0",
"start_date": "2015-01-01",
"end_date": "2021-12-31",
"group_id": "",
"container": "palsar",
"storage_account": "https://pceo.blob.core.windows.net/",
"keywords": "ALOS, JAXA, Remote Sensing, Global",
"providers": "Japan Aerospace Exploration Agency, Development Seed, Microsoft Planetary Computer",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic",
"variables": "",
"dimensions": "",
"assets": "HH, HV, VH, VV, date, mask, linci, metadata"
},
{
"title": "ALOS World 3D-30m",
"id": "alos-dem",
"description": "ALOS World 3D is a global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, constructed from the Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite (ALOS).",
"bbox": "-180, -90, 180, 90",
"start_date": "2016-12-07",
"end_date": "2016-12-07",
"group_id": "",
"container": "alos-dem",
"storage_account": "ai4edataeuwest",
"keywords": "ALOS, PRISM, JAXA, DEM, DSM, Elevation",
"providers": "Japan Aerospace Exploration Agency, OpenTopography, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "ASTER L1T",
"id": "aster-l1t",
"description": "The ASTER instrument, launched on-board NASA's Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.",
"bbox": "-180, -90, 180, 90",
"start_date": "2000-03-04",
"end_date": "2006-12-31",
"group_id": "",
"container": "aster",
"storage_account": "astersa",
"keywords": "ASTER, USGS, NASA, Satellite, Global",
"providers": "NASA, USGS, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t",
"variables": "",
"dimensions": "",
"assets": "TIR, xml, SWIR, VNIR, qa-txt, qa-browse, tir-browse, vnir-browse"
},
{
"title": "Biodiversity Intactness",
"id": "io-biodiversity",
"description": "Global terrestrial biodiversity intactness at 100m resolution for years 2017-2020",
"bbox": "-180, -90, 180, 90",
"start_date": "2017-01-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "impact",
"storage_account": "pcdata01euw",
"keywords": "Global, Biodiversity",
"providers": "Impact Observatory, Vizzuality, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "C-CAP Regional Land Cover and Change",
"id": "noaa-c-cap",
"description": "Periodic coastal landcover classifications back to 1975",
"bbox": "-160.315986, 17.892786, -64.966857, 49.471148",
"start_date": "1975-01-01",
"end_date": "2016-12-31",
"group_id": "",
"container": "noaa-c-cap",
"storage_account": "ai4edataeuwest",
"keywords": "Land Cover, Land Use, NOAA, Coastal",
"providers": "National Oceanic and Atmospheric Administration, Office for Coastal Management, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap",
"variables": "",
"dimensions": "",
"assets": "data, metadata"
},
{
"title": "CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)",
"id": "cil-gdpcir-cc-by",
"description": "Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)",
"bbox": "-180, -90, 180, 90",
"start_date": "1950-01-01",
"end_date": "2100-12-31",
"group_id": "cil-gdpcir",
"container": "cil-gdpcir",
"storage_account": "rhgeuwest",
"keywords": "CMIP6, Climate Impact Lab, Rhodium Group, Precipitation, Temperature",
"providers": "Climate Impact Lab, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by",
"variables": "pr, tasmax, tasmin",
"dimensions": "lat, lon, time",
"assets": "pr, tasmax, tasmin"
},
{
"title": "CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)",
"id": "cil-gdpcir-cc-by-sa",
"description": "Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)",
"bbox": "-180, -90, 180, 90",
"start_date": "1950-01-01",
"end_date": "2100-12-31",
"group_id": "cil-gdpcir",
"container": "cil-gdpcir",
"storage_account": "rhgeuwest",
"keywords": "CMIP6, Climate Impact Lab, Rhodium Group, Precipitation, Temperature",
"providers": "Climate Impact Lab, Microsoft",
"license": "CC-BY-SA-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa",
"variables": "pr, tasmax, tasmin",
"dimensions": "lat, lon, time",
"assets": "pr, tasmax, tasmin"
},
{
"title": "CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)",
"id": "cil-gdpcir-cc0",
"description": "Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC0-1.0)",
"bbox": "-180, -90, 180, 90",
"start_date": "1950-01-01",
"end_date": "2100-12-31",
"group_id": "cil-gdpcir",
"container": "cil-gdpcir",
"storage_account": "rhgeuwest",
"keywords": "CMIP6, Climate Impact Lab, Rhodium Group, Precipitation, Temperature",
"providers": "Climate Impact Lab, Microsoft",
"license": "CC0-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0",
"variables": "pr, tasmax, tasmin",
"dimensions": "lat, lon, time",
"assets": "pr, tasmax, tasmin"
},
{
"title": "Chesapeake Land Cover (13-class)",
"id": "chesapeake-lc-13",
"description": "Chesapeake Bay Watershed land cover product with 13 classes at 1m resolution.",
"bbox": "-81.14658496196135, 36.21291717905733, -73.27357561029186, 44.77821441524524",
"start_date": "2013-01-01",
"end_date": "2014-12-31",
"group_id": "chesapeake-lulc",
"container": "chesapeake",
"storage_account": "landcoverdata",
"keywords": "Land Cover, Chesapeake Bay Watershed, Chesapeake Conservancy",
"providers": "Chesapeake Conservancy Conservation Innovation Center, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Chesapeake Land Cover (7-class)",
"id": "chesapeake-lc-7",
"description": "Chesapeake Bay Watershed land cover product with 7 classes at 1m resolution.",
"bbox": "-81.14658496196135, 36.21291717905733, -73.27357561029186, 44.77821441524524",
"start_date": "2013-01-01",
"end_date": "2014-12-31",
"group_id": "chesapeake-lulc",
"container": "chesapeake",
"storage_account": "landcoverdata",
"keywords": "Land Cover, Chesapeake Bay Watershed, Chesapeake Conservancy",
"providers": "Chesapeake Conservancy Conservation Innovation Center, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Chesapeake Land Use",
"id": "chesapeake-lu",
"description": "Chesapeake Bay Watershed land use product with 17 classes at 1m resolution.",
"bbox": "-81.14648244566828, 36.18730972451623, -73.11082086653798, 44.7781991560751",
"start_date": "2013-01-01",
"end_date": "2014-12-31",
"group_id": "chesapeake-lulc",
"container": "chesapeake",
"storage_account": "landcoverdata",
"keywords": "Land Use, Chesapeake Bay Watershed, Chesapeake Conservancy",
"providers": "Chesapeake Conservancy Conservation Innovation Center, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Chloris Biomass",
"id": "chloris-biomass",
"description": "The Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems during the period 2003 - 2019, at annual time steps. The global dataset has a circa 4.6 km spatial resolution.",
"bbox": "-179.95, -60, 179.95, 90",
"start_date": "2003-07-31",
"end_date": "2019-07-31",
"group_id": "",
"container": "chloris-biomass",
"storage_account": "ai4edataeuwest",
"keywords": "Chloris, Biomass, MODIS, Carbon",
"providers": "Chloris, Microsoft",
"license": "CC-BY-NC-SA-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass",
"variables": "",
"dimensions": "",
"assets": "biomass, biomass_wm, biomass_change, biomass_change_wm"
},
{
"title": "Copernicus DEM GLO-30",
"id": "cop-dem-glo-30",
"description": "Copernicus DEM 30 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, derived from radar satellite data acquired during the TanDEM-X mission.",
"bbox": "-180, -90, 180, 90",
"start_date": "2021-04-22",
"end_date": "2021-04-22",
"group_id": "copernicus-dem",
"container": "copernicus-dem-stac",
"storage_account": "elevationeuwest",
"keywords": "Copernicus, DEM, DSM, Elevation",
"providers": "European Space Agency, Sinergise, OpenTopography, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Copernicus DEM GLO-90",
"id": "cop-dem-glo-90",
"description": "Copernicus DEM 90 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 90 meters, derived from radar satellite data acquired during the TanDEM-X mission.",
"bbox": "-180, -90, 180, 90",
"start_date": "2021-04-22",
"end_date": "2021-04-22",
"group_id": "copernicus-dem",
"container": "copernicus-dem-stac",
"storage_account": "elevationeuwest",
"keywords": "Copernicus, DEM, Elevation",
"providers": "European Space Agency, Sinergise, OpenTopography, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Daymet Annual Hawaii",
"id": "daymet-annual-hi",
"description": "Annual climate summaries on a 1-km grid for Hawaii",
"bbox": "-160.3056, 17.9539, -154.772, 23.5186",
"start_date": "1980-07-01",
"end_date": "2020-07-01",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Hawaii, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Annual North America",
"id": "daymet-annual-na",
"description": "Annual climate summaries on a 1-km grid for North America",
"bbox": "-178.1333, 14.0749, -53.0567, 82.9143",
"start_date": "1980-07-01",
"end_date": "2020-07-01",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, North America, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Annual Puerto Rico",
"id": "daymet-annual-pr",
"description": "Annual climate summaries on a 1-km grid for Puerto Rico",
"bbox": "-67.9927, 16.8444, -64.1196, 19.9382",
"start_date": "1980-07-01",
"end_date": "2020-07-01",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Puerto Rico, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Daily Hawaii",
"id": "daymet-daily-hi",
"description": "Daily surface weather data on a 1-km grid for Hawaii",
"bbox": "-160.3056, 17.9539, -154.772, 23.5186",
"start_date": "1980-01-01",
"end_date": "2020-12-30",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Hawaii, Temperature, Precipitation, Vapor Pressure, Weather",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi",
"variables": "vp, lat, lon, swe, dayl, prcp, srad, tmax, tmin, yearday, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Daily North America",
"id": "daymet-daily-na",
"description": "Daily surface weather data on a 1-km grid for North America",
"bbox": "-178.1333, 14.0749, -53.0567, 82.9143",
"start_date": "1980-01-01",
"end_date": "2020-12-30",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, North America, Temperature, Precipitation, Vapor Pressure, Weather",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na",
"variables": "vp, lat, lon, swe, dayl, prcp, srad, tmax, tmin, yearday, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Daily Puerto Rico",
"id": "daymet-daily-pr",
"description": "Daily surface weather data on a 1-km grid for Puerto Rico",
"bbox": "-67.9927, 16.8444, -64.1196, 19.9382",
"start_date": "1980-01-01",
"end_date": "2020-12-30",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Puerto Rico, Temperature, Precipitation, Vapor Pressure, Weather",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr",
"variables": "vp, lat, lon, swe, dayl, prcp, srad, tmax, tmin, yearday, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Monthly Hawaii",
"id": "daymet-monthly-hi",
"description": "Monthly climate summaries on a 1-km grid for Hawaii",
"bbox": "-160.3056, 17.9539, -154.772, 23.5186",
"start_date": "1980-01-16",
"end_date": "2020-12-16",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Hawaii, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Monthly North America",
"id": "daymet-monthly-na",
"description": "Monthly climate summaries on a 1-km grid for North America",
"bbox": "-178.1333, 14.0749, -53.0567, 82.9143",
"start_date": "1980-01-16",
"end_date": "2020-12-16",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, North America, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Daymet Monthly Puerto Rico",
"id": "daymet-monthly-pr",
"description": "Monthly climate summaries on a 1-km grid for Puerto Rico",
"bbox": "-67.9927, 16.8444, -64.1196, 19.9382",
"start_date": "1980-01-16",
"end_date": "2020-12-16",
"group_id": "daymet",
"container": "daymet-zarr",
"storage_account": "daymeteuwest",
"keywords": "Daymet, Puerto Rico, Temperature, Precipitation, Vapor Pressure, Climate",
"providers": "Microsoft, ORNL DAAC",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr",
"variables": "vp, lat, lon, swe, prcp, tmax, tmin, time_bnds, lambert_conformal_conic",
"dimensions": "x, y, nv, time",
"assets": ""
},
{
"title": "Deltares Global Flood Maps",
"id": "deltares-floods",
"description": "Global estimates of coastal inundation under various sea level rise conditions and return periods.",
"bbox": "-180.0, 90.0, 180.0, -90.0",
"start_date": "2018-01-01",
"end_date": "2018-12-31",
"group_id": "",
"container": "floods",
"storage_account": "deltaresfloodssa",
"keywords": "Deltares, Flood, Sea level rise, Water, Global",
"providers": "Deltares, Microsoft",
"license": "CDLA-Permissive-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods",
"variables": "inun, projection",
"dimensions": "lat, lon, time",
"assets": "data, index"
},
{
"title": "Deltares Global Water Availability",
"id": "deltares-water-availability",
"description": "Historical daily reservoir variations.",
"bbox": "-180.0, 90.0, 180.0, -90.0",
"start_date": "1970-01-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "reservoirs",
"storage_account": "deltaresreservoirssa",
"keywords": "Deltares, Water availability, Reservoir, Water, Precipitation",
"providers": "Deltares, Microsoft",
"license": "CDLA-Permissive-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability",
"variables": "P, ETa, PET, Melt, Snow, Temp, P_res, S_res, Ea_res, Qin_res, FracFull, Qout_res, latitude, longitude",
"dimensions": "time, GrandID, ksathorfrac",
"assets": "data, index"
},
{
"title": "Denver Regional Council of Governments Land Use Land Cover",
"id": "drcog-lulc",
"description": "2018 and 2020 Land Use/Land Cover classification of the Denver, Colorado region.",
"bbox": "-105.93962510864995, 39.10438697007073, -103.66801443832743, 40.320593119647256",
"start_date": "2018-01-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "drcog-lulc",
"storage_account": "landcoverdata",
"keywords": "Land Cover, Land Use, NAIP, USDA",
"providers": "Denver Regional Council of Governments, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "ECMWF Open Data (real-time)",
"id": "ecmwf-forecast",
"description": "ECMWF Open Data (Real Time) forecasts",
"bbox": "-180.0, 90.0, 180.0, -90.0",
"start_date": "",
"end_date": "",
"group_id": "",
"container": "ecmwf",
"storage_account": "ai4edatauewest",
"keywords": "ECMWF, forecast, weather",
"providers": "ECMWF",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast",
"variables": "",
"dimensions": "",
"assets": "data, index"
},
{
"title": "ERA5 - PDS",
"id": "era5-pds",
"description": "A comprehensive reanalysis, which assimilates as many observations as possible in the upper air and near surface.",
"bbox": "-180, -90, 180, 90",
"start_date": "1979-01-01",
"end_date": "",
"group_id": "",
"container": "era5",
"storage_account": "cpdataeuwest",
"keywords": "ERA5, ECMWF, Precipitation, Temperature, Reanalysis, Weather",
"providers": "ECMWF, Planet OS, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds",
"variables": "time1_bounds, surface_air_pressure, sea_surface_temperature, eastward_wind_at_10_metres, air_temperature_at_2_metres, eastward_wind_at_100_metres, northward_wind_at_10_metres, northward_wind_at_100_metres, air_pressure_at_mean_sea_level, dew_point_temperature_at_2_metres, precipitation_amount_1hour_Accumulation, air_temperature_at_2_metres_1hour_Maximum, air_temperature_at_2_metres_1hour_Minimum, integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation",
"dimensions": "lat, lon, time",
"assets": "surface_air_pressure, sea_surface_temperature, eastward_wind_at_10_metres, air_temperature_at_2_metres, eastward_wind_at_100_metres, northward_wind_at_10_metres, northward_wind_at_100_metres, air_pressure_at_mean_sea_level, dew_point_temperature_at_2_metres, precipitation_amount_1hour_Accumulation, air_temperature_at_2_metres_1hour_Maximum, air_temperature_at_2_metres_1hour_Minimum, integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation"
},
{
"title": "ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)",
"id": "esa-cci-lc",
"description": "Tiled ESA CCI global land cover maps in COG format",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1992-01-01",
"end_date": "2020-12-31",
"group_id": "esa-cci-lc",
"container": "esa-cci-lc",
"storage_account": "landcoverdata",
"keywords": "Land Cover, ESA, CCI, Global",
"providers": "VITO, UCLouvain, Brockmann Consult, ESA Climate Change Initiative, Copernicus, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc",
"variables": "",
"dimensions": "",
"assets": "lccs_class, change_count, processed_flag, observation_count, current_pixel_state"
},
{
"title": "ESA Climate Change Initiative Land Cover Maps (NetCDF)",
"id": "esa-cci-lc-netcdf",
"description": "ESA CCI global land cover maps in NetCDF format",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1992-01-01",
"end_date": "2020-12-31",
"group_id": "esa-cci-lc",
"container": "esa-cci-lc",
"storage_account": "landcoverdata",
"keywords": "Land Cover, ESA, CCI, Global",
"providers": "VITO, UCLouvain, Brockmann Consult, ESA Climate Change Initiative, Copernicus, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf",
"variables": "",
"dimensions": "",
"assets": "netcdf"
},
{
"title": "ESA WorldCover",
"id": "esa-worldcover",
"description": "Global land cover product at 10 meter resolution based on Sentinel-1 and Sentinel-2 data",
"bbox": "-180.0, -60.0, 180.0, 82.75",
"start_date": "2020-01-01",
"end_date": "2021-12-31",
"group_id": "",
"container": "esa-worldcover",
"storage_account": "ai4edataeuwest",
"keywords": "Global, Land Cover, Sentinel, ESA",
"providers": "ESA, ESA WorldCover Consortium, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover",
"variables": "",
"dimensions": "",
"assets": "map, input_quality"
},
{
"title": "Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)",
"id": "nasa-nex-gddp-cmip6",
"description": [
"Global downscaled climate scenarios derived from the General Circulation Model conducted under CMIP6."
],
"bbox": "-180, -90, 180, 90",
"start_date": "1950-01-01",
"end_date": "2100-12-31",
"group_id": "",
"container": "nex-gddp-cmip6",
"storage_account": "nasagddp",
"keywords": "CMIP6, NASA, Climate, Humidity, Precipitation, Temperature",
"providers": "NASA NEX, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6",
"variables": "pr, tas, hurs, huss, rlds, rsds, tasmax, tasmin, sfcWind",
"dimensions": "lat, lon, time",
"assets": "pr, tas, hurs, huss, rlds, rsds, tasmax, tasmin, sfcWind"
},
{
"title": "Esri 10-Meter Land Cover (10-class)",
"id": "io-lulc",
"description": "Global land cover information for 2020 at 10m resolution",
"bbox": "-180, -90, 180, 90",
"start_date": "2017-01-01",
"end_date": "2021-01-01",
"group_id": "io-land-cover",
"container": "io-lulc",
"storage_account": "ai4edataeuwest",
"keywords": "Global, Land Cover, Land Use, Sentinel",
"providers": "Esri, Impact Observatory, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "FWS National Wetlands Inventory",
"id": "fws-nwi",
"description": "Vector dataset containing wetlands boundaries and identification across the United States.",
"bbox": "-64.54958, 13.16667, 144.6, 71.99633",
"start_date": "2022-10-01",
"end_date": "2022-10-01",
"group_id": "",
"container": "fws-nwi",
"storage_account": "ai4edataeuwest",
"keywords": "USFWS, Wetlands, United States",
"providers": "U.S. Fish and Wildlife Service, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi",
"variables": "",
"dimensions": "",
"assets": "zip"
},
{
"title": "Forest Inventory and Analysis",
"id": "fia",
"description": "Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service's Forest Inventory and Analysis (FIA) program",
"bbox": "138.06, 0.92, 163.05, 9.78",
"start_date": "2020-06-01",
"end_date": "",
"group_id": "",
"container": "cpdata",
"storage_account": "cpdataeuwest",
"keywords": "Forest, Species, Carbon, Biomass, USDA, Forest Service",
"providers": "Forest Inventory & Analysis, CarbonPlan, Microsoft",
"license": "CC0-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "GOES-R Cloud & Moisture Imagery",
"id": "goes-cmi",
"description": "High temporal cadence cloud and moisture imagery over the Western Hemisphere from the Advanced Baseline Imager (ABI) instrument.",
"bbox": "-180.0, -81.33, 6.3, 81.33",
"start_date": "2017-02-28",
"end_date": "",
"group_id": "goes",
"container": "noaa-goes-cogs",
"storage_account": "goeseuwest",
"keywords": "GOES, NOAA, NASA, Satellite, Cloud, Moisture",
"providers": "NASA, NOAA, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi",
"variables": "",
"dimensions": "",
"assets": "C01_1km, C01_2km, C02_2km, C03_1km, C03_2km, C04_2km, C05_1km, C05_2km, C06_2km, C07_2km, C08_2km, C09_2km, C10_2km, C11_2km, C12_2km, C13_2km, C14_2km, C15_2km, C16_2km, MCMIP-nc, C02_0.5km, C01_2km_wm, C02_2km_wm, C03_2km_wm, C01_DQF_1km, C01_DQF_2km, C02_DQF_2km, C03_DQF_1km, C03_DQF_2km, C04_DQF_2km, C05_DQF_1km, C05_DQF_2km, C06_DQF_2km, C07_DQF_2km, C08_DQF_2km, C09_DQF_2km, C10_DQF_2km, C11_DQF_2km, C12_DQF_2km, C13_DQF_2km, C14_DQF_2km, C15_DQF_2km, C16_DQF_2km, CMIP_C01-nc, CMIP_C02-nc, CMIP_C03-nc, CMIP_C04-nc, CMIP_C05-nc, CMIP_C06-nc, CMIP_C07-nc, CMIP_C08-nc, CMIP_C09-nc, CMIP_C10-nc, CMIP_C11-nc, CMIP_C12-nc, CMIP_C13-nc, CMIP_C14-nc, CMIP_C15-nc, CMIP_C16-nc, C02_DQF_0.5km"
},
{
"title": "GOES-R Lightning Detection",
"id": "goes-glm",
"description": "Continuous lightning detection over the Western Hemisphere from the Geostationary Lightning Mapper (GLM) instrument.",
"bbox": "-180.0, -66.56, -8.44, 66.56",
"start_date": "2018-02-13",
"end_date": "",
"group_id": "goes",
"container": "noaa-goes-geoparquet",
"storage_account": "goeseuwest",
"keywords": "GOES, NOAA, NASA, Satellite, Lightning, Weather",
"providers": "NASA, NOAA, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm",
"variables": "",
"dimensions": "",
"assets": "netcdf, geoparquet_events, geoparquet_groups, geoparquet_flashes"
},
{
"title": "GPM IMERG",
"id": "gpm-imerg-hhr",
"description": "The Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information from the GPM satellite constellation to estimate precipitation over the majority of the Earth's surface.",
"bbox": "-180, -90, 180, 90",
"start_date": "2000-06-01",
"end_date": "2021-05-31",
"group_id": "",
"container": "imerg",
"storage_account": "ai4edataeuwest",
"keywords": "IMERG, GPM, Precipitation",
"providers": "Development Seed, Microsoft, NASA",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr",
"variables": "lat_bnds, lon_bnds, time_bnds, randomError, HQprecipSource, HQprecipitation, IRprecipitation, precipitationCal, HQobservationTime, precipitationUncal, IRkalmanFilterWeight, precipitationQualityIndex, probabilityLiquidPrecipitation",
"dimensions": "lat, lon, time",
"assets": ""
},
{
"title": "Global Biodiversity Information Facility (GBIF)",
"id": "gbif",
"description": "Global biodiversity observation records, documenting over 1.6 billion species occurrences",
"bbox": "-180, -90, 180, 90",
"start_date": "2021-04-13",
"end_date": "",
"group_id": "",
"container": "gbif",
"storage_account": "ai4edataeuwest",
"keywords": "GBIF, Biodiversity, Species",
"providers": "Global Biodiversity Information Facility, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Global Ocean Heat Content CDR",
"id": "noaa-cdr-ocean-heat-content",
"description": "The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1972-03-01",
"end_date": "2022-03-31",
"group_id": "noaa-cdr",
"container": "ocean-heat-content",
"storage_account": "noaacdr",
"keywords": "Global, Climate, NOAA, Temperature, Ocean",
"providers": "National Centers for Environmental Information, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content",
"variables": "",
"dimensions": "",
"assets": "heat_content, mean_salinity, mean_temperature, mean_halosteric_sea_level, mean_thermosteric_sea_level, mean_total_steric_sea_level"
},
{
"title": "Global Ocean Heat Content CDR NetCDFs",
"id": "noaa-cdr-ocean-heat-content-netcdf",
"description": "The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1972-03-01",
"end_date": "2022-03-31",
"group_id": "noaa-cdr",
"container": "ocean-heat-content",
"storage_account": "noaacdr",
"keywords": "Global, Climate, NOAA, Temperature, Ocean",
"providers": "National Centers for Environmental Information, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf",
"variables": "",
"dimensions": "",
"assets": "netcdf"
},
{
"title": "Gnatsgo Soil Database - Rasters",
"id": "gnatsgo-rasters",
"description": "Raster data for the gridded National Soil Survey Geographic Database (gNATSGO), a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.",
"bbox": "-170.8513, -14.3799, -169.4152, -14.1432",
"start_date": "2020-07-01",
"end_date": "2020-07-01",
"group_id": "gnatsgo",
"container": "gnatsgo-stac",
"storage_account": "soils",
"keywords": "Soils, NATSGO, SSURGO, STATSGO2, RSS, USDA, United States",
"providers": "United States Department of Agriculture, Natural Resources Conservation Service, Microsoft",
"license": "CC0-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters",
"variables": "",
"dimensions": "",
"assets": "mukey, aws0_5, soc0_5, tk0_5a, tk0_5s, aws0_20, aws0_30, aws5_20, soc0_20, soc0_30, soc5_20, tk0_20a, tk0_20s, tk0_30a, tk0_30s, tk5_20a, tk5_20s, aws0_100, aws0_150, aws0_999, aws20_50, droughty, nccpi3sg, soc0_100, soc0_150, soc0_999, soc20_50, tk0_100a, tk0_100s, tk0_150a, tk0_150s, tk0_999a, tk0_999s, tk20_50a, tk20_50s, aws50_100, musumcpct, nccpi3all, nccpi3cot, nccpi3soy, pwsl1pomu, rootznaws, rootznemc, soc50_100, tk50_100a, tk50_100s, aws100_150, aws150_999, musumcpcta, musumcpcts, nccpi3corn, pctearthmc, soc100_150, soc150_999, tk100_150a, tk100_150s, tk150_999a, tk150_999s"
},
{
"title": "Gnatsgo Soil Database - Tables",
"id": "gnatsgo-tables",
"description": "The gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.",
"bbox": "-170.8513, -14.3799, -169.4152, -14.1432",
"start_date": "2020-07-01",
"end_date": "2020-07-01",
"group_id": "gnatsgo",
"container": "gnatsgo-stac",
"storage_account": "soils",
"keywords": "Soils, NATSGO, SSURGO, STATSGO2, RSS, USDA, United States",
"providers": "United States Department of Agriculture, Natural Resources Conservation Service, Microsoft",
"license": "CC0-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "Gridmet",
"id": "gridmet",
"description": "Daily high-spatial resolution surface meteorological data covering the contiguous United States from 1979 to the present",
"bbox": "-124.76666663333334, 25.066666666666666, -67.05833330000002, 49.400000000000006",
"start_date": "1979-01-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "gridmet",
"storage_account": "ai4edataeuwest",
"keywords": "gridMET, Water, Precipitation, Temperature, Vapor Pressure, Climate",
"providers": "Development Seed, Microsoft, Climatology Lab, Abatzoglou, J.T.",
"license": "CC0-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet",
"variables": "wind_speed, air_temperature, burning_index_g, relative_humidity, specific_humidity, wind_from_direction, precipitation_amount, dead_fuel_moisture_100hr, dead_fuel_moisture_1000hr, mean_vapor_pressure_deficit, potential_evapotranspiration, surface_downwelling_shortwave_flux_in_air",
"dimensions": "lat, lon, time",
"assets": ""
},
{
"title": "HGB: Harmonized Global Biomass for 2010",
"id": "hgb",
"description": "Global maps of aboveground and belowground biomass carbon density for the year 2010 at 300m resolution",
"bbox": "-180.0, -61.002778, 180.0, 84.0",
"start_date": "2010-12-31",
"end_date": "2010-12-31",
"group_id": "",
"container": "cpdata",
"storage_account": "cpdataeuwest",
"keywords": "Biomass, Carbon, ORNL",
"providers": "Oak Ridge National Laboratory Distributed Active Archive Center, CarbonPlan, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb",
"variables": "",
"dimensions": "",
"assets": "aboveground, belowground, aboveground_uncertainty, belowground_uncertainty"
},
{
"title": "HREA: High Resolution Electricity Access",
"id": "hrea",
"description": "Settlement-level measures of electricity access, reliability, and usage derived from VIIRS satellite imagery",
"bbox": "-117.413972, -55.54235, -53.092722, 32.718434",
"start_date": "2012-12-31",
"end_date": "2019-12-31",
"group_id": "",
"container": "hrea",
"storage_account": "hreadatasa",
"keywords": "HREA, Electricity, VIIRS",
"providers": "University of Michigan, Microsoft",
"license": "CC-BY-4.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea",
"variables": "",
"dimensions": "",
"assets": "lightscore, light-composite, night-proportion, estimated-brightness"
},
{
"title": "HydroForecast - Kwando & Upper Zambezi Rivers",
"id": "kaza-hydroforecast",
"description": "Seasonal river flow forecasts for the Kwando and Upper Zambezi rivers in the KAZA region of Africa, produced by Upstream Tech's HydroForecast model.",
"bbox": "21.04494, -17.792517, 23.343421, -13.08062",
"start_date": "2022-01-01",
"end_date": "",
"group_id": "",
"container": "hydroforecast",
"storage_account": "ai4edataeuwest",
"keywords": "Water, HydroForecast, Streamflow, Hydrology, Upstream Tech",
"providers": "Upstream Tech, Microsoft",
"license": "CDLA-Sharing-1.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast",
"variables": "",
"dimensions": "",
"assets": "data"
},
{
"title": "JRC Global Surface Water",
"id": "jrc-gsw",
"description": "Global surface water distribution and dynamics from 1984 to 2020",
"bbox": "-180.0, -56.0, 180.0, 78.0",
"start_date": "1984-03-01",
"end_date": "2020-12-31",
"group_id": "",
"container": "jrc-gsw",
"storage_account": "ai4edataeuwest",
"keywords": "Global, Water, Landsat",
"providers": "European Commission Joint Research Centre, Google, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw",
"variables": "",
"dimensions": "",
"assets": "change, extent, occurrence, recurrence, seasonality, transitions"
},
{
"title": "Land Cover of Canada",
"id": "nrcan-landcover",
"description": "Collection of Land Cover products for Canada as produced by Natural Resources Canada using Landsat satellite imagery. This collection of cartographic products offers classified Land Cover of Canada at a 30 metre scale, updated on a 5 year basis.",
"bbox": "-141.003, 41.6755, -52.6174, 83.1139",
"start_date": "2015-01-01",
"end_date": "2020-01-01",
"group_id": "",
"container": "landcover",
"storage_account": "nrcanlandcovereuwest",
"keywords": "Land Cover, Remote Sensing, Landsat, North America, Canada",
"providers": "Natural Resources Canada | Ressources naturelles Canada, Sparkgeo, Microsoft",
"license": "OGL-Canada-2.0",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover",
"variables": "",
"dimensions": "",
"assets": "metadata, landcover"
},
{
"title": "Landsat Collection 2 Level-1",
"id": "landsat-c2-l1",
"description": "Landsat Collection 2 Level-1 data from the Multispectral Scanner System (MSS) onboard Landsat 1 through Landsat 5.",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1972-07-25",
"end_date": "2013-01-07",
"group_id": "landsat",
"container": "landsat-c2",
"storage_account": "landsateuwest",
"keywords": "Landsat, USGS, NASA, Satellite, Global, Imagery",
"providers": "NASA, USGS, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1",
"variables": "",
"dimensions": "",
"assets": "red, green, nir08, nir09, mtl.txt, mtl.xml, mtl.json, qa_pixel, qa_radsat"
},
{
"title": "Landsat Collection 2 Level-2",
"id": "landsat-c2-l2",
"description": "Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.",
"bbox": "-180.0, -90.0, 180.0, 90.0",
"start_date": "1982-08-22",
"end_date": "",
"group_id": "landsat",
"container": "landsat-c2",
"storage_account": "landsateuwest",
"keywords": "Landsat, USGS, NASA, Satellite, Global, Imagery, Reflectance, Temperature",
"providers": "NASA, USGS, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2",
"variables": "",
"dimensions": "",
"assets": "qa, ang, red, blue, drad, emis, emsd, lwir, trad, urad, atran, cdist, green, nir08, lwir11, swir16, swir22, coastal, mtl.txt, mtl.xml, cloud_qa, mtl.json, qa_pixel, qa_radsat, qa_aerosol, atmos_opacity"
},
{
"title": "MODIS Burned Area Monthly",
"id": "modis-64A1-061",
"description": "MODIS Burned Area Monthly",
"bbox": "-180, -90, 180, 90",
"start_date": "2000-11-01",
"end_date": "",
"group_id": "modis",
"container": "modis-061",
"storage_account": "modiseuwest",
"keywords": "NASA, MODIS, Satellite, Imagery, Global, Fire, MCD64A1",
"providers": "NASA LP DAAC at the USGS EROS Center, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061",
"variables": "",
"dimensions": "",
"assets": "QA, hdf, Last_Day, metadata, Burn_Date, First_Day, Burn_Date_Uncertainty"
},
{
"title": "MODIS Gross Primary Productivity 8-Day",
"id": "modis-17A2H-061",
"description": "MODIS Gross Primary Productivity 8-Day",
"bbox": "-180, -90, 180, 90",
"start_date": "2000-02-18",
"end_date": "",
"group_id": "modis",
"container": "modis-061",
"storage_account": "modiseuwest",
"keywords": "NASA, MODIS, Satellite, Vegetation, Global, MOD17A2H, MYD17A2H",
"providers": "NASA LP DAAC at the USGS EROS Center, Microsoft",
"license": "proprietary",
"link": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061",
"variables": "",
"dimensions": "",
"assets": "hdf, Gpp_500m, metadata, PsnNet_500m, Psn_QC_500m"
},
{
"title": "MODIS Gross Primary Productivity 8-Day Gap-Filled",
"id": "modis-17A2HGF-061",
"description": "MODIS Gross Primary Productivity 8-Day Gap-Filled",
"bbox": "-180, -90, 180, 90",
"start_date": "2000-02-18",
"end_date": "",