File: gallery.py

package info (click to toggle)
metview-python 1.16.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,896 kB
  • sloc: python: 11,306; makefile: 84; ansic: 51; sh: 7
file content (48 lines) | stat: -rw-r--r-- 1,389 bytes parent folder | download | duplicates (2)
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
# (C) Copyright 2017- 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 os
import zipfile

import metview as mv


def load_dataset(filename, check_local=False):
    def _simple_download(url, target):
        import requests

        r = requests.get(url, allow_redirects=True)
        r.raise_for_status()
        open(target, "wb").write(r.content)

    if check_local and os.path.exists(filename):
        try:
            return mv.read(filename)
        except:
            return None

    base_url = "https://get.ecmwf.int/test-data/metview/gallery/"
    try:
        # d = mv.download(url=base_url + filename, target=filename)
        _simple_download(os.path.join(base_url, filename), filename)
    except Exception as e:
        raise Exception(
            f"Could not download file={filename} from the download server. {e}"
        )

    d = None
    if filename.endswith(".zip"):
        with zipfile.ZipFile(filename, "r") as f:
            f.extractall()
    else:
        try:
            d = mv.read(filename)
        except:
            pass
    return d