ngiab-data-preprocess 4.6.3__py3-none-any.whl → 4.6.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.
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/METADATA +12 -3
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/RECORD +6 -6
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/WHEEL +0 -0
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/entry_points.txt +0 -0
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/licenses/LICENSE +0 -0
- {ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ngiab_data_preprocess
|
|
3
|
-
Version: 4.6.
|
|
3
|
+
Version: 4.6.4
|
|
4
4
|
Summary: Graphical Tools for creating Next Gen Water model input data.
|
|
5
5
|
Author-email: Josh Cunningham <jcunningham8@ua.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/CIROH-UA/NGIAB_data_preprocess
|
|
@@ -33,6 +33,7 @@ Requires-Dist: bokeh==3.5.1
|
|
|
33
33
|
Requires-Dist: boto3
|
|
34
34
|
Requires-Dist: numcodecs<0.16.0
|
|
35
35
|
Requires-Dist: scipy>=1.15.3
|
|
36
|
+
Requires-Dist: h5py<=3.11
|
|
36
37
|
Provides-Extra: eval
|
|
37
38
|
Requires-Dist: ngiab_eval; extra == "eval"
|
|
38
39
|
Provides-Extra: plot
|
|
@@ -239,6 +240,8 @@ Installed with uv: `uv run cli`
|
|
|
239
240
|
- `-s`, `--subset`: Subset the hydrofabric to the given feature.
|
|
240
241
|
- `-f`, `--forcings`: Generate forcings for the given feature.
|
|
241
242
|
- `-r`, `--realization`: Create a realization for the given feature.
|
|
243
|
+
- `--lstm`: Configures the data for the [python lstm](https://github.com/ciroh-ua/lstm/).
|
|
244
|
+
- `--lstm_rust`: Configures the data for the [rust lstm](https://github.com/ciroh-ua/rust-lstm-1025/).
|
|
242
245
|
- `--start_date START_DATE`, `--start START_DATE`: Start date for forcings/realization (format YYYY-MM-DD).
|
|
243
246
|
- `--end_date END_DATE`, `--end END_DATE`: End date for forcings/realization (format YYYY-MM-DD).
|
|
244
247
|
- `-o OUTPUT_NAME`, `--output_name OUTPUT_NAME`: Name of the output folder.
|
|
@@ -298,11 +301,17 @@ Installed with uv: `uv run cli`
|
|
|
298
301
|
|
|
299
302
|
# Realization information
|
|
300
303
|
|
|
301
|
-
This tool currently offers
|
|
304
|
+
This tool currently offers three realizations.
|
|
302
305
|
|
|
303
|
-
## NOAH + CFE
|
|
306
|
+
## NOAH + CFE (Default)
|
|
304
307
|
|
|
305
308
|
[This realization](https://github.com/CIROH-UA/NGIAB_data_preprocess/blob/main/modules/data_sources/cfe-nowpm-realization-template.json) is intended to be roughly comparable to earlier versions of the National Water Model.
|
|
306
309
|
- [NOAH-OWP-Modular](https://github.com/NOAA-OWP/NOAH-OWP-Modular): A refactoring of Noah-MP, a land-surface model. Used to model groundwater properties.
|
|
307
310
|
- [Conceptual Functional Equivalent (CFE)](https://github.com/NOAA-OWP/CFE): A simplified conceptual approximation of versions 1.2, 2.0, and 2.1 of the National Water Model. Used to model precipitation and evaporation.
|
|
308
311
|
- [SLoTH](https://github.com/NOAA-OWP/SLoTH): A module used to feed through unchanged values. In this default configuration, it simply forces certain soil moisture and ice fraction properties to zero.
|
|
312
|
+
|
|
313
|
+
## LSTM (Python)
|
|
314
|
+
[This realization](https://github.com/CIROH-UA/NGIAB_data_preprocess/blob/main/modules/data_sources/lstm-realization-template.json) will run the [python lstm](https://github.com/ciroh-ua/lstm/). It's designed to work with ngiab using [these example weights](https://github.com/CIROH-UA/lstm/tree/example_weights/trained_neuralhydrology_models) generously contributed by [jmframe/lstm](https://github.com/jmframe/lstm)
|
|
315
|
+
|
|
316
|
+
## LSTM (Rust)
|
|
317
|
+
[This realization](https://github.com/CIROH-UA/NGIAB_data_preprocess/blob/main/modules/data_sources/lstm-rust-realization-template.json) will run the [rust port](https://github.com/CIROH-UA/rust-lstm-1025/tree/main) of the python lstm above. It's an experimental drop in replacement that should produce identical results with a ~2-5x speedup depending on your setup.
|
|
@@ -35,9 +35,9 @@ ngiab_data_cli/__main__.py,sha256=_8IFqL2CGZGMsC71uutqHOIjZpfYBD91yKTk4dvEa3c,11
|
|
|
35
35
|
ngiab_data_cli/arguments.py,sha256=97BFzlj68tt9tRCR3rTPnK6o7zd7dUCdPg8Cypa2aKA,4782
|
|
36
36
|
ngiab_data_cli/custom_logging.py,sha256=iS2XozaxudcxQj17qAsrCgbVK9LJAYAPmarJuVWJo1k,1280
|
|
37
37
|
ngiab_data_cli/forcing_cli.py,sha256=eIWRxRWUwPqR16fihFDEIV4VzGlNuvcD6lJW5VYjkPU,3635
|
|
38
|
-
ngiab_data_preprocess-4.6.
|
|
39
|
-
ngiab_data_preprocess-4.6.
|
|
40
|
-
ngiab_data_preprocess-4.6.
|
|
41
|
-
ngiab_data_preprocess-4.6.
|
|
42
|
-
ngiab_data_preprocess-4.6.
|
|
43
|
-
ngiab_data_preprocess-4.6.
|
|
38
|
+
ngiab_data_preprocess-4.6.4.dist-info/licenses/LICENSE,sha256=6dMSprwwnsRzEm02mEDbKHD9dUbL8bPIt9Vhrhb0Ulk,1081
|
|
39
|
+
ngiab_data_preprocess-4.6.4.dist-info/METADATA,sha256=hHSczBvCQyL8kZUL4Fd-Nnmd2AvgSoWqR42G8io68i4,14394
|
|
40
|
+
ngiab_data_preprocess-4.6.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
41
|
+
ngiab_data_preprocess-4.6.4.dist-info/entry_points.txt,sha256=spwlhKEJ3ZnNETQsJGeTjD7Vwy8O_zGHb9GdX8ACCtw,128
|
|
42
|
+
ngiab_data_preprocess-4.6.4.dist-info/top_level.txt,sha256=CjhYAUZrdveR2fOK6rxffU09VIN2IuPD7hk4V3l3pV0,52
|
|
43
|
+
ngiab_data_preprocess-4.6.4.dist-info/RECORD,,
|
|
File without changes
|
{ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{ngiab_data_preprocess-4.6.3.dist-info → ngiab_data_preprocess-4.6.4.dist-info}/top_level.txt
RENAMED
|
File without changes
|