-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add data from Copernicus products #3
Comments
The motu API python client looks like a good option. Instead of passing all the params as arguments, the
|
Subsetting the datasets using MOTU is going to be a challenge very similar to the ones we have with ERDDAP.
It would be lovely if ERDDAP could be set up to connect to a MOTU backend (like it does with other ERDDAP servers & s3 buckets), but I don't see that in the ERDDAP docs. A PR to ERDDAP would be needed. The alternatives:
|
closing here and moving discussion over to |
Example CMEMS dataset (Global carbon):
https://data.marine.copernicus.eu/product/MULTIOBS_GLO_BIO_CARBON_SURFACE_REP_015_008/description
Data access page is here:
https://data.marine.copernicus.eu/product/MULTIOBS_GLO_BIO_CARBON_SURFACE_REP_015_008/services
No ERDDAP option. Other options for data download:
MOTU (can subset)
OpenDAP
FTP
WMS (maps)
Need login credentials for this. Account is free (CMEMS).
MOTU API URL:
python -m motuclient --motu https://my.cmems-du.eu/motu-web/Motu --service-id MULTIOBS_GLO_BIO_CARBON_SURFACE_REP_015_008-TDS --product-id dataset-carbon-rep-monthly --date-min "2021-12-15 00:00:00" --date-max "2021-12-15 23:59:59" --variable fgco2 --variable fgco2_uncertainty --variable omega_ar --variable omega_ar_uncertainty --variable omega_ca --variable omega_ca_uncertainty --variable ph --variable ph_uncertainty --variable spco2 --variable spco2_uncertainty --variable talk --variable talk_uncertainty --variable tco2 --variable tco2_uncertainty --out-dir <OUTPUT_DIRECTORY> --out-name <OUTPUT_FILENAME> --user --pwd
The text was updated successfully, but these errors were encountered: