diff --git a/src/main/java/de/landsh/opendata/csw2dcat/CswInterface.java b/src/main/java/de/landsh/opendata/csw2dcat/CswInterface.java
index c8433b4e15a10cd3c20c5873d33e91af3fc82420..d307145cf951eff3e4de947b92bb29156c4d3fb1 100644
--- a/src/main/java/de/landsh/opendata/csw2dcat/CswInterface.java
+++ b/src/main/java/de/landsh/opendata/csw2dcat/CswInterface.java
@@ -346,6 +346,61 @@ public class CswInterface {
     }
 
 
+    List<Element> findByParentIdentifier(String parentIdentifier) throws IOException, DocumentException {
+        final StringBuilder filter = new StringBuilder();
+
+        if (filterOpendata) {
+            filter.append("<ogc:And>");
+        }
+        filter.append("        <ogc:PropertyIsEqualTo>" +
+                        "          <ogc:PropertyName  xmlns:apiso=\"http://www.opengis.net/cat/apiso/1.0\">apiso:parentIdentifier</ogc:PropertyName>" +
+                        "          <ogc:Literal>")
+                .append(StringEscapeUtils.escapeXml11(parentIdentifier))
+                .append("</ogc:Literal>")
+                .append("        </ogc:PropertyIsEqualTo>\n");
+
+        if (filterOpendata) {
+            filter.append("<ogc:PropertyIsEqualTo>" +
+                    "<ogc:PropertyName xmlns:apiso=\"http://www.opengis.net/cat/apiso/1.0\">apiso:Subject</ogc:PropertyName>" +
+                    "<ogc:Literal>opendata</ogc:Literal>" +
+                    "</ogc:PropertyIsEqualTo>");
+            filter.append("</ogc:And>");
+        }
+
+        final String xmlRequest = "<csw:GetRecords xmlns:csw=\"http://www.opengis.net/cat/csw/2.0.2\" xmlns:ogc=\"http://www.opengis.net/ogc\"\n" +
+                "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:ows=\"http://www.opengis.net/ows\"\n" +
+                "xmlns:apiso=\"http://www.opengis.net/cat/apiso/1.0\" " +
+                "outputSchema=\"http://www.isotc211.org/2005/gmd\" outputFormat=\"application/xml\" version=\"2.0.2\" service=\"CSW\" resultType=\"results\"\n" +
+                "maxRecords=\"999\" xsi:schemaLocation=\"http://www.opengis.net/cat/csw/2.0.2 http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd\">\n" +
+                "  <csw:Query typeNames=\"csw:Record\">\n" +
+                "    <csw:ElementSetName>full</csw:ElementSetName>\n" +
+                "    <csw:Constraint version=\"1.1.0\">\n" +
+                "      <ogc:Filter>\n" +
+                filter +
+                "      </ogc:Filter>\n" +
+                "    </csw:Constraint>\n" +
+                "  </csw:Query>\n" +
+                "</csw:GetRecords>";
+
+        final HttpPost request = new HttpPost(url);
+        request.setHeader(HttpHeaders.CONTENT_TYPE, "text/xml");
+        request.setHeader("X-CSW2DCATBridge", "findByParentIdentifier");
+        if (StringUtils.isNotEmpty(authorization)) {
+            request.setHeader(HttpHeaders.AUTHORIZATION, authorization);
+        }
+        request.setEntity(new StringEntity(xmlRequest, StandardCharsets.UTF_8));
+
+        try (CloseableHttpResponse response = httpClient.execute(request)) {
+            final Document document = saxReader.read(response.getEntity().getContent());
+
+            if (document == null || document.getRootElement().elements("SearchResults").isEmpty()) {
+                return Collections.emptyList();
+            }
+
+            return document.getRootElement().element("SearchResults").elements();
+        }
+    }
+
     /**
      * Holds information about the results of a getRecords operation.
      */
diff --git a/src/main/java/de/landsh/opendata/csw2dcat/MDMetadata2Dataset.java b/src/main/java/de/landsh/opendata/csw2dcat/MDMetadata2Dataset.java
index 2da967c060663cebf0aa2eb917a0abba88253d8e..cfe20166451a7668e7b7804f5292f5a4ad76ce04 100644
--- a/src/main/java/de/landsh/opendata/csw2dcat/MDMetadata2Dataset.java
+++ b/src/main/java/de/landsh/opendata/csw2dcat/MDMetadata2Dataset.java
@@ -680,22 +680,25 @@ public class MDMetadata2Dataset {
         return dataService;
     }
 
-    Resource convertSeries(Element metadata) {
-        final Resource dataset;
+    Resource convertSeries(Element metadata) throws DocumentException, IOException {
+        final Resource series;
         final String id = getTextOrNull(metadata.selectSingleNode("gmd:fileIdentifier/gco:CharacterString"));
         if (id != null) {
-            dataset = model.createResource(settings.baseIRI + id);
-            dataset.addLiteral(Adms.identifier, id.trim());
-            dataset.addLiteral(DCTerms.identifier, id.trim());
+            series = model.createResource(settings.baseIRI + id);
+            series.addLiteral(Adms.identifier, id.trim());
+            series.addLiteral(DCTerms.identifier, id.trim());
         } else {
-            dataset = model.createResource();
+            series = model.createResource();
         }
 
-        dataset.addProperty(RDF.type, model.createResource("http://www.w3.org/ns/dcat#DatasetSeries"));
+        series.addProperty(RDF.type, model.createResource("http://www.w3.org/ns/dcat#DatasetSeries"));
 
-        convertCommonData(metadata, dataset);
+        convertCommonData(metadata, series);
 
-        return dataset;
+        //TODO not sure how Datasets in the DatasetSeries are linked
+        // List<Element> datasets = cswInterface.findByParentIdentifier( StringUtils.trim(id));
+
+        return series;
     }
 
     Resource convertDataset(Element metadata) throws DocumentException, IOException {
@@ -775,9 +778,9 @@ public class MDMetadata2Dataset {
 
     private void convertCommonData(Element metadata, Resource dataset) {
         final String id = getTextOrNull(metadata.selectSingleNode("gmd:fileIdentifier/gco:CharacterString"));
+        final String parentIdentifier = getTextOrNull(metadata.selectSingleNode("gmd:parentIdentifier/gco:CharacterString"));
         final String title = getTextOrNull(metadata.selectSingleNode("gmd:identificationInfo/*/gmd:citation/gmd:CI_Citation/gmd:title/gco:CharacterString"));
         if (title != null) {
-
             if (title.contains("#locale-eng:")) {
                 // In some source systems, German and English titles are strangely combined in one text.
                 String germanTitle = StringUtils.substringBefore(title, "#locale-eng:");
@@ -837,11 +840,15 @@ public class MDMetadata2Dataset {
             addThemes(dataset, topicCategories);
         }
 
-
         if (metadata.selectSingleNode("gmd:identificationInfo/*/gmd:resourceConstraints/gmd:MD_LegalConstraints/*/gmx:Anchor[@xlink:href='http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations']") != null) {
             dataset.addProperty(DCTerms.accessRights, model.createResource("http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations"));
         }
 
+        if (StringUtils.isNotEmpty(parentIdentifier)) {
+            // data resource is part of a DatasetSeries
+            dataset.addProperty(model.createProperty(DCAT.getURI() + "inSeries"), model.createResource(settings.baseIRI + parentIdentifier));
+        }
+
         // creation, publication, modification etc.
         final Map<String, Element> dates = collectDates(metadata);
         final Element dateStamp = metadata.element("dateStamp");
diff --git a/src/test/java/de/landsh/opendata/csw2dcat/MDMetadata2DatasetTests.java b/src/test/java/de/landsh/opendata/csw2dcat/MDMetadata2DatasetTests.java
index 67f34e209be7233cc3d0f5ea94cd63c5c991be7a..8310b9c40fee981183d3ae79ac07b80f3391d58a 100644
--- a/src/test/java/de/landsh/opendata/csw2dcat/MDMetadata2DatasetTests.java
+++ b/src/test/java/de/landsh/opendata/csw2dcat/MDMetadata2DatasetTests.java
@@ -33,6 +33,9 @@ public class MDMetadata2DatasetTests {
     private static final Resource FILE_TYPE_GML = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/GML");
 
     private static final Property PROPERTY_applicable_Legislation = ResourceFactory.createProperty("http://data.europa.eu/r5r/", "applicableLegislation");
+    private static final Property PROPERTY_inSeries = ResourceFactory.createProperty(DCAT.NS + "inSeries");
+    private static final Property RESOURCE_DatasetSeries = ResourceFactory.createProperty(DCAT.NS + "DatasetSeries");
+
     static Namespace NS_GMD = Namespace.get("gmd", "http://www.isotc211.org/2005/gmd");
     private final SAXReader saxReader = new SAXReader();
     private MDMetadata2Dataset service;
@@ -1278,7 +1281,7 @@ public class MDMetadata2DatasetTests {
 
         final Map<String, Resource> distributionMap = collectDistributions(result);
         assertEquals(2, distributionMap.size());
-        
+
         Resource distribution = distributionMap.get("https://opendata.schleswig-holstein.de/dataset/d501a7ab-a85e-4988-a98e-8f3ae3ab5df2/resource/1bcad7cd-9c94-4a06-bbbc-c7929bb37751/download/lsg.zip");
         assertEquals(FILE_TYPE_SHP, distribution.getProperty(DCTerms.format).getResource());
         assertEquals("Landschaftsschutzgebiete (1:25.000)", distribution.getProperty(DCTerms.title).getString());
@@ -1304,8 +1307,8 @@ public class MDMetadata2DatasetTests {
     }
 
     /**
-     *  Referencing the EU vocabulary for HVD categories as gmx:Anchor elements
-     *  (in accordance with the GDI-DE mapping rules of 2024-03-20 variant b)
+     * Referencing the EU vocabulary for HVD categories as gmx:Anchor elements
+     * (in accordance with the GDI-DE mapping rules of 2024-03-20 variant b)
      */
     @Test
     public void convert_highValueDataset_b() throws DocumentException, IOException {
@@ -1319,17 +1322,17 @@ public class MDMetadata2DatasetTests {
     }
 
     /**
-     *  In some source systems, German and English titles are strangely combined in one text.
+     * In some source systems, German and English titles are strangely combined in one text.
      */
     @Test
     public void convert_mixedGermanEnglishTitles() throws DocumentException, IOException {
         final Document inputDocument = saxReader.read(getClass().getResourceAsStream("/00729c12-e689-446d-83bd-dd8cfd0eeeb8.xml"));
         final Resource result = service.convert(inputDocument);
 
-        assertTrue(result.hasProperty( DCTerms.title, ResourceFactory.createLangLiteral(
-                "Robben im Schleswig-Holsteinischen Wattenmeer 1995", "de") ));
-        assertTrue(result.hasProperty( DCTerms.title, ResourceFactory.createLangLiteral(
-                "Seals in the Schleswig-Holstein Wadden Sea in 1995", "en") ));
+        assertTrue(result.hasProperty(DCTerms.title, ResourceFactory.createLangLiteral(
+                "Robben im Schleswig-Holsteinischen Wattenmeer 1995", "de")));
+        assertTrue(result.hasProperty(DCTerms.title, ResourceFactory.createLangLiteral(
+                "Seals in the Schleswig-Holstein Wadden Sea in 1995", "en")));
     }
 
     /**
@@ -1347,4 +1350,30 @@ public class MDMetadata2DatasetTests {
         assertEquals(FILE_TYPE_SHP, distribution.getProperty(DCTerms.format).getResource());
     }
 
+    /**
+     * Dataset is part of a DatasetSeries
+     */
+    @Test
+    public void convert_partOfSeries() throws DocumentException, IOException {
+        final Document inputDocument = saxReader.read(getClass().getResourceAsStream("/00729c12-e689-446d-83bd-dd8cfd0eeeb8.xml"));
+        final Resource result = service.convert(inputDocument);
+
+        assertTrue(result.hasProperty(PROPERTY_inSeries,
+                ResourceFactory.createResource("http://example.org/dataset/5d62f05e-29ca-4eff-9683-96eaaa5b1ba2")));
+    }
+
+    @Test
+    public void convert_series() throws DocumentException, IOException {
+        // prepare the mocked response from the CSW server
+        final Document document = saxReader.read(  getClass().getResourceAsStream("/csw_findByParentIdentifier.xml"));
+        List<Element> cswResults =  document.getRootElement().element("SearchResults").elements();
+        Mockito.when(cswInterface.findByParentIdentifier("7b510ce5-d4d5-48d0-867b-c80778cf453c")).thenReturn(cswResults);
+
+        final Document inputDocument = saxReader.read(getClass().getResourceAsStream("/7b510ce5-d4d5-48d0-867b-c80778cf453c.xml"));
+        final Resource result =service.convert(inputDocument);
+
+        assertTrue(result.hasProperty(RDF.type, RESOURCE_DatasetSeries));
+        //TODO not sure how Datasets in the DatasetSeries are linked
+    }
+
 }
diff --git a/src/test/resources/7b510ce5-d4d5-48d0-867b-c80778cf453c.xml b/src/test/resources/7b510ce5-d4d5-48d0-867b-c80778cf453c.xml
index 80c47182e7c434fbd19dc96463421d50bae31c97..f4e7ed2a5921f0b4873857bbb61955bde5547135 100644
--- a/src/test/resources/7b510ce5-d4d5-48d0-867b-c80778cf453c.xml
+++ b/src/test/resources/7b510ce5-d4d5-48d0-867b-c80778cf453c.xml
@@ -1,5 +1,4 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd">
+<?xml version="1.0" encoding="UTF-8"?><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd">
 	<gmd:fileIdentifier>
 		<gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString>
 	</gmd:fileIdentifier>
@@ -10,19 +9,53 @@
 		<gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/>
 	</gmd:characterSet>
 	<gmd:hierarchyLevel>
-		<gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode>
+		<gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="series">series</gmd:MD_ScopeCode>
 	</gmd:hierarchyLevel>
+	<gmd:hierarchyLevelName>
+		<gco:CharacterString>series</gco:CharacterString>
+	</gmd:hierarchyLevelName>
 	<gmd:contact>
 		<gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9">
+			<gmd:individualName>
+				<gco:CharacterString>H C Herr</gco:CharacterString>
+			</gmd:individualName>
 			<gmd:organisationName>
 				<gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString>
 			</gmd:organisationName>
+			<gmd:positionName>
+				<gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString>
+			</gmd:positionName>
 			<gmd:contactInfo>
 				<gmd:CI_Contact>
+					<gmd:phone>
+						<gmd:CI_Telephone>
+							<gmd:voice>
+								<gco:CharacterString>+49 (0) 04347 704-0</gco:CharacterString>
+							</gmd:voice>
+							<gmd:facsimile>
+								<gco:CharacterString>+49 (0) 04347 704-0</gco:CharacterString>
+							</gmd:facsimile>
+						</gmd:CI_Telephone>
+					</gmd:phone>
 					<gmd:address>
 						<gmd:CI_Address>
+							<gmd:deliveryPoint>
+								<gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString>
+							</gmd:deliveryPoint>
+							<gmd:city>
+								<gco:CharacterString>Flintbek</gco:CharacterString>
+							</gmd:city>
+							<gmd:administrativeArea>
+								<gco:CharacterString>Schleswig-Holstein</gco:CharacterString>
+							</gmd:administrativeArea>
+							<gmd:postalCode>
+								<gco:CharacterString>24220</gco:CharacterString>
+							</gmd:postalCode>
+							<gmd:country>
+								<gco:CharacterString>DEU</gco:CharacterString>
+							</gmd:country>
 							<gmd:electronicMailAddress>
-								<gco:CharacterString>test@lfu.landsh.de</gco:CharacterString>
+								<gco:CharacterString>info@lfu.landsh.de</gco:CharacterString>
 							</gmd:electronicMailAddress>
 						</gmd:CI_Address>
 					</gmd:address>
@@ -34,31 +67,14 @@
 		</gmd:CI_ResponsibleParty>
 	</gmd:contact>
 	<gmd:dateStamp>
-		<gco:Date>2023-07-06</gco:Date>
+		<gco:Date>2024-03-12</gco:Date>
 	</gmd:dateStamp>
 	<gmd:metadataStandardName>
-		<gco:CharacterString>ISO19115:2003; GDI-NOKIS</gco:CharacterString>
+		<gco:CharacterString>ISO19115</gco:CharacterString>
 	</gmd:metadataStandardName>
 	<gmd:metadataStandardVersion>
-		<gco:CharacterString>2003(E)/Cor.1:2006(E);1.0:2019</gco:CharacterString>
+		<gco:CharacterString>2003/Cor.1:2006</gco:CharacterString>
 	</gmd:metadataStandardVersion>
-	<gmd:spatialRepresentationInfo>
-		<gmd:MD_VectorSpatialRepresentation>
-			<gmd:topologyLevel>
-				<gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/>
-			</gmd:topologyLevel>
-			<gmd:geometricObjects>
-				<gmd:MD_GeometricObjects>
-					<gmd:geometricObjectType>
-						<gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/>
-					</gmd:geometricObjectType>
-					<gmd:geometricObjectCount>
-						<gco:Integer>2</gco:Integer>
-					</gmd:geometricObjectCount>
-				</gmd:MD_GeometricObjects>
-			</gmd:geometricObjects>
-		</gmd:MD_VectorSpatialRepresentation>
-	</gmd:spatialRepresentationInfo>
 	<gmd:referenceSystemInfo>
 		<gmd:MD_ReferenceSystem>
 			<gmd:referenceSystemIdentifier>
@@ -70,9 +86,8 @@
 			</gmd:referenceSystemIdentifier>
 		</gmd:MD_ReferenceSystem>
 	</gmd:referenceSystemInfo>
-	<gmd:metadataExtensionInfo xlink:href="https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"/>
 	<gmd:identificationInfo>
-		<gmd:MD_DataIdentification uuid="http://mdi-sh.org#36c6d41e-dbfb-4e87-8912-5fc7d4b7f29f">
+		<gmd:MD_DataIdentification uuid="https://mdi-sh.org#36c6d41e-dbfb-4e87-8912-5fc7d4b7f29f">
 			<gmd:citation>
 				<gmd:CI_Citation>
 					<gmd:title>
@@ -114,7 +129,7 @@
 					<gmd:identifier>
 						<gmd:MD_Identifier>
 							<gmd:code>
-								<gco:CharacterString>http://mdi-sh.org#36c6d41e-dbfb-4e87-8912-5fc7d4b7f29f</gco:CharacterString>
+								<gco:CharacterString>https://mdi-sh.org#36c6d41e-dbfb-4e87-8912-5fc7d4b7f29f</gco:CharacterString>
 							</gmd:code>
 						</gmd:MD_Identifier>
 					</gmd:identifier>
@@ -129,46 +144,68 @@
 			<gmd:status>
 				<gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing"/>
 			</gmd:status>
+			<gmd:pointOfContact>
+				<gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9">
+					<gmd:individualName>
+						<gco:CharacterString>H C Herr</gco:CharacterString>
+					</gmd:individualName>
+					<gmd:organisationName>
+						<gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString>
+					</gmd:organisationName>
+					<gmd:positionName>
+						<gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString>
+					</gmd:positionName>
+					<gmd:contactInfo>
+						<gmd:CI_Contact>
+							<gmd:phone>
+								<gmd:CI_Telephone>
+									<gmd:voice>
+										<gco:CharacterString>+49 (0) 04347 704-0</gco:CharacterString>
+									</gmd:voice>
+									<gmd:facsimile>
+										<gco:CharacterString>+49 (0) 04347 704-0</gco:CharacterString>
+									</gmd:facsimile>
+								</gmd:CI_Telephone>
+							</gmd:phone>
+							<gmd:address>
+								<gmd:CI_Address>
+									<gmd:deliveryPoint>
+										<gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString>
+									</gmd:deliveryPoint>
+									<gmd:city>
+										<gco:CharacterString>Flintbek</gco:CharacterString>
+									</gmd:city>
+									<gmd:administrativeArea>
+										<gco:CharacterString>Schleswig-Holstein</gco:CharacterString>
+									</gmd:administrativeArea>
+									<gmd:postalCode>
+										<gco:CharacterString>24220</gco:CharacterString>
+									</gmd:postalCode>
+									<gmd:country>
+										<gco:CharacterString>DEU</gco:CharacterString>
+									</gmd:country>
+									<gmd:electronicMailAddress>
+										<gco:CharacterString>info@lfu.landsh.de</gco:CharacterString>
+									</gmd:electronicMailAddress>
+								</gmd:CI_Address>
+							</gmd:address>
+						</gmd:CI_Contact>
+					</gmd:contactInfo>
+					<gmd:role>
+						<gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/>
+					</gmd:role>
+				</gmd:CI_ResponsibleParty>
+			</gmd:pointOfContact>
 			<gmd:resourceMaintenance>
 				<gmd:MD_MaintenanceInformation>
 					<gmd:maintenanceAndUpdateFrequency>
 						<gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/>
 					</gmd:maintenanceAndUpdateFrequency>
 					<gmd:updateScope>
-						<gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/>
+						<gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="series"/>
 					</gmd:updateScope>
 				</gmd:MD_MaintenanceInformation>
 			</gmd:resourceMaintenance>
-			<gmd:descriptiveKeywords>
-				<gmd:MD_Keywords>
-					<gmd:keyword>
-						<gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString>
-					</gmd:keyword>
-					<gmd:keyword>
-						<gco:CharacterString>Umweltüberwachung</gco:CharacterString>
-					</gmd:keyword>
-					<gmd:type>
-						<gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/>
-					</gmd:type>
-					<gmd:thesaurusName>
-						<gmd:CI_Citation>
-							<gmd:title>
-								<gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString>
-							</gmd:title>
-							<gmd:date>
-								<gmd:CI_Date>
-									<gmd:date>
-										<gco:Date>2008-06-01</gco:Date>
-									</gmd:date>
-									<gmd:dateType>
-										<gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode>
-									</gmd:dateType>
-								</gmd:CI_Date>
-							</gmd:date>
-						</gmd:CI_Citation>
-					</gmd:thesaurusName>
-				</gmd:MD_Keywords>
-			</gmd:descriptiveKeywords>
 			<gmd:descriptiveKeywords>
 				<gmd:MD_Keywords>
 					<gmd:keyword>
@@ -230,47 +267,6 @@
 					</gmd:keyword>
 				</gmd:MD_Keywords>
 			</gmd:descriptiveKeywords>
-			<gmd:descriptiveKeywords>
-				<gmd:MD_Keywords>
-					<gmd:keyword>
-						<gco:CharacterString>opendata</gco:CharacterString>
-					</gmd:keyword>
-				</gmd:MD_Keywords>
-			</gmd:descriptiveKeywords>
-			<gmd:descriptiveKeywords>
-				<gmd:MD_Keywords>
-					<gmd:keyword>
-						<gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor>
-					</gmd:keyword>
-					<gmd:thesaurusName>
-						<gmd:CI_Citation>
-							<gmd:title>
-								<gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor>
-							</gmd:title>
-							<gmd:date>
-								<gmd:CI_Date>
-									<gmd:date>
-										<gco:Date>2019-05-22</gco:Date>
-									</gmd:date>
-									<gmd:dateType>
-										<gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode>
-									</gmd:dateType>
-								</gmd:CI_Date>
-							</gmd:date>
-						</gmd:CI_Citation>
-					</gmd:thesaurusName>
-				</gmd:MD_Keywords>
-			</gmd:descriptiveKeywords>
-			<gmd:descriptiveKeywords>
-				<gmd:MD_Keywords>
-					<gmd:keyword>
-						<gco:CharacterString>ENVI</gco:CharacterString>
-					</gmd:keyword>
-					<gmd:type>
-						<gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/>
-					</gmd:type>
-				</gmd:MD_Keywords>
-			</gmd:descriptiveKeywords>
 			<gmd:resourceConstraints>
 				<gmd:MD_LegalConstraints>
 					<gmd:useLimitation>
@@ -294,6 +290,16 @@
 					</gmd:otherConstraints>
 				</gmd:MD_LegalConstraints>
 			</gmd:resourceConstraints>
+			<gmd:resourceConstraints>
+				<gmd:MD_LegalConstraints>
+					<gmd:accessConstraints>
+						<gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode>
+					</gmd:accessConstraints>
+					<gmd:otherConstraints>
+						<gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor>
+					</gmd:otherConstraints>
+				</gmd:MD_LegalConstraints>
+			</gmd:resourceConstraints>
 			<gmd:spatialRepresentationType>
 				<gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="textTable"/>
 			</gmd:spatialRepresentationType>
@@ -347,7 +353,7 @@
 					<gmd:temporalElement>
 						<gmd:EX_TemporalExtent>
 							<gmd:extent>
-								<gml:TimePeriod gml:id="timePeriod_ID_a94cb592-f1f9-46d6-863d-2c5f6b0c1571">
+								<gml:TimePeriod gml:id="timePeriod_ID_78022492-483c-4c09-984c-16963e3960d7">
 									<gml:beginPosition>2002-04-01T00:00:00.000+02:00</gml:beginPosition>
 									<gml:endPosition>2023-11-30T00:00:00.000+01:00</gml:endPosition>
 								</gml:TimePeriod>
@@ -419,27 +425,10 @@
 					<gmd:onLine>
 						<gmd:CI_OnlineResource>
 							<gmd:linkage>
-								<gmd:URL>http://mdi-sh.org</gmd:URL>
-							</gmd:linkage>
-							<gmd:name>
-								<gco:CharacterString>http://mdi-sh.org</gco:CharacterString>
-							</gmd:name>
-							<gmd:function>
-								<gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode>
-							</gmd:function>
-						</gmd:CI_OnlineResource>
-					</gmd:onLine>
-				</gmd:MD_DigitalTransferOptions>
-			</gmd:transferOptions>
-			<gmd:transferOptions>
-				<gmd:MD_DigitalTransferOptions>
-					<gmd:onLine>
-						<gmd:CI_OnlineResource>
-							<gmd:linkage>
-								<gmd:URL>http://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL>
+								<gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL>
 							</gmd:linkage>
 							<gmd:name>
-								<gco:CharacterString>http://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString>
+								<gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString>
 							</gmd:name>
 							<gmd:description>
 								<gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString>
@@ -456,10 +445,10 @@
 					<gmd:onLine>
 						<gmd:CI_OnlineResource>
 							<gmd:linkage>
-								<gmd:URL>http://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?</gmd:URL>
+								<gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?</gmd:URL>
 							</gmd:linkage>
 							<gmd:name>
-								<gco:CharacterString>http://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?</gco:CharacterString>
+								<gco:CharacterString>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?</gco:CharacterString>
 							</gmd:name>
 							<gmd:description>
 								<gco:CharacterString>GetCapabilities</gco:CharacterString>
diff --git a/src/test/resources/csw_findByParentIdentifier.xml b/src/test/resources/csw_findByParentIdentifier.xml
new file mode 100644
index 0000000000000000000000000000000000000000..492d6c58a6e2c49137e97000d29edc58869bf129
--- /dev/null
+++ b/src/test/resources/csw_findByParentIdentifier.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<csw:GetRecordsResponse xmlns:csw="http://www.opengis.net/cat/csw/2.0.2"><csw:SearchStatus timestamp="2024-07-29T11:19:42"/><csw:SearchResults elementSet="full" nextRecord="0" numberOfRecordsMatched="15" numberOfRecordsReturned="15" outputSchema="http://www.isotc211.org/2005/gmd"><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>71204a93-78ce-49cf-a2f5-9f8846bc6ce7</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#2622ec8b-a92a-4323-b11d-aa8af06f6264"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Median Müllteile 2012-2017</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Median number of beach litter items 2012-2017</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#2622ec8b-a92a-4323-b11d-aa8af06f6264</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Median der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_c98ce903-2135-4619-91b4-efffa1fd61ab"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>WFS: Strandmüllmonitoring (sh-llur)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>WMS: Strandmüllmonitoring (sh-llur)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>1079cf62-1cee-4589-98e1-85ff06d58e28</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service">service</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:hierarchyLevelName><gco:CharacterString>service</gco:CharacterString></gmd:hierarchyLevelName><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19119</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2005/PDAM 1</gco:CharacterString></gmd:metadataStandardVersion><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><srv:SV_ServiceIdentification uuid="http://portalu.de/igc/1079cf62-1cee-4589-98e1-85ff06d58e28"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>WFS: Strandmüllmonitoring (sh-llur)</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Beach litter</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-22T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Download-Dienst für aggregierte Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring an der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Das Monitoring an der Geltinger Birk wurde von der Integrierten Station Geltinger Birk durchgeführt. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Datenbereitstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/81994d88-f973-44e6-a8fd-245875998a4e/WMS_D10.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>infoFeatureAccessService</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>infoCatalogueService</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>Service Classification, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Beach litter</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSFD</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><srv:serviceType><gco:LocalName>download</gco:LocalName></srv:serviceType><srv:serviceTypeVersion><gco:CharacterString>OGC:WFS 1.1.0</gco:CharacterString></srv:serviceTypeVersion><srv:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>11.0</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.17</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>54.4</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>54.53</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_86ed967b-df73-42ee-9715-8a0b74db963c"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></srv:extent><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc/1079cf62-1cee-4589-98e1-85ff06d58e28</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:couplingType><srv:SV_CouplingType codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#SV_CouplingType" codeListValue="tight"/></srv:couplingType><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:operatesOn uuidref="71204a93-78ce-49cf-a2f5-9f8846bc6ce7" xlink:href="https://mdi-sh.org#2622ec8b-a92a-4323-b11d-aa8af06f6264"/></srv:SV_ServiceIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name gco:nilReason="unknown"/><gmd:version gco:nilReason="unknown"/></gmd:MD_Format></gmd:distributionFormat><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities-Aufruf des WFS-Dienstes</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#af5b37ab-8b8c-429f-ac24-281935a91e6e</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>Dienst "WFS: Strandmüllmonitoring (sh-llur)" (GetCapabilities)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-18</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report></gmd:DQ_DataQuality></gmd:dataQualityInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:lineage><gmd:LI_Lineage><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>81994d88-f973-44e6-a8fd-245875998a4e</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service">service</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:hierarchyLevelName><gco:CharacterString>service</gco:CharacterString></gmd:hierarchyLevelName><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-07-07</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19119</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2005/PDAM 1</gco:CharacterString></gmd:metadataStandardVersion><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><srv:SV_ServiceIdentification uuid="http://portalu.de/igc/81994d88-f973-44e6-a8fd-245875998a4e"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>WMS: Strandmüllmonitoring (sh-llur)</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Beach litter</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-03-04T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Darstellungs-Dienst für aggregierte Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring an der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Das Monitoring an der Geltinger Birk wurde von der Integrierten Station Geltinger Birk durchgeführt. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="onGoing"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="9b45e0c6-05bc-449a-970a-6e01a92f87b7"><gmd:individualName><gco:CharacterString>Krause, Stefan, Herr Dr.</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Dezernent 45</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 4347 704-407</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 4347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>stefan.krause@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/81994d88-f973-44e6-a8fd-245875998a4e/WMS_D10.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>humanGeographicViewer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>infoCatalogueService</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>Service Classification, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Beach litter</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSFD</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><srv:serviceType><gco:LocalName>view</gco:LocalName></srv:serviceType><srv:serviceTypeVersion><gco:CharacterString>OGC:WMS 1.3.0</gco:CharacterString></srv:serviceTypeVersion><srv:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>11.0</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.17</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>54.4</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>54.53</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_9ae9e338-ba06-4899-89be-ad025b534f12"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-12-31T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></srv:extent><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc/81994d88-f973-44e6-a8fd-245875998a4e</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:couplingType><srv:SV_CouplingType codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#SV_CouplingType" codeListValue="mixed"/></srv:couplingType><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:operatesOn uuidref="71204a93-78ce-49cf-a2f5-9f8846bc6ce7" xlink:href="https://mdi-sh.org#2622ec8b-a92a-4323-b11d-aa8af06f6264"/></srv:SV_ServiceIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0, 1.3.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wfs&amp;version=1.1.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities-Aufruf des WMS-Dienstes</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#aa26ea7a-4dae-4d7d-b5e7-94618a75917e</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#b7d82442-6bd0-46e5-aa79-785fca7746ff</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#af5b37ab-8b8c-429f-ac24-281935a91e6e</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#801adedb-3b8a-4df8-87e2-c3e9ee5087e7</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#da12ebb7-593e-44d5-83b4-bcc6d5c1a22d</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org#49a6dbbb-3b2e-47f4-bc8e-daf5d78145aa</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>operates on</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>Dienst "WMS: Strandmüllmonitoring (sh-llur)" (GetCapabilities)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2015-11-09</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report></gmd:DQ_DataQuality></gmd:dataQualityInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:lineage><gmd:LI_Lineage><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>c95069e2-0d5e-49e9-841d-ff66f4a680b7</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>7</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#49a6dbbb-3b2e-47f4-bc8e-daf5d78145aa"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2018</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2018</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#49a6dbbb-3b2e-47f4-bc8e-daf5d78145aa</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Das Monitoring an der Geltinger Birk wurde von der Integrierten Station Geltinger Birk durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_5decb09b-4172-48ce-b10d-5ea7d5d2d201"><gml:beginPosition>2017-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>40b5e84b-d6dc-4bd3-b8ad-85657fac802d</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#da12ebb7-593e-44d5-83b4-bcc6d5c1a22d"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2017</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2017</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#da12ebb7-593e-44d5-83b4-bcc6d5c1a22d</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_f80e7ba8-2d66-4018-9a9f-bf566f960c52"><gml:beginPosition>2016-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2017-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>c63a488d-05db-4e54-a45b-d03e8f55778e</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service">service</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:hierarchyLevelName><gco:CharacterString>service</gco:CharacterString></gmd:hierarchyLevelName><gmd:contact><gmd:CI_ResponsibleParty uuid="8ac62792-18cc-8743-0119-57923bb80004"><gmd:individualName><gco:CharacterString>Jörn Kohlus</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Geodaten, Fernerkundung, Datennetzwerke</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0)4861 616-46</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0)4861 616-69</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>joern.kohlus@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address><gmd:onlineResource><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>http://www.wattenmeer-nationalparke.de/sh</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></gmd:onlineResource><gmd:hoursOfService><gco:CharacterString>Mo-Do 9:00-12:00 u. 14:00-16:00; Fr 9:00-12:00</gco:CharacterString></gmd:hoursOfService></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2024-02-12</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19119</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2005/PDAM 1</gco:CharacterString></gmd:metadataStandardVersion><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><srv:SV_ServiceIdentification uuid="http://portalu.de/igc_2/c63a488d-05db-4e54-a45b-d03e8f55778e"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>(WFS) - Strandmüllmonitoring an der deutschen Nordseeküste (LKN.SH - NPV)</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Strandmüllmonitoring: MSRL-Deskriptor D10 - Abfälle im Meer</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-06-20T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-06-20T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2023-10-10T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Download-Dienst der zusammengeführte Daten des Strandmüllmonitorings der schleswig-holsteinischen, hamburgischen und niedersächsischen Nordseeküste. Das Strandmüllmonitoring erfolgt nach der OSPAR Beach Litter Guideline (2010). Es werden dabei bei bis zu 4 Erfassungen pro Monitoringjahr alle Müllteile auf vorgegebenen 100m-Transekten erfasst. Ein Monitoringjahr umfasst alle Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres.
+Bei den hier bereitgestellten Daten handelt es sich sowohl um die geprüfte Rohdaten (Layer:Strandmüllmonitoring (MDI_MM_BL_WFS) als auch um aggregierte Daten:
+Mittlere Anzahl Müllteile 2012-2017 (BL_ges_1217),
+Mittlere Anzahl Müllteile 2018 (BL_ges_2018),
+Mittlerer Anteil Plastik 2012-2017 (BL_Pla_1217),
+Median Müllteile 2012-2017 (BL_MED_ges_1217). 
+Weitere Informationen: https://www.ospar.org/work-areas/eiha/marine-litter/assessment-of-marine-litter</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>MSRL-Bewertung, Darstellung, Download</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="planned"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="03a5391b-4ec2-45a3-b455-8fe78d82f5cf"><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Geodaten, Fernerkundung, Datennetzwerke</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>048616160</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>0486161669</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>poststelle@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address><gmd:onlineResource><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>http://www.wattenmeer-nationalparke.de/sh</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></gmd:onlineResource><gmd:hoursOfService><gco:CharacterString>Mo-Do 9:00-12:00 u. 14:00-16:00; Fr 9:00-12:00</gco:CharacterString></gmd:hoursOfService></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="resourceProvider"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="4ec258d7-f838-4824-8970-1d99c79e5696"><gmd:individualName><gco:CharacterString>Bettina Mendel</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:contactInfo><gmd:CI_Contact><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>Bettina.Mendel@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>https://s-h.nokis.org/ingrid_graphics/c63a488d-05db-4e54-a45b-d03e8f55778e/Stationen_Strandm%C3%BCll.png</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>Stationen des Strandmüllmonitorings</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>infoFeatureAccessService</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>Service Classification, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Umwelt und Klima</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString/></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>inspireidentifiziert</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LKN SH Nationalparkverwaltung</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LKN SH Nationalparkverwaltung"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><srv:serviceType><gco:LocalName>download</gco:LocalName></srv:serviceType><srv:serviceTypeVersion><gco:CharacterString>OGC:WFS 2.0</gco:CharacterString></srv:serviceTypeVersion><srv:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>6.93</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>8.45</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.67</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>54.8</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Nordsee</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>6.367854</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>9.010586</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.37165</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.102917</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_dd4332aa-f8e2-4cfb-acdb-43374cb7ec00"><gml:beginPosition>2012-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2017-12-31T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></srv:extent><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/c63a488d-05db-4e54-a45b-d03e8f55778e</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>DescribeFeatureType</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/c63a488d-05db-4e54-a45b-d03e8f55778e</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetFeature</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/c63a488d-05db-4e54-a45b-d03e8f55778e</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:couplingType><srv:SV_CouplingType codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#SV_CouplingType" codeListValue="mixed"/></srv:couplingType><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>DescribeFeatureType</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetFeature</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:operatesOn uuidref="be826fe5-b364-4f56-88ae-65dedfd9a3f3" xlink:href="https://mdi-sh.org#92e64bb3-7410-4024-b829-6cc5be000f76"/></srv:SV_ServiceIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0 2.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=MDI_MM_BL_WFS</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>Download (shp): Strandmüllmonitoring, bearb. Rohdaten 2012-2017</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>Anzahl der gefundenen Müllteile pro Erfassungsdatum, bildet Basis für aggr. Daten für Monitoringzeitraum</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>Download (shp): Strandmüllmonitoring - aggregierte Basistabelle für mittlere Anzahlen</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>aggregierte Basistabelle liefert Daten für verschd. Layer wie z.B. für Mittlere Anteil Plastik 2012-2017</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=2.0.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>WFS - für GIS mit Datendownload: Strandmüllmonitoring</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>Information WFS: GetCapabilities (2.0.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetFeature&amp;outputFormat=CSV&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>CSV</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>Download (csv): Strandmüllmonitoring - aggregierte Basistabelle für mittlere Anzahlen</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>aggregierte Basistabelle liefert Daten für verschd. Layer wie z.B. Mittlerer Anteil Plastik 2012-2017</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=MDI_MM_BL_WFS</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>CSV</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>Download (csv): Strandmüllmonitoring, bearb. Rohdaten 2012-2017, 2018</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>Anzahl der gefundenen Müllteile pro Erfassungsdatum, bildet Basis für aggr. Daten für Monitoringzeitraum</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/ows?service=wfs&amp;version=2.0.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>Dienst "(WFS) - Strandmüllmonitoring an der deutschen Nordseeküste (LKN.SH - NPV)" (GetCapabilities)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 976/2009 DER KOMMISSION vom 19. Oktober 2009 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Netzdienste</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2009-10-20</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>true</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>true</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report></gmd:DQ_DataQuality></gmd:dataQualityInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:lineage><gmd:LI_Lineage><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl, der Median von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>0c8de6e9-e051-433e-b135-01ea8176e811</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#b7d82442-6bd0-46e5-aa79-785fca7746ff"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlerer Anteil Plastik 2012-2017</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average percentage of plastic 2012-2017</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#b7d82442-6bd0-46e5-aa79-785fca7746ff</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Festgestellter Plastikanteil beim Strandmüllmonitoring an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Der angegebene Plastikanteil ergibt sich aus den gemittelten Plastikfunden auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/0c8de6e9-e051-433e-b135-01ea8176e811/Plastikanteil.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_47ec47bc-352d-4c6c-bb56-8a0c1e0a26e9"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>a6cf5d45-3b20-4415-822b-13135f73d7c4</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#801adedb-3b8a-4df8-87e2-c3e9ee5087e7"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2016</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2016</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#801adedb-3b8a-4df8-87e2-c3e9ee5087e7</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Nordsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_96478e4b-899b-4d39-99bf-9585e9f2c374"><gml:beginPosition>2015-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2016-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>ec8f5fc1-f444-4385-beae-d4f6d74b6886</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#aa26ea7a-4dae-4d7d-b5e7-94618a75917e"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2012-2017</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2012-2017</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#aa26ea7a-4dae-4d7d-b5e7-94618a75917e</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_41436bff-f8f2-42cf-9d59-287924d1f638"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2018-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>ef52844a-bede-4c66-adce-034cbc969294</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#5a2e4178-39f0-467d-91c7-b344e8cd556c"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2011</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2011</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#5a2e4178-39f0-467d-91c7-b344e8cd556c</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_a86add85-a11e-4798-ad9c-4e746068527f"><gml:beginPosition>2011-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2011-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>515e05d2-6e94-498b-b1e4-ce85519d5f6b</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#f4cba2cd-0b82-4d3d-9b19-b77d12c364e6"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2013</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2013</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#f4cba2cd-0b82-4d3d-9b19-b77d12c364e6</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_1e1079fc-8751-4eef-a571-48cd7e34fc4f"><gml:beginPosition>2012-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2013-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>c95616e2-459f-41d9-a9f6-a1fe95d4792f</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#f877a4b4-9fa6-4db6-a857-a0c30f75e23d"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2012</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2012</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#f877a4b4-9fa6-4db6-a857-a0c30f75e23d</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_54eb9614-7a08-47d0-ba31-eb7414a325c6"><gml:beginPosition>2011-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2012-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>e081bd84-d786-4d23-a0db-229a35bd3ff5</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#b3bb4ea0-928a-4b84-aae2-06ebd7e1234c"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2015</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2015</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#b3bb4ea0-928a-4b84-aae2-06ebd7e1234c</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_4379c6c6-ddfe-4b08-ac3e-0e18ed30eb02"><gml:beginPosition>2014-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2015-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>F57F829B-FF49-4C2B-9F2E-99C33CEC3EF3</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service">service</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:hierarchyLevelName><gco:CharacterString>service</gco:CharacterString></gmd:hierarchyLevelName><gmd:contact><gmd:CI_ResponsibleParty uuid="8ac62792-18cc-8743-0119-57923bb80004"><gmd:individualName><gco:CharacterString>Jörn Kohlus</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Geodaten, Fernerkundung, Datennetzwerke</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0)4861 616-46</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0)4861 616-69</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>joern.kohlus@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address><gmd:onlineResource><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>http://www.wattenmeer-nationalparke.de/sh</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></gmd:onlineResource><gmd:hoursOfService><gco:CharacterString>Mo-Do 9:00-12:00 u. 14:00-16:00; Fr 9:00-12:00</gco:CharacterString></gmd:hoursOfService></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-11-24</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19119</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2005/PDAM 1</gco:CharacterString></gmd:metadataStandardVersion><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><srv:SV_ServiceIdentification uuid="http://portalu.de/igc_2/F57F829B-FF49-4C2B-9F2E-99C33CEC3EF3"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>(WMS) - Strandmüllmonitoring an der deutschen Nordseeküste (LKN.SH - NPV)</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Strandmüllmonitoring: MSRL-Deskriptor D10 - Abfälle im Meer</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-06-20T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-06-20T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2023-10-10T00:00:00.000+02:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Darstellungs-Dienst der zusammengeführte Daten des Strandmüllmonitorings der schleswig-holsteinischen, hamburgischen und niedersächsischen Nordseeküste. Das Strandmüllmonitoring erfolgt nach der OSPAR Beach Litter Guideline (2010). Es werden dabei bei bis zu 4 Erfassungen pro Monitoringjahr alle Müllteile auf vorgegebenen 100m-Transekten erfasst. Ein Monitoringjahr umfasst alle Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres.
+Bei den hier bereitgestellten Daten handelt es sich sowohl um die geprüfte Rohdaten (Layer:Strandmüllmonitoring (MDI_MM_BL_WFS) als auch um aggregierte Daten:
+Mittlere Anzahl Müllteile 2012-2017 (BL_ges_1217),
+Mittlere Anzahl Müllteile 2018 (BL_ges_2018),
+Mittlerer Anteil Plastik 2012-2017 (BL_Pla_1217),
+Median Müllteile 2012-2017 (BL_MED_ges_1217). 
+Weitere Informationen: https://www.ospar.org/work-areas/eiha/marine-litter/assessment-of-marine-litter</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>MSRL-Bewertung, Darstellung, Download</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="planned"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="03a5391b-4ec2-45a3-b455-8fe78d82f5cf"><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Geodaten, Fernerkundung, Datennetzwerke</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>048616160</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>0486161669</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>poststelle@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address><gmd:onlineResource><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>http://www.wattenmeer-nationalparke.de/sh</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></gmd:onlineResource><gmd:hoursOfService><gco:CharacterString>Mo-Do 9:00-12:00 u. 14:00-16:00; Fr 9:00-12:00</gco:CharacterString></gmd:hoursOfService></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="4ec258d7-f838-4824-8970-1d99c79e5696"><gmd:individualName><gco:CharacterString>Bettina Mendel</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein</gco:CharacterString></gmd:organisationName><gmd:contactInfo><gmd:CI_Contact><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Schlossgarten 1</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Tönning</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>25832</gco:CharacterString></gmd:postalCode><gmd:electronicMailAddress><gco:CharacterString>Bettina.Mendel@lkn.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>https://s-h.nokis.org/ingrid_graphics/c63a488d-05db-4e54-a45b-d03e8f55778e/Stationen_Strandm%C3%BCll.png</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>Stationen des Strandmüllmonitorings</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>infoMapAccessService</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>Service Classification, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Umwelt und Klima</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString/></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>inspireidentifiziert</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LKN SH Nationalparkverwaltung</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LKN SH Nationalparkverwaltung"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><srv:serviceType><gco:LocalName>view</gco:LocalName></srv:serviceType><srv:serviceTypeVersion><gco:CharacterString>OGC:WMS 1.3.0</gco:CharacterString></srv:serviceTypeVersion><srv:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>6.93</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>8.45</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.67</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>54.8</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_4a3620e0-bce2-493e-93f9-606b38031ad2"><gml:beginPosition>2012-01-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2017-12-31T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></srv:extent><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/F57F829B-FF49-4C2B-9F2E-99C33CEC3EF3</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetMap</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/F57F829B-FF49-4C2B-9F2E-99C33CEC3EF3</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:coupledResource><srv:SV_CoupledResource><srv:operationName><gco:CharacterString>GetFeatureInfo</gco:CharacterString></srv:operationName><srv:identifier><gco:CharacterString>http://portalu.de/igc_2/F57F829B-FF49-4C2B-9F2E-99C33CEC3EF3</gco:CharacterString></srv:identifier></srv:SV_CoupledResource></srv:coupledResource><srv:couplingType><srv:SV_CouplingType codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#SV_CouplingType" codeListValue="mixed"/></srv:couplingType><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetCapabilities</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetMap</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:containsOperations><srv:SV_OperationMetadata><srv:operationName><gco:CharacterString>GetFeatureInfo</gco:CharacterString></srv:operationName><srv:DCP><srv:DCPList codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CSW_DCPCodeType" codeListValue="WebServices"/></srv:DCP><srv:connectPoint><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage></gmd:CI_OnlineResource></srv:connectPoint></srv:SV_OperationMetadata></srv:containsOperations><srv:operatesOn uuidref="be826fe5-b364-4f56-88ae-65dedfd9a3f3" xlink:href="https://mdi-sh.org#92e64bb3-7410-4024-b829-6cc5be000f76"/></srv:SV_ServiceIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0 2.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>WMS - zur Darstellung in GIS: Strandmüllmonitoring</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=2.0.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>WFS - für GIS mit Datendownload: Strandmüllmonitoring</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>Information WFS: GetCapabilities (2.0.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=2.0.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:applicationProfile><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:applicationProfile><gmd:name><gco:CharacterString>WFS - für GIS mit Datendownload: Strandmüllmonitoring</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_lkn/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>Dienst "(WMS) - Strandmüllmonitoring an der deutschen Nordseeküste (LKN.SH - NPV)" (GetCapabilities)</gco:CharacterString></gmd:name></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 976/2009 DER KOMMISSION vom 19. Oktober 2009 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Netzdienste</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2009-10-20</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>true</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>true</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report></gmd:DQ_DataQuality></gmd:dataQualityInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="service"/></gmd:level><gmd:levelDescription><gmd:MD_ScopeDescription><gmd:other><gco:CharacterString>service</gco:CharacterString></gmd:other></gmd:MD_ScopeDescription></gmd:levelDescription></gmd:DQ_Scope></gmd:scope><gmd:lineage><gmd:LI_Lineage><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl, der Median von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata><gmd:MD_Metadata xmlns:gmd="http://www.isotc211.org/2005/gmd" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:gmx="http://www.isotc211.org/2005/gmx" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:igctx="https://www.ingrid-oss.eu/schemas/igctx" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.isotc211.org/2005/gmd http://repository.gdi-de.org/schemas/geonetwork/2020-12-11/csw/2.0.2/profiles/apiso/1.0.1/apiso.xsd https://www.ingrid-oss.eu/schemas/igctx https://www.ingrid-oss.eu/schemas/igctx/igctx.xsd"><gmd:fileIdentifier><gco:CharacterString>c6716a2e-8573-492b-91cb-0d144e6daef3</gco:CharacterString></gmd:fileIdentifier><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:characterSet><gmd:MD_CharacterSetCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode" codeListValue="utf8"/></gmd:characterSet><gmd:parentIdentifier><gco:CharacterString>7b510ce5-d4d5-48d0-867b-c80778cf453c</gco:CharacterString></gmd:parentIdentifier><gmd:hierarchyLevel><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset">dataset</gmd:MD_ScopeCode></gmd:hierarchyLevel><gmd:contact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:contact><gmd:dateStamp><gco:Date>2023-09-29</gco:Date></gmd:dateStamp><gmd:metadataStandardName><gco:CharacterString>ISO19115</gco:CharacterString></gmd:metadataStandardName><gmd:metadataStandardVersion><gco:CharacterString>2003/Cor.1:2006</gco:CharacterString></gmd:metadataStandardVersion><gmd:spatialRepresentationInfo><gmd:MD_VectorSpatialRepresentation><gmd:topologyLevel><gmd:MD_TopologyLevelCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode" codeListValue="geometryOnly"/></gmd:topologyLevel><gmd:geometricObjects><gmd:MD_GeometricObjects><gmd:geometricObjectType><gmd:MD_GeometricObjectTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode" codeListValue="point"/></gmd:geometricObjectType><gmd:geometricObjectCount><gco:Integer>3</gco:Integer></gmd:geometricObjectCount></gmd:MD_GeometricObjects></gmd:geometricObjects></gmd:MD_VectorSpatialRepresentation></gmd:spatialRepresentationInfo><gmd:referenceSystemInfo><gmd:MD_ReferenceSystem><gmd:referenceSystemIdentifier><gmd:RS_Identifier><gmd:code><gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4326">EPSG 4326: WGS 84 / geographisch</gmx:Anchor></gmd:code></gmd:RS_Identifier></gmd:referenceSystemIdentifier></gmd:MD_ReferenceSystem></gmd:referenceSystemInfo><gmd:identificationInfo><gmd:MD_DataIdentification uuid="https://mdi-sh.org#af5b37ab-8b8c-429f-ac24-281935a91e6e"><gmd:citation><gmd:CI_Citation><gmd:title><gco:CharacterString>Mittlere Anzahl Müllteile 2014</gco:CharacterString></gmd:title><gmd:alternateTitle><gco:CharacterString>Average number of beach litter items 2014</gco:CharacterString></gmd:alternateTitle><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="creation"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:date><gmd:CI_Date><gmd:date><gco:DateTime>2019-02-15T00:00:00.000+01:00</gco:DateTime></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="revision"/></gmd:dateType></gmd:CI_Date></gmd:date><gmd:identifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>https://mdi-sh.org#af5b37ab-8b8c-429f-ac24-281935a91e6e</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:identifier></gmd:CI_Citation></gmd:citation><gmd:abstract><gco:CharacterString>Daten des Strandmüllmonitorings an der schleswig-holsteinischen Ostseeküste. Das Monitoring entlang der Küste Fehmarns wurde vom NABU organisiert und mit Hilfe von freiwilligen Helfern durchgeführt. Die gezeigte Anzahl an Müllteilen ergibt sich aus dem Mittelwert der erfassten Müllteile auf 100m-Transekten in dem genannten Zeitraum. Es werden bis zu 4 Erfassungen pro Monitoringjahr durchgeführt, wobei das Monitoringjahr die Erfassungen von Anfang Dezember des vorhergehenden Jahres bis Ende November des genannten Jahres umfasst. Das Erfassung des Strandmülls erfolgt nach der OSPAR Beach Litter Guideline (2010).</gco:CharacterString></gmd:abstract><gmd:purpose><gco:CharacterString>Darstellung</gco:CharacterString></gmd:purpose><gmd:status><gmd:MD_ProgressCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode" codeListValue="completed"/></gmd:status><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="originator"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="75C5BEAC-2CB6-49D1-8AFC-CFC6390CECE9"><gmd:individualName><gco:CharacterString>Heinrich, Christoph, Herr</gco:CharacterString></gmd:individualName><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>Abteilung 4 LfU Gewässer</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704-499</gco:CharacterString></gmd:voice><gmd:facsimile><gco:CharacterString>+49 (0) 04347 704-402</gco:CharacterString></gmd:facsimile></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>christoph.heinrich@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="pointOfContact"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:pointOfContact><gmd:CI_ResponsibleParty uuid="5DBA4760-F37F-45C4-8ED0-DB43F37EFA26"><gmd:organisationName><gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString></gmd:organisationName><gmd:positionName><gco:CharacterString>AL 4, Dirk van Riesen</gco:CharacterString></gmd:positionName><gmd:contactInfo><gmd:CI_Contact><gmd:phone><gmd:CI_Telephone><gmd:voice><gco:CharacterString>+49 (0) 04347 704 0</gco:CharacterString></gmd:voice></gmd:CI_Telephone></gmd:phone><gmd:address><gmd:CI_Address><gmd:deliveryPoint><gco:CharacterString>Hamburger Chaussee 25</gco:CharacterString></gmd:deliveryPoint><gmd:city><gco:CharacterString>Flintbek</gco:CharacterString></gmd:city><gmd:administrativeArea><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:administrativeArea><gmd:postalCode><gco:CharacterString>24220</gco:CharacterString></gmd:postalCode><gmd:country><gco:CharacterString>DEU</gco:CharacterString></gmd:country><gmd:electronicMailAddress><gco:CharacterString>Poststelle@lfu.landsh.de</gco:CharacterString></gmd:electronicMailAddress></gmd:CI_Address></gmd:address></gmd:CI_Contact></gmd:contactInfo><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="publisher"/></gmd:role></gmd:CI_ResponsibleParty></gmd:pointOfContact><gmd:resourceMaintenance><gmd:MD_MaintenanceInformation><gmd:maintenanceAndUpdateFrequency><gmd:MD_MaintenanceFrequencyCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode" codeListValue="asNeeded"/></gmd:maintenanceAndUpdateFrequency><gmd:updateScope><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:updateScope></gmd:MD_MaintenanceInformation></gmd:resourceMaintenance><gmd:graphicOverview><gmd:MD_BrowseGraphic><gmd:fileName><gco:CharacterString>http://s-h.nokis.org/nokis/files/records/ec8f5fc1-f444-4385-beae-d4f6d74b6886/strandmuellmonitoring.PNG</gco:CharacterString></gmd:fileName><gmd:fileDescription><gco:CharacterString>grafische Darstellung</gco:CharacterString></gmd:fileDescription></gmd:MD_BrowseGraphic></gmd:graphicOverview><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ozeanografisch-geografische Kennwerte</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Umweltüberwachung</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gco:CharacterString>GEMET - INSPIRE themes, version 1.0</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2008-06-01</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>Ostsee</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Küstengewässer</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>LLUR</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MDI-DE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>D10</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>MSRL</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>GDI-SH</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>msrlrelevant</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>INSPIRE</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>EU-Richtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Meeresstrategie-Rahmenrichtlinie</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Monitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Strandmüllmonitoring</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Müll</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>Schleswig-Holstein</gco:CharacterString></gmd:keyword><gmd:keyword><gco:CharacterString>opendata</gco:CharacterString></gmd:keyword></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope/regional">Regional</gmx:Anchor></gmd:keyword><gmd:thesaurusName><gmd:CI_Citation><gmd:title><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/SpatialScope">Spatial scope</gmx:Anchor></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2019-05-22</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:thesaurusName></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:descriptiveKeywords><gmd:MD_Keywords><gmd:keyword><gco:CharacterString>ENVI</gco:CharacterString></gmd:keyword><gmd:type><gmd:MD_KeywordTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode" codeListValue="theme"/></gmd:type></gmd:MD_Keywords></gmd:descriptiveKeywords><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useLimitation><gco:CharacterString>keine</gco:CharacterString></gmd:useLimitation></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:useConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions"/></gmd:useConstraints><gmd:otherConstraints><gco:CharacterString>Datenlizenz Deutschland Namensnennung 2.0</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>Quellenvermerk: LLUR SH</gco:CharacterString></gmd:otherConstraints><gmd:otherConstraints><gco:CharacterString>{"id":"dl-by-de/2.0","name":"Datenlizenz Deutschland Namensnennung 2.0","url":"https://www.govdata.de/dl-de/by-2-0","quelle":"LLUR SH"}</gco:CharacterString></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:resourceConstraints><gmd:MD_LegalConstraints><gmd:accessConstraints><gmd:MD_RestrictionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode" codeListValue="otherRestrictions">otherRestrictions</gmd:MD_RestrictionCode></gmd:accessConstraints><gmd:otherConstraints><gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/LimitationsOnPublicAccess/noLimitations">Es gelten keine Zugriffsbeschränkungen</gmx:Anchor></gmd:otherConstraints></gmd:MD_LegalConstraints></gmd:resourceConstraints><gmd:spatialRepresentationType><gmd:MD_SpatialRepresentationTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode" codeListValue="vector"/></gmd:spatialRepresentationType><gmd:language><gmd:LanguageCode codeList="http://www.loc.gov/standards/iso639-2/" codeListValue="ger"/></gmd:language><gmd:topicCategory><gmd:MD_TopicCategoryCode>environment</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>oceans</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:topicCategory><gmd:MD_TopicCategoryCode>structure</gmd:MD_TopicCategoryCode></gmd:topicCategory><gmd:extent><gmd:EX_Extent><gmd:geographicElement><gmd:EX_GeographicDescription><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:geographicIdentifier><gmd:MD_Identifier><gmd:code><gco:CharacterString>Raumbezug des Datensatzes</gco:CharacterString></gmd:code></gmd:MD_Identifier></gmd:geographicIdentifier></gmd:EX_GeographicDescription></gmd:geographicElement><gmd:geographicElement><gmd:EX_GeographicBoundingBox><gmd:extentTypeCode><gco:Boolean>true</gco:Boolean></gmd:extentTypeCode><gmd:westBoundLongitude><gco:Decimal>9.3</gco:Decimal></gmd:westBoundLongitude><gmd:eastBoundLongitude><gco:Decimal>11.4</gco:Decimal></gmd:eastBoundLongitude><gmd:southBoundLatitude><gco:Decimal>53.8</gco:Decimal></gmd:southBoundLatitude><gmd:northBoundLatitude><gco:Decimal>55.0</gco:Decimal></gmd:northBoundLatitude></gmd:EX_GeographicBoundingBox></gmd:geographicElement><gmd:temporalElement><gmd:EX_TemporalExtent><gmd:extent><gml:TimePeriod gml:id="timePeriod_ID_13895e6b-01f6-41e9-be98-5b11b533fc13"><gml:beginPosition>2013-12-01T00:00:00.000+01:00</gml:beginPosition><gml:endPosition>2014-11-30T00:00:00.000+01:00</gml:endPosition></gml:TimePeriod></gmd:extent></gmd:EX_TemporalExtent></gmd:temporalElement></gmd:EX_Extent></gmd:extent></gmd:MD_DataIdentification></gmd:identificationInfo><gmd:distributionInfo><gmd:MD_Distribution><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>Shapefiles</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>10.0</gco:CharacterString></gmd:version></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WMS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.3.0 1.1.1</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Map Service (WMS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributionFormat><gmd:MD_Format><gmd:name><gco:CharacterString>WFS</gco:CharacterString></gmd:name><gmd:version><gco:CharacterString>1.1.0 1.0.0</gco:CharacterString></gmd:version><gmd:specification><gco:CharacterString>OpenGIS Web Feature Service (WFS) Implementation Specification</gco:CharacterString></gmd:specification></gmd:MD_Format></gmd:distributionFormat><gmd:distributor><gmd:MD_Distributor><gmd:distributorContact><gmd:CI_ResponsibleParty><gmd:role><gmd:CI_RoleCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_RoleCode" codeListValue="distributor"/></gmd:role></gmd:CI_ResponsibleParty></gmd:distributorContact><gmd:distributionOrderProcess><gmd:MD_StandardOrderProcess><gmd:orderingInstructions><gco:CharacterString>Gebuehren: keine</gco:CharacterString></gmd:orderingInstructions></gmd:MD_StandardOrderProcess></gmd:distributionOrderProcess></gmd:MD_Distributor></gmd:distributor><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?service=wfs&amp;version=1.1.0&amp;request=GetFeature&amp;outputFormat=SHAPE-ZIP&amp;typeName=BL_ges_1217</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: SHAPE-ZIP</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="download">download</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wfs?Service=WFS&amp;Version=1.1.0&amp;Request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WFS: GetCapabilities (1.1.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/wms?service=wms&amp;version=1.3.0&amp;request=GetCapabilities</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>WMS: GetCapabilities (1.3.0)</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions><gmd:transferOptions><gmd:MD_DigitalTransferOptions><gmd:onLine><gmd:CI_OnlineResource><gmd:linkage><gmd:URL>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gmd:URL></gmd:linkage><gmd:name><gco:CharacterString>https://mdi-sh.org/geoserver_llur/MSRL-D10-Muell/ows?</gco:CharacterString></gmd:name><gmd:description><gco:CharacterString>GetCapabilities</gco:CharacterString></gmd:description><gmd:function><gmd:CI_OnLineFunctionCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode" codeListValue="information">information</gmd:CI_OnLineFunctionCode></gmd:function></gmd:CI_OnlineResource></gmd:onLine></gmd:MD_DigitalTransferOptions></gmd:transferOptions></gmd:MD_Distribution></gmd:distributionInfo><gmd:dataQualityInfo><gmd:DQ_DataQuality><gmd:scope><gmd:DQ_Scope><gmd:level><gmd:MD_ScopeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset"/></gmd:level></gmd:DQ_Scope></gmd:scope><gmd:report><gmd:DQ_DomainConsistency><gmd:result><gmd:DQ_ConformanceResult><gmd:specification><gmd:CI_Citation><gmd:title><gco:CharacterString>VERORDNUNG (EG) Nr. 1089/2010 DER KOMMISSION vom 23. November 2010 zur Durchführung der Richtlinie 2007/2/EG des Europäischen Parlaments und des Rates hinsichtlich der Interoperabilität von Geodatensätzen und -diensten</gco:CharacterString></gmd:title><gmd:date><gmd:CI_Date><gmd:date><gco:Date>2010-12-08</gco:Date></gmd:date><gmd:dateType><gmd:CI_DateTypeCode codeList="http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_DateTypeCode" codeListValue="publication">publication</gmd:CI_DateTypeCode></gmd:dateType></gmd:CI_Date></gmd:date></gmd:CI_Citation></gmd:specification><gmd:explanation><gco:CharacterString>Die Qualität der Daten entspricht nicht den Datenspezifikationen.</gco:CharacterString></gmd:explanation><gmd:pass><gco:Boolean>false</gco:Boolean></gmd:pass></gmd:DQ_ConformanceResult></gmd:result></gmd:DQ_DomainConsistency></gmd:report><gmd:lineage><gmd:LI_Lineage><gmd:statement><gco:CharacterString>Hierbei handelt es sich um aggregierte und harmonisierte Werte. Die Datenzusammenführung und die verwendete Darstellungsform wurde im Rahmen der MDI-DE erstellt und entwickelt. Die Strandmülldaten des NABU wurden dem LLUR zur Erstellung eines Darstellungsdienstes zur Verfügung gestellt.</gco:CharacterString></gmd:statement><gmd:processStep><gmd:LI_ProcessStep><gmd:description><gco:CharacterString>Aus den Rohdaten wurden der prozentuale Anteil, die mittlere Anzahl von Müllteilen und die Anzahl der Erfassungsaktionen aller Müllkategorien eines Jahres berechnet.</gco:CharacterString></gmd:description></gmd:LI_ProcessStep></gmd:processStep></gmd:LI_Lineage></gmd:lineage></gmd:DQ_DataQuality></gmd:dataQualityInfo></gmd:MD_Metadata></csw:SearchResults></csw:GetRecordsResponse>
\ No newline at end of file