tfv-get-tools 0.2.3__py3-none-any.whl → 0.2.4__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.
- tfv_get_tools/cli/_cli_base.py +6 -2
- tfv_get_tools/cli/atmos_cli.py +2 -2
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/METADATA +1 -1
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/RECORD +8 -8
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/WHEEL +0 -0
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/entry_points.txt +0 -0
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/licenses/LICENSE +0 -0
- {tfv_get_tools-0.2.3.dist-info → tfv_get_tools-0.2.4.dist-info}/top_level.txt +0 -0
tfv_get_tools/cli/_cli_base.py
CHANGED
|
@@ -137,15 +137,19 @@ class CLIBase(ABC):
|
|
|
137
137
|
|
|
138
138
|
def check_bbox(args):
|
|
139
139
|
"""
|
|
140
|
-
Unfortunate edge case hackfix for programmer style floats like "-28."
|
|
140
|
+
Unfortunate edge case hackfix for programmer style floats like "-28." instead of "-28.0".
|
|
141
141
|
Fixes negative numbers with trailing dots in the final 4 arguments (bbox).
|
|
142
142
|
Only modifies if all 4 final args are numeric-like!!
|
|
143
143
|
Otherwise spits fire
|
|
144
|
-
"""
|
|
144
|
+
"""
|
|
145
145
|
# Early exit if only 1 or 2 args are provided - or --help / -h
|
|
146
146
|
if len(args) == 1 or len(args) == 2 or (len(args) >= 2 and (('-h' in args) or ('--help' in args))):
|
|
147
147
|
return args
|
|
148
148
|
|
|
149
|
+
# Skip argument manipulation if we're on the Merger or the INFO
|
|
150
|
+
if args[1] in ['B', 'info']:
|
|
151
|
+
return args
|
|
152
|
+
|
|
149
153
|
if (len(args) < 4):
|
|
150
154
|
raise ValueError("Must supply at minimum 6 arguments - time_start time_end xmin xmax ymin ymax")
|
|
151
155
|
|
tfv_get_tools/cli/atmos_cli.py
CHANGED
|
@@ -53,10 +53,10 @@ def print_atmos_info():
|
|
|
53
53
|
Merge ERA5 Reanalysis Data - all defaults, merge all data in the raw folder
|
|
54
54
|
`GetAtmos B`
|
|
55
55
|
|
|
56
|
-
Download BARRA2
|
|
56
|
+
Download BARRA2 R2 Dataset
|
|
57
57
|
`GetAtmos A -s BARRA2 -m R2 2011-01-01 2012-01-01 150 153 -30 -25`
|
|
58
58
|
|
|
59
|
-
Merge BARRA2
|
|
59
|
+
Merge BARRA2 R2 Dataset with reprojection and local time
|
|
60
60
|
`GetAtmos B -s BARRA2 -m R2 -tz 10 -ltz AEST -rp 7856`
|
|
61
61
|
|
|
62
62
|
For more specific help, please use:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tfv_get_tools
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Tool for downloading and processing data for TUFLOW FV modelling
|
|
5
5
|
Author-email: Alex Waterhouse <alex.waterhouse@apac.bmt.org>, Mitchell Smith <mitchell.smith@apac.bmt.org>, TUFLOW Support <support@tuflow.com>
|
|
6
6
|
License: MIT
|
|
@@ -3,8 +3,8 @@ tfv_get_tools/_standard_attrs.py,sha256=mhmheUm49e-G8ePMLGnIHvWHYW3ZHjCXQlokEIBE
|
|
|
3
3
|
tfv_get_tools/atmos.py,sha256=vmga1ZC3cWM8eejt-lluYOaQpp2lNn0M59s61u9B3Zw,5799
|
|
4
4
|
tfv_get_tools/ocean.py,sha256=27EsEP52u-JrT-TOxtH5rqS7ROgEporZ52d0jdbvJH0,6588
|
|
5
5
|
tfv_get_tools/wave.py,sha256=5OKU4BENNR5y0boEH0nHc0ZCgcPx5gcqS9eKr8jAwFY,6779
|
|
6
|
-
tfv_get_tools/cli/_cli_base.py,sha256=
|
|
7
|
-
tfv_get_tools/cli/atmos_cli.py,sha256=
|
|
6
|
+
tfv_get_tools/cli/_cli_base.py,sha256=foc3Jr_PiN3gmouy4NHLCQYJYolupxx2Q-kFbiNgNoE,5996
|
|
7
|
+
tfv_get_tools/cli/atmos_cli.py,sha256=Jvc8JxYTURx3PCOkeqMoWtt5jsIKfpRnlH7FNBNqEs8,6581
|
|
8
8
|
tfv_get_tools/cli/ocean_cli.py,sha256=nyNIQN7qwDvME2Ts9oWUCaOtANrFDaQZAmr48v5k5D0,6912
|
|
9
9
|
tfv_get_tools/cli/tide_cli.py,sha256=ML7l1-HEyxg1xaEVmclN09nY5D4kkSVAgFZ6SiBYJok,3334
|
|
10
10
|
tfv_get_tools/cli/wave_cli.py,sha256=kKMY93SUKcDRbrOWJb3bNJUuMMJ9kTrLRIdc-ATAEtY,6132
|
|
@@ -55,9 +55,9 @@ tfv_get_tools/utilities/horizontal_padding.py,sha256=-bqLDzqm17fOZqYrjJPXYwdVYwo
|
|
|
55
55
|
tfv_get_tools/utilities/land_masking.py,sha256=19r9iiMMqxXChGlfmmXPzEM5VyhsnR-nqTsSjaKzP34,2743
|
|
56
56
|
tfv_get_tools/utilities/parsers.py,sha256=V4ZBcpLPtSbkM3k5XoZS_xpauJVEzHUs9woNHznbHI4,1284
|
|
57
57
|
tfv_get_tools/utilities/warnings.py,sha256=GWrj7Jh2gU3b9u2kzSfaqYPk8cL9aeMbkJgspn0a9W8,1146
|
|
58
|
-
tfv_get_tools-0.2.
|
|
59
|
-
tfv_get_tools-0.2.
|
|
60
|
-
tfv_get_tools-0.2.
|
|
61
|
-
tfv_get_tools-0.2.
|
|
62
|
-
tfv_get_tools-0.2.
|
|
63
|
-
tfv_get_tools-0.2.
|
|
58
|
+
tfv_get_tools-0.2.4.dist-info/licenses/LICENSE,sha256=ALmu4D6vRZ-Xxz6IjzUIc_XyZGfVIWCOxIA1qe3tnVY,1059
|
|
59
|
+
tfv_get_tools-0.2.4.dist-info/METADATA,sha256=nOj4d7OVrA2ZmmZO_9bJN9CxiXCKDzEty2q3duaI7cA,10701
|
|
60
|
+
tfv_get_tools-0.2.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
61
|
+
tfv_get_tools-0.2.4.dist-info/entry_points.txt,sha256=pTCS55WUArvFH-Z_EsjTpICz9p1rqqVJ10e7aX3S2MA,194
|
|
62
|
+
tfv_get_tools-0.2.4.dist-info/top_level.txt,sha256=K_ewT8V9jhtf59kUDU5YqahUczoInqs7ZFlc4Ho3IjE,14
|
|
63
|
+
tfv_get_tools-0.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|