diff --git a/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoader.java b/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoader.java index ab3cae6bc9a3af094ac9de4e4d18d77746981239..4636aaa2ad79ab29ad985ab788b350e930b22972 100644 --- a/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoader.java +++ b/xplan-core/xplan-core-commons/src/main/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoader.java @@ -105,6 +105,8 @@ public class SystemPropertyPropertiesLoader extends AbstractPropertiesLoader { private Path findConfigDirectory() { LOG.info("Try to receive configuration set with system property {}", CONFIG_SYSTEM_PROPERTY); String configFilePath = System.getProperty(CONFIG_SYSTEM_PROPERTY); + if (configFilePath == null) + configFilePath = System.getenv(CONFIG_SYSTEM_PROPERTY); if (configFilePath != null) return findConfigDirectory(configFilePath); LOG.info("Try to receive configuration from default directory ${user.home}/xplanbox"); diff --git a/xplan-core/xplan-core-commons/src/test/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoaderTest.java b/xplan-core/xplan-core-commons/src/test/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoaderTest.java index 2dc12da0b1a4170933847fa937dbd5e7b0ec694a..71171d578eed1caff87654c002f1eb68c117366c 100644 --- a/xplan-core/xplan-core-commons/src/test/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoaderTest.java +++ b/xplan-core/xplan-core-commons/src/test/java/de/latlon/xplan/commons/configuration/SystemPropertyPropertiesLoaderTest.java @@ -24,6 +24,7 @@ import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.junit.jupiter.api.io.TempDir; +import uk.org.webcompere.systemstubs.environment.EnvironmentVariables; import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension; import uk.org.webcompere.systemstubs.properties.SystemProperties; @@ -44,14 +45,42 @@ import static org.junit.jupiter.api.Assertions.assertEquals; class SystemPropertyPropertiesLoaderTest { @Test - void test_withProperty_XPLANBOX_COFIG(@TempDir File xplanBoxConfig, SystemProperties systemProperties) + void test_withProperty_XPLANBOX_CONFIG(@TempDir Path xplanBoxConfig, SystemProperties systemProperties) throws IOException { - systemProperties.set(CONFIG_SYSTEM_PROPERTY, xplanBoxConfig.toString()); + systemProperties.set(CONFIG_SYSTEM_PROPERTY, xplanBoxConfig.toAbsolutePath().toString()); SystemPropertyPropertiesLoader systemPropertyPropertiesLoader = new SystemPropertyPropertiesLoader(); Path configDirectory = systemPropertyPropertiesLoader.getConfigDirectory(); - assertEquals(Paths.get(xplanBoxConfig.toURI()), configDirectory); + assertEquals(xplanBoxConfig, configDirectory); + } + + @Test + void test_withEnvVar_XPLANBOX_CONFIG(@TempDir Path tmpDir, EnvironmentVariables envVars) throws IOException { + envVars.set(CONFIG_SYSTEM_PROPERTY, tmpDir.toAbsolutePath().toString()); + + SystemPropertyPropertiesLoader systemPropertyPropertiesLoader = new SystemPropertyPropertiesLoader(); + Path configDirectory = systemPropertyPropertiesLoader.getConfigDirectory(); + + assertEquals(tmpDir, configDirectory); + } + + @Test + void test_systemPropertyWinsOverEnvVar_XPLANBOX_CONFIG(@TempDir Path tmpDir, SystemProperties systemProperties, + EnvironmentVariables envVars) throws IOException { + + Path dirForSysVar = tmpDir.resolve("subdir2").toAbsolutePath(); + Files.createDirectory(dirForSysVar); + Path dirForEnvProps = tmpDir.resolve("subdir1"); + Files.createDirectory(dirForEnvProps).toAbsolutePath(); + + systemProperties.set(CONFIG_SYSTEM_PROPERTY, dirForSysVar.toString()); + envVars.set(CONFIG_SYSTEM_PROPERTY, dirForEnvProps.toString()); + + SystemPropertyPropertiesLoader systemPropertyPropertiesLoader = new SystemPropertyPropertiesLoader(); + Path configDirectory = systemPropertyPropertiesLoader.getConfigDirectory(); + + assertEquals(configDirectory, dirForSysVar); } @Test diff --git a/xplan-core/xplan-core-schemas/src/main/resources/appschemas/XPlanGML_Syn/XPlanSyn.xsd b/xplan-core/xplan-core-schemas/src/main/resources/appschemas/XPlanGML_Syn/XPlanSyn.xsd index 03ccf16bb63fe58481f15be9f5252840293546e6..9c22649e9218d221bdd7f58003f07059794b5443 100644 --- a/xplan-core/xplan-core-schemas/src/main/resources/appschemas/XPlanGML_Syn/XPlanSyn.xsd +++ b/xplan-core/xplan-core-schemas/src/main/resources/appschemas/XPlanGML_Syn/XPlanSyn.xsd @@ -16,7 +16,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" targetNamespace="http://www.deegree.org/xplanung/1/0" elementFormDefault="qualified" attributeFormDefault="unqualified"> <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/> <element name="BP_AbgrabungsFlaeche" substitutionGroup="gml:AbstractFeature"> @@ -782,7 +782,7 @@ <element name="zugunstenVon" minOccurs="0" type="string"/> <element name="flaechenteil" minOccurs="0" type="string"/> <element name="abweichungText" minOccurs="0" type="string"/> - <element name="position" type="gml:GeometryPropertyType"/> + <element name="position" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="rechtsstand" minOccurs="0" type="string"/> <element name="rechtsstandWert" minOccurs="0" type="string"/> <element name="gesetzlicheGrundlage" minOccurs="0" type="string"/> @@ -1068,7 +1068,7 @@ <element name="name" minOccurs="0" type="string"/> <element name="detaillierteBedeutung" minOccurs="0" type="string"/> <element name="erstellungsMassstab" minOccurs="0" type="integer"/> - <element name="geltungsbereich" type="gml:GeometryPropertyType"/> + <element name="geltungsbereich" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="refScan" minOccurs="0" type="string"/> <element name="planinhalt" minOccurs="0" type="string"/> <element name="praesentationsobjekt" minOccurs="0" type="string"/> @@ -3685,7 +3685,7 @@ <element name="refScan" minOccurs="0" type="string"/> <element name="refText" minOccurs="0" type="string"/> <element name="refLegende" minOccurs="0" type="string"/> - <element name="geltungsbereichAenderung" type="gml:GeometryPropertyType"/> + <element name="geltungsbereichAenderung" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="besonderheiten" minOccurs="0" type="string"/> <element name="aufstellungsbeschlussDatum" minOccurs="0" type="date"/> <element name="auslegungsStartDatum" minOccurs="0" type="date"/> @@ -6323,7 +6323,7 @@ <element name="name" minOccurs="0" type="string"/> <element name="detaillierteBedeutung" minOccurs="0" type="string"/> <element name="erstellungsMassstab" minOccurs="0" type="integer"/> - <element name="geltungsbereich" type="gml:GeometryPropertyType"/> + <element name="geltungsbereich" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="refScan" minOccurs="0" type="string"/> <element name="planinhalt" minOccurs="0" type="string"/> <element name="praesentationsobjekt" minOccurs="0" type="string"/> @@ -7420,7 +7420,7 @@ <element name="refScan" minOccurs="0" type="string"/> <element name="refText" minOccurs="0" type="string"/> <element name="refLegende" minOccurs="0" type="string"/> - <element name="geltungsbereichAenderung" type="gml:GeometryPropertyType"/> + <element name="geltungsbereichAenderung" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="besonderheiten" minOccurs="0" type="string"/> <element name="aufstellungbeschlussDatum" minOccurs="0" type="date"/> <element name="auslegungsStartDatum" minOccurs="0" type="date"/> @@ -8394,7 +8394,7 @@ <element name="name" minOccurs="0" type="string"/> <element name="detaillierteBedeutung" minOccurs="0" type="string"/> <element name="erstellungsMassstab" minOccurs="0" type="integer"/> - <element name="geltungsbereich" type="gml:GeometryPropertyType"/> + <element name="geltungsbereich" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="refScan" minOccurs="0" type="string"/> <element name="planinhalt" minOccurs="0" type="string"/> <element name="praesentationsobjekt" minOccurs="0" type="string"/> @@ -9222,7 +9222,7 @@ <element name="refScan" minOccurs="0" type="string"/> <element name="refText" minOccurs="0" type="string"/> <element name="refLegende" minOccurs="0" type="string"/> - <element name="geltungsbereichAenderung" type="gml:GeometryPropertyType"/> + <element name="geltungsbereichAenderung" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="besonderheiten" minOccurs="0" type="string"/> <element name="aufstellungsbeschlussDatum" minOccurs="0" type="date"/> <element name="auslegungsDatum" minOccurs="0" type="date"/> @@ -10171,7 +10171,7 @@ <element name="name" minOccurs="0" type="string"/> <element name="detaillierteBedeutung" minOccurs="0" type="string"/> <element name="erstellungsMassstab" minOccurs="0" type="integer"/> - <element name="geltungsbereich" type="gml:GeometryPropertyType"/> + <element name="geltungsbereich" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="refScan" minOccurs="0" type="string"/> <element name="planinhalt" minOccurs="0" type="string"/> <element name="praesentationsobjekt" minOccurs="0" type="string"/> @@ -12024,7 +12024,7 @@ <element name="refScan" minOccurs="0" type="string"/> <element name="refText" minOccurs="0" type="string"/> <element name="refLegende" minOccurs="0" type="string"/> - <element name="geltungsbereichAenderung" type="gml:GeometryPropertyType"/> + <element name="geltungsbereichAenderung" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="besonderheiten" minOccurs="0" type="string"/> <element name="aufstellungsbeschlussDatum" minOccurs="0" type="date"/> <element name="auslegungsStartDatum" minOccurs="0" type="date"/> @@ -13538,7 +13538,7 @@ <element name="name" minOccurs="0" type="string"/> <element name="detaillierteBedeutung" minOccurs="0" type="string"/> <element name="erstellungsMassstab" minOccurs="0" type="integer"/> - <element name="geltungsbereich" type="gml:GeometryPropertyType"/> + <element name="geltungsbereich" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="refScan" minOccurs="0" type="string"/> <element name="planinhalt" minOccurs="0" type="string"/> <element name="praesentationsobjekt" minOccurs="0" type="string"/> @@ -14350,7 +14350,7 @@ <element name="refScan" minOccurs="0" type="string"/> <element name="refText" minOccurs="0" type="string"/> <element name="refLegende" minOccurs="0" type="string"/> - <element name="geltungsbereichAenderung" type="gml:GeometryPropertyType"/> + <element name="geltungsbereichAenderung" minOccurs="0" type="gml:GeometryPropertyType"/> <element name="besonderheiten" minOccurs="0" type="string"/> </sequence> </extension> diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/featuretypes/renamedFeatureTypes.properties b/xplan-core/xplan-core-synthesizer/src/main/resources/featuretypes/renamedFeatureTypes.properties index e7508aa2027dbb46f4b264dc303c9b5ecacf0540..5c2d6d2d01e01893fbcbf194594b342f5d805af8 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/featuretypes/renamedFeatureTypes.properties +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/featuretypes/renamedFeatureTypes.properties @@ -8,16 +8,16 @@ # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% ### # Diese Datei kann ueberschrieben werden! Aenderungen sollten nicht manuell vorgenommen werden! #alte Notation = gewuenschte Notation -BP_AbweichungVonUeberbaubererGrundstuecksFlaeche=BP_AbweichungVonUeberbaubarerGrundstuecksFlaeche +BP_AbweichungVonUeberbaubererGrundstuecksFlaeche=BP_AbweichungVonUeberbaubarerGrundstuecksFlaeche \ No newline at end of file diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan40.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan40.syn index be3fbdfa9ad896dded529823326db2870ce14f1c..d9caf4ff3cab144353219fd10b82a3eaae60790d 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan40.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan40.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') BP_AbgrabungsFlaeche/endeBedingung=xplanFlatten(xpath('xplan:endeBedingung')) BP_AbgrabungsFlaeche/flaechenschluss=xpath('xplan:flaechenschluss') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan41.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan41.syn index 3405390fea197d2a8d4b862450fdee806eef37c5..816037729b675ebd29bb4036655587e331a27cdf 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan41.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan41.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') BP_AbgrabungsFlaeche/endeBedingung=xplanFlatten(xpath('xplan:endeBedingung')) BP_AbgrabungsFlaeche/flaechenschluss=xpath('xplan:flaechenschluss') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan50.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan50.syn index c264fda8635bdd288ed1e5d4431bfbab010c1a69..ecf540c8ab899e1e32e2bb8c6c1bacb956f2feab 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan50.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan50.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') BP_AbgrabungsFlaeche/endeBedingung=xplanFlatten(xpath('xplan:endeBedingung')) BP_AbgrabungsFlaeche/externeReferenz=xplanFlatten(xpath('xplan:externeReferenz')) diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan51.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan51.syn index b3d1d79d5f27c822f2f10ab76b68434dea35d28e..7ca7b7781a8499f0bcc823c7dd4479b77d5fe28d 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan51.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan51.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/abbaugut=xpath('xplan:abbaugut') BP_AbgrabungsFlaeche/aufschrift=xpath('xplan:aufschrift') BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan52.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan52.syn index 77ca00c4812e1a510e8b47e96d38f7909e96689d..ffd15b47d8205a2a77a2094b14dcb57ff4bc3bc6 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan52.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan52.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/abbaugut=xpath('xplan:abbaugut') BP_AbgrabungsFlaeche/aufschrift=xpath('xplan:aufschrift') BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan53.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan53.syn index 683d97a1d67abe2eed42d472499e1841bc9c95a3..68eceff30ad2ea7cebe62946180d746f586966e5 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan53.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan53.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/abbaugut=xpath('xplan:abbaugut') BP_AbgrabungsFlaeche/aufschrift=xpath('xplan:aufschrift') BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan54.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan54.syn index 74a03f630a9a2d8238673a6970a26644ee3cc39c..bc077ff50fd2ce16cc29840f910bfe2d76b3ca2c 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan54.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan54.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/abbaugut=xpath('xplan:abbaugut') BP_AbgrabungsFlaeche/aufschrift=xpath('xplan:aufschrift') BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') diff --git a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan60.syn b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan60.syn index e511755be51c61c377ea167f9343642c90c88571..a27f4cda81e02783129643d62f72a7b9b3bbccde 100644 --- a/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan60.syn +++ b/xplan-core/xplan-core-synthesizer/src/main/resources/rules/xplan60.syn @@ -16,7 +16,7 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 BP_AbgrabungsFlaeche/abbaugut=xpath('xplan:abbaugut') BP_AbgrabungsFlaeche/aufschrift=xpath('xplan:aufschrift') BP_AbgrabungsFlaeche/ebene=xpath('xplan:ebene') diff --git a/xplan-database/xplan-database-docker/src/main/resources/archive/xplansyn/create.sql b/xplan-database/xplan-database-docker/src/main/resources/archive/xplansyn/create.sql index 3dc84eee65889f71bd2979ad4b6269da718ac347..8c87d4b8008c86fb907c8d012afb175631231cde 100644 --- a/xplan-database/xplan-database-docker/src/main/resources/archive/xplansyn/create.sql +++ b/xplan-database/xplan-database-docker/src/main/resources/archive/xplansyn/create.sql @@ -18,7 +18,7 @@ -- along with this program. If not, see <http://www.gnu.org/licenses/>. -- #L% --- --- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 CREATE SCHEMA xplansynarchive; SET search_path TO xplansynarchive,public; CREATE TABLE xplansynarchive.xplan_bp_abgrabungsflaeche ( diff --git a/xplan-database/xplan-database-docker/src/main/resources/fix/xplansyn/create.sql b/xplan-database/xplan-database-docker/src/main/resources/fix/xplansyn/create.sql index 34dc896d239c3dacacbd8588cb00afcffa8b3e89..e6d851ef002552725fcf57203a52443acc182c71 100644 --- a/xplan-database/xplan-database-docker/src/main/resources/fix/xplansyn/create.sql +++ b/xplan-database/xplan-database-docker/src/main/resources/fix/xplansyn/create.sql @@ -18,7 +18,7 @@ -- along with this program. If not, see <http://www.gnu.org/licenses/>. -- #L% --- --- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 CREATE SCHEMA xplansyn; SET search_path TO xplansyn,public; CREATE TABLE xplansyn.xplan_bp_abgrabungsflaeche ( diff --git a/xplan-database/xplan-database-docker/src/main/resources/pre/xplansyn/create.sql b/xplan-database/xplan-database-docker/src/main/resources/pre/xplansyn/create.sql index 7989098e6c8f9e4592d11117bec15a1dedaa1f94..91bbb2a5bfc80f2518310dfb5e91bc1978d25226 100644 --- a/xplan-database/xplan-database-docker/src/main/resources/pre/xplansyn/create.sql +++ b/xplan-database/xplan-database-docker/src/main/resources/pre/xplansyn/create.sql @@ -18,7 +18,7 @@ -- along with this program. If not, see <http://www.gnu.org/licenses/>. -- #L% --- --- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 CREATE SCHEMA xplansynpre; SET search_path TO xplansynpre,public; CREATE TABLE xplansynpre.xplan_bp_abgrabungsflaeche ( diff --git a/xplan-database/xplan-database-docker/src/main/resources/xplanvalidator/create.sql b/xplan-database/xplan-database-docker/src/main/resources/xplanvalidator/create.sql index 4c6d2fccde0e6399e880f5915e331ba43cc0bc7b..f3a0445ce63de38e5494fe76319c16d3ef29b5f2 100644 --- a/xplan-database/xplan-database-docker/src/main/resources/xplanvalidator/create.sql +++ b/xplan-database/xplan-database-docker/src/main/resources/xplanvalidator/create.sql @@ -18,7 +18,7 @@ -- along with this program. If not, see <http://www.gnu.org/licenses/>. -- #L% --- --- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 +-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 CREATE SCHEMA xplanvalidator; SET search_path TO xplanvalidator,public; CREATE TABLE xplanvalidator.xplan_bp_abgrabungsflaeche ( diff --git a/xplan-documentation/xplan-benutzerhandbuch/.maven-dockerinclude b/xplan-documentation/xplan-benutzerhandbuch/.maven-dockerinclude new file mode 100644 index 0000000000000000000000000000000000000000..f1901c650d16222dcb0ace0ed2c50a3c8673234d --- /dev/null +++ b/xplan-documentation/xplan-benutzerhandbuch/.maven-dockerinclude @@ -0,0 +1 @@ +target/html/** \ No newline at end of file diff --git a/xplan-documentation/xplan-benutzerhandbuch/pom.xml b/xplan-documentation/xplan-benutzerhandbuch/pom.xml index 0e018f4e387d53882598f85027d0a1c46097794a..15a70aa73e5522696af9f21ca1712581a456af33 100644 --- a/xplan-documentation/xplan-benutzerhandbuch/pom.xml +++ b/xplan-documentation/xplan-benutzerhandbuch/pom.xml @@ -88,7 +88,7 @@ <id>docker</id> <properties> <docker-image.skip>false</docker-image.skip> - <docker-contextTarFile.expectedSizeInMat10pct>10</docker-contextTarFile.expectedSizeInMat10pct> + <docker-contextTarFile.expectedSizeInMat10pct>1</docker-contextTarFile.expectedSizeInMat10pct> </properties> </profile> </profiles> diff --git a/xplan-documentation/xplan-betriebshandbuch/.maven-dockerinclude b/xplan-documentation/xplan-betriebshandbuch/.maven-dockerinclude new file mode 100644 index 0000000000000000000000000000000000000000..f1901c650d16222dcb0ace0ed2c50a3c8673234d --- /dev/null +++ b/xplan-documentation/xplan-betriebshandbuch/.maven-dockerinclude @@ -0,0 +1 @@ +target/html/** \ No newline at end of file diff --git a/xplan-documentation/xplan-betriebshandbuch/pom.xml b/xplan-documentation/xplan-betriebshandbuch/pom.xml index 7be9cbcadc063c295e597da2e0861eda5e4b5650..d089ea51991c974b7c69af6c7f1d7dacabbb3291 100644 --- a/xplan-documentation/xplan-betriebshandbuch/pom.xml +++ b/xplan-documentation/xplan-betriebshandbuch/pom.xml @@ -46,7 +46,7 @@ <id>docker</id> <properties> <docker-image.skip>false</docker-image.skip> - <docker-contextTarFile.expectedSizeInMat10pct>18</docker-contextTarFile.expectedSizeInMat10pct> + <docker-contextTarFile.expectedSizeInMat10pct>3</docker-contextTarFile.expectedSizeInMat10pct> </properties> </profile> <profile> diff --git a/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_gml.properties b/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_gml.properties index d2655bbdafa9ed472d98600a4b0f9a0df045c83d..22e8a24830de90780afb87c5345f6ffbdbbaa210 100644 --- a/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_gml.properties +++ b/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_gml.properties @@ -16,8 +16,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 -#Thu Nov 02 10:41:42 CET 2023 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 +#Thu Feb 15 07:55:39 CET 2024 {http\://www.opengis.net/gml/3.2}AbstractCoverage=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.opengis.net/gml/3.2}AbstractDiscreteCoverage=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.opengis.net/gml/3.2}AbstractFeature=epsg\:4326,5.7,47.2,15.1,55.1 diff --git a/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_syn.properties b/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_syn.properties index 2859f02cb7af4e329f7a587d468f664f99504bd7..99841381e23f17149c06159c1aa1486b677c3b1a 100644 --- a/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_syn.properties +++ b/xplan-documentation/xplan-betriebshandbuch/src/main/asciidoc/downloads/bbox_cache_syn.properties @@ -16,8 +16,8 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 -#Thu Nov 02 10:41:42 CET 2023 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 +#Thu Feb 15 07:55:38 CET 2024 {http\://www.deegree.org/xplanung/1/0}BP_AbgrabungsFlaeche=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.deegree.org/xplanung/1/0}BP_AbstandsFlaeche=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.deegree.org/xplanung/1/0}BP_AbstandsMass=epsg\:4326,5.7,47.2,15.1,55.1 diff --git a/xplan-dokumente/xplan-dokumente-api/Dockerfile b/xplan-dokumente/xplan-dokumente-api/Dockerfile index 1a69e8c573e21d234655eae7ae143b955fd15277..966b8ec81a54428fe0bc5937b1b52910994c75f8 100644 --- a/xplan-dokumente/xplan-dokumente-api/Dockerfile +++ b/xplan-dokumente/xplan-dokumente-api/Dockerfile @@ -31,8 +31,9 @@ COPY --from=builder $JMX_EXPORTER_DIR $JMX_EXPORTER_DIR ENV JAVA_ADDITIONAL_ARG_JMX_EXPORTER='-javaagent:$JMX_EXPORTER_DIR/jmx_prometheus_javaagent-0.19.0.jar=12345:$JMX_EXPORTER_DIR/jmx-exporter.config.yaml' # set environment variables -ENV JAVA_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-dokumenten-config/ -Duser.timezone=Europe/Berlin" -ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree +ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree \ + JAVA_ADDITIONAL_ARG_APP="-Duser.timezone=Europe/Berlin" \ + XPLANBOX_CONFIG="/xplanbox/xplan-dokumenten-config/" COPY ${WAR_FILE} /xplanbox/app.war COPY run.sh /xplanbox/ diff --git a/xplan-manager/xplan-manager-api/Dockerfile b/xplan-manager/xplan-manager-api/Dockerfile index 28905fbf080351abd666b0997e5455f82c3ec1a3..4b772c27348ecc7c7eb64a6639b2c5ab5d464e9a 100644 --- a/xplan-manager/xplan-manager-api/Dockerfile +++ b/xplan-manager/xplan-manager-api/Dockerfile @@ -20,9 +20,9 @@ LABEL "org.opencontainers.image.created"="$BUILD_DATE" \ "org.opencontainers.image.version"="$XPLANBOX_VERSION" # set environment variables -ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree - -ENV JAVA_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-manager-config/ -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng" +ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree \ + JAVA_ADDITIONAL_ARG_APP="-Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng" \ + XPLANBOX_CONFIG="/xplanbox/xplan-manager-config/" COPY ${WAR_FILE} /xplanbox/app.war COPY run.sh /xplanbox/ diff --git a/xplan-manager/xplan-manager-web/Dockerfile b/xplan-manager/xplan-manager-web/Dockerfile index cd8faeacd9acde9c1ed14e3298a258b4ca06f87e..e2f070dd1940aa88091b07bbf83ca7fecc4dabec 100644 --- a/xplan-manager/xplan-manager-web/Dockerfile +++ b/xplan-manager/xplan-manager-web/Dockerfile @@ -20,7 +20,8 @@ LABEL "org.opencontainers.image.created"="$BUILD_DATE" \ "org.opencontainers.image.version"="$XPLANBOX_VERSION" # set environment variables -ENV TOMCAT_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-manager-config/ -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" +ENV TOMCAT_ADDITIONAL_ARG_APP="-Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" \ + XPLANBOX_CONFIG="/xplanbox/xplan-manager-config/" # add xplan-manager-web directly unpacked COPY target/xplan-manager-web-*.war /tmp/ diff --git a/xplan-validator/xplan-validator-api/Dockerfile b/xplan-validator/xplan-validator-api/Dockerfile index 8006e14dd477bd897df79dbbcf1bdf47b824d999..cc335dfd0f57bdb94d52b9aacc306ee97f8fecef 100644 --- a/xplan-validator/xplan-validator-api/Dockerfile +++ b/xplan-validator/xplan-validator-api/Dockerfile @@ -31,8 +31,9 @@ COPY --from=builder $JMX_EXPORTER_DIR $JMX_EXPORTER_DIR ENV JAVA_ADDITIONAL_ARG_JMX_EXPORTER='-javaagent:$JMX_EXPORTER_DIR/jmx_prometheus_javaagent-0.19.0.jar=12345:$JMX_EXPORTER_DIR/jmx-exporter.config.yaml' # set environment variables -ENV JAVA_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-validator-config/ -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" -ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree +ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree \ + JAVA_ADDITIONAL_ARG_APP="-Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" \ + XPLANBOX_CONFIG="/xplanbox/xplan-validator-config/" COPY ${WAR_FILE} /xplanbox/app.war COPY run.sh /xplanbox/ diff --git a/xplan-validator/xplan-validator-web/Dockerfile b/xplan-validator/xplan-validator-web/Dockerfile index 344d054cac5967b3e36146dfffc8cf85b9f83990..f26d9248dceb9f351455decd2778375a06b2f37f 100644 --- a/xplan-validator/xplan-validator-web/Dockerfile +++ b/xplan-validator/xplan-validator-web/Dockerfile @@ -20,9 +20,10 @@ LABEL "org.opencontainers.image.created"="$BUILD_DATE" \ "org.opencontainers.image.version"="$XPLANBOX_VERSION" # set environment variables -ENV TOMCAT_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-validator-config -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" -ENV TOMCAT_ADDITIONAL_ARG_JAVA17_EXPORTS="--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" -ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree +ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree \ + TOMCAT_ADDITIONAL_ARG_APP="-Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" \ + TOMCAT_ADDITIONAL_ARG_JAVA17_EXPORTS="--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" \ + XPLANBOX_CONFIG="/xplanbox/xplan-validator-config" USER root diff --git a/xplan-webservices/xplan-webservices-validator-wms/Dockerfile b/xplan-webservices/xplan-webservices-validator-wms/Dockerfile index e8a0abb1d167dfd4083749805e313dbdff05f336..4bb17175a01e0cd1843561e38bd67c8d75bc4a63 100644 --- a/xplan-webservices/xplan-webservices-validator-wms/Dockerfile +++ b/xplan-webservices/xplan-webservices-validator-wms/Dockerfile @@ -20,9 +20,10 @@ LABEL "org.opencontainers.image.created"="$BUILD_DATE" \ "org.opencontainers.image.version"="$XPLANBOX_VERSION" # set environment variables -ENV TOMCAT_ADDITIONAL_ARG_APP="-DXPLANBOX_CONFIG=/xplanbox/xplan-validator-config -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" -ENV TOMCAT_ADDITIONAL_ARG_JAVA17_EXPORTS="--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" -ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree +ENV DEEGREE_WORKSPACE_ROOT=/xplanbox/deegree \ + TOMCAT_ADDITIONAL_ARG_APP="-Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl -Djts.overlay=ng -Duser.timezone=Europe/Berlin" \ + TOMCAT_ADDITIONAL_ARG_JAVA17_EXPORTS="--add-exports=java.desktop/com.sun.imageio.spi=ALL-UNNAMED" \ + XPLANBOX_CONFIG="/xplanbox/xplan-validator-config" USER root diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplangml/bbox_cache.properties b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplangml/bbox_cache.properties index 157ea5e8d7dea44c4e4aea26d8289377d16dd357..9d285fc56ca274ba88bf5640d4ce797d6e17462f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplangml/bbox_cache.properties +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplangml/bbox_cache.properties @@ -7,17 +7,17 @@ # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 -#Thu Nov 02 10:41:42 CET 2023 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 +#Thu Feb 15 07:55:39 CET 2024 {http\://www.opengis.net/gml/3.2}AbstractCoverage=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.opengis.net/gml/3.2}AbstractDiscreteCoverage=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.opengis.net/gml/3.2}AbstractFeature=epsg\:4326,5.7,47.2,15.1,55.1 diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplansyn/bbox_cache.properties b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplansyn/bbox_cache.properties index ead6ececfc548a8eb6d3faccc1a12a201a5a271a..9015c58bd940c007ece4bf46928099c92a2ec327 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplansyn/bbox_cache.properties +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/bbox_cache-xplansyn/bbox_cache.properties @@ -7,17 +7,17 @@ # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. -# +# # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # #L% -#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 -#Thu Nov 02 10:41:42 CET 2023 +#Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 +#Thu Feb 15 07:55:38 CET 2024 {http\://www.deegree.org/xplanung/1/0}BP_AbgrabungsFlaeche=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.deegree.org/xplanung/1/0}BP_AbstandsFlaeche=epsg\:4326,5.7,47.2,15.1,55.1 {http\://www.deegree.org/xplanung/1/0}BP_AbstandsMass=epsg\:4326,5.7,47.2,15.1,55.1 diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansyn.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansyn.xml index f78a2250315116315f3eab103f555bfdc6ac8709..d10af87d714407c7dc0c7eb26b498be5aeec9188 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansyn.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansyn.xml @@ -7,17 +7,17 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> -<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql http://schemas.deegree.org/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> +<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql https://schemas.deegree.org/core/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> <JDBCConnId>xplan</JDBCConnId> <StorageCRS srid="25832" dim="2D">EPSG:25832</StorageCRS> <GMLSchema>../../appschemas/XPlanGML_Syn/XPlanSyn.xsd</GMLSchema> @@ -14521,4 +14521,4 @@ <Primitive path="xplan:rechtscharakter" mapping="xplan_rechtscharakter"/> <Primitive path="xplan:rechtscharakterWert" mapping="xplan_rechtscharakterwert"/> </FeatureTypeMapping> -</SQLFeatureStore> +</SQLFeatureStore> \ No newline at end of file diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynarchive.xml index 8bfc822de9a94cb57af3921f2eced32865d54d1e..746a4b9bb2f55aeef6c35672de57a31b4defd8a5 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynarchive.xml @@ -7,17 +7,17 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> -<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql http://schemas.deegree.org/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> +<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql https://schemas.deegree.org/core/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> <JDBCConnId>xplan</JDBCConnId> <StorageCRS srid="25832" dim="2D">EPSG:25832</StorageCRS> <GMLSchema>../../appschemas/XPlanGML_Syn/XPlanSyn.xsd</GMLSchema> @@ -14521,4 +14521,4 @@ <Primitive path="xplan:rechtscharakter" mapping="xplan_rechtscharakter"/> <Primitive path="xplan:rechtscharakterWert" mapping="xplan_rechtscharakterwert"/> </FeatureTypeMapping> -</SQLFeatureStore> +</SQLFeatureStore> \ No newline at end of file diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynpre.xml index 8ccff312ce50bc5c9a111ea93c2ed90f5e9830b1..49604f4c6f88d19cef43f07552c8f976747d3c21 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplansynpre.xml @@ -7,17 +7,17 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> -<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql http://schemas.deegree.org/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> +<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql https://schemas.deegree.org/core/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> <JDBCConnId>xplan</JDBCConnId> <StorageCRS srid="25832" dim="2D">EPSG:25832</StorageCRS> <GMLSchema>../../appschemas/XPlanGML_Syn/XPlanSyn.xsd</GMLSchema> @@ -14521,4 +14521,4 @@ <Primitive path="xplan:rechtscharakter" mapping="xplan_rechtscharakter"/> <Primitive path="xplan:rechtscharakterWert" mapping="xplan_rechtscharakterwert"/> </FeatureTypeMapping> -</SQLFeatureStore> +</SQLFeatureStore> \ No newline at end of file diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplanvalidator.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplanvalidator.xml index d24683fa50be1aa778f8f3626b560c321e780512..64ddbed463f3fce8e18208a265001e8a7bf5e4d4 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplanvalidator.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/datasources/feature/xplanvalidator.xml @@ -7,17 +7,17 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> -<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql http://schemas.deegree.org/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> +<SQLFeatureStore xmlns="http://www.deegree.org/datasource/feature/sql" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.deegree.org/datasource/feature/sql https://schemas.deegree.org/core/3.5/datasource/feature/sql/sql.xsd" xmlns:xplan="http://www.deegree.org/xplanung/1/0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gml="http://www.opengis.net/gml/3.2"> <JDBCConnId>xplan</JDBCConnId> <StorageCRS srid="25832" dim="2D">EPSG:25832</StorageCRS> <GMLSchema>../../appschemas/XPlanGML_Syn/XPlanSyn.xsd</GMLSchema> @@ -14521,4 +14521,4 @@ <Primitive path="xplan:rechtscharakter" mapping="xplan_rechtscharakter"/> <Primitive path="xplan:rechtscharakterWert" mapping="xplan_rechtscharakterwert"/> </FeatureTypeMapping> -</SQLFeatureStore> +</SQLFeatureStore> \ No newline at end of file diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplan.xml index 5e431d8c9601303876514dedc7ada6938c8741b5..fb5e9b50cc8f26ab121873b78b385724cf87502d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanarchive.xml index da3e33cfd5ead454d46d6aac1a4bac6b886f6a71..d2df14619c3d1c05f4c1a11fbfb7a54d4c51a6aa 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanpre.xml index 4e2a0e29314eff134dbc3a29504c999f404ced78..c59648a9a838037a794b9808053f4bc7a8bb6671 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplan.xml index 16bfc11ae3866f0b4a164592652114d59505a2e2..0bcb9b2fc8b5802aeecfe8a13aea66daebb5aff9 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanarchive.xml index 2f7764b14ae15730f39fd6e788b1e4b83dd65bb3..ce2bbbaf1f6a75bdae8e15722701dd2a5b45d652 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanpre.xml index 4c923a6047a1be79281ce68cc06c3cfb731f3954..53db4728bfa421a2e59f5a55d52013325e069a87 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplan.xml index a7dd66aa5b0c55f0338d5cff30588465e8249c95..e9c6985d72253f0dde74606e49a8f6f2a11ed0ea 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanarchive.xml index 89a94fb6873d05909ba118bfcd170e4628724c94..0a95debcb43bf672d43329f6026dc9dea5cd5058 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanpre.xml index 1c025cce70902877c398d708dfb1f03c866c29e8..64a7540cdc06d2cf0aa991d97fde9618fe8f7e24 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplan.xml index 2916477ddbde62cbd6161f9cc1fb41a387128f5a..25c36dc8cf2bddeb3066c4fc084eb366fa552511 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanarchive.xml index b0bf5e41d9677741999a4eea4fbe80a53e2a5d83..4098403c5a13c0135496c6a94a1b992a8c0c5efb 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanpre.xml index eebc7f81f7c2816aed08ca4e0d0e7b2b813ad0af..986e26b7e1b24fac5f39c61819a579efb2892e06 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplan.xml index cb4e16d741e12a4b55edfedd6d2dc21afa0b4970..bfd989ae21fb1bdd4532030d0389407ddb3394de 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanarchive.xml index de4a7b18545b78728b03c6a48081e331f6568342..39d1c483b571e78da86e4375054ed70aec00967e 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanpre.xml index fa61b3077af8f20e1837a3838c1e0d26421022de..650532719b4413931f96a4f6c5295256f670a91e 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplan.xml index c0559c552cec5f34fbb9f0a4b4348263e73e45bd..7bf304d10d1a5c80a89cd13de9b54600827594b8 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanarchive.xml index 138194564d1c00f62de37f0b19b7801e522ef378..fe73dfa0b32af6f777e1d7326ce56a17574635b3 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanpre.xml index b82dbf159038d7e3e6da2cca0457b39ee9b42788..c63c218fdad9a9f8175e1528c723c6961bca7f08 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplan.xml index 72d4b0d7b53f268bc8e6e3dd5b8ee0f6d633aa7d..f17f1382d2a7d9a90e03f7f9a04939f8fa554095 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanarchive.xml index b4c32ecdd9b85f8ed01e8b3fb4c89d97e40e1aeb..70111c2f92e15d8ab08850ba52a767cbd9c51a63 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanpre.xml index 9ddeb2012c3d748e6ae23c666e591845add2bda9..92439db3b610983678c38b0ea16d4879f2c233eb 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplan.xml index 795e6a667ba4012342cb7234ec7163fdc9e309dd..b0726f15772b1f5be5348c2a8607f8b806f881a9 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanarchive.xml index c7f1fb15d2a0085e66e71fb9a34914b685d45e73..2ae7155ad582a6a1d6f61f7a029015730eaa70c2 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanpre.xml index 0d04700fa34c939cdf1f9338a3d24359fb519034..e53f5b7b039df3c266b3502b59fc7d53c9d98a06 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/bp-soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplan.xml index 2de4512a1fd86407fff637574f3ac2a057306782..2f1ccdcace94fd9cf331680ecec21b1c055e7cfa 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanarchive.xml index 8da3a5827916333ce307b7e0e5418e7d0e69899a..f3ec3216aacc356dd1b0f068f516d1058df2a727 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanpre.xml index 7742308c65de878ce6211532ed28a8d48f562483..0112c0f25bb5f51878c6325a8180e2449491c09b 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplan.xml index ad16e766b209b5425e14e435ddeab42bb5d2c6c8..59d9c3189a1b930042af44734e32b2b412325b94 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanarchive.xml index e61b453088c73e151c5e4f801ea31f852c15f58b..2d6efd1f106bc9ad35d176398428821247563539 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanpre.xml index fd83745e935548ddbc2eb354b8990cf49be83a26..97a96fc76c36cb690951037d479f32dc932e9d45 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplan.xml index 28829f3b16b539f3023fe055f3cbf13fad106663..40bbf385887c6da65d030db4ed613cb78249ddce 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanarchive.xml index fec3f2078363306e3a52cf653eb6b0a04966a5ed..9193e5f565c78ac02a907121e8a8e47458c752a2 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanpre.xml index ad647aa4f69293f3745fced817a84da2ea5e5635..1428c64f96a631a6e0f4749cde4e81402c562433 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplan.xml index 6352d9950a7a0816c83215419bd3e07365a0608c..767a4cd6651f0beb96a6145f46fe3c299e4c9a5c 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanarchive.xml index bfa2a558c4f8a6445339476f4c07ce90ef6f1daf..09da9eef148f1c55b721866870111af81323de2a 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanpre.xml index 89dea07ff8f749ac4a1290d5fdfa5878415bd3bb..bb1a84826df5e4cf6bfb5fdfef504df5d6cf7708 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplan.xml index f26943e2b812a4bf44fe24905ffe74da39d467ce..f457ee0fd85beebb0dff6781b1b7c95e2f6f7335 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanarchive.xml index 754a2d95059f124dcc28437c620710ce8a8ee644..a178567e1789ac3771591bda990c0a5712b64f4f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanpre.xml index f9970a8568e4922d9ba26084c413f4144a97f9c7..8e0b84337500b3bc31e231246f047d35db2ade58 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/fp-soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplan.xml index fb16bee7defdd65469c0341bda28a6c194d55652..e8cf6ff67bf3a03652cd97104b037d7c4377acdc 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanarchive.xml index 9b646a9d9ea64d90ae67eca183b77fcca565d295..e74bcc7541e7c5a28c77204da6d73c9a6289f266 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanpre.xml index 0293e0137d83d59d90bb1c38ffa059a4f8c7597e..192f6c5a44d5a0e98e67008a6e0eead042919760 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplan.xml index 389926d6a39fbafb820fb1b40cc9787e32e281ad..2cd2b115763aa397998a03addef2fc9011cf9fca 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanarchive.xml index 4ed97dfaad65672a943fb20eaed8a15b5ebb499a..37ab8d3c48ac9d1dd71e07f412ca440bff6271d1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanpre.xml index 252431233ecbdf1fd99d5143e9cd048c986414f9..ab6966901ef77535da167c17a88e99bcb6a5dee0 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplan.xml index 1b1ec5f3b0b8f4fdec7b692aeaf693e7fac1b003..3134decd8f91c8f663a10fe3b809fb397ab54b28 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanarchive.xml index e46acfc40b5f6cff719999daa32f47344744c869..4ce344fbda3af8bab4992b4a63493124ecf70e5a 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanpre.xml index 034d2346cb515bdb0823031ad819aeff2527dbfd..8a27d9f1a1c0fac361a6e3e9d8178d34660969af 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplan.xml index 197c8c776ddd31eeeebbadb2f036dc7c395d8bb3..0c7954d61743db60ca13baf7bb835d2526c187a0 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanarchive.xml index 6fab40c86f7e4c0285dd72638354e185e9e5c2e6..ff191ee51e37a3e36e1d7ab6a64e29b1fbdb36d6 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanpre.xml index 774d23897834f053663190c2d3d9fb45bd787f8f..c33367cc2c9729e55a62cc4a97fd320b39d43024 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplan.xml index f99e7c9d964fa16915fac2cfec7f81f746e9e574..2cb977365b555e5c082e611efdc21299626a8db0 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanarchive.xml index 0aa661cbee5e6330311a9848c549b5df6d5cd511..1e9e8b369ba335fbfbd77f3352d52fa3e04a9889 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanpre.xml index 207a79fbf7d264d31d7b9ea3e9a3fc9b7839f735..c683c7f1e18080cbe85bc9226893da211cb70f76 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/lp-soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplan.xml index b933279a0a7d0475f5cae15019510db8b7bedb54..a01d55bd55a2e6c98544b78e0f8c4f66e9e51a19 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanarchive.xml index decbfaeaa17cb8d6db1c00c4fdda5eb567629f79..7dabaaabef879cf7ce2267e67f08053de1547d4f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanpre.xml index 0ec8cf54c7165409b780e23e192ba849c4a64e1a..348cc364e1b66c8e51382e1432853e32105f63a5 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplan.xml index af25f64f27ec007396d897003da4e6d700098344..2d68e472378d312adc25419b8b83bd9c235d0e48 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanarchive.xml index 5e19de0722e32ece7f16cc11afcdda80b73e6a3a..9662b0e1d29b9c5b0f4e7a24e459f52270d8ad92 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanpre.xml index 527934a4e5c1473076ec8b1c4c7f278a0f556bdb..5a3e3aef93aa3acbe46da8dadc1840e9d9e239e1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplan.xml index fab81e6e2b2e01eadaca63a5f0238fb165c10fae..06a9b269bf0cf93521be99e8444ccaaa4c71fdc5 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanarchive.xml index 73e67dc89fe3909b4d16ae5463798b11dc6290d1..2af305406574b2a12a2ad659463624f15f6ccf09 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanpre.xml index 870ccec39ea0d3bd4b17431580d1308836ee7af6..898c58e298f1762f05f8689bd02dfc38e3801f72 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplan.xml index 56e7de7f2d2a04c28bb17757646c106b58eb1888..55dac8a7d0d92eb98ed149e5639a505b01a3044e 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanarchive.xml index 5f93bb87558a3288c0eb74766156fbf3d4884254..5b18236a075b0edff8d785bf496f295dfc90140a 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanpre.xml index 23cc3c3907fd5b7caa7e0bf1efcdb0d5aefae81f..22d7eb72ac92a59ee7705f4244927dddd64791a8 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplan.xml index 68ed5c827f7001d63d24e0a78bd5293d8d2e64ad..27a5d649f0702d5f43f0984ba7f241138ef066e0 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanarchive.xml index f50443b7d10e5fece08ec60d9d31611f885866b7..f4aa276140aef3f414eaa34b0933f737d540eedc 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanpre.xml index 1e9c89017dbe138afe104df09a605234d075effc..68087617aa66ec997716e2d6c83a94844bad4613 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/rp-soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplan.xml index b34ad4763380e5f1eecebce4c52411215ce5d408..afb5d751956438ef4d5834d8157ece8be300e6ac 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanarchive.xml index 837d5dbec05ff49e033dba50e630ce555d7f5840..ee5421d152651b5482a495be2d8a77002ddc18de 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanpre.xml index 611db625d84c18f9d077a0eae6785ed043e65fa9..7e6991d309771dc30901e442e73dc27ee3777ea8 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplan.xml index ee5fdd71ce694b55a0c0cd52485936bee2accd32..8cd5dfda09fcd49651dadb80dad125a3570317ad 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanarchive.xml index 7a1563f6f5279561761c50bab343b8bf2f78b2a4..bd52407056ae70ed607578612335bf47a70e621d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanpre.xml index 15208d42f02c7b34dd1beb6b17e200a98db29374..9a709bf760bfbb07fa61c402f2dd43ca7791aa8e 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplan.xml index 14e8a9aad1d7931a2dedbbf58505bc329ffebea6..cebdc14a31af95b733aa9f73661896a727e11d49 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanarchive.xml index 8827f42bca89617f021425a1789014fd58e4a4df..ec4e0019d35a4fd75277a64f1738547185a13cb1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanpre.xml index 1bd5a92e9bf463b12c586c1d6b621ee0384183a9..09f70e7d1323cb99be4ec45c767836b2ba24c6e5 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplan.xml index 6f673e0174dd3171aa4b5cc21991486bde426171..66f8614b9d402abf71a7bccd74226516d3586178 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanarchive.xml index cbfec9ca189d0a57828c122abd7823d633faf0e7..5ec09fe07be14d1ede69415fd2188f736b471258 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanpre.xml index b7b7000fc807b1d44077ef33557af61dc3570eb6..2d5796eea01446cde61685bbc454cbf4ac1eda62 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplan.xml index db68f820ac9d5188c26f05876bd8264146089e62..4cdc6f4a413ba211cf2f98ef020c4825459e3d2f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanarchive.xml index 71b8de72bd22da1dd8fe07d397f3e7974becb552..49dcfc33ea117a6f9228b5ef42eb74c3745fa5d9 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanpre.xml index 446c8703ad3049104cc857e962cc18e6af9baa5b..89e827f1307bdfb1c914aa6fc548ae688d3916bb 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/planart-wms/so-soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplan.xml index eab7c1ea93fe7ee9a08515a64c6c79d81ddcc940..fe99cf7b8ab29f5035e9efbe0b9430f85c50ae56 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanarchive.xml index 544bfd4847f21c62b169b8fa5986c051d10ce223..c750fce8ab085eacb921e51ab522233147d2670c 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanpre.xml index 6bd9c50f4338af4e6ff7ca3995c82e276429d6a1..b8bf1474f5f30baabdb27f8ce18c2f3c7451b533 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplan.xml index 23b262b39d3353025939aee6a1370bf00de395fa..f31c40d3f1d06241af980766a3a05b64b07706f4 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansyn</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanarchive.xml index 6bc77e8d9c372a1ff35c9067cec14c9a85b613bd..cf82848bf877b96cc237f785401b0027e7896e68 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynarchive</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanpre.xml index e3fb9896555b408e61dc57c32dafe2f2a673be90..81818e73ba4b341e5e1ee57d06dad573c2afc355 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplansynpre</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-bplan.xml index 1dd6fce31a27b999cd7ce462c0c2ce10700ce9eb..acf3a49643fc3d85e621fa8e7787952e59ea3f10 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-fplan.xml index 23cd574e06371c47873f05c22eccf38ce58a9c26..20f7dfd65a9ae824f0f744c8f6b2bbf17037954b 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-lplan.xml index 20b8e256ee0a47775bc80aa6d13331a89f4f427b..9ae921224870ca416c4d35761e88d67f9b4cff43 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-rplan.xml index 3b1356d8538fe1a83265aa5017e30dbb101dff80..cec85347202941d8b17b6fe89a25b5c835330a4a 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-soplan.xml index ef8f630f4ce0bdcfea9970e302f244d3eed391b6..e85f6b27934f36fc5e7e15e5a831c3d1624d2708 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/bp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-bplan.xml index 0a4315996b9e3749a6e5e48604d11028bbfbeef2..bacded024b938d72a0f33ab806fae8359ef33283 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-fplan.xml index 99887e2b5577d6e2d411c5d55b4d87c0afc169b1..a93f036cef820b52db674ab7b98cfae1f4c1394c 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-lplan.xml index 0fca8f33c6b83458d93a3d1fc3b1e1fee860f453..2044ecbf81b3609f3931591c3010c8506d894f12 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-rplan.xml index 814dda9f5618d616a9895b8c733707811e294e9d..60a6b3a8b4556ecfbd9e7741f5230081b8c07b29 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-soplan.xml index 9f94ccf908763e310727f87ff046e92e22bbc3ef..326b26b8082cef295f92858c78c3422c472c8549 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/fp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-bplan.xml index ec4a51849832dd2042ce90aff8e40bf08ae4ee69..2c9e5e0ada802d62ee2a88f17b9c7c3b8348cb47 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-fplan.xml index 5166a759de8833b556c49f3dd540e695b1e274a1..455a40d80d935343e44517b4deb3c15487560b7b 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-lplan.xml index ec3e25d81d76e9528569991134b3f91c5fb2542f..0c4f14df43ebfecc41eebaa5984aaf9db811ff1b 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-rplan.xml index 7f539d3cf47b8c0f6289d82fd220536c27cc38f9..f1c288865319c7e815042f5173d68282af8fdcbe 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-soplan.xml index 46403a956e42c0647b62c37aaa3408fa277fc0ac..9c693cf30b4c19b5c4b0c9d8a5141df1029c83b3 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/lp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-bplan.xml index 875f0bd7985f69e7277ed4419d79d2b6a608e01d..48812227fb8c5fd6cd56cf2a24198601ed9fa79d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-fplan.xml index 6d1e347ff61959c263cb5c81283a17293ebd1ecf..d6fb0a2a8ff83804a9f2bccddfc3d559f30cc773 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-lplan.xml index a0b5f9b3235b2c36b4d64e9bfa23be71eed54275..46e30492117bfd860605689b2b8eee6772b27e33 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-rplan.xml index 0d55ad0bd36e535b04a5c00cba96b7d303bb133a..7865fc078ea8970a6d8519c1d18d85ea2244f164 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-soplan.xml index f510dbae2a0818c888c36cc3c2f441af7b66b688..78342e53896d4b57f7f8e8ce2bc91ce12a988df5 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/rp-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-bplan.xml index 0aaabbc2510a6da100fc3bdc3403bd05a21aa4c9..e9275df540a4f18f67d490f7fed396936e8e5ee2 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-fplan.xml index c9f14b6650cb1e475b90d1cfa955c53736f0d3c8..9e966632187cef94a8109c9bfc4763f33509acc3 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-lplan.xml index 5b9ae8e628afb9589e3580be27fd01805f692311..950bc8ccff839d9a12563133966719655fdb3631 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-rplan.xml index f341af647de098030d736e6323d312bfc4072904..67315d37fc2cd812439175a563a128e65874ca70 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-soplan.xml index c68631bd71633acec4ab7de843b701e4d55e2fea..6f09fe05d566253ce06d5113c7986e84bef63d29 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/layers/validator-wms/sql/so-soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <FeatureLayers xmlns="http://www.deegree.org/layers/feature" xmlns:l="http://www.deegree.org/layers/base" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <FeatureStoreId>xplanvalidator</FeatureStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/services/html.gfi b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/services/html.gfi index 19eefa64ccc5e46e5f6b6ef3394af5358fecff05..cbe16695f1d02478f94fb26c216669978192cea0 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/services/html.gfi +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/services/html.gfi @@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #L% --> -<!-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 --> +<!-- Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <html> <head> <title>XPlanWMS Sachdatenanzeige</title> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/storedqueries/xplansyn/planName.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/storedqueries/xplansyn/planName.xml index cab41854f3cf9c63f833db542e308a645f8f1242..61b53501cff4a2b361d0101d5b4b37dcc4196c7f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/storedqueries/xplansyn/planName.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/storedqueries/xplansyn/planName.xml @@ -1,22 +1,22 @@ <!-- #%L - xplanbox-syn - Automatisiert erzeugte Konfiguration - %% - Copyright (C) 2008 - 2023 Freie und Hansestadt Hamburg, developed by lat/lon gesellschaft für raumbezogene Informationssysteme mbH - %% - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU Affero General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU Affero General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%--> -<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35--> + xplanbox-syn - Automatisiert erzeugte Konfiguration + %% + Copyright (C) 2008 - 2023 Freie und Hansestadt Hamburg, developed by lat/lon gesellschaft für raumbezogene Informationssysteme mbH + %% + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + #L%--> +<!--Diese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32--> <wfs:StoredQueryDefinition xmlns:wfs="http://www.opengis.net/wfs/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd" id="urn:ogc:def:query:OGC-WFS::PlanName"> <wfs:Title>planName</wfs:Title> <wfs:Abstract>Es koennen alle zu dem PlanNamen gehoerenden Features im XPlanSyn-Schema heruntergeladen werden.</wfs:Abstract> @@ -24,7 +24,7 @@ <wfs:Abstract>planName (Mandatory)</wfs:Abstract> </wfs:Parameter> <wfs:QueryExpressionText returnFeatureTypes="${deegreewfs:ServedFeatureTypes}" language="urn:ogc:def:queryLanguage:OGC-WFS::WFS_QueryExpression" isPrivate="false"> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AbgrabungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AbgrabungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -52,7 +52,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AbstandsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AbstandsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -80,7 +80,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AbstandsMass"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AbstandsMass"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -108,7 +108,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AbweichungVonBaugrenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AbweichungVonBaugrenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -136,7 +136,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AbweichungVonUeberbaubarerGrundstuecksFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AbweichungVonUeberbaubarerGrundstuecksFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -164,7 +164,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AnpflanzungBindungErhaltung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AnpflanzungBindungErhaltung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -192,7 +192,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AufschuettungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AufschuettungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -220,7 +220,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AusgleichsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AusgleichsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -248,7 +248,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_AusgleichsMassnahme"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_AusgleichsMassnahme"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -276,7 +276,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BauGrenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BauGrenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -304,7 +304,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BauLinie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BauLinie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -332,7 +332,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Baugebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Baugebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -360,7 +360,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BaugebietsTeilFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BaugebietsTeilFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -388,7 +388,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Bereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Bereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -416,7 +416,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BereichOhneEinAusfahrtLinie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BereichOhneEinAusfahrtLinie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -444,7 +444,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BesondererNutzungszweckFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BesondererNutzungszweckFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -472,7 +472,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_BodenschaetzeFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_BodenschaetzeFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -500,7 +500,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_DenkmalschutzEinzelanlage"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_DenkmalschutzEinzelanlage"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -528,7 +528,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_DenkmalschutzEnsembleFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_DenkmalschutzEnsembleFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -556,7 +556,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_EinfahrtPunkt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_EinfahrtPunkt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -584,7 +584,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_EinfahrtsbereichLinie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_EinfahrtsbereichLinie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -612,7 +612,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_EingriffsBereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_EingriffsBereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -640,7 +640,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_ErhaltungsBereichFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_ErhaltungsBereichFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -668,7 +668,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_ErneuerbareEnergieFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_ErneuerbareEnergieFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -696,7 +696,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_FestsetzungNachLandesrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_FestsetzungNachLandesrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -724,7 +724,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_FirstRichtungsLinie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_FirstRichtungsLinie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -752,7 +752,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_FlaecheOhneFestsetzung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_FlaecheOhneFestsetzung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -780,7 +780,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_FoerderungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_FoerderungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -808,7 +808,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_FreiFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_FreiFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -836,7 +836,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GebaeudeFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GebaeudeFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -864,7 +864,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GebaeudeStellung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GebaeudeStellung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -892,7 +892,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GemeinbedarfsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GemeinbedarfsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -920,7 +920,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GemeinschaftsanlagenFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GemeinschaftsanlagenFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -948,7 +948,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GemeinschaftsanlagenZuordnung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GemeinschaftsanlagenZuordnung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -976,7 +976,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GenerischesObjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GenerischesObjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1004,7 +1004,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GewaesserFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GewaesserFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1032,7 +1032,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_GruenFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_GruenFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1060,7 +1060,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_HoehenMass"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_HoehenMass"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1088,7 +1088,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Immissionsschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Immissionsschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1116,7 +1116,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_KennzeichnungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_KennzeichnungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1144,7 +1144,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_KleintierhaltungFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_KleintierhaltungFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1172,7 +1172,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Landwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Landwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1200,7 +1200,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_LandwirtschaftsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_LandwirtschaftsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1228,7 +1228,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_LuftreinhalteFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_LuftreinhalteFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1256,7 +1256,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_NebenanlagenAusschlussFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_NebenanlagenAusschlussFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1284,7 +1284,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_NebenanlagenFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_NebenanlagenFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1312,7 +1312,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_NichtUeberbaubareGrundstuecksflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_NichtUeberbaubareGrundstuecksflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1340,7 +1340,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_NutzungsartenGrenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_NutzungsartenGrenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1368,7 +1368,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_PersGruppenBestimmteFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_PersGruppenBestimmteFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1396,7 +1396,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Plan"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Plan"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1424,7 +1424,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_RasterplanAenderung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_RasterplanAenderung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1452,7 +1452,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_RegelungVergnuegungsstaetten"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_RegelungVergnuegungsstaetten"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1480,7 +1480,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_RekultivierungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_RekultivierungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1508,7 +1508,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_RichtungssektorGrenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_RichtungssektorGrenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1536,7 +1536,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_SchutzPflegeEntwicklungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_SchutzPflegeEntwicklungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1564,7 +1564,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_SchutzPflegeEntwicklungsMassnahme"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_SchutzPflegeEntwicklungsMassnahme"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1592,7 +1592,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Schutzgebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Schutzgebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1620,7 +1620,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Sichtflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Sichtflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1648,7 +1648,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_SpezielleBauweise"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_SpezielleBauweise"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1676,7 +1676,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_SpielSportanlagenFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_SpielSportanlagenFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1704,7 +1704,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_StrassenVerkehrsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_StrassenVerkehrsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1732,7 +1732,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_StrassenbegrenzungsLinie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_StrassenbegrenzungsLinie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1760,7 +1760,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Strassenkoerper"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Strassenkoerper"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1788,7 +1788,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_TechnischeMassnahmenFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_TechnischeMassnahmenFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1816,7 +1816,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1844,7 +1844,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_TextAbschnittFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_TextAbschnittFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1872,7 +1872,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_TextlicheFestsetzungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_TextlicheFestsetzungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1900,7 +1900,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_UeberbaubareGrundstuecksFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_UeberbaubareGrundstuecksFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1928,7 +1928,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_UnverbindlicheVormerkung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_UnverbindlicheVormerkung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1956,7 +1956,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_VerEntsorgung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_VerEntsorgung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -1984,7 +1984,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Veraenderungssperre"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Veraenderungssperre"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2012,7 +2012,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_VerkehrsflaecheBesondererZweckbestimmung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_VerkehrsflaecheBesondererZweckbestimmung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2040,7 +2040,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_WaldFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_WaldFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2068,7 +2068,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_WasserwirtschaftsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_WasserwirtschaftsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2096,7 +2096,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_Wegerecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_Wegerecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2124,7 +2124,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_WohngebaeudeFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_WohngebaeudeFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2152,7 +2152,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_ZentralerVersorgungsbereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_ZentralerVersorgungsbereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2180,7 +2180,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_ZusatzkontingentLaerm"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_ZusatzkontingentLaerm"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2208,7 +2208,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:BP_ZusatzkontingentLaermFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:BP_ZusatzkontingentLaermFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2236,7 +2236,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Abgrabung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Abgrabung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2264,7 +2264,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_AbgrabungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_AbgrabungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2292,7 +2292,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_AnpassungKlimawandel"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_AnpassungKlimawandel"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2320,7 +2320,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Aufschuettung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Aufschuettung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2348,7 +2348,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_AufschuettungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_AufschuettungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2376,7 +2376,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_AusgleichsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_AusgleichsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2404,7 +2404,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_BebauungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_BebauungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2432,7 +2432,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Bereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Bereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2460,7 +2460,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Bodenschaetze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Bodenschaetze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2488,7 +2488,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_BodenschaetzeFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_BodenschaetzeFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2516,7 +2516,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_DarstellungNachLandesrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_DarstellungNachLandesrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2544,7 +2544,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_FlaecheOhneDarstellung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_FlaecheOhneDarstellung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2572,7 +2572,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Gemeinbedarf"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Gemeinbedarf"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2600,7 +2600,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_GenerischesObjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_GenerischesObjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2628,7 +2628,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Gewaesser"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Gewaesser"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2656,7 +2656,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Gruen"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Gruen"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2684,7 +2684,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_KeineZentrAbwasserBeseitigungFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_KeineZentrAbwasserBeseitigungFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2712,7 +2712,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Kennzeichnung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Kennzeichnung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2740,7 +2740,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Landwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Landwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2768,7 +2768,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_LandwirtschaftsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_LandwirtschaftsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2796,7 +2796,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Nutzungsbeschraenkung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Nutzungsbeschraenkung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2824,7 +2824,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_NutzungsbeschraenkungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_NutzungsbeschraenkungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2852,7 +2852,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Plan"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Plan"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2880,7 +2880,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_PrivilegiertesVorhaben"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_PrivilegiertesVorhaben"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2908,7 +2908,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_RasterplanAenderung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_RasterplanAenderung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2936,7 +2936,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_SchutzPflegeEntwicklung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_SchutzPflegeEntwicklung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2964,7 +2964,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_SpielSportanlage"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_SpielSportanlage"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -2992,7 +2992,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Strassenverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Strassenverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3020,7 +3020,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3048,7 +3048,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_TextAbschnittFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_TextAbschnittFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3076,7 +3076,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_TextlicheDarstellungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_TextlicheDarstellungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3104,7 +3104,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_UnverbindlicheVormerkung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_UnverbindlicheVormerkung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3132,7 +3132,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_VerEntsorgung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_VerEntsorgung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3160,7 +3160,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_VorbehalteFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_VorbehalteFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3188,7 +3188,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_WaldFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_WaldFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3216,7 +3216,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_Wasserwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_Wasserwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3244,7 +3244,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:FP_ZentralerVersorgungsbereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:FP_ZentralerVersorgungsbereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3272,7 +3272,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Abgrenzung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Abgrenzung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3300,7 +3300,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_AllgGruenflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_AllgGruenflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3328,7 +3328,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_AnpflanzungBindungErhaltung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_AnpflanzungBindungErhaltung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3356,7 +3356,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Ausgleich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Ausgleich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3384,7 +3384,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Bereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Bereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3412,7 +3412,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_BiotopverbundBiotopvernetzung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_BiotopverbundBiotopvernetzung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3440,7 +3440,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Biotopverbundflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Biotopverbundflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3468,7 +3468,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Bodenschutzrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Bodenschutzrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3496,7 +3496,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Denkmalschutzrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Denkmalschutzrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3524,7 +3524,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Eingriffsregelung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Eingriffsregelung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3552,7 +3552,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_ErholungFreizeit"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_ErholungFreizeit"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3580,7 +3580,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Forstrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Forstrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3608,7 +3608,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_GenerischesObjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_GenerischesObjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3636,7 +3636,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Landschaftsbild"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Landschaftsbild"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3664,7 +3664,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_NutzungsAusschluss"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_NutzungsAusschluss"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3692,7 +3692,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_NutzungserfordernisRegelung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_NutzungserfordernisRegelung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3720,7 +3720,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Plan"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Plan"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3748,7 +3748,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_PlanerischeVertiefung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_PlanerischeVertiefung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3776,7 +3776,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_RasterplanAenderung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_RasterplanAenderung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3804,7 +3804,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SchutzBestimmterTeileVonNaturUndLandschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SchutzBestimmterTeileVonNaturUndLandschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3832,7 +3832,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SchutzPflegeEntwicklung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SchutzPflegeEntwicklung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3860,7 +3860,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SchutzobjektBundesrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SchutzobjektBundesrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3888,7 +3888,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SchutzobjektInternatRecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SchutzobjektInternatRecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3916,7 +3916,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SonstigeAbgrenzuung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SonstigeAbgrenzuung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3944,7 +3944,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_SonstigesRecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_SonstigesRecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -3972,7 +3972,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4000,7 +4000,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_TextAbschnittObjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_TextAbschnittObjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4028,7 +4028,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_TextlicheFestsetzungsFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_TextlicheFestsetzungsFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4056,7 +4056,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_WasserrechtGemeingebrEinschraenkungNaturschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_WasserrechtGemeingebrEinschraenkungNaturschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4084,7 +4084,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_WasserrechtSchutzgebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_WasserrechtSchutzgebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4112,7 +4112,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_WasserrechtSonstige"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_WasserrechtSonstige"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4140,7 +4140,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_WasserrechtWirtschaftAbflussHochwSchutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_WasserrechtWirtschaftAbflussHochwSchutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4168,7 +4168,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_ZieleErfordernisseMassnahmen"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_ZieleErfordernisseMassnahmen"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4196,7 +4196,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_ZuBegruenendeGrundstueckflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_ZuBegruenendeGrundstueckflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4224,7 +4224,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:LP_Zwischennutzung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:LP_Zwischennutzung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4252,7 +4252,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Achse"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Achse"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4280,7 +4280,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Bereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Bereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4308,7 +4308,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Bodenschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Bodenschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4336,7 +4336,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Einzelhandel"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Einzelhandel"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4364,7 +4364,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Energieversorgung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Energieversorgung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4392,7 +4392,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Entsorgung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Entsorgung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4420,7 +4420,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Erholung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Erholung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4448,7 +4448,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_ErneuerbareEnergie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_ErneuerbareEnergie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4476,7 +4476,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Forstwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Forstwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4504,7 +4504,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Freiraum"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Freiraum"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4532,7 +4532,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_FreizeitErholung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_FreizeitErholung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4560,7 +4560,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Funktionszuweisung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Funktionszuweisung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4588,7 +4588,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_GemeindeFunktionSiedlungsentwicklung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_GemeindeFunktionSiedlungsentwicklung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4616,7 +4616,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_GenerischesObjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_GenerischesObjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4644,7 +4644,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Gewaesser"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Gewaesser"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4672,7 +4672,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Grenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Grenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4700,7 +4700,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_GruenzugGruenzaesur"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_GruenzugGruenzaesur"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4728,7 +4728,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Hochwasserschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Hochwasserschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4756,7 +4756,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_IndustrieGewerbe"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_IndustrieGewerbe"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4784,7 +4784,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Klimaschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Klimaschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4812,7 +4812,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Kommunikation"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Kommunikation"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4840,7 +4840,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_KulturellesSachgut"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_KulturellesSachgut"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4868,7 +4868,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Kulturlandschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Kulturlandschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4896,7 +4896,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_LaermschutzBauschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_LaermschutzBauschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4924,7 +4924,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Laermschutzbereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Laermschutzbereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4952,7 +4952,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Landwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Landwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -4980,7 +4980,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Legendenobjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Legendenobjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5008,7 +5008,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Luftverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Luftverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5036,7 +5036,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_NaturLandschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_NaturLandschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5064,7 +5064,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_NaturschutzrechtlichesSchutzgebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_NaturschutzrechtlichesSchutzgebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5092,7 +5092,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Plan"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Plan"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5120,7 +5120,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Planungsraum"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Planungsraum"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5148,7 +5148,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_RadwegWanderweg"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_RadwegWanderweg"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5176,7 +5176,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_RasterplanAenderung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_RasterplanAenderung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5204,7 +5204,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Raumkategorie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Raumkategorie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5232,7 +5232,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Rohstoff"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Rohstoff"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5260,7 +5260,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Rohstoffsicherung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Rohstoffsicherung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5288,7 +5288,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Schienenverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Schienenverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5316,7 +5316,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Siedlung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Siedlung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5344,7 +5344,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstVerkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstVerkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5372,7 +5372,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstigeInfrastruktur"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstigeInfrastruktur"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5400,7 +5400,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstigeSiedlungsstruktur"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstigeSiedlungsstruktur"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5428,7 +5428,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstigerFreiraumschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstigerFreiraumschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5456,7 +5456,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstigerFreiraumstruktur"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstigerFreiraumstruktur"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5484,7 +5484,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SonstigerSiedlungsbereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SonstigerSiedlungsbereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5512,7 +5512,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_SozialeInfrastruktur"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_SozialeInfrastruktur"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5540,7 +5540,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Sperrgebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Sperrgebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5568,7 +5568,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Sportanlage"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Sportanlage"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5596,7 +5596,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Strassenverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Strassenverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5624,7 +5624,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5652,7 +5652,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Verkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Verkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5680,7 +5680,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_VorbHochwasserschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_VorbHochwasserschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5708,7 +5708,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Wasserschutz"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Wasserschutz"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5736,7 +5736,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Wasserverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Wasserverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5764,7 +5764,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Wasserwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Wasserwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5792,7 +5792,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_Windenergienutzung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_Windenergienutzung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5820,7 +5820,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_WohnenSiedlung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_WohnenSiedlung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5848,7 +5848,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:RP_ZentralerOrt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:RP_ZentralerOrt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5876,7 +5876,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Baubeschraenkung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Baubeschraenkung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5904,7 +5904,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Bauverbotszone"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Bauverbotszone"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5932,7 +5932,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Bereich"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Bereich"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5960,7 +5960,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Bodenschutzrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Bodenschutzrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -5988,7 +5988,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Denkmalschutzrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Denkmalschutzrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6016,7 +6016,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Forstrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Forstrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6044,7 +6044,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Gebiet"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Gebiet"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6072,7 +6072,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Gelaendemorphologie"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Gelaendemorphologie"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6100,7 +6100,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Gewaesser"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Gewaesser"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6128,7 +6128,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Grenze"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Grenze"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6156,7 +6156,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Linienobjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Linienobjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6184,7 +6184,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Luftverkehrsrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Luftverkehrsrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6212,7 +6212,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Objekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Objekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6240,7 +6240,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Plan"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Plan"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6268,7 +6268,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_RasterplanAenderung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_RasterplanAenderung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6296,7 +6296,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Schienenverkehrsrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Schienenverkehrsrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6324,7 +6324,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_SchutzgebietNaturschutzrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_SchutzgebietNaturschutzrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6352,7 +6352,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_SchutzgebietSonstigesRecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_SchutzgebietSonstigesRecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6380,7 +6380,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_SchutzgebietWasserrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_SchutzgebietWasserrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6408,7 +6408,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Sichtflaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Sichtflaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6436,7 +6436,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_SonstigesRecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_SonstigesRecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6464,7 +6464,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Strassenverkehr"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Strassenverkehr"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6492,7 +6492,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Strassenverkehrsrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Strassenverkehrsrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6520,7 +6520,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6548,7 +6548,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_TextAbschnittFlaeche"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_TextAbschnittFlaeche"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6576,7 +6576,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Wasserrecht"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Wasserrecht"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6604,7 +6604,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:SO_Wasserwirtschaft"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:SO_Wasserwirtschaft"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6632,7 +6632,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_BegruendungAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_BegruendungAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6660,7 +6660,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_FPO"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_FPO"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6688,7 +6688,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_LPO"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_LPO"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6716,7 +6716,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_LTO"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_LTO"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6744,7 +6744,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_Nutzungsschablone"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_Nutzungsschablone"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6772,7 +6772,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_PPO"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_PPO"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6800,7 +6800,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_PTO"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_PTO"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6828,7 +6828,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_Praesentationsobjekt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_Praesentationsobjekt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6856,7 +6856,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_Rasterdarstellung"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_Rasterdarstellung"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6884,7 +6884,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_RasterplanBasis"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_RasterplanBasis"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6912,7 +6912,7 @@ </fes:And> </fes:Filter> </wfs:Query> - <wfs:Query srsName="${srsName}" xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" typeNames="xplan:XP_TextAbschnitt"> + <wfs:Query xmlns:fes="http://www.opengis.net/fes/2.0" xmlns:xplan="http://www.deegree.org/xplanung/1/0" srsName="${srsName}" typeNames="xplan:XP_TextAbschnitt"> <fes:Filter> <fes:And> <fes:PropertyIsEqualTo> @@ -6941,4 +6941,4 @@ </fes:Filter> </wfs:Query> </wfs:QueryExpressionText> -</wfs:StoredQueryDefinition> +</wfs:StoredQueryDefinition> \ No newline at end of file diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplan.xml index e5ebf44fa2804d82358fb46b56934e0f1a81e31d..9e9fd4492508670cbb84d921b38a3ef69700a109 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>bplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanarchive.xml index c502f71f448038bf9ee5ece7a4a19fad47b45a36..b72f9ed8f58ac6322f7857742921118502885be2 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>bplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanpre.xml index a638a76bf27896ec4d789f14deec7a00fe6bcb68..6d1cb372fd533c1efd91cf50290ae59c6af1c74d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>bplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplan.xml index ec44d6a8f32e35bb6d5b2b929592c28f42d26119..d59ce12a076ce3c45425ebd7e8da0e34f584bd44 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>fplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanarchive.xml index 952da1e805453c6f30af4f4e8b2f77bb92891dde..87880a902f82dd950cd8f83f8821492d8c4ef897 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>fplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanpre.xml index 66e22849cca9dc2229d7b63aafda7f9477fe9837..733608a22af5dbfd99559e80861e97e16d600952 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>fplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplan.xml index 8c698b5d7631aef371c41442a86c7bf8f2a29059..9c292788ccf40baabc3fdcccc5f0916ec7227af6 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>lplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanarchive.xml index 915fbdfc3dfe214d1d963f09ce10080d2009965d..8b0160276361412081848cba60f665a8fa9d4256 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>lplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanpre.xml index 6b4db8288988cd69d7ddc9df3263b2042c703043..76c63525b24daba92baa52bc0148b58e67b7c55f 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>lplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplan.xml index f9a290f1e1f23fd252f04dd781732ddfb87b5c0a..436105ed21f3c1f994e7659715ddd672bd500173 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/bp-soplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanarchive.xml index 2e4fa013370d8a756124395e7080f1eca92eaf40..4cf8f523e7cee537e6e91f1e6ce0c27dc8ed4e5a 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/bp-bplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanpre.xml index 79df629764ad4495f24d22b9a3b645a09e6baece..22de647a36e3cba47b640bab03f3013a491e8ab1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/bplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/bp-soplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplan.xml index dc4ce70c68fdbfe4d63c5b0d37c7c67ae7daf6f8..898173ce5a94fab7a6e66aabfd7b52821f913a84 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/fp-lplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanarchive.xml index 0c312c05f14f7e089d4302a342c22b4aa68e4867..46bdbae1083e9f8e4a01fd5d7177a5bb955c3285 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/fp-fplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanpre.xml index 0973f8fe9c8dfd2c56dd428139dac9f724c36e91..0deb155b24a11c10431f3aacfd9f696b7b5dab59 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/fplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/fp-bplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplan.xml index 6863b6b2a5e244f6bdeb5b9b93607f4f168bc0f5..37b084bc372806ed177f32818fde5704a20d1ca9 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/lp-fplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanarchive.xml index d69b1a7de78a09120ba5504f60f471650bf69468..153bf099d808d6375495f22f02639034a7d507a6 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/lp-lplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanpre.xml index 5c1dc6c121f740b9876520bc98b8b42b296e62ad..7faf948af2097c49664a8e288ee7a141a14a6bbf 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/lplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/lp-fplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplan.xml index 9b0c06d2b336ee46d48befc6fbfa88d6b16d9300..da96be2e6f1ce04d4888e98ac3bf15e72dceb1b1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/rp-lplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanarchive.xml index 1e1dc1c9d88592911eb35ac3fd13694e6fd0d7d4..0fff6bd1cd2bde74d0065e03514f4c73c0860709 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/rp-lplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanpre.xml index 237f58712737ad4b51c68005e2bb865f1109f96b..f786b43d4ddf3ae52b11fb4c3a9278ba2a496428 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/rp-rplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplan.xml index e25a81bce620a8580fc143afa17fcc145d459e2f..5814c67fbe6570c7d8503791192c46cdc3efca21 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/so-soplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanarchive.xml index f294a665cc59acf855a126eb494844881175b3fe..4609a6617e240d7bf2644913400b18e42d56ccb7 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/so-soplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanpre.xml index 8205a411d36ef37fe3037947297c5478e1c8f7e1..21ec65b557a20d37072a9f63aaefcfd526d9aa45 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/planart-wms/soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>planart-wms/so-soplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplan.xml index 9cc02f1366fe0b125a841f58714a19c05b7fe931..7aaa61a1b443d7d49f6843f915b58f5bfdd9f8f1 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>rplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanarchive.xml index 49eb5dc2f99d6153a10d0c4561f96c3379c3e076..69713c2c641c129e7a0ae696899364ec9e57dfe3 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>rplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanpre.xml index 759439c2c23e011d293ae0719b02b0547ea75a6f..99db0fe80f593b3257ba7759902f10a449731bd7 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/rplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>rplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplan.xml index ef098fe340ebfc9ffdb0fcaa1d3ef72bed0a0da0..599d7cb15564dd3abd9f183e7f38462ace1b72c8 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>soplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanarchive.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanarchive.xml index 592c0f157e549b2a8efd0689933e662d5c6ca1bf..5c7f9e6a267cfa1ef87a884549ab1586e3bc62af 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanarchive.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanarchive.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>soplanarchive</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanpre.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanpre.xml index 97de30817a4b4f2948e5c539a09a007ad684a888..1722a5f7a108fd142444a1b74448073793c2e4c4 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanpre.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/soplanpre.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>soplanpre</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/bplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/bplan.xml index 200bcec6c5d672e08f483fece0b00b6e8ade791b..65619e93495fb16f6feee79cbfe455d33a500f6d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/bplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/bplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>bplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/fplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/fplan.xml index a2883d0f1abc04f9849969204a21a4c79b1dd78b..8b39d8d7ecb67e18aa4ea93f2199f5f3a9ab066d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/fplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/fplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>rplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/lplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/lplan.xml index 30bfe6fb55ed0b06b93d37be29bd47c9f4d9a286..ca3cedbec0fe8c191c3e1e93402218636a1c37b6 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/lplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/lplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>lplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/rplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/rplan.xml index c18dfe23c9d66f5985328a118ea602ce09b15740..93c66aed5e01decb786d12ddc2132d59973b8c9d 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/rplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/rplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>rplan</LayerStoreId> diff --git a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/soplan.xml b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/soplan.xml index f13426aff69fa6acce67678a8e9b0dd23fbf6cd2..02f51f7c0af7889be2b69cb07f6611a1ec7f8b39 100644 --- a/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/soplan.xml +++ b/xplan-webservices/xplan-webservices-workspaces/src/main/workspace/themes/validator-wms/memory/soplan.xml @@ -9,15 +9,15 @@ it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. - #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 02.11.2023, 10:41:35 + #L%/nDiese Datei wird automatisiert generiert! Aenderungen sollten nicht manuell vorgenommen werden! Datei wurde generiert am 15.02.2024, 07:55:32 --> <Themes xmlns="http://www.deegree.org/themes/standard" xmlns:d="http://www.deegree.org/metadata/description" xmlns:s="http://www.deegree.org/metadata/spatial"> <LayerStoreId>soplan</LayerStoreId>