forked from opengeos/geospatial-data-catalogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_open_datasets.json
14224 lines (14224 loc) · 720 KB
/
aws_open_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": "1000 Genomes",
"Description": "http://wwwinternationalgenomeorg/formats",
"ARN": "arn:aws:s3:::1000genomes",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/awslabs/open-data-docs/tree/main/docs/1000genomes",
"Contact": "http://www.internationalgenome.org/contact",
"ManagedBy": "National Institutes of Health",
"UpdateFrequency": "Not updated",
"License": "Data from the 1000 Genomes Project is now available without embargo, following t",
"Tags": "aws-pds, genetic, genomic, life sciences, whole genome sequencing, fastq",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1000 Genomes Phase 3 Reanalysis with DRAGEN 3.5 - Data Lakehouse Ready",
"Description": "Parquet representations of 1000 Genomes VCF outputs from DRAGEN, ready for enrol",
"ARN": "arn:aws:s3:::aws-roda-hcls-datalake/thousandgenomes_dragen",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/aws-samples/data-lake-as-code/tree/roda#readme",
"Contact": "https://github.com/aws-samples/data-lake-as-code/issues",
"ManagedBy": "[Amazon Web Services](https://aws.amazon.com/)",
"UpdateFrequency": "Not updated",
"License": "Data from the 1000 Genomes Project is now available without embargo, following t",
"Tags": "biology, bioinformatics, genetic, genomic, Homo sapiens, life sciences, parquet, population genetics, vcf",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1000 Genomes Phase 3 Reanalysis with DRAGEN 3.5 and 3.7 - BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, cyp2",
"Description": "BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, cyp2",
"ARN": "arn:aws:s3:::1000genomes-dragen-v3.7.6",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "[DRAGEN Support Resources](https://support.illumina.com/sequencing/sequencing_so",
"Contact": "[Illumina, Inc.](mailto:support@illumina.com)",
"ManagedBy": "[Illumina, Inc.](https://www.illumina.com/products/by-type/informatics-products/",
"UpdateFrequency": "Files may be updated subsequent to changes to the 1000 Genomes Project data set ",
"License": "TBD",
"Tags": "aws-pds, life sciences, health, biology, genetic, genomic, bam, vcf",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1000 Genomes Phase 3 Reanalysis with DRAGEN 3.5 and 3.7 - BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, cyp2",
"Description": "BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, cyp2",
"ARN": "arn:aws:s3:::1000genomes-dragen-3.7.6",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "[DRAGEN Support Resources](https://support.illumina.com/sequencing/sequencing_so",
"Contact": "[Illumina, Inc.](mailto:support@illumina.com)",
"ManagedBy": "[Illumina, Inc.](https://www.illumina.com/products/by-type/informatics-products/",
"UpdateFrequency": "Files may be updated subsequent to changes to the 1000 Genomes Project data set ",
"License": "TBD",
"Tags": "aws-pds, life sciences, health, biology, genetic, genomic, bam, vcf",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1000 Genomes Phase 3 Reanalysis with DRAGEN 3.5 and 3.7 - BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, metr",
"Description": "BAM, SNV-vcf, SNV-gvcf, STR-vcf, STR-bam, SV-vcf, ROH-vcf, CNV-vcf, CNV-bw, metr",
"ARN": "arn:aws:s3:::1000genomes-dragen",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "[DRAGEN Support Resources](https://support.illumina.com/sequencing/sequencing_so",
"Contact": "[Illumina, Inc.](mailto:support@illumina.com)",
"ManagedBy": "[Illumina, Inc.](https://www.illumina.com/products/by-type/informatics-products/",
"UpdateFrequency": "Files may be updated subsequent to changes to the 1000 Genomes Project data set ",
"License": "TBD",
"Tags": "aws-pds, life sciences, health, biology, genetic, genomic, bam, vcf",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"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",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://www.impactobservatory.com/global_maps",
"Contact": "hello@impactobservatory.com",
"ManagedBy": "[Impact Observatory](https://www.impactobservatory.com/)",
"UpdateFrequency": "Annually each January",
"License": "[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)",
"Tags": "earth observation, environmental, geospatial, satellite imagery, sustainability, stac, cog, land cover, land use, machine learning, mapping, planetary",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1940 Census Population Schedules, Enumeration District Maps, and Enumeration District Descriptions",
"Description": "1940 Census",
"ARN": "arn:aws:s3:::nara-1940-census",
"Region": "us-east-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://www.archives.gov/developer/1940-census",
"Contact": "public.dataset.program@nara.gov",
"ManagedBy": "National Archives and Records Administration (NARA)",
"UpdateFrequency": "Not updated",
"License": "US Government work",
"Tags": "nara, census, archives, 1940 census, demography, aws-pds",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "1950 Census Population Schedules, Enumeration District Maps, and Enumeration District Descriptions",
"Description": "1950 Census",
"ARN": "arn:aws:s3:::nara-1950-census",
"Region": "us-east-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://www.archives.gov/developer/1950-census",
"Contact": "public.dataset.program@nara.gov",
"ManagedBy": "National Archives and Records Administration (NARA)",
"UpdateFrequency": "Not updated",
"License": "US Government work",
"Tags": "nara, census, archives, 1950 census, demography, aws-pds",
"ControlledAccess": null,
"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",
"RequesterPays": null,
"Explore": null,
"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",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "3000 Rice Genomes Project",
"Description": "http://s3amazonawscom/3kricegenome/README-snp_pipelinetxt",
"ARN": "arn:aws:s3:::3kricegenome",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/awslabs/open-data-docs/tree/main/docs/3kricegenome",
"Contact": "http://iric.irri.org/contact-us",
"ManagedBy": "[International Rice Research Institute](https://www.irri.org/)",
"UpdateFrequency": "Not updated",
"License": "This data is available for anyone to use under the terms of the Toronto Statemen",
"Tags": "agriculture, food security, aws-pds, genetic, genomic, life sciences",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "3DCoMPaT: Composition of Materials on Parts of 3D Things",
"Description": "3DCoMPaT Dataset",
"ARN": "arn:aws:s3:::3dcompat-dataset",
"Region": "us-west-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": [
"[Website](https://3dcompat-dataset.org/)"
],
"Documentation": "https://3dcompat-dataset.org/",
"Contact": "mohamed.elhoseiny@kaust.edu.sa, yuchen.li@kaust.edu.sa",
"ManagedBy": "[Vision-CAIR, CEMSE, KAUST](https://cemse.kaust.edu.sa/vision-cair)",
"UpdateFrequency": "Continually improving 3D annotations and renderings",
"License": "https://3dcompat-dataset.org/LICENSE",
"Tags": "aws-pds, computer vision, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "4D Nucleome (4DN)",
"Description": "Released and archived 4DNucleome data",
"ARN": "arn:aws:s3:::4dn-open-data-public",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://data.4dnucleome.org",
"Contact": "support@4dnucleome.org",
"ManagedBy": "4DN Data Coordination and Integration Center (4DN-DCIC)",
"UpdateFrequency": "Daily",
"License": "External data users may freely download, analyze, and publish results based on a",
"Tags": "biology, bioinformatics, genetic, genomic, imaging, life sciences, aws-pds",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "A Global Drought and Flood Catalogue from 1950 to 2016",
"Description": "Global Drought and Flood Catalogue from 1950 to 2016 archive Files are in netcd",
"ARN": "arn:aws:s3:::global-drought-flood-catalogue",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": false,
"Explore": [
"[Browse Bucket](https://global-drought-flood-catalogue.s3.us-west-2.amazonaws.com/index.html)"
],
"Documentation": "https://prep-next.github.io/data/GDFC/index.html",
"Contact": "For any questions regrading dataset, email Professor Xiaogang He at hexg@nus.edu",
"ManagedBy": "[PREP-NexT Lab](https://github.com/PREP-NexT)",
"UpdateFrequency": "No future updates planned.",
"License": "GDFC archive is made available under [CC BY-SA 4.0](https://creativecommons.org/",
"Tags": "floods, global, netcdf, precipitation, near-surface specific humidity, near-surface air temperature",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "A Realistic Cyber Defense Dataset (CSE-CIC-IDS2018)",
"Description": "Network traffic and log files",
"ARN": "arn:aws:s3:::cse-cic-ids2018",
"Region": "ca-central-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "http://www.unb.ca/cic/datasets/ids-2018.html",
"Contact": "CIC@unb.ca",
"ManagedBy": "Canadian Institute for Cybersecurity",
"UpdateFrequency": "Annually",
"License": "http://www.unb.ca/cic/datasets/ids-2018.html",
"Tags": "aws-pds, network traffic, internet, intrusion detection, cyber security, aws-pds",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AI2 Diagram Dataset (AI2D)",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/diagrams",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AI2 Meaningful Citations Data Set",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/meaningful-citations",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY](https://creativecommons.org/licenses/by/4.0)",
"Tags": "aws-pds, machine learning, csv",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AI2 Reasoning Challenge (ARC) 2018",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/arc",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning, json, csv",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AI2 TabMCQ: Multiple Choice Questions aligned with the Aristo Tablestore",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets/tablestore-questions/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/tablestore-questions",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning, natural language processing",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AI2 Tablestore (November 2015 Snapshot)",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets/tablestore/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/tablestore",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning, natural language processing",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability, geospatial, model, solar",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability, geospatial, model, solar",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability, geospatial, model, solar",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability, geospatial, model, solar",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability, geospatial, model, solar",
"ControlledAccess": 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",
"RequesterPays": false,
"Explore": null,
"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": "earth observation, satellite imagery, geospatial, natural resource, sustainability, mining, cog",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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": "earth observation, satellite imagery, geospatial, natural resource, sustainability, mining, cog",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AWS Public Blockchain Data",
"Description": "AWS Public Blockchain Data",
"ARN": "arn:aws:s3:::aws-public-blockchain",
"Region": "us-east-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/aws-samples/digital-assets-examples/blob/main/analytics/",
"Contact": "Post any questions to [re:Post](https://repost.aws/tags/questions/TApd0Wl5P8S9O6",
"ManagedBy": "[Amazon Web Services](https://aws.amazon.com/)",
"UpdateFrequency": "New data is delivered constantly to the current date folders as one Parquet file",
"License": "https://github.com/aws-samples/digital-assets-examples/blob/main/LICENSE",
"Tags": "bitcoin, blockchain",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AWS iGenomes",
"Description": "AWS-iGenomes S3 Bucket",
"ARN": "arn:aws:s3:::ngi-igenomes",
"Region": "eu-west-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://ewels.github.io/AWS-iGenomes/",
"Contact": "https://github.com/ewels/AWS-iGenomes/issues",
"ManagedBy": "[SciLifeLab](https://opensource.scilifelab.se/)",
"UpdateFrequency": "New data are added when available.",
"License": "Multiple - please see [data origins](https://github.com/ewels/AWS-iGenomes#data-",
"Tags": "aws-pds, agriculture, biology, genetic, genomic, life sciences, reference index, Caenorhabditis elegans, Danio rerio, Homo sapiens, Mus musculus, Rattus norvegicus",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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, sustainability",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AgricultureVision - Dataset affiliated with the 2021 CVPR Agricutlure Vision Workshop This includ",
"Description": "Dataset affiliated with the 2021 CVPR Agricutlure Vision Workshop This includ",
"ARN": "arn:aws:s3:::intelinair-data-releases/agriculture-vision/cvpr_challenge_2021",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": false,
"Explore": null,
"Documentation": "https://arxiv.org/abs/2001.01306",
"Contact": "support@intelinair.com",
"ManagedBy": "Intelinair, Inc.",
"UpdateFrequency": "Periodically",
"License": "Provided in the bucket.",
"Tags": "aerial imagery, agriculture, computer vision, deep learning, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AgricultureVision - Dataset affiliated with the 2021 CVPR Agricutlure Vision Workshop This includes",
"Description": "Dataset affiliated with the 2021 CVPR Agricutlure Vision Workshop This includes",
"ARN": "arn:aws:s3:::intelinair-data-releases/agriculture-vision/cvpr_challenge_2021_full",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": false,
"Explore": null,
"Documentation": "https://arxiv.org/abs/2001.01306",
"Contact": "support@intelinair.com",
"ManagedBy": "Intelinair, Inc.",
"UpdateFrequency": "Periodically",
"License": "Provided in the bucket.",
"Tags": "aerial imagery, agriculture, computer vision, deep learning, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "AgricultureVision - Original dataset affiliated with the 2020 CVPR paper Dataset provided as a ser",
"Description": "Original dataset affiliated with the 2020 CVPR paper Dataset provided as a ser",
"ARN": "arn:aws:s3:::intelinair-data-releases/agriculture-vision/cvpr_paper_2020",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": false,
"Explore": null,
"Documentation": "https://arxiv.org/abs/2001.01306",
"Contact": "support@intelinair.com",
"ManagedBy": "Intelinair, Inc.",
"UpdateFrequency": "Periodically",
"License": "Provided in the bucket.",
"Tags": "aerial imagery, agriculture, computer vision, deep learning, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Airborne Object Tracking Dataset",
"Description": "The training dataset is further split into smaller directories Each subdirector",
"ARN": "arn:aws:s3:::airborne-obj-detection-challenge-training",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": [
"[Explore dataset](https://github.com/amazon-research/siam-mot/blob/main/readme/model_zoo.md)",
"[README](https://gitlab.aicrowd.com/amazon-prime-air/airborne-detection-starter-kit/-/blob/master/docs/DATASET.md)"
],
"Documentation": "https://www.aicrowd.com/challenges/airborne-object-tracking-challenge",
"Contact": "airborne-object-tracking-challenge@amazon.com",
"ManagedBy": "[Amazon](https://www.amazon.com/)",
"UpdateFrequency": "Not updated",
"License": "Community Data License Agreement \u2013 Permissive, Version 1.0 https://cdla.dev/perm",
"Tags": "amazon.science, computer vision, deep learning, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Allen Brain Observatory - Visual Coding AWS Public Data Set - Project data files in a public bucket",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::allen-brain-observatory",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-",
"Contact": "awspublicdataset@alleninstitute.org",
"ManagedBy": "[Allen Institute](http://www.alleninstitute.org/)",
"UpdateFrequency": "Annually",
"License": "http://www.alleninstitute.org/legal/terms-use/",
"Tags": "aws-pds, neurobiology, neuroimaging, image processing, imaging, life sciences, signal processing, electrophysiology, Mus musculus",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Allen Brain Observatory - Visual Coding AWS Public Data Set - SageMaker launch template with s3fs bucket mounts",
"Description": "SageMaker launch template with s3fs bucket mounts",
"ARN": "arn:aws:s3:::allen-brain-observatory-templates",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://github.com/AllenInstitute/AllenSDK/wiki/Use-the-Allen-Brain-Observatory-",
"Contact": "awspublicdataset@alleninstitute.org",
"ManagedBy": "[Allen Institute](http://www.alleninstitute.org/)",
"UpdateFrequency": "Annually",
"License": "http://www.alleninstitute.org/legal/terms-use/",
"Tags": "aws-pds, neurobiology, neuroimaging, image processing, imaging, life sciences, signal processing, electrophysiology, Mus musculus",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Allen Cell Imaging Collections",
"Description": "Data files in a public bucket",
"ARN": "arn:aws:s3:::allencell",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://open.quiltdata.com/b/allencell",
"Contact": "cells@alleninstitute.org",
"ManagedBy": "[Allen Institute for Cell Science](https://www.allencell.org)",
"UpdateFrequency": "Biweekly",
"License": "https://www.allencell.org/terms-of-use.html",
"Tags": "aws-pds, life sciences, biology, cell imaging, cell biology, microscopy, image processing, machine learning, Homo sapiens",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Allen Ivy Glioblastoma Atlas",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::allen-ivy-glioblastoma-atlas",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://glioblastoma.alleninstitute.org/static/docs",
"Contact": "awspds@alleninstitute.org",
"ManagedBy": "[Allen Institute](http://www.alleninstitute.org/)",
"UpdateFrequency": "Never",
"License": "http://www.alleninstitute.org/legal/terms-use/",
"Tags": "aws-pds, biology, genetic, gene expression, imaging, neurobiology, image processing, life sciences, machine learning, computer vision, cancer, glioblastoma, Homo sapiens",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Allen Mouse Brain Atlas",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::allen-mouse-brain-atlas",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "http://help.brain-map.org/display/mousebrain/Documentation",
"Contact": "awspds@alleninstitute.org",
"ManagedBy": "[Allen Institute](http://www.alleninstitute.org/)",
"UpdateFrequency": "Never",
"License": "http://www.alleninstitute.org/legal/terms-use/",
"Tags": "aws-pds, biology, genetic, gene expression, imaging, neurobiology, image processing, life sciences, transcriptomics, Mus musculus",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazon Berkeley Objects Dataset",
"Description": "Product listings and metadata in gzip-compressed CSV and JSON, catalog images an",
"ARN": "arn:aws:s3:::amazon-berkeley-objects",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": [
"[Explore dataset](https://amazon-berkeley-objects.s3.us-east-1.amazonaws.com/index.html)",
"[README](https://amazon-berkeley-objects.s3.us-east-1.amazonaws.com/README.md)"
],
"Documentation": "https://amazon-berkeley-objects.s3.us-east-1.amazonaws.com/README.md",
"Contact": "amazon-berkeley-objects@amazon.com",
"ManagedBy": "[Amazon](https://www.amazon.com/)",
"UpdateFrequency": "Not updated",
"License": "Creative Commons Attribution-NonCommercial 4.0 (CC BY-NC 4.0) https://creativeco",
"Tags": "amazon.science, computer vision, deep learning, information retrieval, machine learning, machine translation",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazon Bin Image Dataset",
"Description": "Over 500,000 bin JPEG images and corresponding JSON metadata files describing it",
"ARN": "arn:aws:s3:::aft-vbi-pds",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://aft-vbi-pds.s3.amazonaws.com/index.html)"
],
"Documentation": "https://github.com/awslabs/open-data-docs/tree/main/docs/aft-vbi-pds",
"Contact": "amazon-bin-images@amazon.com",
"ManagedBy": "[Amazon](https://www.amazon.com/)",
"UpdateFrequency": "Not updated",
"License": "Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States (CC BY-N",
"Tags": "amazon.science, computer vision, machine learning",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Amazon-PQA",
"Description": "Amazon product questions and their answers, along with the public product inform",
"ARN": "arn:aws:s3:::amazon-pqa",
"Region": "us-east-1",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://amazon-pqa.s3.amazonaws.com/readme.txt",
"Contact": "vitamin@amazon.com",
"ManagedBy": "Amazon",
"UpdateFrequency": "None",
"License": "https://cdla.dev/permissive-1-0/",
"Tags": "amazon.science, natural language processing, machine learning",
"ControlledAccess": 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",
"RequesterPays": false,
"Explore": [
"[STAC V1.0.0 endpoint](https://stac.amskepler.com/v100)"
],
"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",
"ControlledAccess": null,
"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",
"RequesterPays": null,
"Explore": null,
"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",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": null,
"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",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": [
"[STAC V1.0.0 endpoint](https://scottyhq.github.io/sentinel1-rtc-stac/#/)"
],
"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 are updated on a daily cadence for the dataset's spatial domain (CONUS).",
"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, sustainability, cog, stac, synthetic aperture radar",
"ControlledAccess": null,
"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",
"RequesterPays": null,
"Explore": null,
"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 are updated on a daily cadence for the dataset's spatial domain (CONUS).",
"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, sustainability, cog, stac, synthetic aperture radar",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Answer Reformulation",
"Description": "Answer Reformulation Dataset",
"ARN": "arn:aws:s3:::answer-reformulation-pds",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://answer-reformulation-pds.s3-us-west-2.amazonaws.com/README.txt",
"Contact": "filicesf@amazon.com",
"ManagedBy": "[Amazon](https://www.amazon.com/)",
"UpdateFrequency": "Not currently being updated",
"License": "[cc-by-sa 4.0](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "amazon.science, natural language processing, machine learning",
"ControlledAccess": 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",
"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)"
],
"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",
"ControlledAccess": null,
"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",
"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)"
],
"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",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Aristo Mini Corpus",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/aristo-mini",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning, json, csv",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Aristo Tuple KB",
"Description": "Project data files in a public bucket",
"ARN": "arn:aws:s3:::ai2-public-datasets/tuple-kb/",
"Region": "us-west-2",
"Type": "S3 Bucket",
"RequesterPays": null,
"Explore": null,
"Documentation": "https://allenai.org/data/tuple-kb",
"Contact": "info@allenai.org",
"ManagedBy": "[Allen Institute for AI](https://allenai.org)",
"UpdateFrequency": "Not updated",
"License": "[CC BY-SA](https://creativecommons.org/licenses/by-sa/4.0/)",
"Tags": "aws-pds, machine learning, natural language processing",
"ControlledAccess": 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",
"RequesterPays": null,
"Explore": [
"[Browse Bucket](https://mf-nwp-models.s3.amazonaws.com/index.html)"
],
"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",
"ControlledAccess": null,
"AccountRequired": null,
"Host": null
},
{
"Name": "Australasian Genomes - Data files",
"Description": "Data files",
"ARN": "arn:aws:s3:::koalagenomes",
"Region": "ap-southeast-2",