Skip to content

Commit

Permalink
Fix check for raeumlicherGeltungsbereich
Browse files Browse the repository at this point in the history
  • Loading branch information
pathmapper committed Jul 23, 2024
1 parent e5f9acb commit 298a8c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ about=Remark:
- oder auch zum Erstellen eines QGIS-Server-Projektes, etwa um einen WMS eines Flächennutzungsplans zu veröffentlichen.

tags=xplan,xplanung,bplan,bebauungsplan,fnp,flächennutzungsplan
version=0.27.0
version=0.28.0
# we need at least QGIS Version 3.26.0 (LR) oder 3.22.9 (LTR)
qgisMinimumVersion=3.26
author=Kreis Viersen
Expand All @@ -21,7 +21,9 @@ homepage=https://github.com/kreis-viersen/xplan-reader/
icon=xplan_reader_icon.png
server=False
deprecated=False
changelog=v0.27.0:
changelog=v0.28.0:
- Fix raeumlicherGeltungsbereich-Check
v0.27.0:
- berücksichtige Umbenennung von BP_AbweichungVonUeberbaubarerGrundstuecksFlaeche in v6
v0.26.0:
- optimierte Styles
Expand Down
2 changes: 1 addition & 1 deletion xplan_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def importXplanGml(self):
"{" + xplan_ns_uri + "}raeumlicherGeltungsbereich"
)
)
if len(raeumlicherGeltungsbereich_element.text) > 0:
if raeumlicherGeltungsbereich_element:
break
except:
message = (
Expand Down

0 comments on commit 298a8c3

Please sign in to comment.