Skip to content

Commit da1462b

Browse files
committed
Update documentation for release 1.6.4
1 parent 2708e43 commit da1462b

File tree

5 files changed

+47
-18
lines changed

5 files changed

+47
-18
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# QTalsim
22

3-
QTalsim is a QGIS plugin with four principal functionalities that enable the processing of spatial data suitable for [Talsim](https://www.talsim.de/docs/index.php?title=Hauptseite/en).
3+
QTalsim is a QGIS plugin with four principal functionalities that enable the processing of spatial data suitable for [Talsim](https://www.talsim.de/docs/index.php?title=Hauptseite/en).
44

5-
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 layers containing the soil type and bulk density for a given input area.The fifth functionality allows to map ATKIS land use data to Talsim land uses.
5+
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 layers containing the soil type and bulk density for a given input area. The fifth functionality allows to map German land cover data to Talsim land uses.
6+
7+
For detailed information, please refer to the [Full Documentation](https://sydroconsult.github.io/QTalsim/index.html).
68

7-
For detailed information, please refer to the [Full Documentation](https://sydroconsult.github.io/QTalsim/index.html).

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'QTalsim'
1010
copyright = '2025, Sydro Consult GmbH'
1111
author = 'Sydro Consult GmbH'
12-
release = '1.6.3'
12+
release = '1.6.4'
1313

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

docs/doc_landuse.rst

Lines changed: 34 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,48 @@
22
Land use mapping
33
================
44

5-
This plugin feature offers the functionality to map land use data to Talsim land use categories. Currently, only the mapping of ATKIS land use data is implemented.
5+
This plugin feature offers the functionality to map land use datasets to Talsim land use categories. This plugin currently supports two German data sources:
66

7+
* **ATKIS** - Automatisiertes Topographisch-Kartographisches Informationssystem (e.g. `ATKIS NRW <https://www.bezreg-koeln.nrw.de/geobasis-nrw/produkte-und-dienste/landschaftsmodelle/aktuelle-landschaftsmodelle/digitales-basis>`_)
8+
* **LBM-DE (2021)** - `Digitales Landbedeckungsmodell für Deutschland, Stand 2021 <http://bit.ly/46K4sfd>`_
79

10+
The mapping can be found here
811
Executing the Plugin
912
^^^^^^^^^^^^^^^^^^^^
10-
The user must provide a folder containing all relevant ATKIS layers (e.g., veg01_f, sie01_f, etc.). The plugin automatically detects the necessary files and merges them into a single land use layer. Optionally, the user can specify a clipping layer to limit the extent of the merged result.
1113

12-
Once merged (and optionally clipped), the plugin maps ATKIS land use types to Talsim-compatible categories using the fields "OBJART_TXT", "FKT", and "VEG".
14+
ATKIS Data
15+
----------
16+
17+
**Input Requirements:**
18+
Provide a folder containing all relevant ATKIS layers (e.g., ``veg01_f``, ``sie01_f``, etc.)
19+
20+
**Processing:**
21+
* Plugin automatically detects and merges necessary files into a single land use layer
22+
* Optional: Specify a clipping layer to limit the spatial extent
23+
* Maps the ATKIS land use types to Talsim-compatible categories using the fields "OBJART_TXT", "FKT", and "VEG". Find the complete `ATKIS to Talsim mapping table here <https://github.com/sydroconsult/QTalsim/blob/main/QTalsim/talsim_parameter/atkis_talsim_zuordnung.csv>`_.
24+
25+
|Screenshot Land use mapping ATKIS|
26+
27+
LBM-DE (2021) Data
28+
------------------
29+
**Input Requirements:**
30+
Download data from the link above and add the layer to your current QGIS project
31+
32+
33+
**Processing:**
34+
* Specify the layer containing LBM data
35+
* Optional: Apply a clipping layer to limit the input extent
36+
* Mapping uses fields "LB_AKT" (land cover type) and "SIE_AKT" (imperviousness). Find the complete `LBM to Talsim mapping table here <https://github.com/sydroconsult/QTalsim/blob/main/QTalsim/talsim_parameter/lbm_talsim_zuordnung.csv>`_.
37+
38+
|Screenshot Land use mapping LBM|
39+
40+
Output Results
41+
==============
1342

1443
The output is a GeoPackage containing two land use layers:
1544

1645
- One layer with all land use polygons, where the mapped Talsim land use type is stored in the column "OBJART_NEU".
1746
- A second, dissolved layer where polygons with the same land use type are aggregated. This layer can be used as input for the HRU Calculation.
1847

19-
|Screenshot Land use mapping|
20-
21-
.. |Screenshot Land use mapping| image:: qtalsim_screenshots/landuseMappingFeature.png
48+
.. |Screenshot Land use mapping ATKIS| image:: qtalsim_screenshots/landuseMappingFeature.png
49+
.. |Screenshot Land use mapping LBM| image:: qtalsim_screenshots/landuseMappingFeatureLBM.png

docs/index.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ Welcome to QTalsim's documentation!
66
Main Features
77
-------------
88

9-
- **HRU Calculation**
9+
- **HRU Calculation** (:doc:`doc_qtalsim`)
1010

1111
Enables users to calculate Hydrological Response Units (HRUs).
1212

13-
- **Sub-basins Preprocessing**
13+
- **Sub-basins Preprocessing** (:doc:`doc_subbasin_preprocessing`)
1414

1515
Calculates various parameters for each sub-basin and generates files compatible with Talsim.
1616

17-
- **ISRIC Soil Type Converter**
17+
- **ISRIC Soil Type Converter** (:doc:`doc_soil`)
1818

1919
Downloads and processes data from ISRIC, creating a soil layer that includes soil type and bulk density.
2020

21-
- **Land Use Mapping**
21+
- **Land Use Mapping** (:doc:`doc_landuse`)
2222

23-
If your area is in Germany, this feature allows you to convert ATKIS land use data into Talsim land use categories.
23+
If your area is in Germany, this feature allows you to convert ATKIS land use data or LBM land cover data into Talsim land use categories.
2424

25-
- **Connect to Talsim DB**
25+
- **Connect to Talsim DB** (:doc:`doc_connect_to_db`)
2626

2727
For users of Talsim NG5, this functionality enables a direct connection to a Talsim database, allowing you to edit system elements, sub-basins, and transport reaches.
2828

@@ -34,7 +34,7 @@ Contents
3434

3535
install_plugin
3636
doc_qtalsim
37-
doc_connect_to_db
3837
doc_subbasin_preprocessing
3938
doc_soil
40-
doc_landuse
39+
doc_landuse
40+
doc_connect_to_db
26.3 KB
Loading

0 commit comments

Comments
 (0)