You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/changelog.rst
+11-18Lines changed: 11 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,16 @@ All notable changes to this project will be documented in this page.
6
6
The format is based on `Keep a Changelog`_, and this project adheres to
7
7
`Semantic Versioning`_.
8
8
9
-
Unreleased
9
+
v1.0.0rc2
10
10
==========
11
-
TODO: merge with the Wflow.jl v1 pre-release notes below when we are ready for hydromt_wflow v1.0.0
11
+
In v1.0.0rc2, lakes and reservoirs were merged into a single structure in Wflow.jl, prompting updates to related functions and parameters. Several new model components were introduced,
12
+
including those for configuration, static maps, forcing, states, geoms, and various output types. The minimum supported Python version was raised to 3.11.
13
+
The model root is now managed by a ModelRoot class, and model components such as config and forcing are now ModelComponent classes, with their data accessed via a data property.
14
+
Component and method names were updated for clarity, including renaming "grid" to "staticmaps" and splitting or renaming several setup methods. The process for clipping a model was simplified to a single clip method.
15
+
Reservoir handling was enhanced, allowing overwriting or adding reservoirs, and a combined staticgeom for all reservoirs is now created. The release also included various bug fixes,
16
+
such as improved handling in upgrade_to_v1_wflow, correct addition of states in setup_floodplains, and better clipping and snapping of 1D rivers.
17
+
The use of the tomlkit dependency was reverted, and the standard naming conventions were updated. Finally, the workflows.waterbodies module was renamed to workflows.reservoirs,
18
+
and the release included documentation improvements and updates to example configurations.
- output_grid ``WflowOutputGridComponent``, output_scalar ``WflowOutputScalarComponent`` and output_csv ``WflowOutputCsvComponent`` components: represent Wflow outputs (used to be results).
21
28
- **write_geoms**: added function arguments ``to_wgs84`` to convert the geometry to WGS84 before writing it to file. PR #432
29
+
- Reservoirs can now overwrite or be added to existing ones in the model. PR #515
30
+
- Create a combined staticgeom for all reservoirs "reservoirs.geojson". PR #515
22
31
23
32
Changed
24
33
-------
@@ -41,19 +50,6 @@ Changed
41
50
- Update values used in example yamls to new defaults used in Wflow.jl (#589)
42
51
- Improve behavior of ``merge_reservoirs``, to merge values based on their ID rather than all non-missing pixels. (#597)
43
52
- Rename standard names to no longer use "instantaneous" in the name (#601)
44
-
45
-
46
-
Unreleased
47
-
==========
48
-
Lakes and reservoirs have been merged into one structure in Wflow.jl. We have updated our functions and parameters accordingly.
49
-
50
-
Added
51
-
-----
52
-
- Reservoirs can now overwrite or be added to existing ones in the model. PR #515
53
-
- Create a combined staticgeom for all reservoirs "reservoirs.geojson". PR #515
54
-
55
-
Changed
56
-
-------
57
53
- **setup_reservoirs** has been renamed to **setup_reservoirs_simple_control** for sbm. The default output geom is meta_reservoirs_simple_control.geojson. PR #515
58
54
- **setup_lakes** has been renamed to **setup_reservoirs_no_control** for sbm. Arguments of the functions have been updated as well. The default output geom is meta_reservoirs_no_control.geojson. PR #515
59
55
- **setup_lakes** has been renamed to **setup_natural_reservoirs** for sediment. Arguments of the functions have been updated as well. The default output geom is meta_natural_reservoirs.geojson. PR #515
@@ -68,9 +64,6 @@ Fixed
68
64
- Fix crop_factor and water_frac values for grassland in CORINE. PR #523
69
65
- included ``floodplain_water_flow__manning_n_parameter`` in naming script (#529)
0 commit comments