forked from opengeos/geospatial-data-catalogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aws_geo_datasets.json
10371 lines (10371 loc) · 541 KB
/
aws_geo_datasets.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
[
{
"Name": "10m Annual Land Use Land Cover (9-class)",
"Description": "10m Annual Land Use Land Cover (9-class)",
"ARN": "arn:aws:s3:::io-10m-annual-lulc",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://www.impactobservatory.com/global_maps",
"Contact": "hello@impactobservatory.com",
"ManagedBy": "[Impact Observatory](https://www.impactobservatory.com/)",
"UpdateFrequency": "A new year is made available annually, each January. A new time series was provi",
"License": "[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)",
"Tags": "aws-pds, earth observation, environmental, geospatial, satellite imagery, sustainability, stac, cog, land cover, land use, machine learning, mapping, planetary",
"RequesterPays": null,
"Explore": [
"[STAC 1.0.0 endpoint](https://api.impactobservatory.com/stac-aws/collections/io-annual-lulc)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "2021 Amazon Last Mile Routing Research Challenge Dataset",
"Description": "Dataset including training and testing data Folder almrrc2021_data_training inc",
"ARN": "arn:aws:s3:::amazon-last-mile-challenges",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/MIT-CAVE/rc-cli/blob/main/templates/data_structures.md",
"Contact": "lastmile-research-challenge@amazon.com",
"ManagedBy": "[Amazon](https://www.amazon.com/)",
"UpdateFrequency": "None",
"License": "Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. The material ",
"Tags": "transportation, machine learning, deep learning, amazon.science, urban, analytics, geospatial, logistics, last mile, optimization, routing",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "A2D2: Audi Autonomous Driving Dataset",
"Description": "http://a2d2audi",
"ARN": "arn:aws:s3:::aev-autonomous-driving-dataset",
"Region": "eu-central-1",
"Type": "S3 Bucket",
"Documentation": "http://a2d2.audi",
"Contact": "aevdrivingdataset@audi.de",
"ManagedBy": "[Audi AG](http://a2d2.audi/)",
"UpdateFrequency": "The dataset may be updated with additional or corrected data on a need-to-update",
"License": "https://creativecommons.org/licenses/by-nd/4.0/",
"Tags": "autonomous vehicles, deep learning, computer vision, lidar, mapping, machine learning, robotics, aws-pds",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ARPA-E PERFORM Forecast data - ARPA-E PERFORM Forecast data",
"Description": "ARPA-E PERFORM Forecast data",
"ARN": "arn:aws:s3:::arpa-e-perform/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/PERFORM-Forecasts/documentation",
"Contact": "https://github.com/openEDI/PERFORM-Forecasts/documentation/issues",
"ManagedBy": "[National Renewable Energy Laboratory](https://www.nrel.gov/)",
"UpdateFrequency": "As needed",
"License": "Creative Commons Attribution 3.0 United States License",
"Tags": "aws-pds, energy, environmental, geospatial, model, solar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ARPA-E PERFORM Forecast data - Forecasts and Actuals for The Electric Reliability Council of Texas (ERCOT)",
"Description": "Forecasts and Actuals for The Electric Reliability Council of Texas (ERCOT)",
"ARN": "arn:aws:s3:::arpa-e-perform/ERCOT/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/PERFORM-Forecasts/documentation",
"Contact": "https://github.com/openEDI/PERFORM-Forecasts/documentation/issues",
"ManagedBy": "[National Renewable Energy Laboratory](https://www.nrel.gov/)",
"UpdateFrequency": "As needed",
"License": "Creative Commons Attribution 3.0 United States License",
"Tags": "aws-pds, energy, environmental, geospatial, model, solar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ARPA-E PERFORM Forecast data - Forecasts and Actuals for The Midcontinent Independent System Operator (MISO)",
"Description": "Forecasts and Actuals for The Midcontinent Independent System Operator (MISO)",
"ARN": "arn:aws:s3:::arpa-e-perform/MISO/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/PERFORM-Forecasts/documentation",
"Contact": "https://github.com/openEDI/PERFORM-Forecasts/documentation/issues",
"ManagedBy": "[National Renewable Energy Laboratory](https://www.nrel.gov/)",
"UpdateFrequency": "As needed",
"License": "Creative Commons Attribution 3.0 United States License",
"Tags": "aws-pds, energy, environmental, geospatial, model, solar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ARPA-E PERFORM Forecast data - Forecasts and Actuals for The New York Independent System Operator (NYISO)",
"Description": "Forecasts and Actuals for The New York Independent System Operator (NYISO)",
"ARN": "arn:aws:s3:::arpa-e-perform/NYISO/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/PERFORM-Forecasts/documentation",
"Contact": "https://github.com/openEDI/PERFORM-Forecasts/documentation/issues",
"ManagedBy": "[National Renewable Energy Laboratory](https://www.nrel.gov/)",
"UpdateFrequency": "As needed",
"License": "Creative Commons Attribution 3.0 United States License",
"Tags": "aws-pds, energy, environmental, geospatial, model, solar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ARPA-E PERFORM Forecast data - Forecasts and Actuals for The Southwest Power Pool (SPP)",
"Description": "Forecasts and Actuals for The Southwest Power Pool (SPP)",
"ARN": "arn:aws:s3:::arpa-e-perform/SPP/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/PERFORM-Forecasts/documentation",
"Contact": "https://github.com/openEDI/PERFORM-Forecasts/documentation/issues",
"ManagedBy": "[National Renewable Energy Laboratory](https://www.nrel.gov/)",
"UpdateFrequency": "As needed",
"License": "Creative Commons Attribution 3.0 United States License",
"Tags": "aws-pds, energy, environmental, geospatial, model, solar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ASTER L1T Cloud-Optimized GeoTIFFs - Imagery and metadata",
"Description": "Imagery and metadata",
"ARN": "arn:aws:s3:::aster-l1t",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/awslabs/open-data-docs/tree/main/docs/aster-l1t",
"Contact": "opendata@descarteslabs.com",
"ManagedBy": "[Descartes Labs](https://descarteslabs.com/)",
"UpdateFrequency": "Daily",
"License": "There are no restrictions on the use of data, unless expressly identified prior ",
"Tags": "aws-pds, earth observation, satellite imagery, geospatial, natural resource, sustainability, mining, cog",
"RequesterPays": false,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ASTER L1T Cloud-Optimized GeoTIFFs - New image notifications",
"Description": "New image notifications",
"ARN": "arn:aws:sns:us-west-2:526859492376:aster-l1t-object_created",
"Region": "us-west-2",
"Type": "SNS Topic",
"Documentation": "https://github.com/awslabs/open-data-docs/tree/main/docs/aster-l1t",
"Contact": "opendata@descarteslabs.com",
"ManagedBy": "[Descartes Labs](https://descarteslabs.com/)",
"UpdateFrequency": "Daily",
"License": "There are no restrictions on the use of data, unless expressly identified prior ",
"Tags": "aws-pds, earth observation, satellite imagery, geospatial, natural resource, sustainability, mining, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Africa Soil Information Service (AfSIS) Soil Chemistry",
"Description": "Paired wet and dry chemistry measurements for georeferenced soilscollected by t",
"ARN": "arn:aws:s3:::afsis",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://github.com/qedsoftware/afsis-soil-chem-tutorial",
"Contact": "afsis@qed.ai",
"ManagedBy": "[QED](https://qed.ai/)",
"UpdateFrequency": "As required",
"License": "ODC Open Database License (\"[ODbL](https://opendatacommons.org/licenses/odbl/sum",
"Tags": "agriculture, aws-pds, environmental, food security, machine learning, life sciences",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazonia EO satellite on AWS - Amazonia 1 imagery (COG files)",
"Description": "Amazonia 1 imagery (COG files)",
"ARN": "arn:aws:s3:::amazonia-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "http://www.inpe.br/amazonia1",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, sustainability, disaster response, stac, cog",
"RequesterPays": false,
"Explore": [
"[STAC V1.0.0 endpoint](https://stac.amskepler.com/v100)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazonia EO satellite on AWS - Amazonia 1 metadata (Quicklooks, metadata)",
"Description": "Amazonia 1 metadata (Quicklooks, metadata)",
"ARN": "arn:aws:s3:::amazonia-meta-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "http://www.inpe.br/amazonia1",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, sustainability, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazonia EO satellite on AWS - Notifications for new quicklooks",
"Description": "Notifications for new quicklooks",
"ARN": "arn:aws:sns:us-east-1:599544552497:NewAMQuicklook",
"Region": "us-east-1",
"Type": "SNS Topic",
"Documentation": "http://www.inpe.br/amazonia1",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, sustainability, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazonia EO satellite on AWS - Topic that receives STAC V100 items as new scenes are ingested",
"Description": "Topic that receives STAC V100 items as new scenes are ingested",
"ARN": "arn:aws:sns:us-east-1:769537946825:cbers2stac-prod-stacitemtopic4BCE3141-VI09VRB6LBEK",
"Region": "us-east-1",
"Type": "SNS Topic",
"Documentation": "http://www.inpe.br/amazonia1",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, sustainability, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Analysis Ready Sentinel-1 Backscatter Imagery - Sentinel-1 RTC tiled data and metadata in a S3 bucket",
"Description": "Sentinel-1 RTC tiled data and metadata in a S3 bucket",
"ARN": "arn:aws:s3:::sentinel-s1-rtc-indigo",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://sentinel-s1-rtc-indigo-docs.s3-us-west-2.amazonaws.com/index.html",
"Contact": "For questions regarding data methodology or delivery, contact sentinel1@indigoag",
"ManagedBy": "[Indigo Ag, Inc.](https://www.indigoag.com/)",
"UpdateFrequency": "Data updates are paused while we repair the processing pipeline, but the target ",
"License": "The use of these data fall under the terms and conditions of the [Indigo Atlas S",
"Tags": "agriculture, aws-pds, disaster response, earth observation, environmental, geospatial, satellite imagery, cog, stac, synthetic aperture radar",
"RequesterPays": null,
"Explore": [
"[STAC V1.0.0 endpoint](https://scottyhq.github.io/sentinel1-rtc-stac/#/)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Analysis Ready Sentinel-1 Backscatter Imagery - Simple Notification Service (SNS) topic for notification of new tile uploads",
"Description": "Simple Notification Service (SNS) topic for notification of new tile uploads",
"ARN": "arn:aws:sns:us-west-2:410373799403:sentinel-s1-rtc-indigo-object_created",
"Region": "us-west-2",
"Type": "SNS Topic",
"Documentation": "https://sentinel-s1-rtc-indigo-docs.s3-us-west-2.amazonaws.com/index.html",
"Contact": "For questions regarding data methodology or delivery, contact sentinel1@indigoag",
"ManagedBy": "[Indigo Ag, Inc.](https://www.indigoag.com/)",
"UpdateFrequency": "Data updates are paused while we repair the processing pipeline, but the target ",
"License": "The use of these data fall under the terms and conditions of the [Indigo Atlas S",
"Tags": "agriculture, aws-pds, disaster response, earth observation, environmental, geospatial, satellite imagery, cog, stac, synthetic aperture radar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "ArcticDEM - ArcticDEM DEM Mosaics",
"Description": "ArcticDEM DEM Mosaics",
"ARN": "arn:aws:s3:::pgc-opendata-dems/arcticdem/mosaics/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://www.pgc.umn.edu/data/arcticdem/",
"Contact": "pgc-support@umn.edu",
"ManagedBy": "[Polar Geospatial Center](http://www.pgc.umn.edu/)",
"UpdateFrequency": "New DEM strips are added twice yearly. Mosaic products are added as soon as the",
"License": "[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecom",
"Tags": "aws-pds, elevation, earth observation, geospatial, mapping, open source software, satellite imagery, cog, stac",
"RequesterPays": null,
"Explore": [
"[Browse STAC Catalog](https://polargeospatialcenter.github.io/stac-browser/#/external/pgc-opendata-dems.s3.us-west-2.amazonaws.com/arcticdem/mosaics.json)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "ArcticDEM - ArcticDEM DEM Strips",
"Description": "ArcticDEM DEM Strips",
"ARN": "arn:aws:s3:::pgc-opendata-dems/arcticdem/strips/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://www.pgc.umn.edu/data/arcticdem/",
"Contact": "pgc-support@umn.edu",
"ManagedBy": "[Polar Geospatial Center](http://www.pgc.umn.edu/)",
"UpdateFrequency": "New DEM strips are added twice yearly. Mosaic products are added as soon as the",
"License": "[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecom",
"Tags": "aws-pds, elevation, earth observation, geospatial, mapping, open source software, satellite imagery, cog, stac",
"RequesterPays": null,
"Explore": [
"[Browse STAC Catalog](https://polargeospatialcenter.github.io/stac-browser/#/external/pgc-opendata-dems.s3.us-west-2.amazonaws.com/arcticdem/strips.json)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Argoverse",
"Description": "Argoverse",
"ARN": "arn:aws:s3:::argoverse",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://argoverse.github.io/user-guide/",
"Contact": "https://github.com/argoverse/av2-api/issues",
"ManagedBy": "[Argoverse](https://argoverse.org)",
"UpdateFrequency": "Infrequently",
"License": "[CC-BY-NC-SA-4.0](https://spdx.org/licenses/CC-BY-NC-SA-4.0.html)",
"Tags": "aws-pds, autonomous vehicles, computer vision, lidar, robotics, geospatial",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Astrophysics Division Galaxy Morphology Benchmark Dataset",
"Description": "NASA APD Galaxy Morphology dataset",
"ARN": "arn:aws:s3:::nasa-apd-galaxymorph",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://github.com/erinleeryan/nasa_astro_aiml/tree/main/galaxymorphology",
"Contact": "Roopesh.Ojha@nasa.gov",
"ManagedBy": "[NASA](https://osdr.nasa.gov/)",
"UpdateFrequency": "No updates",
"License": "There are no restrictions on the use of this data.",
"Tags": "aws-pds, astronomy, machine learning, satellite imagery, NASA SMD AI",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Atmospheric Models from M\u00e9t\u00e9o-France",
"Description": "Atmospheric Models from M\u00e9t\u00e9o-France",
"ARN": "arn:aws:s3:::mf-nwp-models",
"Region": "eu-west-1",
"Type": "S3 Bucket",
"Documentation": "https://mf-models-on-aws.org",
"Contact": "contact@openmeteodata.com",
"ManagedBy": "[OpenMeteoData](https://openmeteodata.com)",
"UpdateFrequency": "Every 6 hours",
"License": "https://mf-models-on-aws.org/en/doc/license",
"Tags": "aws-pds, agriculture, climate, disaster response, earth observation, environmental, meteorological, model, weather",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://mf-nwp-models.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Aurora Multi-Sensor Dataset",
"Description": "Aurora Multi-Sensor Dataset",
"ARN": "arn:aws:s3:::pit30m",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "A third-party development kit authored by Andrei B\u00e2rsan of the University of Tor",
"Contact": "ams-dataset@aurora.tech",
"ManagedBy": "Aurora Operations, Inc.",
"UpdateFrequency": "This dataset is complete.",
"License": "This data is intended for non-commercial academic use only. It is licensed under",
"Tags": "aws-pds, autonomous vehicles, computer vision, lidar, mapping, robotics, transportation, urban, weather, traffic, image processing, machine learning, deep learning",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CAM6 Data Assimilation Research Testbed (DART) Reanalysis: Cloud-Optimized Dataset",
"Description": "Project data files",
"ARN": "arn:aws:s3:::ncar-dart-cam6",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://doi.org/10.26024/sprq-2d04",
"Contact": "cisl-aws-lens@ucar.edu",
"ManagedBy": "[National Center for Atmospheric Research](https://ncar.ucar.edu/)",
"UpdateFrequency": "Infrequent. Additional variables or years outside of 2011-2019 may be added in ",
"License": "https://www.ucar.edu/terms-of-use/data",
"Tags": "atmosphere, land, climate, climate model, data assimilation, forecast, meteorological, weather, geoscience, geospatial, aws-pds, zarr",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CBERS on AWS - CBERS imagery (COG files, Requester Pays Bucket)",
"Description": "CBERS imagery (COG files, Requester Pays Bucket)",
"ARN": "arn:aws:s3:::cbers-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://github.com/fredliporace/cbers-on-aws",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, disaster response, stac, cog",
"RequesterPays": true,
"Explore": [
"[STAC V1.0.0 endpoint](https://stac.amskepler.com/v100)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CBERS on AWS - CBERS metadata (Quicklooks, metadata)",
"Description": "CBERS metadata (Quicklooks, metadata)",
"ARN": "arn:aws:s3:::cbers-meta-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://github.com/fredliporace/cbers-on-aws",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CBERS on AWS - Notifications for new CBERS 4 quicklooks, all sensors",
"Description": "Notifications for new CBERS 4 quicklooks, all sensors",
"ARN": "arn:aws:sns:us-east-1:599544552497:NewCB4Quicklook",
"Region": "us-east-1",
"Type": "SNS Topic",
"Documentation": "https://github.com/fredliporace/cbers-on-aws",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CBERS on AWS - Notifications for new CBERS 4A quicklooks, all sensors",
"Description": "Notifications for new CBERS 4A quicklooks, all sensors",
"ARN": "arn:aws:sns:us-east-1:599544552497:NewCB4AQuicklook",
"Region": "us-east-1",
"Type": "SNS Topic",
"Documentation": "https://github.com/fredliporace/cbers-on-aws",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CBERS on AWS - Topic that receives STAC V100 items as new scenes are ingested",
"Description": "Topic that receives STAC V100 items as new scenes are ingested",
"ARN": "arn:aws:sns:us-east-1:769537946825:cbers2stac-prod-stacitemtopic4BCE3141-VI09VRB6LBEK",
"Region": "us-east-1",
"Type": "SNS Topic",
"Documentation": "https://github.com/fredliporace/cbers-on-aws",
"Contact": "https://lists.osgeo.org/mailman/listinfo/cbers-pds",
"ManagedBy": "[AMS Kepler](https://amskepler.com/)",
"UpdateFrequency": "Daily",
"License": "https://creativecommons.org/licenses/by-sa/3.0/",
"Tags": "aws-pds, agriculture, earth observation, geospatial, imaging, satellite imagery, disaster response, stac, cog",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - 2016v3 Modeling Platform",
"Description": "2016v3 Modeling Platform",
"ARN": "arn:aws:s3:::2016v3platform",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://2016v3platform.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - 2019 Modeling Platform",
"Description": "2019 Modeling Platform",
"ARN": "arn:aws:s3:::2019platform",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://2019platform.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - AMET Data",
"Description": "AMET Data",
"ARN": "arn:aws:s3:::cmas-amet",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-amet.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - CMAQ 2018 Modeling Platform",
"Description": "CMAQ 2018 Modeling Platform",
"ARN": "arn:aws:s3:::cmas-cmaq-modeling-platform-2018",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-cmaq-modeling-platform-2018.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - CMAQ Benchmark Data",
"Description": "CMAQ Benchmark Data",
"ARN": "arn:aws:s3:::cmas-cmaq",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-cmaq.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - CMAQ CONUS-2 Benchmark Data",
"Description": "CMAQ CONUS-2 Benchmark Data",
"ARN": "arn:aws:s3:::cmas-cmaq-conus2-benchmark",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-cmaq-conus2-benchmark.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - CMAQ Release Benchmark Data for Easy Download",
"Description": "CMAQ Release Benchmark Data for Easy Download",
"ARN": "arn:aws:s3:::cmaq-release-benchmark-data-for-easy-download",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmaq-release-benchmark-data-for-easy-download.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - CMAS WWLLN Lightning Data",
"Description": "CMAS WWLLN Lightning Data",
"ARN": "arn:aws:s3:::cmas-wwlln-lightning",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-wwlln-lightning.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - EQUATES EPA\u2019s Air QUAlity TimE Series Project Data",
"Description": "EQUATES EPA\u2019s Air QUAlity TimE Series Project Data",
"ARN": "arn:aws:s3:::cmas-equates",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-equates.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - SMOKE 2016 Modeling Platform",
"Description": "SMOKE 2016 Modeling Platform",
"ARN": "arn:aws:s3:::cmas-smoke-modeling-platform-2016",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-smoke-modeling-platform-2016.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMAS Data Warehouse - SMOKE Test Case",
"Description": "SMOKE Test Case",
"ARN": "arn:aws:s3:::cmas-smoke-testcase",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://dataverse.unc.edu/dataverse/cmascenter",
"Contact": "cmas@unc.edu",
"ManagedBy": "[CMAS CENTER](https://cmascenter.org/)",
"UpdateFrequency": "New data is added as soon as it is available.",
"License": "There are no restrictions on the use of this data. US EPA License (https://paste",
"Tags": "aws-pds, air quality, meteorological, geospatial, environmental, climate",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmas-smoke-testcase.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "CMIP6 GCMs downscaled using WRF",
"Description": "WRF output files",
"ARN": "arn:aws:s3:::wrf-cmip6-noversioning",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://dept.atmos.ucla.edu/alexhall/downscaling-cmip6",
"Contact": "srahimi@uwyo.edu, leih@ucla.edu",
"ManagedBy": "[UCLA Center for Climate Science](https://dept.atmos.ucla.edu/)",
"UpdateFrequency": "New downscaled results are uploaded as soon as they become available",
"License": "Creative Commons Attribution 4.0 International License",
"Tags": "aws-pds, agriculture, atmosphere, climate, earth observation, environmental, model, oceans, simulations, weather",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://wrf-cmip6-noversioning.s3.amazonaws.com/index.html)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Capella Space Synthetic Aperture Radar (SAR) Open Dataset - Capella Space Open Data in COG format",
"Description": "Capella Space Open Data in COG format",
"ARN": "arn:aws:s3:::capella-open-data/data/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "Documentation is available under [support.capellaspace.com](https://support.cape",
"Contact": "opendata@capellaspace.com",
"ManagedBy": "[Capella Space](https://www.capellaspace.com/)",
"UpdateFrequency": "New data is added quarterly.",
"License": "[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)",
"Tags": "aws-pds, cog, stac, earth observation, satellite imagery, geospatial, image processing, computer vision, synthetic aperture radar",
"RequesterPays": false,
"Explore": [
"[STAC Catalog](https://capella-open-data.s3.us-west-2.amazonaws.com/stac/catalog.json)",
"[STAC Browser](https://radiantearth.github.io/stac-browser/#/external/capella-open-data.s3.us-west-2.amazonaws.com/stac/catalog.json)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Capella Space Synthetic Aperture Radar (SAR) Open Dataset - Capella Space Open Data in TileDB format",
"Description": "Capella Space Open Data in TileDB format",
"ARN": "arn:aws:s3:::capella-open-data/data/tiledb/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "Documentation is available under [support.capellaspace.com](https://support.cape",
"Contact": "opendata@capellaspace.com",
"ManagedBy": "[Capella Space](https://www.capellaspace.com/)",
"UpdateFrequency": "New data is added quarterly.",
"License": "[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)",
"Tags": "aws-pds, cog, stac, earth observation, satellite imagery, geospatial, image processing, computer vision, synthetic aperture radar",
"RequesterPays": false,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Central Weather Administration OpenData",
"Description": "CWA data lake",
"ARN": "arn:aws:s3:::cwaopendata",
"Region": "ap-northeast-1",
"Type": "S3 Bucket",
"Documentation": "https://opendata.cwa.gov.tw/devManual/insrtuction",
"Contact": "od@cwa.gov.tw",
"ManagedBy": "[Central Weather Administration](https://www.cwa.gov.tw/)",
"UpdateFrequency": "Data is updated as soon as newer one is available.",
"License": "http://data.gov.tw/license",
"Tags": "aws-pds, climate, earth observation, earthquakes, satellite imagery, weather",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Central Weather Bureau OpenData",
"Description": "CWB data lake",
"ARN": "arn:aws:s3:::cwbopendata",
"Region": "ap-northeast-1",
"Type": "S3 Bucket",
"Documentation": "https://opendata.cwb.gov.tw/devManual/insrtuction",
"Contact": "od@cwb.gov.tw",
"ManagedBy": "[Central Weather Bureau](https://www.cwb.gov.tw/)",
"UpdateFrequency": "Data is updated as soon as newer one is available.",
"License": "http://data.gov.tw/license",
"Tags": "aws-pds, climate, earth observation, earthquakes, satellite imagery, weather",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Cloud Indexes for Bowtie, Kraken, HISAT, and Centrifuge",
"Description": "This bucket contains genomic indexes for Bowtie, Kraken, HISAT, and Centrifuge",
"ARN": "arn:aws:s3:::genome-idx",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "https://benlangmead.github.io/aws-indexes/",
"Contact": "https://github.com/BenLangmead/aws-indexes/issues",
"ManagedBy": "Langmead Lab at Johns Hopkins University & Kim Lab at University of Texas Southw",
"UpdateFrequency": "As new data becomes available; roughly quarterly",
"License": "Public Domain",
"Tags": "aws-pds, genomic, bioinformatics, biology, whole genome sequencing, medicine, reference index, mapping",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Cloud to Street - Microsoft Flood and Clouds Dataset",
"Description": "Flood and Cloud Training Dataset",
"ARN": "arn:aws:s3:::radiant-mlhub/c2smsfloods",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://www.drivendata.org/competitions/81/detect-flood-water/",
"Contact": "support@cloudtostreet.info",
"ManagedBy": "[Radiant Earth Foundation](https://radiant.earth/)",
"UpdateFrequency": "Not updated",
"License": "CC-BY-4.0 https://creativecommons.org/licenses/by/4.0/",
"Tags": "aws-pds, computer vision, deep learning, machine learning, floods, geospatial, earth observation, satellite imagery, cog, synthetic aperture radar",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Co-Produced Climate Data to Support California's Resilience Investments",
"Description": "Data catalog",
"ARN": "arn:aws:s3:::cadcat",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://analytics.cal-adapt.org/data/",
"Contact": "analytics@cal-adapt.org",
"ManagedBy": "Cal-Adapt Analytics Engine https://analytics.cal-adapt.org/",
"UpdateFrequency": "Infrequent, Irregular",
"License": "Varies, see dataset specific metadata",
"Tags": "atmosphere, aws-pds, climate, climate model, earth observation, geoscience, geospatial, meteorological, simulations, weather, zarr",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cadcat.s3.amazonaws.com/index.html)",
"[Data Catalog](https://cadcat.s3.amazonaws.com/cae.yaml)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Community Earth System Model Large Ensemble (CESM LENS)",
"Description": "Project data files",
"ARN": "arn:aws:s3:::ncar-cesm-lens",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://doi.org/10.26024/wt24-5j82",
"Contact": "cisl-aws-lens@ucar.edu",
"ManagedBy": "[National Center for Atmospheric Research](https://ncar.ucar.edu/)",
"UpdateFrequency": "Rare. The LENS experiment is complete, but we may occasionally copy additional f",
"License": "https://www.ucar.edu/terms-of-use/data",
"Tags": "climate, model, climate model, atmosphere, oceans, land, ice, geospatial, aws-pds, sustainability, zarr",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Community Earth System Model v2 ARISE (CESM2 ARISE)",
"Description": "Project data files",
"ARN": "arn:aws:s3:::ncar-cesm2-arise",
"Region": "us-east-2",
"Type": "S3 Bucket",
"Documentation": "(https://github.com/NCAR/CESM2-ARISE)",
"Contact": "opendata-aws-arise@ucar.edu",
"ManagedBy": "[National Center for Atmospheric Research](https://ncar.ucar.edu/)",
"UpdateFrequency": "Rare once complete (August 2022)",
"License": "https://www.ucar.edu/terms-of-use/data",
"Tags": "climate, model, climate model, atmosphere, oceans, land, ice, geospatial, aws-pds, sustainability",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Community Earth System Model v2 Large Ensemble (CESM2 LENS)",
"Description": "Project data files",
"ARN": "arn:aws:s3:::ncar-cesm2-lens",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://doi.org/10.26024/y48t-q717",
"Contact": "cisl-aws-lens@ucar.edu",
"ManagedBy": "[National Center for Atmospheric Research](https://ncar.ucar.edu/)",
"UpdateFrequency": "Rare. The LENS experiment is complete, but we may occasionally copy additional f",
"License": "https://www.ucar.edu/terms-of-use/data",
"Tags": "climate, model, climate model, atmosphere, oceans, land, ice, geospatial, aws-pds, sustainability, zarr",
"RequesterPays": null,
"Explore": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Copernicus Digital Elevation Model (DEM) - GLO-30 Public in S3 bucket The list of tiles covering specific countries that a",
"Description": "GLO-30 Public in S3 bucket The list of tiles covering specific countries that a",
"ARN": "arn:aws:s3:::copernicus-dem-30m",
"Region": "eu-central-1",
"Type": "S3 Bucket",
"Documentation": "https://copernicus-dem-30m.s3.amazonaws.com/readme.html",
"Contact": "https://forum.sentinel-hub.com/c/aws-copdem/28",
"ManagedBy": "[Sinergise](https://www.sinergise.com/)",
"UpdateFrequency": "None, except GLO-30 Public can be updated if the public tile list changes.",
"License": "GLO-30 Public and GLO-90 are available on a free basis for the general public un",
"Tags": "aws-pds, agriculture, elevation, earth observation, satellite imagery, geospatial, disaster response, cog",
"RequesterPays": null,
"Explore": [
"[STAC V1.0.0 endpoint](https://copernicus-dem-30m-stac.s3.amazonaws.com/)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Copernicus Digital Elevation Model (DEM) - GLO-90 in S3 bucket",
"Description": "GLO-90 in S3 bucket",
"ARN": "arn:aws:s3:::copernicus-dem-90m",
"Region": "eu-central-1",
"Type": "S3 Bucket",
"Documentation": "https://copernicus-dem-30m.s3.amazonaws.com/readme.html",
"Contact": "https://forum.sentinel-hub.com/c/aws-copdem/28",
"ManagedBy": "[Sinergise](https://www.sinergise.com/)",
"UpdateFrequency": "None, except GLO-30 Public can be updated if the public tile list changes.",
"License": "GLO-30 Public and GLO-90 are available on a free basis for the general public un",
"Tags": "aws-pds, agriculture, elevation, earth observation, satellite imagery, geospatial, disaster response, cog",
"RequesterPays": null,
"Explore": [
"[STAC V1.0.0 endpoint](https://copernicus-dem-90m-stac.s3.amazonaws.com/)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Coupled Model Intercomparison Project 6 - Netcdf formatted data managed by the Earth System Grid Federation",
"Description": "Netcdf formatted data managed by the Earth System Grid Federation",
"ARN": "arn:aws:s3:::esgf-world",
"Region": "us-east-2",
"Type": "S3 Bucket",
"Documentation": "https://pangeo-data.github.io/pangeo-cmip6-cloud/, https://www.wcrp-climate.org/",
"Contact": "If you have any feedback on the CMIP6 data available on AWS please email sustain",
"ManagedBy": "ESGF and Pangeo",
"UpdateFrequency": "Core CMIP6 datasets are added as soon as they are available.",
"License": "See [docs] (https://pangeo-data.github.io/pangeo-cmip6-cloud/licensing_citation.",
"Tags": "aws-pds, agriculture, atmosphere, climate, earth observation, environmental, model, oceans, simulations, weather",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://esgf-world.s3.amazonaws.com/index.html)",
"[Data Catalog](https://cmip6-nc.s3.amazonaws.com/esgf-world.csv.gz)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Coupled Model Intercomparison Project 6 - Zarr formatted data",
"Description": "Zarr formatted data",
"ARN": "arn:aws:s3:::cmip6-pds",
"Region": "us-west-2",
"Type": "S3 Bucket",
"Documentation": "https://pangeo-data.github.io/pangeo-cmip6-cloud/, https://www.wcrp-climate.org/",
"Contact": "If you have any feedback on the CMIP6 data available on AWS please email sustain",
"ManagedBy": "ESGF and Pangeo",
"UpdateFrequency": "Core CMIP6 datasets are added as soon as they are available.",
"License": "See [docs] (https://pangeo-data.github.io/pangeo-cmip6-cloud/licensing_citation.",
"Tags": "aws-pds, agriculture, atmosphere, climate, earth observation, environmental, model, oceans, simulations, weather",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://cmip6-pds.s3.amazonaws.com/index.html#CMIP6/)",
"[Data Catalog](https://cmip6-pds.s3.amazonaws.com/pangeo-cmip6.csv)"
],
"AccountRequired": null,
"Host": null
},
{
"Name": "Coupled Model Intercomparison Project Phase 5 (CMIP5) University of Wisconsin-Madison Probabilistic Downscaling Dataset",
"Description": "Data files",
"ARN": "arn:aws:s3:::noaa-nws-uwpd-cmip5-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"Documentation": "http://djlorenz.github.io/downscaling2/main.html",
"Contact": "For questions about data development, quality and content, please contact Dr. Da",
"ManagedBy": "[NOAA](http://www.noaa.gov/)",
"UpdateFrequency": "Periodically, as new data becomes available or when corrections are implemented.",