-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathstac_catalogs.json
More file actions
1536 lines (1536 loc) · 71.6 KB
/
stac_catalogs.json
File metadata and controls
1536 lines (1536 loc) · 71.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "African Agriculture Adaptation Atlas STAC catalog",
"id": 114,
"url": "https://digital-atlas.s3.amazonaws.com/stac/public_stac/catalog.json",
"slug": "africa-agriculture-adaptation-atlas",
"summary": "This STAC contains the data used within the Africa Agriculture Adaptation Atlas project found [here](https://adaptationatlas.cgiar.org/). This includes data related to climate hazards, crop production, crop exposure to climate hazards, demographics and more across Sub-Saharan Africa.",
"access": "public",
"created": "2025-04-17T13:20:19.986Z",
"updated": "2025-04-17T13:20:19.986Z",
"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": "BON in a Box STAC",
"id": 112,
"url": "https://stac.geobon.org/",
"slug": "bon-in-a-box-stac",
"summary": "Spatio Temporal Asset Catalog for layers used in BON in a Box, courtesy of GEO BON.",
"access": "public",
"created": "2025-02-28T15:49:40.097Z",
"updated": "2025-02-28T15:49:40.097Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "CBERS and Amazonia-1 on AWS",
"id": 8,
"url": "https://stac.scitekno.com.br/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": "2025-02-27T19:00:00.000Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "CEDA STAC API",
"id": 150,
"url": "https://api.stac.ceda.ac.uk/",
"slug": "ceda-stac-api",
"summary": "The Centre for Environmental Data Analysis (CEDA) stores over 20 PB of atmospheric and Earth observation data. Sources for the archive include aircraft campaigns, satellites, automatic weather stations and climate models, amongst many others. The data consists of netCDF and other historical data.",
"access": "protected",
"created": "2026-04-10T22:55:23.169Z",
"updated": "2026-04-10T22:55:23.169Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "See the CEDA [documentation](https://help.ceda.ac.uk/article/5100-archive-access-tokens) for details."
},
{
"title": "CIESIN STAC",
"id": 144,
"url": "https://ciesin.github.io/sci-apps-stac/stac/catalog.json",
"slug": "ciesin-stac",
"summary": "CIESIN STAC is the authoritative SpatioTemporal Asset Catalog for datasets produced and curated by the Center for International Earth Science Information Network (CIESIN) and affiliated programs, including GRID3.",
"access": "public",
"created": "2026-02-11T16:20:29.070Z",
"updated": "2026-02-11T16:20:29.070Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "CREODIAS",
"id": 68,
"url": "https://datahub.creodias.eu/stac/",
"slug": "creodias",
"summary": "CREODIAS users can now benefit from the Copernicus Data Space Ecosystem SpatioTemporal Asset Catalogue (STAC) to search for Earth observation products. The results of a query from the CDSE STAC catalogue share the same S3 product path to /eodata repository as for the CREODIAS platform.",
"access": "protected",
"created": "2023-02-23T17:49:39.814Z",
"updated": "2025-07-11T17: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": "Canadian Geospatial Data Collections",
"id": 139,
"url": "https://datacube.services.geo.ca/stac/api/",
"slug": "canadian-geospatial-data-collections-datacube",
"summary": "Collections of geospatial datasets from Canada Centre for Mapping and Earth Observation, delivered through the DataCube platform. / Collections de donn\u00e9es g\u00e9ospatiales provenant du Centre canadien de cartographie et d\u2019observation de la Terre, offertes via la plateforme Cube de Donn\u00e9es.",
"access": "public",
"created": "2025-11-28T14:26:14.989Z",
"updated": "2025-11-28T14:26:14.989Z",
"isPrivate": false,
"isApi": true,
"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": "CoCliCo STAC Catalog",
"id": 108,
"url": "https://coclico.blob.core.windows.net/stac/v1/catalog.json",
"slug": "coclico",
"summary": "The funded CoCliCo project enhances coastal risk management by offering an open-source platform for assessing sea-level rise impacts. It visualizes, analyzes, and contextualizes coastal risks, combining geospatial data with decision tools, uniting experts in adaptation and risk communication.",
"access": "public",
"created": "2024-12-02T23:43:01.952Z",
"updated": "2024-12-02T23:43:01.952Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "CoRE Stack Spatio Temporal Asset Catalog",
"id": 151,
"url": "https://spatio-temporal-asset-catalog.s3.ap-south-1.amazonaws.com/CorestackCatalogs_merged_collection/catalog.json",
"slug": "core-stack-spatio-temporal-asset-catalog",
"summary": "This spatio temporal asset catalog contains all data layers of CoREStack (https://core-stack.org/). The data layers are generated at an administrative tehsil level, and some layers are available for Pan India.",
"access": "public",
"created": "2026-04-21T09:37:25.974Z",
"updated": "2026-04-21T09:37:25.974Z",
"isPrivate": false,
"isApi": false,
"accessInfo": null
},
{
"title": "Copernicus Data Space Ecosystem",
"id": 113,
"url": "https://stac.dataspace.copernicus.eu/v1",
"slug": "cdse",
"summary": "Catalogue of Earth Observation (EO) data sets maintained by the Copernicus Data Space Ecosystem.",
"access": "public",
"created": "2025-04-07T09:13:46.299Z",
"updated": "2025-07-11T09:13:46.299Z",
"isPrivate": false,
"isApi": false,
"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": "Cyverse STAC API",
"id": 115,
"url": "https://stac.cyverse.org/",
"slug": "cyverse-stac-api",
"summary": "Geospatial Data hosted in CyVerse Cloud Storage at the University of Arizona. Includes drone imagery from the Open Forest Observatory. ",
"access": "public",
"created": "2025-04-17T23:32:12.007Z",
"updated": "2025-04-17T23:32:12.007Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "DACCS STAC API - CRIM Hirondelle",
"id": 142,
"url": "https://hirondelle.crim.ca/stac/",
"slug": "daccs-stac-crim-hirondelle",
"summary": "Data Analytics for Canadian Climate Services (DACCS) project. Searchable spatiotemporal metadata describing climate and Earth observation datasets. The CRIM Hirondelle server is employed for experimental development of STAC and OGC standards.",
"access": "protected",
"created": "2026-02-06T20:21:26.965Z",
"updated": "2026-02-06T20:21:26.965Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "Contact via email: francis.charette-migneault@crim.ca. Provide the purpose of your request and how you intend to employ the data. "
},
{
"title": "Data.Geo.Admin.Ch",
"id": 30,
"url": "https://data.geo.admin.ch/api/stac/v1/",
"slug": "datageoadminch",
"summary": "Data Catalog of the Swiss Federal Spatial Data Infrastructure",
"access": "public",
"created": "2021-03-01T09:17:22.119Z",
"updated": "2025-03-05T09:17:22.119Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Delineate Anything Boundaries Ukraine 2025",
"id": 140,
"url": "https://data.source.coop/khvzix/delineate-anything-fields/DA-Ukraine-2025-v2-simp-gpkg/stac/collection.json",
"slug": "da-field-boundaries-ukraine-2025-simplified",
"summary": "Simplified national scale field boundary dataset for Ukraine for year 2025. The dataset is provided as a GeoPackage and is intended for agricultural analysis, field delineation research, and machine learning workflows.",
"access": "private",
"created": "2026-01-03T23:44:02.029Z",
"updated": "2026-01-03T23:44:02.029Z",
"isPrivate": true,
"isApi": false,
"accessInfo": "The dataset is publicly accessible via a static STAC Collection hosted on Source Cooperative. Interested users can access the metadata by opening the provided STAC Collection URL in a web browser or by using any STAC compatible client. The Collection describes the spatial and temporal extent of the dataset and provides direct HTTPS links to the underlying GeoPackage file. No authentication or registration is required. The data file can be downloaded directly from Source Cooperative, or accessed programmatically in geospatial and machine learning workflows using standard tools that support STAC and GeoPackage formats."
},
{
"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": "Destination Earth Data Lake (DEDL) API",
"id": 136,
"url": "https://hda.data.destination-earth.eu/stac/v2",
"slug": "dedl-api",
"summary": "DestinE Data Lake (DEDL) fulfils the storage and access requirements for any data that is offered to DestinE users. It provides users with seamless access to the datasets, regardless of data type and location. EUMETSAT has the end-to-end responsibility for the DEDL.",
"access": "public",
"created": "2025-09-26T09:49:05.146Z",
"updated": "2025-09-26T09:49:05.146Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"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": "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 Data Hub Catalogue",
"id": 107,
"url": "https://earthdatahub.destine.eu/api/stac/v1/",
"slug": "earth-data-hub-catalogue",
"summary": "Destination Earth is a flagship initiative of the European Commission to develop a highly accurate digital model of the Earth to monitor and simulate natural phenomena, hazards and the related human activities.",
"access": "protected",
"created": "2024-11-14T15:17:56.180Z",
"updated": "2024-11-14T15:17:56.180Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "Please contact DestinE Platform as the provider of the API for further information: https://platform.destine.eu"
},
{
"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": "EasierData",
"id": 145,
"url": "https://stac.easierdata.info",
"slug": "easierdata",
"summary": "Datasets: Global Ecosystem Dynamics Investigation (GEDI), Landsat C2 L1, Multi-Temporal Crop Classification (HLS L30 & CDL)",
"access": "public",
"created": "2026-02-26T09:50:24.587Z",
"updated": "2026-02-26T09:50:24.587Z",
"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": "Geoportal des Kantons Bern",
"id": 149,
"url": "https://geofiles.be.ch/geoportal/pub/stac/de/catalog.json",
"slug": "geoportal-des-kantons-bern",
"summary": "Geoportal of the Canton of Bern in Switzerland: Geoproducts for download",
"access": "public",
"created": "2026-04-10T22:48:42.830Z",
"updated": "2026-04-10T22:48:42.830Z",
"isPrivate": false,
"isApi": false,
"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": "HUB Ocean\u00b4s Ocean Data Platform Catalog",
"id": 134,
"url": "https://api.hubocean.earth/api/stac",
"slug": "hub-oceans-ocean-data-platform-catalog",
"summary": "Hub Ocean Ocean Data Platform (ODP) Public STAC API It is compatible with most GIS plugins, it has rich metadata, supports pagination, search and should feel snappy to use! For details, please refer to the detailed documentation is here https://docs.hubocean.earth/stac-api/",
"access": "public",
"created": "2025-09-04T13:31:40.938Z",
"updated": "2025-09-04T13:31:40.938Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Hong Kong CSDI Trial",
"id": 109,
"url": "https://raw.githubusercontent.com/Anna-leungtn/STAC_CSDI/refs/heads/main/ib1000_stac/catalog.json",
"slug": "hong-kong-csdi-trial",
"summary": "This is a CSDI Catalog trial run create under the LandsD CSDI Platform Section.",
"access": "public",
"created": "2024-12-10T13:19:39.164Z",
"updated": "2024-12-10T13:19:39.164Z",
"isPrivate": false,
"isApi": false,
"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": "INPE STAC Server",
"id": 147,
"url": "https://data.inpe.br/bdc/stac/v1/",
"slug": "inpe-stac-server",
"summary": "This is the landing page for the INPE STAC server. The SpatioTemporal Asset Catalogs (STAC) provide a standardized way to expose collections of spatial temporal data. Here you will find collections of data provided by projects and areas of INPE.",
"access": "public",
"created": "2026-04-02T13:21:52.183Z",
"updated": "2026-04-02T13:21:52.183Z",
"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 SpatioTemporal Asset Catalog",
"id": 132,
"url": "https://spved5ihrl.execute-api.us-west-2.amazonaws.com/",
"slug": "kentucky-from-above-spatiotemporal-asset-catalog",
"summary": "This API delivers the Kentucky Aerial Photography and Elevation Data (KYAPED) program data dating from 2010 - Present. Collections are divided in three phases (of collection) for each product - leaf-off orthoimagery, LiDAR point cloud, and LiDAR-derived digital elevation model.",
"access": "public",
"created": "2025-08-17T14:27:53.980Z",
"updated": "2025-08-17T14:27:53.980Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "MISTEO STAC SERVER",
"id": 138,
"url": "https://stac-server.dev2prod.co/",
"slug": "misteo-stac-server",
"summary": "MISTEO STAC SERVER , for geo data for selected states ",
"access": "public",
"created": "2025-11-11T09:29:37.430Z",
"updated": "2025-11-11T09:29:37.430Z",
"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": "MTD STAC API",
"id": 135,
"url": "https://api.stac.teledetection.fr",
"slug": "mtd-stac-api",
"summary": "Spatio Temporal Assets Catalog powered by 'Maison de la Teledetection' (aka MTD). It regroups scientific productions of UMR TETIS, UMR Espace-Dev, and external collaborators. See https://www.stac.teledetection.fr",
"access": "public",
"created": "2025-09-22T13:40:53.309Z",
"updated": "2025-09-22T13:40:53.309Z",
"isPrivate": false,
"isApi": true,
"accessInfo": null
},
{
"title": "Markh\u00f6jdmodell Nedladdning Lantm\u00e4teriet",
"id": 118,
"url": "https://api.lantmateriet.se/stac-hojd/v1",
"slug": "markhojdmodell-nedladdning-lantmateriet",
"summary": "The catalog contains elevation data from Lantm\u00e4teriet over Sweden, which is free of charge and available for use under the Creative Commons license CC BY 4.0.",
"access": "protected",
"created": "2025-05-17T16:38:43.715Z",
"updated": "2025-05-19T10:38:43.715Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "To get access to this data you need to order access to it in Lantm\u00e4teriets portal GeoTorget: https://www.lantmateriet.se/sv/geodata/vara-produkter/produktlista/markhojdmodell-nedladdning/#anchor-3"
},
{
"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 Coastal Elevation",
"id": 122,
"url": "https://nz-coastal.s3-ap-southeast-2.amazonaws.com/catalog.json",
"slug": "nz-coastal",
"summary": "Toit\u016b Te Whenua Land Information New Zealand makes New Zealand's publicly owned coastal 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": "2025-06-17T00:40:56.767Z",
"updated": "2025-06-17T00:40:56.767Z",
"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 Raster DEM Data Catalog",
"id": 25,
"url": "https://portal.opentopography.org/stac/raster_catalog.json",
"slug": "opentopography",
"summary": "A catalog of OpenTopography hosted raster topography (digital elevation model) datasets.",
"access": "public",
"created": "2020-11-18T04:57:20.431Z",
"updated": "2025-07-31T10:32: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": "Ortofoto Nedladdning Lantm\u00e4teriet",
"id": 117,
"url": "https://api.lantmateriet.se/stac-bild/v1",
"slug": "ortofoto-nedladdning-lantmateriet",
"summary": "The catalog contains orthophotos from Lantm\u00e4teriet over Sweden that are free of charge, using Creative Commons license CC BY 4.0. Your use will be subject to legal review in accordance with the General Data Protection Regulation (GDPR), you will need to agree to specific terms of use.",
"access": "protected",
"created": "2025-05-17T16:30:47.733Z",
"updated": "2025-05-19T10:30:47.733Z",
"isPrivate": true,
"isApi": true,
"accessInfo": "To get access to this data you need to order access to it in Lantm\u00e4teriets portal GeoTorget: https://geotorget.lantmateriet.se/dokumentation/GEODOK/44/latest/atkomst-och-leverans.html"
},
{
"title": "Overture Releases",
"id": 141,
"url": "https://stac.overturemaps.org/catalog.json",
"slug": "overture",
"summary": "All Overture releases. Addresses, Base, Buildings, Divisions, Places, Transportation as GeoParquet files.",
"access": "public",
"created": "2026-02-04T22:42:19.419Z",
"updated": "2026-02-04T22:42:19.419Z",
"isPrivate": false,
"isApi": false,