summaryrefslogtreecommitdiff
path: root/cds-test.py
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2020-01-06 15:08:32 +0100
committerGard Spreemann <gspr@nonempty.org>2020-01-06 15:08:32 +0100
commit535722281466c006ee6326d5b230508bfe7fb259 (patch)
tree0ca388d18303f39ff6264a4d335e12cdfcf162fc /cds-test.py
parent64646c1280fc880ece8fb83f216f206299f64602 (diff)
parent0c28fb7da83c7afba74416a88682eb931d874ce4 (diff)
Merge tag 'upstream/0.2.5' into debian/sid
Upstream 0.2.5 tarball as released on PyPI.
Diffstat (limited to 'cds-test.py')
-rw-r--r--cds-test.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/cds-test.py b/cds-test.py
new file mode 100644
index 0000000..30d3fa0
--- /dev/null
+++ b/cds-test.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+
+# (C) Copyright 2018 ECMWF.
+#
+# This software is licensed under the terms of the Apache Licence Version 2.0
+# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
+# In applying this licence, ECMWF does not waive the privileges and immunities
+# granted to it by virtue of its status as an intergovernmental organisation nor
+# does it submit to any jurisdiction.
+
+import cdsapi
+
+
+c = cdsapi.Client(full_stack=True,
+ #url='https://cds-test.climate.copernicus.eu/api/v2',
+ #key='1:1c2ab50b-2208-4d84-b59d-87154cae4441',
+ debug=True, quiet=False)
+
+# print(c.status())
+
+r = c.retrieve(
+ "reanalysis-era5-pressure-levels",
+ {
+ "variable": "temperature",
+ "pressure_level": "all",
+ "product_type": "reanalysis",
+ "date": "2017-12-01/2017-12-30",
+ "time": "19:00",
+ },
+)
+
+# r.download("x.grib")