<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF[
	<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
	<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
	<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
	<!ENTITY swivt 'http://semantic-mediawiki.org/swivt/1.0#'>
	<!ENTITY wiki 'http://www.ogdcockpit.eu/Special:URIResolver/'>
	<!ENTITY category 'http://www.ogdcockpit.eu/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://www.ogdcockpit.eu/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://www.ogdcockpit.eu/'>
]>

<rdf:RDF
	xmlns:rdf="&rdf;"
	xmlns:rdfs="&rdfs;"
	xmlns:owl ="&owl;"
	xmlns:swivt="&swivt;"
	xmlns:wiki="&wiki;"
	xmlns:category="&category;"
	xmlns:property="&property;"
	xmlns:dct="http://purl.org/dc/terms/"
	xmlns:dcat="https://www.w3.org/TR/vocab-dcat/"
	xmlns:skos="http://www.w3.org/2004/02/skos/core#"
	xmlns:foaf="http://xmlns.com/foaf/0.1/">

	<owl:Ontology rdf:about="https://www.ogdcockpit.eu/Special:ExportRDF/OpenData_Endpoint_zur_Lärmaktionsplanung">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-05-18T09:30:58+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung">
		<rdf:type rdf:resource="http://www.ogdcockpit.eu/Special:URIResolver/Category-3ANRW"/>
		<rdfs:label>OpenData Endpoint zur Lärmaktionsplanung</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://www.ogdcockpit.eu/Special:ExportRDF/OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:page rdf:resource="https://www.ogdcockpit.eu/OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<swivt:wikiPageContentLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">de</swivt:wikiPageContentLanguage>
		<property:Datensatz_Autor rdf:resource="&wiki;Stadt_Köln"/>
		<dct:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;p&gt;Die Stadt Köln stellt ab sofort die Daten zur Bürgerbeteiligung an der Lärmaktionsplanung der Stadt Köln 2010/2011 auf dem OpenData Portal zur Verfügung. Den OPenData Endpoint finden Sie unter: &lt;a href="http://laermaktionsplanung.stadt-koeln.de/d2rq/snorql/"&gt;http://laermaktionsplanung.stadt-koeln.de/d2rq/snorql/&lt;/a&gt; zur statischen Bearbeitung können Sie aber auch das beigefügte XML nutzen Jeder Datensatz enthält die Daten zu einem Vorschlag aus der Lärmaktionsplanung der Stadt Köln 2010/11 mit den Eigenschaften â€¢ â€œdateâ€ = Datum des Vorschlags â€¢ â€œnoise_typeâ€ = Lärmart â€¢ â€œtitleâ€ = Titel â€¢ â€œnoteâ€ = Beschreibung des Vorschlags â€¢ â€œvote_proâ€ = Pro-Stimmen â€¢ â€œvote_contraâ€ = Contra-Stimmen â€¢ â€œaddressâ€ = Adresse, in der Regel Straßenname und Hausnummer â€¢ â€œlatâ€ = Breitengrad in der EPSG4326 Projektion â€¢ â€œlonâ€ = Längengrad in der EPSG4326 Projektion Die Daten können auf zwei Wegen genutzt werden. Download Sie können die Daten als Dateien zur weiteren Verwendung herunterladen. Die Daten können als Dateien in unterschiedlichen offenen Formaten hier heruntergeladen werden [LINK JSON CSV XML]. Abfrage des OpenData Endpoints Wenn Sie die Daten einschränken möchten (zum Beispiel â€œalle Vorschläge im Umkreis von 1 Km um den Domâ€) oder die Daten in einem anderen Projekt verwenden möchten(mashup), ohne sie in eine eigene Datenbank zu überführen können Sie den OpenData Endpoint dazu benutzen. Qualifizierte Daten mit Georeferenzen Wie die semantische Abfragesprache SPARQL sinnvoll eingesetzt werden kann, wird an einigen Beispielen deutlich. Um die Daten zu explorieren nutzen wir eine browserbasierte Schnittstelle zum Endpoint mit dem schönen Namen SNORQL. &lt;a href="http://laermaktionsplanung.stadt-koeln.de/d2rq/snorql/"&gt;http://laermaktionsplanung.stadt-koeln.de/d2rq/snorql/&lt;/a&gt; Um alle Vorschläge, sortiert nach Datum zu erhalten geben Sie diese SPARQL Abfrage ein: SELECT DISTINCT ?date ?noise_type ?author ?title ?note ?vote_pro ?vote_contra ?address ?lat ?lon WHERE { ?instance a . ?instance dc:date ?date. ?instance vocab:noice_type ?noice_type. ?instance foaf:name ?author. ?instance dc:title ?title. ?instance vocab:proposal_note ?note. ?instance vocab:vote_pro ?vote_pro. ?instance vocab:vote_cons ?vote_contra. OPTIONAL { ?instance vocab:address ?address. ?instance geo:lat ?lat. ?instance geo:long ?lon. } } ORDER BY ?date Wenn Sie nur an Vorschlägen mit hoher Zustimmung interessiert sind, sortieren Sie die Ergebnisse und limitieren die Trefferliste: SELECT DISTINCT ?date ?noise_type ?author ?title ?note ?vote_pro ?vote_contra ?address ?lat ?lon WHERE { ?instance a . ?instance dc:date ?date. ?instance vocab:noice_type ?noice_type. ?instance foaf:name ?author. ?instance dc:title ?title. ?instance vocab:proposal_note ?note. ?instance vocab:vote_pro ?vote_pro. ?instance vocab:vote_cons ?vote_contra. OPTIONAL { ?instance vocab:address ?address. ?instance geo:lat ?lat. ?instance geo:long ?lon. } } ORDER BY DESC(?vote_pro) LIMIT 10 Wenn Sie sich weiter mit den Möglichkeiten der Abfrage beschäftigen möchten bietet das W3C einen guten Einstiegspunkt: &lt;a href="http://www.w3.org/TR/rdf-sparql-query/"&gt;http://www.w3.org/TR/rdf-sparql-query/&lt;/a&gt;&lt;/p&gt;</dct:description>
		<property:Datensatz_ID rdf:resource="&wiki;8ba1b369-2Dc512-2D4c2e-2D8819-2D76b2b0c0d561"/>
		<property:Datensatz_Kategorie rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Regierung und öffentlicher Sektor</property:Datensatz_Kategorie>
		<dct:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung</dct:title>
		<property:KGST rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111.03</property:KGST>
		<dcat:theme rdf:resource="http://publications.europa.eu/resource/authority/data-theme/GOVE"/>
		<property:LEIKA rdf:datatype="http://www.w3.org/2001/XMLSchema#string">111.01</property:LEIKA>
		<property:Lizenz-2DURL rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cc-by</property:Lizenz-2DURL>
		<skos:exactMatch rdf:resource="http://dcat-ap.de/def/licenses/official-work/cc-by"/>
		<property:MusterArt rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Detail/Rohdaten</property:MusterArt>
		<property:MusterBezeichnung rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Anliegenmanagement</property:MusterBezeichnung>
		<property:MusterThema rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bürgerservice</property:MusterThema>
		<property:Musterdatensatz rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bürgerservice - Anliegenmanagement</property:Musterdatensatz>
		<property:Musterdatensatz_lang rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bürgerservice - Anliegenmanagement - Detail/Rohdaten</property:Musterdatensatz_lang>
		<property:NRW rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1140509</property:NRW>
		<foaf:organization rdf:resource="&wiki;Stadt_Köln"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYbd995d5c721539e9359ecbc5788de1a6"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYed37c8e4a5290bcb43c3ffafce8ce5b1"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY8ebb75e945eb6a86ad98576ef5e9bb47"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY76aed62db5f0fa1dc75631fabb5adf83"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYfada467acd7f4dcd0eeda677c1a5c685"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY729f6fb375722236a466d3bc2c20b93c"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY73335a5775d071e0a570fe485f44094b"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY65c5d46e4e6ece03cf2b252d0b73a7db"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY1485a9a05d3f3bc2b72d216d6e38afca"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY4a9c65c61f095cdda4269de4c1cb6b3c"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYa2a5ccbc049152742c1f18c01bdb0c11"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY3c9a673b078da5b7480f4f5ecfbae110"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYdf6664253adee9f23fdaf260fb1a8b4c"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY8cf4ab26c83e46143464ca0713b809e9"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY25c1e93dfd85718dd5e0c0476c26380f"/>
		<property:Has_query rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY73462931c9447684603edf43cc4e5060"/>
		<swivt:wikiPageCreationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-05-02T10:00:41Z</swivt:wikiPageCreationDate>
		<property:Creation_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2458605.9171412</property:Creation_date-23aux>
		<property:Processing_error rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung-23_ERRe78c149d1344d070e64a6bcc73d1ba91"/>
		<property:Last_editor_is rdf:resource="&wiki;Benutzer-3AAdmin"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2019-05-02T10:00:41Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2458605.9171412</property:Modification_date-23aux>
		<property:Is_a_new_page rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</property:Is_a_new_page>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYbd995d5c721539e9359ecbc5788de1a6">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Organisation]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERYbd995d5c721539e9359ecbc5788de1a6</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYed37c8e4a5290bcb43c3ffafce8ce5b1">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur Titel]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERYed37c8e4a5290bcb43c3ffafce8ce5b1</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY8ebb75e945eb6a86ad98576ef5e9bb47">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:MusterThema]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY8ebb75e945eb6a86ad98576ef5e9bb47</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY76aed62db5f0fa1dc75631fabb5adf83">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:MusterBezeichnung]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY76aed62db5f0fa1dc75631fabb5adf83</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYfada467acd7f4dcd0eeda677c1a5c685">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:MusterArt]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERYfada467acd7f4dcd0eeda677c1a5c685</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY729f6fb375722236a466d3bc2c20b93c">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Musterdatensatz]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY729f6fb375722236a466d3bc2c20b93c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY73335a5775d071e0a570fe485f44094b">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Musterdatensatz lang]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY73335a5775d071e0a570fe485f44094b</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY65c5d46e4e6ece03cf2b252d0b73a7db">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:LEIKA]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY65c5d46e4e6ece03cf2b252d0b73a7db</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY1485a9a05d3f3bc2b72d216d6e38afca">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:KGST]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY1485a9a05d3f3bc2b72d216d6e38afca</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY4a9c65c61f095cdda4269de4c1cb6b3c">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:NRW]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY4a9c65c61f095cdda4269de4c1cb6b3c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYa2a5ccbc049152742c1f18c01bdb0c11">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur Kategorie]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERYa2a5ccbc049152742c1f18c01bdb0c11</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY3c9a673b078da5b7480f4f5ecfbae110">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur Beschreibung]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY3c9a673b078da5b7480f4f5ecfbae110</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERYdf6664253adee9f23fdaf260fb1a8b4c">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur Ursprüngliche Website]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERYdf6664253adee9f23fdaf260fb1a8b4c</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY8cf4ab26c83e46143464ca0713b809e9">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur ID]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY8cf4ab26c83e46143464ca0713b809e9</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY25c1e93dfd85718dd5e0c0476c26380f">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Lizenz-URL]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY25c1e93dfd85718dd5e0c0476c26380f</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_QUERY73462931c9447684603edf43cc4e5060">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Attribut:Datenstruktur Autor]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# QUERY73462931c9447684603edf43cc4e5060</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/OpenData_Endpoint_zur_Lärmaktionsplanung-23_ERRe78c149d1344d070e64a6bcc73d1ba91">
		<swivt:masterPage rdf:resource="&wiki;OpenData_Endpoint_zur_Lärmaktionsplanung"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Has_improper_value_for rdf:resource="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ADatensatz_Ursprüngliche_Website"/>
		<property:Processing_error_message rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[2,"smw-datavalue-wikipage-property-invalid-title","Datensatz Urspr\u00fcngliche Website","http:\/\/offenedaten-koeln.de\/dataset\/opendata-endpoint-zur-l%C3%A4rmaktionsplanung"]</property:Processing_error_message>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenData Endpoint zur Lärmaktionsplanung# ERRe78c149d1344d070e64a6bcc73d1ba91</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Category-3ANRW" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiNamespace" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageContentLanguage" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ADatensatz_Autor" />
	<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/description" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ADatensatz_ID" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ADatensatz_Kategorie" />
	<owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/title" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AKGST" />
	<owl:ObjectProperty rdf:about="https://www.w3.org/TR/vocab-dcat/theme" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ALEIKA" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ALizenz-2DURL" />
	<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#exactMatch" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AMusterArt" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AMusterBezeichnung" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AMusterThema" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AMusterdatensatz" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AMusterdatensatz_lang" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ANRW" />
	<owl:ObjectProperty rdf:about="http://xmlns.com/foaf/0.1/organization" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AHas_query" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageCreationDate" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ACreation_date-23aux" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AProcessing_error" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3ALast_editor_is" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AModification_date-23aux" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AIs_a_new_page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageSortKey" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AQuery_depth" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AQuery_format" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AQuery_size" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AQuery_string" />
	<owl:ObjectProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AHas_improper_value_for" />
	<owl:DatatypeProperty rdf:about="http://www.ogdcockpit.eu/Special:URIResolver/Property-3AProcessing_error_message" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>