Skip to content

Commit

Permalink
Tweak layer order
Browse files Browse the repository at this point in the history
provided by @stoni100
  • Loading branch information
pathmapper committed Apr 12, 2024
1 parent 1cd1589 commit 7ce34cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xplan_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,7 @@ def addXplanLayer(layername, gtype):
addXplanLayer("BP_VerkehrsflaecheBesondererZweckbestimmung", "Flaeche")
# BP_Bereich_textlicher_Festsetzung im WMS enthalten …. Fehlt ?
addXplanLayer("BP_AbgrabungsFlaeche", "Flaeche")
addXplanLayer("BP_SchutzPflegeEntwicklungsFlaeche", "Flaeche")
addXplanLayer("BP_AufschuettungsFlaeche", "Flaeche")
addXplanLayer("BP_AbstandsFlaeche", "Flaeche")
addXplanLayer("BP_AusgleichsFlaeche", "Flaeche")
Expand All @@ -737,7 +738,6 @@ def addXplanLayer(layername, gtype):
addXplanLayer("BP_PersGruppenBestimmteFlaeche", "Flaeche")
addXplanLayer("BP_Strassenkoerper", "Flaeche")
# addXplanLayer('BP_StrassenbegrenzungsLinie', 'Flaeche') -> existiert nur als Linie
addXplanLayer("BP_SchutzPflegeEntwicklungsFlaeche", "Flaeche")
addXplanLayer("BP_TechnischeMassnahmenFlaeche", "Flaeche")
addXplanLayer("BP_UeberbaubareGrundstuecksFlaeche", "Flaeche")
addXplanLayer("BP_NichtUeberbaubareGrundstuecksflaeche", "Flaeche")
Expand All @@ -760,7 +760,6 @@ def addXplanLayer(layername, gtype):
addXplanLayer("BP_AusgleichsMassnahme", "Flaeche")
addXplanLayer("BP_BereichOhneEinAusfahrtLinie", "Flaeche")
# addXplanLayer('BP_EinfahrtsbereichLinie', 'Flaeche') -> existiert nur als Linie
addXplanLayer("BP_EinfahrtsbereichLinie", "Linie")
addXplanLayer("BP_EinfahrtPunkt", "Flaeche")
addXplanLayer("BP_EingriffsBereich", "Flaeche")
addXplanLayer("BP_FestsetzungNachLandesrecht", "Flaeche")
Expand All @@ -777,7 +776,6 @@ def addXplanLayer(layername, gtype):
# addXplanLayer('BP_NutzungsartenGrenze', 'Flaeche') -> existiert nur als Linie
# addXplanLayer('BP_BauGrenze', 'Flaeche') -> existiert nur als Linie
# addXplanLayer('BP_BauLinie', 'Flaeche') -> existiert nur als Linie
addXplanLayer("BP_BauLinie", "Linie")
addXplanLayer("BP_AbweichungVonBaugrenze", "Flaeche")
addXplanLayer("BP_AbweichungVonUeberbaubererGrundstuecksFlaeche", "Flaeche")
addXplanLayer("BP_RichtungssektorGrenze", "Flaeche")
Expand Down Expand Up @@ -913,7 +911,9 @@ def addXplanLayer(layername, gtype):
addXplanLayer("BP_Plan", "Linie")
addXplanLayer("BP_StrassenbegrenzungsLinie", "Linie")
addXplanLayer("BP_NutzungsartenGrenze", "Linie")
addXplanLayer("BP_EinfahrtsbereichLinie", "Linie")
addXplanLayer("BP_BauGrenze", "Linie")
addXplanLayer("BP_BauLinie", "Linie")
addXplanLayer("BP_VerEntsorgung", "Linie")
addXplanLayer("BP_AbweichungVonUeberbaubererGrundstuecksFlaeche", "Linie")
addXplanLayer("BP_AufschuettungsFlaeche", "Linie")
Expand Down

0 comments on commit 7ce34cd

Please sign in to comment.