-
Notifications
You must be signed in to change notification settings - Fork 41
/
stac_catalogs.json
1107 lines (1107 loc) · 49.4 KB
/
stac_catalogs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "ALS Raster Kaernten 2023",
"id": 70,
"url": "https://gis.ktn.gv.at/ogd/custom/stac_cat_ktn/STAC_2023/kagis-catalog/catalog.json",
"slug": "als-raster-kaernten-2023",
"summary": "Elevation data and ortho photos Spatial temporal catalog test",
"access": "public",
"created": "2023-03-16T09:15:31.242Z",
"updated": "2023-03-16T09:15:31.242Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Astraea Earth OnDemand",
"id": 16,
"url": "https://eod-catalog-svc-prod.astraea.earth/",
"slug": "astraea-earth-ondemand",
"summary": "Astraea Earth OnDemand geospatial imagery query and analysis tool",
"access": "public",
"created": "2020-09-02T19:21:50.464Z",
"updated": "2020-09-02T19:21:50.464Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "CBERS and Amazonia-1 on AWS",
"id": 8,
"url": "https://stac.amskepler.com/v100/",
"slug": "cbers",
"summary": "Imagery acquired by the China-Brazil Earth Resources (CBERS) and Amazonia-1 satellites. The image files are recorded and processed by INPE and are converted to Cloud Optimized Geotiff format in order to optimize its use for cloud based applications. Daily updated and hosted on AWS.",
"access": "public",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "CREODIAS",
"id": 68,
"url": "https://datahub.creodias.eu/stac/",
"slug": "creodias",
"summary": "Release post: [https://creodias.eu/forum/-/message_boards/message/291442]",
"access": "protected",
"created": "2023-02-23T17:49:39.814Z",
"updated": "2023-02-23T17:49:39.814Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "Some data is 'orderable', but can be requested through a custom API, using an account from https://creodias.eu/"
},
{
"title": "California Forest Observatory",
"id": 27,
"url": "https://storage.googleapis.com/cfo-public/catalog.json",
"slug": "forest-observatory",
"summary": "The Forest Observatory is a data-driven forest monitoring system that maps the drivers of wildfire behavior across the state with a focus on vegetation fuels. Data are available for non-commercial use under the Forest Observatory [terms of use](https://forestobservatory.com/legal.html).",
"access": "public",
"created": "2021-01-14T17:33:34.176Z",
"updated": "2021-01-14T17:33:34.176Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Capella Space Open Data",
"id": 55,
"url": "https://capella-open-data.s3.us-west-2.amazonaws.com/stac/catalog.json",
"slug": "capella-space-open-data",
"summary": "This open SAR dataset contains > 100 Capella Space scenes. Imaging modes: Spotlight, Stripmap and Sliding Spotlight. Image product types: Single Look Complex (SLC), Geocoded Terrain Corrected (GEO), Geocoded Ellipsoid Corrected (GEC) and Sensor Independent Complex Data (SICD)",
"access": "public",
"created": "2022-09-28T05:32:04.142Z",
"updated": "2022-09-28T05:32:04.142Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Cassini VIMS-IR STAC catalog",
"id": 83,
"url": "https://vims.univ-nantes.fr/stac/catalog.json",
"slug": "cassini-vims-ir",
"summary": "[Cassini/VIMS infrared dataset](https://vims.univ-nantes.fr) hosted at the University of Nantes.",
"access": "public",
"created": "2023-09-18T15:35:38.860Z",
"updated": "2023-10-02T15:35:38.860Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Copernicus Data Space Ecosystem",
"id": 90,
"url": "https://catalogue.dataspace.copernicus.eu/stac",
"slug": "cdse",
"summary": "An open ecosystem that provides free instant access to a wide range of data and services from the Copernicus Sentinel missions and more on our planet\u2019s land, oceans and atmosphere.",
"access": "public",
"created": "2024-02-15T13:42:10.773Z",
"updated": "2024-02-15T13:42:10.773Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Copernicus Data Space Ecosystem (openEO)",
"id": 78,
"url": "https://openeo.dataspace.copernicus.eu/openeo/1.2",
"slug": "cdse-openeo",
"summary": "This openEO service runs on the [Copernicus Data Space Ecosystem](https://dataspace.copernicus.eu/) and offers data access and processing on full archives of Copernicus data, such as the Sentinels.",
"access": "protected",
"created": "2023-09-02T16:08:53.927Z",
"updated": "2023-09-02T16:08:53.927Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "Please visit the [Copernicus Data Space Ecosystem](https://dataspace.copernicus.eu/) homepage for details."
},
{
"title": "Cubes and Clouds - Snow Cover",
"id": 91,
"url": "https://esa.pages.eox.at/cubes-and-clouds-catalog/MOOC_Cubes_and_clouds/catalog.json",
"slug": "cubes-and-clouds-snow-cover",
"summary": "Snow Cover Community Mapping Project of the MOOC Cubes and Clouds - Cloud Native Open Data Science for Earth Observation. Every item comes from a successful participant of the online course!",
"access": "public",
"created": "2024-02-21T15:38:28.785Z",
"updated": "2024-02-21T15:38:28.785Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Data.Geo.Admin.Ch",
"id": 30,
"url": "https://data.geo.admin.ch/api/stac/v0.9/",
"slug": "datageoadminch",
"summary": "Data Catalog of the Swiss Federal Spatial Data Infrastructure",
"access": "public",
"created": "2021-03-01T09:17:22.119Z",
"updated": "2021-03-01T09:17:22.119Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "DestinE Data Lake",
"id": 102,
"url": "https://hda.data.destination-earth.eu/stac",
"slug": "destine-data-lake",
"summary": "The DestinE Data Lake (DEDL) provides discovery, access, and big data processing services. ",
"access": "protected",
"created": "2024-08-01T14:46:44.325Z",
"updated": "2024-08-01T14:46:44.325Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "https://destine-data-lake-docs.data.destination-earth.eu/en/latest/dedl-discovery-and-data-access/Tutorial-scenario-examples/Tutorial-scenario-examples.html"
},
{
"title": "Digital Earth Africa",
"id": 37,
"url": "https://explorer.digitalearth.africa/stac/",
"slug": "digital-earth-africa",
"summary": "Digital Earth Africa is a platform that uses spatial data and images recorded by satellites orbiting our planet to detect physical changes across Africa in unprecedented detail.",
"access": "public",
"created": "2021-07-19T14:23:00.911Z",
"updated": "2021-07-19T14:23:00.911Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Digital Earth Australia",
"id": 36,
"url": "https://explorer.sandbox.dea.ga.gov.au/stac/",
"slug": "digital-earth-au",
"summary": "Digital Earth Australia (DEA) is a platform that uses spatial data and images recorded by satellites orbiting our planet to detect physical changes across Australia in unprecedented detail.",
"access": "public",
"created": "2021-07-19T14:20:22.121Z",
"updated": "2021-07-19T14:20:22.121Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Digitale Orthophotos Niedersachsen",
"id": 35,
"url": "https://dop.stac.lgln.niedersachsen.de",
"slug": "digitale-orthophotos-niedersachsen",
"summary": "Digital orthophotos from Lower Saxony in Germany, provided by LGLN.",
"access": "public",
"created": "2021-07-06T00:07:56.234Z",
"updated": "2024-06-21T13:07:56.234Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Disasters Charter Mapper Catalog",
"id": 45,
"url": "https://supervisor.disasterscharter.org/api/catalog.json",
"slug": "disasters-charter-mapper-catalog",
"summary": "Satellite data to support disaster response worldwide.",
"access": "protected",
"created": "2021-12-09T20:26:47.852Z",
"updated": "2021-12-09T20:26:47.852Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "Some datasets are restricted by licensing to the exclusive usage for the disaster response by authorized users."
},
{
"title": "EO Data Cubes for Brazil - CBERS 4",
"id": 63,
"url": "https://bdc-cbers.s3.us-west-2.amazonaws.com/catalog.json",
"slug": "bdc-cbers",
"summary": "Catalogs of Brazil Data Cube (BDC) CBERS 4 Earth Observation data cube imagery on AWS.",
"access": "public",
"created": "2023-01-04T11:17:52.841Z",
"updated": "2023-01-04T11:17:52.841Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "EO Data Cubes for Brazil - Sentinel 2",
"id": 64,
"url": "https://bdc-sentinel-2.s3.us-west-2.amazonaws.com/catalog.json",
"slug": "bdc-sentinel-2",
"summary": "Catalogs of Brazil Data Cube (BDC) Sentinel-2 (A+B) Earth Observation data cube imagery on AWS.",
"access": "public",
"created": "2023-01-04T11:19:31.343Z",
"updated": "2023-01-04T11:19:31.343Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "EOC EO Products Service",
"id": 76,
"url": "https://geoservice.dlr.de/eoc/ogc/stac/v1/",
"slug": "eoc-eo-products-service",
"summary": "Provides interoperable access to metadata from EO collections and products of DLR's Earth Observation Center (EOC).",
"access": "public",
"created": "2023-08-02T11:32:30.353Z",
"updated": "2024-10-14T11:32:30.353Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "EODC API (openEO)",
"id": 4,
"url": "https://openeo.eodc.eu/v1.0/",
"slug": "eodc-openeo",
"summary": "The EODC API provides access to the EODC services and data (Sentinel-1, Sentinel-2 and Sentinel-3), as well as access to the openEO endpoints.",
"access": "protected",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2020-08-20T00:00:00.000Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "The EODC API is accessible for EODC partners only. You need to [contact](https://www.eodc.eu/contact/) EODC to subscribe to their services."
},
{
"title": "ERS open data",
"id": 57,
"url": "https://s3ext.gptl.ru/stac-web-free/catalog.json",
"slug": "ers-open-data",
"summary": "Some open data sets from the Russian Federal Space Agency, e.g. from the Meteor-M and Electro-L satellites.",
"access": "public",
"created": "2022-10-19T08:47:28.185Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "ESA Catalog",
"id": 89,
"url": "https://eocat.esa.int/eo-catalogue/",
"slug": "esa-catalog",
"summary": "ESA Catalog provides interoperable access, following ISO/OGC interface guidelines, to Earth Observation metadata. See also https://eocat.esa.int.",
"access": "public",
"created": "2023-11-10T14:14:59.460Z",
"updated": "2023-11-10T14:14:59.460Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Earth Genome: Sentinel-2 L2A Temporal Mosaics",
"id": 95,
"url": "https://stac.earthgenome.org/",
"slug": "earth-genome",
"summary": "A publicly available STAC instance cataloging our data for the public good, including Sentinel-2 L2A Temporal Mosaics",
"access": "public",
"created": "2024-05-20T20:35:39.666Z",
"updated": "2024-05-20T20:35:39.666Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Earth Search",
"id": 2,
"url": "https://earth-search.aws.element84.com/v1/",
"slug": "earth-search",
"summary": "A STAC API of [AWS Public Datasets](https://registry.opendata.aws/).",
"access": "public",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2023-03-10T19:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "EcoDataCube.eu",
"id": 88,
"url": "https://s3.eu-central-1.wasabisys.com/stac/odse/catalog.json",
"slug": "eco-datacube",
"summary": "European layers organized / produced by GeoHarmonizer (project 2018-EU-IA-0095) and publicly available in [EcoDataCube](https://ecodatacube.eu) including Landsat and Sentinel-2 images, land cover & land use maps, tree species occurrences and soil predictions.",
"access": "public",
"created": "2023-11-06T14:26:50.113Z",
"updated": "2023-11-06T14:26:50.113Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Eurac Research (openEO)",
"id": 23,
"url": "https://openeo.eurac.edu/",
"slug": "eurac-research-openeo",
"summary": "The Eurac Research backend provides EO data available for processing using OGC WC(P)S and the open data cube",
"access": "protected",
"created": "2020-11-13T09:20:44.050Z",
"updated": "2020-11-13T09:20:44.050Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "Contact [Alexander Jacob from EURAC Research](https://www.eurac.edu/de/people/alexander-jacob?institute=institut-fuer-erdbeobachtung) for details."
},
{
"title": "FAIRiCUBE Hub Catalog",
"id": 58,
"url": "https://stacapi.eoxhub.fairicube.eu/",
"slug": "fairicube-hub-catalog",
"summary": "A STAC catalog that contains all collections available on the FAIRiCUBE Hub and within the Sentinel Hub openEO backend.",
"access": "public",
"created": "2022-12-20T08:10:04.157Z",
"updated": "2024-10-14T11:00:00.000Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "FMI ARD Finland",
"id": 42,
"url": "https://pta.data.lit.fmi.fi/stac/root.json",
"slug": "fmi-ard-finland",
"summary": "Analysis Ready Data from the Finnish Meteorological Institute in the Finnish reference grid epsg:3067. Sentinel-1 and -2 as dekad mosaics as main items, but many other related data sets over Finland are included as well. For example the forestry inventory data as COGs are available as well.",
"access": "public",
"created": "2021-11-06T07:05:11.515Z",
"updated": "2021-11-06T07:05:11.515Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "FedEO Clearinghouse",
"id": 15,
"url": "https://fedeo.ceos.org/",
"slug": "fedeo-clearinghouse",
"summary": "FedEO Clearinghouse provides interoperable access, following ISO/OGC interface guidelines, to Earth Observation metadata",
"access": "public",
"created": "2020-09-02T03:08:35.077Z",
"updated": "2024-04-26T11:27:35.077Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Fiboa Field Boundaries",
"id": 94,
"url": "https://fiboa.org/stac/catalog.json",
"slug": "fiboa",
"summary": "The Field Boundaries for Agriculture (fiboa) project is focused on making field boundary data openly available in a unified format on a global scale. This STAC catalog provides a collection of field boundary data from various sources, but all converted to be fiboa compliant.",
"access": "public",
"created": "2024-05-03T21:27:19.565Z",
"updated": "2024-05-03T21:27:19.565Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "GEP Supersites CSK and CSG data",
"id": 77,
"url": "https://gep-supersites-stac.terradue.com/",
"slug": "gep-supersites-csk-and-csg-data",
"summary": "GEP hosted CSK and CSG data for the Geohazard Supersites and Natural Laboratories GEO initiative",
"access": "public",
"created": "2023-08-14T12:30:51.121Z",
"updated": "2023-08-14T12:30:51.121Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "GISTDA Drought Index in Thailand",
"id": 79,
"url": "https://disaster-vallaris.gistda.or.th/core/api/stac/1.0/Drought/?api_key=ErNGa8yrMWef0YutwmL7XvpwWQNCK2kVPNt5dAwWbBMnvDoifTEhD75H3DCENjKJ",
"slug": "gistda-drought-index-in-thailand",
"summary": "GISTDA Drought Index in Thailand, Data processing from MODIS Product.",
"access": "public",
"created": "2023-09-04T10:05:23.553Z",
"updated": "2023-09-04T10:05:23.553Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "GISTDA Flood disaster in Thailand",
"id": 80,
"url": "https://disaster-vallaris.gistda.or.th/core/api/stac/1.0/Flood/?api_key=ErNGa8yrMWef0YutwmL7XvpwWQNCK2kVPNt5dAwWbBMnvDoifTEhD75H3DCENjKJ",
"slug": "gistda-flood-disaster-in-thailand",
"summary": "GISTDA Flood disaster in Thailand, Data processing from Sattalite Imagery.",
"access": "public",
"created": "2023-09-04T10:08:50.182Z",
"updated": "2023-09-04T10:08:50.182Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Geoportal Server",
"id": 75,
"url": "https://gpt.geocloud.com/sentinel/stac",
"slug": "geoportal-server",
"summary": "This STAC uses the open-source Esri Geoportal Server. Esri Geoportal Server is a generic metadata catalog solution that can be configured to support any XML or JSON based metadata structure.",
"access": "public",
"created": "2023-07-08T19:32:28.732Z",
"updated": "2023-07-08T19:32:28.732Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Google Earth Engine",
"id": 21,
"url": "https://earthengine-stac.storage.googleapis.com/catalog/catalog.json",
"slug": "google-earth-engine",
"summary": "List of all rasters and vectors present in the [Google Earth Engine Catalog](https://developers.google.com/earth-engine/datasets/).",
"access": "public",
"created": "2020-10-01T19:38:14.208Z",
"updated": "2020-10-01T19:38:14.208Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Google Earth Engine (openEO)",
"id": 6,
"url": "https://earthengine.openeo.org/v1.0/",
"slug": "google-earth-engine-openeo",
"summary": "This is the Google Earth Engine Driver for openEO. Google Earth Engine is a planetary-scale platform for Earth science data & analysis. It is powered by Google's cloud infrastructure and combines a multi-petabyte catalog of satellite imagery and geospatial datasets with planetary-scale analysis capabilities. Google makes it available for scientists, researchers, and developers to detect changes, map trends, and quantify differences on the Earth's surface.",
"access": "public",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "IDE Facultad de Ciencia y Tecnolog\u00eda UADER",
"id": 53,
"url": "https://raw.githubusercontent.com/IDE-FCyT/IDE-FCyT/main/catalog/stac_catalog.json",
"slug": "ide-facultad-de-ciencia-y-tecnologia-uader",
"summary": "Lista de raster y vectores presentes en la IDE de la Facultad de Ciencia y Tecnolog\u00eda - UADER ",
"access": "public",
"created": "2022-06-23T15:00:45.539Z",
"updated": "2022-06-23T15:00:45.539Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Iconem STAC - 3D Cities, monuments, archeo sites",
"id": 104,
"url": "https://app.iconem.com/api/stac",
"slug": "iconem-stac-3d-cities-monuments-archeo-sites",
"summary": "Iconem 3D STAC Catalog includes datasets for 3d-scans of archeo sites, monuments and entire cities. Includes pointclouds (potree, COPC las/laz), tiled meshes (OGC/Cesium 3D Tiles), orthophotos (COG, geotiff), oriented medias, gaussian splats, stored in a unified CRS. Visible at app.iconem.com",
"access": "protected",
"created": "2024-08-19T15:55:47.898Z",
"updated": "2024-08-19T15:55:47.898Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "Please contact Iconem CTO Jonathan Chemla, or access app.iconem.com to see which sites are public, or protected (listed publicly but only available after request) jchemla@iconem.com"
},
{
"title": "KAGIS Katalog",
"id": 106,
"url": "https://gis.ktn.gv.at/api/stac/v1/",
"slug": "kagis-katalog",
"summary": "STAC KAGIS - Land K\u00e4rnten (Carinthia, Austria) ",
"access": "public",
"created": "2024-11-07T12:33:17.442Z",
"updated": "2024-11-07T12:33:17.442Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Kentucky From Above Catalog",
"id": 93,
"url": "https://kyfromabove-stac.s3.us-west-1.amazonaws.com/catalog.json",
"slug": "kyfromabove",
"summary": "The Kentucky From Above (KyFromAbove) program has acquired aerial imagery and elevation (LiDAR) data for the Commonwealth of Kentucky since 2011. This catalog will contain subcatalogs of imagery: orthos and obliques, and elevation data: digital elevation model and point clouds. ",
"access": "public",
"created": "2024-05-03T20:31:18.314Z",
"updated": "2024-05-03T20:31:18.314Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "MSC GeoMet - GeoMet-OGC-API",
"id": 29,
"url": "https://api.weather.gc.ca/stac/?f=json",
"slug": "msc-geomet",
"summary": "GeoMet-OGC-API provides public access to the Meteorological Service of Canada (MSC) and Environment and Climate Change Canada (ECCC) data via interoperable web services and application programming interfaces (API).",
"access": "public",
"created": "2021-02-19T21:48:40.527Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Maxar ARD Sample Data",
"id": 50,
"url": "https://ard.maxar.com/samples/catalog.json",
"slug": "maxar-ard-sample-data",
"summary": "Root Catalog for Maxar ARD sample data. All contents \u24b8 Maxar and for evaluation only.",
"access": "public",
"created": "2022-04-15T22:04:14.769Z",
"updated": "2022-04-15T22:04:14.769Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Maxar Open Data Catalog (ARD format)",
"id": 56,
"url": "https://maxar-opendata.s3.amazonaws.com/events/catalog.json",
"slug": "maxar-open-data-catalog-ard-format",
"summary": "Root catalog for the [Maxar Open Data Program](https://www.maxar.com/open-data) imagery generated through the Maxar ARD pipeline. ",
"access": "public",
"created": "2022-10-03T20:14:03.104Z",
"updated": "2022-10-03T20:14:03.104Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Microsoft Planetary Computer STAC API",
"id": 32,
"url": "https://planetarycomputer.microsoft.com/api/stac/v1/",
"slug": "microsoft-pc",
"summary": "Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer",
"access": "public",
"created": "2021-05-03T16:29:53.726Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Monthly Mosaic of Sentinel 2 Images for Catalonia",
"id": 52,
"url": "https://datacloud.icgc.cat/stac-catalog/catalog.json",
"slug": "catalonia-monthly-sentinel2",
"summary": "Monthly mosaics of sentinel-2 images over Catalonia, choosing lowest cloud coverage for each timespan. Indexes several collections of different Cloud Optimized Geotiffs: RGB de 8/16 bits, IRC 8/16 bits.",
"access": "public",
"created": "2022-06-03T11:53:57.125Z",
"updated": "2022-06-03T11:53:57.125Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Mundialis Actinia (Openeo)",
"id": 24,
"url": "https://openeo.mundialis.de/api/v1.0/",
"slug": "mundialis-actinia-openeo",
"summary": "Access to the mundialis Actinia service via an openEO interface.",
"access": "protected",
"created": "2020-11-13T09:22:13.399Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "Contact [mundialis](https://www.mundialis.de/de/contact/) for details."
},
{
"title": "NASA CMR CLOUDSTAC Proxy",
"id": 48,
"url": "https://cmr.earthdata.nasa.gov/cloudstac/",
"slug": "nasa-cmr-cloudstac-proxy",
"summary": "SpatioTemporal Asset Catalog API on top of [NASA's Common Metadata Repository](https://cmr.earthdata.nasa.gov/search/). The Common Metadata Repository (CMR) is a high-performance, high-quality, continuously evolving metadata system that catalogs Earth Science data and associated service metadata records. This API only contains STAC Collections where the Item Assets are available \"in the cloud\" (i.e., on s3).",
"access": "public",
"created": "2022-02-24T21:58:16.563Z",
"updated": "2022-02-24T21:58:16.563Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "NASA CMR STAC",
"id": 7,
"url": "https://cmr.earthdata.nasa.gov/stac/",
"slug": "cmr-stac",
"summary": "SpatioTemporal Asset Catalog API on top of NASA's [Common Metadata Repository](https://cmr.earthdata.nasa.gov/search/). The Common Metadata Repository (CMR) is a high-performance, high-quality, continuously evolving metadata system that catalogs Earth Science data and associated service metadata records.",
"access": "public",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2023-02-15T11:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "NASA ISERV",
"id": 14,
"url": "https://nasa-iserv.s3-us-west-2.amazonaws.com/catalog/catalog.json",
"slug": "nasa-iserv",
"summary": "ISS SERVIR Environmental Research and Visualization System (ISERV) Level-0 Product. These products were created at the ISERV Science Operation Center (SOC) at the National Space Science and Technology Center. ISERV is an automated system designed to acquire images of the Earth's surface from the International Space Station (ISS).",
"access": "public",
"created": "2020-09-01T20:05:35.697Z",
"updated": "2020-09-01T20:05:35.697Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "New Zealand Elevation",
"id": 92,
"url": "https://nz-elevation.s3-ap-southeast-2.amazonaws.com/catalog.json",
"slug": "nz-elevation",
"summary": "Toit\u016b Te Whenua Land Information New Zealand makes New Zealand's publicly owned elevation archive freely available to use under an open licence. This public S3 bucket has been made available to enable bulk access and cloud-based data processing.",
"access": "public",
"created": "2024-03-14T00:44:17.769Z",
"updated": "2024-03-14T00:44:17.769Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "New Zealand Imagery",
"id": 82,
"url": "https://nz-imagery.s3-ap-southeast-2.amazonaws.com/catalog.json",
"slug": "nz-imagery",
"summary": "Toit\u016b Te Whenua Land Information New Zealand makes New Zealand's publicly owned aerial and satellite imagery archive freely available to use under an open licence. This public S3 bucket has been made available to enable bulk access and cloud-based data processing.",
"access": "public",
"created": "2023-09-18T02:32:53.754Z",
"updated": "2023-09-18T02:32:53.754Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Open Data EOSSAT-1",
"id": 100,
"url": "https://dragonfly-open-data.s3.eu-west-2.amazonaws.com/data/catalog.json",
"slug": "open-data-eossat-1",
"summary": "EOSSAT-1 Open datasets captured with DragonEye imagers",
"access": "protected",
"created": "2024-06-20T21:06:19.493Z",
"updated": "2024-06-20T21:06:19.493Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "Access to the datasets are protected, but can be shared on request. Please Email Us for more information or to request access to the datasets."
},
{
"title": "Open Science Catalog",
"id": 66,
"url": "https://esa-earthcode.github.io/open-science-catalog-metadata/catalog.json",
"slug": "osc",
"summary": "Open Science Catalog (OSC) Catalog by the European Space Agency (ESA)",
"access": "public",
"created": "2023-01-06T17:21:43.499Z",
"updated": "2024-04-19T09:21:43.499Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "OpenAerialMap Example",
"id": 20,
"url": "https://raw.githubusercontent.com/m-mohr/oam-example/main/catalog.json",
"slug": "openaerialmap-example",
"summary": "Example STAC Item for an entry on OpenAerialMap, created during the STAC Intro and Q&A.",
"access": "public",
"created": "2020-09-08T18:25:21.672Z",
"updated": "2023-01-10T10:44:21.672Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "OpenLandMap STAC",
"id": 87,
"url": "https://s3.eu-central-1.wasabisys.com/stac/openlandmap/catalog.json",
"slug": "openlandmap",
"summary": "Global layers organized / produced by OpenGeoHub and publicly available in [OpenLandMap](https://openlandmap.org) including MODIS, PROBA-V and Landsat images, land cover & land use maps, soil predictions and potential natural vegetation.",
"access": "public",
"created": "2023-11-06T14:18:20.927Z",
"updated": "2023-11-06T14:18:20.927Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "OpenTopography Data Catalog",
"id": 25,
"url": "https://portal.opentopography.org/stac/catalog.json",
"slug": "opentopography",
"summary": "A catalog of topography datasets hosted by OpenTopography",
"access": "public",
"created": "2020-11-18T04:57:20.431Z",
"updated": "2020-11-18T04:57:20.431Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Openeo Platform",
"id": 40,
"url": "https://openeocloud.vito.be/openeo/1.0.0/",
"slug": "openeo-platform",
"summary": "openEO platform provides intuitive programming libraries to process a wide variety of earth observation datasets. This large-scale data access and processing is performed on multiple infrastructures, which all support the openEO and STAC API.",
"access": "protected",
"created": "2021-10-27T21:02:47.508Z",
"updated": "2021-10-27T21:02:47.508Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "Please see [openeo.cloud](https://openeo.cloud) for more information on how to get access to the Platform API."
},
{
"title": "Paituli STAC (Finland)",
"id": 72,
"url": "https://paituli.csc.fi/geoserver/ogc/stac/v1",
"slug": "paituli-stac-finland",
"summary": "Paituli STAC includes several open Finnish datasets. More information: https://paituli.csc.fi/stac.html Mainained by CSC - IT center for science.",
"access": "public",
"created": "2023-04-13T10:15:39.875Z",
"updated": "2023-08-25T10:15:00.875Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Pangeo Cloud Data Catalog",
"id": 17,
"url": "https://raw.githubusercontent.com/charlesbluca/pangeo-datastore-stac/master/master/catalog.json",
"slug": "pangeo",
"summary": "Experimental STAC catalog of ocean, weather, and climate data stored in Zarr format in Google Cloud Storage.",
"access": "public",
"created": "2020-09-03T13:10:10.994Z",
"updated": "2020-09-03T13:10:10.994Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Planet Labs STAC Catalog",
"id": 44,
"url": "https://www.planet.com/data/stac/catalog.json",
"slug": "planet-labs-stac-catalog",
"summary": "This catalog serves as the main root STAC Catalog for Planet Labs. It links to 3 small static catalogs of open data, including a small set of Planet Disaster Data, some CC-BY SkySat collects and the complete Spacenet 7 images and labels.",
"access": "public",
"created": "2021-12-08T22:55:27.717Z",
"updated": "2021-12-08T22:55:27.717Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Polar Geospatial Center Data Catalog",
"id": 61,
"url": "https://pgc-opendata-dems.s3.us-west-2.amazonaws.com/pgc-data-stac.json",
"slug": "polar-geospatial-center",
"summary": "Includes data from multiple projects, each with 2m GSD and usually available in mosaics and strips: ArcticDEM (DEMs over the Arctic, starting 2007), EarthDEM (DEMs over non-polar regions, staring 2008) and REMA (Reference Elevation Model of Antarctica, starting 2009).",
"access": "public",
"created": "2023-01-04T10:20:07.793Z",
"updated": "2023-01-04T10:20:07.793Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "RapidAI4EO",
"id": 74,
"url": "https://radiantearth.blob.core.windows.net/mlhub/rapidai4eo/stac-v1.0/catalog.json",
"slug": "rapidai4eo-v1",
"summary": "RapidAI4EO corpus of spatiotemporal imagery and LULC labels for machine learning training.",
"access": "public",
"created": "2023-05-18T09:22:01.688Z",
"updated": "2023-05-18T09:22:01.688Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "S2 for Ghana",
"id": 31,
"url": "https://gws-access.jasmin.ac.uk/public/odanceo/S2_L2/collection.json",
"slug": "s2-for-ghana",
"summary": "Sentinel 2 Surface Reflectance over Ghana using SIAC AC.",
"access": "public",
"created": "2021-04-21T13:43:48.505Z",
"updated": "2021-04-21T13:43:48.505Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "SPOT Orthoimages of Canada (2005-2010)",
"id": 12,
"url": "https://spot-canada-ortho.s3.amazonaws.com/catalog.json",
"slug": "spot-orthoimages-canada-2005",
"summary": "Canada's Orthoimages 2005-2010 is the national medium-resolution imagery coverage of Canada. These digital raster data acquired by the Spot4 and Spot5 satellites comprise five spectral bands.",
"access": "public",
"created": "2020-08-24T20:59:43.049Z",
"updated": "2020-08-24T20:59:43.049Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Satellite Vu public static STAC",
"id": 51,
"url": "https://stac.satellitevu.com",
"slug": "satellite-vu-public-static-stac",
"summary": "Sample imagery from flight campaigns ran by Satellite Vu in March and April 2021. Consists of 5 images resampled to the highest resolution achievable by Satellite Vu's sensor from orbit.",
"access": "public",
"created": "2022-04-20T15:50:03.156Z",
"updated": "2022-04-20T15:50:03.156Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Sentinel 3 Level 2+3 on AWS",
"id": 65,
"url": "https://meeo-s3.s3.amazonaws.com/catalog.json",
"slug": "sentinel-3-aws",
"summary": "Observations from the Sentinel-3 satellite of the European Commission\u2019s Copernicus Earth Observation Programme, available in Level 2 and 3. Hosted on AWS.",
"access": "public",
"created": "2023-01-04T11:24:29.169Z",
"updated": "2023-01-04T11:24:29.169Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Sentinel 5P Level 2 on AWS",
"id": 11,
"url": "https://meeo-s5p.s3.amazonaws.com/catalog.json",
"slug": "sentinel-5p-level2-aws",
"summary": "Observations from the Sentinel-5 Precursor (Sentinel-5P) satellite of the European Commission\u2019s Copernicus Earth Observation Programme. Hosted on AWS.",
"access": "public",
"created": "2020-08-24T20:55:25.010Z",
"updated": "2020-08-24T20:55:25.010Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Sentinel Hub",
"id": 3,
"url": "https://services.sentinel-hub.com/api/v1/catalog/1.0.0/",
"slug": "sentinel-hub",
"summary": "Sentinel Hub Catalog is an API implementing the STAC Specification, describing geospatial information about different data used with Sentinel Hub.",
"access": "protected",
"created": "2020-08-20T00:00:00.000Z",
"updated": "2022-12-07T11:00:00.000Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "The Sentinel Hub API uses OAuth2 Authentication and requires that you have an access token. See the [Authentication chapter](https://docs.sentinel-hub.com/api/latest/api/overview/authentication/) for more information."
},
{
"title": "Sentinel-1 RTC CONUS",
"id": 59,
"url": "https://raw.githubusercontent.com/scottyhq/sentinel1-rtc-stac/main/collection.json",
"slug": "sentinel-1-rtc-conus",
"summary": "Sentinel1 radiometric terrain corrected backscatter (RTC) over CONUS since 2017. These radar data have been processed from original GRD scenes into a Radiometrically Terrain Corrected, tiled product suitable for analysis.",
"access": "public",
"created": "2023-01-04T10:01:53.109Z",
"updated": "2023-01-04T10:01:53.109Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Sentinel-2 and Landsat-8 catalog",
"id": 18,
"url": "https://tamn.snapplanet.io",
"slug": "sentinel-2-and-landsat-8-catalog",
"summary": "Up to date Sentinel-2 and Landsat-8 catalog used for demo with rocket client.",
"access": "public",
"created": "2020-09-03T13:15:22.526Z",
"updated": "2020-09-03T13:15:22.526Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "SkyServe Mission Data",
"id": 96,
"url": "https://api.ellipsis-drive.com/v3/ogc/stac/catalog/8a059125-b93d-4dda-b69b-9130fbe9f55e/epat_UK6PDdbzeJpySAvkdV55lztWjjrUZZmFzlYUQPbRFK2VnCxJQZ9twUJlv4ksKGc8",
"slug": "skyserve-mission-data",
"summary": "This will be a collection of sample raster data for skyserve missions",
"access": "public",
"created": "2024-05-22T07:47:06.182Z",
"updated": "2024-05-31T07:47:06.182Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Stac-Fastapi",
"id": 101,
"url": "https://ai-extensions-stac.terradue.com",
"slug": "stac-fastapi",
"summary": "stac-fastapi terradue.com first submission in July 2024.stac-fastapi terradue.com first submission in July 2024.stac-fastapi terradue.com first submission in July 2024.",
"access": "public",
"created": "2024-07-23T12:07:24.057Z",
"updated": "2024-07-23T12:07:24.057Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Terrascope",
"id": 62,
"url": "https://services.terrascope.be/stac/",
"slug": "terrascope",
"summary": "VITO Remote Sensing EO Data Catalogue for the Terrascope platform. Offers Sentinel-1/2/5P, PROBA-V, WorldCover, DEMs, CLS and more.",
"access": "protected",
"created": "2023-01-04T11:14:18.546Z",
"updated": "2023-01-04T11:14:18.546Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "You need to register yourself a Terrascope account at <https://portal.terrascope.be/home> and subscribe to a paid plan."
},
{
"title": "The National Map",
"id": 86,
"url": "https://gp-sit-us-east-1-public-configs.s3.amazonaws.com/stac/national_map/catalog.json",
"slug": "the-national-map",
"summary": "The National Map is a suite of products and services that provide access to base geospatial information to describe the landscape of the United States and its territories. The National Map embodies 11 primary products and services and numerous applications and ancillary services.",
"access": "public",
"created": "2023-10-13T23:47:48.036Z",
"updated": "2023-10-13T23:47:48.036Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "UK NCEO Analysis Ready Data (ARD)",
"id": 54,
"url": "https://gws-access.jasmin.ac.uk/public/nceo_ard/NCEO_ARD_STAC/catalog.json",
"slug": "uk-nceo-analysis-ready-data-ard",
"summary": "This STAC catalog contains Sentinel 2 (S2) surface reflectance over the UK from 2017 to 2019. The surface reflectance have been processed by SIAC atmospheric correction method, with per pixel uncertainty information.",
"access": "public",
"created": "2022-08-18T12:23:01.252Z",
"updated": "2022-08-18T12:23:01.252Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "US GeoPlatform",
"id": 85,
"url": "https://stac.geoplatform.gov/catalog.json",
"slug": "geoplatform-stac-catalog",
"summary": "GeoPlatform.gov provides official list of National STAC Sources.",
"access": "public",
"created": "2023-10-13T23:46:58.015Z",
"updated": "2023-10-17T12:46:58.015Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "USGS 3DEP LiDAR Point Clouds",
"id": 13,
"url": "https://usgs-lidar-stac.s3-us-west-2.amazonaws.com/ept/catalog.json",
"slug": "usgs-3dep-lidar",
"summary": "LiDAR 3DEP elevation data over the conterminous United States, Hawaii, and the U.S. territories, acquired over an 8-year period. Hosted on AWS.",
"access": "public",
"created": "2020-08-26T19:23:18.645Z",
"updated": "2021-05-13T19:23:18.645Z",
"isPrivate": false,
"isApi": false,