Skip to content

Commit a4b882c

Browse files
committed
prepare for release 1.7.0
1 parent 5f873e3 commit a4b882c

File tree

5 files changed

+25
-8
lines changed

5 files changed

+25
-8
lines changed

QTalsim/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## \[1.7.0] - 2026-02-17
4+
5+
* Enhancement
6+
7+
* Sub-basin preprocessing, soil onverter and land use mapping: Use QMainWindow
8+
9+
* ISRIC Soil Type Converter
10+
11+
* Add possibility to downscale resolution of ISRIC soil data from 250m x 250m
12+
13+
* Connect to Talsim DB
14+
15+
* Add possibility to add system logic/outflows to existing Talsim DB
16+
17+
* Fixes
18+
19+
* Change Talsim DB to v0.6.20 (migration-id 20260127100510)
20+
321
## \[1.6.6] - 2025-11-13
422

523
* Enhancement

QTalsim/metadata.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
name=QTalsim
33
qgisMinimumVersion=3.34
44
description=QTalsim is a QGIS plugin with four principal functionalities that enable the processing of spatial data suitable for Talsim (http://www.talsim.de/).
5-
version=1.6.6
5+
version=1.7.0
66
author=SYDRO Consult GmbH
77
email=l.treitler@sydro.de
88

9-
about=QTalsim is a QGIS plugin with four principal functionalities that enable the processing of spatial data suitable for Talsim. Firstly, it enables users to calculate Hydrological Response Units (HRUs). Secondly, the plugin faciliates a direct connection to a Talsim database, enabling users to edit system elements, sub-basins and transport reaches. The third functionality allows the user to preprocess sub-basins and calculate the longest flowpaths for each sub-basin. Another functionality downloads data from ISRIC and creates a layer containing the soil type and bulk density class for a given input area. The fifth functionality allows to map German land cover data to Talsim land uses.
9+
about=QTalsim is a QGIS plugin with five principal functionalities that enable the processing of spatial data suitable for Talsim. Firstly, it enables users to calculate Hydrological Response Units (HRUs). Secondly, the plugin faciliates a direct connection to a Talsim database, enabling users to edit system elements, sub-basins and transport reaches. The third functionality allows the user to preprocess sub-basins and calculate the longest flowpaths for each sub-basin. Another functionality downloads data from ISRIC and creates a layer containing the soil type and bulk density class for a given input area. The fifth functionality allows to map German land cover data to Talsim land uses.
1010

1111
tracker=https://github.com/sydroconsult/QTalsim/issues
1212
repository=https://github.com/sydroconsult/QTalsim

QTalsim/qtalsim.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4053,12 +4053,11 @@ def check_subbasins():
40534053
conn.commit()
40544054
conn.close()
40554055

4056-
40574056
self.log_to_qtalsim_tab(f"Finished inserting HRUs into Talsim DB", Qgis.Info)
40584057

4059-
current_text_groupbox = self.dlg.groupboxASCIIExport.title()
4058+
current_text_groupbox = self.dlg.groupboxDBExport.title()
40604059
if "✓" not in current_text_groupbox: #Avoid duplicate checkmarks
4061-
self.dlg.groupboxASCIIExport.setTitle(f"{current_text_groupbox} ✓")
4060+
self.dlg.groupboxDBExport.setTitle(f"{current_text_groupbox} ✓")
40624061
self.log_to_qtalsim_tab(f"All Data was exported to the Talsim Database: {self.file_path_db}", Qgis.Info)
40634062

40644063
except Exception as e:

QTalsim/qtalsim_sqllite_dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ def selectDB(self):
165165
if self.migrationId[:8] < '20250630': # 20251201 Check version of Talsim DB
166166
message = f"Talsim DB with date {self.migrationId[:8]} is too old. Please use a more recent version."
167167
raise Exception(message)
168-
elif self.migrationId[:8] > '20251201':
168+
elif self.migrationId[:8] > '20260127':
169169
self.log_to_qtalsim_tab(f"Talsim DB with date {self.migrationId[:8]} is newer than the tested version.", Qgis.Warning)
170170

171171
sql_query = "SELECT Name, Id FROM Scenario;"

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88

99
project = 'QTalsim'
10-
copyright = '2025, Sydro Consult GmbH'
10+
copyright = '2026, Sydro Consult GmbH'
1111
author = 'Sydro Consult GmbH'
12-
release = '1.6.6'
12+
release = '1.7.0'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

0 commit comments

Comments
 (0)