Skip to content

Commit b9d2d57

Browse files
authored
add copernicus services products (#6)
1 parent 96c5447 commit b9d2d57

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ This repo provides the list of geospatial datasets in two formats:
2222
- Planetary Computer Catalog: [pc_catalog.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/pc_catalog.tsv)
2323
- NASA CMR STAC Catalog: [nasa_cmr_catalog.tsv](https://github.com/opengeos/NASA-CMR-STAC/blob/master/nasa_cmr_catalog.tsv)
2424

25+
#### Copernicus Services Products
26+
- Copernicus Atmosphere: [copernicus_atmosphere.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_atmosphere.tsv)
27+
- Copernicus Climate: [copernicus_climate.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_climate.tsv)
28+
- Copernicus Emergency: [copernicus_emergency.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_emergency.tsv)
29+
- Copernicus Land: [copernicus_land.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_land.tsv)
30+
- Copernicus Marine: [copernicus_marine.tsv](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_marine.tsv)
31+
2532
### JSON format
2633

2734
- AWS Open Data: [aws_open_datasets.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/aws_open_datasets.json)
@@ -32,6 +39,13 @@ This repo provides the list of geospatial datasets in two formats:
3239
- Planetary Computer Catalog: [pc_catalog.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/pc_catalog.json)
3340
- NASA CMR STAC Catalog: [nasa_cmr_catalog.json](https://github.com/opengeos/NASA-CMR-STAC/blob/master/nasa_cmr_catalog.json)
3441

42+
#### Copernicus Services Products
43+
- Copernicus Atmosphere: [copernicus_atmosphere.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_atmosphere.json)
44+
- Copernicus Climate: [copernicus_climate.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_climate.json)
45+
- Copernicus Emergency: [copernicus_emergency.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_emergency.json)
46+
- Copernicus Land: [copernicus_land.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_land.json)
47+
- Copernicus Marine: [copernicus_marine.json](https://github.com/opengeos/geospatial-data-catalogs/blob/master/copernicus_marine.json)
48+
3549
### Examples
3650

3751
The TSV file can be easily read into a Pandas DataFrame using the following code:
@@ -55,3 +69,4 @@ df.head()
5569
- A list of geospatial datasets on NASA's Common Metadata Repository (CMR): [NASA-CMR-STAC](https://github.com/opengeos/NASA-CMR-STAC)
5670
- A list of geospatial data catalogs: [geospatial-data-catalogs](https://github.com/opengeos/geospatial-data-catalogs)
5771
- The Maxar Open Data STAC Catalog: [maxar-open-data](https://github.com/opengeos/maxar-open-data)
72+
- Copernicus Services Products Metadata: [Copernicus-Services-Products-Metadata](https://github.com/do-me/Copernicus-Services-Products-Metadata)

auto_update.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@
1515
"https://github.com/giswqs/Planetary-Computer-Catalog/raw/master/pc_catalog.json",
1616
"https://github.com/giswqs/NASA-CMR-STAC/raw/master/nasa_cmr_catalog.tsv",
1717
"https://github.com/giswqs/NASA-CMR-STAC/raw/master/nasa_cmr_catalog.json"
18+
# Copernicus Metadata
19+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/tsv/copernicus_atmosphere.tsv",
20+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/json/copernicus_atmosphere.json",
21+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/tsv/copernicus_climate.tsv",
22+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/json/copernicus_climate.json",
23+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/tsv/copernicus_emergency.tsv",
24+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/json/copernicus_emergency.json",
25+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/tsv/copernicus_land.tsv",
26+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/json/copernicus_land.json",
27+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/tsv/copernicus_marine.tsv",
28+
"https://github.com/do-me/Copernicus-Services-Products-Metadata/raw/main/outputs/json/copernicus_marine.json"
1829
]
1930

2031
for link in links:

0 commit comments

Comments
 (0)