-
Notifications
You must be signed in to change notification settings - Fork 0
/
prepare_stationdata_all.py
34 lines (25 loc) · 1 KB
/
prepare_stationdata_all.py
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
#!/usr/bin/env python3
# -------------------------------------------------------------------
# Downloader for the EUPP Hacky Benchmark Station Dataset
#
# Also works on the European Weather Cloud for data which is not
# publicly available (Switzerland).
#
# Developed on Python version 3.10.4
#
# Authors: Thorsten Simon and Reto Stauffer
# Date: 2022-09-16
# -------------------------------------------------------------------
from functions import *
from prepare_stationdata import main
# -------------------------------------------------------------------
# Main part of the Script
# -------------------------------------------------------------------
if __name__ == "__main__":
# Some settings
CSVDIR = "csvdata"
# Start downloading
#for c in ["germany", "france", "netherlands", "switzerland", "austria"]:
for c in ["germany", "france", "netherlands", "austria"]:
main({"prefix": "euppens", "country": c.lower(), "param": "t2m", "nocache": False})
print("\n .... everything done.")