tfv-get-tools 0.2.0__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.
Files changed (62) hide show
  1. tfv_get_tools/__init__.py +4 -0
  2. tfv_get_tools/_standard_attrs.py +107 -0
  3. tfv_get_tools/atmos.py +167 -0
  4. tfv_get_tools/cli/_cli_base.py +173 -0
  5. tfv_get_tools/cli/atmos_cli.py +192 -0
  6. tfv_get_tools/cli/ocean_cli.py +204 -0
  7. tfv_get_tools/cli/tide_cli.py +118 -0
  8. tfv_get_tools/cli/wave_cli.py +183 -0
  9. tfv_get_tools/fvc/__init__.py +3 -0
  10. tfv_get_tools/fvc/_atmos.py +230 -0
  11. tfv_get_tools/fvc/_fvc.py +218 -0
  12. tfv_get_tools/fvc/_ocean.py +171 -0
  13. tfv_get_tools/fvc/_tide.py +195 -0
  14. tfv_get_tools/ocean.py +170 -0
  15. tfv_get_tools/providers/__init__.py +0 -0
  16. tfv_get_tools/providers/_custom_conversions.py +34 -0
  17. tfv_get_tools/providers/_downloader.py +566 -0
  18. tfv_get_tools/providers/_merger.py +520 -0
  19. tfv_get_tools/providers/_utilities.py +255 -0
  20. tfv_get_tools/providers/atmos/barra2.py +209 -0
  21. tfv_get_tools/providers/atmos/cfgs/barra2_c2.yaml +52 -0
  22. tfv_get_tools/providers/atmos/cfgs/barra2_r2.yaml +85 -0
  23. tfv_get_tools/providers/atmos/cfgs/barra2_re2.yaml +70 -0
  24. tfv_get_tools/providers/atmos/cfgs/cfsr.yaml +68 -0
  25. tfv_get_tools/providers/atmos/cfgs/era5.yaml +77 -0
  26. tfv_get_tools/providers/atmos/cfgs/era5_gcp.yaml +77 -0
  27. tfv_get_tools/providers/atmos/cfsr.py +207 -0
  28. tfv_get_tools/providers/atmos/era5.py +20 -0
  29. tfv_get_tools/providers/atmos/era5_gcp.py +20 -0
  30. tfv_get_tools/providers/ocean/cfgs/copernicus_blk.yaml +64 -0
  31. tfv_get_tools/providers/ocean/cfgs/copernicus_glo.yaml +67 -0
  32. tfv_get_tools/providers/ocean/cfgs/copernicus_nws.yaml +62 -0
  33. tfv_get_tools/providers/ocean/cfgs/hycom.yaml +73 -0
  34. tfv_get_tools/providers/ocean/copernicus_ocean.py +457 -0
  35. tfv_get_tools/providers/ocean/hycom.py +611 -0
  36. tfv_get_tools/providers/wave/cawcr.py +166 -0
  37. tfv_get_tools/providers/wave/cfgs/cawcr_aus_10m.yaml +39 -0
  38. tfv_get_tools/providers/wave/cfgs/cawcr_aus_4m.yaml +39 -0
  39. tfv_get_tools/providers/wave/cfgs/cawcr_glob_24m.yaml +39 -0
  40. tfv_get_tools/providers/wave/cfgs/cawcr_pac_10m.yaml +39 -0
  41. tfv_get_tools/providers/wave/cfgs/cawcr_pac_4m.yaml +39 -0
  42. tfv_get_tools/providers/wave/cfgs/copernicus_glo.yaml +56 -0
  43. tfv_get_tools/providers/wave/cfgs/copernicus_nws.yaml +51 -0
  44. tfv_get_tools/providers/wave/cfgs/era5.yaml +48 -0
  45. tfv_get_tools/providers/wave/cfgs/era5_gcp.yaml +48 -0
  46. tfv_get_tools/providers/wave/copernicus_wave.py +38 -0
  47. tfv_get_tools/providers/wave/era5.py +232 -0
  48. tfv_get_tools/providers/wave/era5_gcp.py +169 -0
  49. tfv_get_tools/tide/__init__.py +2 -0
  50. tfv_get_tools/tide/_nodestring.py +214 -0
  51. tfv_get_tools/tide/_tidal_base.py +568 -0
  52. tfv_get_tools/utilities/_tfv_bc.py +78 -0
  53. tfv_get_tools/utilities/horizontal_padding.py +89 -0
  54. tfv_get_tools/utilities/land_masking.py +93 -0
  55. tfv_get_tools/utilities/parsers.py +44 -0
  56. tfv_get_tools/utilities/warnings.py +38 -0
  57. tfv_get_tools/wave.py +179 -0
  58. tfv_get_tools-0.2.0.dist-info/METADATA +286 -0
  59. tfv_get_tools-0.2.0.dist-info/RECORD +62 -0
  60. tfv_get_tools-0.2.0.dist-info/WHEEL +5 -0
  61. tfv_get_tools-0.2.0.dist-info/entry_points.txt +5 -0
  62. tfv_get_tools-0.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,286 @@
1
+ Metadata-Version: 2.4
2
+ Name: tfv_get_tools
3
+ Version: 0.2.0
4
+ Summary: Tool for downloading and processing data for TUFLOW FV modelling
5
+ Author-email: Alex Waterhouse <alex.waterhouse@apac.bmt.org>, Mitchell Smith <mitchell.smith@apac.bmt.org>, TUFLOW Support <support@tuflow.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://gitlab.com/tuflow-user-group/tuflow-fv/data-pre-processing/tfv-get-tools
8
+ Project-URL: Repository, https://gitlab.com/tuflow-user-group/tuflow-fv/data-pre-processing/tfv-get-tools
9
+ Project-URL: Issues, https://gitlab.com/tuflow-user-group/tuflow-fv/data-pre-processing/tfv-get-tools/issues
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Requires-Python: <3.14,>=3.9
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: netCDF4>=1.6.2
22
+ Requires-Dist: tqdm>=4.65.0
23
+ Requires-Dist: xarray>=2023.1.0
24
+ Requires-Dist: scipy>=1.10.0
25
+ Requires-Dist: pyproj>=3.5.0
26
+ Requires-Dist: siphon>=0.9
27
+ Requires-Dist: cdsapi>=0.7.0
28
+ Requires-Dist: copernicusmarine>=1.2.3
29
+ Requires-Dist: bottleneck>=1.3.5
30
+ Requires-Dist: pyTMD>=2.1.5
31
+ Requires-Dist: shapely>=2.0.6
32
+ Requires-Dist: geopandas>=1.0.1
33
+ Provides-Extra: dev
34
+ Requires-Dist: ipython>=8.6.0; extra == "dev"
35
+ Requires-Dist: notebook>=6.5.2; extra == "dev"
36
+ Requires-Dist: ipykernel>=6.17.1; extra == "dev"
37
+ Requires-Dist: dask>=2022.11.0; extra == "dev"
38
+ Requires-Dist: black>=22.12.0; extra == "dev"
39
+ Requires-Dist: matplotlib>=3.7.0; extra == "dev"
40
+ Requires-Dist: sphinx>=7.3.7; extra == "dev"
41
+ Requires-Dist: recommonmark>=0.7.1; extra == "dev"
42
+ Requires-Dist: sphinx-markdown-builder>=0.6.6; extra == "dev"
43
+ Requires-Dist: pyprojroot; extra == "dev"
44
+
45
+ # TFV Get Tools
46
+
47
+ > **⚠️ Beta Package** - This is a beta release. Features may change and improvements are ongoing. Please report any issues to support@tuflow.com.
48
+
49
+ **Tools to assist with downloading and processing meteorological and ocean data to use with TUFLOW FV**
50
+
51
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
52
+ [![Project Status: Active](https://img.shields.io/badge/Project%20Status-Active-green.svg)](https://github.com/your-repo/tfv-get-tools)
53
+
54
+ ## Overview
55
+
56
+ TFV Get Tools is a Python package that simplifies the process of downloading and processing meteorological and ocean data for use with TUFLOW FV models. The tool supports extraction of tidal data, atmospheric conditions, ocean physics, and wave data from various authoritative sources.
57
+
58
+ ### Supported Data Sources
59
+
60
+ **Atmospheric Data:**
61
+ - [ECMWF ERA5](https://www.ecmwf.int/en/forecasts/datasets/reanalysis-datasets/era5) (Default - registration required, see [CDS API](https://cds.climate.copernicus.eu/api-how-to))
62
+ - [NOAA CFSR](https://www.ncei.noaa.gov/data/climate-forecast-system/) (Climate Forecast System Reanalysis)
63
+ - [BARRA2](http://www.bom.gov.au/research/projects/reanalysis/) (Australian Bureau of Meteorology)
64
+
65
+ **Ocean Data:**
66
+ - [HYCOM](https://www.hycom.org/) (Naval Research Laboratory - Global Ocean Forecast System)
67
+ - [Copernicus Marine](https://marine.copernicus.eu/) Global and NWS (registration required, see [Copernicus Marine Service](https://marine.copernicus.eu/))
68
+
69
+ **Wave Data:**
70
+ - [CSIRO CAWCR](https://data.csiro.au/collection/csiro:39819) (glob_24m, aus_10m, aus_4m, pac_10m, pac_4m)
71
+ - [Copernicus Marine](https://marine.copernicus.eu/) Global and NWS
72
+ - [ECMWF ERA5](https://www.ecmwf.int/en/forecasts/datasets/reanalysis-datasets/era5) (registration required, see [CDS API](https://cds.climate.copernicus.eu/api-how-to))
73
+
74
+ **Tidal Data:**
75
+ - [FES2014](https://www.aviso.altimetry.fr/en/data/products/auxiliary-products/global-tide-fes.html) (AVISO+ Finite Element Solution 2014)
76
+ - [FES2022](https://www.aviso.altimetry.fr/en/data/products/auxiliary-products/global-tide-fes.html) (AVISO+ Finite Element Solution 2022)
77
+
78
+ ## Installation
79
+
80
+ ### Conda/Mamba (Recommended)
81
+
82
+ ```bash
83
+ # Create a new environment, if required.
84
+ conda create -n tfv python=3.9
85
+ conda activate tfv
86
+
87
+ # Install the package
88
+ conda install -c conda-forge tfv-get-tools
89
+ ```
90
+
91
+ ### Pip
92
+
93
+ ```bash
94
+ pip install tfv-get-tools
95
+ ```
96
+
97
+ ## Quick Start
98
+
99
+ ### Command Line Interface
100
+
101
+ The package provides command-line tools for downloading and processing data:
102
+
103
+ **Ocean Data Example:**
104
+ ```bash
105
+ # Download HYCOM data for January 2011 in southeast Queensland
106
+ GetOcean A 2011-01-01 2011-02-01 153 156 -29 -24
107
+
108
+ # Download with custom options (top 20m, 3-hourly data, custom prefix)
109
+ GetOcean A -p raw_data -pf SEQ_HYCOM -ts 3 -z 0 20 2011-01-01 2011-02-01 153 156 -29 -24
110
+
111
+ # Merge downloaded files
112
+ GetOcean B -i raw_data -o output -rp 28350 -tz 8 -ltz AWST -n merged_hycom.nc
113
+ ```
114
+
115
+ **Atmospheric Data Example:**
116
+ ```bash
117
+ # Download ERA5 atmospheric data
118
+ GetAtmos A 2011-01-01 2011-02-01 152 154 -28 -26
119
+
120
+ # Merge with reprojection and timezone conversion
121
+ GetAtmos B -i raw_data -o output -rp 7856 -tz 10 -ltz AEST
122
+ ```
123
+
124
+ **Tidal Data Example:**
125
+ ```bash
126
+ # Extract tidal data using a boundary nodestring shapefile
127
+ GetTide output/tide_data.nc 2011-01-01 2012-01-01 boundaries/nodestring.shp path/to/fes2022/
128
+ ```
129
+
130
+ ### Python API
131
+
132
+ **Ocean Data:**
133
+ ```python
134
+ from tfv_get_tools import DownloadOcean, MergeOcean
135
+
136
+ # Download HYCOM data
137
+ result = DownloadOcean(
138
+ start_date='2011-01-01',
139
+ end_date='2011-02-01',
140
+ xlims=(153, 156),
141
+ ylims=(-29, -24),
142
+ out_path='./raw_data',
143
+ source='HYCOM',
144
+ time_interval=24
145
+ )
146
+
147
+ # Merge downloaded files
148
+ MergeOcean(
149
+ in_path='./raw_data',
150
+ out_path='./output',
151
+ source='HYCOM',
152
+ reproject=28350,
153
+ local_tz=(8, 'AWST')
154
+ )
155
+ ```
156
+
157
+ **Atmospheric Data:**
158
+ ```python
159
+ from tfv_get_tools import DownloadAtmos, MergeAtmos
160
+
161
+ # Download BARRA2 data
162
+ result = DownloadAtmos(
163
+ start_date='2020-01-01',
164
+ end_date='2020-02-01',
165
+ xlims=(152.72, 153.78),
166
+ ylims=(-27.49, -25.39),
167
+ out_path='./raw_data',
168
+ source='BARRA2',
169
+ model='C2'
170
+ )
171
+
172
+ # Merge with reprojection to GDA2020 MGA56
173
+ MergeAtmos(
174
+ in_path='./raw_data',
175
+ out_path='./output',
176
+ source='BARRA2',
177
+ model='C2',
178
+ reproject=7856,
179
+ local_tz=(10.0, 'AEST')
180
+ )
181
+ ```
182
+
183
+ **Tidal Data:**
184
+ ```python
185
+ from pathlib import Path
186
+ from tfv_get_tools.tide import ExtractTide
187
+
188
+ # Basic tidal extraction
189
+ ExtractTide(
190
+ start_date='2011-01-01',
191
+ end_date='2012-01-01',
192
+ filename='tide_data.nc',
193
+ out_path='./output',
194
+ freq='15min',
195
+ shapefile='boundaries/nodestring.shv'
196
+ )
197
+
198
+ # Advanced usage with constituent caching
199
+ from tfv_get_tools.tide import load_nodestring_shapefile, process_nodestring_gdf, get_constituents
200
+
201
+ # Load and process boundary shapefile
202
+ gdf = load_nodestring_shapefile('boundaries/nodestring.shp', process_ids=[1])
203
+ coordinates = process_nodestring_gdf(gdf, spacing=5000)
204
+
205
+ # Extract constituents once (slow first time, fast afterwards)
206
+ constituents = get_constituents(
207
+ coordinates,
208
+ source='FES2022',
209
+ save_cons='boundary_constituents.pkl'
210
+ )
211
+
212
+ # Use cached constituents for faster extraction
213
+ ExtractTide(
214
+ start_date='2011-01-01',
215
+ end_date='2012-01-01',
216
+ filename='tide_data.nc',
217
+ out_path='./output',
218
+ freq='15min',
219
+ constituents='boundary_constituents.pkl'
220
+ )
221
+ ```
222
+
223
+ ## Requirements
224
+
225
+ - Python 3.9+
226
+ - Internet connection for data downloads
227
+ - Registration required for some data sources:
228
+ - **ERA5**: [Copernicus Climate Data Store (CDS) API](https://cds.climate.copernicus.eu/api-how-to)
229
+ - **Copernicus Marine**: [Copernicus Marine Service](https://marine.copernicus.eu/)
230
+ - **FES Tidal Models**: [AVISO+](https://www.aviso.altimetry.fr/en/data/products/auxiliary-products/global-tide-fes.html) (for tidal constituent files)
231
+
232
+ ## Data Credits and Acknowledgements
233
+
234
+ This package utilises data from multiple authoritative sources. Please ensure appropriate attribution when using this data:
235
+
236
+ ### Atmospheric Data
237
+ - **ECMWF ERA5**: Data provided by the [European Centre for Medium-Range Weather Forecasts (ECMWF)](https://www.ecmwf.int/) through the Copernicus Climate Change Service (C3S). Please acknowledge: "Contains modified Copernicus Climate Change Service information [2025]".
238
+ - **NOAA CFSR**: Data provided by the [National Oceanic and Atmospheric Administration (NOAA)](https://www.noaa.gov/) National Centers for Environmental Information.
239
+ - **BARRA2**: Data provided by the [Australian Bureau of Meteorology](http://www.bom.gov.au/).
240
+
241
+ ### Ocean Data
242
+ - **HYCOM**: All ocean data is supplied by the [HYCOM consortium](https://www.hycom.org/). Please refer to the [HYCOM data acknowledgement and disclaimer](https://www.hycom.org/publications/acknowledgements/hycom-data).
243
+ - **Copernicus Marine**: Ocean and wave data provided by the [Copernicus Marine Environment Monitoring Service (CMEMS)](https://marine.copernicus.eu/).
244
+
245
+ ### Wave Data
246
+ - **CSIRO CAWCR**: Wave data provided by the [Commonwealth Scientific and Industrial Research Organisation (CSIRO)](https://www.csiro.au/) Centre for Australian Weather and Climate Research.
247
+ - **Copernicus Marine**: Wave data provided by the [Copernicus Marine Environment Monitoring Service (CMEMS)](https://marine.copernicus.eu/).
248
+
249
+ ### Tidal Data
250
+ - **FES Tidal Models**: Tidal data provided by [AVISO+](https://www.aviso.altimetry.fr/) and the FES development team. FES2014 and FES2022 are products of Noveltis, Legos, and CLS, with support from CNES.
251
+ - **PyTMD**: This package utilises the [PyTMD](https://github.com/tsutterley/pyTMD) Python package for tidal analysis and prediction, developed by Tyler Sutterley.
252
+
253
+ ## Support
254
+
255
+ For questions, bug reports, or feature requests:
256
+ - 📧 **Email**: support@tuflow.com
257
+ - 🐛 **Issues**: Submit via the project repository
258
+ - 📖 **Documentation**: [Link to documentation] (if available)
259
+
260
+ ## Contributing
261
+
262
+ Contributions are welcome! Please follow these steps:
263
+
264
+ 1. Fork the repository
265
+ 2. Create a feature branch from `main`
266
+ 3. Make your changes with appropriate tests
267
+ 4. Submit a pull request
268
+ 5. Email support@tuflow.com to notify the development team
269
+
270
+ Please ensure your code follows the project's coding standards and includes appropriate documentation.
271
+
272
+ ## License
273
+
274
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
275
+
276
+ ## Authors
277
+
278
+ Developed by [BMT](https://www.bmt.org/), 2025
279
+
280
+ ## Project Status
281
+
282
+ **Active** - This project is actively maintained and in use. For update requests or feature suggestions, please email support@tuflow.com.
283
+
284
+ ---
285
+
286
+ *Last updated: July 2025*
@@ -0,0 +1,62 @@
1
+ tfv_get_tools/__init__.py,sha256=HmxXSx__5cKkdENL8hyxppPUSR1tZ7bsye9sp63qX2s,225
2
+ tfv_get_tools/_standard_attrs.py,sha256=mhmheUm49e-G8ePMLGnIHvWHYW3ZHjCXQlokEIBEgXM,3247
3
+ tfv_get_tools/atmos.py,sha256=vmga1ZC3cWM8eejt-lluYOaQpp2lNn0M59s61u9B3Zw,5799
4
+ tfv_get_tools/ocean.py,sha256=27EsEP52u-JrT-TOxtH5rqS7ROgEporZ52d0jdbvJH0,6588
5
+ tfv_get_tools/wave.py,sha256=5OKU4BENNR5y0boEH0nHc0ZCgcPx5gcqS9eKr8jAwFY,6779
6
+ tfv_get_tools/cli/_cli_base.py,sha256=wuk9yCgBM5bQWPgGJwcNxlsmLnMtu5Yhcyi6smdyuEI,5862
7
+ tfv_get_tools/cli/atmos_cli.py,sha256=K6f2lhkzBFswxbOgp0ocrAQ4VNHSrYDErr9Jk0qA6_E,6581
8
+ tfv_get_tools/cli/ocean_cli.py,sha256=nyNIQN7qwDvME2Ts9oWUCaOtANrFDaQZAmr48v5k5D0,6912
9
+ tfv_get_tools/cli/tide_cli.py,sha256=ML7l1-HEyxg1xaEVmclN09nY5D4kkSVAgFZ6SiBYJok,3334
10
+ tfv_get_tools/cli/wave_cli.py,sha256=kKMY93SUKcDRbrOWJb3bNJUuMMJ9kTrLRIdc-ATAEtY,6132
11
+ tfv_get_tools/fvc/__init__.py,sha256=33GxmA5OwA-I9k79ClTwZDH7gG2O7ZQLYd-gNytE43k,157
12
+ tfv_get_tools/fvc/_atmos.py,sha256=NrMiTnH9HImktcMxdkvJDXQtovlXewdsOzBlCNUmIDA,8081
13
+ tfv_get_tools/fvc/_fvc.py,sha256=iMqWJ6RgWcVnpI-J_ZsZtScgYYtchLy9nfo2XL2UaqU,7933
14
+ tfv_get_tools/fvc/_ocean.py,sha256=ZXtDj7HZe2S4yuaM3RLoES3p-kVGE2HA2D_PBZZdIXk,5734
15
+ tfv_get_tools/fvc/_tide.py,sha256=tjs4GTg4NRIa7cFcBNFqMqo-yMzOZ6BKgdixSWZafTo,6397
16
+ tfv_get_tools/providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ tfv_get_tools/providers/_custom_conversions.py,sha256=0w9wUkq2k4yireErfLwKKRaj6RkWDC_Cash7raqrGho,927
18
+ tfv_get_tools/providers/_downloader.py,sha256=zLwYSweTKYJ_OmtikwzEQRw1s8Rc4Ma1aCIqY1jIxXM,19786
19
+ tfv_get_tools/providers/_merger.py,sha256=g4-_6ft9gGwBinqzuKm3zMvk8wztvwDiStb45zj_TgQ,18602
20
+ tfv_get_tools/providers/_utilities.py,sha256=8JiiadD8OGsMjZhGn8ce8s7vqtYZpDB-oQFieGAvKeA,7873
21
+ tfv_get_tools/providers/atmos/barra2.py,sha256=8k_NJdlHwNgc2FMElabWaycuAdJBRARGc9QfzzDxQXc,6820
22
+ tfv_get_tools/providers/atmos/cfsr.py,sha256=Cf_6mCBiPi1SCUd3NDX_psmDdITU1lqwqf5vNhj7ttY,8055
23
+ tfv_get_tools/providers/atmos/era5.py,sha256=4CiPu6voEEHlrrqR9W1NN6T_CeR8b9ZiHdo1EWsb_lc,562
24
+ tfv_get_tools/providers/atmos/era5_gcp.py,sha256=Fr4oFek9klZfhXxtZdBhbDRXhiQo53qxxyvzBWKndco,569
25
+ tfv_get_tools/providers/atmos/cfgs/barra2_c2.yaml,sha256=5LZpl1vz6FOQ3t55uN4V0Me1naToy2peHNI9HJ0vHrI,1655
26
+ tfv_get_tools/providers/atmos/cfgs/barra2_r2.yaml,sha256=mfaWMFlVJsuBjPci9hiNuswMV9qqrsUGmYqbQzuslKQ,2050
27
+ tfv_get_tools/providers/atmos/cfgs/barra2_re2.yaml,sha256=cpiPZNe4XC2N22Wi5ECW-0d-NaHUKVvshOoY4TTnS5s,1889
28
+ tfv_get_tools/providers/atmos/cfgs/cfsr.yaml,sha256=8HgskImaZHoW7Xm6rP5RgpFdTK_qW3Ww1ST2o-NueIc,1926
29
+ tfv_get_tools/providers/atmos/cfgs/era5.yaml,sha256=_a34TT3CUWNGvtKHFVbNFS2_0YFZKQU1Sqnu3TC9fwg,1654
30
+ tfv_get_tools/providers/atmos/cfgs/era5_gcp.yaml,sha256=CY-y4Uxq3fPFKtqCcsJcL0_j6Vu-hahNqK8HsTGS3Bc,1719
31
+ tfv_get_tools/providers/ocean/copernicus_ocean.py,sha256=hPnxONvQ3YEAI65pG0KMaGImqu2POBYvW7-Q6xhjf3s,17848
32
+ tfv_get_tools/providers/ocean/hycom.py,sha256=5_NOiMS37Amk-98avQHHHir_9TMuLnpkh8YnfNapheI,26334
33
+ tfv_get_tools/providers/ocean/cfgs/copernicus_blk.yaml,sha256=XGCj8_rDLNHSq6kQnvgjrahcPGaiLInxqB_9LoMvlAY,1482
34
+ tfv_get_tools/providers/ocean/cfgs/copernicus_glo.yaml,sha256=IMETXv3u783YzxB3fRF_uQ5hYBN28aHAH3iJzXcuDhU,1443
35
+ tfv_get_tools/providers/ocean/cfgs/copernicus_nws.yaml,sha256=rQhSEynvKgypohDhyIqizjZDriETbBiZPBtDp8dFLOY,1346
36
+ tfv_get_tools/providers/ocean/cfgs/hycom.yaml,sha256=GQoEcyLYmF_PRPXeY2IO7jiqFcZad7y8bzPjsBn9PS4,1599
37
+ tfv_get_tools/providers/wave/cawcr.py,sha256=95YZCewImgtldiDj6qJ6lkcIo_QIz2rFTYDB0qwkwVk,6028
38
+ tfv_get_tools/providers/wave/copernicus_wave.py,sha256=FeoJUSDMH_tuo29VoZYSDXalra-lcfm9Mue--fJ-E7U,1031
39
+ tfv_get_tools/providers/wave/era5.py,sha256=Re_auemuSl0dX-uW44VD86DwqiGAoE9YUja356XWJ5I,8860
40
+ tfv_get_tools/providers/wave/era5_gcp.py,sha256=hLY_4YqQxhQ-P9uPC30Knv_LJ4vFMu1ZJJbGccR4xb8,6165
41
+ tfv_get_tools/providers/wave/cfgs/cawcr_aus_10m.yaml,sha256=PCk6fkYHTD1uMv1oZP_7M4BuFWMxLaUdZmbbrJ4zA4w,936
42
+ tfv_get_tools/providers/wave/cfgs/cawcr_aus_4m.yaml,sha256=LJ-8C8PFzVO4nmIMM4CUfhHsnnb1cTdKeYRr_DLIFKI,935
43
+ tfv_get_tools/providers/wave/cfgs/cawcr_glob_24m.yaml,sha256=8F3Acl4xXPa6wWjRv8jeMA3WECPhpSAZfWjTv2P-HPU,934
44
+ tfv_get_tools/providers/wave/cfgs/cawcr_pac_10m.yaml,sha256=d5QhgCNMn-UX-R4NGsqfVajbmUmOGHMFFFIA6Oc0bio,937
45
+ tfv_get_tools/providers/wave/cfgs/cawcr_pac_4m.yaml,sha256=4iWdopIoWW35f4WxsNRNbYYpiG_CztvFyYuTprzAKp4,936
46
+ tfv_get_tools/providers/wave/cfgs/copernicus_glo.yaml,sha256=1WTCMnp8h3fhmZduruIsPxwi2JjBqlfJGt6WizwtB_U,1230
47
+ tfv_get_tools/providers/wave/cfgs/copernicus_nws.yaml,sha256=NjCffX-p5EUk0wUENqgmPwQa6jEXcgvJS4BXyHRU_Y4,1113
48
+ tfv_get_tools/providers/wave/cfgs/era5.yaml,sha256=vT24g2J2MmlMEJ3GNzpt44T42Zf97jPSzPHjjuBtxZo,1073
49
+ tfv_get_tools/providers/wave/cfgs/era5_gcp.yaml,sha256=HM1C2AlZ-RFJuUbPaQ2Eqn4N4D-OxIhzgyfCa4wh9wM,1138
50
+ tfv_get_tools/tide/__init__.py,sha256=qt_L_3ONraItnQL0IVLwOGfrV-z49nEAV3MjmAEPKTo,160
51
+ tfv_get_tools/tide/_nodestring.py,sha256=7oSteM7nMRFF_UGiArdlh4HaEAmjD0ItWIzzuh1WEsk,7535
52
+ tfv_get_tools/tide/_tidal_base.py,sha256=Yo0ZiYiW0OoL-DrNTDBj8xFxE10Z17nB6Yq3HhE6ty8,18150
53
+ tfv_get_tools/utilities/_tfv_bc.py,sha256=Mf31N8cKnfooika-BNPk3DXzW3I3_G3xQMXFeQKLh0E,2664
54
+ tfv_get_tools/utilities/horizontal_padding.py,sha256=-bqLDzqm17fOZqYrjJPXYwdVYwoudCPFtKYfvzxG8D4,2898
55
+ tfv_get_tools/utilities/land_masking.py,sha256=19r9iiMMqxXChGlfmmXPzEM5VyhsnR-nqTsSjaKzP34,2743
56
+ tfv_get_tools/utilities/parsers.py,sha256=V4ZBcpLPtSbkM3k5XoZS_xpauJVEzHUs9woNHznbHI4,1284
57
+ tfv_get_tools/utilities/warnings.py,sha256=GWrj7Jh2gU3b9u2kzSfaqYPk8cL9aeMbkJgspn0a9W8,1146
58
+ tfv_get_tools-0.2.0.dist-info/METADATA,sha256=oaxLWZhUTNu5I7ZLy4jHlWHR8SVCDPEtsAeEvNksP5U,10662
59
+ tfv_get_tools-0.2.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
60
+ tfv_get_tools-0.2.0.dist-info/entry_points.txt,sha256=pTCS55WUArvFH-Z_EsjTpICz9p1rqqVJ10e7aX3S2MA,194
61
+ tfv_get_tools-0.2.0.dist-info/top_level.txt,sha256=K_ewT8V9jhtf59kUDU5YqahUczoInqs7ZFlc4Ho3IjE,14
62
+ tfv_get_tools-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ GetAtmos = tfv_get_tools.cli.atmos_cli:entry
3
+ GetOcean = tfv_get_tools.cli.ocean_cli:entry
4
+ GetTide = tfv_get_tools.cli.tide_cli:entry
5
+ GetWave = tfv_get_tools.cli.wave_cli:entry
@@ -0,0 +1 @@
1
+ tfv_get_tools