Skip to content
Snippets Groups Projects
Commit 048bdb18 authored by Jesper Zedlitz's avatar Jesper Zedlitz
Browse files

bessere Heuristik zum Verarbeiten des Application Profile einer Transfer Option

parent c7c9bf43
No related branches found
No related tags found
No related merge requests found
Pipeline #621 passed
...@@ -509,10 +509,14 @@ public class MDMetadata2Dataset { ...@@ -509,10 +509,14 @@ public class MDMetadata2Dataset {
final String applicationProfile = getTextOrNull(onlineResource.selectSingleNode("gmd:applicationProfile/*")); final String applicationProfile = getTextOrNull(onlineResource.selectSingleNode("gmd:applicationProfile/*"));
Resource format; Resource format = null;
if (StringUtils.startsWith(applicationProfile, "http://publications.europa.eu/resource/authority/file-type/")) { if (StringUtils.startsWith(applicationProfile, "http://publications.europa.eu/resource/authority/file-type/")) {
format = ResourceFactory.createResource(applicationProfile); format = ResourceFactory.createResource(applicationProfile);
} else { } else if( StringUtils.isNotEmpty(applicationProfile)) {
format = Mapping.mapFormat(applicationProfile);
}
if( format== null) {
// Guess the format. // Guess the format.
format = guessFormat(url); format = guessFormat(url);
} }
...@@ -588,9 +592,12 @@ public class MDMetadata2Dataset { ...@@ -588,9 +592,12 @@ public class MDMetadata2Dataset {
log.info("WMS with output format: {}", url); log.info("WMS with output format: {}", url);
return null; return null;
} }
} else if (lowerCaseURL.contains("service=wfs") && lowerCaseURL.contains("getcapabilities")) {
return ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/WFS_SRVC");
} else if (lowerCaseURL.contains("service=wfs")) { } else if (lowerCaseURL.contains("service=wfs")) {
if (!lowerCaseURL.contains("outputformat=")) { if (!lowerCaseURL.contains("outputformat=")) {
return ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/WFS_SRVC"); // assume that the WFS returns GML als standard output format
return ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/GML");
} else if (lowerCaseURL.contains("outputformat=shape-zip")) { } else if (lowerCaseURL.contains("outputformat=shape-zip")) {
return ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/SHP"); return ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/SHP");
} else if (lowerCaseURL.contains("outputformat=csv")) { } else if (lowerCaseURL.contains("outputformat=csv")) {
......
...@@ -30,6 +30,7 @@ public class MDMetadata2DatasetTests { ...@@ -30,6 +30,7 @@ public class MDMetadata2DatasetTests {
private static final Resource FILE_TYPE_WFS_SRC = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/WFS_SRVC"); private static final Resource FILE_TYPE_WFS_SRC = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/WFS_SRVC");
private static final Resource FILE_TYPE_CSV = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/CSV"); private static final Resource FILE_TYPE_CSV = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/CSV");
private static final Resource FILE_TYPE_SHP = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/SHP"); private static final Resource FILE_TYPE_SHP = ResourceFactory.createResource("http://publications.europa.eu/resource/authority/file-type/SHP");
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_applicable_Legislation = ResourceFactory.createProperty("http://data.europa.eu/r5r/", "applicableLegislation");
static Namespace NS_GMD = Namespace.get("gmd", "http://www.isotc211.org/2005/gmd"); static Namespace NS_GMD = Namespace.get("gmd", "http://www.isotc211.org/2005/gmd");
...@@ -1303,4 +1304,28 @@ public class MDMetadata2DatasetTests { ...@@ -1303,4 +1304,28 @@ public class MDMetadata2DatasetTests {
assertNotNull(dataset); assertNotNull(dataset);
assertEquals("bb585473-0987-436a-bc7a-132880a4df0d", dataset.getProperty(DCTerms.identifier).getString()); assertEquals("bb585473-0987-436a-bc7a-132880a4df0d", dataset.getProperty(DCTerms.identifier).getString());
} }
/**
* Detect multiple formats (SHP and GML) in one dataset.
* The WMS link is so broken that it won't be detected as a WMS.
*/
@Test
public void convert_multiFormat() throws DocumentException, IOException {
settings.findWMSinInfo = true;
final Document inputDocument = saxReader.read(getClass().getResourceAsStream("/6782583C-9747-4C16-B94D-3EAF2BFDB171.xml"));
final Resource result = service.convert(inputDocument);
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());
Resource distribution2 = distributionMap.get("https://umweltgeodienste.schleswig-holstein.de/WFS_UWAT?service=wfs&version=2.0.0&request=GetFeature&typeNames=app:lsg");
assertEquals(FILE_TYPE_GML, distribution2.getProperty(DCTerms.format).getResource());
assertEquals("WFS Landschaftsschutzgebiete (1:25.000)", distribution2.getProperty(DCTerms.title).getString());
}
} }
<?xml version="1.0" encoding="UTF-8"?><csw:GetRecordByIdResponse xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" xmlns:gml="http://www.opengis.net/gml" xmlns:ogc="http://www.opengis.net/ogc" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xs="http://www.w3.org/2001/XMLSchema"><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>6782583C-9747-4C16-B94D-3EAF2BFDB171</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>68BD7DA4-2F78-4681-9F50-0CD292292D31</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="7168FFB6-F77F-4A2C-ADB0-987B90D19FF7">
<gmd:organisationName>
<gco:CharacterString>Landesamt für Umwelt des Landes Schleswig-Holstein (LfU)</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:address>
<gmd:CI_Address>
<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:contact>
<gmd:dateStamp>
<gco:Date>2024-01-11</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:referenceSystemInfo>
<gmd:MD_ReferenceSystem>
<gmd:referenceSystemIdentifier>
<gmd:RS_Identifier>
<gmd:code>
<gmx:Anchor xlink:href="http://www.opengis.net/def/crs/EPSG/0/4647">EPSG 4647: ETRS89 / UTM Zone 32N (zE-N)</gmx:Anchor>
</gmd:code>
</gmd:RS_Identifier>
</gmd:referenceSystemIdentifier>
</gmd:MD_ReferenceSystem>
</gmd:referenceSystemInfo>
<gmd:identificationInfo>
<gmd:MD_DataIdentification uuid="http://portalu.de/igc_sh#Schleswig-Holstein:6782583C-9747-4C16-B94D-3EAF2BFDB171">
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Landschaftsschutzgebiete (1:25.000) in Schleswig-Holstein LfU</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:DateTime>2022-12-31T00: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>http://portalu.de/igc_sh#Schleswig-Holstein:6782583C-9747-4C16-B94D-3EAF2BFDB171</gco:CharacterString>
</gmd:code>
</gmd:MD_Identifier>
</gmd:identifier>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>Gebietsabgrenzungen der bestehenden Landschaftsschutzgebiete (LSG) gemäß § 26 Bundesnaturschutzgesetz vom 29. Juli 2009 [BGBl. I S. 2542] (zuletzt geändert 6. Oktober 2011 [BGBl. I S. 1986) in Verbindung mit § 15 Landesnaturschutzgesetz vom 24. Februrar 2010 [GVOBl. Schl.-H. S. 301] (zuletzt geändert 13. Juli 2011 [GVOBl. Schl.-H. S. 225]). Die Zuständigkeit für die Ausweisung von Landschaftsschutzgebieten liegt bei den Kreisen als Untere Naturschutzbehörden. Die Vollständigkeit der Daten kann insofern nicht garantiert werden (abhängig von Zulieferung durch die Kreise). Hier dargestellt sind nur LSG-Flächen, die außerhalb von Naturschutzgebieten (NSG) liegen.
Die digitalen Abgrenzungen sind durch Übertragung der analog vorliegenden Verordnungskarten der Kreise entstanden. Bei Detailfragen gelten letztendlich die Originalkarten der jeweiligen Verordnung (liegen bei den Kreisen/Unteren Naturschutzbehörden sowie beim Land/Oberste Naturschutzbehörde) Gebietsspezifische Anfragen bitte an den zuständigen Kreis. Die "Gebietsnr" (als lfd. Nr. je Kreis) ergibt sich nach folgenden Grundsätzen:
1) Reihenfolge ergibt sich aus dem Datum der Erstverordnung.
2) Werden in einer Verordnung mehrere räumlich oder durch eindeutige Bezeichnung getrennt liegende Landschaftsteile geschützt oder wird explizit deren eigenständige Führung in der amtlichen / offiziellen Liste des Kreises genannt, erhält jeder Landschaftsteil eine eigene lfd. Nummer (und Name).
3) Wird ein LSG aufgehoben, werden die entsprechenden Polygone und Datensätze gelöscht. Dadurch können Sprünge/Lücken in der durchgängigen Nummerierung entstehen.
4) Wird innerhalb eines bereits geschützten Bereichs ein Teilgebiet als LSG ausgewiesen, erhält dieses eine neue lfd. Nummer (und Name). Im Datensatz wird im Feld Jahr als Hinweis auf den durchgängigen bzw. vorausgehenden Schutz - die Angabe des zeitlich vorhergehenden LSG nachrichtlich übernommen. Innerhalb des Landesamtes werden im GIS, im Schutzgebietskataster (SGK) sowie im Aktenplan kreisweise identische lfd. Nummern verwendet. Das Aktenzeichen für LSG lautet: 5322.1-,nachfolgend die Kreiskennziffer sowie die lfd. Nr. (vollzogen für OD, OH, PI - ansonsten bislang nur Übereinstimmumng von GIS und SGK) Zwischen den Verzeichnissen der Kreise und des Landesamtes kann es abweichende Nummerierungen geben.</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="43507209-849b-4836-94ea-aa053594c9a8">
<gmd:individualName>
<gco:CharacterString>jeweiliger Kreis</gco:CharacterString>
</gmd:individualName>
<gmd:organisationName>
<gco:CharacterString>Kreis</gco:CharacterString>
</gmd:organisationName>
<gmd:positionName>
<gco:CharacterString>Abteilung 5 LfU Naturschutz, Kreis</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:address>
<gmd:CI_Address>
<gmd:administrativeArea>
<gco:CharacterString>Schleswig-Holstein</gco:CharacterString>
</gmd:administrativeArea>
<gmd:electronicMailAddress>
<gco:CharacterString>xxx.xxx@kreis-xxx.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="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:pointOfContact>
<gmd:pointOfContact>
<gmd:CI_ResponsibleParty uuid="eefa7a86-1254-405c-8715-00a3fa20d90a">
<gmd:individualName>
<gco:CharacterString>Kontakt</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>Dezernatsleiterin 55</gco:CharacterString>
</gmd:positionName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>04347-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>info@lfu.landsh.de</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
<gmd:onlineResource>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>https://www.schleswig-holstein.de/DE/landesregierung/ministerien-behoerden/LFU/organisation/abteilungen/abteilung5_naturschutz.html</gmd:URL>
</gmd:linkage>
</gmd:CI_OnlineResource>
</gmd:onlineResource>
</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:updateScope>
</gmd:MD_MaintenanceInformation>
</gmd:resourceMaintenance>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Schutzgebiete</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>gdi-sh</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Schutzgebiete</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/PriorityDataset/NationallyDesignatedAreasCDDA">Nationale Schutzgebiete - CDDA</gmx:Anchor>
</gmd:keyword>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gmx:Anchor xlink:href="http://inspire.ec.europa.eu/metadata-codelist/PriorityDataset">INSPIRE priority data set</gmx:Anchor>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2018-04-04</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>
<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: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: 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:spatialResolution>
<gmd:MD_Resolution>
<gmd:equivalentScale>
<gmd:MD_RepresentativeFraction>
<gmd:denominator>
<gco:Integer>25000</gco:Integer>
</gmd:denominator>
</gmd:MD_RepresentativeFraction>
</gmd:equivalentScale>
</gmd:MD_Resolution>
</gmd:spatialResolution>
<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: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>7.87</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>11.31</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>53.36</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>55.06</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
</gmd:EX_Extent>
</gmd:extent>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributionFormat>
<gmd:MD_Format>
<gmd:name>
<gco:CharacterString>GML</gco:CharacterString>
</gmd:name>
<gmd:version gco:nilReason="unknown"/>
</gmd:MD_Format>
</gmd:distributionFormat>
<gmd:distributionFormat>
<gmd:MD_Format>
<gmd:name>
<gco:CharacterString>Shapefiles</gco:CharacterString>
</gmd:name>
<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://umweltgeodienste.schleswig-holstein.de/WFS_UWAT?service=wfs&amp;version=2.0.0&amp;request=GetFeature&amp;typeNames=app:lsg</gmd:URL>
</gmd:linkage>
<gmd:applicationProfile>
<gco:CharacterString>GML</gco:CharacterString>
</gmd:applicationProfile>
<gmd:name>
<gco:CharacterString>WFS Landschaftsschutzgebiete (1:25.000)</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://opendata.schleswig-holstein.de/dataset/d501a7ab-a85e-4988-a98e-8f3ae3ab5df2/resource/1bcad7cd-9c94-4a06-bbbc-c7929bb37751/download/lsg.zip</gmd:URL>
</gmd:linkage>
<gmd:applicationProfile>
<gco:CharacterString>Shapefiles</gco:CharacterString>
</gmd:applicationProfile>
<gmd:name>
<gco:CharacterString>Landschaftsschutzgebiete (1:25.000)</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://umweltgeodienste.schleswig-holstein.de/WMS_UWAT_NAT?</gmd:URL>
</gmd:linkage>
<gmd:name>
<gco:CharacterString>WMS Fachthema Naturschutz</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://umweltgeodienste.schleswig-holstein.de/WFS_UWAT?</gmd:URL>
</gmd:linkage>
<gmd:name>
<gco:CharacterString>WFS Fachthemen Umwelt</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: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>see the referenced specification</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>Die Zuständigkeit für die Ausweisung von Landschaftschutzgebieten liegt bei den Kreisen und kreisfreien Städten als Untere Naturschutzbehörden. Die Vollständigkeit der Daten kann insofern nicht garantiert werden (abhängig von Zuarbeit durch die Kreise/kreisfreien Städte). Die digitalen Abgrenzungen sind durch Übertragungen der analog vorliegenden Verordnungskarten der Kreise/kreisfreien Städte entstanden. Bei Detailfragen gelten letztendlich die Originalkarten der jeweiligen Verordnung (liegen bei den Kreisen/kreisfreien Städten als Untere Naturschutzbehörde sowie beim Land /Oberste Naturschutzbehörde). Stand: April 2005 (seit dem nur einzelne Nachträge vorgenommen)</gco:CharacterString>
</gmd:statement>
<gmd:processStep>
<gmd:LI_ProcessStep>
<gmd:description>
<gco:CharacterString>Passgenauigkeit: Blattschnittfrei ...</gco:CharacterString>
</gmd:description>
</gmd:LI_ProcessStep>
</gmd:processStep>
</gmd:LI_Lineage>
</gmd:lineage>
</gmd:DQ_DataQuality>
</gmd:dataQualityInfo>
</gmd:MD_Metadata></csw:GetRecordByIdResponse>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment