weatherdb 1.2.1__py3-none-any.whl → 1.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- weatherdb/_version.py +1 -1
- weatherdb/cli.py +2 -1
- weatherdb/config/ConfigParser.py +14 -1
- weatherdb/station/GroupStation.py +7 -7
- weatherdb/stations/GroupStations.py +3 -3
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/METADATA +1 -1
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/RECORD +11 -11
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/WHEEL +1 -1
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/LICENSE +0 -0
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/entry_points.txt +0 -0
- {weatherdb-1.2.1.dist-info → weatherdb-1.2.2.dist-info}/top_level.txt +0 -0
weatherdb/_version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.2.
|
1
|
+
__version__ = "1.2.2"
|
weatherdb/cli.py
CHANGED
@@ -76,7 +76,8 @@ def upgrade_db_schema(revision):
|
|
76
76
|
|
77
77
|
@cli.command(short_help="Create User configuration file.")
|
78
78
|
@click.option('--file', '-f',
|
79
|
-
type=click.Path(
|
79
|
+
type=click.Path(resolve_path=True, dir_okay=False, file_okay=True),
|
80
|
+
default="ask", show_default=True,
|
80
81
|
help="The file to save the user configuration to.")
|
81
82
|
@click.option('--on-exists', '-e',
|
82
83
|
type=str, default="ask", show_default=True,
|
weatherdb/config/ConfigParser.py
CHANGED
@@ -36,11 +36,24 @@ class ConfigParser(configparser.ConfigParser):
|
|
36
36
|
self._user_listeners = []
|
37
37
|
|
38
38
|
# read the configuration files
|
39
|
-
self.read(self._DEFAULT_CONFIG_FILE)
|
39
|
+
self.read(self._DEFAULT_CONFIG_FILE, encoding="utf-8")
|
40
40
|
self._read_main_config()
|
41
41
|
self.load_user_config(raise_undefined_error=False)
|
42
42
|
self.load_environment_variables()
|
43
43
|
|
44
|
+
def read(self, filenames, encoding="utf-8"):
|
45
|
+
"""Read and parse a list of filenames.
|
46
|
+
|
47
|
+
Parameters
|
48
|
+
----------
|
49
|
+
filenames : list or str
|
50
|
+
A list of filenames or a single filename to read.
|
51
|
+
encoding : str, optional
|
52
|
+
The encoding of the file.
|
53
|
+
The default is None.
|
54
|
+
"""
|
55
|
+
super().read(filenames=filenames, encoding=encoding)
|
56
|
+
|
44
57
|
def add_listener(self, section, option, callback):
|
45
58
|
"""Add a callback function to be called when a configuration option is changed.
|
46
59
|
|
@@ -163,7 +163,7 @@ class GroupStation(object):
|
|
163
163
|
The default is True.
|
164
164
|
paras : list of str or str, optional
|
165
165
|
Give the parameters for which to get the meta information.
|
166
|
-
Can be "
|
166
|
+
Can be "p", "t", "et" or "all".
|
167
167
|
If "all", then every available station parameter is returned.
|
168
168
|
The default is "all"
|
169
169
|
add_na_share : bool, optional
|
@@ -298,7 +298,7 @@ class GroupStation(object):
|
|
298
298
|
----------
|
299
299
|
paras : list of str or str, optional
|
300
300
|
Give the parameters for which to get the meta information.
|
301
|
-
Can be "
|
301
|
+
Can be "p", "t", "et" or "all".
|
302
302
|
If "all", then every available station parameter is returned.
|
303
303
|
The default is "all"
|
304
304
|
**kwargs : dict, optional
|
@@ -398,8 +398,8 @@ class GroupStation(object):
|
|
398
398
|
agg_to="10 min", r_r0=r_r0, split_date=True,
|
399
399
|
nas_allowed=False,
|
400
400
|
add_t_min=add_t_min, add_t_max=add_t_max,
|
401
|
-
file_names={"
|
402
|
-
col_names={"
|
401
|
+
file_names={"P":"PREC.txt", "T":"TA.txt", "ET":"PET.txt"},
|
402
|
+
col_names={"P":"PREC", "ET":"PET",
|
403
403
|
"T":"TA", "T_min":"TA_min", "T_max":"TA_max",
|
404
404
|
"Jahr":"YYYY", "Monat":"MM", "Tag":"DD",
|
405
405
|
"Stunde":"hh", "Minute":"mm"},
|
@@ -443,7 +443,7 @@ class GroupStation(object):
|
|
443
443
|
If only one kind is asked for, then the columns get renamed to only have the parameter name as column name.
|
444
444
|
paras : list of str or str, optional
|
445
445
|
Give the parameters for which to get the meta information.
|
446
|
-
Can be "
|
446
|
+
Can be "p", "t", "et" or "all".
|
447
447
|
If "all", then every available station parameter is returned.
|
448
448
|
The default is "all"
|
449
449
|
agg_to : str, optional
|
@@ -484,12 +484,12 @@ class GroupStation(object):
|
|
484
484
|
The default is True.
|
485
485
|
file_names : dict, optional
|
486
486
|
A dictionary with the file names for the different parameters.
|
487
|
-
e.g.{"
|
487
|
+
e.g.{"P":"PREC.txt", "T":"TA.txt", "ET":"ET.txt"}
|
488
488
|
If an empty dictionary is given, then the standard names are used.
|
489
489
|
The default is {}.
|
490
490
|
col_names : dict, optional
|
491
491
|
A dictionary with the column names for the different parameters.
|
492
|
-
e.g.{"
|
492
|
+
e.g.{"P":"PREC", "T":"TA", "ET":"ET", "Jahr":"YYYY", "Monat":"MM", "Tag":"DD", "Stunde":"HH", "Minute":"MN"}
|
493
493
|
If an empty dictionary is given, then the standard names are used.
|
494
494
|
The default is {}.
|
495
495
|
keep_date_parts : bool, optional
|
@@ -46,7 +46,7 @@ class GroupStations(object):
|
|
46
46
|
if isinstance(paras, str) and paras != "all":
|
47
47
|
paras = [paras,]
|
48
48
|
|
49
|
-
valid_paras=["
|
49
|
+
valid_paras=["p", "t", "et"]
|
50
50
|
if isinstance(paras, str) and (paras == "all"):
|
51
51
|
return valid_paras
|
52
52
|
else:
|
@@ -502,8 +502,8 @@ class GroupStations(object):
|
|
502
502
|
agg_to="10 min", r_r0=r_r0, stids=stids,
|
503
503
|
split_date=True, nas_allowed=False,
|
504
504
|
add_t_min=add_t_min, add_t_max=add_t_max,
|
505
|
-
file_names={"
|
506
|
-
col_names={"
|
505
|
+
file_names={"P":"PREC.txt", "T":"TA.txt", "ET":"PET.txt"},
|
506
|
+
col_names={"P":"PREC", "ET":"PET",
|
507
507
|
"T":"TA", "T_min":"TA_min", "T_max":"TA_max",
|
508
508
|
"Jahr":"YYYY", "Monat":"MM", "Tag":"DD",
|
509
509
|
"Stunde":"hh", "Minute":"mm"},
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: weatherdb
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.2
|
4
4
|
Summary: This is a package to work with and to create the Weather Database which handles, checks, fills and corrects DWD Weather Station data.
|
5
5
|
Author-email: Max Schmit <max.schmit@hydrology.uni-freiburg.de>
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
@@ -44,9 +44,9 @@ tests/test-data/regionalisation/DWD-grid_ma_1991_2020_DGM25_clipped.tif,sha256=8
|
|
44
44
|
tests/test-data/regionalisation/HYRAS_ma_1991_2020_DGM25_clipped.tif,sha256=HiSmi715dUpryQ1WSLSXR7GmGPHzK0rl6WOOrwjRwXw,2116377
|
45
45
|
tests/test-data/regionalisation/README.md,sha256=equFOPJVaESGKIK1ZPVEJHY4TEqkW3NpJOFQzjsBy7M,151
|
46
46
|
weatherdb/__init__.py,sha256=2BzziScTYzA65WS6nhtCRZOWSLfwHTCwvZdeyuHw79U,846
|
47
|
-
weatherdb/_version.py,sha256=
|
47
|
+
weatherdb/_version.py,sha256=UmNr0TvEXPPzP6WnlT4bB4F4pSBdsEE64uchGSzkPTI,21
|
48
48
|
weatherdb/broker.py,sha256=qJaKVwo1zcTLKmP-sF_DMod6_7jVsdHEoiKEMvsPx9A,24842
|
49
|
-
weatherdb/cli.py,sha256=
|
49
|
+
weatherdb/cli.py,sha256=b5p9SRP5aqQ3w89MLErAjFj37aZMy9OsF23nCDC8NJY,11358
|
50
50
|
weatherdb/alembic/README.md,sha256=6hq24TPr8z3nqJCaqrmj6__kLikVG66kLGqfC_aFPWQ,440
|
51
51
|
weatherdb/alembic/alembic.ini,sha256=Mc3-qkQfA42ApX9douZT77g1pWE9gn4oMVJEDoebmdQ,3087
|
52
52
|
weatherdb/alembic/config.py,sha256=Q4aolMUUT7f6VmbY0uz_dWBtKkj3KgTUs_xOY_Gbzjw,264
|
@@ -56,7 +56,7 @@ weatherdb/alembic/versions/V1.0.0_initial_database_creation.py,sha256=Ztj21xNdJc
|
|
56
56
|
weatherdb/alembic/versions/V1.0.2_more_charachters_for_settings+term_station_ma_raster.py,sha256=jrnBpgUxjaBt1oUFJb0PeTZ4L5hEDh9K8ncF33cLdQE,3738
|
57
57
|
weatherdb/alembic/versions/V1.0.5_fix-ma-raster-values.py,sha256=EvJ_JLLJKUN5YXwWZdS1FHK2oHjhIlayvjtJuoK3eCI,6957
|
58
58
|
weatherdb/alembic/versions/V1.0.6_update-views.py,sha256=ZA7cK5yeAqivFG2V8O7mvyKSkGRlphVOs0qKpBYgYKE,420
|
59
|
-
weatherdb/config/ConfigParser.py,sha256
|
59
|
+
weatherdb/config/ConfigParser.py,sha256=-ubnKwzUR9ryrPI_6aYULmyyaNzz4-TylPgHs3yoq4I,28403
|
60
60
|
weatherdb/config/__init__.py,sha256=JBNlYPT43JnO8XMI8HTtg2hyA7C_JnMdtWmJ2vAtNZ8,85
|
61
61
|
weatherdb/config/config_default.ini,sha256=5DQzOqOJ9EVRAu9IA_EO4c8aqnuUvTmocwidOhLLXbY,7884
|
62
62
|
weatherdb/db/__init__.py,sha256=g6F66XR6UPz41kPtSRc1qvDoOEZ5OawYxYtYXCgZ06s,76
|
@@ -65,7 +65,7 @@ weatherdb/db/models.py,sha256=6Oor07T1sAD6qEtoxwEcpmY1SkLVVONChXIIcTjbUk4,15242
|
|
65
65
|
weatherdb/db/views.py,sha256=DxY_IIonmiiRM-IhQrUMLwj12gIg6Q30rQAmR3wP3BE,6359
|
66
66
|
weatherdb/db/fixtures/RichterParameters.json,sha256=CKxrB5FBX_BRKqxegXNyNtn9DUKmgibUtdvHoE8E5JI,836
|
67
67
|
weatherdb/db/queries/get_quotient.py,sha256=9wVFmXE8tk8igGj-Xk5uSI0eiF_PQ9d-yRq7RJpvMAA,6787
|
68
|
-
weatherdb/station/GroupStation.py,sha256=
|
68
|
+
weatherdb/station/GroupStation.py,sha256=mLDZIQ2fAxSQs_zQl1cFJgOHizVlTyUG1uoEzm6uYqo,30292
|
69
69
|
weatherdb/station/StationBases.py,sha256=1XylC_k2ZCSJf3-xs4SBE-JSfwrlZWzn1N154S0KzgU,130330
|
70
70
|
weatherdb/station/StationET.py,sha256=hM6K8fCLC6mOLaE4cN92LHOyPGP01ifO6l2qO77I_bA,3621
|
71
71
|
weatherdb/station/StationP.py,sha256=ENmWqEFwKR1WFsWmZ8-webEGTmrxODan8QO0gwIDDIU,32719
|
@@ -73,7 +73,7 @@ weatherdb/station/StationPD.py,sha256=Bcg_uQTgIQPffsMGhNEwKAXhYs1Ii4VeB75afdFG-K
|
|
73
73
|
weatherdb/station/StationT.py,sha256=-T1GKfUsvulm5c_-JufJ34H048fGlG21UF0_2z1dd9A,6012
|
74
74
|
weatherdb/station/__init__.py,sha256=v1sPfmhhLRMOr5DJ2c5BLIFY7GWkP5iMLA5vtZm-osg,591
|
75
75
|
weatherdb/station/constants.py,sha256=vtdhgcK8A2cJaknT6qI8w5tAh_Hb5i2SvxxtHZOPyVc,511
|
76
|
-
weatherdb/stations/GroupStations.py,sha256=
|
76
|
+
weatherdb/stations/GroupStations.py,sha256=5Xc5lW_crJdzMwldpbyalIFYbyQm2BPiGbl-VrXZZh8,21569
|
77
77
|
weatherdb/stations/StationsBase.py,sha256=M7VyWJgUmIygJ2rByQy0Zz6RKsaDVT8-iaXzhPTa_b4,42991
|
78
78
|
weatherdb/stations/StationsBaseTET.py,sha256=CuE5gXAF4eS4bHorI-sUqksm0jdj9SzAiOHtc4vv7aA,1032
|
79
79
|
weatherdb/stations/StationsET.py,sha256=OjyEaEK0nPJ9txRfUbHfW9bEEx5HAISWmnk5F4GBs7I,433
|
@@ -87,9 +87,9 @@ weatherdb/utils/dwd.py,sha256=amEVVPLzXTSScBP5VAK35dBxuiy-Ua4hHyKnDGxD_4Q,12394
|
|
87
87
|
weatherdb/utils/geometry.py,sha256=Od-RDAW1MASVAsGBXpHti9osbVJDqUbumSKBSJPbQqc,1823
|
88
88
|
weatherdb/utils/get_data.py,sha256=62wV37fuzGhC2fLSCL7JyyMd3BAiRiimIhV95-mEROU,17294
|
89
89
|
weatherdb/utils/logging.py,sha256=iaWnzCdBYxFmzWgLq9a6VAeBMdwy-rnt2d9PSAQq4lA,4242
|
90
|
-
weatherdb-1.2.
|
91
|
-
weatherdb-1.2.
|
92
|
-
weatherdb-1.2.
|
93
|
-
weatherdb-1.2.
|
94
|
-
weatherdb-1.2.
|
95
|
-
weatherdb-1.2.
|
90
|
+
weatherdb-1.2.2.dist-info/LICENSE,sha256=ixuiBLtpoK3iv89l7ylKkg9rs2GzF9ukPH7ynZYzK5s,35148
|
91
|
+
weatherdb-1.2.2.dist-info/METADATA,sha256=2KUyRibsyu3pvzfYPYSHmCXvM4BPI6T8xVRH4VnP744,44266
|
92
|
+
weatherdb-1.2.2.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
93
|
+
weatherdb-1.2.2.dist-info/entry_points.txt,sha256=kJemTd9Cm_QWPZt03KUWhpn1aB0-l_5ce6Ms3EoS_NM,55
|
94
|
+
weatherdb-1.2.2.dist-info/top_level.txt,sha256=kLlRbXLn0GHvMWmciWRyvm0-FYEy56F6d0fGwfle9-g,28
|
95
|
+
weatherdb-1.2.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|