Skip to content

actris

ACTRIS/EBAS Reader. Deprecated wrapper — use monetio.load('actris', ...) instead.

add_data(files=None, **kwargs)

Retrieve and load ACTRIS/EBAS data.

Source code in monetio/obs/actris.py
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
@deprecated_wrapper(
    "monetio.obs.actris.add_data",
    'monetio.load("actris", files=...)',
)
def add_data(
    files=None,
    **kwargs,
):
    """Retrieve and load ACTRIS/EBAS data."""
    return ACTRISReader().open_dataset(
        files=files,
        **kwargs,
    )