-
Notifications
You must be signed in to change notification settings - Fork 1
/
provider_settings.yml
55 lines (55 loc) · 2 KB
/
provider_settings.yml
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
---
# Dictionary associating URLs to settings to pass to the downloaders
'ftp://nrt.cmems-du.eu':
username: !ENV 'CMEMS_USERNAME'
password: !ENV 'CMEMS_PASSWORD'
max_parallel_downloads: 10
'ftp://anon-ftp.ceda.ac.uk':
username: 'anonymous'
password: ''
max_parallel_downloads: 12
'ftp://ftp.ceda.ac.uk':
username: !ENV 'CEDA_USERNAME'
password: !ENV 'CEDA_PASSWORD'
max_parallel_downloads: 10
'ftp://ftp.gportal.jaxa.jp':
username: !ENV 'JAXA_USERNAME'
password: !ENV 'JAXA_PASSWORD'
'https://zipper.creodias.eu':
username: !ENV 'CREODIAS_USERNAME'
password: !ENV 'CREODIAS_PASSWORD'
authentication_type: 'oauth2'
token_url: 'https://identity.cloudferro.com/auth/realms/Creodias-new/protocol/openid-connect/token'
client_id: 'CLOUDFERRO_PUBLIC'
max_parallel_downloads: 4
totp_secret: !ENV 'CREODIAS_TOTP_SECRET'
'https://datahub.creodias.eu':
username: !ENV 'CREODIAS_USERNAME'
password: !ENV 'CREODIAS_PASSWORD'
authentication_type: 'oauth2'
token_url: 'https://identity.cloudferro.com/auth/realms/Creodias-new/protocol/openid-connect/token'
client_id: 'CLOUDFERRO_PUBLIC'
max_parallel_downloads: 4
totp_secret: !ENV 'CREODIAS_TOTP_SECRET'
token_placement: 'url'
token_parameter_name: 'token'
'https://catalogue.dataspace.copernicus.eu':
username: !ENV 'COPERNICUS_DATA_SPACE_USERNAME'
password: !ENV 'COPERNICUS_DATA_SPACE_PASSWORD'
authentication_type: 'oauth2'
token_url: 'https://identity.dataspace.copernicus.eu/auth/realms/CDSE/protocol/openid-connect/token'
client_id: 'cdse-public'
max_parallel_downloads: 4
'https://podaac-tools.jpl.nasa.gov/drive/files':
username: !ENV 'PODAAC_DRIVE_USERNAME'
password: !ENV 'PODAAC_DRIVE_PASSWORD'
'https://oceandata.sci.gsfc.nasa.gov':
username: !ENV EARTHDATA_USERNAME
password: !ENV EARTHDATA_PASSWORD
'https://archive.swot.podaac.earthdata.nasa.gov/':
username: !ENV EARTHDATA_USERNAME
password: !ENV EARTHDATA_PASSWORD
'https://tds.aviso.altimetry.fr':
username: !ENV AVISO_USERNAME
password: !ENV AVISO_PASSWORD
...