diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6107541..ab13234 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,13 +7,13 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - - name: Set up JDK 1.8 + - name: Set up JDK 11 uses: actions/setup-java@v1 with: - java-version: 1.8 - - name: Install metafacture-fix 0.7.0 + java-version: 11 + - name: Install metafacture-fix 1.2.0 run: | - git clone https://github.com/metafacture/metafacture-fix.git -b 0.7.0 + git clone https://github.com/metafacture/metafacture-fix.git -b 1.2.0 cd metafacture-fix ./gradlew publishToMavenLocal cd .. diff --git a/.gitignore b/.gitignore index 4c1ff31..e2e1570 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ bin .settings /conf/maps/beacons/*.tsv /conf/output/* -!/conf/output/test-output-*.json +!/conf/output/test*.json !/conf/output/rpb-50* /data/* !/data/.empty diff --git a/build.sbt b/build.sbt index 1178a7b..09f8bbc 100644 --- a/build.sbt +++ b/build.sbt @@ -10,17 +10,19 @@ libraryDependencies ++= Seq( cache, javaWs, "com.typesafe.play" % "play-test_2.11" % "2.4.11", - "org.metafacture" % "metafacture-elasticsearch" % "5.7.0", - "org.metafacture" % "metafacture-io" % "5.7.0", - "org.metafacture" % "metafacture-strings" % "5.7.0", - "org.metafacture" % "metafacture-json" % "5.7.0", - "org.metafacture" % "metafacture-flux" % "5.7.0", - "org.metafacture" % "metafacture-triples" % "5.7.0", - "org.metafacture" % "metafacture-formatting" % "5.7.0", - "org.metafacture" % "metafacture-monitoring" % "5.7.0", - "org.metafacture" % "metafacture-csv" % "5.7.0", - "org.metafacture" % "metafacture-linkeddata" % "5.7.0", - "org.metafacture" % "metafix" % "0.7.0", + "org.metafacture" % "metafacture-elasticsearch" % "6.2.0", + "org.metafacture" % "metafacture-io" % "6.2.0", + "org.metafacture" % "metafacture-xml" % "6.2.0", + "org.metafacture" % "metafacture-biblio" % "6.2.0", + "org.metafacture" % "metafacture-strings" % "6.2.0", + "org.metafacture" % "metafacture-json" % "6.2.0", + "org.metafacture" % "metafacture-flux" % "6.2.0", + "org.metafacture" % "metafacture-triples" % "6.2.0", + "org.metafacture" % "metafacture-formatting" % "6.2.0", + "org.metafacture" % "metafacture-monitoring" % "6.2.0", + "org.metafacture" % "metafacture-csv" % "6.2.0", + "org.metafacture" % "metafacture-linkeddata" % "6.2.0", + "org.metafacture" % "metafix" % "1.2.0", "org.elasticsearch" % "elasticsearch" % "1.7.5" withSources(), "com.github.jsonld-java" % "jsonld-java" % "0.5.0", "org.apache.commons" % "commons-rdf-jena" % "0.5.0", diff --git a/conf/fetchAndTransformHebisRecord.flux b/conf/fetchAndTransformHebisRecord.flux new file mode 100644 index 0000000..b81d9b2 --- /dev/null +++ b/conf/fetchAndTransformHebisRecord.flux @@ -0,0 +1,26 @@ +default IDS = FLUX_DIR + "hebisTestIds.txt"; +createEndTime = "0"; //needed for lobid transformation + +IDS +| open-file +| as-lines +| match(pattern="^(.*)$", replacement="http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22$1%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C") +| write(FLUX_DIR + "hebisSruLinks.txt") +; + +FLUX_DIR + "hebisSruLinks.txt" +| open-file +| as-lines + + +// the hebis workflow could start with the following and enter the the hebisId in strapi you start a workflow with the hebisId as parameter. +//hebisId +//| template("http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22${o}%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C") +| open-http(accept="application/xml") +| decode-xml +| handle-marcxml +| fix(FLUX_DIR + "hebisMarc2lobid-transformation/marcToLobid.fix",*) +| batch-reset(batchsize="1") +| encode-json(prettyPrinting="true") +| write(FLUX_DIR + "output/test-hebis-to-lobid-output-${i}.json") +; diff --git a/conf/fetchRpbForCompareTransformedHebisRecord.flux b/conf/fetchRpbForCompareTransformedHebisRecord.flux new file mode 100644 index 0000000..3fc5818 --- /dev/null +++ b/conf/fetchRpbForCompareTransformedHebisRecord.flux @@ -0,0 +1,14 @@ +default IDS = FLUX_DIR + "rpbEntriesOfHebisRecords.txt"; + +IDS +| open-file +| as-lines +| match(pattern="^(.*)$", replacement="https://rpb.lbz-rlp.de/$1?format=json") +| open-http(accept="application/xml") +| as-records +| decode-json(recordPath="member") +| batch-reset(batchsize="1") +| encode-json(prettyPrinting="true") +| write(FLUX_DIR + "lobid-transformation/comparisonRpbRecords/rpb-hebis-records-${i}.json") +; + diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-0.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-0.json new file mode 100644 index 0000000..0c32c87 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-0.json @@ -0,0 +1,93 @@ +{ + "extent" : "62 Seiten : Illustrationen", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Gn24m0017186a", + "label" : "Caltapanides, Anke", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/123750354X", + "label" : "Ingelheim am Rhein / Stadtverwaltung", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "rpbId" : "036t240017", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n520100", + "label" : "Sozialwesen allgemein", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n843020", + "label" : "Öffentliches Gebäude", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4026954-1", + "label" : "Ingelheim am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/7607842-5", + "label" : "Mehrgenerationenhaus", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "http://rpb.lobid.org/sw/00Gn18k3167156a", + "label" : "Geschichte 2009-2019", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ], + "label" : "Ingelheim am Rhein | Mehrgenerationenhaus | Geschichte 2009-2019", + "type" : [ "ComplexSubject" ] + } ], + "publication" : [ { + "publishedBy" : [ "Stadtverwaltung Ingelheim am Rhein" ], + "location" : [ "Ingelheim am Rhein" ], + "type" : [ "PublicationEvent" ] + } ], + "responsibilityStatement" : [ "Redaktionsteam: Anke Caltapanides [und 3 weitere] ; Herausgeber: Stadtverwaltung Ingelheim am Rhein" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "id" : "https://lobid.org/resources/036t240017", + "type" : [ "BibliographicResource", "Book" ], + "title" : "Wie wir wurden was wir sind - 10-jähriges Jubiläum des Mehrgenerationenhauses Ingelheim", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33900030", + "label" : "Ingelheim am Rhein, große kreisangeh. Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ], + "@context" : "http://lobid.org/resources/context.jsonld" +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-1.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-1.json new file mode 100644 index 0000000..62a8f65 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-1.json @@ -0,0 +1,62 @@ +{ + "extent" : "1 gefaltetes Blatt (16 Seiten) : Illustrationen", + "note" : [ "Parallele Sprachausgabe: The ancient cathedral St. John" ], + "rpbId" : "036t240110", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844030", + "label" : "Sakralbau", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4369072-5", + "label" : "Sankt Johannis / Mainz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Sankt Johannis / Mainz", + "type" : [ "ComplexSubject" ] + } ], + "responsibilityStatement" : [ "Evangelisches Dekanat Mainz" ], + "alternativeTitle" : [ "The ancient cathedral St. John" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Alter Dom St. Johannis : 1500 Jahre Geschichte im Herzen von Mainz", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/2009806-6", + "label" : "Evangelische Kirche in Hessen und Nassau", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Evangelisches Dekanat Mainz" ], + "location" : [ "Mainz" ], + "type" : [ "PublicationEvent" ] + } ], + "id" : "https://lobid.org/resources/036t240110", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-10.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-10.json new file mode 100644 index 0000000..deba0af --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-10.json @@ -0,0 +1,91 @@ +{ + "extent" : "127 S. : zahlr. Ill., Kt.", + "rpbId" : "036t000008", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n102050", + "label" : "Ortsbeschreibung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "http://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4155569-7", + "label" : "Führer", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Geschichte 1945- | Führer", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "3-87439-488-3" ], + "responsibilityStatement" : [ "[Konzept und Texte: Frank Herda ; Georg Schuler ; Ellen Vest]" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Mainz transparent : 2000 Jahre einer Stadt ; [Stadtbegleiter]", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019c", + "label" : "Herda, Frank", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019a", + "label" : "Schuler, Georg", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019b", + "label" : "Vest, Ellen", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Schmidt" ], + "location" : [ "Mainz" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2000" + } ], + "id" : "https://lobid.org/resources/036t000008", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-11.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-11.json new file mode 100644 index 0000000..451de98 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-11.json @@ -0,0 +1,91 @@ +{ + "extent" : "127 S. : zahlr. Ill., graph. Darst., Kt.", + "rpbId" : "036t000019", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n102050", + "label" : "Ortsbeschreibung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "http://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4155569-7", + "label" : "Führer", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Geschichte 1945- | Führer", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "3-87439-534-0" ], + "responsibilityStatement" : [ "by Georg Schuler, Ellen Vest and Frank Herda" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Mainz transparent : 2000 years of a city ; [city guide]", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019a", + "label" : "Schuler, Georg", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019b", + "label" : "Vest, Ellen", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0019c", + "label" : "Herda, Frank", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Schmidt" ], + "location" : [ "Mainz" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2000" + } ], + "id" : "https://lobid.org/resources/036t000019", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-12.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-12.json new file mode 100644 index 0000000..592cb12 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-12.json @@ -0,0 +1,80 @@ +{ + "extent" : "191 Seiten : Illustrationen, Karten", + "note" : [ "Rückentitel: Auszeiten für die Seele Rhein-Main-Gebiet; Erscheint auch als Online-Ausgabe" ], + "rpbId" : "036t240055", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n102045", + "label" : "Regionenbeschreibung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n735040", + "label" : "Freizeitgestaltung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n102070", + "label" : "Wandern / Führer", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4155569-7", + "label" : "Führer", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Führer", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "978-3-8464-0962-6" ], + "responsibilityStatement" : [ "Annette Bernjus" ], + "edition" : [ "1. Auflage" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Auszeiten für die Seele - 33 Orte im Rhein-Main-Gebiet : innehalten, lauschen, aufblühen", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/1156186978", + "label" : "Bernjus, Annette / 1961-", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Polyglott" ], + "location" : [ "München" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2023" + } ], + "id" : "https://lobid.org/resources/036t240055", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n92", + "label" : "Rhein-Main-Gebiet", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-13.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-13.json new file mode 100644 index 0000000..d8b04bb --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-13.json @@ -0,0 +1,101 @@ +{ + "extent" : "175 Seiten : Illustrationen", + "rpbId" : "036t220004", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n262012", + "label" : "Festung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n724030", + "label" : "Jugend", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n735020", + "label" : "Freizeiteinrichtung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n611044", + "label" : "Kirchlicher Verein", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5185690-6", + "label" : "St.-Stanislaus-Kongregation", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4020517-4", + "label" : "Geschichte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "St.-Stanislaus-Kongregation | Geschichte", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "978-3-943915-53-2", "3-943915-53-0" ], + "responsibilityStatement" : [ "Manfred Göbel" ], + "edition" : [ "1. Auflage" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Der Stahlberg in Mainz : Festung - Spielplatz - Jugendhaus", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/114667449X", + "label" : "Göbel, Manfred / 1954-", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "morisel Verlag" ], + "location" : [ "München" ], + "type" : [ "PublicationEvent" ] + } ], + "id" : "https://lobid.org/resources/036t220004", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + }, { + "id" : "https://rpb.lobid.org/spatial#n36", + "label" : "Katholische Kirche / Diözese Mainz", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-14.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-14.json new file mode 100644 index 0000000..e69de29 diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-2.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-2.json new file mode 100644 index 0000000..9cfd1d7 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-2.json @@ -0,0 +1,102 @@ +{ + "extent" : "24 Seiten : Illustrationen", + "note" : [ "Abweichender Titel: Miteinander für Integration in Mainz - Ehrenamtsbündnis für Flüchtlingsarbeit" ], + "rpbId" : "036t240113", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n503440", + "label" : "Einwanderung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n725070", + "label" : "Ausländerin. Ausländer", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4037124-4", + "label" : "Mainz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4017604-6", + "label" : "Flüchtling", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4027238-2", + "label" : "Integration", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Mainz | Flüchtling | Integration", + "type" : [ "ComplexSubject" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4037124-4", + "label" : "Mainz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4128300-4", + "label" : "Flüchtlingshilfe", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Mainz | Flüchtlingshilfe", + "type" : [ "ComplexSubject" ] + } ], + "responsibilityStatement" : [ "Landeshauptstadt Mainz, Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit, Flüchtlingskoordination" ], + "alternativeTitle" : [ "Miteinander für Integration in Mainz - Ehrenamtsbündnis für Flüchtlingsarbeit" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Miteinander für Integration - Das Ehrenamtsbündnis für Flüchtlingsarbeit stellt sich vor : eine Präsentation der vielfältigen und vielseitigen Angebotslandschaft ehrenamtlich engagierter Initiativen, Institutionen und Vereine in der Mainzer Flüchtlingsarbeit", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/1304715574", + "label" : "Mainz / Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit / Flüchtlingskoordination", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit, Flüchtlingskoordination" ], + "location" : [ "Mainz" ], + "type" : [ "PublicationEvent" ] + } ], + "id" : "https://lobid.org/resources/036t240113", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-3.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-3.json new file mode 100644 index 0000000..eb59b31 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-3.json @@ -0,0 +1,104 @@ +{ + "extent" : "12 Seiten : Illustrationen", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Gn19s0063112a", + "label" : "Gaertner, Barbara", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/16162519-8", + "label" : "Forschungsstelle Kaiserpfalz", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/1175257540", + "label" : "Kunstforum Ingelheim - Altes Rathaus", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "rpbId" : "036t240114", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n242744", + "label" : "Königspfalz", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n724020", + "label" : "Kind", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4809327-0", + "label" : "Kaiserpfalz Ingelheim / Ingelheim am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4030550-8", + "label" : "Kind", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4176997-1", + "label" : "Ratespiel", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Kaiserpfalz Ingelheim / Ingelheim am Rhein | Kind | Ratespiel", + "type" : [ "ComplexSubject" ] + } ], + "publication" : [ { + "publishedBy" : [ "Stadt Ingelheim am Rhein" ], + "location" : [ "Ingelheim am Rhein" ], + "type" : [ "PublicationEvent" ] + } ], + "responsibilityStatement" : [ "Herausgeber: Stadt Ingelheim am Rhein ; Konzept und Inhalte: Dr. Barbara Gaertner ; Veranstalter der Ausstellung: Stadtverwaltung Ingelheim am Rhein, Forschungsstelle Kaiserpfalz" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "id" : "https://lobid.org/resources/036t240114", + "type" : [ "BibliographicResource", "Book" ], + "title" : "Findet Hadi - Lernorte in der Ausstellung Der charismatische Ort - Stationen der reisenden Könige im Mittelalter : Rätselheft für Kinder und Erwachsene", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33900030", + "label" : "Ingelheim am Rhein, große kreisangeh. Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ], + "@context" : "http://lobid.org/resources/context.jsonld" +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-4.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-4.json new file mode 100644 index 0000000..68a42f0 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-4.json @@ -0,0 +1,85 @@ +{ + "extent" : "28 Seiten : Illustrationen", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/1324708093", + "label" : "Sportwoche / 1977 / Ingelheim am Rhein", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/4026954-1", + "label" : "Ingelheim am Rhein", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "rpbId" : "036t240339", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n736000", + "label" : "Sport und Spiel", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4026954-1", + "label" : "Ingelheim am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4056431-9", + "label" : "Sportveranstaltung", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "http://rpb.lobid.org/sw/00Sn01k13697892a", + "label" : "Geschichte 1977", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ], + "label" : "Ingelheim am Rhein | Sportveranstaltung | Geschichte 1977", + "type" : [ "ComplexSubject" ] + } ], + "publication" : [ { + "publishedBy" : [ "Stadtverwaltung" ], + "location" : [ "Ingelheim am Rhein" ], + "type" : [ "PublicationEvent" ] + } ], + "responsibilityStatement" : [ "Herausgeber: Stadtverwaltung Ingelheim am Rhein" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "id" : "https://lobid.org/resources/036t240339", + "type" : [ "BibliographicResource", "Book" ], + "title" : "Sportwoche Ingelheim am Rhein vom 10.-18. September 1977 : Programm und Vereinsspiegel der teilnehmenden Vereine", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33900030", + "label" : "Ingelheim am Rhein, große kreisangeh. Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ], + "@context" : "http://lobid.org/resources/context.jsonld" +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-5.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-5.json new file mode 100644 index 0000000..27bb950 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-5.json @@ -0,0 +1,68 @@ +{ + "extent" : "40 Seiten : Illustrationen", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/3042322-3", + "label" : "Carneval-Club 1948 Ober-Olm", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgebendes Organ" + }, + "type" : [ "Contribution" ] + } ], + "rpbId" : "036t220001", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n704043", + "label" : "Karneval", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/3042322-3", + "label" : "Carneval-Club 1948 Ober-Olm", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "http://rpb.lobid.org/sw/00Sn05k0001457a", + "label" : "Geschichte 2002", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ], + "label" : "Carneval-Club 1948 Ober-Olm | Geschichte 2002", + "type" : [ "ComplexSubject" ] + } ], + "publication" : [ { + "publishedBy" : [ "Carneval Club 1948 Ober-Olm e.V." ], + "location" : [ "Ober-Olm" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2002" + } ], + "responsibilityStatement" : [ "Carneval Club 1948 Ober-Olm e.V." ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "id" : "https://lobid.org/resources/036t220001", + "type" : [ "BibliographicResource", "Book" ], + "title" : "Liederheft", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33906047", + "label" : "Ober-Olm", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ], + "@context" : "http://lobid.org/resources/context.jsonld" +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-6.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-6.json new file mode 100644 index 0000000..47ac2e0 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-6.json @@ -0,0 +1,68 @@ +{ + "extent" : "271 Seiten : Illustrationen", + "rpbId" : "036t220003", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n444070", + "label" : "Kriminalfall", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4049762-8", + "label" : "Rheinhessen", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/119004356", + "label" : "Jack / the Ripper", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Rheinhessen | Jack / the Ripper", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "978-3-7392-7169-9" ], + "responsibilityStatement" : [ "Thomas Hattemer" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Jack the Ripper - Verdächtigter vom Rhein : Mörder in USA aus Region Bingen, Alzey", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn03m1223b", + "label" : "Hattemer, Thomas", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Bod - Books on Demand" ], + "location" : [ "[Norderstedt]" ], + "type" : [ "PublicationEvent" ] + } ], + "id" : "https://lobid.org/resources/036t220003", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n05", + "label" : "Rheinhessen", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-7.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-7.json new file mode 100644 index 0000000..d8b04bb --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-7.json @@ -0,0 +1,101 @@ +{ + "extent" : "175 Seiten : Illustrationen", + "rpbId" : "036t220004", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n262012", + "label" : "Festung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n724030", + "label" : "Jugend", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n735020", + "label" : "Freizeiteinrichtung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "id" : "http://purl.org/lobid/rpb#n611044", + "label" : "Kirchlicher Verein", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5185690-6", + "label" : "St.-Stanislaus-Kongregation", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4020517-4", + "label" : "Geschichte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "St.-Stanislaus-Kongregation | Geschichte", + "type" : [ "ComplexSubject" ] + } ], + "isbn" : [ "978-3-943915-53-2", "3-943915-53-0" ], + "responsibilityStatement" : [ "Manfred Göbel" ], + "edition" : [ "1. Auflage" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Der Stahlberg in Mainz : Festung - Spielplatz - Jugendhaus", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/114667449X", + "label" : "Göbel, Manfred / 1954-", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Verfasser/in" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "morisel Verlag" ], + "location" : [ "München" ], + "type" : [ "PublicationEvent" ] + } ], + "id" : "https://lobid.org/resources/036t220004", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31500000", + "label" : "Mainz, Kreisfreie Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + }, { + "id" : "https://rpb.lobid.org/spatial#n36", + "label" : "Katholische Kirche / Diözese Mainz", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-8.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-8.json new file mode 100644 index 0000000..af14abc --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-8.json @@ -0,0 +1,80 @@ +{ + "extent" : "172 Seiten : Illustrationen", + "rpbId" : "036t220066", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844030", + "label" : "Sakralbau", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/1238047971", + "label" : "Nikolaikirche / Alzey", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "http://rpb.lobid.org/sw/00Gn20k2843112a", + "label" : "Geschichte 1350-2020", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4016928-5", + "label" : "Festschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Nikolaikirche / Alzey | Geschichte 1350-2020 | Festschrift", + "type" : [ "ComplexSubject" ] + } ], + "responsibilityStatement" : [ "Herausgeberin Evangelische Kirchengemeinde Alzey ; verantwortlich, Redaktion: Hartmut Müller" ], + "alternativeTitle" : [ "Festschrift zur Wiederindienststellung zweitausendzwanzig" ], + "description" : [ { + "id" : "https://d-nb.info/121992976X/04", + "label" : "https://d-nb.info/121992976X/04" + } ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Die Alzeyer Nikolaikirche : Festschrift zur Wiederindienststellung 2020", + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Gn14m0054304b", + "label" : "Müller, Hartmut", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/oth", + "label" : "Sonstige" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Evangelische Kirchengemeinde" ], + "location" : [ "Alzey" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2020" + } ], + "id" : "https://lobid.org/resources/036t220066", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33100003", + "label" : "Alzey, Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-9.json b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-9.json new file mode 100644 index 0000000..6d01f27 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/comparisonRpbRecords/rpb-hebis-records-9.json @@ -0,0 +1,93 @@ +{ + "extent" : "72 S. : zahlr. Ill.", + "rpbId" : "036t000007", + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n102050", + "label" : "Ortsbeschreibung", + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + }, + "type" : [ "Concept" ] + }, { + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4019445-0", + "label" : "Gau-Algesheim", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "http://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4145395-5", + "label" : "Bildband", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ], + "label" : "Gau-Algesheim | Geschichte 1945- | Bildband", + "type" : [ "ComplexSubject" ] + } ], + "responsibilityStatement" : [ "Fotos: Philipp Eckert. [Texte: Ludwig Hellriegel]" ], + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "label" : "Rheinland-Pfälzische Bibliographie", + "type" : [ "Collection" ] + } ], + "type" : [ "BibliographicResource", "Book" ], + "title" : "Gau-Algesheim : mit Kamera und Herz eines Winzers gesehen", + "isPartOf" : [ { + "hasSuperordinate" : [ { + "label" : "Beiträge zur Geschichte des Gau-Algesheimer Raumes" + } ], + "numbering" : "42", + "type" : [ "IsPartOfRelation" ] + } ], + "@context" : "http://lobid.org/resources/context.jsonld", + "contribution" : [ { + "agent" : { + "id" : "http://rpb.lobid.org/sw/00Pn00m0007a", + "label" : "Eckert, Philipp", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/oth", + "label" : "Sonstige" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/118183575", + "label" : "Hellriegel, Ludwig / 1932-2011", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/oth", + "label" : "Sonstige" + }, + "type" : [ "Contribution" ] + } ], + "publication" : [ { + "publishedBy" : [ "Kügler" ], + "location" : [ "Ingelheim am Rhein" ], + "type" : [ "PublicationEvent" ], + "startDate" : "2000" + } ], + "id" : "https://lobid.org/resources/036t000007", + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33903019", + "label" : "Gau-Algesheim, Stadt", + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + }, + "type" : [ "Concept" ] + } ] +} diff --git a/conf/hebisMarc2lobid-transformation/fix/contribution.fix b/conf/hebisMarc2lobid-transformation/fix/contribution.fix new file mode 100644 index 0000000..4d30383 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/contribution.fix @@ -0,0 +1,398 @@ + +# 245 - Title Statement (NR) - Subfield: $c (NR) +add_array("responsibilityStatement[]") +copy_field("245??.c", "responsibilityStatement[].$append") + +add_array("contribution[]") + +# 100 and 700 + +# I separate the cleaning from the copying since the cleaning needs to be done for evey element. + +# 100 - Main Entry-Personal Name (NR) +# Subfields: $a (NR), $0 (R), $4 (R) +# Subfield: $M is a local field and can create duplicates and is therefore ignored. + + +do list(path:"100[01] ", "var":"$i") + # in some cases (e.g. 99370763882706441) we have an invalid repeated subfield $a + # since in the invalid record one cannot untangle the info easily (creates dublicate info and no roles) the fix scipts if the subfield $a is an array. + unless exists("$i.a.1") + call_macro("rolesFromSubfieldE") + unless exists("$i.4") + if any_match("type[]","ArchivedWebPage|Miscellaneous|Bibliography|Statistics|Legislation|PublishedScore|Game|Image|Map|Standard") + add_field("$i.4","cre") + elsif any_match("type[]","Periodical|Collection|Series|Newspaper|Journal|PublicationIssue|EditedVolume|Proceedings|Festschrift|ReferenceSource") + add_field("$i.4","edt") + elsif any_match("type[]","Book|MultiVolumeBook|Article|Thesis|OfficialPublication|Schoolbook|Biography|Report") + add_field("$i.4","aut") + else + add_field("$i.4","cre") + end + end + do list(path: "$i.4", "var":"$j") + if any_match("$j","[A-Za-z]{3}") + add_hash("contribution[].$append.agent") + do list(path:"$i.0","var":"$k") + if all_match("$k", "^\\(DE-588\\).*$") + # GND identifier + paste("contribution[].$last.agent.gndIdentifier","$k") + # GND Identifier id + paste("contribution[].$last.agent.id","$k") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("contribution[].$last.agent.@gndIdn") + copy_field("$gnd","contribution[].$last.agent.@gndIdn") + end + end + elsif any_match("$k","^.*DNB\\|(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$k","^\\(DE-101\\)(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + # name + call_macro("gndPersonCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel","contribution[].$last.agent.label") + # type + add_array("contribution[].$last.agent.type[]","Person") + # role + copy_field("$j","contribution[].$last.role.id") + # dateOfBirthAndDeath #will be split on a later stage + unless exists("$i.d.1") + copy_field("$i.d","contribution[].$last.agent.dateOfBirthAndDeath") + end + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"contribution[]",targetField:".agent",variable:"$i") + end + end + end +end + +# 700 - Added Entry-Personal Name (R) +# Subfields: $a (NR), $0 (R), $4 (R) +# Subfield: $M is a local field and can create duplicates and is therefore ignored. + +do list(path:"700[01] ", "var":"$i") + # in some cases (e.g. 99370763882706441) we have an invalid repeated subfield $a + # since in the invalid record one cannot untangle the info easily (creates dublicate info and no roles) the fix scipts if the subfield $a is an array. + unless exists("$i.a.1") + call_macro("rolesFromSubfieldE") + unless exists("$i.4") + add_field("$i.4","ctb") + end + do list(path: "$i.4", "var":"$j") + if any_match("$j","[A-Za-z]{3}") + add_hash("contribution[].$append.agent") + do list(path:"$i.0","var":"$k") + if all_match("$k", "^\\(DE-588\\).*$") + # GND identifier + paste("contribution[].$last.agent.gndIdentifier","$k") + # GND Identifier id + paste("contribution[].$last.agent.id","$k") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("contribution[].$last.agent.@gndIdn") + copy_field("$gnd","contribution[].$last.agent.@gndIdn") + end + end + elsif any_match("$k","^.*DNB\\|(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$k","^\\(DE-101\\)(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + # name + call_macro("gndPersonCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel","contribution[].$last.agent.label") + # type + add_array("contribution[].$last.agent.type[]","Person") + # role + copy_field("$j","contribution[].$last.role.id") + # dateOfBirthAndDeath #will be split on a later stage + unless exists("$i.d.1") + copy_field("$i.d","contribution[].$last.agent.dateOfBirthAndDeath") + end + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"contribution[]",targetField:".agent",variable:"$i") + end + end + end +end + +# 110 - Main Entry-Corporate Name (NR) +# Subfields: $a (NR), $0 (R), $4 (R) +# Subfield: $M is a local field and can create duplicates and is therefore ignored. + + + +do list(path:"110[012] ", "var":"$i") + # in some cases (e.g. 99370763882706441) we have an invalid repeated subfield $a + # since in the invalid record one cannot untangle the info easily (creates dublicate info and no roles) the fix scipts if the subfield $a is an array. + unless exists("$i.a.1") + call_macro("rolesFromSubfieldE") + unless exists("$i.4") + if any_match("type[]","ArchivedWebPage|Miscellaneous|Bibliography|Statistics|Legislation|PublishedScore|Game|Image|Map|Standard") + add_field("$i.4","cre") + elsif any_match("type[]","Periodical|Collection|Series|Newspaper|Journal|PublicationIssue|EditedVolume|Proceedings|Festschrift|ReferenceSource") + add_field("$i.4","edt") + elsif any_match("type[]","Book|MultiVolumeBook|Article|Thesis|OfficialPublication|Schoolbook|Biography|Report") + add_field("$i.4","aut") + else + add_field("$i.4","cre") + end + end + do list(path: "$i.4", "var":"$j") + if any_match("$j","[A-Za-z]{3}") + add_hash("contribution[].$append.agent") + do list(path:"$i.0","var":"$k") + if all_match("$k", "^\\(DE-588\\).*$") + # GND identifier + paste("contribution[].$last.agent.gndIdentifier","$k") + # GND Identifier id + paste("contribution[].$last.agent.id","$k") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("contribution[].$last.agent.@gndIdn") + copy_field("$gnd","contribution[].$last.agent.@gndIdn") + end + end + elsif any_match("$k","^.*DNB\\|(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$k","^\\(DE-101\\)(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + # name + call_macro("gndOtherCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "contribution[].$last.agent.label") + # type + add_array("contribution[].$last.agent.type[]","CorporateBody") + # role + copy_field("$j","contribution[].$last.role.id") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"contribution[]",targetField:".agent",variable:"$i") + end + end + end +end + +# 710 - Added Entry-Corporate Name (R) +# Subfields: $a (NR), $0 (R), $4 (R) +# Subfield: $M is a local field and can create duplicates and is therefore ignored. + + +do list(path:"710[012] ", "var":"$i") + # in some cases (e.g. 99370763882706441) we have an invalid repeated subfield $a + # since in the invalid record one cannot untangle the info easily (creates dublicate info and no roles) the fix scipts if the subfield $a is an array. + unless exists("$i.a.1") + call_macro("rolesFromSubfieldE") + unless exists("$i.4") + add_field("$i.4","ctb") + end + do list(path: "$i.4", "var":"$j") + if any_match("$j","[A-Za-z]{3}") + add_hash("contribution[].$append.agent") + do list(path:"$i.0","var":"$k") + if all_match("$k", "^\\(DE-588\\).*$") + # GND identifier + paste("contribution[].$last.agent.gndIdentifier","$k") + # GND Identifier id + paste("contribution[].$last.agent.id","$k") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("contribution[].$last.agent.@gndIdn") + copy_field("$gnd","contribution[].$last.agent.@gndIdn") + end + end + elsif any_match("$k","^.*DNB\\|(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$k","^\\(DE-101\\)(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + # name + call_macro("gndOtherCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "contribution[].$last.agent.label") + # type + add_array("contribution[].$last.agent.type[]","CorporateBody") + # role + copy_field("$j","contribution[].$last.role.id") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"contribution[]",targetField:".agent",variable:"$i") + end + end + end +end + +# 111 - Main Entry - Meeting Name (NR) +# 711 - Added Entry - Meeting Name (R) +# Subfields: $a (NR), $0 (R), $4 (R) +# Subfield: $M is a local field and can create duplicates and is therefore ignored. + +do list(path:"111[012] |711[012] ", "var":"$i") + # in some cases (e.g. 99370763882706441) we have an invalid repeated subfield $a + # since in the invalid record one cannot untangle the info easily (creates dublicate info and no roles) the fix scipts if the subfield $a is an array. + unless exists("$i.a.1") + unless exists("$i.4") + add_field("$i.4","oth") + end + do list(path: "$i.4", "var":"$j") + if any_match("$j","[A-Za-z]{3}") + add_hash("contribution[].$append.agent") + do list(path:"$i.0","var":"$k") + if all_match("$k", "^\\(DE-588\\).*$") + # GND identifier + paste("contribution[].$last.agent.gndIdentifier","$k") + # GND Identifier id + paste("contribution[].$last.agent.id","$k") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("contribution[].$last.agent.@gndIdn") + copy_field("$gnd","contribution[].$last.agent.@gndIdn") + end + end + elsif any_match("$k","^.*DNB\\|(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$k","^\\(DE-101\\)(.*)$") + copy_field("$k", "contribution[].$last.agent.@gndIdn") + replace_all("contribution[].$last.agent.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + # name + call_macro("gndEventCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "contribution[].$last.agent.label") + # type + add_array("contribution[].$last.agent.type[]","ConferenceOrEvent") + # role + copy_field("$j","contribution[].$last.role.id") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"contribution[]",targetField:".agent",variable:"$i") + end + end + end +end + + +add_array("contribution[].*.type[]", "Contribution") +replace_all("contribution[].*.agent.id","^\\(DE-588\\)(.*$)","https://d-nb.info/gnd/$1") +replace_all("contribution[].*.agent.gndIdentifier","^\\(DE-588\\)(.*$)","$1") +replace_all("contribution[].*.agent.label","(?>","") + uniq("$i.agent.altLabel[]") + replace_all("$i.agent.altLabel[].*","<<|>>","") +end + +uniq("contribution[]") diff --git a/conf/hebisMarc2lobid-transformation/fix/describedBy.fix b/conf/hebisMarc2lobid-transformation/fix/describedBy.fix new file mode 100644 index 0000000..5b7b7ca --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/describedBy.fix @@ -0,0 +1,120 @@ +nothing() # currently no transformation for describedBy is needed. + +# copy_field("almaMmsId", "describedBy.id") +# prepend("describedBy.id", "http://lobid.org/resources/") +# +# copy_field("almaMmsId", "describedBy.label") +# prepend("describedBy.label", "Webseite der hbz-Ressource ") +# +# add_array("describedBy.type[]", "BibliographicDescription") +# +# +# add_field("describedBy.inDataset.id","http://lobid.org/resources/dataset#!") +# +# add_field("describedBy.inDataset.label","lobid-resources – Der hbz-Verbundkatalog als Linked Open Data") +# +# add_array("describedBy.resultOf.type[]", "CreateAction") +# +# add_field("@createTime","$[createEndTime]") +# if all_match("@createTime","0") +# add_field("describedBy.resultOf.endTime","0000-00-00T00:00:00") +# else +# timestamp("describedBy.resultOf.endTime",format:"yyyy-MM-dd'T'HH:mm:ss", timezone:"Europe/Berlin") +# end +# +# +# add_field("describedBy.resultOf.instrument.id","https://github.com/hbz/lobid-resources") +# +# add_array("describedBy.resultOf.instrument.type[]", "SoftwareApplication") +# +# add_field("describedBy.resultOf.instrument.label","Software lobid-resources") +# + +paste("describedBy.resultOf.object.id","~http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22", "001","~%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C", join_char:"") + +# +# # 008/00-05 has the initial cataloguing date. We test strictly if 008 only has 6 digits, sometimes records have 8 digits that are not valid. +# # We use MNG info as fallback. +# # MNG is a ALMA-specific element (MNG .b only states the indexing date into ALMA.) +# +# if any_match("008", "^\\d{6}\\D.*") # 008/00-05 is the correct form for the cataloguing date in MARC. +# copy_field("008","@initialCataloguingDate") +# substring("@initialCataloguingDate","0","6") +# end +# +# if any_match("@initialCataloguingDate","^[0-4]\\d(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])") # Assume dates from 2000-01-01 to 2049-12-31 ( e.g. matching 491231) +# prepend("@initialCataloguingDate","20") +# elsif any_match("@initialCataloguingDate","\\d{2}(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])") # Assume dates from 1900-01-01 to 1999-12-31 ( e.g. matching 991231) +# prepend("@initialCataloguingDate","19") +# else +# copy_field("MNG .b","@initialCataloguingDate") +# end +# copy_field("@initialCataloguingDate","describedBy.resultOf.object.dateCreated") +# +# copy_field("MNG .d","describedBy.resultOf.object.dateModified") +# replace_all("describedBy.resultOf.object.dateCreated","-","") +# replace_all("describedBy.resultOf.object.dateCreated"," .*","") +# replace_all("describedBy.resultOf.object.dateCreated","c|©|\\s?|,|.|:|;|/|=","") +# replace_all("describedBy.resultOf.object.dateModified","-","") +# replace_all("describedBy.resultOf.object.dateModified"," .*","") +# replace_all("describedBy.resultOf.object.dateModified","c|©|\\s?|,|.|:|;|/|=","") +# #unless any_match("describedBy.resultOf.object.dateCreated","\\d{8}|\\d{4}") +# # remove_field("describedBy.resultOf.object.dateCreated") +# #end +# #unless any_match("describedBy.resultOf.object.dateModified","\\d{8}|\\d{4}") +# # remove_field("describedBy.resultOf.object.dateModified") +# #end +# replace_all("describedBy.resultOf.object.dateCreated","^(\\d{4})(\\d{2})(\\d{2})$","$1-$2-$3") +# replace_all("describedBy.resultOf.object.dateModified","^(\\d{4})(\\d{2})(\\d{2})$","$1-$2-$3") +# replace_all("describedBy.resultOf.object.dateCreated","^(\\d{4})$","$1-01-01") +# replace_all("describedBy.resultOf.object.dateModified","^(\\d{4})$","$1-01-01") +# call_macro("leapYearChecker",date:"describedBy.resultOf.object.dateCreated") +# call_macro("leapYearChecker",date:"describedBy.resultOf.object.dateModified") +# +# add_array("describedBy.resultOf.object.type[]", "DataFeedItem") +# +# copy_field("almaMmsId","describedBy.resultOf.object.label") +# prepend("describedBy.resultOf.object.label","hbz-Ressource ") +# append("describedBy.resultOf.object.label"," im Exportformat MARC21 XML") +# +# add_field("describedBy.resultOf.object.inDataset.id", "https://datahub.io/dataset/hbz_unioncatalog") +# +# add_field("describedBy.resultOf.object.inDataset.label", "hbz_unioncatalog") +# +# add_array("describedBy.license[]") +# add_field("describedBy.license[].$append.id","http://creativecommons.org/publicdomain/zero/1.0" ) +# add_field("describedBy.license[].$last.label","Creative Commons-Lizenz CC0 1.0 Universal" ) +# +# +# # TODO: It seems that there are a lot of organisations that are not in lobid, we should filter them out. +# +# # 040 - Cataloging Source (NR) - Subfield: $a (NR), $c (NR), $d (R) +# # ALMA has a lot of invalid repeated subfields $a +# +# do list(path: "040 ", "var":"$i") +# +# do list(path:"$i.a","var":"$j") +# unless exists("describedBy.resultOf.object.sourceOrganization.id") +# copy_field("$j", "describedBy.resultOf.object.sourceOrganization.id") +# end +# end +# do list(path:"$i.c","var":"$j") +# unless exists("describedBy.resultOf.object.provider.id") +# copy_field("$j", "describedBy.resultOf.object.provider.id") +# end +# end +# +# add_array("describedBy.resultOf.object.modifiedBy[]") +# do list(path:"$i.d", "var":"$j") +# copy_field("$j", "describedBy.resultOf.object.modifiedBy[].$append.id") +# end +# +# end +# +# call_macro("provenanceLinks",field: "describedBy.resultOf.object.sourceOrganization.id",label: "describedBy.resultOf.object.sourceOrganization.label") +# call_macro("provenanceLinks",field: "describedBy.resultOf.object.provider.id",label: "describedBy.resultOf.object.provider.label") +# do list(path:"describedBy.resultOf.object.modifiedBy[]","var":"$i") +# call_macro("provenanceLinks",field: "$i.id",label:"$i.label") +# end +# +# uniq("describedBy.resultOf.object.modifiedBy[]") diff --git a/conf/hebisMarc2lobid-transformation/fix/identifiers.fix b/conf/hebisMarc2lobid-transformation/fix/identifiers.fix new file mode 100644 index 0000000..8787f2a --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/identifiers.fix @@ -0,0 +1,172 @@ +copy_field("001","almaMmsId") + +paste("id", "~http://lobid.org/resources/", "001", "~#!", join_char: "") + + +# 024 - Other Standard Identifier (R) Subfield: $a (NR) $2 (NR) +# urn + +add_array("urn[]") + +do list(path: "0247?", "var": "$i") + if any_equal("$i.2","urn") + copy_field("$i.a","urn[].$append") + end +end + +# Sometimes urn are not set in 024 then we could pick up the missing from 856. +# 856 - Electronic Location and Access (R) - Subfield: $u (R) $3 (NR) +# 1. Indicator: 4 = HTTP +add_array("@urnLinks") + +do list(path:"856??", "var":"$i") + if all_match("$i.u", "^http.*(urn=|\\.(org|de)/)urn:.+$") # This should ignore repository links like: https://sammlungen.ulb.uni-muenster.de/urn/urn:nbn:de:hbz:6-85659520092 + copy_field("$i.u", "urn[].$append") + copy_field("$i.u", "@urnLinks.$append") + replace_all("urn[].$last", "^http.*[/=](urn:.+$)", "$1") + end +end + +replace_all("urn[].*","^(nbn:de:.*\\d)$","urn:$1") +uniq("@urnLinks") +uniq("urn[]") + +# 035 - System Control Number (R) - Subfield: $a (NR) + +do list(path: "035 ", "var":"$i") + if any_match("$i.a", "\\(DE-605\\)\\D\\D(.*)") + copy_field("$i.a", "hbzId") + end +end + +replace_all("hbzId","\\(DE-605\\)(.*)","$1") + +# add a deprecatedUri to all records with hbzId to document all old lobid urls. +if exists("hbzId") + paste("deprecatedUri", "~http://lobid.org/resources/", "hbzId", "~#!", join_char: "") +end + + +# 020 - International Standard Book Number (R) - $a (NR) +# source data sometimes provides repeated subfield $a even if this is not valid marc + +add_array("@isbn[]") +add_array("isbn[]") + +do list(path:"020 ", "var": "$i") + do list(path:"$i.a", "var": "$j") + copy_field("$j","@isbn[].$append") + end +end + +do list(path:"@isbn[]", "var": "$i") + isbn("$i", to: "clean") + copy_field("$i", "isbn[].$append") + copy_field("$i", "isbn[].$append") + if any_match("$i", ".{13}") + isbn("isbn[].$last", to:"isbn10") + elsif any_match("$i", ".{10}") + isbn("isbn[].$last", to:"isbn13") + end +end + +uniq("isbn[]") + + +# 022 - International Standard Serial Number (R) - Subfield $a (NR) +add_array("issn[]") +do list(path:"022? ", "var":"$i") + copy_field("$i.a", "issn[].$append") +end +replace_all("issn[].*", "-","") +uniq("issn[]") + +# 024 - Other Standard Identifier (R) - Subfield a (NR) 1. Indicator 2 = ISMN +add_array("ismn[]") +do list(path:"0242?", "var":"$i") + copy_field("$i.a", "ismn[].$append") +end +replace_all("ismn[].*", "-","") + + +# 024 (R) Subfield a (NR) 1. Indicator 7 = to defined Identifier +add_array("doi[]") +do list(path:"0247?", "var":"$i") + if all_equal("$i.2","doi") + copy_field("$i.a", "doi[].$append") + end +end + +# Sometimes dois are not set in 024 then we could pick up the missing from 856. +# 856 - Electronic Location and Access (R) - Subfield: $u (R) $3 (NR) +# 1. Indicator: 4 = HTTP +do list(path:"856??", "var":"$i") + if all_match("$i.u", ".*doi.org.*(10\\.(\\d)+/(\\S)+).*") # Volltext + copy_field("$i.u", "doi[].$append") + end +end +replace_all("doi[].*", ".*doi.org.*(10\\.(\\d)+/(\\S)+).*", "$1") +uniq("doi[]") + +# 035 - System Control Number (R) - Subfield: $a (NR) +add_array("oclcNumber[]") + +do list(path:"035 ", "var":"$i") + if all_match("$i.a", "\\(OCoLC\\)(.*)") + copy_field("$i.a", "oclcNumber[].$append") + end +end +replace_all("oclcNumber[].*", "\\(OCoLC\\)","") + +#160 - 016 - National Bibliographic Agency Control Number (R) +do list(path:"0167 ", "var":"$i") + unless exists("zdbId") + if any_match("$i.2","DE-600") + copy_field("$i.a","zdbId") + end + end + +# dnbId + if any_match("$i.2","DE-101") + copy_field("$i.a","dnbId") + end +end + +# 035 - System Control Number (R) - Subfield: $a (NR) +do list(path:"035 ", "var":"$i") + unless exists("zdbId") + if all_match("$i.a", "\\(DE-600\\)(.*)") + copy_field("$i.a", "zdbId") + end + end +end + +# clean up ZDB +replace_all("zdbId", "\\(DE-600\\)","") +replace_all("zdbId", "\\(DE-599\\)ZDB","") +replace_all("zdbId", "(\\d{1,7})-* ?-*([Xx\\d])","$1-$2") # CZ entries have incorrect whitespaces sometimes in the zdbId, we need to adjust them so only one "-" separates the first group of numbers from the last number. + + +copy_field("almaMmsId","rpbId") +lookup("rpbId","almaMmsId2rpbId",delete:"true") +replace_all("rpbId", "^RPB","") + +add_array("stockNumber[]") +do list(path:"028??", "var":"$i") + copy_field("$i.a", "stockNumber[].$append") +end + +unless exists("hbzId") + if exists("@inNZ") + copy_field("zdbId","@hbzId") + lookup("@hbzId","zdbId2oldHbzId",delete:"true") + if exists("@hbzId") + paste("deprecatedUri", "~http://lobid.org/resources/", "@hbzId", "~#!", join_char: "") + end + copy_field("@hbzId","hbzId") + end +end + +unless exists("@inNZ") + remove_field("hbzId") +end diff --git a/conf/hebisMarc2lobid-transformation/fix/item.fix b/conf/hebisMarc2lobid-transformation/fix/item.fix new file mode 100644 index 0000000..2c56c9a --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/item.fix @@ -0,0 +1,12 @@ +add_array("hasItem[]") +do list(path:"924??", "var": "$i") + if any_equal("$i.b", "DE-36") + add_hash( "hasItem[].$append") + add_field("hasItem[].$last.label", "lobid Bestandsressource") + add_array("hasItem[].$last.type[]", "Item","PhysicalObject") + copy_field("$i.g", "hasItem[].$last.callNumber") + add_field("hasItem[].$append.heldBy.id","http://lobid.org/organisations/DE-36#!") + add_field("hasItem[].$last.heldBy.label","Wissenschaftliche Stadtbibliothek Mainz") + paste("holding.id","~http://lobid.org/items/", "~WASMUSSHIERHIN:DE-36:","$i.g","~#!",join_char:"") # Checken ob 001 als Item Id genutzt werden soll. + end +end diff --git a/conf/hebisMarc2lobid-transformation/fix/macros.fix b/conf/hebisMarc2lobid-transformation/fix/macros.fix new file mode 100644 index 0000000..0d489cb --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/macros.fix @@ -0,0 +1,606 @@ +# alternateGraphicRepresation +do put_macro("alternateGraphicRepresationArrayOfObjects") + if exists("$[variable].6") + copy_field("$[variable].6","$[variable].linkageTest") + do list(path:"880??","var":"$880") + if in ("$[variable].linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + unless exists("$AGR.record.$[targetArray]") + add_array("$AGR.record.$[targetArray]") + end + copy_field("$880.a","$AGR.record.$[targetArray].$append$[targetField].label") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + add_array("alternateGraphicRepresentation[].$last.record.$[targetArray]") + copy_field("$880.a","alternateGraphicRepresentation[].$last.record.$[targetArray].$append$[targetField].label") + end + end + end + end +end + +do put_macro("alternateGraphicRepresationArrayOfStrings") + if exists("$[variable].6") + copy_field("$[variable].6","$[variable].linkageTest") + do list(path:"880??","var":"$880") + if in ("$[variable].linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + unless exists("$AGR.record.$[targetArray]") + add_array("$AGR.record.$[targetArray]") + end + copy_field("$880.a","$AGR.record.$[targetArray].$append") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + add_array("alternateGraphicRepresentation[].$last.record.$[targetArray]") + copy_field("$880.a","alternateGraphicRepresentation[].$last.record.$[targetArray].$append") + end + end + end + end +end + +do put_macro("alternateGraphicRepresationIsPartOf") + if exists("$[variable].6") + copy_field("$[variable].6","$[variable].linkageTest") + do list(path:"880??","var":"$880") + if in ("$[variable].linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + unless exists("$AGR.record.isPartOf[]") + add_array("$AGR.record.isPartOf[]") + end + add_array("$AGR.record.isPartOf[].$append.hasSuperordinate[]") + copy_field("$880.a","$AGR.record.isPartOf[].$last.hasSuperordinate[].$append.label") + copy_field("$880.v", "$AGR.record.isPartOf[].$last.numbering") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + add_array("alternateGraphicRepresentation[].$last.record.isPartOf[]") + add_array("alternateGraphicRepresentation[].$last.record.isPartOf[].$append.hasSuperordinate[]") + copy_field("$880.a","alternateGraphicRepresentation[].$last.record.isPartOf[].$last.hasSuperordinate[].$append.label") + copy_field("$880.v", "alternateGraphicRepresentation[].$last.record.isPartOf[].$last.numbering") + end + end + end + end +end + +# Additional contributor roles from subfield $e +do put_macro("rolesFromSubfieldE") + if exists("$i.e") + unless is_array("$i.4") + move_field("$i.4","$i.@4") + add_array("$i.4") + move_field("$i.@4","$i.4.$append") + end + do list(path:"$i.e","var":"$e") + if any_match("$e","(?i).*dars.*") + add_field("$i.4.$append","act") + elsif any_match("$e","(?i).*nach.*") + add_field("$i.4.$append","aft") + elsif any_match("$e","(?i).*vorl.*") + add_field("$i.4.$append","ant") + elsif any_match("$e","(?i).*(Artist|Künstler).*") + add_field("$i.4.$append","art") + elsif any_match("$e","(?i).*Vorw.*") + add_field("$i.4.$append","aui") + elsif any_match("$e","(?i).*Drehb.*") + add_field("$i.4.$append","aus") + elsif any_match("$e","(?i).*(author|Verfasser).*") + add_field("$i.4.$append","aut") + elsif any_match("$e","(?i).*B[ü|ue]hnenbild.*") # was http://purl.org/lobid/lv#StageDesign in old morph + add_field("$i.4.$append","std") + elsif any_match("$e","(?i).*choreogr.*") + add_field("$i.4.$append","chr") + elsif any_match("$e","(?i).*(mitarb|Beitr|Beitr|Komm\\.).*") + add_field("$i.4.$append","ctb") + elsif any_match("$e","(?i).*(Komp).*") + add_field("$i.4.$append","cmp") + elsif any_match("$e","(?i).*(Dir|Chorleit).*") + add_field("$i.4.$append","cnd") + elsif any_match("$e","(?i).*(Sammler).*") + add_field("$i.4.$append","col") + elsif any_match("$e","(?i).*(Kartogra).*") + add_field("$i.4.$append","col") + elsif any_match("$e","(?i).*(Tänzer).*") + add_field("$i.4.$append","dnc") + elsif any_match("$e","(?i).*Herausgebendes Organ.*") + add_field("$i.4.$append","isb") + elsif any_match("$e","(?i).*(hrsg|editor|Herausg).*|^Ed\\.$") + add_field("$i.4.$append","edt") + elsif any_match("$e","(?i).*(Stecher).*") + add_field("$i.4.$append","egr") + elsif any_match("$e","(?i).*(Widmungsempfänger).*") + add_field("$i.4.$append","hnr") + elsif any_match("$e","(?i).*(Ill|Zeichn).*") + add_field("$i.4.$append","ill") + elsif any_match("$e","(?i).*(Interviewter).*") + add_field("$i.4.$append","ive") + elsif any_match("$e","(?i).*(Interviewer).*") + add_field("$i.4.$append","ivr") + elsif any_match("$e","(?i).*(Instr|Cembalo|Fagott|Flöte|Gitarre|guitar|Harfe|harp|Horn|Klarinette|clarinet|Klavier|Piano|Kontrabass|Laute|Oboe|Org|Posaune|Saxophon|Schlagzeug|drums|Tromp|Violoncello|Violine).*") + add_field("$i.4.$append","itr") + elsif any_match("$e","(?i).*(Libr).*") + add_field("$i.4.$append","lbt") + elsif any_match("$e","(?i).*(Ltg).*") + add_field("$i.4.$append","ltg") + elsif any_match("$e","(?i).*(Moderation|moderat).*") + add_field("$i.4.$append","mod") + elsif any_match("$e","(?i).*(Musi).*") + add_field("$i.4.$append","mus") + elsif any_match("$e","(?i).*(Begr).*") + add_field("$i.4.$append","org") + elsif any_match("$e","(?i).*(Otogr).*") + add_field("$i.4.$append","pht") + elsif any_match("$e","(?i).*(Interpr).*") + add_field("$i.4.$append","prf") + elsif any_match("$e","(?i).*(Prod).*") + add_field("$i.4.$append","pro") + elsif any_match("$e","(?i).*(Adressat).*") + add_field("$i.4.$append","rcp") + elsif any_match("$e","(?i).*(Adressat).*") + add_field("$i.4.$append","red") + elsif any_match("$e","(?i).*(Gesang|Alt|Bariton|Bass|Baß|Counterten|Mezzosopr|Sopr|Ten|Singer).*") + add_field("$i.4.$append","sng") + elsif any_match("$e","(?i).*(sprecher).*") + add_field("$i.4.$append","spk") + elsif any_match("$e","(?i).*(bers|transla).*") + add_field("$i.4.$append","trl") + end + end + if is_empty("$i.4") + remove_field("$i.4") + end + uniq("$i.4") + end +end + +# Macro for combinedLabel Event / Meeting + +do put_macro("gndEventCombinedLabel") + add_array("$[field].@combinedLabel") # check if GND concept has combined variant + copy_field("$[field].a","$[field].@combinedLabel.$append") + copy_field("$[field].b","$[field].@combinedLabel.$append") + join_field("$[field].@combinedLabel", ". ") # This is the difference to gnd person + add_array("$[field].@combinedDetailsForEvents") + copy_field("$[field].n","$[field].@combinedDetailsForEvents.$append") + copy_field("$[field].g","$[field].@combinedDetailsForEvents.$append") + copy_field("$[field].d","$[field].@combinedDetailsForEvents.$append") + copy_field("$[field].c","$[field].@combinedDetailsForEvents.$append") + join_field("$[field].@combinedDetailsForEvents"," : ") + unless is_empty("$[field].@combinedDetailsForEvents.") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~ (", "$[field].@combinedDetailsForEvents", "~)", join_char:"") + end + if exists("$[field].t") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~: ","$[field].t", join_char:"") + end +end + +# Macro for combinedLabel Person + +do put_macro("gndPersonCombinedLabel") + add_array("$[field].@combinedLabel") # check if GND concept has combined variant + copy_field("$[field].a","$[field].@combinedLabel.$append") + copy_field("$[field].b","$[field].@combinedLabel.$append") + join_field("$[field].@combinedLabel", " ") # This is the difference to gnd non person + if exists("$[field].c") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~, ", "$[field].c", join_char:"") + end + if exists("$[field].g") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~ (", "$[field].g", "~)", join_char:"") + end + if exists("$[field].x") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~/","$[field].x") + end + if exists("$[field].t") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~: ","$[field].t", join_char:"") + end +end + + +# Macro for combinedLabel Non-Person and Non-Event + +do put_macro("gndOtherCombinedLabel") + add_array("$[field].@combinedLabel") # check if GND concept has combined variant + copy_field("$[field].a","$[field].@combinedLabel.$append") + copy_field("$[field].p","$[field].@combinedLabel.$append") + copy_field("$[field].b","$[field].@combinedLabel.$append") + join_field("$[field].@combinedLabel", ". ") # This is the difference to gnd person + if exists("$[field].c") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~, ", "$[field].c", join_char:"") + end + if exists("$[field].f") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~ (", "$[field].f", "~)", join_char:"") + end + if exists("$[field].g") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~ (", "$[field].g", "~)", join_char:"") + end + if exists("$[field].n") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~, ","$[field].n", join_char:"") + end + if exists("$[field].x") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~/","$[field].x") + end + if exists("$[field].t") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~: ","$[field].t", join_char:"") + end + if exists("$[field].z") + paste("$[field].@combinedLabel", "$[field].@combinedLabel", "~ (", "$[field].z", "~)", join_char:"") + end +end + +# for describedBy provenance info + +do put_macro("provenanceLinks") + lookup("$[field]","sigel2isilMap") + replace_all("$[field]", " ", "") + replace_all("$[field]", "\\/Inst","") + if any_match("$[field]",".*(hbz|HBZ).*") + replace_all("$[field]", "^.*$", "DE-605") + elsif any_match("$[field]","^NRW$|^NRW\\/Hist.Buch$") + replace_all("$[field]", "^.*$", "DE-605") + elsif any_equal("$[field]", "Springer") + replace_all("$[field]", "^.*$", "DE-He213") + elsif any_equal("$[field]", "BSZ") + replace_all("$[field]", "^.*$", "DE-576") + elsif any_equal("$[field]", "GBV") + replace_all("$[field]", "^.*$", "DE-601") + elsif any_equal("$[field]", "KOBV") + replace_all("$[field]", "^.*$", "DE-602") + elsif any_equal("$[field]", "HeBIS") + replace_all("$[field]", "^.*$", "DE-603") + elsif any_equal("$[field]", "BVB") + replace_all("$[field]", "^.*$", "DE-604") + elsif any_match("$[field]","^292$") + replace_all("$[field]", "^292$", "DE-101b") + elsif any_match("$[field]","(.*)\\/NWBib$") + replace_all("describedBy.resultOf.object.sourceOrganization.id", "(.*)\\/NWBib$", "DE-$1") + elsif any_match("$[field]",".*(dnb|DNB|GWDNB|GWDEB|GWDDB|DEDNM|DEDND).*") + replace_all("$[field]", "^.*$", "DE-101") + elsif any_match("$[field]","MiAaPQ") + replace_all("$[field]", "^.*$", "https://ebookcentral.proquest.com/") + elsif any_match("$[field]","CaPaEBR") + replace_all("$[field]", "^.*$", "http://www.ebrary.com/") + elsif any_match("$[field]", "^\\d{4}$") + lookup("$[field]", "picaCreatorId2Isil") + end + + + if any_match("$[field]","\\d*") + prepend("$[field]","DE-") + end + + unless any_match("$[field]","http.*") + unless any_match("$[field]","[A-Za-z]{2}-.*") + prepend("$[field]","XX-") + end + prepend("$[field]", "http://lobid.org/organisations/") + append("$[field]", "#!") + copy_field("$[field]","$[label]") + lookup("$[label]","lobidOrgLabels",delete:"true") + end + + unless exists("$[label]") + if any_contain("$[field]","lobid") + add_field("$[label]","lobid Organisation") + elsif any_contain("$[field]","ebookcentral") + add_field("$[label]","Ebookcentral Proquest") + elsif any_contain("$[field]","ebrary") + add_field("$[label]","Ebrary") + end + end + + +end + +# suppressed location + +do put_macro("suppressedLocation") + # MemberCode+LibraryCode+LocationCode + paste("$[targetField].suppressedLocation", "$i.M", "$[targetField].$[libraryCodeSubfield]", "$[targetField].$[locationCodeSubfield]", join_char: "+") + lookup("$[targetField].suppressedLocation", "suppressedLocations", delete: "true") + unless exists("$[targetField].suppressedLocation") + # MemberCode+LocationCode + paste("$[targetField].suppressedLocation", "$i.M", "$[targetField].$[locationCodeSubfield]", join_char: "+") + lookup("$[targetField].suppressedLocation", "suppressedLocations", delete: "true") + end +end + +# holding institution differentiating between library and sublibrary (libraryCode) and adding opacLink + +do put_macro("holdingLibrary+opacLink") + copy_field("$[mmsIdField]", "$i.@iz") + replace_all("$i.@iz",".*(\\d{4})$","$1") + lookup("$i.@iz", "alma-institution-code-to-isil") + copy_field("$[libraryCodeField]","$i.@sublibraryIsil") + lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") + lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") + # following fix checks for sublibrary codes and if they map to provided sublocation Isil + unless exists("$i.@sublibraryIsil") + paste("$i.@sublibraryIsil","$i.M","~+","$[libraryCodeField]",join_char:"") + lookup("$i.@sublibraryIsil", "sublibraryIsil",delete:"true") + end + if exists("$i.@sublibraryIsil") + copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.isil") + # if no mapping for a sublocation code is provided or no sublocation code exists ($i.w) the main library ISIL is used. + else + copy_field("$i.@iz", "hasItem[].$last.heldBy.isil") + end + call_macro("opacLink", field:"@sublibraryIsil") + unless exists("hasItem[].$last.seeAlso[].1") + call_macro("opacLink", field:"@iz") + end + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") + copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") + add_array("hasItem[].$last.inCollection[]") + paste("hasItem[].$last.inCollection[].$append.id", "~http://lobid.org/organisations/", "$i.@iz", "~#!", join_char:"") + copy_field("hasItem[].$last.inCollection[].$last.id", "hasItem[].$last.inCollection[].$last.label") + # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" + paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:", "$[mmsIdField]","~#!", join_char: "") +end + +# opacLink + +do put_macro("opacLink") + if exists("zdbId") + copy_field("$i.$[field]", "$i.@opacLinkZdbId") + lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") + split_field("$i.@opacLinkZdbId","\\{zdbid\\}") + elsif exists("hbzId") + copy_field("$i.$[field]", "$i.@opacLinkHbzId") + lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") + split_field("$i.@opacLinkHbzId","\\{hbzid\\}") + end + copy_field("$i.$[field]", "$i.@opacAlmaMmsId") + lookup("$i.@opacAlmaMmsId","isil2opac_almaMmsId", delete:"true") + split_field("$i.@opacAlmaMmsId","\\{almaMmsId\\}") + if exists("issn[].1") + copy_field("$i.$[field]", "$i.@opacLinkIssn") + lookup("$i.@opacLinkIssn","isil2opac_issn", delete:"true") + split_field("$i.@opacLinkIssn","\\{issn\\}") + end +# if exists("isbn[].1") +# copy_field("$i.$[field]", "$i.@opacLinkIsbn") +# lookup("$i.@opacLinkIsbn","isil2opac_isbn", delete:"true") +# split_field("$i.@opacLinkZdbId","\\{isbn\\}") +# end + add_array("hasItem[].$last.seeAlso[]") + if exists("$i.@opacLinkZdbId.1") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") + elsif exists("$i.@opacLinkHbzId.1") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") + elsif exists("$i.@opacAlmaMmsId.1") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacAlmaMmsId.1","almaMmsId","$i.@opacAlmaMmsId.2",join_char:"") +# elsif exists("$i.@opacLinkIsbn.1") +# paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") + elsif exists("$i.@opacLinkIssn.1") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkIssn.2",join_char:"") + end +end + +# for Schlagwortfolgen + +do put_macro("schlagwortfolge") + if exists("$[field]") + add_array("subject[].$append.type[]","ComplexSubject") + add_array("subject[].$last.label") + add_array("subject[].$last.componentList[]") + do list(path:"$[field]", "var":"$i") + add_array("subject[].$last.componentList[].$append.type[]") + if exists("$i.t") # Marker for Werktitel/Work even when the GND-enrichment is falsly labeld as Peron or differently + add_field("subject[].$last.componentList[].$last.type[].$append","Work") + else + do list(path: "$i.D", "var": "$k") + copy_field("$k","subject[].$last.componentList[].$last.type[].$append") + end + end + if any_equal("subject[].$last.componentList[].$last.type[]","p") + call_macro("gndPersonCombinedLabel",field:"$i") + elsif any_equal("subject[].$last.componentList[].$last.type[]","f") + call_macro("gndEventCombinedLabel",field:"$i") + else + call_macro("gndOtherCombinedLabel",field:"$i") + end + copy_field("$i.@combinedLabel", "subject[].$last.componentList[].$last.label") + unless any_equal("subject[].$last.componentList[].$last.label","") + copy_field("subject[].$last.componentList[].$last.label","subject[].$last.label.$append") + end + do list(path:"$i.0", "var": "$j") + if any_match("$j","^\\(DE-588\\)(.*)$") + add_field("subject[].$last.componentList[].$last.source.label","Gemeinsame Normdatei (GND)") + add_field("subject[].$last.componentList[].$last.source.id","https://d-nb.info/gnd/7749153-1") + copy_field("$j", "subject[].$last.componentList[].$last.id") + replace_all("subject[].$last.componentList[].$last.id","^\\(DE-588\\)(.*)$","https://d-nb.info/gnd/$1") + copy_field("$j", "subject[].$last.componentList[].$last.gndIdentifier") + replace_all("subject[].$last.componentList[].$last.gndIdentifier","^\\(DE-588\\)(.*)$","$1") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("subject[].$last.componentList[].$last.@gndIdn") + copy_field("$gnd","subject[].$last.componentList[].$last.@gndIdn") + end + end + elsif any_match("$j","^.*DNB\\|(.*)$") + copy_field("$j", "subject[].$last.componentList[].$last.@gndIdn") + replace_all("subject[].$last.componentList[].$last.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$j","^\\(DE-101\\)(.*)$") + copy_field("$j", "subject[].$last.componentList[].$last.@gndIdn") + replace_all("subject[].$last.componentList[].$last.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + copy_field("$i.d","subject[].$last.componentList[].$last.dateOfBirthAndDeath") # dates will be differentiated later in the process + end + join_field("subject[].$last.label"," | ") + end +end + + +do put_macro("subjectLabel") + add_array("subject[].$last.label") + add_array("$i.@name") + copy_field("$i.a","$i.@name.$append") + copy_field("$i.b","$i.@name.$append") + copy_field("$i.c","$i.@name.$append") + copy_field("$i.d","$i.@name.$append") + join_field("$i.@name") + copy_field("$i.@name","subject[].$last.label.$append") + copy_field("$i.x","subject[].$last.label.$append") + copy_field("$i.y","subject[].$last.label.$append") + copy_field("$i.z","subject[].$last.label.$append") + copy_field("$i.v","subject[].$last.label.$append") + join_field("subject[].$last.label"," / ") +end + +do put_macro("publication") + do list(path:"$[field]", "var":"$i") + add_hash( "publication[].$append") + do list(path: "$i.c", "var":"$j") + replace_all("$j", "\\[|\\]|ca. |c ", "") + unless exists("publication[].$last.startDate") + if any_match("$j",".*?([01]\\d{3}|20\\d{2}).*") + paste("publication[].$last.startDate", "$j") + end + end + unless exists("publication[].$last.endDate") + if any_match("$j",".*-[ ]?([01]\\d{3}|20\\d{2})$") + paste("publication[].$last.endDate", "$j") + end + end + end + add_array("publication[].$last.type[]","PublicationEvent") + add_array("publication[].$last.location[]") + copy_field("$i.a", "publication[].$last.location[].$append") + add_array("publication[].$last.publishedBy[]") + copy_field("$i.b", "publication[].$last.publishedBy[].$append") + if exists("$i.6") + copy_field("$i.6","$i.linkageTest") + do list(path:"880??","var":"$880") + if in ("$i.linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + unless exists("$AGR.record.publication[]") + add_array("$AGR.record.publication[]") + end + add_hash( "$AGR.record.publication[].$append") + add_array("$AGR.record.publication[].$last.location[]") + copy_field("$880.a", "$AGR.record.publication[].$last.location[].$append") + add_array("$AGR.record.publication[].$last.publishedBy[]") + copy_field("$880.b", "$AGR.record.publication[].$last.publishedBy[].$append") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + add_array("alternateGraphicRepresentation[].$last.publication[]") + add_hash( "alternateGraphicRepresentation[].$last.publication[].$append") + add_array("alternateGraphicRepresentation[].$last.publication[].$last.location[]") + copy_field("$880.a", "alternateGraphicRepresentation[].$last.publication[].$last.location[].$append") + add_array("alternateGraphicRepresentation[].$last.publication[].$last.publishedBy[]") + copy_field("$880.b", "alternateGraphicRepresentation[].$last.publication[].$last.publishedBy[].$append") + end + end + end + end + end +end + +do put_macro("manufacture") + do list(path:"$[field]", "var":"$i") + add_hash( "manufacture[].$append") + do list(path: "$i.c", "var":"$j") + replace_all("$j", "\\[|\\]|ca. |c ", "") + unless exists("manufacture[].$last.startDate") + if any_match("$j",".*?([01]\\d{3}|20\\d{2}).*") + paste("manufacture[].$last.startDate", "$j") + end + end + unless exists("manufacture[].$last.endDate") + if any_match("$j",".*-[ ]?([01]\\d{3}|20\\d{2})$") + paste("manufacture[].$last.endDate", "$j") + end + end + end + add_array("manufacture[].$last.type[]","Event") + add_array("manufacture[].$last.location[]") + copy_field("$i.a", "manufacture[].$last.location[].$append") + add_array("manufacture[].$last.manufacturedBy[]") + copy_field("$i.b", "manufacture[].$last.manufacturedBy[].$append") + if exists("$i.6") + copy_field("$i.6","$i.linkageTest") + do list(path:"880??","var":"$880") + if in ("$i.linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + unless exists("$AGR.record.manufacture[]") + add_array("$AGR.record.manufacture[]") + end + add_hash( "$AGR.record.manufacture[].$append") + add_array("$AGR.record.manufacture[].$last.location[]") + copy_field("$880.a", "$AGR.record.manufacture[].$last.location[].$append") + add_array("$AGR.record.manufacture[].$last.manufacturedBy[]") + copy_field("$880.b", "$AGR.record.manufacture[].$last.manufacturedBy[].$append") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + add_array("alternateGraphicRepresentation[].$last.manufacture[]") + add_hash( "alternateGraphicRepresentation[].$last.manufacture[].$append") + add_array("alternateGraphicRepresentation[].$last.manufacture[].$last.location[]") + copy_field("$880.a", "alternateGraphicRepresentation[].$last.manufacture[].$last.location[].$append") + add_array("alternateGraphicRepresentation[].$last.manufacture[].$last.publishedBy[]") + copy_field("$880.b", "alternateGraphicRepresentation[].$last.manufacture[].$last.publishedBy[].$append") + end + end + end + end + end +end + + +# lobid resources label +do put_macro("lobidResourcesFallbackLabel") + do list(path:"$[field]","var":"$array") + unless exists("$array.label") + if any_contain("$array.id","lobid") + add_field("$array.label","lobid Ressource") + end + end + end +end + +# validate leap years +do put_macro("leapYearChecker") + if any_match("$[date]","....-02-29") + unless any_match("$[date]","(((18|19|20)(04|08|[2468][048]|[13579][26]))|2000)-02-29") + replace_all("$[date]","(....-02)-29","$1-28") + end + end +end + + +# DE Sol1 Holding Tester excludes ZDB Records + +do put_macro("deSol1BridgeTester") + if any_match("$[holdingId]",".*7830$") + unless exists("zdbId") + add_field("$i.deSol1Bridge","true") + end + end +end diff --git a/conf/hebisMarc2lobid-transformation/fix/maps.fix b/conf/hebisMarc2lobid-transformation/fix/maps.fix new file mode 100644 index 0000000..338e0ae --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/maps.fix @@ -0,0 +1,793 @@ +put_filemap("./maps/maps-institutions.tsv","alma-iz-code-to-isil", sep_char:"\t",key_column:"2",value_column:"4",expected_columns:"-1") +put_filemap("./maps/maps-institutions.tsv","alma-institution-code-to-isil", sep_char:"\t",key_column:"3",value_column:"4",expected_columns:"-1") + +put_filemap("./maps/sublibraryIsil.tsv","sublibraryIsil", sep_char:"\t") +put_filemap("./maps/suppressedLocations.tsv","suppressedLocations", sep_char:"\t") + +# lobid Organisations id -> label +put_filemap("./maps/lobidOrganisationsMapping.tsv","lobidOrgLabels", sep_char:"\t",key_column:"0",value_column:"3",expected_columns:"-1") + +put_filemap("./maps/lobidOrganisationsMapping.tsv","sigel2isilMap", sep_char:"\t",key_column:"2",value_column:"1",expected_columns:"-1") +put_filemap("./maps/hbzowner2sigel.tsv","hbzowner2sigel", sep_char:"\t",key_column:"0",value_column:"2",expected_columns:"-1") + +put_filemap("./maps/picaCreatorId2Isil.tsv","picaCreatorId2Isil", sep_char:"\t", sep_char:"\t",key_column:"0",value_column:"2",expected_columns:"-1") + +# NWbib-> Wikidata Lookup +put_filemap("./maps/nwbibWikidataLabelTypeCoords.tsv","nwbibWikidataId", sep_char:"\t",key_column:"0",value_column:"1",expected_columns:"-1") +put_filemap("./maps/nwbibWikidataLabelTypeCoords.tsv","nwbibWikidataLabel", sep_char:"\t",key_column:"0",value_column:"2",expected_columns:"-1") +put_filemap("./maps/nwbibWikidataLabelTypeCoords.tsv","nwbibWikidataTypes", sep_char:"\t",key_column:"0",value_column:"3",expected_columns:"-1") +put_filemap("./maps/nwbibWikidataLabelTypeCoords.tsv","nwbibWikidataGeodata", sep_char:"\t",key_column:"0",value_column:"4",expected_columns:"-1") + +# DDC & DNB-Sachgruppen +put_filemap("./maps/deweyLabels.tsv","deweyLabels",sep_char:"\t") +put_filemap("./maps/dnbSachgruppen.tsv","dnbSachgruppen",sep_char:"\t") + +# Library Classifications +put_filemap("./maps/classification.tsv","classificationCode2Label", sep_char:"\t",key_column:"0",value_column:"1",expected_columns:"-1") +put_filemap("./maps/classification.tsv","classificationCode2Uri", sep_char:"\t",key_column:"0",value_column:"2",expected_columns:"-1") + +# RVK via Culturegraph +put_filemap("./maps/rvk.tsv","rvk", sep_char:"\t") + +# RPB SKOS Maps +put_rdfmap("./maps/lbz-notationen.ttl", "lbz-notationen", target: "skos:prefLabel", select_language: "de") # LBZ-Notationen fka rpb2 fka RPB-Sachgruppen und Zusätze +put_rdfmap("./maps/rpb-spatial.ttl", "rpbr", target: "skos:prefLabel", select_language: "de") # RPB-Raumsystematik aka rpbr +put_rdfmap("./maps/rpb.ttl", "rpb", target: "skos:prefLabel", select_language: "de") # RPB-Sachsystematik fka. Systematik der Rheinland-Pfälzischen Bibliographie + +# NWBib SKOS Maps +put_rdfmap("./maps/nwbib-spatial.ttl", "nwbib-spatial", target: "skos:prefLabel", select_language: "de") # NWBib-Raumsystematik +put_rdfmap("./maps/nwbib.ttl", "nwbib", target: "skos:prefLabel", select_language: "de") # Sachsystematik der Nordrhein-Westfälischen Bibliographie + +# Formschlagwort/Formangaben-Mapping -> GND (based on: https://wiki.dnb.de/download/attachments/106042227/AH-007.pdf) +put_filemap("./maps/formangabe.tsv","formschlagwort2Gnd", sep_char:"\t",key_column:"0",value_column:"2",expected_columns:"-1") +put_filemap("./maps/formangabe.tsv","Gnd2formschlagwort", sep_char:"\t",key_column:"2",value_column:"0",expected_columns:"-1") + +# almaMmsId -> rpbId +put_filemap("./maps/almaMmsId2rpbId.tsv","almaMmsId2rpbId", sep_char:"\t",key_column:"0",value_column:"1",expected_columns:"-1") + +# map zdbId to old hbzId(HT Nummer) based on the last aleph transformation +put_filemap("./maps/hbzId2zdbId.tsv","zdbId2oldHbzId", sep_char:"\t",key_column:"1",value_column:"0",expected_columns:"-1") + +# opac links +put_filemap("./maps/isil2opac_hbzId.tsv","isil2opac_hbzId", sep_char:"\t") +put_filemap("./maps/isil2opac_isbn.tsv","isil2opac_isbn", sep_char:"\t") +put_filemap("./maps/isil2opac_issn.tsv","isil2opac_issn", sep_char:"\t") +put_filemap("./maps/isil2opac_zdbId.tsv","isil2opac_zdbId", sep_char:"\t") +put_filemap("./maps/isil2opac_almaMmsId.tsv","isil2opac_almaMmsId", sep_char:"\t") + +# marcRel +put_filemap("./maps/marcRel.tsv","marcRel", sep_char:"\t",key_column:"0",value_column:"1",expected_columns:"-1") + +# collection labels +put_filemap("./maps/collectionLabels.tsv","collectionLabels", sep_char:"\t",key_column:"0",value_column:"1",expected_columns:"-1") + + +put_map("rswk-indicator", + "p": "Person", + "b": "CorporateBody", + "f": "ConferenceOrEvent", + "u": "Work", + "g": "PlaceOrGeographicName", + "s": "SubjectHeading" +) + +put_map("marc-publication-frequency-label", + "http://marc21rdf.info/terms/continuingfre#d" : "täglich", + "http://marc21rdf.info/terms/continuingfre#i" : "dreimal wöchentlich", + "http://marc21rdf.info/terms/continuingfre#c" : "zweimal wöchentlich", + "http://marc21rdf.info/terms/continuingfre#w" : "wöchentlich", + "http://marc21rdf.info/terms/continuingfre#e" : "vierzehntägig", + "http://marc21rdf.info/terms/continuingfre#s" : "halbmonatlich", + "http://marc21rdf.info/terms/continuingfre#m" : "monatlich", + "http://marc21rdf.info/terms/continuingfre#b" : "alle zwei Monate", + "http://marc21rdf.info/terms/continuingfre#q" : "vierteljährlich", + "http://marc21rdf.info/terms/continuingfre#f" : "halbjährlich", + "http://marc21rdf.info/terms/continuingfre#a" : "jährlich", + "http://marc21rdf.info/terms/continuingfre#g" : "alle zwei Jahre", + "http://marc21rdf.info/terms/continuingfre#h" : "alle drei Jahre", + "http://marc21rdf.info/terms/continuingfre#z" : "unregelmäßig oder sonstige Erscheinungsfrequenz" +) + +put_map("medium-id-to-label", + "Audio-Dokument": "http://purl.org/ontology/bibo/AudioDocument", + "Audio-Kassette": "http://id.loc.gov/vocabulary/carriers/ss", + "Audio-Visuell": "http://purl.org/ontology/bibo/AudioVisualDocument", + "Blindenschrift": "http://purl.org/library/BrailleBook", + "Print": "http://rdaregistry.info/termList/RDAproductionMethod/1010", + "Datenträger": "http://rdaregistry.info/termList/RDAMediaType/1003", + "Manuskript": "http://purl.org/ontology/bibo/Manuscript", + "Mikroformat": "http://rdaregistry.info/termList/RDAMediaType/1002", + "Kombination": "http://iflastandards.info/ns/isbd/terms/mediatype/T1008", + "Online-Ressource": "http://rdaregistry.info/termList/RDACarrierType/1018", + "Video": "http://rdaregistry.info/termList/RDAMediaType/1008", + "Schallplatte": "http://purl.org/ontology/mo/Vinyl", + "Sonstige": "http://purl.org/lobid/lv#Miscellaneous" +) + + +# + +put_map("ISO639-2-to-GND", + "aar": "Danakil-Sprache", + "abk": "Abchasisch", + "ace": "Aceh-Sprache", + "ach": "Acholi-Sprache", + "ada": "Adangme-Sprache", + "ady": "Adygisch", + "afa": "Hamitosemitische Sprachen", + "afh": "Afrihili", + "afr": "Afrikaans", + "ain": "Ainu-Sprache", + "aka": "Akan-Sprache", + "akk": "Akkadisch", + "alb": "Albanisch", + "ale": "Aleutisch", + "alg": "Algonkin-Sprachen", + "alt": "Altaisch", + "amh": "Amharisch", + "ang": "Altenglisch", + "anp": "Anga-Sprache", + "apa": "Apachen-Sprache", + "ara": "Arabisch", + "arc": "Aramäisch", + "arg": "Aragonesisch", + "arm": "Armenisch", + "arn": "Arauka-Sprachen", + "arp": "Arapaho-Sprache", + "art": "Kunstsprache", + "arw": "Arawak-Sprachen", + "asm": "Assamesisch", + "ast": "Asturisch", + "ath": "Athapaskische Sprachen", + "aus": "Australische Sprachen", + "ava": "Awarisch", + "ave": "Avestisch", + "awa": "Awadhī", + "aym": "Aymará-Sprache", + "aze": "Aserbeidschanisch", + "bad": "Banda-Sprache <Ubangi-Sprachen>", + "bai": "Bamileke-Sprache", + "bak": "Baschkirisch", + "bal": "Belutschisch", + "bam": "Bambara-Sprache", + "ban": "Balinesisch", + "baq": "Baskisch", + "bas": "Basaa-Sprache", + "bat": "Baltische Sprachen", + "bej": "Bedauye", + "bel": "Weißrussisch", + "bem": "Bemba-Sprache", + "ben": "Bengali", + "ber": "Berbersprachen", + "bho": "Bhojpurī", + "bih": "Bihari", + "bik": "Bikol-Sprache", + "bin": "Edo-Sprache", + "bis": "Beach-la-mar", + "bla": "Blackfoot-Sprache", + "bnt": "Bantusprachen", + "bos": "Bosnisch", + "bra": "Braj-Bhakha", + "bre": "Bretonisch", + "btk": "Batak-Sprache", + "bua": "Burjatisch", + "bug": "Bugi-Sprache", + "bul": "Bulgarisch", + "bur": "Birmanisch", + "byn": "Bilin-Sprache", + "cad": "Caddo-Sprachen", + "cai": "Indianersprachen, Zentralamerika", + "car": "Karibische Sprachen", + "cat": "Katalanisch", + "cau": "Kaukasische Sprachen", + "ceb": "Cebuano", + "cel": "Keltische Sprachen", + "cha": "Chamorro-Sprache", + "chb": "Chibcha-Sprachen", + "che": "Tschetschenisch", + "chg": "Tschagataisch", + "chi": "Chinesisch", + "chk": "Trukesisch", + "chm": "Tscheremissisch", + "chn": "Chinook-Jargon", + "cho": "Choctaw-Sprache", + "chp": "Chipewyan-Sprache", + "chr": "Cherokee-Sprache", + "chu": "Kirchenslawisch", + "chv": "Tschuwaschisch", + "chy": "Cheyenne-Sprache", + "cmc": "Cham-Sprachen", + "cop": "Koptisch", + "cor": "Kornisch", + "cos": "Korsisch", + "cpe": "Kreolisch-Englisch", + "cpf": "Kreolisch-Französisch", + "cpp": "Kreolisch-Portugiesisch", + "cre": "Cree-Sprache", + "crh": "Krimtatarisch", + "crp": "Kreolische Sprachen", + "csb": "Kaschubisch", + "cus": "Kuschitische Sprachen", + "cze": "Tschechisch", + "dak": "Dakota-Sprache", + "dan": "Dänisch", + "dar": "Darginisch", + "day": "Dajakisch", + "del": "Delaware-Sprache", + "den": "Slave-Sprache", + "dgr": "Dogrib-Sprache", + "din": "Dinka-Sprache", + "div": "Maledivisch", + "doi": "Dogrī", + "dra": "Drawidische Sprachen", + "dsb": "Niedersorbisch", + "dua": "Duala-Sprachen", + "dum": "Mittelniederländisch", + "dut": "Niederländisch", + "dyu": "Dyula-Sprache", + "dzo": "Dzongkha", + "efi": "Efik", + "egy": "Ägyptisch", + "eka": "Ekajuk", + "elx": "Elamisch", + "eng": "Englisch", + "enm": "Mittelenglisch", + "epo": "Esperanto", + "est": "Estnisch", + "ewe": "Ewe-Sprache", + "ewo": "Ewondo", + "fan": "Pangwe-Sprache", + "fao": "Färöisch", + "fat": "Fante-Sprache", + "fij": "Fidschi-Sprache", + "fil": "Pilipino", + "fin": "Finnisch", + "fiu": "Finnougrische Sprachen", + "fon": "Fon-Sprache", + "fre": "Französisch", + "frm": "Mittelfranzösisch", + "fro": "Altfranzösisch", + "frr": "Nordfriesisch", + "frs": "Ostfriesisch <Friesisch>", + "fry": "Friesisch", + "ful": "Ful", + "fur": "Friulisch", + "gaa": "Ga-Sprache", + "gay": "Gayo-Sprache", + "gba": "Gbaya-Sprache", + "gem": "Germanische Sprachen", + "geo": "Georgisch", + "ger": "Deutsch", + "gez": "Geez", + "gil": "Gilbertesisch", + "gla": "Gälisch-Schottisch", + "gle": "Irisch", + "glg": "Galicisch", + "glv": "Manx", + "gmh": "Mittelhochdeutsch", + "goh": "Althochdeutsch", + "gon": "Gondi-Sprache", + "gor": "Gorontalesisch", + "got": "Gotisch", + "grb": "Grebo-Sprache", + "grc": "Griechisch", + "gre": "Neugriechisch", + "grn": "Guaraní-Sprache", + "gsw": "Schweizerdeutsch", + "guj": "Gujarātī-Sprache", + "gwi": "Kutchin-Sprache", + "hai": "Haida-Sprache", + "hat": "Haïtien", + "hau": "Haussa-Sprache", + "haw": "Hawaiisch", + "heb": "Hebräisch", + "her": "Herero-Sprache", + "hil": "Hiligaynon-Sprache", + "him": "Himachali", + "hin": "Hindi", + "hit": "Hethitisch", + "hmn": "Miao-Sprachen", + "hmo": "Hiri-Motu", + "hrv": "Kroatisch", + "hsb": "Obersorbisch", + "hun": "Ungarisch", + "hup": "Hupa-Sprache", + "iba": "Iban-Sprache", + "ibo": "Ibo-Sprache", + "ice": "Isländisch", + "ido": "Ido", + "iii": "Lalo-Sprache", + "ijo": "Ijo-Sprache", + "iku": "Inuktitut", + "ile": "Interlingue", + "ilo": "Ilokano-Sprache", + "ina": "Interlingua", + "inc": "Indoarische Sprachen", + "ind": "Bahasa Indonesia", + "ine": "Indogermanische Sprachen", + "inh": "Inguschisch", + "ipk": "Inupik", + "ira": "Iranische Sprachen", + "iro": "Irokesische Sprachen", + "ita": "Italienisch", + "jav": "Javanisch", + "jbo": "Lojban", + "jpn": "Japanisch", + "jpr": "Jüdisch-Persisch", + "jrb": "Jüdisch-Arabisch", + "kaa": "Karakalpakisch", + "kab": "Kabylisch", + "kac": "Kachin-Sprache", + "kal": "Grönländisch", + "kam": "Kamba-Sprache", + "kan": "Kannada", + "kar": "Karenisch", + "kas": "Kaschmiri", + "kau": "Kanuri-Sprache", + "kaw": "Kawi", + "kaz": "Kasachisch", + "kbd": "Kabardinisch", + "kha": "Khasi-Sprache", + "khi": "Khoisan-Sprachen", + "khm": "Kambodschanisch", + "kho": "Sakisch", + "kik": "Kikuyu-Sprache", + "kin": "Rwanda-Sprache", + "kir": "Kirgisisch", + "kmb": "Kimbundu-Sprache", + "kok": "Konkani", + "kom": "Komi-Sprache", + "kon": "Kongo-Sprache", + "kor": "Koreanisch", + "kos": "Kosraeanisch", + "kpe": "Kpelle-Sprache", + "krc": "Karatschaiisch-Balkarisch", + "krl": "Karelisch", + "kro": "Kru-Sprachen", + "kru": "Oraon-Sprache", + "kua": "Kwanyama-Sprache", + "kum": "Kumükisch", + "kur": "Kurdisch", + "kut": "Kutenai-Sprache", + "lad": "Judenspanisch", + "lah": "Lahndā", + "lam": "Lamba-Sprache", + "lao": "Laotisch", + "lat": "Latein", + "lav": "Lettisch", + "lez": "Lesgisch", + "lim": "Limburgisch", + "lin": "Lingala", + "lit": "Litauisch", + "lol": "Mongo-Sprache", + "loz": "Rotse-Sprache", + "ltz": "Luxemburgisch", + "lua": "Luba-Lulua-Sprache", + "lub": "Luba-Katanga-Sprache", + "lug": "Ganda-Sprache", + "lui": "Luiseño-Sprache", + "lun": "Lunda-Sprache", + "luo": "Luo-Sprache", + "lus": "Lushai-Sprache", + "mac": "Makedonisch", + "mad": "Maduresisch", + "mag": "Magahī", + "mah": "Marschallesisch", + "mai": "Maithili", + "mak": "Makassarisch", + "mal": "Malayalam", + "man": "Malinke-Sprache", + "mao": "Maori-Sprache", + "map": "Austronesische Sprachen", + "mar": "Marathi", + "mas": "Massai-Sprache", + "may": "Malaiisch", + "mdf": "Mokscha-Sprache", + "mdr": "Mandaresisch", + "men": "Mende-Sprache", + "mga": "Mittelirisch", + "mic": "Micmac-Sprache", + "min": "Minangkabau-Sprache", +#: + "mkh": "Mon-Khmer-Sprachen", + "mlg": "Malagassi-Sprache", + "mlt": "Maltesisch", + "mnc": "Mandschurisch", + "mni": "Meithei-Sprache", + "mno": "Manobo-Sprache", + "moh": "Mohawk-Sprache", + "mon": "Mongolisch", + "mos": "Mossi-Sprache", +# + "mun": "Mundasprachen", + "mus": "Muskogisch", + "mwl": "Mirandesisch", + "mwr": "Mārwārī", + "myn": "Maya-Sprachen", + "myv": "Erza-Mordwinisch", + "nds": "Niederdeutsch", + "nep": "Nepali", + "new": "Newārī", + "nia": "Nias-Sprache", + "nic": "Nigerkordofanische Sprachen", + "niu": "Niue-Sprache", + "nno": "Nynorsk", + "nob": "Bokmål", + "nog": "Nogaisch", + "non": "Altnorwegisch", + "nor": "Norwegisch", + "nqo": "N'Ko", + "nso": "Pedi-Sprache", + "nub": "Nubische Sprachen", + "nwc": "Alt-Newārī", + "nya": "Nyanja-Sprache", + "nym": "Nyamwezi-Sprache", + "nyn": "Nkole-Sprache", + "nyo": "Nyoro-Sprache", + "nzi": "Nzima-Sprache", + "oci": "Okzitanisch", + "oji": "Ojibwa-Sprache", + "ori": "Oriya-Sprache", + "orm": "Ormo-Sprache", + "osa": "Osage-Sprache", + "oss": "Ossetisch", + "ota": "Osmanisch", + "oto": "Otomangue-Sprachen", + "paa": "Papuasprachen", + "pag": "Pangasinan-Sprache", + "pal": "Mittelpersisch", + "pam": "Pampanggan-Sprache", + "pan": "Pandschabi-Sprache", + "pap": "Papiamento", + "pau": "Palauisch", + "peo": "Altpersisch", + "per": "Persisch", + "phi": "Philippinen-Austronesisch", + "phn": "Phönikisch", + "pli": "Pāli", + "pol": "Polnisch", + "pon": "Ponapeanisch", + "por": "Portugiesisch", + "pra": "Prākrit", + "pro": "Altokzitanisch", + "pus": "Paschtu", + "que": "Quechua-Sprache", + "raj": "Rājasthānī", + "rap": "Osterinsel-Sprache", + "rar": "Rarotonganisch", + "roa": "Romanische Sprachen", + "roh": "Rätoromanisch", + "rom": "Romani", + "rum": "Rumänisch", + "run": "Rundi-Sprache", + "rup": "Aromunisch", + "rus": "Russisch", + "sad": "Sandawe-Sprache", + "sag": "Sango-Sprache", + "sah": "Jakutisch", + "sai": "Indianersprachen, Südamerika", + "sal": "Salish-Sprache", + "sam": "Samaritanisch", + "san": "Sanskrit", + "sas": "Sasak", + "sat": "Santālī", + "scn": "Sizilianisch", + "sco": "Schottisch", + "sel": "Selkupisch", + "sem": "Semitische Sprachen", + "sga": "Altirisch", + "sgn": "Zeichensprache", + "shn": "Schan-Sprache", + "sid": "Sidamo-Sprache", + "sin": "Singhalesisch", + "sio": "Sioux-Sprachen", + "sit": "Sinotibetische Sprachen", + "sla": "Slawische Sprachen", + "slo": "Slowakisch", + "slv": "Slowenisch", + "sma": "Südsaamisch", + "sme": "Nordsaamisch", + "smi": "Saamisch", + "smj": "Lulesaamisch", + "smn": "Inarisaamisch", + "smo": "Samoanisch", + "sms": "Skoltsaamisch", + "sna": "Schona-Sprache", + "snd": "Sindhi-Sprache", + "snk": "Soninke-Sprache", + "sog": "Sogdisch", + "som": "Somali", + "son": "Songhai-Sprache", + "sot": "Süd-Sotho-Sprache", + "spa": "Spanisch", + "srd": "Sardisch", + "srn": "Sranantongo", + "srp": "Serbisch", + "srr": "Serer-Sprache", + "ssa": "Nilosaharanische Sprachen", + "ssw": "Swasi-Sprache", + "suk": "Sukuma-Sprache", + "sun": "Sundanesisch", + "sus": "Susu", + "sux": "Sumerisch", + "swa": "Swahili", + "swe": "Schwedisch", + "syc": "Syrisch", + "syr": "Neuostaramäisch", + "tah": "Tahitisch", + "tai": "Thaisprachen", + "tam": "Tamil", + "tat": "Tatarisch", + "tel": "Telugu-Sprache", + "tem": "Temne-Sprache", + "ter": "Tereno-Sprache", + "tet": "Tetun-Sprache", + "tgk": "Tadschikisch", + "tgl": "Tagalog", + "tha": "Thailändisch", + "tib": "Tibetisch", + "tig": "Tigre-Sprache", + "tir": "Tigrinja-Sprache", + "tiv": "Tiv-Sprache", + "tkl": "Tokelauanisch", + "tlh": "Klingonisch", + "tli": "Tlingit-Sprache", + "tmh": "Tamaschek", + "tog": "Tonga <Bantusprache, Sambia>", + "ton": "Tongaisch", + "tpi": "Neumelanesisch", + "tsi": "Tsimshian-Sprache", + "tsn": "Tswana-Sprache", + "tso": "Tsonga-Sprache", + "tuk": "Turkmenisch", + "tum": "Tumbuka-Sprache", + "tup": "Tupi-Sprache", + "tur": "Türkisch", + "tut": "Altaische Sprachen", + "tvl": "Elliceanisch", + "twi": "Twi-Sprache", + "tyv": "Tuwinisch", + "udm": "Udmurtisch", + "uga": "Ugaritisch", + "uig": "Uigurisch", + "ukr": "Ukrainisch", + "umb": "Mbundu-Sprache", + "urd": "Urdu", + "uzb": "Usbekisch", + "vai": "Vai-Sprache", + "ven": "Venda-Sprache", + "vie": "Vietnamesisch", + "vol": "Volapük", + "vot": "Wotisch", + "wak": "Wakash-Sprachen", + "wal": "Walamo-Sprache", + "war": "Waray", + "was": "Washo-Sprache", + "wel": "Kymrisch", + "wen": "Sorbisch", + "wln": "Wallonisch", + "wol": "Wolof-Sprache", + "xal": "Kalmückisch", + "xho": "Xhosa-Sprache", + "yao": "Yao-Sprache <Bantusprache>", + "yap": "Yapesisch", + "yid": "Jiddisch", + "yor": "Yoruba-Sprache", + "ypk": "Yupik-Sprache", + "zap": "Zapotekisch", + "zbl": "Bliss-Symbol", + "zen": "Zenaga", + "zha": "Zhuang", + "znd": "Zande-Sprachen", + "zul": "Zulu-Sprache", + "zun": "Zuñi-Sprache", +# + "zza": "Zazaki" +) + + +put_map("ISO15924-to-script", + # source: https://www.loc.gov/marc/bibliographic/ecbdcntf.html + "$1": "Chinesisch, Japanisch, Koreanisch", + "(2": "Hebräisch", + "(3": "Arabisch", + "(B": "Lateinisch", + "(N": "Kyrillisch", + "(S": "Griechisch", + + # source: https://wiki.dnb.de/download/attachments/106042227/AH-003.pdf + "Adlm": "Adlam", + "Afak": "Afaka", + "Aghb": "Alwanisch", + "Ahom": "Ahom", + "Arab": "Arabisch", + "Aran": "Arabisch (Nastaliq)", + "Armi": "Reichsaramäisch", + "Armn": "Armenisch", + "Avst": "Avestisch", + "Bali": "Balinesisch", + "Bamu": "Bamun-Schrift", + "Bass": "Bassa", + "Batk": "Batak", + "Beng": "Bengalisch", + "Bhks": "Bhaiksuki", + "Blis": "Bliss-Symbole", + "Bopo": "Zhuyin", + "Brah": "Brahmi", + "Brai": "Brailleschrift", + "Bugi": "Buginesisch", + "Buhd": "Buid", + "Cakm": "Chakma", + "Cans": "Cree-Schrift", + "Cari": "Karisch", + "Cham": "Cham", + "Cher": "Cherokee", + "Cirt": "Cirthe", + "Copt": "Koptisch", + "Cpmn": "Kypro-minoisch; auch: Altkyprisch", + "Cprt": "Kyprisch", + "Cyrl": "Kyrillisch", + "Cyrs": "Kyrillisch (Altkirchenslawisch)", + "Deva": "Devanagari", + "Dogr": "Dogra", + "Dsrt": "Deseret-Alphabet; auch: Mormonen-Alphabet", + "Dupl": "Duployé-Kurzschrift", + "Egyd": "Demotisch", + "Egyh": "Hieratisch", + "Egyp": "Ägyptische Hieroglyphen", + "Elba": "Elbasan", + "Ethi": "Äthiopisch; auch: Ge’ez", + "Geok": "Chutsuri", + "Geor": "Georgisch", + "Glag": "Glagolitisch", + "Gong": "Gunjala Gondi", + "Gonm": "Masaram Gondi", + "Goth": "Gotisch", + "Gran": "Grantha", + "Grek": "Griechisch", + "Gujr": "Gujarati", + "Guru": "Gurmukhi", + "Hanb": "Chinesisch mit Bopomofo", + "Hang": "Hangul", + "Hani": "Chinesisch", + "Hano": "Hanunó'o", + "Hans": "Chinesisch (Kurzzeichen)", + "Hant": "Chinesisch (Langzeichen)", + "Hatr": "Hatran", + "Hebr": "Hebräisch", + "Hira": "Hiragana", + "Hluw": "Anatolische Hyroglyphen", + "Hmng": "Pahawh Hmong", + "Hmnp": "Nyiakeng Puachue Hmong", + "Hrkt": "Japanisch (Hiragana und Katakana)", + "Hung": "Altungarisch", + "Inds": "Indus-Schrift", + "Ital": "Altitalisch", + "Jamo": "Hangul (Jamo)", + "Java": "Javanisch", + "Jpan": "Japanisch (Kanji, Hiragana und Katakana)", + "Jurc": "Jurchen-Schrift", + "Kali": "Kayah-Li-Schrift", + "Kana": "Katakana", + "Khar": "Kharoshthi", + "Khmr": "Khmer-Schrift", + "Khoj": "Khojki", + "Kitl": "Khitan-Großschrift", + "Kits": "Khitan-Kleinschrift", + "Knda": "Kannada", + "Kore": "Koreanisch (Hangul und Hanja)", + "Kpel": "Kpelle-Schrift", + "Kthi": "Kaithi", + "Lana": "Lanna; auch: Tai Tham", + "Laoo": "Laotisch", + "Latf": "Lateinisch (Fraktur)", + "Latg": "Lateinisch (Gaelisch)", + "Latn": "Lateinisch", + "Leke": "Leke-Schrift", + "Lepc": "Lepcha-Schrift", + "Limb": "Limbu-Schrift", + "Lina": "Linearschrift A", + "Linb": "Linearschrift B", + "Lisu": "Lisu-Schrift; auch: Fraser-Schrift", + "Loma": "Loma-Schrift", + "Lyci": "Lykisch", + "Lydi": "Lydisch", + "Mahj": "Mahajani", + "Maka": "Makassar", + "Mand": "Mandäisch", + "Mani": "Manichäisch", + "Marc": "Marchen", + "Maya": "Maya-Schrift; auch: Maya-Hieroglyphen", + "Medf": "Medefaidrin", + "Mend": "Mende-Schrift; auch: Kikakui", + "Merc": "Meroitisch-demotische Kursivschrift", + "Mero": "Meroitische Hieroglyphen", + "Mlym": "Malayalam", + "Modi": "Modi", + "Mong": "Mongolisch", + "Moon": "Moonalphabet", + "Mroo": "Mro", + "Mtei": "Meitei Mayek", + "Mult": "Multani", + "Mymr": "Birmanisch", + "Narb": "Frühnordarabisch; auch: Altnordarabisch", + "Nbat": "Nabatäisch", + "Newa": "Newa", + "Nkdb": "Dongba", + "Nkgb": "Geba", + "Nkoo": "N’ko", + "Nshu": "Nushu; auch: Frauenschrift", + "Ogam": "Ogham", + "Olck": "Ol Chiki", + "Orkh": "Orchon-Runen; auch: Türkische Runen, Alttürkisch", + "Orya": "Oriya", + "Osge": "Orchon-Runen", + "Osma": "Osmaniya", + "Palm": "Palmyrenisch", + "Pauc": "Pau Cin Hau", + "Perm": "Altpermisch", + "Phag": "Phagpa; auch: Phagspa", + "Phli": "Inschriften-Pahlavi", + "Phlp": "Psalter-Pahlavi", + "Phlv": "Buch-Pahlavi", + "Phnx": "Phönizisch", + "Piqd": "Klingonisch (nach KLI)", + "Plrd": "Pollard-Miao", + "Prti": "Parthisch", + "Qaaa": "---4", + "Qabx": "---5", + "Rjng": "Rejang", + "Roro": "Rongorongo", + "Runr": "Runen-Alphabet", + "Samr": "Samaritanisch", + "Sara": "Sarati", + "Sarb": "Altsüdarabisch", + "Saur": "Saurashtri", + "Sgnw": "Gebärdenschrift", + "Shaw": "Shaw-Alphabet", + "Shrd": "Sharada", + "Shui": "Shuishu; auch: Sui-Schrift", + "Sidd": "Siddham", + "Sind": "Khudabadi-Alphabet", + "Sinh": "Singhalesisch", + "Sora": "Sorang-Sompeng", + "Soyo": "Sojombo", + "Sund": "Sundanesisch", + "Sylo": "Sylheti Nagari", + "Syrc": "Syrisch", + "Syre": "Syrisch (Estrangelo)", + "Syrj": "Syrisch (westliche Variante)", + "Syrn": "Syrisch (östliche Variante)", + "Tagb": "Tagbanuwa", + "Takr": "Takri", + "Tale": "Tai Le", + "Talu": "Neu-Tai-Lue; auch: Vereinfachtes Tai Lue", + "Taml": "Tamilisch; auch: Tamilschrift", + "Tang": "Xixia", + "Tavt": "Tai-Viet-Schrift", + "Telu": "Telugu", + "Teng": "Tengwar", + "Tfng": "Tifanagh", + "Tglg": "Baybayin; auch: Alibata", + "Thaa": "Thaana-Alphabet", + "Thai": "Thai", + "Tibt": "Tibetisch", + "Tirh": "Mithilakshar", + "Ugar": "Ugaritisch", + "Vaii": "Vai-Schrift", + "Visp": "Visible Speech", + "Wara": "Varang Kshiti", + "Wcho": "Wancho", + "Wole": "Woleai-Schrift", + "Xpeo": "Persische Keilschrift", + "Xsux": "Keilschrift", + "Yiii": "Yi", + "Zanb": "Horizontale Quadratschrift (Mongolei)", + "Zinh": '"Vererbte" Schrift', + "Zmth": "Mathematische Formel", + "Zsye": "Emojis", + "Zsym": "Symbole", + "Zxxx": "Nicht geschriebenes Dokument", + "Zyyy": "Schrift nicht identifiziert", + "Zzzz": "Kein Schriftcode vergeben" +) diff --git a/conf/hebisMarc2lobid-transformation/fix/mediumAndType.fix b/conf/hebisMarc2lobid-transformation/fix/mediumAndType.fix new file mode 100644 index 0000000..d728ade --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/mediumAndType.fix @@ -0,0 +1,782 @@ +add_array("medium[]") + +# The type and medium transformation has to be completly remodeled since the transformation was not identical with +# the old ALEPH Moprh Transformation. +# For leader specific values see: https://www.loc.gov/marc/bibliographic/bdleader.html +# @LeaderPos06 - Type of record +# @LeaderPos07 - Bibliographic level +# set @leaderType-variable +copy_field("leader","@leaderPos06-07") +substring("@leaderPos06-07","6","2") + +if any_match("@leaderPos06-07","a[acdm]|t.") + add_field("@leaderTyp","Book") + # TODO: Why is `m` not CF but CR sometimes. +elsif any_match("@leaderPos06-07","a[bis]|m[bis]") + add_field("@leaderTyp","Continuing Resources") +elsif any_match("@leaderPos06-07","m[^bis]") + add_field("@leaderTyp","Computer files") +elsif any_match("@leaderPos06-07","[cdij].") + add_field("@leaderTyp","Music") +elsif any_match("@leaderPos06-07","[ef].") + add_field("@leaderTyp","Map") +elsif any_match("@leaderPos06-07","[gkor].") + add_field("@leaderTyp","Visual materials") +elsif any_match("@leaderPos06-07","p.") + add_field("@leaderTyp","Mixed materials") +end + +if any_match("@leaderPos06-07",".a") + add_field("bibliographicLevel.label","Monographic component part") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Monographic_component_part") +elsif any_match("@leaderPos06-07",".b") + add_field("bibliographicLevel.label","Serial component part") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Serial_component_part") +elsif any_match("@leaderPos06-07",".c") + add_field("bibliographicLevel.label","Collection") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Collection") +elsif any_match("@leaderPos06-07",".d") + add_field("bibliographicLevel.label","Subunit") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Subunit") +elsif any_match("@leaderPos06-07",".i") + add_field("bibliographicLevel.label","Integrating resource") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Integrating_resource") +elsif any_match("@leaderPos06-07",".m") + add_field("bibliographicLevel.label","Monograph/Item") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item") +elsif any_match("@leaderPos06-07",".s") + add_field("bibliographicLevel.label","Serial") + add_field("bibliographicLevel.id","https://www.loc.gov/marc/bibliographic/bdleader.html#Serial") +end + +paste("@leaderTyp+008","@leaderTyp","008", join_char:"") + +# Collects Portfolio resource types +add_array("@PORtype") +do list(path: "POR ","var":"$i") + copy_field("$i.f","@PORtype.$append") +end + +# medium (Mappings based on old ALEPH-morph, Introx Mapping and 050 Mapping from Verbund) +# https://service-wiki.hbz-nrw.de/display/VDBE/ALT+-+Mapping+MAB2+-+MARC+21+-++Segmente+0---%2C+001+-+088+-+Kurzform + +# 337: https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=510164996&preview=/510164996/510165005/F8_Liste_061_.txt +# 338: Value list: https://service-wiki.hbz-nrw.de/pages/viewpage.action?pageId=510164996&preview=/510164996/510165006/F8_Liste_062_.txt + +# TODO: Check introx concerning possible mappings of 340 https://github.com/hbz/limetrans/blob/d2dff10e1b5cdf5699239a8f3474f8b652d582a3/src/main/resources/transformation/alma.fix#L629 + +add_array("@300a_mainExtend") +do list(path:"300 ", "var":"$i") + do list(path:"$i.a", "var":"$j") + copy_field("$j","@300a_mainExtend.$append") # All extent infos listed after : or ; are only refering to parts not the resource itself. + end +end + +replace_all("@300a_mainExtend.*", "[:;].*","") + +# medium: "Audio-Dokument": "http://purl.org/ontology/bibo/AudioDocument" + +if any_match("@leaderPos06-07","[ij].") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("006", "^[ij].*") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("007", "^[s].*") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("@leaderTyp+008", "Computer files(.{26})h.*") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("006", "m(.{8})h.*") # Pos00+09 + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("337 ", "audio") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("338 .a", "Audiodisk|Audiokassette|Audiocartridge|Notenrolle|Phonographenzylinder|Tonbandspule|Sonstige Tonträger") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("338 .b", "s") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("245[10]0.h", "^[Tt][oO].*|Audio-CD") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("natureOfContent[].*.label", ".*(Hörbuch|Hörspiel|Tonträger).*") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("@300a_mainExtend", ".*(Tonkassette|Schallplatte|Schallpl.|Magnetbandkassette|Kompaktkassette|Compact-Disk|Compact-Disc|CD |CD$).*") + add_field("medium[].$append.label","Audio-Dokument") +end + +# medium: "Audio-Kassette": "http://id.loc.gov/vocabulary/carriers/ss" +if any_match("007", "^ss.*") + add_field("medium[].$append.label","Audio-Kassette") +elsif any_match("245[10]0.h", "Kompaktkassette|MC|Tonkassette") + add_field("medium[].$append.label","Audio-Kassette") +elsif any_match("@300a_mainExtend", ".*Kompaktkassette.*") + add_field("medium[].$append.label","Audio-Kassette") +end + +# medium: "Audio-Visuell": "http://purl.org/ontology/bibo/AudioVisualDocument" & "Video": "http://rdaregistry.info/termList/RDAMediaType/1008" + + +if any_match("007", "^([gmv]).*") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("@leaderTyp+008", "Visual materials(.{32})[fmstv].*") # Pos33 TODO: Check if s (Slide/Dia) and t(Transparency) are correct since both are not video specific. + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("006", "^[gkor](.{15})[fmstv].*") # Pos00+16 Check if s (Slide/Dia) and t(Transparency) are correct since both are not video specific. + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("245[10]0.h", "Bildtonträger") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("@300a_mainExtend", ".*(DVD-Video|Video).*") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("337 .a", "video") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("337 .b", "v") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("338 .a", "^(Video).*|Sonstige Video-Datenträger$") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("338 .b", "vd") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +elsif any_match("natureOfContent[].*.label", ".*(DVD-Video|Film|Video[ck]assette).*") + add_field("medium[].$append.label","Video") + add_field("medium[].$append.label", "Audio-Visuell") +end + + + +# medium: "Blindenschrift": "http://purl.org/library/BrailleBook" +if any_match("007", "^fb.*|^tc.*") # TODO: This does not always seems to fit. Had fu but u is for unkown. Added text Pos 01 b (Braille) + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("@leaderTyp+008", "(Book|Music|Continuing Resources|Mixed materials)(.{23})[f].*") # Pos23 + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("@leaderTyp+008", "(Map|Visual materials)(.{29})[f].*") # Pos29 + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("006", "^[efgkor](.{11})[f].*") # Pos00+12 + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("006", "^[acdijpst](.{5})[f].*") # Pos00+06 + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("546 .a", ".*Braille.*") + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +elsif any_match("natureOfContent[].*.label", ".*Blindendruck.*") + add_field("medium[].$append.label","Blindenschrift") + add_field("medium[].$append.label", "Print") +end + +# medium: "Print": "http://rdaregistry.info/termList/RDAproductionMethod/1010" + + +# if any_match("@leaderPos06-07", "^[op].*") +# add_field("medium[].$append.label","Print") +#if any_match("006", "^[op].*") +# add_field("medium[].$append.label","Print") + +unless any_match("@leaderPos06-07","[dftgij].") + if any_match("007", "(^k[fhjs]|^t.).*") # I excluded ^o (Kit) and added all Pos01 for text except Braille. + add_field("medium[].$append.label","Print") + end +end +if any_match("@leaderTyp+008", "(Book|Music|Continuing Resources|Mixed materials)(.{23})[dr].*") # Pos23 + add_field("medium[].$append.label","Print") +elsif any_match("@leaderTyp+008", "(Map|Visual materials)(.{29})[dr].*") # Pos29 + add_field("medium[].$append.label","Print") +elsif any_match("@leaderTyp+008", "Map.*") + unless any_match("337.b","c") # add medium "print" if map is non-electronic (337b code b computermedia) + add_field("medium[].$append.label","Print") + end +# elsif any_match("@leaderTyp+008", "(Visual materials)(.{33})b.*") # Pos33 I excluded Kit +# add_field("medium[].$append.label","Print") +elsif any_match("006", "[acdpst]](.{5})[dr].*") # Pos00+06 Added Print for pos 006. + add_field("medium[].$append.label","Print") +elsif any_match("006", "[efgkor]](.11)[dr].*") # Pos00+12 Added Print for pos 006. + add_field("medium[].$append.label","Print") +elsif any_match("245[10]0.h", "Plakat") + add_field("medium[].$append.label","Print") +elsif any_match("25[09]??.a", "Nachdruck|Reprint") # Element 250 and 259 + add_field("medium[].$append.label","Print") +end + +# medium: "Datenträger": "http://rdaregistry.info/termList/RDAMediaType/1003" + +if any_match("@leaderPos06-07", "^m.*") + add_field("medium[].$append.label","Datenträger") +elsif any_match("006", "^m.*") + add_field("medium[].$append.label","Datenträger") +elsif any_match("007", "^c.*") + add_field("medium[].$append.label","Datenträger") +elsif any_match("@leaderTyp+008", "(Book|Music|Continuing Resources|Mixed materials)(.{23})[sq].*") # Pos23 + add_field("medium[].$append.label","Datenträger") +elsif any_match("@leaderTyp+008", "(Map|Visual materials)(.{29})[sq].*") # Pos29 + add_field("medium[].$append.label","Datenträger") +elsif any_match("006", "^[efgkor](.{11})[sq].*") # Pos00+12 + add_field("medium[].$append.label","Datenträger") +elsif any_match("006", "^[acdijpst](.{5})[sq].*") # Pos00+06 + add_field("medium[].$append.label","Datenträger") +elsif any_match("337 .a", "Computermedien") + add_field("medium[].$append.label","Datenträger") +elsif any_match("338 .a", ".*([Cc]omputer|[Cc]omputermedien|informatique|Computerdisk|computer disc|Magnetband|Speicherkarte).*") + add_field("medium[].$append.label","Datenträger") +elsif any_match("338 .b", "c.") + add_field("medium[].$append.label","Datenträger") +elsif any_match("340 .a", ".*(Elektronische Ressource|Blu-ray|Cartridge|CD|Computerdatei|Diskette|DVD|E-Books|Einsteckmodul|Festplatte|Kassette|Elektron. Ressource|Funknetz-Karte|Optische|USB-Stick).*") + add_field("medium[].$append.label","Datenträger") +elsif any_match("340 .a", ".*(Elektronische Ressource|Blu-ray|Cartridge|CD|Computerdatei|Diskette|DVD|E-Books|Einsteckmodul|Festplatte|Kassette|Elektron. Ressource|Funknetz-Karte|Optische|USB-Stick).*") + add_field("medium[].$append.label","Datenträger") +end + +# medium: "Manuskript": "http://purl.org/ontology/bibo/Manuscript" +# TODO: Check why so many Manuscripts are Print AND Manuscript. + + +if any_match("@leaderPos06-07", "^[dft].") + add_field("medium[].$append.label","Manuskript") +elsif any_match("006", "^[dft].*") + add_field("medium[].$append.label","Manuskript") +elsif any_match("natureOfContent[].*.label", ".*(Musikhandschrift|Handschrift).*") + add_field("medium[].$append.label","Manuskript") +end + + +# medium: "Mikroformat": "http://rdaregistry.info/termList/RDAMediaType/1002" + + +if any_match("007", "^h.*") + add_field("medium[].$append.label","Mikroformat") +elsif any_match("@leaderTyp+008", "(Book|Music|Continuing Resources|Mixed materials)(.{23})[abc].*") # Pos23 + add_field("medium[].$append.label","Mikroformat") +elsif any_match("@leaderTyp+008", "(Map|Visual materials)(.{29})[abc].*") # Pos29 + add_field("medium[].$append.label","Mikroformat") +elsif any_match("006", "^[efgkor](.{11})[abc].*") # Pos00+12 + add_field("medium[].$append.label","Mikroformat") +elsif any_match("006", "^[acdijpst](.{5})[abc].*") # Pos00+06 + add_field("medium[].$append.label","Mikroformat") +elsif any_match("245[10]0.h", ".*Mikrofor.*") + add_field("medium[].$append.label","Mikroformat") +elsif any_match("25[09]??.a", ".*Mikro.*") # Element 250 and 259 + add_field("medium[].$append.label","Mikroformat") +elsif any_match("337 .a","Mikroform|microform") + add_field("medium[].$append.label","Mikroformat") +elsif any_match("337 .b", "h") + add_field("medium[].$append.label","Mikroformat") +elsif any_match("338 .a", ".*[Mm]ikro.*") + add_field("medium[].$append.label","Mikroformat") +elsif any_match("338 .b", "he|hj") # TODO: More codes? + add_field("medium[].$append.label","Mikroformat") +elsif any_match("natureOfContent[].*.label", ".*Mikroform.*") + add_field("medium[].$append.label","Mikroformat") +end + +# medium: "Kombination": "http://iflastandards.info/ns/isbd/terms/mediatype/T1008" + +if any_match("@leaderPos06-07", "^[op].") + add_field("medium[].$append.label","Kombination") +elsif any_match("006", "^[op].*") + add_field("medium[].$append.label","Kombination") +elsif any_match("007", "^o.*") + add_field("medium[].$append.label","Kombination") +elsif any_match("245[10]0.h", ".*Medienkombination.*") + add_field("medium[].$append.label","Kombination") +elsif any_match("natureOfContent[].*.label", ".*Medienkombination.*") + add_field("medium[].$append.label","Kombination") +end + +# medium: "Online-Ressource": "http://rdaregistry.info/termList/RDACarrierType/1018" + +if any_match("@leaderTyp+008", "(Book|Music|Computer files|Continuing Resources|Mixed materials)(.{23})[o].*") # Pos23 + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("@leaderTyp+008", "(Map|Visual materials)(.{29})[o].*") # Pos29 + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("006", "^[efgkor](.{11})[o].*") # Pos00+12 + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("006", "^[acdijpst](.{5})[o].*") # Pos00+06 + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("007", "^cr.*") # Old Aleph Transformation maps Computerdatei(en) im Fernzugriff as online resource. We continue to map this in ALMA. + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("@300a_mainExtend", ".*([Oo]nline|ressource en ligne).*") # Pos00+06 + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("338 .a", "^.*([Oo]nline.*|online bron|online resource|online-ressource|Online-Ressource|ressource en ligne).*$") + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("338 .b", "cr") + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("340 .a", "Online-Ressource") + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("340 .*.a", "Online-Ressource") + add_field("medium[].$append.label","Online-Ressource") +elsif any_match("natureOfContent[].*.label", ".*(Website|Weblog).*") + add_field("medium[].$append.label","Online-Ressource") +end + +# medium: "Schallplatte": "http://purl.org/ontology/mo/Vinyl" + + +# TODO: HBZ Mappiong 050 -> Marc sets to none specific medium type Leader,06=j+ 007,00=s + 007,01=z . How to proceed here? +# TODO: What about Shellac? +# TODO: In all the MARC specifics for SChallplatten seem poor. + +if any_match("@300a_mainExtend", ".*Schallpl.*") + add_field("medium[].$append.label","Schallplatte") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("340 .a", "[Vv]inyl") + add_field("medium[].$append.label","Schallplatte") + add_field("medium[].$append.label","Audio-Dokument") +elsif any_match("340 .*.a", "[Vv]inyl") + add_field("medium[].$append.label","Schallplatte") + add_field("medium[].$append.label","Audio-Dokument") +end + + + + +# ----- type[] ----- +# All metadata records have type: "BibliographicResource" +# Base for type list is schema: https://github.com/hbz/lobid-resources/blob/eb1cbfaf013b03aee49291d8b3a4d00aa046e333/src/test/resources/schemas/type.json + +add_array("type[]","BibliographicResource") + +# There seems to be a discrepancy between the values in the schema enum and in the aggregation. +# Real data: http://lobid.org/resources/search?format=json&aggregations=type + +# type: "ArchivalResource" +# TODO: This is part of the schema but seems to be not really used. + +# type: "ArchivedWebPage" + +# There seems to be no mapping from 051.: .w to any MARC Values. +# Should we also add type WebPage ? + +if any_equal("natureOfContent[].*.label","Website") + do list(path: "856??", "var": "$i") + if any_equal("$i.z", "Archivierte Online-Ressource") + add_field("type[].$append","ArchivedWebPage") + elsif any_equal("$i.x", "Archivierte Online-Ressource") + add_field("type[].$append","ArchivedWebPage") + end + end + # if type is ArchivedWebPage also add element `webPageArchived` + add_array("webPageArchived[]") + do list(path: "856??", "var": "$i") + unless any_contain("$i.u", "edoweb") + copy_field("$i.u","webPageArchived[].$append.id") + copy_field("$i.u","webPageArchived[].$last.label") + replace_all("webPageArchived[].$last.label","http[s]?://(.*?)[/]?$","$1") + end + end +end + + +# type: "Bibliography" + + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})[bknq].*") # Pos24-27 + add_field("type[].$append","Bibliography") +elsif any_match("@leaderTyp+008", "Computer files(.{26})[e].*") # Pos26 + add_field("type[].$append","Bibliography") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})[bknq].*") # Pos00+07-10 + add_field("type[].$append","Bibliography") +elsif any_match("006", "^m(.{8})e.*") # Pos00+07-10 + add_field("type[].$append","Bibliography") +elsif any_match("natureOfContent[].*.label", ".*Bibliografie.*") + add_field("type[].$append","Bibliography") +end + +# type: "Biography" + +if any_match("@leaderTyp+008", "Book(.{34})[abc].*") # Pos34 + add_field("type[].$append","Biography") +elsif any_match("@leaderTyp+008", "Music(.{30}|.{31})[ab].*") # Pos30-31 + add_field("type[].$append","Biography") +elsif any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})h.*") # Pos34 # Book has no h but internal mapping uses this. + add_field("type[].$append","Biography") +elsif any_match("006", "^[at](.{17})[abc].*") # Pos00+18 + add_field("type[].$append","Biography") +elsif any_match("006", "^[cdij](.{12}|.{13})[ab].*") # Pos00+13-14 + add_field("type[].$append","Biography") +elsif any_match("006", "^[s](.{6}|.{7}|.{8}|.{9})h.*") # Pos00+07-10 + add_field("type[].$append","Biography") +elsif any_match("natureOfContent[].*.label", ".*(Autobiographie|Autobiografie|Biographie|Biografie).*") + add_field("type[].$append","Biography") +end + +# TODO: HT018860300 should also be tagged as Biography but it seems that 008 has no info for Biografie and is not transformed properly. + +# type: "Database +if any_match("@leaderTyp+008", "(Continuing Resources)(.{21})d.*") # Pos21 # d - Updating database + add_field("type[].$append","Database") +elsif any_match("natureOfContent[].*.label", ".*[Da]tenbank.*") + add_field("type[].$append", "Database") +elsif any_equal("@PORtype","DATABASE") + add_field("type[].$append","Database") +elsif any_match("090 .g", "a") + add_field("type[].$append","Database") +else + do list(path: "856??", "var": "$i") + if any_equal("$i.x", "DBIS") + add_field("type[].$append","Database") + end + end +end + +# type: "EditedVolume" + +if any_match("natureOfContent[].*.label", ".*Aufsatzsammlung.*") + add_field("type[].$append", "EditedVolume") +end + + +# type: "Festschrift" + + +if any_match("@leaderTyp+008", "Book(.{30})1.*") # Pos30 + add_field("type[].$append","Festschrift") +elsif any_match("006", "^[at](.{12})1.*") # Pos00+13 + add_field("type[].$append","Festschrift") +elsif any_match("title", ".*Festschrift.*") # often Festschrift is not stated as such in Control fields but in the title. + add_field("type[].$append","Festschrift") +elsif any_match("otherTitleInformation[]", ".*Festschrift.*") + add_field("type[].$append","Festschrift") +elsif any_match("natureOfContent[].*.label", ".*Festschrift.*") + add_field("type[].$append","Festschrift") +end + +# type: "image" + + +if any_match("007", "^[kr].*") # r = Remote-Sensing Image and k = Nonprojected graphic + add_field("type[].$append", "Image") +elsif any_match("245[10]0.h", ".*Bildli.*") + add_field("type[].$append", "Image") +elsif any_match("@leaderTyp+008", "Map(.{33}|.{34})[jo].*") # Pos33/34 + add_field("type[].$append","Image") +elsif any_match("@leaderTyp+008", "Visual materials(.{33})[dikln].*") # Pos33 + add_field("type[].$append","Image") +elsif any_match("006", "^[ef](.15}|.{16})[jo].*") # Pos00+16/17 + add_field("type[].$append","Image") +elsif any_match("006", "^[gkor](.15})[dikln].*") # Pos00+16 + add_field("type[].$append","Image") +elsif any_match("natureOfContent[].*.label", "Bild|Diagramm|Fotografie|Grafik|Plakat|Postkarte|Röntgenbild|Zeichnung|Technische Zeichnung") + add_field("type[].$append","Image") +end + + +# type: "Game" + + +if any_match("@leaderTyp+008", "(Computer files)(.{26})[g].*") # Pos26 + add_field("type[].$append","Game") +elsif any_match("@leaderTyp+008", "(Map)(.{33}|.{34})[pn].*") # Pos33|34 + add_field("type[].$append","Game") +elsif any_match("@leaderTyp+008", "(Visual materials)(.{33})g.*") # Pos33 + add_field("type[].$append","Game") +elsif any_match("006", "^[m](.{8})[g].*") # Pos00+09 + add_field("type[].$append","Game") +elsif any_match("006", "^[gkor](.{15})[g].*") # Pos00+16 + add_field("type[].$append","Game") +elsif any_match("006", "^[ef](.{14}|.{15})[p].*") # Pos00+15|16 + add_field("type[].$append","Game") +elsif any_match("natureOfContent[].*.label", "Spiel") + add_field("type[].$append", "Game") +end + +# type: "Map" +# TODO: HT017559543 should be no map. + + +if any_equal("@leaderTyp", "Map") + add_field("type[].$append","Map") +elsif any_match("006", "^[ef].*") + add_field("type[].$append","Map") +elsif any_match("007", "^[ad].*") + add_field("type[].$append","Map") +elsif any_match("natureOfContent[].*.label", ".*(Altkarte|Karte|Stadtplan|Weltkarte).*") + add_field("type[].$append", "Map") +end + +unless any_equal("type[]","Game") + unless any_match("@300a_mainExtend", ".*Spiel.*") + if any_match("@300a_mainExtend", ".*(Kt.|[kK]arte).*") + add_field("type[].$append","Map") + end + end +end + +# type: "Legislation" + + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})l.*") # Pos24/25/26/27 # What about g (legal article)? + add_field("type[].$append","Legislation") +elsif any_match("006", "^[ats](.{6}|.{7}|.{8}|.{9})l.*") # Pos00+07-10 + add_field("type[].$append","Legislation") +end + +# TODO: HT012338254 should be legislation too but 008 seems to be not set appropriately. Could add w - Law reports and digests ? + +# type: "MusicalRecording" +if any_match("@leaderPos06-07", "j.") # Pos24/25/26/27 # What about g (legal article)? + add_field("type[].$append","MusicalRecording") +elsif any_match("006", "^j.*") # Pos00 + add_field("type[].$append","MusicalRecording") +end + + +# type: "MultiVolumeBook" + +if any_match("leader", ".{7}m.{11}a.*") # Pos24/25/26/27 # What about g (legal article)? + add_field("type[].$append","MultiVolumeBook") +end + + +# type: "PublishedScore" (Musikalia) + + +# also if it has ismn +# hbz mapping for 051. 0 m seems odd 008,18-19 ||? 052. none at all. +unless any_match("@300a_mainExtend", ".*(CD|Schallpl).*") + if any_match("@leaderPos06-07", "^[cd].") + add_field("type[].$append","PublishedScore") + if any_match("@leaderPos06-07", "^.m") + add_field("type[].$append","Book") + end + elsif any_match("245[10]0.h", ".*Musikdruck.*") + add_field("type[].$append", "PublishedScore") + elsif exists("ismn[].1") + add_field("type[].$append", "PublishedScore") + elsif any_match("natureOfContent[].*.label", "Musikhandschrift") + add_field("type[].$append", "PublishedScore") + elsif any_match("@300a_mainExtend", ".*Partitur.*") + add_field("type[].$append", "PublishedScore") + end +end + +# type: "Newspaper" are always Periodicals too + + +if any_match("@leaderTyp+008", "(Continuing Resources)(.{21})n.*") # Pos21 + add_field("type[].$append","Newspaper") + add_field("type[].$append","Periodical") +elsif any_match("006", "^s(.{3})n.*") # Pos00+04 + add_field("type[].$append","Newspaper") + add_field("type[].$append","Periodical") +elsif any_match("natureOfContent[].*.label", ".*Zeitung.*") + add_field("type[].$append", "Newspaper") + add_field("type[].$append","Periodical") +end + +# type: "Standard" + + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})u.*") # Pos24-27 + add_field("type[].$append","Standard") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})u.*") # Pos00+07-10 + add_field("type[].$append","Standard") +elsif any_match("natureOfContent[].*.label", ".*(Norm|Richtlinie).*") + add_field("type[].$append", "Standard") +end + + +# type: "Periodical" + +# Introx has a very elaborate periodical system. + +# 052. il (Illustrierte) has no mapping. +# This also includes Series not just Journals is that right? Leader Pos. 7s = serial. +# If Continuing Resources 008 21 p = Periodical. What about j = journal? + +if any_match("@leaderTyp+008", "(Continuing Resources)(.{21})p.*") # Pos21 + add_field("type[].$append","Periodical") +elsif any_match("006", "^[s](.{3})p.*") # Pos00+04 + add_field("type[].$append","Periodical") +elsif any_match("natureOfContent[].*.label", "(?i).*(Zeitschrift|Periodical).*") + add_field("type[].$append", "Periodical") +elsif any_equal("906", "JOURNAL") + add_field("type[].$append","Periodical") +elsif any_equal("@PORtype","JOURNAL") + unless any_equal("@PORtype","BOOK") + add_field("type[].$append","Periodical") + end +end + +# type: "Proceedings" + + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{29})1.*") # Pos29 + add_field("type[].$append","Proceedings") +elsif any_match("006", "^[ast](.{11})1.*") # Pos00+04 + add_field("type[].$append","Proceedings") +elsif any_match("natureOfContent[].*.label", ".*(Kongress|Konferenzschrift).*") + add_field("type[].$append", "Proceedings") +end + + +# type: "PublicationIssue" + + +if exists("zdbId") + if exists("245??.n") + unless any_contain("245??.n","...") + add_field("type[].$append", "PublicationIssue") + end + elsif exists("77308.q") + add_field("type[].$append", "PublicationIssue") + end +end + +# TODO: HT003176544 transforms but is not PublicationIssue in lobid ALEPH. +# TODO: Also check if PublicationIssue and Periodical as type are mutual exclusive. +# TODO: Check if there are other versions of PublicationIssue + + +# type:"ReferenceSource" + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})[der].*") # Pos24-27 + add_field("type[].$append","ReferenceSource") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})[der].*") # Pos00+07-10 + add_field("type[].$append","ReferenceSource") +elsif any_match("natureOfContent[].*.label", ".*(Bestimmungsbuch|Enzyklopädie|Werkverzeichnis|[Ww](ö|(oe))rterbuch).*") + add_field("type[].$append", "ReferenceSource") +end + + +# type: "Report" + + +# TODO: hbz ALMA-Mapping sets 051. r to 008 24-27 t but this is technical report isnt that to narrow. +# The Mapping "Bericht|Erlebnisbericht|Forschungsbericht|Literaturbericht|Reisebericht" is broader. + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})t.*") # Pos24-27 + add_field("type[].$append","Report") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})t.*") # Pos00+07-10 + add_field("type[].$append","Report") +elsif any_match("natureOfContent[].*.label", ".*(Bericht|Erlebnisbericht|Forschungsbericht|Literaturbericht|Reisebericht).*") + add_field("type[].$append", "Report") +end + +# type: "Schoolbook" + + +# MAB 051. x mapping does not exist in hbz ALMA. + +if any_match("natureOfContent[].*.label", ".*(Schulbuch).*") + add_field("type[].$append", "Schoolbook") +elsif any_match("natureOfContent[].*.label", ".*Schulbuch.*") + add_field("type[].$append", "Schoolbook") +end + +# type: "Series" + + +# Not sure if there is an transformation for series in Introx. +# I excluded the the filter if there is an isbn since 008 21 m is specific for monographic series. +# TODO: Check why HT017894012 is not Series. It seems that it is Journal/Periodical. + +if any_match("@leaderTyp+008", "(Continuing Resources)(.{21})m.*") # Pos21 + add_field("type[].$append","Series") +elsif any_match("006", "^[s](.{3})m.*") # Pos00+04 + add_field("type[].$append","Series") +elsif any_match("natureOfContent[].*.label", ".*(Monografische Reihe|Schriftenreihe).*") + add_field("type[].$append", "Series") +end + +# type: "Statistics" + + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})s.*") # Pos24-27 + add_field("type[].$append","Statistics") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})s.*") # Pos00+07-10 + add_field("type[].$append","Statistics") +elsif any_match("natureOfContent[].*.label", ".*Statistik.*") + add_field("type[].$append", "Statistics") +end + + +# type: "Thesis" + +# Old mapping also includes u = Universitätsschrift and not just y Dissertation. But both is set as m +# Introx is setting this to Hochschulschrift not to Thesis which is more inclusive and would be a more acceptable mapping I think. +# We should decide what is better. + +if any_match("@leaderTyp+008", "(Book|Continuing Resources)(.{24}|.{25}|.{26}|.{27})m.*") # Pos24-27 + add_field("type[].$append","Thesis") +elsif any_match("006", "^[ast](.{6}|.{7}|.{8}|.{9})m.*") # Pos00+07-10 + add_field("type[].$append","Thesis") +elsif any_match("natureOfContent[].*.label", ".*Hochschulschrift.*") + add_field("type[].$append", "Thesis") +end + + +# type: "Book" + +unless exists("zdbId") + unless any_match("@leaderPos06-07",".[abis]") + unless any_match("type[]","Game|ArchivedWebPage") + unless any_match("008",".{24}","\\|###") + unless any_match("medium[].*.label",".*(Video|Audio).*") + if any_match("@leaderPos06-07", "^a[cdm]|t.|[cdm]m") + add_field("type[].$append","Book") + elsif any_match("006", "^[at].*") + add_field("type[].$append","Book") + elsif any_match("natureOfContent[].*.label", ".*(Adressbuch|Anthologie|Atlas|Auktionskatalog|Ausstellungskatalog|Backbuch|Bestimmungsbuch|Bildband|Bilderbuch|Drehbuch|Jugendbuch|Jugendsachbuch|Kinderbuch|Kindersachbuch|Kochbuch|Künstlerbuch|Lehrbuch|Lehrerhandbuch|Lesebuch|Liederbuch|Sachbilderbuch|Schulbuch|Tagebuch|Telefonbuch|[Ww]örterbuch).*") + add_field("type[].$append", "Book") + elsif any_match("090 .h", "[abcdefgh]") + add_field("type[].$append","Book") + end + end + end + end + end +end + + +# type: "Miscellaneous" + +# Set default type value "Sonstige" (Miscellaneous) if no type besides "BibliographicResource" is set. + +unless exists("type[].2") + add_field("type[].$append", "Miscellaneous") +end + +# type: "Article" + +# TODO: What is Aufsatz/Artikel inteded for only monograph, serial or continues ressource component? +# TODO: There is no mapping for 052/1-6/6=au Aufsatz +# TODO: What about leader07 a and b? https://www.loc.gov/marc/bibliographic/bdleader.html + +# TODO: Transformation needs to be added later. + +if any_match ("type[]", "Miscellaneous|Biography|Bibliography") + unless any_match ("medium[].*.label", ".*(Audio|Video).*") + if any_match("@leaderPos06-07",".a") + add_field("type[].$append","Article") + replace_all("type[].*","Miscellaneous","") + end + end +end + +# Set medium default to print if there is no medium and type "Book" exists. Else set "Sonstige" (Miscellaneous) as default medium. + +unless exists("medium[].1") + if any_equal("type[]", "Book") + add_field("medium[].$append.label", "Print") + elsif any_match("@leaderPos06-07", "a.*") + add_field("medium[].$append.label","Print") + else + # medium: "Sonstige": "http://purl.org/lobid/lv#Miscellaneous" + add_field("medium[].$append.label", "Sonstige") + end +end + +# Add ids for medium[]. + +do list(path:"medium[]", "var": "$i") + copy_field("$i.label","$i.id") + lookup("$i.id","medium-id-to-label") +end + +uniq("type[]") +uniq("medium[]") diff --git a/conf/hebisMarc2lobid-transformation/fix/otherFields.fix b/conf/hebisMarc2lobid-transformation/fix/otherFields.fix new file mode 100644 index 0000000..eb3e7d8 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/otherFields.fix @@ -0,0 +1,204 @@ +# 008 - Fixed-Length Data Elements-General Information (NR) - No subfields +# 041 - 041 - Language Code (R) + +add_array("@language") +copy_field("008", "@008-lang") +substring("@008-lang", "35", "3") +copy_field("@008-lang", "@language.$append.id") +copy_field("@008-lang", "@language.$last.label") +do list(path: "041[ 01] ","var":"$i") + copy_field("$i.[adj]", "@language.$append.id") + copy_field("$i.[adj]", "@language.$last.label") +end + +lookup("@language.*.label","ISO639-2-to-GND", delete:"true") + +add_array("language[]") +do list(path:"@language", "var":"$i") + unless any_match("$i.id","zxx|mul|sgn|und|.*[\\|\\#].*|\\s*") + if exists("$i.label") + copy_field("$i.id", "language[].$append.id") + copy_field("$i.label", "language[].$last.label") + elsif any_match("$i.id","[dD]eutsch") + add_field("language[].$append.id","ger") + add_field("language[].$last.label","Deutsch") + end + end +end + + +prepend("language[].*.id", "http://id.loc.gov/vocabulary/iso639-2/") + +uniq("language[]") + +# 300 - Physical Description (R) +# We reuse the introx transformation here. + +add_array("@300a") +add_array("@300c") +do list(path: "300 ", "var": "$i") + copy_field("$i.a", "@300a.$append") + do list(path: "$i.b", "var": "$j") + replace_all("$j", "\\s?[:;+(]?$", "") + copy_field("$j", "@300b") + end + copy_field("$i.c", "@300c.$append") + do list(path: "$i.e", "var": "$j") + replace_all("$j", "[.]?\\s?\\(?$", "") + copy_field("$j", "@300e") + end +end +if exists("@300a.1") + copy_field("@300a.1", "@300a1") + replace_all("@300a1", "\\s?[:;+(]?$", "") +end +if exists("@300a.2") + copy_field("@300a.2", "@300a2") + replace_all("@300a2", "\\s?[:;+]?$", "") +end +if exists("@300a.3") + copy_field("@300a.3", "@300a3") + replace_all("@300a3", "\\s?[:;+]?$", "") +end +if exists("@300c.1") + copy_field("@300c.1", "@300c1") + replace_all("@300c1", "[.]?\\s?[:;+(]?$", "") +end +if exists("@300c.2") + copy_field("@300c.2", "@300c2") + replace_all("@300c2", "[.]?\\s?[:;+)]?$", "") +end +if exists("@300a2") + if exists("@300c2") + paste("@300a2_punct", "@300a2", "~) ; ", join_char: "") + else + paste("@300a2_punct", "@300a2", "~)", join_char: "") + end +if exists("@300a3") + paste("@300a2_punct", "@300a2_punct", "~, (","@300a3", "~)", join_char: "") +end +end +if exists("@300b") + if exists("@300a1") + paste("@300b_punct", "~ : ", "@300b", join_char: "") + else + copy_field("@300b", "@300b_punct") + end +end +if exists("@300c1") + if exists("@300a1|@300b") + paste("@300c1_punct", "~ ; ", "@300c1", join_char: "") + else + copy_field("@300c1", "@300c1_punct") + end +end +copy_field("@300c2", "@300c2_punct") +if exists("300 .e") + if exists("@300[ac]1|@300b") + if exists("@300[ac]2") + paste("@300e_punct", "~ ; ", "@300e", "~ (", join_char: "") + else + paste("@300e_punct", "~ ; ", "@300e", join_char: "") + end + else + copy_field("@300e", "@300e_punct") + end +end +paste("extent", "@300a1", "@300b_punct", "@300c1_punct", "@300e_punct", "@300a2_punct", "@300c2_punct", join_char: "") +replace_all("extent", " ", " ") + + + +# 500 - General Note (R) Subfield: $a (NR) +add_array("note[]") +do list(path:"500 ", "var": "$i") + unless any_contain("$i.a","In:") + copy_field("$i.a", "note[].$append") + end +end +uniq("note[]") + + +do list(path:"500 ","var":"$i") + call_macro("alternateGraphicRepresationArrayOfStrings",targetArray:"note[]",variable:"$i") +end + + +# 520 - Summary, Etc. (R) Subfield: $a (NR), $b (NR) +# TODO: Check if 1. Indicator 1 (REVIEW) is really to count as abstract. Perhaps 2 (Scope and content) is a better fit. +# TODO: Get testdata. +add_array("abstract[]") +do list(path:"520[ 23] ", "var": "$i") + copy_field("$i.[ab]", "abstract[].$append") +end + +replace_all("abstract[].*","^$","$1") +replace_all("abstract[].*","<[\\/]?.{1,2}>","") + +# 502 - Dissertation Note (R) Subfield: $a (R) +add_array("thesisInformation[]") +do list(path:"502 ", "var": "$i") + copy_field("$i.a", "thesisInformation[].$append") + paste("thesisInformation[].$append","$i.c","$i.b","$i.d","$i.o","$i.g", join_char:", ") +end + + +# bibliographicCitation +# TODO: This element seems to be not very informative due to the distributed and uncomplete information. +# Also the element bibliographicCitation is confusing since it has a broader concept than the scope in lobid: only bibliographicInfo about issues/collection that an article belongs to. +# Do we need a filter only for articles? + +add_array("bibliographicCitation") + + +# 773 - Host Item Entry (R) - $t - Title (NR), $b - Edition (NR), $d - Place, publisher, and date of publication (NR), $g - Related parts (R), $n - Note (R) + + +do list(path: "500??", "var":"$i") + if any_contain("$i.a","In:") + copy_field("$i.a","bibliographicCitation.$append") + end +end + +unless exists("bibliographicCitation.1") + copy_field("77308.t","bibliographicCitation.$append") + copy_field("77308.b","bibliographicCitation.$append") + copy_field("77308.d","bibliographicCitation.$append") + do list(path:"77308.g", "var":"$i") + copy_field("$i","bibliographicCitation.$append") + end + do list(path:"77308.n", "var":"$i") + copy_field("$i","bibliographicCitation.$append") + end +end + + +replace_all("bibliographicCitation.*","<<|>>","") +replace_all("bibliographicCitation.*","^http","Siehe: http") +replace_all("bibliographicCitation.*","^In: ","") + +join_field("bibliographicCitation", "; ") + +# 540 - Terms Governing Use and Reproduction Note (R) + +# 542 - Information Relating to Copyright Status (R) - $n - Note (R) $u - Uniform Resource Identifier (R) + +add_array("license[]") +do list(path: "540??|542??", "var": "$i") + copy_field("$i.u", "license[].$append.id") + replace_all("license[].$last.id", "^(http://|https://)(.*)$","https://$2") + copy_field("$i.u", "license[].$last.label") + replace_all("license[].$last.label", "^(http://|https://)(.*)$","$2") +end + +uniq("license[]") + +add_array("langNote[]") +do list(path: "546??", "var": "$i") + add_array("$i.@langNote") + copy_field("$i.a", "$i.@langNote.$append") + copy_field("$i.b", "$i.@langNote.$append") + replace_all("$i.@langNote.*", "[.;]$", "") + join_field("$i.@langNote", "; ") + move_field("$i.@langNote", "langNote[].$append") +end diff --git a/conf/hebisMarc2lobid-transformation/fix/relatedRessourcesAndLinks.fix b/conf/hebisMarc2lobid-transformation/fix/relatedRessourcesAndLinks.fix new file mode 100644 index 0000000..ee819fd --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/relatedRessourcesAndLinks.fix @@ -0,0 +1,735 @@ +add_array("sameAs[]") + + +# 035 - System Control Number (R) - Subfield: $a (NR) +if any_match("almaMmsId","^.*6441$") + paste("sameAs[].$append.id", "~https://hub.culturegraph.org/resource/(DE-605)","almaMmsId",join_char:"") + add_field("sameAs[].$last.label","Culturegraph Ressource") +end + +# oclc + +do list(path: "oclcNumber[]", "var": "$i") + paste("sameAs[].$append.id","~http://worldcat.org/oclc/", "$i", join_char:"") + add_field("sameAs[].$last.label","OCLC Ressource") +end + +# zdb + +do list(path: "zdbId", "var": "$i") + paste("sameAs[].$append.id","~http://ld.zdb-services.de/resource/", "$i", join_char:"") + add_field("sameAs[].$last.label","ZDB-Ressource") +end + +# dnb + +do list(path: "dnbId", "var": "$i") + paste("sameAs[].$append.id","~https://d-nb.info/", "$i", join_char:"") + add_field("sameAs[].$last.label","DNB-Ressource") +end + +# rpb +do list(path: "rpbId", "var": "$i") + paste("sameAs[].$append.id","~https://rpb.lbz-rlp.de/", "$i",join_char:"") + add_field("sameAs[].$last.label","RPB-Ressource") +end + +# DBIS +do list(path: "856??", "var":"$i") + if exists("$i.u") + if all_match("$i.x", ".*DBIS.*") + copy_field("$i.u", "sameAs[].$append.id") + add_field("sameAs[].$last.label","DBIS-Ressource") + add_field("@dbis","DBIS-Ressource") + end + end +end + + +# nwbib, see below inCollection nwbib + + +# 770 - Supplement/Special Issue Entry (R) - Subflied: $i (R), $t (NR), $w (R) + +add_array("supplement[]") + +do list(path:"77008", "var":"$i") + if any_match("$i.i", "Beil.*|Supp.*") + add_hash( "supplement[].$append") + add_array("supplement[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","supplement[].$last.note[].$append") + end + paste("supplement[].$last.label","$i.t","$i.b",join_char:". ") + do list(path:"$i.w","var": "$j") + if all_match("$j","^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$j","supplement[].$last.id") + end + end + end +end + +replace_all("supplement[].*.id","^\\(DE-605\\)(.*)$","http://lobid.org/resources/$1#!") +replace_all("supplement[].*.id","^\\(DE-600\\)(.*)$","http://lobid.org/resources/ZDB-$1#!") +replace_all("supplement[].*.label","<<|>>","") +call_macro("lobidResourcesFallbackLabel",field:"supplement[]") + +# isPartOf +# it describes the relation between a published ressource and its superordinate series or collection. +# in contrast to containedIn it is a standalone publication + +add_array("isPartOf[]") + +# 773 - Host Item Entry (R) Subfield: $w (NR), $t (NR), $q (NR) + +unless any_match("leader", "^.{7}[ad].*") + do list(path: "773??", "var": "$i") + unless any_equal("$i.9","LOCAL") + do list(path: "$i.w", "var": "$j") + add_hash("isPartOf[].$append") + add_array("isPartOf[].$last.hasSuperordinate[]") + add_hash( "isPartOf[].$last.hasSuperordinate[].$append") + if all_match("$j", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$j", "isPartOf[].$last.hasSuperordinate[].$last.id") + end + copy_field("$i.t", "isPartOf[].$last.hasSuperordinate[].$last.label") + call_macro("alternateGraphicRepresationIsPartOf",variable:"$i") + copy_field("$i.q", "isPartOf[].$last.numbering") + add_array("isPartOf[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","isPartOf[].$last.note[].$append") + end + end + end + end +end + +# 490 - Series Statement (R) - Subfield: $a (R) +# 490 with 1. Indicator 1 has an identical entry in 830. So only 490 with 1. Indicator 0 + +do list(path: "4900?", "var": "$i") + add_hash("isPartOf[].$append") + add_array("isPartOf[].$last.hasSuperordinate[]") + add_hash( "isPartOf[].$last.hasSuperordinate[].$append") + add_array("isPartOf[].$last.hasSuperordinate[].$last.label") + do list(path:"$i.a", "var":"$j") + copy_field("$j", "isPartOf[].$last.hasSuperordinate[].$last.label.$append") + end + join_field("isPartOf[].$last.hasSuperordinate[].$last.label", " / ") + call_macro("alternateGraphicRepresationIsPartOf",variable:"$i") + + add_array("isPartOf[].$last.numbering") + do list(path:"$i.v", "var":"$j") + copy_field("$j", "isPartOf[].$last.numbering.$append") + end + join_field("isPartOf[].$last.numbering") +end + + +# 830 - Series Added Entry-Uniform Title (R) - Subfield: $w (R), $a (NR), $v (NR) +# Element can be repeatable with local entries they have subfield $M. + +do list(path: "830??", "var": "$i") + add_hash("isPartOf[].$append") + add_array("isPartOf[].$last.hasSuperordinate[]") + add_hash( "isPartOf[].$last.hasSuperordinate[].$append") + if all_match("$i.w", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$i.w", "isPartOf[].$last.hasSuperordinate[].$last.id") + end + do list(path:"$i.a", "var":"$j") + copy_field("$j", "isPartOf[].$last.hasSuperordinate[].$last.label.$append") + end + join_field("isPartOf[].$last.hasSuperordinate[].$last.label", " / ") + unless is_empty("isPartOf[].$last.hasSuperordinate[].1") + copy_field("$i.v", "isPartOf[].$last.numbering") + end +end + +do list(path: "4901?", "var": "$j") + call_macro("alternateGraphicRepresationIsPartOf",variable:"$j") +end + +replace_all("isPartOf[].*.hasSuperordinate[].*.label","<<|>>","") + + + +# containedIn +# containedIn only states ressources that are not published by them self but as part of a host ressource. + +add_array("containedIn[]") + +# 773 - Host Item Entry (R) - $w (R) + +if any_match("leader", "^.{7}[ad].*") + if exists("@titleOfSubSeries") + do list(path: "773??", "var": "$i") + unless any_equal("$i.9","LOCAL") + do list(path: "$i.w", "var": "$j") + add_hash("isPartOf[].$append") + add_array("isPartOf[].$last.hasSuperordinate[]") + add_hash( "isPartOf[].$last.hasSuperordinate[].$append") + if all_match("$j", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$j", "isPartOf[].$last.hasSuperordinate[].$last.id") + end + copy_field("$i.t", "isPartOf[].$last.hasSuperordinate[].$last.label") + copy_field("$i.q", "isPartOf[].$last.numbering") + add_array("isPartOf[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","isPartOf[].$last.note[].$append") + end + end + end + end + else # exclude subseries and subvolumes + do list(path:"773??", "var":"$i") + do list(path:"$i.w", "var":"$j") + if any_match("$j","^\\(DE-(600|605)\\).*") + add_hash( "containedIn[].$append") + copy_field("$j","containedIn[].$last.id") + copy_field("$i.t","containedIn[].$last.label") + end + end + end + end +end + +do list(path: "isPartOf[]","var":"$i") + unless is_empty("$i.hasSuperordinate[].1") + do list(path:"$i.hasSuperordinate[]", "var": "$j") ## This is the fallback for isPartOf[].*.hasSuperordinate[].*.label + unless exists("$j.label") + copy_field("@title", "$j.label") + end + end + add_array("$i.type[]", "IsPartOfRelation") + end +end + +replace_all("isPartOf[].*.hasSuperordinate[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("isPartOf[].*.hasSuperordinate[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") + +replace_all("isPartOf[].*.numbering", "^[©]|\\s?[,.:;/=]?$", "") + + +uniq("isPartOf[]") + + +replace_all("containedIn[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("containedIn[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") +replace_all("containedIn[].*.label","<<|>>","") +call_macro("lobidResourcesFallbackLabel",field:"containedIn[]") + +uniq("containedIn[]") + +# primaryForm + +# 776 - Additional Physical Form Entry (R) - $i (R), $w (R) + +add_array("primaryForm[]") + +do list(path: "77608", "var":"$i") + if any_match ("$i.i", ".*eproduktion von.*") + add_hash( "primaryForm[].$append") + if all_match("$i.w", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$i.w", "primaryForm[].$last.id") + end + paste("primaryForm[].$last.label", "$i.i", "$i.w") + replace_all("primaryForm[].$last.label", "\\((?:DE-600|DE-605)\\)", "") + add_array("primaryForm[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","primaryForm[].$last.note[].$append") + end + end +end + +replace_all("primaryForm[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("primaryForm[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") +call_macro("lobidResourcesFallbackLabel",field:"primaryForm[]") + +# secondaryForm + +add_array("secondaryForm[]") + +do list(path: "77608", "var":"$i") + if any_match ("$i.i", ".*eproduktion") + add_hash( "secondaryForm[].$append") + if all_match("$i.w", "^\\((?:DE-600|DE-605)\\)(.*)$") + do list(path:"$i.w", "var":"$j") + replace_all("$j", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") + replace_all("$j", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") + copy_field("$j", "secondaryForm[].$append.id") + copy_field("$i.i", "secondaryForm[].$last.label") + end + end + end +end + +call_macro("lobidResourcesFallbackLabel",field:"secondaryForm[]") + + + +# 856 - Electronic Location and Access (R) - Subfield: $u (R) $3 (NR) +# 1. Indicator: 4 = HTTP + +add_array("tableOfContents[]") + +do list(path: "856??", "var":"$i") + if all_match("$i.3", "^[Ii][Nn][Hh][aA][lL][tT][sS][vV].*") # Inhaltsverzeichnis + copy_field("$i.3", "tableOfContents[].$append.label") + copy_field("$i.u", "tableOfContents[].$last.id") + end +end + +add_array("description[]") + +do list(path: "856??", "var":"$i") + if all_match("$i.3", "^[Ii][Nn][Hh][aA][lL][tT][sS][tT].*") # Inhaltstext + copy_field("$i.3", "description[].$append.label") + copy_field("$i.u", "description[].$last.id") + end +end + +add_array("seeAlso[]") + +do list(path: "856??", "var":"$i") + if all_match("$i.3", "^[zZ][uU][sS].*") # Zusätzliche Angaben + copy_field("$i.3", "seeAlso[].$append.label") + copy_field("$i.u", "seeAlso[].$last.id") + end +end + +add_array("fulltextOnline[]") + +do list(path: "856??", "var":"$i") + if exists("$i.u") + unless any_match("$i.u",".*(doi.org|urn=urn:|\\.(org|de)/urn:).*") # This should not skip repository links like: https://sammlungen.ulb.uni-muenster.de/urn/urn:nbn:de:hbz:6-85659520092 + if all_equal("$i.z", "kostenfrei") # kostenfrei, added Digitalisierung not only Verlag or Agentur as filter + if all_match("$i.x", "Verlag|Agentur|Digitalisierung") + copy_field("$i.x", "fulltextOnline[].$append.label") + copy_field("$i.u", "fulltextOnline[].$last.id") + end + end + if all_match("$i.x", ".*(Archivierte Online|EZB|Online-Ausg|Resolving-System|Volltext).*") + copy_field("$i.x", "fulltextOnline[].$append.label") + copy_field("$i.u", "fulltextOnline[].$last.id") + end + if all_match("$i.3", "^[vV][oO][lL].*") # Volltext + copy_field("$i.3", "fulltextOnline[].$append.label") + copy_field("$i.u", "fulltextOnline[].$last.id") + end + end + end +end + +# doi for fullTextOnline and sameAs + +do list(path:"doi[]","var":"$i") + copy_field("$i", "fulltextOnline[].$append.id") + prepend("fulltextOnline[].$last.id","https://doi.org/") + copy_field("fulltextOnline[].$last.id", "sameAs[].$append.id") + add_field("fulltextOnline[].$last.label", "DOI-Link") + add_field("sameAs[].$last.label", "DOI-Link") +end + +# urn for fullTextOnline and sameAs + +do list(path:"@urnLinks","var":"$i") + copy_field("$i", "fulltextOnline[].$append.id") + copy_field("fulltextOnline[].$last.id", "sameAs[].$append.id") + add_field("fulltextOnline[].$last.label", "URN-Link") + add_field("sameAs[].$last.label", "URN-Link") +end + +if is_empty("@urnLinks") + do list(path:"urn[]","var":"$i") + copy_field("$i", "fulltextOnline[].$append.id") + prepend("fulltextOnline[].$last.id","https://nbn-resolving.org/") + copy_field("fulltextOnline[].$last.id", "sameAs[].$append.id") + add_field("fulltextOnline[].$last.label", "URN-Link") + add_field("sameAs[].$last.label", "URN-Link") + end +end + + +# TODO: hasVersion is outcommented since it needs some remodelling +# See https://github.com/hbz/lobid-resources/issues/1242 +# +# + + +# 775 - Other Edition Entry (R) - Subfield: $w (R), $t (NR), $i (R), $n (R), $x(NR), $z (R) +# 776 - Additional Physical Form Entry (R) - Subfield: $w (R), $t (NR), $i (R), $n (R), $x (NR), $z (R) + +add_array("related[]") +do list(path:"775??|776??", "var":"$i") + unless any_match ("$i.i", ".*eproduktion von.*|.*eproduktion") + do list_as("$hbzId":"$i.w", "$isbn":"$i.z", "$label":"$i.t", "$note":"$i.n", "$issn":"$i.x", "$info":"$i.i") + unless in("$isbn", "related[].*.isbn[]") # Skip duplicates + add_hash("related[].$append") + if all_match("$hbzId", "^\\((DE-600|DE-605)\\).*$") + copy_field("$hbzId", "related[].$last.id") + end + add_array("related[].$last.note[]") + paste("related[].$last.note[].$append","$info", "$note") + replace_all("related[].$last.note[].$last", "Erscheint auch als ","") + copy_field("$label", "related[].$last.label") + add_array("related[].$last.issn[]") + copy_field("$issn", "related[].$last.issn[].$append") + add_array("related[].$last.isbn[]") + isbn("$isbn", to:"isbn13") + copy_field("$isbn", "related[].$last.isbn[].$append") + isbn("$isbn", to:"isbn10") + copy_field("$isbn", "related[].$last.isbn[].$append") + end + end + end +end + +do list(path:"related[]", "var":"$i") + uniq("$i.isbn[]") + replace_all("$i.issn[].*","-","") +end + + + +do list(path: "50580", "var":"$i") + if any_match("$i.6","[A-Z]{2}\\d*") + add_hash("related[].$append") + paste("related[].$last.id","~http://lobid.org/resources/","$i.6","~#!",join_char:"") + copy_field("$i.t","related[].$last.label") + add_array("related[].$last.note[]") + copy_field("$i.g","related[].$last.note[].$append") + end +end + +replace_all("related[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("related[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") +replace_all("related[].*.label","<<|>>","") +call_macro("lobidResourcesFallbackLabel",field:"related[]") + +add_array("inCollection[]") + +# hbz NZ +# digiBib hbz Vk + +if any_equal("MBD .M", "49HBZ_NETWORK") + add_field("inCollection[].$append.id", "https://nrw.digibib.net/search/hbzvk/") + add_field("inCollection[].$last.label", "DigiBib hbz Verbundkatalog") + if any_match("POR .A", ".*") + add_field("@inNZ", "true") + else + unless any_match("035 .a", "^\\(EXLCZ\\).*") + add_field("@inNZ", "true") + end + end +end + +if exists("@inNZ") + add_field("inCollection[].$append.id", "http://lobid.org/organisations/DE-655#!") + add_field("inCollection[].$last.label", "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone") +end + +# zdb + +if exists("zdbId") + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT014846970#!") + add_field("inCollection[].$last.label", "Zeitschriftendatenbank (ZDB)") +end + + +# ezb + +# 856 - Electronic Location and Access (R) - Subfield: $x - Nonpublic note (R) +# TODO: Check if src/test/resources/alma-fix/(CKB)5280000000199164.xml is also an EZB titel even when it has no 865. +do list(path:"856??", "var":"$i") + if any_equal("$i.x","EZB") # can test x and x.* + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT016356466#!") + add_field("inCollection[].$last.label", "Elektronische Zeitschriftenbibliothek (EZB)") + elsif any_match("$i.u","http://www.bibliothek.uni-regensburg.de/ezeit.*") + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT016356466#!") + add_field("inCollection[].$last.label", "Elektronische Zeitschriftenbibliothek (EZB)") + end +end + + +# edoweb + +do list(path:"856??", "var":"$i") + if any_match("$i.u","^.*edoweb.*") # can test x and x.* + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT016925914#!") + add_field("inCollection[].$last.label", "Edoweb Rheinland-Pfalz") + end +end + +# publisso + + +# TODO: AlephMorph checked for ellinet in "078r1.a" but publisso is also stated in the Link URI is that enough? +do list(path:"856??", "var":"$i") + if any_match("$i.u","^.*publisso.*") # can test x and x.* + add_field("inCollection[].$append.id", "http://repository.publisso.de") + add_field("inCollection[].$last.label", "Fachrepositorium Lebenswissenschaften") + end +end + +# nwbib + +# 084 - Other Classification Number (R), Subfield: $2 (NR) + +if any_equal("inCollection[].*.id", "http://lobid.org/organisations/DE-655#!") # only assign hbz NZ records and filter out CZ oder IZ records + do list(path:"084 ", "var":"$i") + if any_equal("$i.2","nwbib") + unless any_equal("inCollection[].*.id","http://lobid.org/resources/HT014176012#!") + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT014176012#!") + add_field("inCollection[].$last.label", "Nordrhein-Westfälische Bibliographie (NWBib)") + end + end + end + + do list(path:"960??", "var":"$i") + if any_contain("$i.n","NWBib") + unless any_equal("inCollection[].*.id","http://lobid.org/resources/HT014176012#!") + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT014176012#!") + add_field("inCollection[].$last.label", "Nordrhein-Westfälische Bibliographie (NWBib)") + end + end + end + + if any_equal("inCollection[].*.id", "http://lobid.org/resources/HT014176012#!") + paste("sameAs[].$append.id","~http://nwbib.de/", "almaMmsId", "~#!",join_char:"") + add_field("sameAs[].$last.label","NWBib-Ressource") + end + + # nwbib Zeitschriften + do list(path:"960??", "var":"$i") + if any_contain("$i.n","NWBib-Zeitschrift-6") + add_field("inCollection[].$append.id", "https://nwbib.de/journals") + add_field("inCollection[].$last.label", "Laufend ausgewertete NWBib-Zeitschriften") + end + end +end + +#rpb + +# 084 - Other Classification Number (R), Subfield: $2 (NR) +if exists("rpbId") + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT013494180#!") + add_field("inCollection[].$last.label", "Rheinland-Pfälzische Bibliographie (RPB)") +end + +do list(path:"084??", "var":"$i") + if any_equal("$i.2","rpb") + if any_match("$i.a","^rpb.*") # exclude LBZ Notations + add_field("inCollection[].$append.id", "http://lobid.org/resources/HT013494180#!") + add_field("inCollection[].$last.label", "Rheinland-Pfälzische Bibliographie") + end + end +end + + +# DBIS +if exists("@dbis") + add_field("inCollection[].$append.id", "https://dbis.ur.de/") + add_field("inCollection[].$last.label", "Datenbank-Infosystem (DBIS)") +end + + +# eResource package + +# 912 ## "(nur Präfix ZDB-, und "vd18")" no Information about repeatability + +do list(path:"912 ", "var":"$i") + if any_match("$i.a", "(ZDB-[0-9]{1,6}-[a-zA-Z|0-9\\-]*).*") + copy_field("$i.a", "inCollection[].$append.id") + replace_all("inCollection[].$last.id", "(ZDB-[0-9]{1,6}-[a-zA-Z|0-9\\-]*).*", "http://lobid.org/organisations/$1#!") + copy_field("inCollection[].$last.id","$i.@label") + lookup("$i.@label","lobidOrgLabels",delete:"true") + unless exists("$i.@label") + add_field("$i.@label","lobid Organisation ZDB Collection") + end + move_field("$i.@label","inCollection[].$last.label") + end +end + + +# E-Book and digital copy selections (inofficial) + +# 912 ## no Information about repeatability + +do list(path:"962 ", "var":"$i") + do list(path:"$i.e", "var": "$j") + unless any_match("$j", "^ZDB.*") + copy_field("$j", "inCollection[].$append.id") + replace_all("inCollection[].$last.id", "^(.*)$", "https://lobid.org/collections#$1") + copy_field("inCollection[].$last.id","inCollection[].$last.label") + lookup("inCollection[].$last.label","collectionLabels") + if any_match("inCollection[].$last.label","https://lobid.org/collections.*") #Fallback label for hbz collections + replace_all("inCollection[].$last.label","https://lobid.org/collections#(.*)","$1 Collection") + end + end + end +end + +# 960 ## no Information about repeatability +# TODO: This needs further inspection if we need a collection fr all subfields: https://service-wiki.hbz-nrw.de/display/VDBE/960+-+Selektionskennzeichen+NZ +# Values from r can be invalid. + +# do list(path:"960??", "var":"$i") +# do list(path:"$i.?", "var": "$j") +# copy_field("$j", "inCollection[].$append.id") +# replace_all("inCollection[].$last.id", "^(.*)$", "http://lobid.org/collections#$1") +# # TODO: Do we need a label? https://github.com/hbz/lobid-resources/issues/1305#issuecomment-912312471, also labels seem wrong. +# end +# end + + +add_array("inCollection[].*.type[]","Collection") + +# predecessor + +# 780 - Preceding Entry (R) - Subfield: $t (NR), $w (R) + +add_array("predecessor[]") + +do list(path:"780??", "var":"$i") + add_hash( "predecessor[].$append") + copy_field("$i.t", "predecessor[].$last.label") + do list(path:"$i.w", "var":"$j") + if all_match("$j", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$j", "predecessor[].$last.id") + end + end + replace_all("predecessor[].$last.label", "\\((?:DE-600|DE-605)\\)", "") + add_array("predecessor[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","predecessor[].$last.note[].$append") + end +end + +replace_all("predecessor[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("predecessor[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") +call_macro("lobidResourcesFallbackLabel",field:"predecessor[]") + +replace_all("predecessor[].*.label","Vorg. ---> ","") + +# successor + +# 785 - Succeeding Entry (R) - Subfield: $t (NR), $w (R) + +add_array("successor[]") + +do list(path:"785??", "var":"$i") + add_hash( "successor[].$append") + copy_field("$i.t", "successor[].$last.label") + do list(path:"$i.w", "var":"$j") + if all_match("$j", "^\\((?:DE-600|DE-605)\\)(.*)$") + copy_field("$j", "successor[].$last.id") + end + end + add_array("successor[].$last.note[]") + do list(path:"$i.i","var":"$j") + copy_field("$j","successor[].$last.note[].$append") + end +end + +replace_all("successor[].*.id", "^\\(DE-605\\)(.*)$", "http://lobid.org/resources/$1#!") +replace_all("successor[].*.id", "^\\(DE-600\\)(.*)$", "http://lobid.org/resources/ZDB-$1#!") + + +# 130 - Main Entry-Uniform Title (NR) + +add_array("exampleOfWork.label") +copy_field("1300 .a", "exampleOfWork.label.$append") +copy_field("1300 .g", "exampleOfWork.label.$append") +do list(path: "1300 .0", "var":"$i") + if any_match("$i", "^\\(DE-588\\).*") + copy_field("$i", "exampleOfWork.id") + replace_all("exampleOfWork.id","^\\(DE-588\\)(.*$)","https://d-nb.info/gnd/$1") + end +end + +copy_field("24010.a", "exampleOfWork.label.$append") +copy_field("24010.g", "exampleOfWork.label.$append") +do list(path: "24010.0", "var":"$i") + if any_match("$i", "^\\(DE-588\\).*") + copy_field("$i", "exampleOfWork.id") + replace_all("exampleOfWork.id","^\\(DE-588\\)(.*$)","https://d-nb.info/gnd/$1") + end +end +join_field("exampleOfWork.label", " ") + +unless any_equal("exampleOfWork.label", "") + add_array("exampleOfWork.type[]","Work") +end + +replace_all("exampleOfWork.label","<<|>>","") + +# 041 h|k - Language code of original and/or intermediate translations of text + +add_array("lang_temp") +copy_field("041[ 01] .[hk]", "lang_temp.$append") +add_array("exampleOfWork.language[]") +do list(path:"lang_temp", "var": "$i") + copy_field("$i","exampleOfWork.language[].$append.id") + copy_field("$i","exampleOfWork.language[].$last.label") +end +lookup("exampleOfWork.language[].*.label","ISO639-2-to-GND") +prepend("exampleOfWork.language[].*.id", "http://id.loc.gov/vocabulary/iso639-2/") + + + +# following only with second indicator 2 for analytical entries: +# 700 - Added Entry-Personal Name (R) +# 710 - Added Entry-Corporate Name (R) +# 711 - Added Entry-Meeting Name (R) +# 730 - Added Entry-Uniform Title (R) + +add_array("containsExampleOfWork[]") +do list(path:"700?2|710?2|711?2|730?2", "var": "$i") + add_array("containsExampleOfWork[].$append.label") + add_array("containsExampleOfWork[].$last.creatorOfWork") + copy_field("$i.a","containsExampleOfWork[].$last.creatorOfWork.$append") + copy_field("$i.d","containsExampleOfWork[].$last.creatorOfWork.$append") + copy_field("$i.t","containsExampleOfWork[].$last.label.$append") + copy_field("$i.p","containsExampleOfWork[].$last.label.$append") + copy_field("$i.n","containsExampleOfWork[].$last.label.$append") + copy_field("$i.r","containsExampleOfWork[].$last.label.$append") + join_field("containsExampleOfWork[].$last.label", ". ") + join_field("containsExampleOfWork[].$last.creatorOfWork", " ") + copy_field("$i.n","containsExampleOfWork[].$last.workNumbering") + copy_field("$i.r","containsExampleOfWork[].$last.musicalKey") + add_array("containsExampleOfWork[].$last.type[]","Work") + add_array("containsExampleOfWork[].$last.instrumentation[]") + do list(path:"$i.m","var":"$j") + copy_field("$j","containsExampleOfWork[].$last.instrumentation[].$append") + end + do list(path: "$i.0", "var":"$k") + if any_match("$k", "^\\(DE-588\\).*") + copy_field("$k", "containsExampleOfWork[].$last.id") + replace_all("containsExampleOfWork[].$last.id","^\\(DE-588\\)(.*$)","https://d-nb.info/gnd/$1") + end + end +end + +replace_all("containsExampleOfWork[].*.label","<<|>>","") +uniq("inCollection[]") diff --git a/conf/hebisMarc2lobid-transformation/fix/subjects.fix b/conf/hebisMarc2lobid-transformation/fix/subjects.fix new file mode 100644 index 0000000..b0aeb53 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/subjects.fix @@ -0,0 +1,531 @@ +# natureOfContent combines Formschlagwörter (`689 $A: f`) and Formangaben (`655`) + +add_array("natureOfContent[]") + + +# 655 - Index Term-Genre/Form (R), Subfield: $a (NR), $0 (R) +# Ind: 2. 7= Source specified in subfield $2. + +do list(path:"655 7", "var":"$i") + unless exists("$i.a") + copy_field("$i.0", "natureOfContent[].$append.label") + do list(path: "natureOfContent[]", "var":"$i") + replace_all("$i.label", "^\\(DE-588\\)(.*)$", "$1") + lookup("$i.label", "Gnd2formschlagwort", delete:"true") + end + end + unless in("$i.a","natureOfContent[].*.label") + unless any_equal("$i.2","gnd-carrier") + unless any_match("$i.a",".*(Audiovisuelles Material|Bildplatte|CD|CD-ROM|Dia|Diskette|DVD-Audio|DVD-ROM|DVD-Video|Elektronische Publikation|Film|Medienkombination|Mikroform|Musikdruck|Online-Publikation|Schallplatte|Text|Tonbildreihe|Tonkassette|Tonträger|Videokassette).*") + copy_field("$i.a","natureOfContent[].$append.label") + do list(path:"$i.0","var":"$j") + # This is only DNB, should we also check for other uris for keywords? + if any_match("$j","^\\(DE-588\\)(.*)$") + copy_field("$j","natureOfContent[].$last.id") + replace_all("natureOfContent[].$last.id", "^\\(DE-588\\)(.*)$", "https://d-nb.info/gnd/$1") + end + end + end + end + end +end + +# 689 - not MARC standard element/DNB specific keywords (R), Subfields: $A (seems NR) + +do list(path:"689??", "var":"$i") + unless in("$i.a","natureOfContent[].*.label") + if any_match("$i.A","f|F") + unless any_match("$i.a",".*(Audiovisuelles Material|Bildplatte|CD|CD-ROM|Dia|Diskette|DVD-Audio|DVD-ROM|DVD-Video|Elektronische Publikation|Film|Medienkombination|Mikroform|Musikdruck|Online-Publikation|Schallplatte|Text|Tonbildreihe|Tonkassette|Tonträger|Videokassette).*") + copy_field("$i.a","natureOfContent[].$append.label") + end + end + end +end + +# maps missing GND URIs to Formschlagwörtern with matching Formangaben-Values: https://wiki.dnb.de/download/attachments/106042227/AH-007.pdf +do list(path: "natureOfContent[]", "var":"$i") + unless exists("$i.id") + copy_field("$i.label","$i.id") + lookup("$i.id","formschlagwort2Gnd", delete:"true") + prepend("$i.id", "https://d-nb.info/gnd/") + end +end + +add_array("subject[]") + + +# I change the approach from element oriented (all 630) to a subject/concept kind oriented approach (all LCSH, all GND, all keywords, etc.) +# 600 - Subject Added Entry - Personal Name (R) +# 610 - Subject Added Entry-Corporate Name (R), Subfield: $a (NR) +# 611 - Subject Added Entry - Meeting Name (R) +# 630 - Subject Added Entry - Uniform Title (R) +# 648 - Subject Added Entry - Chronological Term (R) +# 650 - Subject Added Entry-Topical Term (R), Subfield: $a (NR) +# 651 - Subject Added Entry - Geographic Name (R) +# 653 - Index Term-Uncontrolled (R), !!! Subfield: $a (R) !!!! +# 688 - Subject Added Entry - Type of Entity Unspecified (R) + + +do list(path:"600?4|610?4|611?4|630?4|648?4|650?4|651?4|653??|688??", "var":"$i") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Freie Verschlagwortung") + add_field("subject[].$last.source.id","https://www.wikidata.org/wiki/Q47524318") + call_macro("subjectLabel") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") +end + +do list(path:"600?0|610?0|611?0|630?0|648?0|650?0|651?0", "var":"$i") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Library of Congress Subject Headings") + add_field("subject[].$last.source.id","https://id.loc.gov/authorities/subjects.html") + call_macro("subjectLabel") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") +end + +do list(path:"600?7|610?7|611?7|630?7|648?7|650?7|651?7", "var":"$i") + if any_match("$i.2",".*fast.*") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","FAST (Faceted Application of Subject Terminology)") + add_field("subject[].$last.source.id","http://fast.oclc.org/") + call_macro("subjectLabel") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") + end +end + +do list(path:"600?2|610?2|611?2|630?2|648?2|650?2|651?2", "var":"$i") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Medical Subject Headings") + add_field("subject[].$last.source.id","https://www.nlm.nih.gov/mesh/meshhome.html") + call_macro("subjectLabel") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") +end + +do list(path:"600?7|610?7|611?7|630?7|648?7|650?7|651?7", "var":"$i") + if any_match("$i.2",".*(mesh|MeSH).*") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Medical Subject Headings") + add_field("subject[].$last.source.id","https://www.nlm.nih.gov/mesh/meshhome.html") + call_macro("subjectLabel") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") + end +end + + + +do list(path:"600??", "var":"$i") + if any_match("$i.0","^\\(DE-588\\)(.*)$") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Gemeinsame Normdatei (GND)") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/7749153-1") + call_macro("gndPersonCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "subject[].$last.label") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") + do list(path:"$i.0", "var":"$j") + if any_match("$j","^\\(DE-588\\)(.*)$") + copy_field("$j", "subject[].$last.id") + replace_all("subject[].$last.id","^\\(DE-588\\)(.*)$","https://d-nb.info/gnd/$1") + copy_field("$j", "subject[].$last.gndIdentifier") + replace_all("subject[].$last.gndIdentifier","^\\(DE-588\\)(.*)$","$1") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("subject[].$last.@gndIdn") + copy_field("$gnd","subject[].$last.@gndIdn") + end + end + elsif any_match("$j","^.*DNB\\|(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$j","^\\(DE-101\\)(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + end +end + +do list(path:"611??", "var":"$i") + if any_match("$i.0","^\\(DE-588\\)(.*)$") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Gemeinsame Normdatei (GND)") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/7749153-1") + call_macro("gndEventCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "subject[].$last.label") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") + do list(path:"$i.0", "var":"$j") + if any_match("$j","^\\(DE-588\\)(.*)$") + copy_field("$j", "subject[].$last.id") + replace_all("subject[].$last.id","^\\(DE-588\\)(.*)$","https://d-nb.info/gnd/$1") + copy_field("$j", "subject[].$last.gndIdentifier") + replace_all("subject[].$last.gndIdentifier","^\\(DE-588\\)(.*)$","$1") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("subject[].$last.@gndIdn") + copy_field("$gnd","subject[].$last.@gndIdn") + end + end + elsif any_match("$j","^.*DNB\\|(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$j","^\\(DE-101\\)(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + end +end + +do list(path:"610??|630??|648??|650??|651??", "var":"$i") + if any_match("$i.0","^\\(DE-588\\)(.*)$") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Gemeinsame Normdatei (GND)") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/7749153-1") + call_macro("gndOtherCombinedLabel",field:"$i") + copy_field("$i.@combinedLabel", "subject[].$last.label") + call_macro("alternateGraphicRepresationArrayOfObjects",targetArray:"subject[]",targetField:"",variable:"$i") + do list(path:"$i.0", "var":"$j") + if any_match("$j","^\\(DE-588\\)(.*)$") + copy_field("$j", "subject[].$last.id") + replace_all("subject[].$last.id","^\\(DE-588\\)(.*)$","https://d-nb.info/gnd/$1") + copy_field("$j", "subject[].$last.gndIdentifier") + replace_all("subject[].$last.gndIdentifier","^\\(DE-588\\)(.*)$","$1") + end + # GND idn as variable + if exists("$i.B") + do list(path: "$i.B","var":"$gnd") + unless exists("subject[].$last.@gndIdn") + copy_field("$gnd","subject[].$last.@gndIdn") + end + end + elsif any_match("$j","^.*DNB\\|(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^.*DNB\\|(.*)$","GND-$1") + elsif any_match("$j","^\\(DE-101\\)(.*)$") + copy_field("$j", "subject[].$last.@gndIdn") + replace_all("subject[].$last.@gndIdn", "^\\(DE-101\\)(.*)$","GND-$1") + end + end + end +end + + +# compare GND identifier (idn) with ALMA GND enrichment elements: +do list(path:"subject[]", "var":"$i") + add_array("$i.altLabel[]") + do list(path:"GPN??", "var": "$z") + if in ("$i.@gndIdn", "$z.B") # Person labels have no character between $a (Name) and $b (Number). + call_macro("gndPersonCombinedLabel",field:"$z") + copy_field("$z.@combinedLabel", "$i.altLabel[].$append") + end + end + do list(path:"GKS??", "var": "$z") # Other altLabels have a "," character between $a and $b. + unless any_equal("$z.i","Spitzenorgan") + if in ("$i.@gndIdn", "$z.B") + call_macro("gndEventCombinedLabel",field:"$z") + copy_field("$z.@combinedLabel", "$i.altLabel[].$append") + end + end + end + do list(path:"GEL??|GKT??|GKS??|GST??|GGN??", "var": "$z") # Other altLabels have a "," character between $a and $b. + unless any_equal("$z.i","Spitzenorgan") + if in ("$i.@gndIdn", "$z.B") + call_macro("gndOtherCombinedLabel",field:"$z") + copy_field("$z.@combinedLabel", "$i.altLabel[].$append") + end + end + end + remove_field("$i.@gndIdn") +end + +# 082 - Dewey Decimal Classification Number (R) - Subfield: $a (R), $2 (NR) + +do list(path:"0820 |08200", "var":"$i") + do list(path:"$i.a", "var": "$j") + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Dewey-Dezimalklassifikation") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/4149423-4") + copy_field("$j","subject[].$last.label") + lookup("subject[].$last.label", "deweyLabels", delete:"true") + copy_field("$j","subject[].$last.notation") + copy_field("$i.2","subject[].$last.version") + end +end + +# 084 - Other Classification Number (R) - Subfield: $a (R), $2 (NR) + +do list(path:"084??", "var":"$i") + do list(path:"$i.0", "var":"$j") + if any_contain("$j","https://nwbib.de/subjects") + copy_field("$j", "subject[].$append.id") + copy_field("$j","$i.@nwbibLabel") + lookup("$i.@nwbibLabel","nwbib") + copy_field("$i.@nwbibLabel", "subject[].$last.label") + if any_match("$j", "https://nwbib.de/subjects#N(.*)$") + copy_field("$j", "subject[].$last.notation") + replace_all("subject[].$last.notation","https://nwbib.de/subjects#N(.*)$","$1") + end + add_array("subject[].$last.type[]","Concept") + add_field("subject[].$last.source.id","https://nwbib.de/subjects") + add_field("subject[].$last.source.label","Sachsystematik der Nordrhein-Westfälischen Bibliographie") + end + end + unless any_contain("$i.0", "https://nwbib.de/") # filter out any nwbib concepts + unless any_match("$i.a", "^rpbr.*") # filter out any RPB Spatial + unless any_match("$i.2", "z") # filter out any z Other - Classification + do list(path:"$i.a", "var":"$j") + copy_field("$j", "subject[].$append.notation") + add_array("subject[].$last.type[]","Concept") + # LBZ-Notationen fka rpb2 fka RPB-Sachgruppen und Zusätze + if any_match("$i.2", "rpb") + if any_match("$j","\\d{3}") + copy_field("$j","$i.@lbz-notationenId") + prepend("$i.@lbz-notationenId","https://w3id.org/lobid/rpb2#n") + copy_field("$i.@lbz-notationenId","subject[].$last.id") + lookup("$i.@lbz-notationenId","lbz-notationen") + move_field("$i.@lbz-notationenId","subject[].$last.label") + add_field("subject[].$last.source.id", "https://w3id.org/lobid/rpb2") + add_field("subject[].$last.source.label", "LBZ-Notationen") + # RPB-Sachsystematik fka. Systematik der Rheinland-Pfälzischen Bibliographie + elsif any_match("$j","^rpb.*") + copy_field("$j","$i.@rpbNotationId") + replace_all("$i.@rpbNotationId","rpb(.*)","http://purl.org/lobid/rpb#n$1") + copy_field("$i.@rpbNotationId","subject[].$last.id") + lookup("$i.@rpbNotationId","rpb") + move_field("$i.@rpbNotationId","subject[].$last.label") + add_field("subject[].$last.source.id", "http://purl.org/lobid/rpb") + add_field("subject[].$last.source.label", "RPB-Sachsystematik") + replace_all("subject[].$last.notation","rpb(.*)","$1") + end + elsif any_match("$i.2", "sdnb|zdbs") + if any_match("$j","\\d{3}(\\.\\d{1,3})?|[BKS]") + if any_equal("$i.q","DE-600") + add_field("subject[].$last.source.label","DDC-Sachgruppen der ZDB") + add_field("subject[].$last.source.id","https://zeitschriftendatenbank.de/fileadmin/user_upload/ZDB/pdf/zdbformat/5080.pdf") + elsif any_equal("$i.2","zdbs") + add_field("subject[].$last.source.label","DDC-Sachgruppen der ZDB") + add_field("subject[].$last.source.id","https://zeitschriftendatenbank.de/fileadmin/user_upload/ZDB/pdf/zdbformat/5080.pdf") + else + add_field("subject[].$last.source.label","Sachgruppen der DNB") + add_field("subject[].$last.source.id","https://bartoc.org/en/node/20049") + end + copy_field("$j","subject[].$last.label") + lookup("subject[].$last.label", "dnbSachgruppen") + # Also use all DNB and ZDB Sachgruppen as DDC too. + add_array("subject[].$append.type[]","Concept") + add_field("subject[].$last.source.label","Dewey-Dezimalklassifikation") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/4149423-4") + copy_field("$j","subject[].$last.label") + lookup("subject[].$last.label", "deweyLabels") + copy_field("$j","subject[].$last.notation") + copy_field("$i.2","subject[].$last.version") + elsif any_match("$j","\\d{2}") + add_field("subject[].$last.source.label","Systematik der DNB (bis 2003)") + add_field("subject[].$last.source.id","https://bartoc.org/en/node/18497") + end + else + copy_field("$i.2", "subject[].$last.source.label") + lookup("subject[].$last.source.label","classificationCode2Label") + copy_field("$i.2","subject[].$last.source.id") + lookup("subject[].$last.source.id","classificationCode2Uri", delete:"true") + end + end + end + end + end +end + +# RVK via Culturegraph + +copy_field("almaMmsId","@rvkNotations") +lookup("@rvkNotations","rvk",delete:"true") +split_field("@rvkNotations", ",") +do list(path: "@rvkNotations","var":"$i") + copy_field("$i","subject[].$append.notation") + add_array("subject[].$last.type[]","Concept") + add_field("subject[].$last.source.label","RVK (Regensburger Verbundklassifikation)") + add_field("subject[].$last.source.id","https://d-nb.info/gnd/4449787-8") +end + +# 689 RSWK Schlagwortfolgen fka: Schlagwortketten 1 - 10 - no info on repeatability + +call_macro("schlagwortfolge", field: "6890?") +call_macro("schlagwortfolge", field: "6891?") +call_macro("schlagwortfolge", field: "6892?") +call_macro("schlagwortfolge", field: "6893?") +call_macro("schlagwortfolge", field: "6894?") +call_macro("schlagwortfolge", field: "6895?") +call_macro("schlagwortfolge", field: "6896?") +call_macro("schlagwortfolge", field: "6897?") +call_macro("schlagwortfolge", field: "6898?") +call_macro("schlagwortfolge", field: "6899?") + + +lookup("subject[].*.componentList[].*.type[].*","rswk-indicator") + + +do list (path: "subject[]", "var": "$i") + do list(path: "$i.componentList[]", "var": "$j") + if any_match("$j.label",".+") # Due to special cataloguing there can be empty label-properties. That are cleaned up at the end. These need to be skipped. + unless exists("$j.type[].1") + add_array("$j.type[]","SubjectHeading") # type: SubjectHeading as Fallback. + end + end + if any_match("$j.dateOfBirthAndDeath", "^([012][0-9]{3})-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^([012][0-9]{3})-.*","$1") + elsif any_match("$j.dateOfBirthAndDeath", "^([1-9][0-9]{2})-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^([1-9][0-9]{2})-.*","0$1") + elsif any_match("$j.dateOfBirthAndDeath", "^([1-9][0-9])-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^([1-9][0-9])-.*","00$1") + elsif any_match("$j.dateOfBirthAndDeath", "^([0-9])-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^([0-9])-.*","000$1") + elsif any_match("$j.dateOfBirthAndDeath", "^v([012][0-9]{3})-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^v([012][0-9]{3})-.*","-$1") + elsif any_match("$j.dateOfBirthAndDeath", "^v([1-9][0-9]{2})-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^v([1-9][0-9]{2})-.*","-0$1") + elsif any_match("$j.dateOfBirthAndDeath", "^v([1-9][0-9])-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^v([1-9][0-9])-.*","-00$1") + elsif any_match("$j.dateOfBirthAndDeath", "^v([0-9])-.*") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfBirth") + replace_all("$j.dateOfBirth", "^v([0-9])-.*","-000$1") + end + if any_match("$j.dateOfBirthAndDeath", ".*-([012][0-9]{3})$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-([012][0-9]{3})$","$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-([1-9][0-9]{2})$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-([1-9][0-9]{2})$","0$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-([1-9][0-9])$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-([1-9][0-9])$","00$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-([0-9])$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-([0-9])$","000$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-v([012][0-9]{3})$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-v([012][0-9]{3})$","-$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-v([1-9][0-9]{2})$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-v([1-9][0-9]{2})$","-0$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-v([1-9][0-9])$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-v([1-9][0-9])$","-00$1") + elsif any_match("$j.dateOfBirthAndDeath", ".*-v([0-9])$") + copy_field("$j.dateOfBirthAndDeath","$j.dateOfDeath") + replace_all("$j.dateOfDeath", ".*-v([0-9])$","-000$1") + end + unless any_match("$j.dateOfBirthAndDeath","^ca\\..*|.*Jh\\.") + remove_field("$j.dateOfBirthAndDeath") + end + replace_all("$j.label","<<|>>","") + # compare GND identifier (idn) with ALMA GND enrichment elements: + add_array("$j.altLabel[]") + do list(path:"GPN??", "var": "$z") + if in ("$j.@gndIdn", "$z.B") # Person labels have no character between $a (Name) and $b (Number). + call_macro("gndPersonCombinedLabel",field:"$z") + copy_field("$z.@combinedLabel", "$j.altLabel[].$append") + end + end + do list(path:"GEL??|GKT??|GKS??|GST??|GGN??", "var": "$z") # Other altLabels have a "," character between $a and $b. + unless any_equal("$z.i","Spitzenorgan") + if in ("$j.@gndIdn", "$z.B") # check if GND concept has combined variant + call_macro("gndOtherCombinedLabel",field:"$z") + copy_field("$z.@combinedLabel", "$j.altLabel[].$append") + end + end + end + remove_field("$j.@gndIdn") + end +end +do list(path:"subject[]", "var": "$i") + replace_all("$i.altLabel[].*","<<|>>","") + uniq("$i.altLabel[]") + do list(path:"$i.componentList[]","var":"$j") + replace_all("$j.altLabel[].*","<<|>>","") + uniq("$j.altLabel[]") + end +end + +# clean up subjects +replace_all("subject[].*.label","<<|>>","") +uniq("subject[]") + +# spatial + +add_array("spatial[]") + +do list(path:"084??", "var":"$i") + do list(path:"$i.0", "var":"$j") + # nwbib spatial + if any_contain("$j","https://nwbib.de/spatial#") + copy_field("$j", "spatial[].$append.id") + copy_field("$j","$i.@nwbib-spatialLabel") + lookup("$i.@nwbib-spatialLabel","nwbib-spatial") + copy_field("$i.@nwbib-spatialLabel", "spatial[].$last.label") + if any_match("$j", "https://nwbib.de/spatial#N(.*)$") + copy_field("$j", "spatial[].$last.notation") + end + add_array("spatial[].$last.type[]","Concept") + add_field("spatial[].$last.source.id","https://nwbib.de/spatial") + add_field("spatial[].$last.source.label","Raumsystematik der Nordrhein-Westfälischen Bibliographie") + copy_field("$j", "spatial[].$last.focus.id") + end + end + do list(path:"$i.a", "var":"$j") + # RPB spatial + if any_match("$j","^rpbr.*") + add_array("spatial[].$append.type[]","Concept") + copy_field("$j","$i.@rpbrNotationId") + replace_all("$i.@rpbrNotationId","rpbr_(99_o)?(.*)_","https://rpb.lobid.org/spatial#n$2") + copy_field("$i.@rpbrNotationId","spatial[].$last.id") + lookup("$i.@rpbrNotationId","rpbr") + move_field("$i.@rpbrNotationId","spatial[].$last.label") + add_field("spatial[].$last.source.id", "https://rpb.lobid.org/spatial") + add_field("spatial[].$last.source.label", "RPB-Raumsystematik") + replace_all("spatial[].$last.notation","rpbr_(99_o)?(.*)_","$2") + end + end +end + +do list(path:"spatial[]", "var":"$i") + if any_contain("$i.source.id","https://nwbib.de/spatial") + replace_all("$i.notation","https://nwbib.de/spatial#N(.*)$","$1") + copy_field("$i.focus.id","$i.focus.label") + add_array("$i.focus.type[]") + copy_field("$i.focus.id","$i.focus.type[].$append") + copy_field("$i.focus.id","$i.focus.@geoData") + lookup("$i.focus.id","nwbibWikidataId",delete:"true") + lookup("$i.focus.label","nwbibWikidataLabel",delete:"true") + lookup("$i.focus.type[].*","nwbibWikidataTypes",delete:"true") + lookup("$i.focus.@geoData","nwbibWikidataGeodata",delete:"true") + copy_field("$i.focus.@geoData", "$i.focus.geo.lat") + copy_field("$i.focus.@geoData", "$i.focus.geo.lon") + remove_field("$i.focus.@geoData") + if any_match("$i.focus.type[].*",'^.*,.*') + split_field("$i.focus.type[].$last",", ") + flatten("$i.focus.type[]") + end + replace_all("$i.focus.geo.lon","^Point\\((.*) .*\\)","$1") + replace_all("$i.focus.geo.lat","^Point\\(.* (.*)\\)","$1") + end +end + +add_array("subjectslabels[]") +do list(path:"subject[]","var":"$i") + if any_match("$i.type[]","Concept") + unless exists("$i.notation") + copy_field("$i.label","subjectslabels[].$append") + end + end + copy_field("$i.componentList[].*.label","subjectslabels[].$append") +end +uniq("subjectslabels[]") diff --git a/conf/hebisMarc2lobid-transformation/fix/titleRelatedFields.fix b/conf/hebisMarc2lobid-transformation/fix/titleRelatedFields.fix new file mode 100644 index 0000000..8fe1858 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/fix/titleRelatedFields.fix @@ -0,0 +1,351 @@ +# 245 - Title Statement (NR) - Subfield: $a (NR), $b (NR), $n (R), $p (R) + +copy_field("245??.a","@title") +unless any_match("@title",".*\\.\\.\\.") + replace_all("@title", "^[©]|\\s?[,.:;/=]?$", "") +end +replace_all("@title","<<|>>","") + + +add_array("@titleOfSubSeries_n") # Subvolume numbering +do list(path:"245??.n", "var":"$i") + unless all_equal("$i","[...]") + copy_field("$i","@titleOfSubSeries_n.$append") + end +end +join_field("@titleOfSubSeries_n", ". ") + +add_array("@titleOfSubSeries_p") + +do list(path:"245??.p", "var":"$i") # Subvolume title + unless all_equal("$i","[...]") + copy_field("$i","@titleOfSubSeries_p.$append") + end +end +replace_all("@titleOfSubSeries_p.*", "\\s?\\.?\\s?$", "") +replace_all("@titleOfSubSeries_p.*","<<|>>","") +join_field("@titleOfSubSeries_p", ". ") +if is_empty("@titleOfSubSeries_p") + remove_field("@titleOfSubSeries_p") +end +if is_empty("@titleOfSubSeries_n") + remove_field("@titleOfSubSeries_n") +end +if exists("@titleOfSubSeries_n") # separate subvolume numbering and title with : + prepend("@titleOfSubSeries_p", ": ") +end + +paste("@titleOfSubSeries", "@titleOfSubSeries_n", "@titleOfSubSeries_p", join_char: "") + +if is_empty("@titleOfSubSeries") + remove_field("@titleOfSubSeries") +end + +prepend("@titleOfSubSeries",", ") + +paste("title","@title", "@titleOfSubSeries", join_char: "") # title consists of main title + if exists: subvolume numbering and subvolume title + + +# alternateGraphicRepresentation for title, otherTitleInformation, alternativetitle, edition and note + +do list(path:"245??","var":"$i") + if exists("$i.6") + copy_field("$i.6","$i.linkageTest") + do list(path:"880??","var":"$880") + if in ("$i.linkageTest","$880.linkageTest") + if in ("$880.@script.id","alternateGraphicRepresentation[].*.script.id") + do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if in ("$880.@script.id","$AGR.script.id") + copy_field("$880.a","$AGR.record.@title") + copy_field("$880.n","$AGR.record.@titleOfSubSeries_n") + unless exists("$AGR.record.@titleOfSubSeries_p") + add_array("$AGR.record.@titleOfSubSeries_p") + end + copy_field("$880.p","$AGR.record.@titleOfSubSeries_p.$append") + unless exists("$AGR.record.otherTitleInformation[]") + add_array("$AGR.record.otherTitleInformation[]") + end + copy_field("$880.b","$AGR.record.otherTitleInformation[].$append") + unless exists("$AGR.record.responsibilityStatement[]") + add_array("$AGR.record.responsibilityStatement[]") + end + copy_field("$880.c","$AGR.record.responsibilityStatement[].$append") + end + end + else + copy_field("$880.@script.id","alternateGraphicRepresentation[].$append.script.id") + copy_field("$880.@script.label","alternateGraphicRepresentation[].$last.script.label") + copy_field("$880.a","alternateGraphicRepresentation[].$last.record.@title") + copy_field("$880.n","alternateGraphicRepresentation[].$last.record.@titleOfSubSeries_n") + add_array("alternateGraphicRepresentation[].$last.record.@titleOfSubSeries_p") + copy_field("$880.p","alternateGraphicRepresentation[].$last.record.@titleOfSubSeries_p.$append") + add_array("alternateGraphicRepresentation[].$last.record.otherTitleInformation[]") + copy_field("$880.b","alternateGraphicRepresentation[].$last.record.otherTitleInformation[].$append") + add_array("alternateGraphicRepresentation[].$last.record.responsibilityStatement[]") + copy_field("$880.c","alternateGraphicRepresentation[].$last.record.responsibilityStatement[].$append") + end + end + end + end +end + +do list(path:"alternateGraphicRepresentation[]","var":"$AGR") + if exists("$AGR.record.@title") + unless exists("$AGR.record.@titleOfSubSeries_n") + copy_field("@titleOfSubSeries_n","$AGR.record.@titleOfSubSeries_n") + end + join_field("$AGR.record.@titleOfSubSeries_p", ". ") + if is_empty("$AGR.record.@titleOfSubSeries_p") + remove_field("$AGR.record.@titleOfSubSeries_p") + end + if exists("$AGR.record.@titleOfSubSeries_n") # separate subvolume numbering and title with : + prepend("$AGR.record.@titleOfSubSeries_p", ": ") + end + if is_empty("$AGR.record.@titleOfSubSeries_n") + remove_field("$AGR.record.@titleOfSubSeries_n") + end + paste("$AGR.record.@titleOfSubSeries", "$AGR.record.@titleOfSubSeries_n", "$AGR.record.@titleOfSubSeries_p", join_char: "") + + if is_empty("$AGR.record.@titleOfSubSeries") + remove_field("$AGR.record.@titleOfSubSeries") + end + + prepend("$AGR.record.@titleOfSubSeries",", ") + + paste("$AGR.record.title","$AGR.record.@title", "$AGR.record.@titleOfSubSeries", join_char: "") # title consists of main title + if exists: subvolume numbering and subvolume title + remove_field("$AGR.record.@title") + remove_field("$AGR.record.@titleOfSubSeries") + remove_field("$AGR.record.@titleOfSubSeries_n") + remove_field("$AGR.record.@titleOfSubSeries_p") + elsif exists("$AGR.record.@titleOfSubSeries_p") # We have an appearance where there is no title $a is given as alternateGraphicRepresentation + join_field("$AGR.record.@titleOfSubSeries_p", ". ") + if is_empty("$AGR.record.@titleOfSubSeries_p") + remove_field("$AGR.record.@titleOfSubSeries_p") + end + if exists("$AGR.record.@titleOfSubSeries_n") # separate subvolume numbering and title with : + prepend("$AGR.record.@titleOfSubSeries_p", ": ") + end + unless exists("$AGR.record.@titleOfSubSeries_n") + copy_field("@titleOfSubSeries_n","$AGR.record.@titleOfSubSeries_n") + end + if exists("$AGR.record.@titleOfSubSeries_n") # separate subvolume numbering and title with : + prepend("$AGR.record.@titleOfSubSeries_p", ": ") + end + + paste("$AGR.record.title", "$AGR.record.@titleOfSubSeries_n", "$AGR.record.@titleOfSubSeries_p", join_char: "") + remove_field("$AGR.record.@titleOfSubSeries_n") + remove_field("$AGR.record.@titleOfSubSeries_p") + end +end + +# 246 - Varying Form of Title (R) - Subfields: $a (NR) + +add_array("alternativeTitle[]") +copy_field("246?[ 345678].a","alternativeTitle[].$append") + +do list(path:"246?[ 345678]","var":"$i") + call_macro("alternateGraphicRepresationArrayOfStrings",targetArray:"alternativeTitle[]",variable:"$i") +end + + +# 247 - Former Title (R) +do list(path: "247??", "var":"$i") + if exists("$i.f") + paste("alternativeTitle[].$append","$i.a", "~(","$i.f","~)") + else + copy_field("$i.a","alternativeTitle[].$append") + end +end + +replace_all("alternativeTitle[].*","<<|>>","") + +add_array("otherTitleInformation[]") +copy_field("245??.b","otherTitleInformation[].$append") + + +# 249 beigefügtes Werk Subfield $a +do list(path:"249 ","var":"$i") + copy_field("$i.a","otherTitleInformation[].$append") + call_macro("alternateGraphicRepresationArrayOfStrings",targetArray:"otherTitleInformation[]",variable:"$i") +end +unless any_match("otherTitleInformation[].*",".*\\.\\.\\.") + replace_all("otherTitleInformation[].*","\\s?[./]\\s?$","") +end + +# 250 - Edition Statement (R) - Subfields: $a (NR) + +add_array("edition[]") +copy_field("250 .a","edition[].$append") +replace_all("edition[].*","\\s?[./]\\s?$","") + +do list(path:"250 ","var":"$i") + call_macro("alternateGraphicRepresationArrayOfStrings",targetArray:"edition[]",variable:"$i") + +end + +# 260 - Publication, Distribution, etc. (Imprint) (R) - Subfield: $a (R), $b (R), $c (R) +# 264 - Production, Publication, Distribution, Manufacture, and Copyright Notice (R) - Subfield: $a (R), $b (R), $c (R) +# 008,18 for frequency +# 515 - Numbering Peculiarities Note (R) +# Prefer 264 over 260 since it can create duplicate info and 260 is discontinued in RDA. + +add_array("publication[]") +if exists("264[ 23][ 1]") + call_macro("publication",field:"2643[ 1]") # 3 - Current/Latest + call_macro("publication",field:"2642[ 1]") # 2 - Intervening + call_macro("publication",field:"264 [ 1]") # # - Not applicable/No information provided/Earliest +else + call_macro("publication",field:"2603[ 1]") # 3 - Current/Latest + call_macro("publication",field:"2602[ 1]") # 2 - Intervening + call_macro("publication",field:"260 [ 1]") # # - Not applicable/No information provided/Earliest +end + +add_array("manufacture[]") +if exists("264[ 23]3") + call_macro("manufacture",field:"26433") # 3 - Current/Latest + call_macro("manufacture",field:"26423") # 2 - Intervening + call_macro("manufacture",field:"264 3") # # - Not applicable/No information provided/Earliest +end + +# Only add additional publication info to the first publication-object since it is the latest. + +if exists("publication[].$first") + copy_field("362??.a","publication[].$first.publicationHistory") + add_array("publication[].$first.frequency[]") + if any_match("leader","^.{6}(a[bis]|m[bis]).*$") # checks if continous ressource + unless any_match("008","^.{18}[#\\| u].*$") # filters out not matching values and also the value unknown + copy_field("008","publication[].$first.frequency[].$append.id") + replace_all("publication[].$first.frequency[].$last.id", "^.{18}(.).*$", "http://marc21rdf.info/terms/continuingfre#$1") + copy_field("publication[].$first.frequency[].$last.id","publication[].$first.frequency[].$last.label") + lookup("publication[].$first.frequency[].$last.label","marc-publication-frequency-label") + end + elsif any_match("006","^s.*$") + do list(path: "006", "var":"$z") + if any_match("$z","^s.*$") + unless any_match("$z","^.[#\\| u].*$") + copy_field("$z","publication[].$first.frequency[].$append.id") + replace_all("publication[].$first.frequency[].$last.id", "^.(.).*$", "http://marc21rdf.info/terms/continuingfre#$1") + copy_field("publication[].$first.frequency[].$last.id","publication[].$first.frequency[].$last.label") + lookup("publication[].$first.frequency[].$last.label","marc-publication-frequency-label") + end + end + end + end + add_array("publication[].$first.note[]") + copy_field("515??.a","publication[].$first.note[].$append") + do list(path:"500 ", "var":"$i") + if any_match("$i.a", "^.*saṃ. \\d{4}=(\\d{4}).*Chr.*") + remove_field("publication[].$first.startDate") + copy_field("$i.a","publication[].$first.startDate") + replace_all("publication[].$first.startDate","^.*saṃ. \\d{4}=(\\d{4}).*Chr.*","$1") + end + end + # Add fallbacks for missing publication dates and other publication info. + do list(path:"260[ 3][ 1]", "var":"$i") + do list(path: "$i.c", "var":"$j") + replace_all("$j", "\\[|\\]|ca. |c ", "") + unless exists("publication[].$first.startDate") + if any_match("$j",".*?([01]\\d{3}|20\\d{2}).*") + paste("publication[].$first.startDate", "$j") + end + end + unless exists("publication[].$first.endDate") + if any_match("$j",".*-[ ]?([01]\\d{3}|20\\d{2})$") + paste("publication[].$last.endDate", "$j") + end + end + unless exists("publication[].$first.location[].1") + copy_field("$i.a", "publication[].$first.location[].$append") + end + unless exists("publication[].$first.publishedBy[].1") + copy_field("$i.b", "publication[].$first.publishedBy[].$append") + end + end + end + unless exists("publication[].$first.startDate") + if any_match("008","^.{6}[brestikm](\\d{4}).*$") + copy_field("008","@008startDate") + replace_all("@008startDate","^.{7}(\\d{4}).*$","$1") + copy_field("@008startDate","publication[].$first.startDate") + end + end + unless exists("publication[].$first.endDate") + if any_match("008","^.{6}[km]\\d{4}(\\d{4}).*$") + copy_field("008","@008endDate") + replace_all("@008endDate","^.{11}(\\d{4}).*$","$1") + unless any_equal("@008endDate","9999") + copy_field("@008endDate","publication[].$first.endDate") + end + end + end +end + + + + +# Mapping for SecondaryPublication +# 533 - Reproduction Note (R) + +do list(path:"533 ", "var": "$i") + add_hash( "publication[].$append") + add_array("publication[].$last.type[]","SecondaryPublicationEvent") + add_array("publication[].$last.location[]") + do list(path:"$i.b","var":"$j") + copy_field("$j", "publication[].$last.location[].$append") + end + add_array("publication[].$last.description[]") + copy_field("$i.a", "publication[].$last.description[].$append") + add_array("publication[].$last.publishedBy[]") + copy_field("$i.c", "publication[].$last.publishedBy[].$append") + do list(path: "$i.d", "var":"$j") + replace_all("$j", "\\[|\\]|ca. |c ", "") + unless exists("publication[].$last.startDate") + if any_match("$j",".*?([01]\\d{3}|20\\d{2}).*") + paste("publication[].$last.startDate", "$j") + end + end + unless exists("publication[].$last.endDate") + if any_match("$j",".*-[ ]?([01]\\d{3}|20\\d{2})$") + paste("publication[].$last.endDate", "$j") + end + end + end +end + +# Cleaning up dates of publicaton [] +copy_field("leader","@leaderPos07") +substring("@leaderPos07","7","1") +do list(path: "publication[]", "var": "$i") + replace_all("$i.startDate", ".*?([01]\\d{3}|20\\d{2}).*", "$1") + if any_match("@leaderPos07","s") + if any_contain("$i.startDate","0000") + remove_field("$i.startDate") + end + end + replace_all("$i.endDate", ".*-[ ]?([01]\\d{3}|20\\d{2})$", "$1") + replace_all("$i.location[].*", "^\\[(.*)\\]$", "$1") + replace_all("$i.location[].*", "\\s?[,:;]$", "") + replace_all("$i.publishedBy[].*", "^[©]|\\s?[,:;/=]?$", "") + call_macro("leapYearChecker",date:"$i.startDate") + call_macro("leapYearChecker",date:"$i.endDate") + uniq("$i.location[]") +end + + +# 246 - Varying Form of Title (R) - $a - Title proper/short title (NR) + +add_array("titleKeyword[]") +do list(path: "24610", "var": "$i") + copy_field("$i.a","titleKeyword[].$append") +end + + +# 210 - Abbreviated Title (R) - $a - Abbreviated title (NR) +add_array("shortTitle[]") +do list(path: "210??", "var": "$i") + copy_field("$i.a","shortTitle[].$append") +end + +do list(path: "030??", "var": "$i") + copy_field("$i.a","shortTitle[].$append") +end diff --git a/conf/hebisMarc2lobid-transformation/maps/almaMmsId2rpbId.tsv b/conf/hebisMarc2lobid-transformation/maps/almaMmsId2rpbId.tsv new file mode 100644 index 0000000..cc98604 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/almaMmsId2rpbId.tsv @@ -0,0 +1,2043 @@ +almaMmsId rpbId +990192739650206441 RPB929t123393 +990194218800206441 RPB929t130644 +990194233920206441 RPB929t130739 +990175636300206441 RPB929t131469 +990049861680206441 RPB929t132860 +990205158030206441 RPB929t143770 +990149541950206441 RPB929t910037 +990049235340206441 RPB929t910170 +990048999210206441 RPB929t910424 +990056002280206441 RPB929t910565 +990048879260206441 RPB929t910662 +990049004890206441 RPB929t910663 +990048975680206441 RPB929t910664 +990049006920206441 RPB929t910665 +990049690240206441 RPB929t910666 +990049014380206441 RPB929t910739 +990054053790206441 RPB929t910837 +990050046400206441 RPB929t910910 +990049113200206441 RPB929t910999 +990049113190206441 RPB929t911003 +990048771930206441 RPB929t911006 +990049392690206441 RPB929t911010 +990049121800206441 RPB929t911063 +990048856730206441 RPB929t911066 +990049288610206441 RPB929t920154 +990049077380206441 RPB929t920369 +990048909540206441 RPB929t920533 +990056906530206441 RPB929t920551 +990049182900206441 RPB929t920553 +990049182680206441 RPB929t920554 +990049162960206441 RPB929t920629 +990055926770206441 RPB929t920630 +990049132070206441 RPB929t920637 +990049144950206441 RPB929t920643 +990052432510206441 RPB929t921067 +990049206610206441 RPB929t921284 +990049075330206441 RPB929t921285x +990049152120206441 RPB929t921397 +990049122320206441 RPB929t921402 +990049176770206441 RPB929t921539 +990216034500206441 RPB929t921540 +990049412970206441 RPB929t921815 +990054323830206441 RPB929t921836 +990054107570206441 RPB929t921876 +990049418550206441 RPB929t922052 +990056116610206441 RPB929t930042 +990052527280206441 RPB929t930044 +990052527500206441 RPB929t930045 +990052527490206441 RPB929t930046 +990056035470206441 RPB929t930162 +990049756630206441 RPB929t930308 +990056746200206441 RPB929t930337 +990048889760206441 RPB929t930339 +990049759870206441 RPB929t930511 +990056071140206441 RPB929t930723 +990055472310206441 RPB929t930724 +990056900000206441 RPB929t930846 +990049748740206441 RPB929t930849 +990056086500206441 RPB929t930859 +990048890930206441 RPB929t930919 +990049197950206441 RPB929t930927 +990049758860206441 RPB929t930931 +990056071340206441 RPB929t931100 +990049745080206441 RPB929t931104 +990048766230206441 RPB929t931198 +990054573630206441 RPB929t931214 +990055475640206441 RPB929t931320 +990056111250206441 RPB929t931321 +990055639420206441 RPB929t931418 +990056063770206441 RPB929t931419 +990055903910206441 RPB929t931508 +990049807470206441 RPB929t931761 +990055905070206441 RPB929t931790 +990056085370206441 RPB929t931791 +990056135630206441 RPB929t931809 +990049822870206441 RPB929t932013 +990056135530206441 RPB929t932061 +990049822730206441 RPB929t932063 +990055607220206441 RPB929t932113 +990056070850206441 RPB929t932114 +990054451450206441 RPB929t932129 +990054220470206441 RPB929t932187 +990056064550206441 RPB929t932215 +990056065080206441 RPB929t932251 +990055889790206441 RPB929t932319 +990049404180206441 RPB929t932328 +990049825690206441 RPB929t932343 +990054831700206441 RPB929t932402 +990048732920206441 RPB929t932405 +990056058030206441 RPB929t932408 +990049075330206441 RPB929t932442 +990049756590206441 RPB929t932477 +990048182150206441 RPB929t932571 +990056148830206441 RPB929t932593 +990055877700206441 RPB929t932594 +990056149020206441 RPB929t932595 +990056149040206441 RPB929t932596 +990056109990206441 RPB929t932604 +990049836360206441 RPB929t932631 +990054663980206441 RPB929t932766 +990056080600206441 RPB929t932767 +990055639950206441 RPB929t932772 +990055639310206441 RPB929t932773 +990054597010206441 RPB929t932775 +990056063100206441 RPB929t932775x +990049828520206441 RPB929t940003 +990056169450206441 RPB929t940004 +990056002340206441 RPB929t940005 +990056143400206441 RPB929t940006 +990054674050206441 RPB929t940011 +990056169640206441 RPB929t940012 +990049924060206441 RPB929t940040 +990053467850206441 RPB929t940164 +990049935350206441 RPB929t940170 +990056173060206441 RPB929t940184 +990049209930206441 RPB929t940185 +990056177660206441 RPB929t940192 +990052531880206441 RPB929t940194 +990049930370206441 RPB929t940200 +990049930170206441 RPB929t940209 +990049940980206441 RPB929t940245 +990054371020206441 RPB929t940255 +990048793110206441 RPB929t940355 +990053090620206441 RPB929t940384 +990048856730206441 RPB929t941543 +990049182680206441 RPB929t941640 +990049922130206441 RPB929t941641 +990054634920206441 RPB929t941643 +990056120470206441 RPB929t941644 +990056043370206441 RPB929t941649 +990056002160206441 RPB929t941650 +990056046160206441 RPB929t941651 +990056189310206441 RPB929t941682 +990055903770206441 RPB929t941683 +990056162710206441 RPB929t941684 +990055120480206441 RPB929t941686 +990056136520206441 RPB929t941711 +990056136500206441 RPB929t941712 +990049075330206441 RPB929t941714 +990049915850206441 RPB929t941743 +990049920540206441 RPB929t941746 +990056698620206441 RPB929t941798 +990056698610206441 RPB929t941799 +990049890280206441 RPB929t941900 +990049878780206441 RPB929t941907 +990049015580206441 RPB929t941909 +990053454090206441 RPB929t941915 +990056900000206441 RPB929t941934 +990149201710206441 RPB929t941935 +990056607540206441 RPB929t941961 +990056110260206441 RPB929t941962 +990055779150206441 RPB929t941963 +990056174210206441 RPB929t941964 +990142775520206441 RPB929t941965 +990055969420206441 RPB929t941971 +990056058070206441 RPB929t941972 +990056025390206441 RPB929t941973 +990056119120206441 RPB929t941974 +990116473420206441 RPB929t942005 +990106253480206441 RPB929t942015 +990056187840206441 RPB929t942017 +990054913260206441 RPB929t942018 +990056175350206441 RPB929t942019 +990056164880206441 RPB929t942020 +990056070700206441 RPB929t942022 +990055847710206441 RPB929t942061 +990056157360206441 RPB929t942062 +990055936560206441 RPB929t942064 +990052529840206441 RPB929t942065 +990056053700206441 RPB929t942066 +990056117680206441 RPB929t942067 +990056112340206441 RPB929t942068 +990104088250206441 RPB929t942069 +990056112350206441 RPB929t942070 +990056050880206441 RPB929t942071 +990055948510206441 RPB929t942072 +990056139440206441 RPB929t942133 +990054630930206441 RPB929t942149 +990126234190206441 RPB929t942208 +990056189020206441 RPB929t942209 +990056174180206441 RPB929t942220 +990054412890206441 RPB929t942221 +990181636570206441 RPB929t950361 +990050018470206441 RPB929t950438 +990056002280206441 RPB929t950690 +990056225390206441 RPB929t950741 +990056857430206441 RPB929t951083 +990050044170206441 RPB929t951119 +990056982510206441 RPB929t951120 +990050017720206441 RPB929t951179 +990056216140206441 RPB929t951184 +990050016050206441 RPB929t951206 +990056982630206441 RPB929t951266 +990050033400206441 RPB929t951267 +990112537790206441 RPB929t951319 +990056219510206441 RPB929t951483 +990056211150206441 RPB929t951499 +990056159690206441 RPB929t951543 +990054876930206441 RPB929t951544 +990056223640206441 RPB929t951603 +990056129150206441 RPB929t951604 +990056252380206441 RPB929t951605 +990050017510206441 RPB929t951616 +990049998300206441 RPB929t951664 +990056283800206441 RPB929t951806 +990049446450206441 RPB929t951825 +990049941680206441 RPB929t951853 +990050037020206441 RPB929t951912 +990050043270206441 RPB929t952011 +990049868050206441 RPB929t952028 +990056979050206441 RPB929t952029 +990049075330206441 RPB929t952030 +990050057240206441 RPB929t952078 +990048922060206441 RPB929t952083 +990054822550206441 RPB929t952084 +990056169480206441 RPB929t952085 +990056203170206441 RPB929t952086 +990056196050206441 RPB929t952091 +990056189320206441 RPB929t952092 +990056184720206441 RPB929t952094 +990056199260206441 RPB929t952095 +990055976010206441 RPB929t952124 +990056003520206441 RPB929t952125 +990056104730206441 RPB929t952126 +990050085780206441 RPB929t960224 +990049423970206441 RPB929t960265 +990049789000206441 RPB929t960410 +990049789000206441 RPB929t960411 +990049987530206441 RPB929t960482 +990052539430206441 RPB929t960483 +990052539440206441 RPB929t960484 +990050017720206441 RPB929t961024 +990049891590206441 RPB929t961040 +990055978910206441 RPB929t961042 +990056204000206441 RPB929t961045 +990050122510206441 RPB929t961079 +990050115240206441 RPB929t961130 +990050088960206441 RPB929t962123 +990050116660206441 RPB929t962125 +990050116710206441 RPB929t962126 +990050116630206441 RPB929t962127 +990050116680206441 RPB929t962128 +990050116610206441 RPB929t962129 +990050116690206441 RPB929t962134 +990050116520206441 RPB929t962141 +990050136850206441 RPB929t962149 +990049958430206441 RPB929t962158 +990050099680206441 RPB929t962166 +990049997070206441 RPB929t962190 +990056274920206441 RPB929t962236 +990056369300206441 RPB929t962238 +990056366750206441 RPB929t962240 +990056361940206441 RPB929t962241 +990056179360206441 RPB929t962262 +990056392610206441 RPB929t962318 +990056280180206441 RPB929t962319 +990056222100206441 RPB929t962322 +990056281010206441 RPB929t962324 +990056260860206441 RPB929t962328 +990055777020206441 RPB929t962330 +990054599710206441 RPB929t962410 +990175611970206441 RPB929t962521 +990054638230206441 RPB929t962569 +990056026440206441 RPB929t962636 +990050105020206441 RPB929t962642 +990056371560206441 RPB929t962649 +990049197950206441 RPB929t962657 +990048530900206441 RPB929t962692 +990050180470206441 RPB929t962728 +990049075330206441 RPB929t962730 +990050075790206441 RPB929t962787 +990048882560206441 RPB929t962841 +990056325390206441 RPB929t962850 +990056406260206441 RPB929t962855 +990052532010206441 RPB929t962857 +990052527060206441 RPB929t962858 +990052527050206441 RPB929t962859 +990056205280206441 RPB929t962864 +990056896950206441 RPB929t962912 +990050047560206441 RPB929t962952 +990056822530206441 RPB929t962954 +990049850740206441 RPB929t962959 +990056255650206441 RPB929t962986 +990056196010206441 RPB929t970004 +990056375330206441 RPB929t970017 +990056392550206441 RPB929t970035 +990056392560206441 RPB929t970036 +990049075330206441 RPB929t970117 +990055779300206441 RPB929t970118 +990056371610206441 RPB929t970170 +990056416160206441 RPB929t970189 +990056419010206441 RPB929t970190 +990052544090206441 RPB929t970203 +990052544020206441 RPB929t970204 +990056432240206441 RPB929t970205 +990056412940206441 RPB929t970206 +990111862410206441 RPB929t970400 +990048702200206441 RPB929t970403 +990050168710206441 RPB929t970432 +990050075790206441 RPB929t970439 +990050226860206441 RPB929t970450 +990050177620206441 RPB929t970582 +990056997750206441 RPB929t970596 +990050554600206441 RPB929t970854 +990050555250206441 RPB929t970858 +990057036030206441 RPB929t970925 +990050019730206441 RPB929t970933 +990050608990206441 RPB929t970945 +990050016060206441 RPB929t970951 +990049958430206441 RPB929t970952 +990050670280206441 RPB929t970957 +990050066970206441 RPB929t970975 +990050610640206441 RPB929t971322 +990165016950206441 RPB929t971433 +990049781990206441 RPB929t971469 +990050670430206441 RPB929t971488 +990049948850206441 RPB929t971642 +990049831070206441 RPB929t971835 +990057036120206441 RPB929t971844 +990050481190206441 RPB929t971944 +990057056560206441 RPB929t971980 +990050040830206441 RPB929t971981 +990050691560206441 RPB929t971985 +990049979880206441 RPB929t971988 +990056486210206441 RPB929t972082 +990056012220206441 RPB929t972083 +990056483920206441 RPB929t972085 +990056483880206441 RPB929t972086 +990056476480206441 RPB929t972087 +990056423510206441 RPB929t972088 +990050128610206441 RPB929t972101 +990050453410206441 RPB929t972106 +990056436990206441 RPB929t972159 +990054196160206441 RPB929t972176 +990056415980206441 RPB929t972196 +990056404160206441 RPB929t972203 +990056426150206441 RPB929t972204 +990056476540206441 RPB929t972205 +990056246550206441 RPB929t972207 +990050048830206441 RPB929t972508 +990050392520206441 RPB929t972518 +990056509240206441 RPB929t972591 +990056377770206441 RPB929t972653 +990056525790206441 RPB929t972684 +990056511730206441 RPB929t972685 +990049892930206441 RPB929t972709 +990050954600206441 RPB929t972737 +990050823950206441 RPB929t972738 +990048566930206441 RPB929t972757 +990056266710206441 RPB929t972844 +990051046540206441 RPB929t973135 +990051046270206441 RPB929t973140 +990055902170206441 RPB929t973226 +990055628460206441 RPB929t973235 +990056536640206441 RPB929t973236 +990050609240206441 RPB929t973590 +990050611650206441 RPB929t973605 +990056992090206441 RPB929t973672 +990056252320206441 RPB929t973720 +990051706380206441 RPB929t980005 +990054866190206441 RPB929t980090 +990111655550206441 RPB929t980159 +990050688260206441 RPB929t980242 +990052589570206441 RPB929t980278 +990049847540206441 RPB929t980279 +990056511700206441 RPB929t980347 +990056531640206441 RPB929t980348 +990051161910206441 RPB929t980349 +990178040750206441 RPB929t980352 +990111993150206441 RPB929t980468 +990135768360206441 RPB929t980627 +990056569690206441 RPB929t980708 +990056570440206441 RPB929t980709 +990056570460206441 RPB929t980710 +990056576700206441 RPB929t980711 +990056570550206441 RPB929t980712 +990056570510206441 RPB929t980713 +990056570480206441 RPB929t980714 +990051228610206441 RPB929t980743 +990056361590206441 RPB929t980755 +990056568570206441 RPB929t980762 +990056572280206441 RPB929t980765 +990049982840206441 RPB929t980771 +990056555270206441 RPB929t980965 +990052526460206441 RPB929t981108 +990052548570206441 RPB929t981109 +990052548580206441 RPB929t981110 +990052548590206441 RPB929t981111 +990052548630206441 RPB929t981112 +990052548600206441 RPB929t981113 +990052548610206441 RPB929t981114 +990052548620206441 RPB929t981115 +990049968870206441 RPB929t981183 +990050284970206441 RPB929t981185 +990052905070206441 RPB929t981503 +990050614380206441 RPB929t981521 +990049768910206441 RPB929t981523 +990051493180206441 RPB929t981545 +990048870300206441 RPB929t981568 +990051413070206441 RPB929t981587 +990054872050206441 RPB929t981601 +990108744180206441 RPB929t981602 +990056617430206441 RPB929t981603 +990056604730206441 RPB929t981697 +990056476490206441 RPB929t981744 +990056466230206441 RPB929t981745 +990050027120206441 RPB929t981789 +990051706370206441 RPB929t982199 +990052200370206441 RPB929t982202 +990051619280206441 RPB929t982378 +990056603390206441 RPB929t982403 +990052555200206441 RPB929t982404 +990049979880206441 RPB929t982474 +990056846430206441 RPB929t982817 +990051413030206441 RPB929t982853 +990057169900206441 RPB929t982860 +990056266710206441 RPB929t982887 +990052135970206441 RPB929t982893 +990049850740206441 RPB929t982895 +990056300170206441 RPB929t983005 +990107556310206441 RPB929t983027 +990048487740206441 RPB929t983061 +990056648250206441 RPB929t983077 +990052201690206441 RPB929t983081 +990054354490206441 RPB929t983106 +990055910790206441 RPB929t983121 +990056145670206441 RPB929t983122 +990057208560206441 RPB929t983353 +990056559820206441 RPB929t983368 +990056671460206441 RPB929t983535 +990056671440206441 RPB929t983536 +990054594230206441 RPB929t983540 +990052543860206441 RPB929t983562 +990052543910206441 RPB929t983563 +990052543880206441 RPB929t983564 +990052543870206441 RPB929t983565 +990052543860206441 RPB929t983568 +990052543840206441 RPB929t983569 +990052543850206441 RPB929t983570 +990051925610206441 RPB929t990095 +990056662530206441 RPB929t990129 +990056656800206441 RPB929t990130 +990056650740206441 RPB929t990131 +990054354490206441 RPB929t990184 +990051993910206441 RPB929t990210 +990056682210206441 RPB929t990222 +990052200660206441 RPB929t990223 +990052454310206441 RPB929t990265 +990051851420206441 RPB929t990269 +990114577560206441 RPB929t990401 +990052203900206441 RPB929t990435 +990056676760206441 RPB929t990438 +990105963580206441 RPB929t990542 +990056066630206441 RPB929t990543 +990056010140206441 RPB929t990741 +990052468950206441 RPB929t990761 +990052461980206441 RPB929t990766 +990052562270206441 RPB929t990926 +990052562260206441 RPB929t990927 +990052532000206441 RPB929t990928 +990056712000206441 RPB929t990934 +990050088960206441 RPB929t990947 +990050953070206441 RPB929t991171 +990056711830206441 RPB929t991192 +990056056370206441 RPB929t991193 +990056726080206441 RPB929t991194 +990056721940206441 RPB929t991195 +990056726040206441 RPB929t991196 +990056340410206441 RPB929t991197 +990056021340206441 RPB929t991240 +990101191130206441 RPB929t991680 +990051117290206441 RPB929t992609 +990056003520206441 RPB929t992654 +990049001210206441 RPB929t992734 +990049075330206441 RPB929t992735 +990050177480206441 RPB929t993049 +990050165890206441 RPB929t993057 +990052475610206441 RPB929t993077 +990056682190206441 RPB929t993172 +990101286040206441 RPB929t993228 +990053068480206441 RPB929t993230 +990101716190206441 RPB929t993387 +990056337370206441 RPB929t993389 +990052468390206441 RPB929t993428 +990049813250206441 RPB929t993429 +99370777663406441 RPB929t993448 +990054304730206441 RPB929t993582 +990054304720206441 RPB929t993584 +990056252380206441 RPB929t993590 +990050614380206441 RPB929t993604 +990109221610206441 RPB929t993605 +990057125340206441 RPB929t993611 +990055401480206441 RPB929t993721 +990109353760206441 RPB929t993775 +990049418550206441 RPB929t993805 +990109483190206441 RPB929t993854 +990109483670206441 RPB929t993855 +990056325610206441 RPB929t993881 +990056698780206441 RPB929t993904 +990109550020206441 RPB929t993905 +990109564830206441 RPB929t993906 +990056692370206441 RPB929t993907 +990109366150206441 RPB929t993908 +990142882900206441 RPB929w18025002 +990108056880206441 RPB036t000055 +990225365160206441 RPB036t000254 +990048802090206441 RPB036t000337 +990048802090206441 RPB036t000337a +990107596850206441 RPB036t000339 +990056406260206441 RPB036t000355 +990056634190206441 RPB036t000386 +990113661720206441 RPB036t000464 +990113591050206441 RPB036t000465 +990113682240206441 RPB036t000467 +990113524350206441 RPB036t000468 +990056401240206441 RPB036t000469 +990107372070206441 RPB036t000470 +990113660490206441 RPB036t000471 +990113537330206441 RPB036t000472 +990113487730206441 RPB036t000473 +990113572090206441 RPB036t000474 +990113530420206441 RPB036t000475 +990113658290206441 RPB036t000476 +990113599280206441 RPB036t000479 +990113417960206441 RPB036t000480 +990108263490206441 RPB036t000483 +990113535560206441 RPB036t000486 +990101074160206441 RPB036t000492 +990113599520206441 RPB036t000501 +990108458360206441 RPB036t000522 +990113590830206441 RPB036t000546 +990113073360206441 RPB036t000547 +990108744430206441 RPB036t000549 +990155190590206441 RPB036t000598 +990113453320206441 RPB036t000600 +990116889680206441 RPB036t000622 +990113342650206441 RPB036t000627 +990105189730206441 RPB036t000643 +990056746200206441 RPB036t000656 +990210802440206441 RPB036t000662 +990101331130206441 RPB036t000663 +990109798070206441 RPB036t000665 +990114418860206441 RPB036t000825 +990108131750206441 RPB036t000826 +990113926980206441 RPB036t000827 +990056499210206441 RPB036t000829 +990108733620206441 RPB036t000830 +990113816750206441 RPB036t000831 +990108810240206441 RPB036t000833 +990114357670206441 RPB036t000834 +990109403600206441 RPB036t000890 +990056270690206441 RPB036t000891 +990107267220206441 RPB036t000892 +990113573120206441 RPB036t000893 +990056454120206441 RPB036t000920 +990113757980206441 RPB036t000926 +990114353430206441 RPB036t000930 +990114055130206441 RPB036t000931 +990113814880206441 RPB036t000932 +990114353740206441 RPB036t000934 +990056489820206441 RPB036t000941 +990113813360206441 RPB036t000988 +990104949440206441 RPB036t001043 +990113745470206441 RPB036t001045 +990108068430206441 RPB036t001125 +990048504410206441 RPB036t001184 +990108878690206441 RPB036t001207 +990056060670206441 RPB036t001245 +990056725690206441 RPB036t001438 +990055913100206441 RPB036t001439 +990055212400206441 RPB036t001556 +990032566860206441 RPB036t0111011 +990055631440206441 RPB036t0112571 +990103600040206441 RPB036t0112727 +990103600050206441 RPB036t0114021 +990057072240206441 RPB036t0114167 +990056807960206441 RPB036t0114918 +990054854390206441 RPB036t0115019 +990055750450206441 RPB036t0115023 +990047938720206441 RPB036t0115198 +990134296170206441 RPB036t0115252 +990055290620206441 RPB036t0115272 +990056654580206441 RPB036t0115281 +990105201520206441 RPB036t0115439 +990057098040206441 RPB036t0117223 +990113117840206441 RPB036t020014 +990105722120206441 RPB036t020015 +990114173690206441 RPB036t020022 +990115194740206441 RPB036t020023 +990115194670206441 RPB036t020024 +990115123650206441 RPB036t020046 +990054067580206441 RPB036t020128 +990056667600206441 RPB036t020129 +990101964210206441 RPB036t020130 +990156269320206441 RPB036t020186 +990107529130206441 RPB036t020199 +990113041160206441 RPB036t020216 +990104971830206441 RPB036t020229 +990056211940206441 RPB036t020230 +990107895290206441 RPB036t020231 +990116288510206441 RPB036t020232 +990115119710206441 RPB036t020233 +990116209820206441 RPB036t020241 +990116533460206441 RPB036t020250 +990108679760206441 RPB036t020252 +990178907730206441 RPB036t020265 +990114420850206441 RPB036t020308 +990107768990206441 RPB036t020310 +990105106330206441 RPB036t020315 +990116286390206441 RPB036t020316 +990194947920206441 RPB036t020317 +990110280060206441 RPB036t020331 +990029634360206441 RPB036t020379 +990108300810206441 RPB036t020381 +990116209660206441 RPB036t020382 +990116209630206441 RPB036t020383 +990113169510206441 RPB036t020384 +990114421080206441 RPB036t020385 +990056601930206441 RPB036t020386 +990114682590206441 RPB036t020387 +990113173780206441 RPB036t020401 +990105612440206441 RPB036t020402 +990114995120206441 RPB036t020403 +990108721260206441 RPB036t020404 +990115123890206441 RPB036t020420 +990056746200206441 RPB036t020684 +990056990240206441 RPB036t020694 +990052480030206441 RPB036t021277 +990054448800206441 RPB036t021288 +990113777320206441 RPB036t021367 +990165536660206441 RPB036t021519 +990109959190206441 RPB036t030510 +990101331130206441 RPB036t040264 +990139730780206441 RPB036t040394 +990125340180206441 RPB036t040604 +990049860260206441 RPB036t040749 +990056746200206441 RPB036t040917 +990126388840206441 RPB036t041054 +990126250880206441 RPB036t041065 +990141203350206441 RPB036t041094 +990170956510206441 RPB036t041295 +990141204330206441 RPB036t041434 +990048359760206441 RPB036t050151 +990125283560206441 RPB036t050489 +990124722490206441 RPB036t050518 +990135727150206441 RPB036t050723 +990129082500206441 RPB036t050725 +990117437690206441 RPB036t050744 +990135727030206441 RPB036t050746 +990120849810206441 RPB036t050747 +990132934310206441 RPB036t050748 +990170864830206441 RPB036t050828 +990176236460206441 RPB036t050829 +990158548780206441 RPB036t050923 +990135906940206441 RPB036t050968 +990136036850206441 RPB036t050974 +990136030380206441 RPB036t051065 +990121365020206441 RPB036t051089 +990120401550206441 RPB036t051113 +990132840320206441 RPB036t051114 +990194003790206441 RPB036t051115 +990101964370206441 RPB036t051117 +990125438480206441 RPB036t051118 +990136037290206441 RPB036t051201 +990136353050206441 RPB036t051202 +990136037210206441 RPB036t051206 +990114055090206441 RPB036t051379 +990055789920206441 RPB036t051383 +99370688470706441 RPB036t051384 +990133417070206441 RPB036t051426 +990133417130206441 RPB036t051427 +990133417140206441 RPB036t051428 +990133417100206441 RPB036t051429 +990136420220206441 RPB036t051430 +990147721400206441 RPB036t051456 +990136030300206441 RPB036t051482 +990049892930206441 RPB036t051487 +990108262670206441 RPB036t051488 +990135729110206441 RPB036t051584 +990139513960206441 RPB036t051648 +990139372070206441 RPB036t051650 +990139558020206441 RPB036t051651 +990136486740206441 RPB036t051652 +990138974820206441 RPB036t051653 +990183565170206441 RPB036t051681 +990054839620206441 RPB036t051682 +990134137440206441 RPB036t051683 +990134137610206441 RPB036t051684 +990143129400206441 RPB036t051779 +990176236460206441 RPB036t051868 +990155870920206441 RPB036t051870 +990114288700206441 RPB036t051871 +990124374700206441 RPB036t051872 +990113064260206441 RPB036t051873 +990121798100206441 RPB036t051905 +990139107750206441 RPB036t051916 +990139107790206441 RPB036t051917 +990139107840206441 RPB036t051918 +990048793330206441 RPB036t052049 +990164854410206441 RPB036t052050 +990101935120206441 RPB036t052054 +990125438240206441 RPB036t052055 +990126320840206441 RPB036t052056 +990134702860206441 RPB036t052057 +990134452630206441 RPB036t052058 +990118070830206441 RPB036t052059 +990135727200206441 RPB036t052061 +990139307700206441 RPB036t052096 +990118182930206441 RPB036t060073 +990143233220206441 RPB036t060079 +990179404170206441 RPB036t060131 +990143690510206441 RPB036t060138 +990119112360206441 RPB036t060151 +990109683100206441 RPB036t060152 +990054832420206441 RPB036t060203 +990139669320206441 RPB036t060235 +990143458530206441 RPB036t060247 +990143629090206441 RPB036t060449 +990143026100206441 RPB036t060450 +990118475340206441 RPB036t060453 +990143101010206441 RPB036t060454 +990114236820206441 RPB036t060523 +990105940370206441 RPB036t060525 +990367716960206441 RPB036t060626 +990107474880206441 RPB036t060633 +990101970320206441 RPB036t060636 +990154277750206441 RPB036t060648 +990151492050206441 RPB036t060809 +990171720570206441 RPB036t060810 +990124379780206441 RPB036t060814 +990142883840206441 RPB036t060851 +990121365050206441 RPB036t060852 +990143024250206441 RPB036t060853 +990144774110206441 RPB036t060856 +990147883600206441 RPB036t060859 +990147883210206441 RPB036t060880 +990151198500206441 RPB036t060960 +990151198360206441 RPB036t060964 +990143232510206441 RPB036t061320 +990154068040206441 RPB036t061574 +990144909470206441 RPB036t061602 +990121732570206441 RPB036t061626 +990136355660206441 RPB036t061754 +990127072730206441 RPB036t061755 +990153882760206441 RPB036t061756 +990151559020206441 RPB036t061827 +990155847780206441 RPB036t061930 +990147721250206441 RPB036t062058 +990154008010206441 RPB036t070053 +990155403940206441 RPB036t070089 +990151266900206441 RPB036t070094 +990151577520206441 RPB036t070095 +990153812870206441 RPB036t070096 +990154067320206441 RPB036t070097 +990154008550206441 RPB036t070098 +990154066750206441 RPB036t070102 +990136041880206441 RPB036t070103 +990144844520206441 RPB036t070104 +990113589400206441 RPB036t070105 +990144769520206441 RPB036t070106 +990155403930206441 RPB036t070107 +990155140250206441 RPB036t070108 +990155403960206441 RPB036t070109 +990151649380206441 RPB036t070110 +990154006260206441 RPB036t070111 +990151316570206441 RPB036t070112 +990135854350206441 RPB036t070140 +990139038920206441 RPB036t070151 +990174972590206441 RPB036t070187 +990155777370206441 RPB036t070333 +990151266360206441 RPB036t070334 +990155848770206441 RPB036t070335 +990155849650206441 RPB036t070336 +990155849630206441 RPB036t070337 +990155704310206441 RPB036t070338 +990174042750206441 RPB036t070443 +990155873930206441 RPB036t070462 +990156269320206441 RPB036t070478 +990164942690206441 RPB036t070485 +990155901550206441 RPB036t070490 +990155969800206441 RPB036t070491 +990155971790206441 RPB036t070492 +990155901870206441 RPB036t070493 +990155901710206441 RPB036t070494 +990155469290206441 RPB036t070495 +990144836510206441 RPB036t070496 +990156122970206441 RPB036t070497 +990144689840206441 RPB036t070510 +990154657020206441 RPB036t070511 +990056051070206441 RPB036t070512 +990049094710206441 RPB036t070583 +990134449240206441 RPB036t070676 +990101940030206441 RPB036t070677 +990108458150206441 RPB036t070705 +990056746200206441 RPB036t070717 +990154871060206441 RPB036t070836 +990155698600206441 RPB036t070838 +990157197770206441 RPB036t070845 +990133842960206441 RPB036t070851 +990154871150206441 RPB036t070853 +990156459350206441 RPB036t070897 +990155544580206441 RPB036t070900 +990155971990206441 RPB036t070923 +990155469230206441 RPB036t070938 +990156261080206441 RPB036t070939 +990156743820206441 RPB036t070942 +990157017920206441 RPB036t070944 +990157017410206441 RPB036t070945 +990164197810206441 RPB036t070973 +990171219800206441 RPB036t070989 +990157390240206441 RPB036t070990 +990157201690206441 RPB036t070991 +990155369930206441 RPB036t070992 +990101940160206441 RPB036t071011 +990156263360206441 RPB036t071012 +990171158690206441 RPB036t071029 +990113010660206441 RPB036t071122 +990144772000206441 RPB036t071123 +990194018670206441 RPB036t071126 +990048851030206441 RPB036t071149 +990114854310206441 RPB036t071221 +990165296680206441 RPB036t071230 +990157393780206441 RPB036t071267 +990116813750206441 RPB036t071271 +990151188620206441 RPB036t071272 +990196686230206441 RPB036t071273 +990154793330206441 RPB036t071472 +990157097630206441 RPB036t071478 +990159690030206441 RPB036t071479 +990159689930206441 RPB036t071480 +990155628490206441 RPB036t071481 +990159610140206441 RPB036t071482 +990157584820206441 RPB036t071483 +990159271680206441 RPB036t071484 +990159336280206441 RPB036t071485 +990155704240206441 RPB036t071628 +990160031350206441 RPB036t071727 +990151266540206441 RPB036t071728 +990160085450206441 RPB036t071729 +990160035490206441 RPB036t071730 +990157081700206441 RPB036t071743 +990157106440206441 RPB036t071744 +990159901540206441 RPB036t071782 +990143024640206441 RPB036t071879 +990113089720206441 RPB036t071901 +990165405210206441 RPB036t071911 +990160536280206441 RPB036t071927 +990159834070206441 RPB036t071943 +990105422510206441 RPB036t071944 +990160035020206441 RPB036t071945 +990160877360206441 RPB036t071958 +990159570540206441 RPB036t080116 +990164197180206441 RPB036t080134 +990164194590206441 RPB036t080168 +990164028030206441 RPB036t080170 +990164018970206441 RPB036t080171 +990163865990206441 RPB036t080172 +990119551400206441 RPB036t080199 +990206742300206441 RPB036t080445 +990164628510206441 RPB036t080502 +990165106540206441 RPB036t080613 +990165494050206441 RPB036t080690 +990159936380206441 RPB036t080785 +990174290790206441 RPB036t080922 +990047929440206441 RPB036t080924 +990164562110206441 RPB036t080939 +990164562090206441 RPB036t080940 +990164562070206441 RPB036t080941 +990164561110206441 RPB036t080942 +990182057390206441 RPB036t080968 +990166615330206441 RPB036t081075 +990165021710206441 RPB036t081076 +990166609960206441 RPB036t081110 +990184546080206441 RPB036t081521 +990160312920206441 RPB036t081535 +990160449650206441 RPB036t081536 +990160449690206441 RPB036t081537 +990056512460206441 RPB036t081549 +990104994510206441 RPB036t081554 +990101943190206441 RPB036t081555 +990101943920206441 RPB036t081556 +990117384360206441 RPB036t081557 +990118897540206441 RPB036t081614 +990116304820206441 RPB036t081615 +990164700780206441 RPB036t081819 +990176442390206441 RPB036t081834 +990176759720206441 RPB036t081850 +990171367500206441 RPB036t081893 +990171158550206441 RPB036t081894 +990171368760206441 RPB036t081895 +990171368690206441 RPB036t081896 +990171299310206441 RPB036t081897 +990170877620206441 RPB036t081922 +990181802080206441 RPB036t081925 +990171078190206441 RPB036t082029 +990171228320206441 RPB036t082065 +990171228060206441 RPB036t082066 +990171913340206441 RPB036t082161 +990171228210206441 RPB036t082163 +990171529980206441 RPB036t082166 +990055476180206441 RPB036t082169 +990120329330206441 RPB036t082170 +990166385830206441 RPB036t082171 +990171921880206441 RPB036t082321 +990165402350206441 RPB036t090287 +990173087600206441 RPB036t090320 +990173087540206441 RPB036t090321 +990056746200206441 RPB036t090323 +990165403760206441 RPB036t090326 +990160538840206441 RPB036t090327 +990165193090206441 RPB036t090328 +990165193180206441 RPB036t090343 +990166385990206441 RPB036t090344 +990165018670206441 RPB036t090345 +990171227580206441 RPB036t090347 +990171219600206441 RPB036t090348 +990171227470206441 RPB036t090349 +990159127300206441 RPB036t090350 +990165247410206441 RPB036t090351 +990165245570206441 RPB036t090352 +990171227370206441 RPB036t090353 +990171813790206441 RPB036t090354 +990171813550206441 RPB036t090355 +990171080840206441 RPB036t090356 +990172169920206441 RPB036t090357 +990172169940206441 RPB036t090361 +990165247300206441 RPB036t090371 +990159198670206441 RPB036t090376 +990157079260206441 RPB036t090377 +990172167690206441 RPB036t090379 +990173872370206441 RPB036t090477 +990178852890206441 RPB036t090641 +990174038630206441 RPB036t090767 +990174139520206441 RPB036t090768 +990174135770206441 RPB036t090779 +990174135750206441 RPB036t090780 +990173881680206441 RPB036t090781 +990173882370206441 RPB036t090782 +990171636960206441 RPB036t090783 +990173882440206441 RPB036t090784 +990171728780206441 RPB036t090786 +990174648100206441 RPB036t091004 +990174648110206441 RPB036t091005 +990167161520206441 RPB036t091007 +990164859630206441 RPB036t091009 +990139303240206441 RPB036t091012 +990173171590206441 RPB036t091013 +990113538950206441 RPB036t091067 +990147887680206441 RPB036t091068 +990116278870206441 RPB036t091072 +990116278840206441 RPB036t091073 +990119235540206441 RPB036t091074 +990133174620206441 RPB036t091161 +990108655930206441 RPB036t091162 +990174647720206441 RPB036t091164 +990175764690206441 RPB036t091459 +990175764720206441 RPB036t091460 +990143232620206441 RPB036t091602 +990173730460206441 RPB036t091612 +990165018180206441 RPB036t091614 +990176823990206441 RPB036t091666 +990139558250206441 RPB036t091718 +990182919980206441 RPB036t091758 +990177056640206441 RPB036t091794 +990177054640206441 RPB036t091795 +990177056850206441 RPB036t091796 +990176976830206441 RPB036t091797 +990177054560206441 RPB036t091798 +990175764810206441 RPB036t091799 +990175764760206441 RPB036t091800 +990175764040206441 RPB036t091801 +990167161490206441 RPB036t091802 +990176602510206441 RPB036t091805 +990175614620206441 RPB036t091811 +990176039740206441 RPB036t091814 +990177595090206441 RPB036t091842 +990177591120206441 RPB036t091932 +990176639170206441 RPB036t091969 +990177489050206441 RPB036t092085 +990177488950206441 RPB036t092086 +990177681890206441 RPB036t092087 +990177591060206441 RPB036t092088 +990181086870206441 RPB036t092104 +990177165760206441 RPB036t092105 +990177165570206441 RPB036t092106 +990054350900206441 RPB036t092110 +990176900630206441 RPB036t092111 +990177682510206441 RPB036t092135 +990177824950206441 RPB036t100046 +990177907080206441 RPB036t100109 +990144402320206441 RPB036t100138 +990157508110206441 RPB036t100182 +990178439520206441 RPB036t100189 +990143034050206441 RPB036t100266 +990159107920206441 RPB036t100312 +990107590020206441 RPB036t100313 +990178575680206441 RPB036t100319 +990056969100206441 RPB036t100482 +990175607410206441 RPB036t100851 +990104955550206441 RPB036t100877 +990131167030206441 RPB036t100886 +990131167060206441 RPB036t100887 +990131167120206441 RPB036t100888 +990180835380206441 RPB036t100889 +990187927470206441 RPB036t100971 +990180976210206441 RPB036t100978 +990180429530206441 RPB036t101119 +990179422230206441 RPB036t101133 +990202131320206441 RPB036t101142 +990183912890206441 RPB036t101328 +990048885460206441 RPB036t101341 +990182145070206441 RPB036t101512 +990206193350206441 RPB036t101560 +990155400410206441 RPB036t101608 +990049909810206441 RPB036t101646 +990182517390206441 RPB036t110181 +990181704620206441 RPB036t110182 +990178743880206441 RPB036t110183 +990183044870206441 RPB036t110193 +990183056190206441 RPB036t110194 +990183044540206441 RPB036t110195 +990180239010206441 RPB036t110196 +990178963350206441 RPB036t110197 +990154140630206441 RPB036t110198 +990172177040206441 RPB036t110199 +990164701860206441 RPB036t110200 +990164637190206441 RPB036t110201 +990157083050206441 RPB036t110202 +990176035090206441 RPB036t110203 +990183050250206441 RPB036t110204 +990181619740206441 RPB036t110205 +990179411920206441 RPB036t110206 +990178743800206441 RPB036t110211 +990171227960206441 RPB036t110212 +990183046650206441 RPB036t110213 +990179052190206441 RPB036t110214 +990153875320206441 RPB036t110215 +990178528360206441 RPB036t110216 +990151505450206441 RPB036t110217 +990175049680206441 RPB036t110218 +990173496680206441 RPB036t110219 +990118004770206441 RPB036t110220 +990156120720206441 RPB036t110221 +990156120740206441 RPB036t110222 +990173882560206441 RPB036t110223 +990174046700206441 RPB036t110224 +990174139950206441 RPB036t110225 +990167076060206441 RPB036t110226 +990171917610206441 RPB036t110227 +990182323390206441 RPB036t110235 +990182600240206441 RPB036t110237 +990177353090206441 RPB036t110242 +990177778970206441 RPB036t110243 +990173171950206441 RPB036t110246 +990181807520206441 RPB036t110247 +990181808150206441 RPB036t110248 +990174138750206441 RPB036t110251 +990171998720206441 RPB036t110252 +990171996630206441 RPB036t110253 +990164637350206441 RPB036t110254 +990164637300206441 RPB036t110255 +990164946080206441 RPB036t110256 +990178337400206441 RPB036t110261 +990175754580206441 RPB036t110262 +990178337040206441 RPB036t110263 +990175045990206441 RPB036t110264 +990178755210206441 RPB036t110265 +990178755230206441 RPB036t110266 +990176111040206441 RPB036t110267 +990176441970206441 RPB036t110269 +990144414310206441 RPB036t110270 +990180420890206441 RPB036t110273 +990181160000206441 RPB036t110276 +990177778760206441 RPB036t110278 +990156396320206441 RPB036t110279 +990180510490206441 RPB036t110280 +990156396280206441 RPB036t110281 +990176509770206441 RPB036t110325 +990182326390206441 RPB036t110326 +990181800660206441 RPB036t110327 +990181800620206441 RPB036t110328 +990181054580206441 RPB036t110329 +990178133190206441 RPB036t110330 +990175617580206441 RPB036t110331 +990183832440206441 RPB036t110334 +990174041790206441 RPB036t110336 +990183924490206441 RPB036t110337 +990183924620206441 RPB036t110338 +990183425450206441 RPB036t110339 +990183423440206441 RPB036t110340 +990183351460206441 RPB036t110341 +990183512690206441 RPB036t110342 +990183723950206441 RPB036t110343 +990183424700206441 RPB036t110344 +990177686370206441 RPB036t110349 +990183254680206441 RPB036t110350 +990182854920206441 RPB036t110351 +990182854740206441 RPB036t110352 +990183045510206441 RPB036t110353 +990182854590206441 RPB036t110354 +990182952160206441 RPB036t110355 +990183828900206441 RPB036t110356 +990136106310206441 RPB036t110399 +990144953640206441 RPB036t110400 +990055002950206441 RPB036t110401 +990056553810206441 RPB036t110435 +990109403840206441 RPB036t110454 +990109403410206441 RPB036t110456 +990181802520206441 RPB036t110654 +990173329760206441 RPB036t110840 +990184340450206441 RPB036t110870 +990184428500206441 RPB036t110871 +990183346250206441 RPB036t110872 +990174272370206441 RPB036t110873 +990107037400206441 RPB036t110874 +990187314810206441 RPB036t110875 +990187320380206441 RPB036t110876 +990187319950206441 RPB036t110877 +990187028520206441 RPB036t110878 +990187320230206441 RPB036t110879 +990105969720206441 RPB036t110881 +990184244140206441 RPB036t110882 +990182700970206441 RPB036t110883 +990188006520206441 RPB036t110922 +990187505330206441 RPB036t110923 +990187930810206441 RPB036t110924 +990187924760206441 RPB036t110925 +990180507320206441 RPB036t111028 +990170618070206441 RPB036t111071 +990188421920206441 RPB036t111072 +990188254520206441 RPB036t111073 +990188339740206441 RPB036t111074 +990184419340206441 RPB036t111165 +990184518720206441 RPB036t111193 +990104975640206441 RPB036t111194 +990182144400206441 RPB036t111195 +990182954130206441 RPB036t111196 +990188497640206441 RPB036t111323 +990184419540206441 RPB036t111340 +990171154760206441 RPB036t111343 +990203404980206441 RPB036t111594 +990048748300206441 RPB036t120126 +990188587600206441 RPB036t120150 +990190181020206441 RPB036t120152 +990189770260206441 RPB036t120160 +990187926720206441 RPB036t120161 +990190438270206441 RPB036t120162 +990143033980206441 RPB036t120216 +990165194550206441 RPB036t120219 +990189842000206441 RPB036t120345 +990197574290206441 RPB036t120379 +990184512740206441 RPB036t120463 +990181151860206441 RPB036t120464 +990171306380206441 RPB036t120474 +990164937780206441 RPB036t120481 +990194484500206441 RPB036t120528 +990191891250206441 RPB036t120888 +990191568400206441 RPB036t121129 +990190872500206441 RPB036t121130 +990189775830206441 RPB036t121132 +990191888840206441 RPB036t121133 +990189842130206441 RPB036t121141 +990191408410206441 RPB036t121146 +990189932480206441 RPB036t121151 +990190006820206441 RPB036t121182 +990191996560206441 RPB036t121307 +990191669980206441 RPB036t121308 +990183565170206441 RPB036t121384 +990183565170206441 RPB036t121385 +990103609160206441 RPB036t121480 +990192480100206441 RPB036t121489 +990192512030206441 RPB036t121504 +990192513900206441 RPB036t121511 +990193499500206441 RPB036t121745 +990175588560206441 RPB036t121777 +990181344360206441 RPB036t121928 +990192877100206441 RPB036t122023 +990179472320206441 RPB036t122164 +990191141260206441 RPB036t130122 +990160268650206441 RPB036t130172 +990174929560206441 RPB036t130228 +990056413730206441 RPB036t130322 +990116300900206441 RPB036t130343 +990170595410206441 RPB036t130491 +990056746200206441 RPB036t130546 +990196271320206441 RPB036t130673 +990165200530206441 RPB036t130830 +990197273620206441 RPB036t130831 +990194204880206441 RPB036t130864 +990194518860206441 RPB036t130865 +990204217550206441 RPB036t131002 +990192421020206441 RPB036t131023 +990192984020206441 RPB036t131026 +990108333550206441 RPB036t131027 +990193943860206441 RPB036t131028 +990196924430206441 RPB036t131029 +990192354390206441 RPB036t131030 +990192436810206441 RPB036t131178 +990141212710206441 RPB036t131316 +990191343950206441 RPB036t131379 +990195232750206441 RPB036t131611 +990202187930206441 RPB036t131893 +990196743590206441 RPB036t140060 +990195352980206441 RPB036t140063 +990192449090206441 RPB036t140079 +990202867960206441 RPB036t140519 +990193138500206441 RPB036t140525 +990202228900206441 RPB036t140526 +990202292170206441 RPB036t140527 +990180421470206441 RPB036t140528 +990180429460206441 RPB036t140670 +990203261590206441 RPB036t140673 +990203215910206441 RPB036t140961 +990203586070206441 RPB036t140980 +990170623100206441 RPB036t141042 +990204437330206441 RPB036t141092 +990205058390206441 RPB036t141244 +990204514160206441 RPB036t141308 +990204791770206441 RPB036t141311 +990120401540206441 RPB036t141314 +990173088330206441 RPB036t141394 +990205574810206441 RPB036t141506 +990197655240206441 RPB036t141507 +990203386970206441 RPB036t141552 +990205795730206441 RPB036t141721 +990205986270206441 RPB036t141723 +990197275850206441 RPB036t141887 +990194364370206441 RPB036t141928 +990101960000206441 RPB036t141944 +990189686360206441 RPB036t141945 +990206339380206441 RPB036t150022 +990206093820206441 RPB036t150060 +990056247930206441 RPB036t150061 +990189137250206441 RPB036t150066 +990206524160206441 RPB036t150069 +990206499480206441 RPB036t150165 +990134380470206441 RPB036t150237 +990206540900206441 RPB036t150406 +990206807790206441 RPB036t150808 +990208039880206441 RPB036t151004 +990208081670206441 RPB036t151042 +990208096230206441 RPB036t151061 +990144917090206441 RPB036t151128 +990202122730206441 RPB036t151180 +990208316700206441 RPB036t151181 +990208316980206441 RPB036t151182 +990208317130206441 RPB036t151183 +990208317250206441 RPB036t151184 +990207384310206441 RPB036t151303 +990193245620206441 RPB036t151500 +990208888760206441 RPB036t151566 +990208888740206441 RPB036t151567 +990204849990206441 RPB036t151813 +990204849940206441 RPB036t151814 +990204849560206441 RPB036t151815 +990056488620206441 RPB036t151816 +990208741730206441 RPB036t160004 +990196271610206441 RPB036t160267 +990193942730206441 RPB036t160442 +990211571330206441 RPB036t160451 +990218046380206441 RPB036t160469 +990047835620206441 RPB036t160699 +990212521470206441 RPB036t160765 +990213702150206441 RPB036t161154 +990214088060206441 RPB036t161393 +990214064070206441 RPB036t161552 +990119236250206441 RPB036t161694 +990214489870206441 RPB036t161695 +990219376930206441 RPB036t161696 +990214618190206441 RPB036t170005 +990175764640206441 RPB036t170008 +990214640780206441 RPB036t170009 +990214695300206441 RPB036t170058 +990213769070206441 RPB036t170172 +990214863180206441 RPB036t170174 +990217659350206441 RPB036t170408 +990217955220206441 RPB036t170646 +990212521420206441 RPB036t170652 +990217822600206441 RPB036t170723 +990187314870206441 RPB036t170798 +990218398920206441 RPB036t170892 +990212827030206441 RPB036t170923 +990219065690206441 RPB036t171291 +990219512680206441 RPB036t171608 +990227366320206441 RPB036t172011 +990217509170206441 RPB036t172012 +990220108720206441 RPB036t172013 +990220313800206441 RPB036t172033 +990220313780206441 RPB036t172034 +990219988140206441 RPB036t172131 +990192168080206441 RPB036t180265 +990223003880206441 RPB036t180278 +990223498900206441 RPB036t180518 +990223806190206441 RPB036t180708 +990223827770206441 RPB036t180709 +990219844270206441 RPB036t180730 +990223916170206441 RPB036t180753 +990223916680206441 RPB036t180758 +990228681890206441 RPB036t181010 +990214099900206441 RPB036t181348 +990226680720206441 RPB036t181734 +990226808160206441 RPB036t181944 +990154162720206441 RPB036t182101 +990227397780206441 RPB036t190205 +990227914950206441 RPB036t190289 +990227929660206441 RPB036t190292 +990141198830206441 RPB036t190299 +990227961400206441 RPB036t190306 +990227963010206441 RPB036t190307 +990365401770206441 RPB036t190321 +990228045290206441 RPB036t190373 +990228236800206441 RPB036t190500 +990212827460206441 RPB036t190517 +990219376930206441 RPB036t190518 +990228239410206441 RPB036t190519 +990228251940206441 RPB036t190520 +990228313310206441 RPB036t190580 +990228313410206441 RPB036t190581 +990107962860206441 RPB036t190582 +990113275050206441 RPB036t190583 +990228315360206441 RPB036t190584 +990104077660206441 RPB036t190585 +990207788410206441 RPB036t190590 +990222991660206441 RPB036t190591 +990211125890206441 RPB036t190629 +990228437190206441 RPB036t190679 +990228369140206441 RPB036t190770 +990228600530206441 RPB036t190777 +990363484130206441 RPB036t190934 +990175754620206441 RPB036t191042 +990199101820206441 RPB036t191044 +990363438440206441 RPB036t191397 +990204806050206441 RPB036t191463 +990210868660206441 RPB036t191500 +990192513900206441 RPB036t191860 +990364358590206441 RPB036t191883 +990364382380206441 RPB036t191891 +990364382540206441 RPB036t191892 +990364484270206441 RPB036t191974 +990364380870206441 RPB036t191997 +990364380970206441 RPB036t191998 +990368227220206441 RPB036t200101 +990365403000206441 RPB036t200212 +990363526750206441 RPB036t200215 +990206280630206441 RPB036t200279 +990365693930206441 RPB036t200280 +990365732440206441 RPB036t200315 +990365401980206441 RPB036t200558 +990366178040206441 RPB036t200634 +990366177950206441 RPB036t200636 +990366204250206441 RPB036t200650 +990366204240206441 RPB036t200651 +990366268400206441 RPB036t200663 +990367598130206441 RPB036t200667 +990366318290206441 RPB036t201205 +990366177660206441 RPB036t201220 +990367799410206441 RPB036t201343 +990366801660206441 RPB036t201352 +990047812090206441 RPB036t201399 +990368305950206441 RPB036t201619 +990368470540206441 RPB036t201636 +990368497230206441 RPB036t201659 +990368523560206441 RPB036t201661 +990368779720206441 RPB036t210006 +990366168630206441 RPB036t210023 +990368675640206441 RPB036t210176 +990369968280206441 RPB036t210396 +990203405500206441 RPB036t210421 +990367965110206441 RPB036t210555 +990191485620206441 RPB036t210810 +99370714999306441 RPB036t210814 +99370847148606441 RPB036t211254 +99370887053206441 RPB036t211570 +99370903328306441 RPB036t211666 +99370941016506441 RPB036t211703 +99370943607006441 RPB036t211705 +990366842550206441 RPB036t211706 +990139107530206441 RPB036t211890 +990160034420206441 RPB036t212108 +99371153080806441 RPB036t220293 +990139436390206441 RPB036t220559 +99371250303706441 RPB036t220646 +99371261689506441 RPB036t220732 +99371250311406441 RPB036t220750 +99371372929706441 RPB036t221062 +990365656210206441 RPB036t221099 +990048227120206441 RPB036t221245 +990365719240206441 RPB036t221275 +990366423030206441 RPB036t221276 +99371310849906441 RPB036t221285 +99371369913506441 RPB036t221295 +990164099270206441 RPB036t221312 +990204791770206441 RPB036t221370 +990223729920206441 RPB036t221371 +99370847209606441 RPB036t221372 +990365081880206441 RPB036t221406 +99371104438406441 RPB036t221426 +990101939700206441 RPB036t910067 +990049843460206441 RPB036t910632 +990049011790206441 RPB036t910654 +990101964400206441 RPB036t910666 +990101949480206441 RPB036t910729 +990101939360206441 RPB036t910744 +990101952390206441 RPB036t910745 +990101936340206441 RPB036t910747 +990101960120206441 RPB036t910785 +990101967160206441 RPB036t910804 +990048188370206441 RPB036t910808 +990056001030206441 RPB036t910816 +990101939770206441 RPB036t910817 +990101946900206441 RPB036t910870 +990101964260206441 RPB036t910876 +990101961480206441 RPB036t920212 +990049159520206441 RPB036t920218 +990106684550206441 RPB036t920559 +990049752610206441 RPB036t920683 +990133080240206441 RPB036t920695 +990014335580206441 RPB036t920698 +990049157220206441 RPB036t920704 +990056746200206441 RPB036t920761 +990056315420206441 RPB036t920820 +990054429850206441 RPB036t920836 +990141091340206441 RPB036t920840 +990104950300206441 RPB036t920888 +990104950090206441 RPB036t920894 +990104954200206441 RPB036t920895 +990054674220206441 RPB036t920912 +990104955810206441 RPB036t920969 +990056917900206441 RPB036t920972 +990141038900206441 RPB036t920973 +990104946630206441 RPB036t921017 +990101966960206441 RPB036t921018 +990104956410206441 RPB036t921051 +990104946730206441 RPB036t921053 +990056043300206441 RPB036t921054 +990056053550206441 RPB036t921056 +990054323830206441 RPB036t921061 +990056054480206441 RPB036t930029 +990104966880206441 RPB036t930048 +990048808800206441 RPB036t930055 +990027988870206441 RPB036t930056 +990056759600206441 RPB036t930100 +990141031530206441 RPB036t930102 +990141034420206441 RPB036t930109 +990049752610206441 RPB036t930118 +990141104200206441 RPB036t930119 +990101960610206441 RPB036t930139 +990104956140206441 RPB036t930141 +990049426980206441 RPB036t930142 +990104954470206441 RPB036t930171 +990106454850206441 RPB036t930182 +990104955970206441 RPB036t930190 +990056081220206441 RPB036t930233 +990104954120206441 RPB036t930468 +990104954140206441 RPB036t930469 +990101939770206441 RPB036t930481 +990104959280206441 RPB036t930489 +990106470800206441 RPB036t930492 +990104955780206441 RPB036t930499 +990056061670206441 RPB036t930525 +990055740010206441 RPB036t930526 +990049223420206441 RPB036t930545 +990104950100206441 RPB036t930567 +990049825280206441 RPB036t930596 +990104973690206441 RPB036t930605 +990104976000206441 RPB036t930619 +990104980430206441 RPB036t930743 +990145734680206441 RPB036t930857 +990104984930206441 RPB036t930863 +990056930040206441 RPB036t930865 +990104974350206441 RPB036t930905 +990104961810206441 RPB036t930909 +990104946760206441 RPB036t930912 +990104954070206441 RPB036t930914 +990104985730206441 RPB036t931120 +990104956300206441 RPB036t931126 +990055601650206441 RPB036t931130 +990104985710206441 RPB036t940089 +990055779300206441 RPB036t940093 +990049927050206441 RPB036t940142 +990049426980206441 RPB036t940167 +990048322930206441 RPB036t940243 +990049752610206441 RPB036t940388 +990144951520206441 RPB036t940867 +990050388400206441 RPB036t940873 +990049822870206441 RPB036t940983 +990049175550206441 RPB036t941076 +990056973520206441 RPB036t941150 +990056746200206441 RPB036t941324 +990048571360206441 RPB036t941332 +990056980650206441 RPB036t950259 +990049969230206441 RPB036t950422 +990026705900206441 RPB036t950557 +990049228490206441 RPB036t950573 +990052200590206441 RPB036t950692 +990028281530206441 RPB036t950934 +990048796580206441 RPB036t950942 +990049752610206441 RPB036t951020 +990070979310206441 RPB036t951097 +990052462600206441 RPB036t951103 +990145734680206441 RPB036t951107 +990049927050206441 RPB036t951123 +990056746200206441 RPB036t951201 +990056916280206441 RPB036t951311 +990052462600206441 RPB036t960030 +990028281410206441 RPB036t960190 +990050388400206441 RPB036t960506 +990140369770206441 RPB036t960730 +990056746200206441 RPB036t961297 +990174546390206441 RPB036t970577 +990048995630206441 RPB036t970596 +990119967620206441 RPB036t970619 +990056746200206441 RPB036t970869 +990048867600206441 RPB036t971489 +990048867600206441 RPB036t980358 +990056746200206441 RPB036t980433 +990056746200206441 RPB036t980447 +990119967620206441 RPB036t980584 +990052060350206441 RPB036t981124 +990051415130206441 RPB036t981129 +990113673580206441 RPB036t981132 +990056746200206441 RPB036t990527 +990050546860206441 RPB036t990538 +990101603040206441 RPB036t991033 +990052202490206441 RPB107t001231 +990109045910206441 RPB107t001260 +990057327650206441 RPB107t001336 +990189836230206441 RPB107t001522 +990108987560206441 RPB107t001542 +990056444930206441 RPB107t001680 +990108163330206441 RPB107t001683 +990107537270206441 RPB107t001692 +990141107150206441 RPB107t001707 +990109338280206441 RPB107t001745 +990056989010206441 RPB107t001764 +990124866660206441 RPB107t001788 +990108850730206441 RPB107t001902 +990056684500206441 RPB107t001947 +990108382100206441 RPB107t001949 +990104069010206441 RPB107t001960 +990101886850206441 RPB107t002000 +990113187230206441 RPB107t002015 +990141123700206441 RPB107t002099 +990128136660206441 RPB107t002102 +990112651400206441 RPB107t002180 +990141093970206441 RPB107t002216 +990141142790206441 RPB107t002299 +990141141880206441 RPB107t002315 +990166754870206441 RPB107t002331 +990118752820206441 RPB107t002337 +990049930120206441 RPB107t002339 +990056888530206441 RPB107t002398 +990049927050206441 RPB107t002861 +990141146990206441 RPB107t002971 +990050217390206441 RPB107t01000067 +990141069950206441 RPB107t01000131 +990107012220206441 RPB107t01001428 +990048308800206441 RPB107t01003110 +990054979690206441 RPB107t01003175 +990048210800206441 RPB107t01003245 +990047686940206441 RPB107t01003469 +990047777360206441 RPB107t01003595 +990050390850206441 RPB107t01004201 +990048810920206441 RPB107t01004752 +990141143670206441 RPB107t01005272 +990051649290206441 RPB107t01005288 +990050095820206441 RPB107t01005492 +990051075080206441 RPB107t01005503 +990048777140206441 RPB107t01006068 +990171341120206441 RPB107t01006466 +990056442310206441 RPB107t01006467 +990056730880206441 RPB107t01006515 +990047873660206441 RPB107t01006862 +990051402880206441 RPB107t01006940 +990057155410206441 RPB107t01007308 +990141154670206441 RPB107t01007418 +990049119740206441 RPB107t01007680 +990129114070206441 RPB107t01007852 +990190346730206441 RPB107t01008073 +990141184600206441 RPB107t01008380 +990048119850206441 RPB107t01008740 +990103033500206441 RPB107t01008846 +990050060820206441 RPB107t01008847 +990049531350206441 RPB107t01009277 +990049336000206441 RPB107t01009323 +990143709270206441 RPB107t01009471 +990051688860206441 RPB107t01009497 +990047835620206441 RPB107t01009503 +990054401520206441 RPB107t01010072 +990141118250206441 RPB107t01010729 +990047704940206441 RPB107t01010742 +990047953140206441 RPB107t01010878 +990051351100206441 RPB107t01012485 +990051180240206441 RPB107t01012689 +990141026900206441 RPB107t01013167 +990047949230206441 RPB107t01013264 +990048210800206441 RPB107t01013290 +990164768790206441 RPB107t01013949 +990104075960206441 RPB107t01014111 +990048509470206441 RPB107t01014112 +990049751980206441 RPB107t01014114 +990048793110206441 RPB107t01014115 +990141143520206441 RPB107t01014187 +990048711140206441 RPB107t01014217 +990141070260206441 RPB107t01014222 +990054205370206441 RPB107t01014237 +990141065350206441 RPB107t01014251 +990047812840206441 RPB107t01014254 +990141071180206441 RPB107t01014266 +990141092800206441 RPB107t01014267 +990048688510206441 RPB107t01014298 +990141089740206441 RPB107t01014312 +990104080200206441 RPB107t01014321 +990141103840206441 RPB107t01014322 +990056245600206441 RPB107t01014505 +990141107020206441 RPB107t01014513 +990141099700206441 RPB107t01014599 +990102402260206441 RPB107t01014615 +990108881150206441 RPB107t01014618 +990106197070206441 RPB107t01014620 +990108264850206441 RPB107t01014621 +990108201210206441 RPB107t01014622 +990104087180206441 RPB107t01014623 +990144840860206441 RPB107t01014658 +990052535360206441 RPB107t01014675 +990052537760206441 RPB107t01014723 +990052879290206441 RPB107t01014830 +990125396880206441 RPB107t01014969 +990051628290206441 RPB107t01015041 +990051214450206441 RPB107t01015116 +990051518420206441 RPB107t01015119 +990051040440206441 RPB107t01015150 +990054853210206441 RPB107t01015162 +990106223470206441 RPB107t01015184 +990103585250206441 RPB107t01015188 +990053792350206441 RPB107t01015190 +990194510020206441 RPB107t01015192 +990102529780206441 RPB107t01015213 +990102452600206441 RPB107t01015327 +990048017440206441 RPB107t01015328 +990052361600206441 RPB107t01015366 +990047883330206441 RPB107t01015367 +990171913760206441 RPB107t01015414 +990054405490206441 RPB107t01015455 +990102583950206441 RPB107t01015466 +990055318750206441 RPB107t01015688 +990049452820206441 RPB107t01015714 +990054852510206441 RPB107t01015774 +990203485260206441 RPB107t01015839 +990055398270206441 RPB107t01015840 +990104083830206441 RPB107t01015881 +990104473860206441 RPB107t01015890 +990056118190206441 RPB107t01016062 +990054837370206441 RPB107t01016154 +990057000810206441 RPB107t01016324 +990054865050206441 RPB107t01016333 +990057304050206441 RPB107t01016334 +990104084180206441 RPB107t01016393 +990133044040206441 RPB107t01016585 +990105572780206441 RPB107t01016600 +990050174220206441 RPB107t01016642 +990054851210206441 RPB107t01016697 +990141178860206441 RPB107t01016924 +990054803950206441 RPB107t01017000 +990103545960206441 RPB107t01017001 +990050536610206441 RPB107t01017020 +990054835470206441 RPB107t01017053 +990102529360206441 RPB107t01017104 +990104065440206441 RPB107t01017105 +990054803860206441 RPB107t01017157 +990104081010206441 RPB107t01017183 +990055941950206441 RPB107t01017229 +990055627460206441 RPB107t01017236 +990225689640206441 RPB107t01017249 +990114235140206441 RPB107t01017262 +990054849350206441 RPB107t01017264 +990102530220206441 RPB107t01017265 +990107233390206441 RPB107t01017271 +990104488430206441 RPB107t01017320 +990158017770206441 RPB107t01017321 +990052908480206441 RPB107t01017357 +990056353760206441 RPB107t01017397 +990227095460206441 RPB107t01017418 +990116477710206441 RPB107t01017420 +990105195850206441 RPB107t01017537 +990057221740206441 RPB107t01017648 +990056850090206441 RPB107t01017658 +990107334920206441 RPB107t01017694 +990105065000206441 RPB107t01017714 +990056465160206441 RPB107t01017766 +990104082470206441 RPB107t01017786 +990054795330206441 RPB107t01017818 +990049164400206441 RPB107t01017830 +990141106200206441 RPB107t01017902 +990134381810206441 RPB107t01017915 +990107075980206441 RPB107t01018077 +990050341110206441 RPB107t01018095 +990104085400206441 RPB107t01018262 +990055407040206441 RPB107t01018310 +990053320890206441 RPB107t01018314 +990105189680206441 RPB107t01018409 +990054647700206441 RPB107t01018503 +990104085420206441 RPB107t01018504 +990052488430206441 RPB107t01018584 +990133044200206441 RPB107t01018593 +990108383910206441 RPB107t01018648 +990104075260206441 RPB107t01018658 +990113387370206441 RPB107t01018732 +990141119640206441 RPB107t01018741 +990180231550206441 RPB107t01018758 +990116249840206441 RPB107t01018910 +990053972820206441 RPB107t01018931 +990107141840206441 RPB107t01018978 +990104079150206441 RPB107t01019040 +990051304190206441 RPB107t01019437 +990104082310206441 RPB107t01019457 +990141146100206441 RPB107t01019471 +990049384050206441 RPB107t01019482 +990054969510206441 RPB107t01019485 +990144840810206441 RPB107t01019490 +990104078800206441 RPB107t01019573 +990139308740206441 RPB107t01019589 +990108459880206441 RPB107t01019593 +990056681450206441 RPB107t01019624 +990055477220206441 RPB107t01019628 +990105375470206441 RPB107t01019629 +990105414620206441 RPB107t01019636 +990106881730206441 RPB107t01019644 +990104077100206441 RPB107t01019714 +990048594690206441 RPB107t01019861 +990160455480206441 RPB107t01020061 +990203485000206441 RPB107t01020062 +990203294770206441 RPB107t01020063 +990206605240206441 RPB107t01020064 +990202831920206441 RPB107t01020074 +990103845930206441 RPB107t01020089 +990054835470206441 RPB107t01020380 +990209669340206441 RPB107t01020849 +990151138450206441 RPB107t01021143 +990104085270206441 RPB107t01021184 +990047877310206441 RPB107t01021198 +990056645440206441 RPB107t01021621 +990141106350206441 RPB107t01021735 +990104082490206441 RPB107t01021791 +990101828730206441 RPB107t01021838 +990054084280206441 RPB107t01021920 +990136558450206441 RPB107t01021921 +990133044180206441 RPB107t01021922 +990128132020206441 RPB107t01021928 +990055639770206441 RPB107t01021936 +990102258260206441 RPB107t01021939 +990107771920206441 RPB107t01021948 +990105201790206441 RPB107t01021952 +990113621410206441 RPB107t01021990 +990103461940206441 RPB107t01021992 +990055398270206441 RPB107t01022035 +990054482390206441 RPB107t01022047 +990184237960206441 RPB107t01022064 +990048174760206441 RPB107t01022244 +990054101490206441 RPB107t01022387 +990055619610206441 RPB107t01022449 +990052230910206441 RPB107t01022595 +990054834390206441 RPB107t01022599 +990105188660206441 RPB107t01022650 +990101802690206441 RPB107t01022694 +990054830670206441 RPB107t01022717 +990048357300206441 RPB107t01022768 +990054848470206441 RPB107t01022782 +990141195960206441 RPB107t01022787 +990366801840206441 RPB107t01022796 +990107979240206441 RPB107t01022801 +990054818540206441 RPB107t01022829 +990054736800206441 RPB107t01022841 +990104517330206441 RPB107t01022895 +990216036490206441 RPB107t01023088 +990106910320206441 RPB107t01023841 +990054101130206441 RPB107t01023885 +990048361020206441 RPB107t01100618 +990048194150206441 RPB107t01103244 +990141028190206441 RPB107t01105341 +990194022730206441 RPB107t01107171 +990056815230206441 RPB107t01108759 +990050152260206441 RPB107t01111621 +990048295760206441 RPB107t01114910 +990057136420206441 RPB107t01116515 +990141148030206441 RPB107t01117284 +990141174460206441 RPB107t01119668 +990047641340206441 RPB107t01126650 +990049606910206441 RPB107t01126651 +990056745380206441 RPB107t01132142 +990141097440206441 RPB107t01135684 +990124271220206441 RPB107t01136105 +990047801340206441 RPB107t01139533 +990056842960206441 RPB107t01140022 +990141051470206441 RPB107t01141511 +990141114050206441 RPB107t01145381 +990047623320206441 RPB107t01146329 +990153477900206441 RPB107t01149990 +990047795290206441 RPB107t01153140 +990048779720206441 RPB107t01153730 +990048737130206441 RPB107t01153940 +990141097140206441 RPB107t01154279 +990117633480206441 RPB107t01154778 +990125333210206441 RPB107t01156134 +990141034430206441 RPB107t01156488 +990108909950206441 RPB107t01157323 +990048606920206441 RPB107t01158421 +990048748300206441 RPB107t01159591 +990048812420206441 RPB107t01161877 +990141031330206441 RPB107t01162506 +990141033770206441 RPB107t01162604 +990141185220206441 RPB107t01170717 +990141185220206441 RPB107t01170769 +990049209120206441 RPB107t01171282 +990051153980206441 RPB107t01171531 +990141122310206441 RPB107t01172509 +990048088930206441 RPB107t01172603 +990051440380206441 RPB107t01172762 +990141155770206441 RPB107t01172935 +990166519510206441 RPB107t01173748 +990050114620206441 RPB107t01174017 +990051694930206441 RPB107t01174436 +990141056530206441 RPB107t01175625 +990141146380206441 RPB107t01178842 +990051507670206441 RPB107t01187290 +990141091960206441 RPB107t01188595 +990050310790206441 RPB107t01189864 +990049751980206441 RPB107t021415 +990116641380206441 RPB107t021548 +990141105640206441 RPB107t021565 +990050097410206441 RPB107t021566 +990048191230206441 RPB107t021593 +990049846150206441 RPB107t021605 +990141067900206441 RPB107t021630 +990115698790206441 RPB107t021655 +990048045170206441 RPB107t021727 +990114622480206441 RPB107t021807 +990114622490206441 RPB107t021808 +990116290700206441 RPB107t021809 +990116290720206441 RPB107t021810 +990116290660206441 RPB107t021811 +990108562390206441 RPB107t021814 +990108641110206441 RPB107t021816 +990105581960206441 RPB107t021818 +990108099970206441 RPB107t021819 +990108381220206441 RPB107t021849 +990106628460206441 RPB107t021895 +990114687580206441 RPB107t021941 +990141168510206441 RPB107t021993 +990108359230206441 RPB107t021996 +990180483750206441 RPB107t022009 +990050098310206441 RPB107t022063 +990187916070206441 RPB107t022119 +990141168320206441 RPB107t022129 +990138595020206441 RPB107t022139 +990056754590206441 RPB107t022173 +990056720120206441 RPB107t022176 +990117999960206441 RPB107t022182 +990056681450206441 RPB107t022189 +990141092600206441 RPB107t022234 +990141163300206441 RPB107t022237 +990108707070206441 RPB107t022346 +990050197300206441 RPB107t022376 +990113184680206441 RPB107t022404 +990113184050206441 RPB107t022405 +990104078630206441 RPB107t022408 +990106498620206441 RPB107t022410 +990056687510206441 RPB107t022415 +990113619490206441 RPB107t022416 +990107917650206441 RPB107t022422 +990056746470206441 RPB107t022425 +990141169970206441 RPB107t022639 +990141163860206441 RPB107t022795 +990141143950206441 RPB107t022811 +990141169360206441 RPB107t022935 +990141170780206441 RPB107t023058 +990125094580206441 RPB107t023106 +990109338280206441 RPB107t031401 +990141169250206441 RPB107t031430 +990141181210206441 RPB107t031437 +990144520150206441 RPB107t031536 +990178070580206441 RPB107t031554 +990141167390206441 RPB107t031563 +990141170920206441 RPB107t031587 +990048808020206441 RPB107t031600a +990048808020206441 RPB107t031600b +990048808020206441 RPB107t031600c +990115698140206441 RPB107t031601 +990141104900206441 RPB107t031759 +990141183790206441 RPB107t031806 +990141183640206441 RPB107t031808 +990115698790206441 RPB107t031904 +990117733270206441 RPB107t031997 +990141183940206441 RPB107t032052 +990050100070206441 RPB107t032063 +990113759960206441 RPB107t032175 +990121261390206441 RPB107t032176 +990056685070206441 RPB107t032184 +990108184210206441 RPB107t032210 +990107640360206441 RPB107t032215 +990106809120206441 RPB107t032218 +990141164530206441 RPB107t032227 +990107537250206441 RPB107t032243 +990056977840206441 RPB107t032326 +990141187330206441 RPB107t032341 +990052205730206441 RPB107t032363 +990141199680206441 RPB107t032367 +990141142980206441 RPB107t032423 +990141163580206441 RPB107t032440 +990057256850206441 RPB107t032481 +990109447080206441 RPB107t032800 +990141118380206441 RPB107t032842 +990141188680206441 RPB107t033059 +990118536850206441 RPB107t033093 +990141144250206441 RPB107t033108 +990054863210206441 RPB107t033416 +990050337850206441 RPB107t040281 +990141102630206441 RPB107t040366 +990141185890206441 RPB107t040495 +990124474950206441 RPB107t040545 +990175151060206441 RPB107t040680 +990141185250206441 RPB107t040770 +990125041010206441 RPB107t040835 +990124975200206441 RPB107t040967 +990057333640206441 RPB107t040968 +990139763400206441 RPB107t040999 +990141201600206441 RPB107t041342 +990141094340206441 RPB107t041392 +990134713470206441 RPB107t041477 +990125349160206441 RPB107t041805 +990141107990206441 RPB107t041878 +990051076850206441 RPB107t041879 +990141046210206441 RPB107t041914 +990141202290206441 RPB107t042963 +990116238070206441 RPB107t043052 +990056974110206441 RPB107t043137 +990048368640206441 RPB107t043143 +990056922400206441 RPB107t043270 +990141200760206441 RPB107t043332 +990166417950206441 RPB107t043334 +990141199170206441 RPB107t043379 +990141187700206441 RPB107t043575 +990134303560206441 RPB107t050203 +990141212130206441 RPB107t050230 +990141187120206441 RPB107t050315 +990141048110206441 RPB107t050491 +990141048110206441 RPB107t050492 +990141203590206441 RPB107t050514 +990141212710206441 RPB107t050558 +990120324000206441 RPB107t050591 +990141196900206441 RPB107t050765 +990141203540206441 RPB107t050786 +990141122500206441 RPB107t050896 +990133107200206441 RPB107t051014 +990135873410206441 RPB107t051035 +990141204090206441 RPB107t051259 +990117383990206441 RPB107t051366 +990121689210206441 RPB107t051460 +990141107990206441 RPB107t051462 +990118811410206441 RPB107t051556 +990141200130206441 RPB107t051562 +990141185850206441 RPB107t051724 +990141200550206441 RPB107t051728 +990141214390206441 RPB107t051856 +990141212250206441 RPB107t051861 +990173341610206441 RPB107t051862 +990141212910206441 RPB107t051938 +990154049640206441 RPB107t051949 +990141213640206441 RPB107t052924 +990147846890206441 RPB107t052925 +990054642060206441 RPB107t052953 +990114995760206441 RPB107t060232 +990049927050206441 RPB107t060363 +990048163730206441 RPB107t060373 +990141214190206441 RPB107t060420 +990056808590206441 RPB107t060860 +990056750450206441 RPB107t060973 +990144886500206441 RPB107t061066 +990125102320206441 RPB107t061081 +990142983390206441 RPB107t061084 +990144425110206441 RPB107t061186 +990144815850206441 RPB107t061199 +990055974270206441 RPB107t061338 +990141214680206441 RPB107t061504 +990143599720206441 RPB107t061506 +990118817860206441 RPB107t061562 +990118180140206441 RPB107t061578 +990141214640206441 RPB107t062719 +990142917460206441 RPB107t062724 +990124949740206441 RPB107t062823 +990132860600206441 RPB107t062833 +990154018450206441 RPB107t062942 +990154114030206441 RPB107t062957 +990121802790206441 RPB107t063036 +990151146590206441 RPB107t063080 +990147864610206441 RPB107t063164 +990048355670206441 RPB107t063405 +990166995960206441 RPB107t070168 +990174626150206441 RPB107t070821 +990172932900206441 RPB107t070890 +990178991650206441 RPB107t070998 +990164750910206441 RPB107t071016 +990143126700206441 RPB107t071056 +990156188950206441 RPB107t071246 +990155908880206441 RPB107t071422 +990143296100206441 RPB107t071608 +990157039480206441 RPB107t071987 +990154190700206441 RPB107t073656 +990160062810206441 RPB107t073667 +990163914990206441 RPB107t080030 +990160479520206441 RPB107t080127 +990160546390206441 RPB107t080134 +990160590460206441 RPB107t080277 +990155907000206441 RPB107t080322 +990157227070206441 RPB107t080382 +990051231870206441 RPB107t080448 +990164768790206441 RPB107t080677 +990118072690206441 RPB107t081058 +990132234030206441 RPB107t081213 +990141046210206441 RPB107t081435 +990054740970206441 RPB107t081448 +990155073820206441 RPB107t081650 +990166480150206441 RPB107t081888 +990167013610206441 RPB107t081978 +990151136080206441 RPB107t081996 +990119650220206441 RPB107t082762 +990171987800206441 RPB107t082885 +990180648710206441 RPB107t082918 +990164520620206441 RPB107t082934 +990159998000206441 RPB107t083022 +990130717800206441 RPB107t083144 +990171573250206441 RPB107t083196 +990159302980206441 RPB107t083211 +990141186160206441 RPB107t083317 +990172113280206441 RPB107t083587 +990155355690206441 RPB107t083589 +990139342570206441 RPB107t083600 +990180303110206441 RPB107t083601 +990174665880206441 RPB107t090056 +990172911300206441 RPB107t090113 +990119329840206441 RPB107t090119 +990172125680206441 RPB107t090191 diff --git a/conf/hebisMarc2lobid-transformation/maps/classification.tsv b/conf/hebisMarc2lobid-transformation/maps/classification.tsv new file mode 100644 index 0000000..d13f0e4 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/classification.tsv @@ -0,0 +1,21 @@ +udc UDC (Universal Decimal Classification) https://d-nb.info/gnd/4114037-0 +sdnb Sachgruppen der DNB https://bartoc.org/en/node/20049 +bkl BK (Basisklassifikation) http://bartoc.org/en/node/18785 +rvk RVK (Regensburger Verbundklassifikation) https://d-nb.info/gnd/4449787-8 +ghbs Gesamthochschulbibliothekssystematik (GHBS) https://www.ub.uni-siegen.de/ghbs/index.php +njb NDC (Nippon Decimal Classification) http://bartoc.org/en/node/18624 +kktb NDLC (National Diet Library Classification) http://bartoc.org/en/node/876 +rpb RPB (Rheinland-Pfälzische Bibliographie) http://bartoc.org/en/node/1990 +msc MSC (Mathematics Subject Classification) http://bartoc.org/en/node/20396 +asb ASB (Allgemeine Systematik für Bibliotheken) https://asb-kab-online.de/ +ssd SSD (Systematik der Stadtbibliothek Duisburg) http://bartoc.org/en/node/1051 +sfb SfB (Systematik für Bibliotheken) http://bartoc.org/en/node/335 +kab KAB (Klassifikation für Allgemeinbibliotheken) https://d-nb.info/gnd/4164032-9 +stub Systematik der TUB München http://bartoc.org/en/node/495 +dopaed DOPAED der UB Erlangen https://bartoc.org/en/node/1653 +ifzs IFZ-Systematik http://bartoc.org/en/node/1245 +sbb Systematik der Bayerischen Bibliographie http://bartoc.org/en/node/1983 +zdbs DDC-Sachgruppen der ZDB https://zeitschriftendatenbank.de/fileadmin/user_upload/ZDB/pdf/zdbformat/5080.pdf +sswd GND-Systematik http://d-nb.info/standards/vocab/gnd/gnd-sc +fid FID-Klassifikation http://bartoc.org/en/node/18929 +ssgn Sondersammelgebiets-Nummer https://bartoc.org/en/node/18928 diff --git a/conf/hebisMarc2lobid-transformation/maps/collectionLabels.tsv b/conf/hebisMarc2lobid-transformation/maps/collectionLabels.tsv new file mode 100644 index 0000000..2bfd897 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/collectionLabels.tsv @@ -0,0 +1,117 @@ +https://lobid.org/collections#asmi American Society for Microbiology /EBooks +https://lobid.org/collections#budri Budrich academic / Open Access +https://lobid.org/collections#caso California Scholarship Online (University of California Press) +https://lobid.org/collections#chiso Chicago Scholarship Online (University of Chicago Press) +https://lobid.org/collections#Cont Content-Select +https://lobid.org/collections#cuvillier Cuvillier-E-Books +https://lobid.org/collections#dawsonera dawsonera +https://lobid.org/collections#edso Edinburgh University Press/ Edinburgh Scholarship Online +https://lobid.org/collections#editlib EdITLib-E-Books +https://lobid.org/collections#elgar Edward Elgar / Elgar-E-Books +https://lobid.org/collections#lyell The Geological Society / Lyell Collection +https://lobid.org/collections#hade Harri Deutsch +https://lobid.org/collections#hirzel Hirzel eLibrary +https://lobid.org/collections#huguenots Huguenots-E-Books +https://lobid.org/collections#iorm INFORMS +https://lobid.org/collections#kenso Kentucky Scholarship Online (The University Press of Kentucky) +https://lobid.org/collections#learntechlib LearnTechLib E-Books +https://lobid.org/collections#Logos Logos Verlag Berlin e-Book Bibliothek +https://lobid.org/collections#mansi Manchester Studies in Imperialism +https://lobid.org/collections#misso Mississippi Scholarship Online (University Press of Mississippi) +https://lobid.org/collections#MPSO MIT Press Scholarship Online +https://lobid.org/collections#mpig Max-Planck-Institut für Gesellschaftsforschung Open Access +https://lobid.org/collections#NNg Nielsen Norman Group +https://lobid.org/collections#obp OpenBook Publishers-E-Books +https://lobid.org/collections#oso Otto Schmidt online +https://lobid.org/collections#pearson Pearson-E-Books +https://lobid.org/collections#philon Philosophy Online-E-Books +https://lobid.org/collections#luther ProQuest / Luther-E-Books +https://lobid.org/collections#smalib The Smashing Library for Universities and Enterprises +https://lobid.org/collections#minnso University of Minnesota Press / Minnesota Scholarship Online +https://lobid.org/collections#uncso The University of North Carolina Press / North Carolina Scholarship Online +https://lobid.org/collections#vkal Verlag Karl Alber +https://lobid.org/collections#vkv Vittorio Klostermann / Klostermann-E-Books +https://lobid.org/collections#vogel Vogel-E-Books +https://lobid.org/collections#wageningen Wageningen Academic Publishers-E-Books +https://lobid.org/collections#woodhead Woodhead-E-Books +https://lobid.org/collections#wtm WTM-Verlag +https://lobid.org/collections#NLZ Nationallizenzen +https://lobid.org/collections#beofamilien Beck Online / Familienrecht +https://lobid.org/collections#beosteuer Beck Online / Steuerrecht +https://lobid.org/collections#beozivil Beck Online / Zivilrecht +https://lobid.org/collections#BeltzLizenz2012 Beltz Lizenzzugehörigkeit 2012 +https://lobid.org/collections#BeltzLizenz2013 Beltz Lizenzzugehörigkeit 2013 +https://lobid.org/collections#BeltzLizenz2014 Beltz Lizenzzugehörigkeit 2014 +https://lobid.org/collections#BeltzLizenz2015 Beltz Lizenzzugehörigkeit 2015 +https://lobid.org/collections#BeltzLizenz2016 Beltz Lizenzzugehörigkeit 2016 +https://lobid.org/collections#BeltzLizenz2017 Beltz Lizenzzugehörigkeit 2017 +https://lobid.org/collections#BeltzLizenz2018 Beltz Lizenzzugehörigkeit 2018 +https://lobid.org/collections#BeltzLizenz2019 Beltz Lizenzzugehörigkeit 2019 +https://lobid.org/collections#BeltzLizenz2020 Beltz Lizenzzugehörigkeit 2020 +https://lobid.org/collections#BeltzLizenz2021 Beltz Lizenzzugehörigkeit 2021 +https://lobid.org/collections#bloomsbury +https://lobid.org/collections#bloomsbury2013 Bloomsbury-E-Books +https://lobid.org/collections#bloomsbury2014 Bloomsbury Lizenzzugehörigkeit 2014 +https://lobid.org/collections#bloomsbury2015 Bloomsbury Lizenzzugehörigkeit 2015 +https://lobid.org/collections#bloomsbury2016 Bloomsbury Lizenzzugehörigkeit 2016 +https://lobid.org/collections#bloomsbury2017 Bloomsbury Lizenzzugehörigkeit 2017 +https://lobid.org/collections#melanchthon Brill Academic / Melanchthon-E-Books +https://lobid.org/collections#Lizenz2001 de Gruyter-E-Books Lizenzzugehörigkeit 2001 +https://lobid.org/collections#Lizenz2002 de Gruyter-E-Books Lizenzzugehörigkeit 2002 +https://lobid.org/collections#Lizenz2003 de Gruyter-E-Books Lizenzzugehörigkeit 2003 +https://lobid.org/collections#Lizenz2004 de Gruyter-E-Books Lizenzzugehörigkeit 2004 +https://lobid.org/collections#Lizenz2005 de Gruyter-E-Books Lizenzzugehörigkeit 2005 +https://lobid.org/collections#Lizenz2006 de Gruyter-E-Books Lizenzzugehörigkeit 2006 +https://lobid.org/collections#Lizenz2007 de Gruyter-E-Books Lizenzzugehörigkeit 2007 +https://lobid.org/collections#Lizenz2008 de Gruyter-E-Books Lizenzzugehörigkeit 2008 +https://lobid.org/collections#Lizenz2009 de Gruyter-E-Books Lizenzzugehörigkeit 2009 +https://lobid.org/collections#Lizenz2010 de Gruyter-E-Books Lizenzzugehörigkeit 2010 +https://lobid.org/collections#Lizenz2011 de Gruyter-E-Books Lizenzzugehörigkeit 2011 +https://lobid.org/collections#Lizenz2012 de Gruyter-E-Books Lizenzzugehörigkeit 2012 +https://lobid.org/collections#Lizenz2013 de Gruyter-E-Books Lizenzzugehörigkeit 2013 +https://lobid.org/collections#Lizenz2014 de Gruyter-E-Books Lizenzzugehörigkeit 2014 +https://lobid.org/collections#Lizenz2015 de Gruyter-E-Books Lizenzzugehörigkeit 2015 +https://lobid.org/collections#Lizenz2016 de Gruyter-E-Books Lizenzzugehörigkeit 2016 +https://lobid.org/collections#Lizenz2017 de Gruyter-E-Books Lizenzzugehörigkeit 2017 +https://lobid.org/collections#Lizenz2018 de Gruyter-E-Books Lizenzzugehörigkeit 2018 +https://lobid.org/collections#Lizenz2019 de Gruyter-E-Books Lizenzzugehörigkeit 2019 +https://lobid.org/collections#Lizenz2020 de Gruyter-E-Books Lizenzzugehörigkeit 2020 +https://lobid.org/collections#herder Herder-E-Books +https://lobid.org/collections#juris Juris-E-Books +https://lobid.org/collections#KohlhammerLizenz2012 Kohlhammer Lizenzzugehörigkeit 2012 +https://lobid.org/collections#KohlhammerLizenz2013 Kohlhammer Lizenzzugehörigkeit 2013 +https://lobid.org/collections#KohlhammerLizenz2014 Kohlhammer Lizenzzugehörigkeit 2014 +https://lobid.org/collections#KohlhammerLizenz2015 Kohlhammer Lizenzzugehörigkeit 2015 +https://lobid.org/collections#KohlhammerLizenz2016 Kohlhammer Lizenzzugehörigkeit 2016 +https://lobid.org/collections#KohlhammerLizenz2017 Kohlhammer Lizenzzugehörigkeit 2017 +https://lobid.org/collections#KohlhammerLizenz2018 Kohlhammer Lizenzzugehörigkeit 2018 +https://lobid.org/collections#KohlhammerLizenz2019 Kohlhammer Lizenzzugehörigkeit 2019 +https://lobid.org/collections#KohlhammerLizenz2020 Kohlhammer Lizenzzugehörigkeit 2020 +https://lobid.org/collections#logos Logos Verlag Berlin +https://lobid.org/collections#MohrSiebeckLizenz2013-2015 MohrSiebeck Lizenzzugehörigkeit 2013-2015 +https://lobid.org/collections#MohrSiebeckLizenz2013 MohrSiebeck Lizenzzugehörigkeit 2013 +https://lobid.org/collections#MohrSiebeckLizenz2014 MohrSiebeck Lizenzzugehörigkeit 2014 +https://lobid.org/collections#MohrSiebeckLizenz2015 MohrSiebeck Lizenzzugehörigkeit 2015 +https://lobid.org/collections#MohrSiebeckLizenz2016 MohrSiebeck Lizenzzugehörigkeit 2016 +https://lobid.org/collections#MohrSiebeckLizenz2017 MohrSiebeck Lizenzzugehörigkeit 2017 +https://lobid.org/collections#MohrSiebeckLizenz2018 MohrSiebeck Lizenzzugehörigkeit 2018 +https://lobid.org/collections#MohrSiebeckLizenz2019 MohrSiebeck Lizenzzugehörigkeit 2019 +https://lobid.org/collections#synthesis lectures Morgan & Claypool / Synthesis Lectures-Reihen +https://lobid.org/collections#thieref Thieme eRef +https://lobid.org/collections#taylor francis Taylor & Francis E-Books +https://lobid.org/collections#V&RELibraryLizenz2014 V&R eLibrary Lizenzzugehörigkeit 2014 +https://lobid.org/collections#V&RELibraryLizenz2015 V&R eLibrary Lizenzzugehörigkeit 2015 +https://lobid.org/collections#V&RELibraryLizenz2016 V&R eLibrary Lizenzzugehörigkeit 2016 +https://lobid.org/collections#V&RELibraryLizenz2017 V&R eLibrary Lizenzzugehörigkeit 2017 +https://lobid.org/collections#V&RELibraryLizenz2018 V&R eLibrary Lizenzzugehörigkeit 2018 +https://lobid.org/collections#V&RELibraryLizenz2019 V&R eLibrary Lizenzzugehörigkeit 2019 +https://lobid.org/collections#wbv W. Bertelsmann Verlag E-Books +https://lobid.org/collections#WallsteinLizenz2018 Wallstein Lizenzzugehörigkeit 2018 +https://lobid.org/collections#WallsteinLizenz2019 Wallstein Lizenzzugehörigkeit 2019 +https://lobid.org/collections#WBGLizenz2016 WBG Lizenzzugehörigkeit 2016 +https://lobid.org/collections#WBGLizenz2017 WBG Lizenzzugehörigkeit 2017 +https://lobid.org/collections#WBGLizenz2018 WBG Lizenzzugehörigkeit 2018 +https://lobid.org/collections#WBGLizenz2019 WBG Lizenzzugehörigkeit 2019 +https://lobid.org/collections#WBGLizenz2020 WBG Lizenzzugehörigkeit 2020 +https://lobid.org/collections#TTP-MCE Trans Tech Publikations: Materials Science and Engineering +https://lobid.org/collections#palgraveoa Palgrave Open Access E-Books diff --git a/conf/hebisMarc2lobid-transformation/maps/deweyLabels.tsv b/conf/hebisMarc2lobid-transformation/maps/deweyLabels.tsv new file mode 100644 index 0000000..63dd036 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/deweyLabels.tsv @@ -0,0 +1,45 @@ +004.62 Kopplungs- und Kommunikationsprotokolle +005.43 Systemprogramme +020 Bibliotheks- und Informationswissenschaften +025.3 Bibliografische Analyse und Kontrolle +050 Allgemeine fortlaufende Sammelwerke +070 Dokumentarische Medien, publizistische Medien, Unterrichtsmedien; Journalismus; Verlagswesen +230 Christentum +310 Sammlungen allgemeiner Statistiken +320 Politikwissenschaft (Politik und Regierung) +330 Wirtschaft +333.7 Landflächen, Naturräume für Freizeit und Erholung, Naturreservate, Energie +338 Produktion +338.76 Unternehmen nach Industrie +340 Recht +350 Öffentliche Verwaltung und Militärwissenschaft +360 Soziale Probleme und Sozialdienste; Verbände +370 Bildung und Erziehung +380 Handel, Kommunikation, Verkehr +400 Sprache +440 Französisch und verwandte romanische Sprachen +530 Physik +610 Medizin und Gesundheit +620 Ingenieurwissenschaften und zugeordnete Tätigkeiten +629 Andere Fachrichtungen der Ingenieurwissenschaften +629.22 Fahrzeugarten +650 Management und unterstützende Tätigkeiten +660 Chemische Verfahrenstechnik und verwandte Technologien +670 Industrielle Fertigung +700 Künste +780 Musik +785.13 Trios +790 Freizeitgestaltung, darstellende Künste, Sport +791 Öffentliche Darbietungen +793 Spiele und Freizeitaktivitäten für drinnen +796 Sportarten und Sportspiele +840 Französische Literatur und Literaturen verwandter romanischer Sprachen +850 Literaturen in italienischer, dalmatischer, rumänischer, rätoromanischer, sardischer, korsischer Sprache +860 Literaturen in spanischer, portugiesischer, galicischer Sprache +900 Geschichte, Geografie und Hilfswissenschaften +910 Geografie & Reisen +914 Geografie Europas und Reisen in Europa +914.3 Geografie Mitteleuropas und Reisen in Mitteleuropa +930 Geschichte des Altertums bis ca. 499 +940 Geschichte Europas +943 Deutschland und benachbarte mitteleuropäische Länder diff --git a/conf/hebisMarc2lobid-transformation/maps/dnbSachgruppen.tsv b/conf/hebisMarc2lobid-transformation/maps/dnbSachgruppen.tsv new file mode 100644 index 0000000..4753293 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/dnbSachgruppen.tsv @@ -0,0 +1,177 @@ +000 Allgemeines, Wissenschaft +004 Informatik +010 Bibliografien +020 Bibliotheks- und Informationswissenschaft +030 Enzyklopädien +050 Zeitschriften, fortlaufende Sammelwerke +060 Organisationen, Museumswissenschaft +070 Nachrichtenmedien, Journalismus, Verlagswesen +080 Allgemeine Sammelwerke +090 Handschriften, seltene Bücher +100 Philosophie +130 Parapsychologie, Okkultismus +150 Psychologie +200 Religion, Religionsphilosophie +220 Bibel +230 Theologie, Christentum +290 Andere Religionen +300 Sozialwissenschaften, Soziologie, Anthropologie +310 Allgemeine Statistiken +320 Politik +330 Wirtschaft +333.7 Natürliche Ressourcen, Energie und Umwelt +340 Recht +350 Öffentliche Verwaltung +355 Militär +360 Soziale Probleme, Sozialdienste, Versicherungen +370 Erziehung, Schul- und Bildungswesen +380 Handel, Kommunikation, Verkehr +390 Bräuche, Etikette, Folklore +400 Sprache, Linguistik +420 Englisch +430 Deutsch +439 Andere germanische Sprachen +440 Französisch, romanische Sprachen allgemein +450 Italienisch, Rumänisch, Rätoromanisch +460 Spanisch, Portugiesisch +470 Latein +480 Griechisch +490 Andere Sprachen +491.8 Slawische Sprachen +500 Naturwissenschaften +510 Mathematik +520 Astronomie, Kartografie +530 Physik +540 Chemie +550 Geowissenschaften +560 Paläontologie +570 Biowissenschaften, Biologie +580 Pflanzen (Botanik) +590 Tiere (Zoologie) +600 Technik +610 Medizin, Gesundheit +620 Ingenieurwissenschaften und Maschinenbau +621.3 Elektrotechnik, Elektronik +624 Ingenieurbau und Umwelttechnik +630 Landwirtschaft, Veterinärmedizin +640 Hauswirtschaft und Familienleben +650 Management +660 Technische Chemie +670 Industrielle und handwerkliche Fertigung +690 Hausbau, Bauhandwerk +700 Künste, Bildende Kunst allgemein +710 Landschaftsgestaltung, Raumplanung +720 Architektur +730 Plastik, Numismatik, Keramik, Metallkunst +740 Grafik, angewandte Kunst +741.5 Comics, Cartoons, Karikaturen +750 Malerei +760 Druckgrafik, Drucke +770 Fotografie, Video, Computerkunst +780 Musik +790 Freizeitgestaltung, Darstellende Kunst +791 Öffentliche Darbietungen, Film, Rundfunk +792 Theater, Tanz +793 Spiel +796 Sport +800 Literatur, Rhetorik, Literaturwissenschaft +810 Englische Literatur Amerikas +820 Englische Literatur +830 Deutsche Literatur +839 Literatur in anderen germanischen Sprachen +840 Französische Literatur +850 Italienische, rumänische, rätoromanische Literatur +860 Spanische und portugiesische Literatur +870 Lateinische Literatur +880 Griechische Literatur +890 Literatur in anderen Sprachen +891.8 Slawische Literatur +900 Geschichte +910 Geografie, Reisen +914.3 Geografie, Reisen (Deutschland) +914.94 Geografie, Reisen (Schweiz) +914.36 Geografie, Reisen (Österreich +920 Biografie, Genealogie, Heraldik +930 Alte Geschichte, Archäologie +940 Geschichte Europas +943 Geschichte Deutschlands +949.4 Geschichte der Schweiz +943.6 Geschichte Österreichs +950 Geschichte Asiens +960 Geschichte Afrikas +970 Geschichte Nordamerikas +980 Geschichte Südamerikas +990 Geschichte der übrigen Welt +B Belletristik +K Kinder- und Jugendliteratur +S Schulbücher +780 Musik allgemein +780.7 Unterrichtswerke +780.9 Musik allgemein mit zeitlichem, regionalem oder biografischem Bezug +781 Musik nach Gattungen +781.54 Hintergrund- und Stimmungsmusik +781.542 Filmmusik +781.556 Ballettmusik +781.62 Volksmusik +781.64 Unterhaltungsmusik +781.642 Countrymusik +781.643 Blues und Soul +781.646 Reggae +781.648 Electronica +781.649 Rap +781.65 Jazz +781.666 Rockmusik +781.687 Klassische Musik +782 Vokalmusik +782.1 Musikalische Bühnenwerke +782.22 Geistliche Vokalmusik +782.25 Geistliche Lieder +782.4 Weltliche Vokalmusik +782.5 Chormusik für gemischte Stimmen +782.6 Chormusik für Frauenstimmen +782.7 Chormusik für Kinder- und Jugendstimmen +782.8 Chormusik für Männerstimmen +783 Vokalmusik für Einzelstimmen +784 Orchestermusik +784.23 Orchester mit Soloinstrument(en) +784.8 Blasorchester +785 Kammermusik +785.12 Duos +785.13 Trios +785.14 Quartette +785.15 Quintette und mehr +786 Tasten- und Schlaginstrumente, mechanische und elektronische Instrumente +786.2 Klavier +786.4 Cembalo +786.5 Orgel +786.6 mechanische Instrumente +786.7 elektronische Instrumente +786.8 Schlaginstrumente +787 Saiteninstrumente +787.2 Violine +787.3 Viola +787.4 Violoncello +787.5 Kontrabass +787.6 andere Streichinstrumente +787.8 Zupfinstrumente +787.838 Laute +787.849 Mandoline +787.871 Gitarre +787.9 Harfe +788 Blasinstrumente +788.3 Flöten +788.321 Querflöte +788.361 Blockflöte +788.4 Rohrblattinstrumente +788.521 Oboe +788.581 Fagott +788.621 Klarinette +788.716 Saxophon +788.8 Akkordeon, Mundharmonika +788.92 Trompete +788.93 Posaune +788.94 Horn +788.96 Kornett +788.97 Flügelhorn +788.98 Tuba +788.99 andere Blechblasinstrumente diff --git a/conf/hebisMarc2lobid-transformation/maps/formangabe.tsv b/conf/hebisMarc2lobid-transformation/maps/formangabe.tsv new file mode 100644 index 0000000..5f82c5c --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/formangabe.tsv @@ -0,0 +1,165 @@ +Formschlagwort GND-IDN GND-NID +Adressbuch 041414519 4141451-2 +Altkarte 960106200 4611904-8 +Amtliche Publikation 041423003 4142300-8 +Anleitung 041425278 4142527-3 +Anthologie 040022145 4002214-6 +Antiquariatskatalog 041427386 4142738-5 +Anzeigenblatt 041427610 4142761-0 +Atlas 041433033 4143303-8 +Aufgabensammlung 041433890 4143389-0 +Aufsatzsammlung 041434137 4143413-4 +Auktionskatalog 04143482X 4143482-1 +Ausstellungskatalog 041354672 4135467-9 +Autobiografie 040039390 4003939-0 +Autograf 040039420 4003942-0 +Backbuch 1071926306 1071926306 +Beispielsammlung 041443845 4144384-6 +Bericht 041280229 4128022-2 +Bestimmungsbuch 041449509 4144950-2 +Bibliografie 040064328 4006432-3 +Bild 040065685 4006568-6 +Bildband 041453956 4145395-5 +Bilderbogen 041454022 4145402-9 +Bilderbuch 040066045 4006604-6 +Bildnis 040066274 4006627-7 +Bildwörterbuch 041455053 4145505-8 +Biografie 040068048 4006804-3 +Blindendruck 042825040 4282504-0 +Briefsammlung 041466098 4146609-3 +Checkliste 94656860X 4398750-3 +Comic 040104273 4010427-8 +Datenbank 040111199 4011119-2 +Datensammlung 04148875X 4148875-1 +Diagramm 040120449 4012044-2 +Diskografie 1071864416 1071864416 +Drehbuch 04127976X 4127976-1 +Einblattdruck 041512367 4151236-4 +Einführung 041512782 4151278-9 +Entscheidungssammlung 04152408X 4152408-1 +Enzyklopädie 040149862 4014986-9 +Erlebnisbericht 041332547 4133254-4 +Fachkunde 041534883 4153488-8 +Fahrplan 041535634 4153563-7 +Faksimile 04153591X 4153591-1 +Fallsammlung 041536169 4153616-2 +Fallstudiensammlung 955154278 4522595-3 +Festschrift 040169286 4016928-5 +Fiktionale Darstellung 1071854844 1071854844 +Film 040171027 4017102-4 +Filmografie 1071861980 1071861980 +Flugblatt 04071280X 4071280-1 +Flugschrift 041547705 4154770-6 +Formelsammlung 041550080 4155008-0 +Formularsammlung 04155034X 4155034-1 +Forschungsbericht 041550439 4155043-2 +Forschungsdaten 1098579690 1098579690 +Fotografie 040458954 4045895-7 +Führer 041555694 4155569-7 +Fundstellenverzeichnis 041556429 4155642-2 +Genealogische Tafel 041565827 4156582-4 +Gespräch 040207137 4020713-4 +Globus 041576330 4157633-0 +Grafik 040218457 4021845-4 +Graphzine 1032889837 1032889837 +Handschrift 040232875 4023287-6 +Haushaltsplan 040723496 4072349-5 +Hochschulschrift 041139372 4113937-9 +Hörbuch 940089343 4329497-2 +Hörspiel 040254356 4025435-5 +Humoristische Darstellung 041607996 4160799-5 +Inkunabel 040270416 4027041-5 +Interview 040275035 4027503-6 +Inventar 04027540X 4027540-1 +Jugendbuch 043062520 4306252-0 +Jugendsachbuch 040289338 4028933-3 +Kalender 040292908 4029290-3 +Karikatur 040296709 4029670-2 +Karte 040297837 4029783-4 +Katalog 041634179 4163417-2 +Kinderbuch 043032516 4303251-5 +Kindersachbuch 041638549 4163854-2 +Kochbuch 041142403 4114240-8 +Kolumnensammlung 1071862448 1071862448 +Kommentar 041367103 4136710-8 +Konferenzschrift 1071861417 1071861417 +Konkordanz 041650018 4165001-3 +Kunstführer 041660293 4166029-8 +Künstlerbuch 042290538 4229053-3 +Laudatio 941101215 4339326-3 +Lehrbuch 041236238 4123623-3 +Lehrerhandbuch 041671686 4167168-5 +Lehrmittel 040741117 4074111-4 +Lehrplan 040351173 4035117-8 +Lernsoftware 041264649 4126464-2 +Lesebuch 040354350 4035435-0 +Liederbuch 041676343 4167634-8 +Literaturbericht 041678702 4167870-9 +Loseblattsammlung 941475360 4343271-2 +Mehrsprachiges Wörterbuch 953075109 4491366-7 +Mitgliederverzeichnis 041701739 4170173-2 +Modell 04039798X 4039798-1 +Monografische Reihe 041799984 4179998-7 +Musikhandschrift 040408477 4040847-4 +Nachruf 041285409 4128540-2 +Norm 94827171X 4419668-4 +Ortsverzeichnis 040678709 4067870-2 +Papyrus 040445712 4044571-9 +Patentschrift 041735366 4173536-5 +Plakat 04046198X 4046198-1 +Plan 041885554 4188555-7 +Postkarte 040469026 4046902-5 +Praktikum 04127380X 4127380-1 +Predigthilfe 041756010 4175601-0 +Pressendruck 041590430 4159043-0 +Pressestimme 041756622 4175662-9 +Programmheft 944257690 4373950-7 +Puzzle 041240057 4124005-4 +Quelle 041359526 4135952-5 +Ratgeber 040484769 4048476-2 +Rede 040488829 4048882-2 +Referateorgan 041773225 4177322-6 +Regest 040490076 4049007-5 +Reisebericht 040766454 4076645-7 +Reportagensammlung 107186257X 107186257X +Rezension 040497127 4049712-4 +Richtlinie 041378148 4137814-3 +Röntgenbild 042275903 4227590-8 +Rückläufiges Wörterbuch 041786459 4178645-2 +Sachbilderbuch 042218608 4221860-3 +Satzung 040517780 4051778-0 +Schematismus 041794842 4179484-9 +Schulbuch 040534588 4053458-3 +Schulprogramm 04077211X 4077211-1 +Software 040553825 4055382-6 +Spiel 040562182 4056218-9 +Sprachatlas 040564460 4056446-0 +Sprachführer 041300106 4130010-5 +Stadtplan 041298454 4129845-7 +Statistik 040569950 4056995-0 +Tabelle 041843037 4184303-4 +Tafel 041843355 4184335-6 +Tagebuch 040589005 4058900-6 +Technische Zeichnung 041339142 4133914-9 +Telefonbuch 041846435 4184643-6 +Testmaterial 041848349 4184834-2 +Theaterstück 043040802 4304080-9 +Thesaurus 041851722 4185172-9 +Übungssammlung 042222087 4222208-4 +Umfrage 040052273 4005227-8 +Unterrichtseinheit 041870743 4187074-8 +Urkunde 040621324 4062132-7 +Verkaufskatalog 041877888 4187788-3 +Verzeichnis 041881710 4188171-0 +Vorlesungsverzeichnis 041886844 4188684-7 +Weblog 964066505 4678688-0 +Website 959344357 4596172-4 +Weltkarte 040653684 4065368-7 +Werkverzeichnis 041896807 4189680-4 +Werkzeitschrift 041896823 4189682-8 +Wörterbuch 040667243 4066724-8 +Zeichnung 04127900X 4127900-1 +Zeitschrift 040674886 4067488-5 +Zeittafel 041906314 4190631-7 +Zeitung 040675106 4067510-5 +Zitatensammlung 04117724X 4117724-1 diff --git a/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSublibraryCode2Isil.tsv b/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSublibraryCode2Isil.tsv new file mode 100644 index 0000000..35099ca --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSublibraryCode2Isil.tsv @@ -0,0 +1,740 @@ +MainLibraryCode+SublibraryCode ISIL +49HBZ_BRIDGE_FIZ+K1040 DE-587 +49HBZ_BRIDGE_FIZ+K1176 DE-Kn184 +49HBZ_BRIDGE_FIZ+K7001 DE-380 +49HBZ_BRIDGE_FIZ+O9002 DE-Bet1 +49HBZ_BRIDGE_FIZ+O9003 DE-Bi5 +49HBZ_BRIDGE_FIZ+O9004 DE-Bm53 +49HBZ_BRIDGE_FIZ+O9005 DE-Bo131 +49HBZ_BRIDGE_FIZ+O9006 DE-Bo133 +49HBZ_BRIDGE_FIZ+O9008 DE-Bo405 +49HBZ_BRIDGE_FIZ+O9009 DE-Det2 +49HBZ_BRIDGE_FIZ+O9010 DE-Due48 +49HBZ_BRIDGE_FIZ+O9012 DE-Due59 +49HBZ_BRIDGE_FIZ+O9014 DE-221 +49HBZ_BRIDGE_FIZ+O9016 DE-Juel1 +49HBZ_BRIDGE_FIZ+O9017 DE-Kn125 +49HBZ_BRIDGE_FIZ+O9021 DE-Rem4 +49HBZ_BRIDGE_FIZ+O9023 DE-211 +49HBZ_BRIDGE_FIZ+O9024 DE-Bo56 +49HBZ_BRIDGE_FIZ+O9025 DE-Bo59 +49HBZ_BRIDGE_FIZ+O9026 DE-Bo102 +49HBZ_BRIDGE_FIZ+O9027 DE-Bo127 +49HBZ_BRIDGE_FIZ+O9028 DE-Bo146 +49HBZ_BRIDGE_FIZ+O9029 DE-Bo170 +49HBZ_BRIDGE_FIZ+O9030 DE-Bo171 +49HBZ_BRIDGE_FIZ+O9033 DE-Bo206 +49HBZ_BRIDGE_FIZ+O9034 DE-Grv1 +49HBZ_BRIDGE_FIZ+O9035 DE-Brl1 +49HBZ_BRIDGE_FIZ+O9036 DE-Hen2 +49HBZ_BRIDGE_FIZ+O9037 DE-Zlp1 +49HBZ_BRIDGE_FIZ+O9038 DE-Hzr1 +49HBZ_BRIDGE_FIZ+O9039 DE-Kn195 +49HBZ_BRIDGE_FIZ+O9040 DE-Jhn1 +49HBZ_BRIDGE_FIZ+P0002 DE-110 +49HBZ_BRIDGE_FIZ+R1001 DE-Kob1 +49HBZ_BRIDGE_FIZ+R1002 DE-Kob2 +49HBZ_BRIDGE_FIZ+R1003 DE-Kob3 +49HBZ_BRIDGE_FIZ+R1004 DE-Mch1 +49HBZ_BRIDGE_FIZ+R1005 DE-69 +49HBZ_BRIDGE_FIZ+R1006 DE-977 +49HBZ_BRIDGE_FIZ+R1008 DE-992 +49HBZ_BRIDGE_FIZ+R1009 DE-Kob9 +49HBZ_BRIDGE_FIZ+SD001 DE-Bo410 +49HBZ_BRIDGE_FIZ+T0001 DE-Tr1 +49HBZ_BRIDGE_FIZ+T0002 DE-Tr16 +49HBZ_BRIDGE_FIZ+T0004 DE-Tr18 +49HBZ_BRIDGE_FIZ+T0005 DE-Tr19 +49HBZ_BRIDGE_FIZ+T0007 DE-Tr20 +49HBZ_BRIDGE_FIZ+X7001 DE-362 +49HBZ_BRIDGE_FIZ+Y9001 DE-133 +49HBZ_BRIDGE_FIZ+Y9003 DE-227 +49HBZ_BRIDGE_FIZ+Y9004 DE-230 +49HBZ_BRIDGE_FIZ+Y9005 DE-236 +49HBZ_BRIDGE_FIZ+Y9006 DE-247 +49HBZ_BRIDGE_FIZ+Y9009 DE-268 +49HBZ_BRIDGE_FIZ+Y9012 DE-273 +49HBZ_BRIDGE_FIZ+Y9014 DE-278 +49HBZ_BRIDGE_FIZ+Y9015 DE-287 +49HBZ_BRIDGE_FIZ+Y9020 DE-373 +49HBZ_BRIDGE_FIZ+Y9021 DE-374 +49HBZ_BRIDGE_FIZ+Y9023 DE-379 +49HBZ_BRIDGE_FIZ+Y9026 DE-393 +49HBZ_BRIDGE_FIZ+Y9028 DE-399 +49HBZ_BRIDGE_FIZ+Y9031 DE-415 +49HBZ_BRIDGE_FIZ+Y9033 DE-431 +49HBZ_BRIDGE_FIZ+Y9034 DE-436 +49HBZ_BRIDGE_FIZ+Y9035 DE-444 +49HBZ_BRIDGE_FIZ+Y9037 DE-446 +49HBZ_BRIDGE_FIZ+Y9040 DE-454 +49HBZ_BRIDGE_FIZ+Y9042 DE-710 +49HBZ_BRIDGE_FIZ+Y9043 DE-713 +49HBZ_BRIDGE_FIZ+Y9044 DE-714 +49HBZ_BRIDGE_FIZ+Y9045 DE-733 +49HBZ_BRIDGE_FIZ+Y9046 DE-734 +49HBZ_BRIDGE_FIZ+Y9047 DE-738 +49HBZ_BRIDGE_FIZ+Y9052 DE-831 +49HBZ_BRIDGE_FIZ+Y9053 DE-A2 +49HBZ_BRIDGE_FIZ+Y9054 DE-Bg1 +49HBZ_BRIDGE_FIZ+Y9055 DE-Bg2 +49HBZ_BRIDGE_FIZ+Y9056 DE-Bi15 +49HBZ_BRIDGE_FIZ+Y9057 DE-Bi7 +49HBZ_BRIDGE_FIZ+Y9058 DE-Bi8 +49HBZ_BRIDGE_FIZ+Y9061 DE-Bm2 +49HBZ_BRIDGE_FIZ+Y9063 DE-Bo400 +49HBZ_BRIDGE_FIZ+Y9064 DE-Cla1 +49HBZ_BRIDGE_FIZ+Y9065 DE-Due20 +49HBZ_BRIDGE_FIZ+Y9067 DE-Due51 +49HBZ_BRIDGE_FIZ+Y9068 DE-Due58 +49HBZ_BRIDGE_FIZ+Y9069 DE-Due63 +49HBZ_BRIDGE_FIZ+Y9070 DE-Due65 +49HBZ_BRIDGE_FIZ+Y9071 DE-Eus2 +49HBZ_BRIDGE_FIZ+Y9072 DE-Gk1 +49HBZ_BRIDGE_FIZ+Y9075 DE-Hef1 +49HBZ_BRIDGE_FIZ+Y9076 DE-Hoer1 +49HBZ_BRIDGE_FIZ+Y9077 DE-Huer1 +49HBZ_BRIDGE_FIZ+Y9079 DE-Kn126 +49HBZ_BRIDGE_FIZ+Y9080 DE-Kn166 +49HBZ_BRIDGE_FIZ+Y9082 DE-Kn55 +49HBZ_BRIDGE_FIZ+Y9083 DE-Kv1 +49HBZ_BRIDGE_FIZ+Y9085 DE-Ml1 +49HBZ_BRIDGE_FIZ+Y9086 DE-Mtl1 +49HBZ_BRIDGE_FIZ+Y9087 DE-Mue27 +49HBZ_BRIDGE_FIZ+Y9088 DE-Mue73 +49HBZ_BRIDGE_FIZ+Y9089 DE-Net1 +49HBZ_BRIDGE_FIZ+Y9090 DE-Ob1 +49HBZ_BRIDGE_FIZ+Y9091 DE-Rn1 +49HBZ_BRIDGE_FIZ+Y9092 DE-Se1 +49HBZ_BRIDGE_FIZ+Y9093 DE-Vln1 +49HBZ_BRIDGE_FIZ+Y9095 DE-Wit1 +49HBZ_BRIDGE_FIZ+Y9096 DE-Wrf1 +49HBZ_BRIDGE_FIZ+Y9097 DE-Wrl1 +49HBZ_BRIDGE_FIZ+Y9098 DE-X1 +49HBZ_BRIDGE_FIZ+Y9101 DE-290E +49HBZ_BRIDGE_FIZ+Y9102 DE-Mue78 +49HBZ_BRIDGE_FIZ+Y9104 DE-00 +49HBZ_BRIDGE_FIZ+Y9105 DE-Kow1 +49HBZ_BRIDGE_FIZ+Y9106 DE-Bri2 +49HBZ_BRIDGE_FIZ+Z9003 DE-Dm11 +49HBZ_BRIDGE_FIZ+Z9005 DE-Kn133 +49HBZ_BRIDGE_FIZ+Z9006 DE-72 +49HBZ_BRIDGE_FIZ+Z9007 DE-131 +49HBZ_BRIDGE_FIZ+Z9009 DE-136 +49HBZ_BRIDGE_FIZ+Z9010 DE-142 +49HBZ_BRIDGE_FIZ+Z9011 DE-157 +49HBZ_BRIDGE_FIZ+Z9013 DE-174 +49HBZ_BRIDGE_FIZ+Z9014 DE-217 +49HBZ_BRIDGE_FIZ+Z9017 DE-231 +49HBZ_BRIDGE_FIZ+Z9020 DE-242 +49HBZ_BRIDGE_FIZ+Z9021 DE-243 +49HBZ_BRIDGE_FIZ+Z9022 DE-260 +49HBZ_BRIDGE_FIZ+Z9024 DE-364 +49HBZ_BRIDGE_FIZ+Z9026 DE-369 +49HBZ_BRIDGE_FIZ+Z9027 DE-405 +49HBZ_BRIDGE_FIZ+Z9028 DE-447 +49HBZ_BRIDGE_FIZ+Z9029 DE-52 +49HBZ_BRIDGE_FIZ+Z9030 DE-60 +49HBZ_BRIDGE_FIZ+Z9031 DE-62 +49HBZ_BRIDGE_FIZ+Z9032 DE-64 +49HBZ_BRIDGE_FIZ+Z9034 DE-Kow2 +49HBZ_BRIDGE_FIZ+Z9047 DE-Rag1 +49HBZ_BRIDGE_FIZ+Z9050 DE-927 +49HBZ_BRIDGE_FIZ+Z9051 DE-Kn192 +49HBZ_BRIDGE_FIZ+Z9052 DE-Bi12 +49HBZ_BRIDGE_FIZ+Z9054 DE-918 +49HBZ_BRIDGE_UBK+K1089 DE-38-315 +49HBZ_BRIDGE_UBK+K1141 DE-38-450 +49HBZ_BRIDGE_UBK+K1144 DE-38-459 +49HBZ_BRIDGE_ULB+Q0001 DE-5 +49HBZ_BRIDGE_ULB+Q1027 DE-5-142 +49HBZ_BRIDGE_ULB+Q1046 DE-5-181 +49HBZ_BRIDGE_ULB+Q1047 DE-5-182 +49HBZ_BRIDGE_ULB+Q1048 DE-5-183 +49HBZ_BRIDGE_ULB+Q1049 DE-5-184 +49HBZ_BRIDGE_ULB+Q1050 DE-5-185 +49HBZ_BRIDGE_ULB+Q1051 DE-5-186 +49HBZ_BRIDGE_ULB+Q1052 DE-5-187 +49HBZ_BRIDGE_ULB+Q1055 DE-5-190 +49HBZ_BRIDGE_ULB+Q1097 DE-5-26 +49HBZ_BRIDGE_ULB+Q1105 DE-5-34 +49HBZ_BRIDGE_ULB+Q1106 DE-5-35 +49HBZ_BRIDGE_ULB+Q1148 DE-5-79 +49HBZ_BRIDGE_ULB+Q1160 DE-5-95 +49HBZ_BRIDGE_ULB+Q1170 DE-5-180 +49HBZ_BRS+EMPTY DE-1044 +49HBZ_BRS+HEN DE-1044 +49HBZ_BRS+RHB DE-1044 +49HBZ_BRS+RHBE DE-1044 +49HBZ_BRS+SIE DE-Sie5 +49HBZ_BRS+STA DE-1044 +49HBZ_DET+HfM DE-575 +49HBZ_DET+LLB DE-51 +49HBZ_FSW+I5001 DE-Hag4 +49HBZ_FSW+I5002 DE-Hag4-2 +49HBZ_FSW+I5003 DE-Hag4-3 +49HBZ_FSW+I5004 DE-Hag4-4 +49HBZ_FSW+I5005 DE-Hag4-E +49HBZ_HHL+HAM DE-1871 +49HBZ_HHL+LIP DE-1926 +49HBZ_HMT+Z9038 DE-Kn38 +49HBZ_HMT+Z9044 DE-Kn38 +49HBZ_HMT+Z9045 DE-Kn38-W +49HBZ_HMT+Z9046 DE-Kn38-A +49HBZ_HMT+Z9048 DE-Kn38-T +49HBZ_RHW+KAM DE-1383a +49HBZ_RHW+KAM FL DE-1383a +49HBZ_RHW+KLE DE-1383 +49HBZ_RHW+RES_SHARE DE-1383 +49HBZ_RTU+R3001 DE-386 +49HBZ_RTU+R3002 DE-386 +49HBZ_RTU+R3012 DE-386 +49HBZ_RTU+R3014 DE-386 +49HBZ_RTU+R3032 DE-386 +49HBZ_RTU+R3036 DE-386 +49HBZ_RTU+R3042 DE-386 +49HBZ_RTU+R3047 DE-386 +49HBZ_RTU+R3048 DE-386 +49HBZ_RTU+R3054 DE-386 +49HBZ_RTU+RL002 DE-Lan1 +49HBZ_RTU+RL003 DE-Lan1 +49HBZ_RTU+RLES1 DE-386 +49HBZ_RUW+1393_BOT DE-1393-BOT +49HBZ_RUW+1393 DE-1393 +49HBZ_RUW+EMPTY DE-1393 +49HBZ_RUW+RES_SHARE DE-1393-BOT +49HBZ_UBA+001 DE-82-001 +49HBZ_UBA+002 DE-82-002 +49HBZ_UBA+003 DE-82-003 +49HBZ_UBA+004 DE-82-004 +49HBZ_UBA+005 DE-82-005 +49HBZ_UBA+006 DE-82-006 +49HBZ_UBA+007 DE-82-007 +49HBZ_UBA+008 DE-82-008 +49HBZ_UBA+009 DE-82-009 +49HBZ_UBA+010 DE-82-010 +49HBZ_UBA+011 DE-82-011 +49HBZ_UBA+101 DE-82-101 +49HBZ_UBA+102 DE-82-102 +49HBZ_UBA+103 DE-82-103 +49HBZ_UBA+107 DE-82-107 +49HBZ_UBA+108 DE-82-108 +49HBZ_UBA+109 DE-82-109 +49HBZ_UBA+110 DE-82-110 +49HBZ_UBA+115 DE-82-115 +49HBZ_UBA+119 DE-82-119 +49HBZ_UBA+127 DE-82-127 +49HBZ_UBA+128 DE-82-128 +49HBZ_UBA+201 DE-82-201 +49HBZ_UBA+202 DE-82-202 +49HBZ_UBA+203 DE-82-203 +49HBZ_UBA+204 DE-82-204 +49HBZ_UBA+205 DE-82-205 +49HBZ_UBA+206 DE-82-206 +49HBZ_UBA+207 DE-82-207 +49HBZ_UBA+208 DE-82-208 +49HBZ_UBA+209 DE-82-209 +49HBZ_UBA+211 DE-82-211 +49HBZ_UBA+212 DE-82-212 +49HBZ_UBA+213 DE-82-213 +49HBZ_UBA+215 DE-82-215 +49HBZ_UBA+216 DE-82-216 +49HBZ_UBA+217 DE-82-217 +49HBZ_UBA+218 DE-82-218 +49HBZ_UBA+219 DE-82-219 +49HBZ_UBA+220 DE-82-220 +49HBZ_UBA+221 DE-82-221 +49HBZ_UBA+222 DE-82-222 +49HBZ_UBA+223 DE-82-223 +49HBZ_UBA+224 DE-82-224 +49HBZ_UBA+230 DE-82-230 +49HBZ_UBA+232 DE-82-232 +49HBZ_UBA+233 DE-82-233 +49HBZ_UBA+302 DE-82-302 +49HBZ_UBA+303 DE-82-303 +49HBZ_UBA+304 DE-82-304 +49HBZ_UBA+305 DE-82-305 +49HBZ_UBA+306 DE-82-306 +49HBZ_UBA+307 DE-82-307 +49HBZ_UBA+309 DE-82-309 +49HBZ_UBA+310 DE-82-310 +49HBZ_UBA+311 DE-82-311 +49HBZ_UBA+312 DE-82-312 +49HBZ_UBA+313 DE-82-313 +49HBZ_UBA+314 DE-82-314 +49HBZ_UBA+315 DE-82-315 +49HBZ_UBA+316 DE-82-316 +49HBZ_UBA+317 DE-82-317 +49HBZ_UBA+318 DE-82-318 +49HBZ_UBA+319 DE-82-319 +49HBZ_UBA+320 DE-82-320 +49HBZ_UBA+321 DE-82-321 +49HBZ_UBA+322 DE-82-322 +49HBZ_UBA+323 DE-82-323 +49HBZ_UBA+324 DE-82-324 +49HBZ_UBA+325 DE-82-325 +49HBZ_UBA+326 DE-82-326 +49HBZ_UBA+327 DE-82-327 +49HBZ_UBA+328 DE-82-328 +49HBZ_UBA+332 DE-82-332 +49HBZ_UBA+333 DE-82-333 +49HBZ_UBA+334 DE-82-334 +49HBZ_UBA+335 DE-82-335 +49HBZ_UBA+336 DE-82-336 +49HBZ_UBA+337 DE-82-337 +49HBZ_UBA+401 DE-82-401 +49HBZ_UBA+402 DE-82-402 +49HBZ_UBA+403 DE-82-403 +49HBZ_UBA+404 DE-82-404 +49HBZ_UBA+405 DE-82-405 +49HBZ_UBA+406 DE-82-406 +49HBZ_UBA+407 DE-82-407 +49HBZ_UBA+408 DE-82-408 +49HBZ_UBA+409 DE-82-409 +49HBZ_UBA+410 DE-82-410 +49HBZ_UBA+411 DE-82-411 +49HBZ_UBA+412 DE-82-412 +49HBZ_UBA+413 DE-82-413 +49HBZ_UBA+414 DE-82-414 +49HBZ_UBA+415 DE-82-415 +49HBZ_UBA+416 DE-82-416 +49HBZ_UBA+417 DE-82-417 +49HBZ_UBA+418 DE-82-418 +49HBZ_UBA+419 DE-82-419 +49HBZ_UBA+420 DE-82-420 +49HBZ_UBA+421 DE-82-421 +49HBZ_UBA+423 DE-82-423 +49HBZ_UBA+425 DE-82-425 +49HBZ_UBA+426 DE-82-426 +49HBZ_UBA+501 DE-82-501 +49HBZ_UBA+502 DE-82-502 +49HBZ_UBA+503 DE-82-503 +49HBZ_UBA+505 DE-82-505 +49HBZ_UBA+506 DE-82-506 +49HBZ_UBA+507 DE-82-507 +49HBZ_UBA+508 DE-82-508 +49HBZ_UBA+509 DE-82-509 +49HBZ_UBA+510 DE-82-510 +49HBZ_UBA+511 DE-82-511 +49HBZ_UBA+514 DE-82-514 +49HBZ_UBA+520 DE-82-520 +49HBZ_UBA+521 DE-82-521 +49HBZ_UBA+522 DE-82-522 +49HBZ_UBA+523 DE-82-523 +49HBZ_UBA+601 DE-82-601 +49HBZ_UBA+602 DE-82-602 +49HBZ_UBA+603 DE-82-603 +49HBZ_UBA+604 DE-82-604 +49HBZ_UBA+608 DE-82-608 +49HBZ_UBA+609 DE-82-609 +49HBZ_UBA+611 DE-82-611 +49HBZ_UBA+612 DE-82-612 +49HBZ_UBA+613 DE-82-613 +49HBZ_UBA+615 DE-82-615 +49HBZ_UBA+618 DE-82-618 +49HBZ_UBA+622 DE-82-622 +49HBZ_UBA+625 DE-82-625 +49HBZ_UBA+632 DE-82-632 +49HBZ_UBA+637 DE-82-637 +49HBZ_UBA+638 DE-82-638 +49HBZ_UBA+701 DE-82-701 +49HBZ_UBA+702 DE-82-702 +49HBZ_UBA+703 DE-82-703 +49HBZ_UBA+704a DE-82-704a +49HBZ_UBA+704 DE-82-704 +49HBZ_UBA+705 DE-82-705 +49HBZ_UBA+706 DE-82-706 +49HBZ_UBA+707 DE-82-707 +49HBZ_UBA+709 DE-82-709 +49HBZ_UBA+710 DE-82-710 +49HBZ_UBA+711 DE-82-711 +49HBZ_UBA+713 DE-82-713 +49HBZ_UBA+714 DE-82-714 +49HBZ_UBA+715a DE-82-715a +49HBZ_UBA+715 DE-82-715 +49HBZ_UBA+716 DE-82-716 +49HBZ_UBA+717 DE-82-717 +49HBZ_UBA+718 DE-82-718 +49HBZ_UBA+719 DE-82-719 +49HBZ_UBA+720 DE-82-720 +49HBZ_UBA+721 DE-82-721 +49HBZ_UBA+722 DE-82-722 +49HBZ_UBA+723 DE-82-723 +49HBZ_UBA+724 DE-82-724 +49HBZ_UBA+725 DE-82-725 +49HBZ_UBA+726 DE-82-726 +49HBZ_UBA+727 DE-82-727 +49HBZ_UBA+728 DE-82-728 +49HBZ_UBA+729 DE-82-729 +49HBZ_UBA+730 DE-82-730 +49HBZ_UBA+731 DE-82-731 +49HBZ_UBA+732 DE-82-732 +49HBZ_UBA+733 DE-82-733 +49HBZ_UBA+734 DE-82-734 +49HBZ_UBA+735a DE-82-735a +49HBZ_UBA+735 DE-82-735 +49HBZ_UBA+736 DE-82-736 +49HBZ_UBA+737 DE-82-737 +49HBZ_UBA+738 DE-82-738 +49HBZ_UBA+739a DE-82-739a +49HBZ_UBA+739b DE-82-739b +49HBZ_UBA+739c DE-82-739c +49HBZ_UBA+739 DE-82-739 +49HBZ_UBA+740 DE-82-740 +49HBZ_UBA+741 DE-82-741 +49HBZ_UBA+742 DE-82-742 +49HBZ_UBA+743 DE-82-743 +49HBZ_UBA+744 DE-82-744 +49HBZ_UBA+745 DE-82-745 +49HBZ_UBA+746 DE-82-746 +49HBZ_UBA+748 DE-82-748 +49HBZ_UBA+749 DE-82-749 +49HBZ_UBA+750 DE-82-750 +49HBZ_UBA+751 DE-82-751 +49HBZ_UBA+752 DE-82-752 +49HBZ_UBA+753 DE-82-753 +49HBZ_UBA+754 DE-82-754 +49HBZ_UBA+755 DE-82-755 +49HBZ_UBA+756 DE-82-756 +49HBZ_UBA+757 DE-82-757 +49HBZ_UBA+758 DE-82-758 +49HBZ_UBA+759 DE-82-759 +49HBZ_UBA+761 DE-82-761 +49HBZ_UBA+762 DE-82-762 +49HBZ_UBA+763 DE-82-763 +49HBZ_UBA+764 DE-82-764 +49HBZ_UBA+765 DE-82-765 +49HBZ_UBA+766 DE-82-766 +49HBZ_UBA+767 DE-82-767 +49HBZ_UBA+768 DE-82-768 +49HBZ_UBA+769 DE-82-769 +49HBZ_UBA+770 DE-82-770 +49HBZ_UBA+771 DE-82-771 +49HBZ_UBA+772 DE-82-772 +49HBZ_UBA+773 DE-82-773 +49HBZ_UBA+774 DE-82-774 +49HBZ_UBA+775 DE-82-775 +49HBZ_UBA+777 DE-82-777 +49HBZ_UBA+778 DE-82-778 +49HBZ_UBA+779 DE-82-779 +49HBZ_UBA+780 DE-82-780 +49HBZ_UBA+781 DE-82-781 +49HBZ_UBA+783 DE-82-783 +49HBZ_UBA+785 DE-82-785 +49HBZ_UBA+786 DE-82-786 +49HBZ_UBA+787 DE-82-787 +49HBZ_UBA+788 DE-82-788 +49HBZ_UBA+789 DE-82-789 +49HBZ_UBA+790 DE-82-790 +49HBZ_UBA+791 DE-82-791 +49HBZ_UBA+792 DE-82-792 +49HBZ_UBA+793 DE-82-793 +49HBZ_UBA+AICES DE-82 +49HBZ_UBA+ARCHIV DE-82 +49HBZ_UBA+BIB2 DE-82 +49HBZ_UBA+CHEMBIB DE-82 +49HBZ_UBA+EMPTY DE-82 +49HBZ_UBA+IZ DE-82 +49HBZ_UBA+LBS DE-82 +49HBZ_UBA+MEDBIB DE-82 +49HBZ_UBA+PNZ DE-82 +49HBZ_UBA+RES_SHARE DE-82 +49HBZ_UBA+SCHREIBZEN DE-82 +49HBZ_UBA+SEMAPP DE-82 +49HBZ_UBA+ZB DE-82 +49HBZ_UBK+38-005 DE-38-005 +49HBZ_UBK+38-006 DE-38-006 +49HBZ_UBK+38-007 DE-38-007 +49HBZ_UBK+38-101 DE-38-101 +49HBZ_UBK+38-106 DE-38-106 +49HBZ_UBK+38-119 DE-38-119 +49HBZ_UBK+38-123 DE-38-123 +49HBZ_UBK+38-125 DE-38-125 +49HBZ_UBK+38-132 DE-38-132 +49HBZ_UBK+38-134 DE-38-134 +49HBZ_UBK+38-201 DE-38-201 +49HBZ_UBK+38-203 DE-38-203 +49HBZ_UBK+38-204 DE-38-204 +49HBZ_UBK+38-205 DE-38-205 +49HBZ_UBK+38-208 DE-38-208 +49HBZ_UBK+38-209 DE-38-209 +49HBZ_UBK+38-210 DE-38-210 +49HBZ_UBK+38-211 DE-38-211 +49HBZ_UBK+38-212 DE-38-212 +49HBZ_UBK+38-213 DE-38-213 +49HBZ_UBK+38-214 DE-38-214 +49HBZ_UBK+38-216 DE-38-216 +49HBZ_UBK+38-217 DE-38-217 +49HBZ_UBK+38-218 DE-38-218 +49HBZ_UBK+38-219 DE-38-219 +49HBZ_UBK+38-221 DE-38-221 +49HBZ_UBK+38-222 DE-38-222 +49HBZ_UBK+38-223 DE-38-223 +49HBZ_UBK+38-225 DE-38-225 +49HBZ_UBK+38-226 DE-38-226 +49HBZ_UBK+38-228 DE-38-228 +49HBZ_UBK+38-230 DE-38-230 +49HBZ_UBK+38-231 DE-38-231 +49HBZ_UBK+38-234 DE-38-234 +49HBZ_UBK+38-237 DE-38-237 +49HBZ_UBK+38-303 DE-38-303 +49HBZ_UBK+38-304 DE-38-304 +49HBZ_UBK+38-305 DE-38-305 +49HBZ_UBK+38-307 DE-38-307 +49HBZ_UBK+38-308 DE-38-308 +49HBZ_UBK+38-309 DE-38-309 +49HBZ_UBK+38-311 DE-38-311 +49HBZ_UBK+38-312 DE-38-312 +49HBZ_UBK+38-313 DE-38-313 +49HBZ_UBK+38-314 DE-38-314 +49HBZ_UBK+38-315 DE-38-315 +49HBZ_UBK+38-317 DE-38-317 +49HBZ_UBK+38-319 DE-38-319 +49HBZ_UBK+38-321 DE-38-321 +49HBZ_UBK+38-323 DE-38-323 +49HBZ_UBK+38-324 DE-38-324 +49HBZ_UBK+38-325 DE-38-325 +49HBZ_UBK+38-326 DE-38-326 +49HBZ_UBK+38-328 DE-38-328 +49HBZ_UBK+38-401 DE-38-401 +49HBZ_UBK+38-403 DE-38-403 +49HBZ_UBK+38-404 DE-38-404 +49HBZ_UBK+38-405 DE-38-405 +49HBZ_UBK+38-406 DE-38-406 +49HBZ_UBK+38-407 DE-38-407 +49HBZ_UBK+38-408 DE-38-408 +49HBZ_UBK+38-409 DE-38-409 +49HBZ_UBK+38-410 DE-38-410 +49HBZ_UBK+38-411 DE-38-411 +49HBZ_UBK+38-412 DE-38-412 +49HBZ_UBK+38-413 DE-38-413 +49HBZ_UBK+38-414 DE-38-414 +49HBZ_UBK+38-415 DE-38-415 +49HBZ_UBK+38-416 DE-38-416 +49HBZ_UBK+38-418 DE-38-418 +49HBZ_UBK+38-419 DE-38-419 +49HBZ_UBK+38-420 DE-38-420 +49HBZ_UBK+38-421 DE-38-421 +49HBZ_UBK+38-422 DE-38-422 +49HBZ_UBK+38-423 DE-38-423 +49HBZ_UBK+38-425 DE-38-425 +49HBZ_UBK+38-426 DE-38-426 +49HBZ_UBK+38-427 DE-38-427 +49HBZ_UBK+38-428 DE-38-428 +49HBZ_UBK+38-429 DE-38-429 +49HBZ_UBK+38-430 DE-38-430 +49HBZ_UBK+38-431 DE-38-431 +49HBZ_UBK+38-432 DE-38-432 +49HBZ_UBK+38-433 DE-38-433 +49HBZ_UBK+38-434 DE-38-434 +49HBZ_UBK+38-438 DE-38-438 +49HBZ_UBK+38-440 DE-38-440 +49HBZ_UBK+38-444 DE-38-444 +49HBZ_UBK+38-445 DE-38-445 +49HBZ_UBK+38-448 DE-38-448 +49HBZ_UBK+38-450 DE-38-450 +49HBZ_UBK+38-459 DE-38-459 +49HBZ_UBK+38-460 DE-38-460 +49HBZ_UBK+38-461 DE-38-461 +49HBZ_UBK+38-465 DE-38-465 +49HBZ_UBK+38-466 DE-38-466 +49HBZ_UBK+38-467 DE-38-467 +49HBZ_UBK+38-468 DE-38-468 +49HBZ_UBK+38-501 DE-38-501 +49HBZ_UBK+38-502 DE-38-502 +49HBZ_UBK+38-503 DE-38-503 +49HBZ_UBK+38-507 DE-38-507 +49HBZ_UBK+38-514 DE-38-514 +49HBZ_UBK+38-517 DE-38-517 +49HBZ_UBK+38-622 DE-38-622 +49HBZ_UBK+38-623 DE-38-623 +49HBZ_UBK+38 DE-38 +49HBZ_UBK+38-HLS DE-38 +49HBZ_UBK+38-HWA DE-38 +49HBZ_UBK+KN3 DE-Kn3 +49HBZ_UBO+ANG DE-294-20 +49HBZ_UBO+ARB DE-294-60 +49HBZ_UBO+ARCH DE-294-19 +49HBZ_UBO+ASTRO DE-294-43 +49HBZ_UBO+BERG DE-294-48 +49HBZ_UBO+BIO DE-294-7 +49HBZ_UBO+BOT DE-294-64 +49HBZ_UBO+CHEM DE-294-8 +49HBZ_UBO+DEU DE-294-56 +49HBZ_UBO+ELEK DE-294-9 +49HBZ_UBO+EMED DE-294-47 +49HBZ_UBO+ENT DE-294-25 +49HBZ_UBO+ERZ DE-294-27 +49HBZ_UBO+EVTH DE-294-21 +49HBZ_UBO+FRIE DE-294-57 +49HBZ_UBO+GER DE-294-23 +49HBZ_UBO+HEG DE-294-24 +49HBZ_UBO+HIS DE-294-11 +49HBZ_UBO+IB DE-294-22 +49HBZ_UBO+ICAMS DE-294-71 +49HBZ_UBO+IC DE-294-51 +49HBZ_UBO+IPA DE-294-70 +49HBZ_UBO+KBERG DE-294-63 +49HBZ_UBO+KLPHIL DE-294-34 +49HBZ_UBO+KNAPP DE-294-62 +49HBZ_UBO+KOMP DE-294-61 +49HBZ_UBO+KTH DE-294-38 +49HBZ_UBO+KUN DE-294-30 +49HBZ_UBO+MED DE-294-14 +49HBZ_UBO+MEDIEN DE-294-55 +49HBZ_UBO+NEURO DE-294-59 +49HBZ_UBO+OAW DE-294-15 +49HBZ_UBO+ORI DE-294-35 +49HBZ_UBO+PHILO DE-294-28 +49HBZ_UBO+PHYS DE-294-16 +49HBZ_UBO+ROM DE-294-33 +49HBZ_UBO+SLA DE-294-36 +49HBZ_UBO+SOZ DE-294-17 +49HBZ_UBO+SPORT DE-294-26 +49HBZ_UBO+SPR DE-294-37 +49HBZ_UBO+SPRLE DE-294-42 +49HBZ_UBO+THEA DE-294-66 +49HBZ_UBO+UB DE-294 +49HBZ_UBO+WERK DE-294-45 +49HBZ_UBO+WIWI DE-294-18 +49HBZ_UBO+ZRS DE-294-39 +49HBZ_UBT+T0011 DE-385 +49HBZ_UBT+TA011 DE-385 +49HBZ_UBT+TE011 DE-385 +49HBZ_UBT+TF011 DE-385 +49HBZ_UBT+TI011 DE-385-823 +49HBZ_ULB+0C DE-5 +49HBZ_ULB+0 DE-5 +49HBZ_ULB+1 DE-5N +49HBZ_ULB+AJ DE-5-141 +49HBZ_ULB+B059 DE-Bo59 +49HBZ_ULB+B102 DE-Bo102 +49HBZ_ULB+B127 DE-Bo127 +49HBZ_ULB+B170 DE-Bo170 +49HBZ_ULB+B206 DE-Bo206 +49HBZ_ULB+B405 DE-Bo405 +49HBZ_ULB+B408 DE-Bo408 +49HBZ_ULB+BN DE-5-3 +49HBZ_ULB+CH DE-5-17 +49HBZ_ULB+CP DE-5-68 +49HBZ_ULB+EG DE-5-11 +49HBZ_ULB+EM DE-5-113 +49HBZ_ULB+ES DE-5-12 +49HBZ_ULB+GA DE-5-74 +49HBZ_ULB+GE DE-5-20 +49HBZ_ULB+GL DE-5-39 +49HBZ_ULB+GO DE-5-161 +49HBZ_ULB+JA DE-5-181 +49HBZ_ULB+JC DE-5-182 +49HBZ_ULB+JD DE-5-95 +49HBZ_ULB+JF DE-5-180 +49HBZ_ULB+JH DE-5-35 +49HBZ_ULB+JI DE-5-142 +49HBZ_ULB+JJ DE-5-34 +49HBZ_ULB+JK DE-5-79 +49HBZ_ULB+JO DE-5-183 +49HBZ_ULB+JP DE-5-185 +49HBZ_ULB+JR DE-5-184 +49HBZ_ULB+JS DE-5-187 +49HBZ_ULB+JT DE-5-186 +49HBZ_ULB+JV DE-5-26 +49HBZ_ULB+JZ DE-5-190 +49HBZ_ULB+KA DE-5-8 +49HBZ_ULB+KE DE-5-60 +49HBZ_ULB+KK DE-5-198 +49HBZ_ULB+KU DE-5-7 +49HBZ_ULB+KV DE-5-99 +49HBZ_ULB+LL DE-5-61 +49HBZ_ULB+LS DE-5-82 +49HBZ_ULB+MG DE-5-41 +49HBZ_ULB+MH DE-5-32 +49HBZ_ULB+MM DE-5-14 +49HBZ_ULB+PH DE-5-90 +49HBZ_ULB+PK DE-5-30 +49HBZ_ULB+PO DE-5-162 +49HBZ_ULB+PS DE-5-51 +49HBZ_ULB+PZ DE-5-52 +49HBZ_ULB+SE DE-5-97 +49HBZ_ULB+SG DE-5-13 +49HBZ_ULB+SM DE-5-58 +49HBZ_ULB+SW DE-5-175 +49HBZ_ULB+TK DE-5-108 +49HBZ_ULB+WW DE-5-76 +49HBZ_ULB+XD DE-5-121 +49HBZ_ULB+XS DE-5-136 +49HBZ_ULB+ZA DE-5-205 +49HBZ_ULB+ZE DE-Bo404 +49HBZ_ULB+ZK DE-5-169 +49HBZ_ULB+ZZ DE-5-225 +49HBZ_ULM+AEKO DE-6-152 +49HBZ_ULM+ALKU DE-6-139a +49HBZ_ULM+AORI DE-6-153 +49HBZ_ULM+APHY DE-6-037 +49HBZ_ULM+ARAB DE-6-154 +49HBZ_ULM+ARCH DE-6-311 +49HBZ_ULM+BEK DE-6-123 +49HBZ_ULM+BYNE DE-6-190 +49HBZ_ULM+CASE DE-6-338 +49HBZ_ULM+CHEM DE-6-005 +49HBZ_ULM+CRZI DE-6-339 +49HBZ_ULM+DBIO DE-6-298 +49HBZ_ULM+DMAT DE-6-293 +49HBZ_ULM+DSAC DE-6-295 +49HBZ_ULM+EHRE DE-6-276 +49HBZ_ULM+EMPTY +49HBZ_ULM+ENGL DE-6-020 +49HBZ_ULM+ETHN DE-6-193 +49HBZ_ULM+EVT DE-6-006 +49HBZ_ULM+FBH DE-6-248 +49HBZ_ULM+FID DE-6-N +49HBZ_ULM+GEOB DE-6-026 +49HBZ_ULM+GEOW DE-6-007 +49HBZ_ULM+GERM DE-6-246 +49HBZ_ULM+GPHY DE-6-163 +49HBZ_ULM+GRIE DE-6-328 +49HBZ_ULM+HLS DE-6 +49HBZ_ULM+HMB DE-6-136 +49HBZ_ULM+HUEF +49HBZ_ULM+IJD DE-6-119 +49HBZ_ULM+INDO DE-6-259 +49HBZ_ULM+INTF DE-6-182 +49HBZ_ULM+ISTG DE-6-210 +49HBZ_ULM+ITM DE-6-326 +49HBZ_ULM+JUED DE-6-336 +49HBZ_ULM+KATD DE-6-011 +49HBZ_ULM+KATH DE-6-069 +49HBZ_ULM+KATJ DE-6-011 +49HBZ_ULM+KULT DE-6-097 +49HBZ_ULM+KWI DE-6-115 +49HBZ_ULM+LAT DE-6-192 +49HBZ_ULM+LEIB DE-6-318 +49HBZ_ULM+MATH DE-6-022 +49HBZ_ULM+MED DE-6-M +49HBZ_ULM+MEGT DE-6-164 +49HBZ_ULM+MUHO DE-6-334 +49HBZ_ULM+MUNA DE-6-139b +49HBZ_ULM+MUPA DE-6-286 +49HBZ_ULM+MUWI DE-6-052 +49HBZ_ULM+NIED DE-6-050 +49HBZ_ULM+NORD DE-6-191 +49HBZ_ULM+PHAR DE-6-057 +49HBZ_ULM+PHIL DE-6-015 +49HBZ_ULM+PHY DE-6-023 +49HBZ_ULM+PSY DE-6-049 +49HBZ_ULM+RAUM DE-6-194 +49HBZ_ULM+RHB DE-6-125 +49HBZ_ULM+ROSL DE-6-255 +49HBZ_ULM+RWS1 DE-6-016 +49HBZ_ULM+RWS2 DE-6-016 +49HBZ_ULM+SINO DE-6-156 +49HBZ_ULM+SOZ DE-6-A +49HBZ_ULM+SPOR DE-6-058 +49HBZ_ULM+SPRA DE-6-258 +49HBZ_ULM+TPHY DE-6-056 +49HBZ_ULM+WINF DE-6-282 +49HBZ_ULM+WIWI DE-6-017 +49HBZ_ULM+ZB DE-6 +49HBZ_ULM+ZRB DE-6-177 +49HBZ_ULM+ZUP DE-6-Z +49HBZ_ULM+ZYPE DE-6-325 +49HBZ_ZBM+BONN DE-98 +49HBZ_ZBM+KOELN DE-38M diff --git a/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSuppressedLocations.tsv b/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSuppressedLocations.tsv new file mode 100644 index 0000000..d02a235 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/generatedAlmaSuppressedLocations.tsv @@ -0,0 +1,1206 @@ +MemberCode[+LibraryCode]+LocationCode status +49HBZ_BIE+UB_BI+Abgesetzt suppressed +49HBZ_BIE+UB_BI+Platz suppressed +49HBZ_BIE+UB_BI+Verlust suppressed +49HBZ_BIE+UB_BI+Zsn_VM_Fak suppressed +49HBZ_BRS+RES_SHARE+STA_ILL suppressed +49HBZ_BRS+RHB+RHB_DG suppressed +49HBZ_BRS+RHB+RHB_NONMED suppressed +49HBZ_BRS+STA+STA_DG suppressed +49HBZ_BRS+STA+STA_NONMED suppressed +49HBZ_DET+LLB+LLB_AUSGES suppressed +49HBZ_DET+LLB+RES_SHARE suppressed +49HBZ_DUE+RES_SHARE+OUT_RS_ZB suppressed +49HBZ_DUE+X0001+47 suppressed +49HBZ_DUE+X0001+AE suppressed +49HBZ_DUE+X0001+VERBR suppressed +49HBZ_DUE+X0099+56 suppressed +49HBZ_DUE+X0099+MAK suppressed +49HBZ_DUE+X0099+NB suppressed +49HBZ_DUE+X0099+VERL suppressed +49HBZ_EDK+BDA01+B-INT suppressed +49HBZ_EDK+BDA01+UNASSIGNED suppressed +49HBZ_EDK+ED001+D-BB suppressed +49HBZ_EDK+ED001+D-INT suppressed +49HBZ_EDK+ED001+D-RET suppressed +49HBZ_EDK+ED001+UNASSIGNED suppressed +49HBZ_EDK+O9022+W-DG suppressed +49HBZ_EDK+O9022+W-DUE suppressed +49HBZ_EDK+O9022+W-INT suppressed +49HBZ_EDK+O9022+W-PAU suppressed +49HBZ_EDK+O9022+W-RET suppressed +49HBZ_EDK+T0006+UNASSIGNED suppressed +49HBZ_EVH+EVH+MAK suppressed +49HBZ_EVH+EVH+XXX suppressed +49HBZ_FDO+EFS+EFS_Verw suppressed +49HBZ_FDO+EFS_NonMed suppressed +49HBZ_FDO+MOP_NonMed suppressed +49HBZ_FDO+OUT_RS_REQ suppressed +49HBZ_FDO+SON_NonMed suppressed +49HBZ_FHA+RES_SHARE+ILL suppressed +49HBZ_FHM+FHMF+DMB_F suppressed +49HBZ_FHM+FHMF+TsH_F suppressed +49HBZ_FHM+FHMF+TsM_F suppressed +49HBZ_FHM+FHMH+DMB_H suppressed +49HBZ_FHM+FHMH+LBA_V suppressed +49HBZ_FHM+FHMH+PB_V suppressed +49HBZ_FHM+FHMH+TsM_H suppressed +49HBZ_FHM+FHMH+TsT_H suppressed +49HBZ_FHM+FHML+TsM_L suppressed +49HBZ_FHM+FHML+TsT_L suppressed +49HBZ_FHM+FHMS+DMB_S suppressed +49HBZ_FHM+FHMS+Stb_B suppressed +49HBZ_FHM+FHMS+TsH_S suppressed +49HBZ_FHM+FHMS+TsM_S suppressed +49HBZ_FHM+FHMS+TsT_S suppressed +49HBZ_FHM+RES_SHARE+ILL suppressed +49HBZ_FSW+RES_SHARE+OUT_RS_REQ suppressed +49HBZ_FUH+F0001+AUSTRA suppressed +49HBZ_HBI+10+LAM_Auss suppressed +49HBZ_HBI+10+LAM_ZSReg suppressed +49HBZ_HBI+40+Auss suppressed +49HBZ_HBI+40+BiblVerw suppressed +49HBZ_HBI+40+CB_ZSReg suppressed +49HBZ_HBI+40+Dauerausl suppressed +49HBZ_HBI+60+CM_Auss suppressed +49HBZ_HBI+60+CM_Schran suppressed +49HBZ_HBI+60+CM_ZSReg suppressed +49HBZ_HBI+ILL_CB suppressed +49HBZ_HBI+ILL_CM suppressed +49HBZ_HBI+ILL suppressed +49HBZ_HBO+RES_SHARE+OUT_RS_REQ suppressed +49HBZ_HGB+DE-1866+LOSTPAID suppressed +49HBZ_HGB+DE-1866+LOST suppressed +49HBZ_HHL+DE-1871+Delete suppressed +49HBZ_HHL+DE-1871+Dep1 suppressed +49HBZ_HHL+DE-1871+Dep2 suppressed +49HBZ_HHL+DE-1871+Hide suppressed +49HBZ_HHL+DE-1871+PRAES_HAM suppressed +49HBZ_HHL+DE-1871+SZ_HAM suppressed +49HBZ_HHL+DE-1871+VER suppressed +49HBZ_HHL+DE-1871+ZfW-IT_HAM suppressed +49HBZ_HHL+DE-1926+Delete suppressed +49HBZ_HHL+DE-1926+Dep1_LP suppressed +49HBZ_HHL+DE-1926+Dep2_LP suppressed +49HBZ_HHL+DE-1926+EKR_LP suppressed +49HBZ_HHL+DE-1926+Hide suppressed +49HBZ_HHL+DE-1926+LOST suppressed +49HBZ_HHL+DE-1926+MAGAZIN suppressed +49HBZ_HHL+DE-1926+MATERIAL suppressed +49HBZ_HHL+DE-1926+PRAES_LP suppressed +49HBZ_HHL+DE-1926+Ver_Lip suppressed +49HBZ_HHL+DE-1926+ZfW-IT_LP suppressed +49HBZ_HMT+Z9038+MAK suppressed +49HBZ_HSD+cdd+AusS suppressed +49HBZ_HSL+DLR+aus suppressed +49HBZ_HSL+HWG+FL suppressed +49HBZ_HSN+RES_SHARE+ILL suppressed +49HBZ_HST+TR+Reparatur suppressed +49HBZ_HST+TR+Schlü/USB suppressed +49HBZ_HSW+HSW+00002 suppressed +49HBZ_HSW+HSW+00003 suppressed +49HBZ_HSW+HSW+00004 suppressed +49HBZ_HSW+HSW+00200 suppressed +49HBZ_HSW+HSW+00202 suppressed +49HBZ_HSW+HSW+00204 suppressed +49HBZ_HSW+HSW+00301 suppressed +49HBZ_KHM+KHM+FH04 suppressed +49HBZ_KHM+KHM+MAG04 suppressed +49HBZ_LBZ+RES_SHARE_PLB suppressed +49HBZ_LBZ+RES_SHARE suppressed +49HBZ_LBZ+RES_SHARE_ZWB suppressed +49HBZ_OWL+ILL suppressed +49HBZ_PAD+P0001+12 suppressed +49HBZ_PAD+P0001+13 suppressed +49HBZ_PAD+P0001+DA suppressed +49HBZ_PAD+P0001+DG suppressed +49HBZ_PAD+P0001+ILL suppressed +49HBZ_PAD+P0001+LL suppressed +49HBZ_PAD+P0001+MI suppressed +49HBZ_PAD+P0001+PF suppressed +49HBZ_PAD+P0001+UA suppressed +49HBZ_PAD+P0001+UMZ suppressed +49HBZ_RFH+Biblio_RFH+Sonder suppressed +49HBZ_RFH+Biblio_RFH+Test suppressed +49HBZ_RHW+KAM AFL suppressed +49HBZ_RHW+KAM FL+KAM PFL suppressed +49HBZ_RHW+KLE AFL suppressed +49HBZ_RHW+RES_SHARE+KLE PFL suppressed +49HBZ_RTU+AUS2 suppressed +49HBZ_RTU+R3002+AUS02 suppressed +49HBZ_RTU+R3012+AUS12 suppressed +49HBZ_RTU+R3014+AUS14 suppressed +49HBZ_RTU+R3032+AUS32 suppressed +49HBZ_RTU+R3036+AUS36 suppressed +49HBZ_RTU+R3042+AUS42 suppressed +49HBZ_RTU+R3048+AUS48 suppressed +49HBZ_RTU+R3054+AUS54 suppressed +49HBZ_RTU+RL002+AUSLD suppressed +49HBZ_RTU+RL002+NFSLD suppressed +49HBZ_RUW+1393+SF_MH suppressed +49HBZ_RUW+EMPTY+UNASSIGNED suppressed +49HBZ_RUW+RES_SHARE+ILL suppressed +49HBZ_THK+DEUTZ+LOESCH_D suppressed +49HBZ_THK+GUM+LOESCH_G suppressed +49HBZ_THK+LEV+LOESCH_L suppressed +49HBZ_THK+SUED+LOESCH_S suppressed +49HBZ_UBA+219+0 suppressed +49HBZ_UBA+219+1 suppressed +49HBZ_UBA+219+2 suppressed +49HBZ_UBA+334+0 suppressed +49HBZ_UBA+410+0 suppressed +49HBZ_UBA+414+0 suppressed +49HBZ_UBA+506+0 suppressed +49HBZ_UBA+622+0 suppressed +49HBZ_UBA+622+10 suppressed +49HBZ_UBA+622+11 suppressed +49HBZ_UBA+622+12 suppressed +49HBZ_UBA+622+13 suppressed +49HBZ_UBA+622+14 suppressed +49HBZ_UBA+622+15 suppressed +49HBZ_UBA+622+16 suppressed +49HBZ_UBA+622+17 suppressed +49HBZ_UBA+622+18 suppressed +49HBZ_UBA+622+19 suppressed +49HBZ_UBA+622+1 suppressed +49HBZ_UBA+622+20 suppressed +49HBZ_UBA+622+21 suppressed +49HBZ_UBA+622+22 suppressed +49HBZ_UBA+622+24 suppressed +49HBZ_UBA+622+25 suppressed +49HBZ_UBA+622+26 suppressed +49HBZ_UBA+622+27 suppressed +49HBZ_UBA+622+2 suppressed +49HBZ_UBA+622+3 suppressed +49HBZ_UBA+622+4 suppressed +49HBZ_UBA+622+5 suppressed +49HBZ_UBA+622+6 suppressed +49HBZ_UBA+622+7 suppressed +49HBZ_UBA+622+8 suppressed +49HBZ_UBA+622+9 suppressed +49HBZ_UBA+622+Media suppressed +49HBZ_UBA+703+0 suppressed +49HBZ_UBD+BAB SemApp suppressed +49HBZ_UBD+BAB Verm-Auss suppressed +49HBZ_UBD+BAB+Verm-Auss suppressed +49HBZ_UBD+BHA Archiv suppressed +49HBZ_UBD+BHA Ausbildung suppressed +49HBZ_UBD+BHA Best-Aufb suppressed +49HBZ_UBD+BHA Direktion suppressed +49HBZ_UBD+BHA+Direktion suppressed +49HBZ_UBD+BHA Geschichte suppressed +49HBZ_UBD+BHA Philosoph suppressed +49HBZ_UBD+BHA Physik suppressed +49HBZ_UBD+BHA Theologie suppressed +49HBZ_UBD+BHA Wirtschaft suppressed +49HBZ_UBD+BR+Bde-in-Erw suppressed +49HBZ_UBD+BR SemApp suppressed +49HBZ_UBD+BR Verm-Auss suppressed +49HBZ_UBD+BR+Verm-Auss suppressed +49HBZ_UBD+EFB+Bde-in-Erw suppressed +49HBZ_UBD+EFB SchliessF suppressed +49HBZ_UBD+EFB SemApp suppressed +49HBZ_UBD+EFB Verm-Auss suppressed +49HBZ_UBD+EFB+Verm-Auss suppressed +49HBZ_UBD+HA CET_InnoL suppressed +49HBZ_UBD+HA+CET_InnoL suppressed +49HBZ_UBD+HA CET suppressed +49HBZ_UBD+HA+CET suppressed +49HBZ_UBD+HA Dez_Bau suppressed +49HBZ_UBD+HA+Dez_Bau suppressed +49HBZ_UBD+HA DoBuS suppressed +49HBZ_UBD+HA+DoBuS suppressed +49HBZ_UBD+HA DoKoLL suppressed +49HBZ_UBD+HA+DoKoLL suppressed +49HBZ_UBD+HA FunkenReha suppressed +49HBZ_UBD+HA+FunkenReha suppressed +49HBZ_UBD+HA Funken suppressed +49HBZ_UBD+HA+Funken suppressed +49HBZ_UBD+HA FunkenTheo suppressed +49HBZ_UBD+HA+FunkenTheo suppressed +49HBZ_UBD+HA HDZ suppressed +49HBZ_UBD+HA+HDZ suppressed +49HBZ_UBD+HA HRZ suppressed +49HBZ_UBD+HA+HRZ suppressed +49HBZ_UBD+HA HSP suppressed +49HBZ_UBD+HA+HSP suppressed +49HBZ_UBD+HA IFS suppressed +49HBZ_UBD+HA+IFS suppressed +49HBZ_UBD+HA itmc suppressed +49HBZ_UBD+HA+itmc suppressed +49HBZ_UBD+HA K4D suppressed +49HBZ_UBD+HA+K4D suppressed +49HBZ_UBD+HA LH0003 suppressed +49HBZ_UBD+HA+LH0003 suppressed +49HBZ_UBD+HA LH0007 suppressed +49HBZ_UBD+HA+LH0007 suppressed +49HBZ_UBD+HA LH0024 suppressed +49HBZ_UBD+HA+LH0024 suppressed +49HBZ_UBD+HA LH0028 suppressed +49HBZ_UBD+HA+LH0028 suppressed +49HBZ_UBD+HA LH0030W suppressed +49HBZ_UBD+HA+LH0030W suppressed +49HBZ_UBD+HA LH0032 suppressed +49HBZ_UBD+HA+LH0032 suppressed +49HBZ_UBD+HA LH0033 suppressed +49HBZ_UBD+HA+LH0033 suppressed +49HBZ_UBD+HA LH0048 suppressed +49HBZ_UBD+HA+LH0048 suppressed +49HBZ_UBD+HA LH0067 suppressed +49HBZ_UBD+HA+LH0067 suppressed +49HBZ_UBD+HA LH0069 suppressed +49HBZ_UBD+HA+LH0069 suppressed +49HBZ_UBD+HA LH0072P suppressed +49HBZ_UBD+HA+LH0072P suppressed +49HBZ_UBD+HA LH0072 suppressed +49HBZ_UBD+HA+LH0072 suppressed +49HBZ_UBD+HA LH0075 suppressed +49HBZ_UBD+HA+LH0075 suppressed +49HBZ_UBD+HA LH0079 suppressed +49HBZ_UBD+HA+LH0079 suppressed +49HBZ_UBD+HA LH0084 suppressed +49HBZ_UBD+HA+LH0084 suppressed +49HBZ_UBD+HA LH0085 suppressed +49HBZ_UBD+HA+LH0085 suppressed +49HBZ_UBD+HA LH0087 suppressed +49HBZ_UBD+HA+LH0087 suppressed +49HBZ_UBD+HA LH0090 suppressed +49HBZ_UBD+HA+LH0090 suppressed +49HBZ_UBD+HA LH0093 suppressed +49HBZ_UBD+HA LH0095 suppressed +49HBZ_UBD+HA+LH0095 suppressed +49HBZ_UBD+HA LH0097 suppressed +49HBZ_UBD+HA+LH0097 suppressed +49HBZ_UBD+HA LH0101 suppressed +49HBZ_UBD+HA+LH0101 suppressed +49HBZ_UBD+HA LH0102P suppressed +49HBZ_UBD+HA+LH0102P suppressed +49HBZ_UBD+HA LH0102 suppressed +49HBZ_UBD+HA+LH0102 suppressed +49HBZ_UBD+HA LH0105P suppressed +49HBZ_UBD+HA+LH0105P suppressed +49HBZ_UBD+HA LH0105 suppressed +49HBZ_UBD+HA+LH0105 suppressed +49HBZ_UBD+HA LH0110P suppressed +49HBZ_UBD+HA+LH0110P suppressed +49HBZ_UBD+HA LH0110 suppressed +49HBZ_UBD+HA+LH0110 suppressed +49HBZ_UBD+HA LH0112P suppressed +49HBZ_UBD+HA+LH0112P suppressed +49HBZ_UBD+HA LH0112 suppressed +49HBZ_UBD+HA+LH0112 suppressed +49HBZ_UBD+HA LH0132P suppressed +49HBZ_UBD+HA+LH0132P suppressed +49HBZ_UBD+HA LH0132 suppressed +49HBZ_UBD+HA+LH0132 suppressed +49HBZ_UBD+HA LH0150 suppressed +49HBZ_UBD+HA+LH0150 suppressed +49HBZ_UBD+HA LH0151 suppressed +49HBZ_UBD+HA+LH0151 suppressed +49HBZ_UBD+HA LH0155 suppressed +49HBZ_UBD+HA+LH0155 suppressed +49HBZ_UBD+HA LH0157P suppressed +49HBZ_UBD+HA+LH0157P suppressed +49HBZ_UBD+HA LH0173 suppressed +49HBZ_UBD+HA LH0176 suppressed +49HBZ_UBD+HA+LH0176 suppressed +49HBZ_UBD+HA LH0177 suppressed +49HBZ_UBD+HA+LH0177 suppressed +49HBZ_UBD+HA LH0180 suppressed +49HBZ_UBD+HA+LH0180 suppressed +49HBZ_UBD+HA LH0182 suppressed +49HBZ_UBD+HA+LH0182 suppressed +49HBZ_UBD+HA LH0183 suppressed +49HBZ_UBD+HA+LH0183 suppressed +49HBZ_UBD+HA LH0184 suppressed +49HBZ_UBD+HA+LH0184 suppressed +49HBZ_UBD+HA LH0185 suppressed +49HBZ_UBD+HA+LH0185 suppressed +49HBZ_UBD+HA LH0186 suppressed +49HBZ_UBD+HA+LH0186 suppressed +49HBZ_UBD+HA LH0188 suppressed +49HBZ_UBD+HA+LH0188 suppressed +49HBZ_UBD+HA LH0200 suppressed +49HBZ_UBD+HA+LH0200 suppressed +49HBZ_UBD+HA LH0202S suppressed +49HBZ_UBD+HA+LH0202S suppressed +49HBZ_UBD+HA LH0202 suppressed +49HBZ_UBD+HA+LH0202 suppressed +49HBZ_UBD+HA LH0203S suppressed +49HBZ_UBD+HA+LH0203S suppressed +49HBZ_UBD+HA LH0203 suppressed +49HBZ_UBD+HA+LH0203 suppressed +49HBZ_UBD+HA LH0204 suppressed +49HBZ_UBD+HA+LH0204 suppressed +49HBZ_UBD+HA LH0209 suppressed +49HBZ_UBD+HA+LH0209 suppressed +49HBZ_UBD+HA LH0210 suppressed +49HBZ_UBD+HA+LH0210 suppressed +49HBZ_UBD+HA LH0217P suppressed +49HBZ_UBD+HA+LH0217P suppressed +49HBZ_UBD+HA LH0217 suppressed +49HBZ_UBD+HA+LH0217 suppressed +49HBZ_UBD+HA LH0220 suppressed +49HBZ_UBD+HA+LH0220 suppressed +49HBZ_UBD+HA LH0230 suppressed +49HBZ_UBD+HA+LH0230 suppressed +49HBZ_UBD+HA LH0245P suppressed +49HBZ_UBD+HA+LH0245P suppressed +49HBZ_UBD+HA LH0245 suppressed +49HBZ_UBD+HA+LH0245 suppressed +49HBZ_UBD+HA LH0302 suppressed +49HBZ_UBD+HA+LH0302 suppressed +49HBZ_UBD+HA LH0305P suppressed +49HBZ_UBD+HA+LH0305P suppressed +49HBZ_UBD+HA LH0305 suppressed +49HBZ_UBD+HA+LH0305 suppressed +49HBZ_UBD+HA LH0310 suppressed +49HBZ_UBD+HA+LH0310 suppressed +49HBZ_UBD+HA LH0319P suppressed +49HBZ_UBD+HA+LH0319P suppressed +49HBZ_UBD+HA LH0319 suppressed +49HBZ_UBD+HA+LH0319 suppressed +49HBZ_UBD+HA LH0320P suppressed +49HBZ_UBD+HA+LH0320P suppressed +49HBZ_UBD+HA LH0320 suppressed +49HBZ_UBD+HA+LH0320 suppressed +49HBZ_UBD+HA LH0323P suppressed +49HBZ_UBD+HA+LH0323P suppressed +49HBZ_UBD+HA LH0323 suppressed +49HBZ_UBD+HA+LH0323 suppressed +49HBZ_UBD+HA LH0324P suppressed +49HBZ_UBD+HA+LH0324P suppressed +49HBZ_UBD+HA LH0324 suppressed +49HBZ_UBD+HA+LH0324 suppressed +49HBZ_UBD+HA LH0417 suppressed +49HBZ_UBD+HA+LH0417 suppressed +49HBZ_UBD+HA LH0418 suppressed +49HBZ_UBD+HA+LH0418 suppressed +49HBZ_UBD+HA LH0426 suppressed +49HBZ_UBD+HA+LH0426 suppressed +49HBZ_UBD+HA LH0430 suppressed +49HBZ_UBD+HA+LH0430 suppressed +49HBZ_UBD+HA LH0453 suppressed +49HBZ_UBD+HA+LH0453 suppressed +49HBZ_UBD+HA LH0454 suppressed +49HBZ_UBD+HA+LH0454 suppressed +49HBZ_UBD+HA LH0456 suppressed +49HBZ_UBD+HA+LH0456 suppressed +49HBZ_UBD+HA LH0460 suppressed +49HBZ_UBD+HA+LH0460 suppressed +49HBZ_UBD+HA LH0475 suppressed +49HBZ_UBD+HA+LH0475 suppressed +49HBZ_UBD+HA LH0480 suppressed +49HBZ_UBD+HA+LH0480 suppressed +49HBZ_UBD+HA LH0485 suppressed +49HBZ_UBD+HA+LH0485 suppressed +49HBZ_UBD+HA LH0490 suppressed +49HBZ_UBD+HA+LH0490 suppressed +49HBZ_UBD+HA LH0500 suppressed +49HBZ_UBD+HA+LH0500 suppressed +49HBZ_UBD+HA LH0501S suppressed +49HBZ_UBD+HA+LH0501S suppressed +49HBZ_UBD+HA LH0501 suppressed +49HBZ_UBD+HA+LH0501 suppressed +49HBZ_UBD+HA LH0502 suppressed +49HBZ_UBD+HA+LH0502 suppressed +49HBZ_UBD+HA LH0504P suppressed +49HBZ_UBD+HA+LH0504P suppressed +49HBZ_UBD+HA LH0506 suppressed +49HBZ_UBD+HA+LH0506 suppressed +49HBZ_UBD+HA LH0508S suppressed +49HBZ_UBD+HA+LH0508S suppressed +49HBZ_UBD+HA LH0509 suppressed +49HBZ_UBD+HA+LH0509 suppressed +49HBZ_UBD+HA LH0512 suppressed +49HBZ_UBD+HA LH0517 suppressed +49HBZ_UBD+HA+LH0517 suppressed +49HBZ_UBD+HA LH0822 suppressed +49HBZ_UBD+HA+LH0822 suppressed +49HBZ_UBD+HA LH0900 suppressed +49HBZ_UBD+HA+LH0900 suppressed +49HBZ_UBD+HA LH0902 suppressed +49HBZ_UBD+HA+LH0902 suppressed +49HBZ_UBD+HA LH1208 suppressed +49HBZ_UBD+HA+LH1208 suppressed +49HBZ_UBD+HA LH1280 suppressed +49HBZ_UBD+HA+LH1280 suppressed +49HBZ_UBD+HA LH1300P suppressed +49HBZ_UBD+HA+LH1300P suppressed +49HBZ_UBD+HA LH1310P suppressed +49HBZ_UBD+HA+LH1310P suppressed +49HBZ_UBD+HA LH1310 suppressed +49HBZ_UBD+HA+LH1310 suppressed +49HBZ_UBD+HA LH1317P suppressed +49HBZ_UBD+HA+LH1317P suppressed +49HBZ_UBD+HA LH1329 suppressed +49HBZ_UBD+HA+LH1329 suppressed +49HBZ_UBD+HA LH1342 suppressed +49HBZ_UBD+HA+LH1342 suppressed +49HBZ_UBD+HA LH1354P suppressed +49HBZ_UBD+HA LH1354 suppressed +49HBZ_UBD+HA LH1372 suppressed +49HBZ_UBD+HA+LH1372 suppressed +49HBZ_UBD+HA LH1385 suppressed +49HBZ_UBD+HA+LH1385 suppressed +49HBZ_UBD+HA LH1401 suppressed +49HBZ_UBD+HA+LH1401 suppressed +49HBZ_UBD+HA LH1402 suppressed +49HBZ_UBD+HA LH1453 suppressed +49HBZ_UBD+HA+LH1453 suppressed +49HBZ_UBD+HA LH1457 suppressed +49HBZ_UBD+HA+LH1457 suppressed +49HBZ_UBD+HA LH1464 suppressed +49HBZ_UBD+HA+LH1464 suppressed +49HBZ_UBD+HA LH1512 suppressed +49HBZ_UBD+HA+LH1512 suppressed +49HBZ_UBD+HA LH1515 suppressed +49HBZ_UBD+HA+LH1515 suppressed +49HBZ_UBD+HA LH1603 suppressed +49HBZ_UBD+HA+LH1603 suppressed +49HBZ_UBD+HA LH1624 suppressed +49HBZ_UBD+HA+LH1624 suppressed +49HBZ_UBD+HA LH2000 suppressed +49HBZ_UBD+HA+LH2000 suppressed +49HBZ_UBD+HA LH2001 suppressed +49HBZ_UBD+HA+LH2001 suppressed +49HBZ_UBD+HA LH2002 suppressed +49HBZ_UBD+HA+LH2002 suppressed +49HBZ_UBD+HA LH2003 suppressed +49HBZ_UBD+HA+LH2003 suppressed +49HBZ_UBD+HA LH2004 suppressed +49HBZ_UBD+HA+LH2004 suppressed +49HBZ_UBD+HA LH2005 suppressed +49HBZ_UBD+HA+LH2005 suppressed +49HBZ_UBD+HA LH2006 suppressed +49HBZ_UBD+HA+LH2006 suppressed +49HBZ_UBD+HA LH2007 suppressed +49HBZ_UBD+HA+LH2007 suppressed +49HBZ_UBD+HA LH2008 suppressed +49HBZ_UBD+HA+LH2008 suppressed +49HBZ_UBD+HA LH2009 suppressed +49HBZ_UBD+HA+LH2009 suppressed +49HBZ_UBD+HA LH2012 suppressed +49HBZ_UBD+HA+LH2012 suppressed +49HBZ_UBD+HA LH2013 suppressed +49HBZ_UBD+HA+LH2013 suppressed +49HBZ_UBD+HA LH2014 suppressed +49HBZ_UBD+HA+LH2014 suppressed +49HBZ_UBD+HA LH2015 suppressed +49HBZ_UBD+HA+LH2015 suppressed +49HBZ_UBD+HA LH2016 suppressed +49HBZ_UBD+HA LH2017 suppressed +49HBZ_UBD+HA LH2050 suppressed +49HBZ_UBD+HA+LH2050 suppressed +49HBZ_UBD+HA LH2051 suppressed +49HBZ_UBD+HA+LH2051 suppressed +49HBZ_UBD+HA LH2052 suppressed +49HBZ_UBD+HA+LH2052 suppressed +49HBZ_UBD+HA LH2053 suppressed +49HBZ_UBD+HA+LH2053 suppressed +49HBZ_UBD+HA LH2054 suppressed +49HBZ_UBD+HA+LH2054 suppressed +49HBZ_UBD+HA LH2055S suppressed +49HBZ_UBD+HA LH2057 suppressed +49HBZ_UBD+HA+LH2057 suppressed +49HBZ_UBD+HA LH2058 suppressed +49HBZ_UBD+HA+LH2058 suppressed +49HBZ_UBD+HA LH2060 suppressed +49HBZ_UBD+HA+LH2060 suppressed +49HBZ_UBD+HA LH2062 suppressed +49HBZ_UBD+HA+LH2062 suppressed +49HBZ_UBD+HA LH2063 suppressed +49HBZ_UBD+HA+LH2063 suppressed +49HBZ_UBD+HA LH2064 suppressed +49HBZ_UBD+HA+LH2064 suppressed +49HBZ_UBD+HA LH2065 suppressed +49HBZ_UBD+HA+LH2065 suppressed +49HBZ_UBD+HA LH2066 suppressed +49HBZ_UBD+HA+LH2066 suppressed +49HBZ_UBD+HA LH2067 suppressed +49HBZ_UBD+HA+LH2067 suppressed +49HBZ_UBD+HA LH2068 suppressed +49HBZ_UBD+HA+LH2068 suppressed +49HBZ_UBD+HA+LH2069 suppressed +49HBZ_UBD+HA+LH2070 suppressed +49HBZ_UBD+HA LH2100 suppressed +49HBZ_UBD+HA+LH2100 suppressed +49HBZ_UBD+HA LH2101 suppressed +49HBZ_UBD+HA+LH2101 suppressed +49HBZ_UBD+HA LH2103 suppressed +49HBZ_UBD+HA+LH2103 suppressed +49HBZ_UBD+HA LH2104 suppressed +49HBZ_UBD+HA+LH2104 suppressed +49HBZ_UBD+HA LH2106 suppressed +49HBZ_UBD+HA+LH2106 suppressed +49HBZ_UBD+HA LH2107 suppressed +49HBZ_UBD+HA+LH2107 suppressed +49HBZ_UBD+HA LH2108 suppressed +49HBZ_UBD+HA+LH2108 suppressed +49HBZ_UBD+HA LH2109 suppressed +49HBZ_UBD+HA+LH2109 suppressed +49HBZ_UBD+HA LH2110 suppressed +49HBZ_UBD+HA+LH2110 suppressed +49HBZ_UBD+HA LH2111 suppressed +49HBZ_UBD+HA+LH2111 suppressed +49HBZ_UBD+HA LH2112 suppressed +49HBZ_UBD+HA+LH2112 suppressed +49HBZ_UBD+HA LH2113 suppressed +49HBZ_UBD+HA+LH2113 suppressed +49HBZ_UBD+HA LH2114 suppressed +49HBZ_UBD+HA+LH2114 suppressed +49HBZ_UBD+HA LH2115 suppressed +49HBZ_UBD+HA+LH2115 suppressed +49HBZ_UBD+HA LH2116 suppressed +49HBZ_UBD+HA+LH2116 suppressed +49HBZ_UBD+HA LH2117 suppressed +49HBZ_UBD+HA+LH2117 suppressed +49HBZ_UBD+HA+LH2118 suppressed +49HBZ_UBD+HA+LH2119 suppressed +49HBZ_UBD+HA LH2150P suppressed +49HBZ_UBD+HA+LH2150P suppressed +49HBZ_UBD+HA LH2150 suppressed +49HBZ_UBD+HA+LH2150 suppressed +49HBZ_UBD+HA LH2153 suppressed +49HBZ_UBD+HA+LH2153 suppressed +49HBZ_UBD+HA LH2156 suppressed +49HBZ_UBD+HA+LH2156 suppressed +49HBZ_UBD+HA LH2157 suppressed +49HBZ_UBD+HA+LH2157 suppressed +49HBZ_UBD+HA LH2158 suppressed +49HBZ_UBD+HA+LH2158 suppressed +49HBZ_UBD+HA LH2159 suppressed +49HBZ_UBD+HA+LH2159 suppressed +49HBZ_UBD+HA LH2160 suppressed +49HBZ_UBD+HA+LH2160 suppressed +49HBZ_UBD+HA LH2162 suppressed +49HBZ_UBD+HA+LH2162 suppressed +49HBZ_UBD+HA LH2163 suppressed +49HBZ_UBD+HA+LH2163 suppressed +49HBZ_UBD+HA LH2165 suppressed +49HBZ_UBD+HA+LH2165 suppressed +49HBZ_UBD+HA LH2166 suppressed +49HBZ_UBD+HA+LH2166 suppressed +49HBZ_UBD+HA LH2167 suppressed +49HBZ_UBD+HA+LH2167 suppressed +49HBZ_UBD+HA LH2168 suppressed +49HBZ_UBD+HA+LH2168 suppressed +49HBZ_UBD+HA LH2169 suppressed +49HBZ_UBD+HA+LH2169 suppressed +49HBZ_UBD+HA LH2170 suppressed +49HBZ_UBD+HA+LH2170 suppressed +49HBZ_UBD+HA+LH2171 suppressed +49HBZ_UBD+HA+LH2172 suppressed +49HBZ_UBD+HA LH2200 suppressed +49HBZ_UBD+HA+LH2200 suppressed +49HBZ_UBD+HA LH2202 suppressed +49HBZ_UBD+HA+LH2202 suppressed +49HBZ_UBD+HA LH2203 suppressed +49HBZ_UBD+HA+LH2203 suppressed +49HBZ_UBD+HA LH2204 suppressed +49HBZ_UBD+HA+LH2204 suppressed +49HBZ_UBD+HA LH2205 suppressed +49HBZ_UBD+HA+LH2205 suppressed +49HBZ_UBD+HA LH2206 suppressed +49HBZ_UBD+HA+LH2206 suppressed +49HBZ_UBD+HA LH2207 suppressed +49HBZ_UBD+HA+LH2207 suppressed +49HBZ_UBD+HA LH2208 suppressed +49HBZ_UBD+HA+LH2208 suppressed +49HBZ_UBD+HA LH2209 suppressed +49HBZ_UBD+HA+LH2209 suppressed +49HBZ_UBD+HA LH2210 suppressed +49HBZ_UBD+HA+LH2210 suppressed +49HBZ_UBD+HA LH2211 suppressed +49HBZ_UBD+HA+LH2212 suppressed +49HBZ_UBD+HA+LH2213 suppressed +49HBZ_UBD+HA LH2252 suppressed +49HBZ_UBD+HA+LH2252 suppressed +49HBZ_UBD+HA LH2253 suppressed +49HBZ_UBD+HA+LH2253 suppressed +49HBZ_UBD+HA LH2254 suppressed +49HBZ_UBD+HA+LH2254 suppressed +49HBZ_UBD+HA LH2255P suppressed +49HBZ_UBD+HA+LH2255P suppressed +49HBZ_UBD+HA LH2256P suppressed +49HBZ_UBD+HA+LH2256P suppressed +49HBZ_UBD+HA LH2257 suppressed +49HBZ_UBD+HA+LH2257 suppressed +49HBZ_UBD+HA LH2258 suppressed +49HBZ_UBD+HA+LH2258 suppressed +49HBZ_UBD+HA LH2259 suppressed +49HBZ_UBD+HA+LH2259 suppressed +49HBZ_UBD+HA LH2260 suppressed +49HBZ_UBD+HA+LH2260 suppressed +49HBZ_UBD+HA LH2261 suppressed +49HBZ_UBD+HA+LH2261 suppressed +49HBZ_UBD+HA LH2262 suppressed +49HBZ_UBD+HA+LH2262 suppressed +49HBZ_UBD+HA LH2263 suppressed +49HBZ_UBD+HA+LH2263 suppressed +49HBZ_UBD+HA+LH2264 suppressed +49HBZ_UBD+HA LH2300S suppressed +49HBZ_UBD+HA+LH2300S suppressed +49HBZ_UBD+HA LH2300 suppressed +49HBZ_UBD+HA+LH2300 suppressed +49HBZ_UBD+HA LH2301P suppressed +49HBZ_UBD+HA+LH2301P suppressed +49HBZ_UBD+HA LH2301 suppressed +49HBZ_UBD+HA+LH2301 suppressed +49HBZ_UBD+HA LH2302 suppressed +49HBZ_UBD+HA+LH2302 suppressed +49HBZ_UBD+HA LH2303 suppressed +49HBZ_UBD+HA+LH2303 suppressed +49HBZ_UBD+HA LH2304 suppressed +49HBZ_UBD+HA+LH2304 suppressed +49HBZ_UBD+HA LH2305 suppressed +49HBZ_UBD+HA+LH2305 suppressed +49HBZ_UBD+HA LH2306 suppressed +49HBZ_UBD+HA+LH2306 suppressed +49HBZ_UBD+HA LH2307 suppressed +49HBZ_UBD+HA+LH2307 suppressed +49HBZ_UBD+HA LH2309 suppressed +49HBZ_UBD+HA+LH2309 suppressed +49HBZ_UBD+HA LH2310 suppressed +49HBZ_UBD+HA+LH2310 suppressed +49HBZ_UBD+HA LH2311 suppressed +49HBZ_UBD+HA+LH2311 suppressed +49HBZ_UBD+HA LH2312 suppressed +49HBZ_UBD+HA+LH2312 suppressed +49HBZ_UBD+HA LH2313 suppressed +49HBZ_UBD+HA+LH2313 suppressed +49HBZ_UBD+HA LH2314 suppressed +49HBZ_UBD+HA+LH2314 suppressed +49HBZ_UBD+HA LH2315 suppressed +49HBZ_UBD+HA+LH2315 suppressed +49HBZ_UBD+HA LH2316 suppressed +49HBZ_UBD+HA+LH2316 suppressed +49HBZ_UBD+HA LH2350P suppressed +49HBZ_UBD+HA+LH2350P suppressed +49HBZ_UBD+HA LH2350 suppressed +49HBZ_UBD+HA+LH2350 suppressed +49HBZ_UBD+HA LH2351P suppressed +49HBZ_UBD+HA+LH2351P suppressed +49HBZ_UBD+HA LH2351 suppressed +49HBZ_UBD+HA+LH2351 suppressed +49HBZ_UBD+HA LH2353 suppressed +49HBZ_UBD+HA+LH2353 suppressed +49HBZ_UBD+HA LH2354 suppressed +49HBZ_UBD+HA+LH2354 suppressed +49HBZ_UBD+HA LH2356 suppressed +49HBZ_UBD+HA+LH2356 suppressed +49HBZ_UBD+HA LH2357 suppressed +49HBZ_UBD+HA+LH2357 suppressed +49HBZ_UBD+HA LH2359 suppressed +49HBZ_UBD+HA LH2360 suppressed +49HBZ_UBD+HA+LH2360 suppressed +49HBZ_UBD+HA LH2361 suppressed +49HBZ_UBD+HA+LH2361 suppressed +49HBZ_UBD+HA LH2362 suppressed +49HBZ_UBD+HA+LH2362 suppressed +49HBZ_UBD+HA LH2400 suppressed +49HBZ_UBD+HA+LH2400 suppressed +49HBZ_UBD+HA LH2401 suppressed +49HBZ_UBD+HA+LH2401 suppressed +49HBZ_UBD+HA LH2403 suppressed +49HBZ_UBD+HA+LH2403 suppressed +49HBZ_UBD+HA LH2404 suppressed +49HBZ_UBD+HA+LH2404 suppressed +49HBZ_UBD+HA LH2406 suppressed +49HBZ_UBD+HA+LH2406 suppressed +49HBZ_UBD+HA LH2407 suppressed +49HBZ_UBD+HA+LH2407 suppressed +49HBZ_UBD+HA LH2408 suppressed +49HBZ_UBD+HA+LH2408 suppressed +49HBZ_UBD+HA LH2409 suppressed +49HBZ_UBD+HA+LH2409 suppressed +49HBZ_UBD+HA LH2410 suppressed +49HBZ_UBD+HA+LH2410 suppressed +49HBZ_UBD+HA LH2411 suppressed +49HBZ_UBD+HA+LH2411 suppressed +49HBZ_UBD+HA LH2412 suppressed +49HBZ_UBD+HA+LH2412 suppressed +49HBZ_UBD+HA LH2413 suppressed +49HBZ_UBD+HA+LH2413 suppressed +49HBZ_UBD+HA LH2414 suppressed +49HBZ_UBD+HA+LH2414 suppressed +49HBZ_UBD+HA LH2415 suppressed +49HBZ_UBD+HA+LH2415 suppressed +49HBZ_UBD+HA LH2416 suppressed +49HBZ_UBD+HA+LH2416 suppressed +49HBZ_UBD+HA LH2417 suppressed +49HBZ_UBD+HA+LH2417 suppressed +49HBZ_UBD+HA LH2418 suppressed +49HBZ_UBD+HA+LH2418 suppressed +49HBZ_UBD+HA LH2419 suppressed +49HBZ_UBD+HA+LH2419 suppressed +49HBZ_UBD+HA LH2420 suppressed +49HBZ_UBD+HA+LH2420 suppressed +49HBZ_UBD+HA LH2421 suppressed +49HBZ_UBD+HA+LH2421 suppressed +49HBZ_UBD+HA+LH2422 suppressed +49HBZ_UBD+HA LH2450 suppressed +49HBZ_UBD+HA+LH2450 suppressed +49HBZ_UBD+HA LH2452 suppressed +49HBZ_UBD+HA+LH2452 suppressed +49HBZ_UBD+HA LH2453 suppressed +49HBZ_UBD+HA+LH2453 suppressed +49HBZ_UBD+HA LH2454 suppressed +49HBZ_UBD+HA+LH2454 suppressed +49HBZ_UBD+HA LH2455 suppressed +49HBZ_UBD+HA+LH2455 suppressed +49HBZ_UBD+HA LH2457 suppressed +49HBZ_UBD+HA+LH2457 suppressed +49HBZ_UBD+HA LH2458P suppressed +49HBZ_UBD+HA+LH2458P suppressed +49HBZ_UBD+HA LH2459 suppressed +49HBZ_UBD+HA+LH2459 suppressed +49HBZ_UBD+HA LH2461 suppressed +49HBZ_UBD+HA+LH2461 suppressed +49HBZ_UBD+HA LH2462 suppressed +49HBZ_UBD+HA+LH2462 suppressed +49HBZ_UBD+HA LH2464 suppressed +49HBZ_UBD+HA+LH2464 suppressed +49HBZ_UBD+HA LH2465 suppressed +49HBZ_UBD+HA+LH2465 suppressed +49HBZ_UBD+HA LH2466 suppressed +49HBZ_UBD+HA+LH2466 suppressed +49HBZ_UBD+HA LH2467 suppressed +49HBZ_UBD+HA+LH2467 suppressed +49HBZ_UBD+HA LH2468 suppressed +49HBZ_UBD+HA+LH2468 suppressed +49HBZ_UBD+HA LH2469 suppressed +49HBZ_UBD+HA+LH2469 suppressed +49HBZ_UBD+HA LH2470 suppressed +49HBZ_UBD+HA+LH2470 suppressed +49HBZ_UBD+HA LH2471 suppressed +49HBZ_UBD+HA+LH2471 suppressed +49HBZ_UBD+HA LH2472 suppressed +49HBZ_UBD+HA+LH2472 suppressed +49HBZ_UBD+HA LH2473 suppressed +49HBZ_UBD+HA+LH2473 suppressed +49HBZ_UBD+HA+LH2474 suppressed +49HBZ_UBD+HA+LH2475 suppressed +49HBZ_UBD+HA+LH2476 suppressed +49HBZ_UBD+HA LH2501 suppressed +49HBZ_UBD+HA+LH2501 suppressed +49HBZ_UBD+HA LH2502 suppressed +49HBZ_UBD+HA+LH2502 suppressed +49HBZ_UBD+HA LH2504 suppressed +49HBZ_UBD+HA+LH2504 suppressed +49HBZ_UBD+HA LH2508 suppressed +49HBZ_UBD+HA+LH2508 suppressed +49HBZ_UBD+HA LH2509 suppressed +49HBZ_UBD+HA+LH2509 suppressed +49HBZ_UBD+HA LH2510 suppressed +49HBZ_UBD+HA+LH2510 suppressed +49HBZ_UBD+HA LH2511 suppressed +49HBZ_UBD+HA+LH2511 suppressed +49HBZ_UBD+HA LH2512 suppressed +49HBZ_UBD+HA+LH2512 suppressed +49HBZ_UBD+HA LH2514 suppressed +49HBZ_UBD+HA+LH2514 suppressed +49HBZ_UBD+HA LH2515 suppressed +49HBZ_UBD+HA+LH2515 suppressed +49HBZ_UBD+HA LH2517 suppressed +49HBZ_UBD+HA+LH2517 suppressed +49HBZ_UBD+HA LH2518 suppressed +49HBZ_UBD+HA+LH2518 suppressed +49HBZ_UBD+HA LH2519 suppressed +49HBZ_UBD+HA+LH2519 suppressed +49HBZ_UBD+HA LH2520 suppressed +49HBZ_UBD+HA+LH2520 suppressed +49HBZ_UBD+HA LH2521 suppressed +49HBZ_UBD+HA+LH2521 suppressed +49HBZ_UBD+HA LH2522 suppressed +49HBZ_UBD+HA+LH2522 suppressed +49HBZ_UBD+HA LH2524 suppressed +49HBZ_UBD+HA+LH2524 suppressed +49HBZ_UBD+HA LH2525 suppressed +49HBZ_UBD+HA+LH2525 suppressed +49HBZ_UBD+HA+LH2526 suppressed +49HBZ_UBD+HA LH2550P suppressed +49HBZ_UBD+HA+LH2550P suppressed +49HBZ_UBD+HA LH2550 suppressed +49HBZ_UBD+HA+LH2550 suppressed +49HBZ_UBD+HA LH2551P suppressed +49HBZ_UBD+HA+LH2551P suppressed +49HBZ_UBD+HA LH2551 suppressed +49HBZ_UBD+HA+LH2551 suppressed +49HBZ_UBD+HA LH2552P suppressed +49HBZ_UBD+HA+LH2552P suppressed +49HBZ_UBD+HA LH2552 suppressed +49HBZ_UBD+HA+LH2552 suppressed +49HBZ_UBD+HA LH2553 suppressed +49HBZ_UBD+HA+LH2553 suppressed +49HBZ_UBD+HA LH2554 suppressed +49HBZ_UBD+HA+LH2554 suppressed +49HBZ_UBD+HA LH2555 suppressed +49HBZ_UBD+HA+LH2555 suppressed +49HBZ_UBD+HA LH2558 suppressed +49HBZ_UBD+HA+LH2558 suppressed +49HBZ_UBD+HA LH2559 suppressed +49HBZ_UBD+HA+LH2559 suppressed +49HBZ_UBD+HA LH2561 suppressed +49HBZ_UBD+HA+LH2561 suppressed +49HBZ_UBD+HA LH2562 suppressed +49HBZ_UBD+HA+LH2562 suppressed +49HBZ_UBD+HA LH2563 suppressed +49HBZ_UBD+HA+LH2563 suppressed +49HBZ_UBD+HA LH2564 suppressed +49HBZ_UBD+HA+LH2564 suppressed +49HBZ_UBD+HA LH2565 suppressed +49HBZ_UBD+HA+LH2565 suppressed +49HBZ_UBD+HA LH2566 suppressed +49HBZ_UBD+HA+LH2566 suppressed +49HBZ_UBD+HA LH2567 suppressed +49HBZ_UBD+HA+LH2567 suppressed +49HBZ_UBD+HA LH2568 suppressed +49HBZ_UBD+HA+LH2568 suppressed +49HBZ_UBD+HA LH2569 suppressed +49HBZ_UBD+HA+LH2569 suppressed +49HBZ_UBD+HA LH2571 suppressed +49HBZ_UBD+HA+LH2571 suppressed +49HBZ_UBD+HA LH2572 suppressed +49HBZ_UBD+HA+LH2572 suppressed +49HBZ_UBD+HA LH2573 suppressed +49HBZ_UBD+HA+LH2573 suppressed +49HBZ_UBD+HA LH2574 suppressed +49HBZ_UBD+HA+LH2574 suppressed +49HBZ_UBD+HA LH2575 suppressed +49HBZ_UBD+HA+LH2575 suppressed +49HBZ_UBD+HA+LH2576 suppressed +49HBZ_UBD+HA+LH2577 suppressed +49HBZ_UBD+HA+LH2578 suppressed +49HBZ_UBD+HA LH2600 suppressed +49HBZ_UBD+HA+LH2600 suppressed +49HBZ_UBD+HA LH2601P suppressed +49HBZ_UBD+HA+LH2601P suppressed +49HBZ_UBD+HA LH2601 suppressed +49HBZ_UBD+HA+LH2601 suppressed +49HBZ_UBD+HA LH2602P suppressed +49HBZ_UBD+HA+LH2602P suppressed +49HBZ_UBD+HA LH2603P suppressed +49HBZ_UBD+HA+LH2603P suppressed +49HBZ_UBD+HA LH2604P suppressed +49HBZ_UBD+HA+LH2604P suppressed +49HBZ_UBD+HA LH2604 suppressed +49HBZ_UBD+HA+LH2604 suppressed +49HBZ_UBD+HA LH2605 suppressed +49HBZ_UBD+HA+LH2605 suppressed +49HBZ_UBD+HA LH2606 suppressed +49HBZ_UBD+HA+LH2606 suppressed +49HBZ_UBD+HA LH2607 suppressed +49HBZ_UBD+HA+LH2607 suppressed +49HBZ_UBD+HA LH2608 suppressed +49HBZ_UBD+HA+LH2608 suppressed +49HBZ_UBD+HA LH2609 suppressed +49HBZ_UBD+HA+LH2609 suppressed +49HBZ_UBD+HA LH2610 suppressed +49HBZ_UBD+HA+LH2610 suppressed +49HBZ_UBD+HA LH2611 suppressed +49HBZ_UBD+HA+LH2611 suppressed +49HBZ_UBD+HA LH2612 suppressed +49HBZ_UBD+HA+LH2612 suppressed +49HBZ_UBD+HA LH2613 suppressed +49HBZ_UBD+HA+LH2613 suppressed +49HBZ_UBD+HA LH2614 suppressed +49HBZ_UBD+HA+LH2614 suppressed +49HBZ_UBD+HA LH2615 suppressed +49HBZ_UBD+HA+LH2615 suppressed +49HBZ_UBD+HA LH2616 suppressed +49HBZ_UBD+HA+LH2616 suppressed +49HBZ_UBD+HA LH2617 suppressed +49HBZ_UBD+HA+LH2617 suppressed +49HBZ_UBD+HA LH2618 suppressed +49HBZ_UBD+HA+LH2618 suppressed +49HBZ_UBD+HA LH2619 suppressed +49HBZ_UBD+HA+LH2619 suppressed +49HBZ_UBD+HA LH2621 suppressed +49HBZ_UBD+HA+LH2621 suppressed +49HBZ_UBD+HA LH2622 suppressed +49HBZ_UBD+HA+LH2622 suppressed +49HBZ_UBD+HA LH2623 suppressed +49HBZ_UBD+HA+LH2623 suppressed +49HBZ_UBD+HA LH2624 suppressed +49HBZ_UBD+HA+LH2624 suppressed +49HBZ_UBD+HA LH2625 suppressed +49HBZ_UBD+HA+LH2625 suppressed +49HBZ_UBD+HA LH2650 suppressed +49HBZ_UBD+HA+LH2650 suppressed +49HBZ_UBD+HA LH2651P suppressed +49HBZ_UBD+HA+LH2651P suppressed +49HBZ_UBD+HA LH2651 suppressed +49HBZ_UBD+HA+LH2651 suppressed +49HBZ_UBD+HA LH2652 suppressed +49HBZ_UBD+HA+LH2652 suppressed +49HBZ_UBD+HA LH2653 suppressed +49HBZ_UBD+HA+LH2653 suppressed +49HBZ_UBD+HA LH2655 suppressed +49HBZ_UBD+HA+LH2655 suppressed +49HBZ_UBD+HA LH2656 suppressed +49HBZ_UBD+HA+LH2656 suppressed +49HBZ_UBD+HA LH2657 suppressed +49HBZ_UBD+HA+LH2657 suppressed +49HBZ_UBD+HA LH2658 suppressed +49HBZ_UBD+HA+LH2658 suppressed +49HBZ_UBD+HA LH2659 suppressed +49HBZ_UBD+HA+LH2659 suppressed +49HBZ_UBD+HA LH2660 suppressed +49HBZ_UBD+HA+LH2660 suppressed +49HBZ_UBD+HA LH2661 suppressed +49HBZ_UBD+HA+LH2661 suppressed +49HBZ_UBD+HA LH2662 suppressed +49HBZ_UBD+HA+LH2662 suppressed +49HBZ_UBD+HA+LH2663 suppressed +49HBZ_UBD+HA+LH2664 suppressed +49HBZ_UBD+HA+LH2665 suppressed +49HBZ_UBD+HA+LH2666 suppressed +49HBZ_UBD+HA LH2700 suppressed +49HBZ_UBD+HA+LH2700 suppressed +49HBZ_UBD+HA LH2702 suppressed +49HBZ_UBD+HA+LH2702 suppressed +49HBZ_UBD+HA LH2704 suppressed +49HBZ_UBD+HA+LH2704 suppressed +49HBZ_UBD+HA LH2706P suppressed +49HBZ_UBD+HA+LH2706P suppressed +49HBZ_UBD+HA LH2707P suppressed +49HBZ_UBD+HA+LH2707P suppressed +49HBZ_UBD+HA LH2707 suppressed +49HBZ_UBD+HA+LH2707 suppressed +49HBZ_UBD+HA LH2708 suppressed +49HBZ_UBD+HA+LH2708 suppressed +49HBZ_UBD+HA LH2709P suppressed +49HBZ_UBD+HA+LH2709P suppressed +49HBZ_UBD+HA LH2709 suppressed +49HBZ_UBD+HA+LH2709 suppressed +49HBZ_UBD+HA LH2710P suppressed +49HBZ_UBD+HA+LH2710P suppressed +49HBZ_UBD+HA LH2711P suppressed +49HBZ_UBD+HA+LH2711P suppressed +49HBZ_UBD+HA LH2712 suppressed +49HBZ_UBD+HA+LH2712 suppressed +49HBZ_UBD+HA LH2713 suppressed +49HBZ_UBD+HA+LH2713 suppressed +49HBZ_UBD+HA LH2714 suppressed +49HBZ_UBD+HA LH2715 suppressed +49HBZ_UBD+HA+LH2715 suppressed +49HBZ_UBD+HA LH2716 suppressed +49HBZ_UBD+HA+LH2716 suppressed +49HBZ_UBD+HA LH2717 suppressed +49HBZ_UBD+HA+LH2717 suppressed +49HBZ_UBD+HA LH2718 suppressed +49HBZ_UBD+HA+LH2718 suppressed +49HBZ_UBD+HA LH2719 suppressed +49HBZ_UBD+HA+LH2719 suppressed +49HBZ_UBD+HA LH2720 suppressed +49HBZ_UBD+HA+LH2720 suppressed +49HBZ_UBD+HA LH2721 suppressed +49HBZ_UBD+HA+LH2721 suppressed +49HBZ_UBD+HA LH2722 suppressed +49HBZ_UBD+HA+LH2722 suppressed +49HBZ_UBD+HA LH2723 suppressed +49HBZ_UBD+HA+LH2723 suppressed +49HBZ_UBD+HA LH2724 suppressed +49HBZ_UBD+HA+LH2724 suppressed +49HBZ_UBD+HA LH2725 suppressed +49HBZ_UBD+HA LH2726 suppressed +49HBZ_UBD+HA+LH2726 suppressed +49HBZ_UBD+HA+LH2727 suppressed +49HBZ_UBD+HA+LH2728 suppressed +49HBZ_UBD+HA LH2750 suppressed +49HBZ_UBD+HA+LH2750 suppressed +49HBZ_UBD+HA LH2751 suppressed +49HBZ_UBD+HA+LH2751 suppressed +49HBZ_UBD+HA LH2753 suppressed +49HBZ_UBD+HA+LH2753 suppressed +49HBZ_UBD+HA LH2754 suppressed +49HBZ_UBD+HA+LH2754 suppressed +49HBZ_UBD+HA LH2755 suppressed +49HBZ_UBD+HA+LH2755 suppressed +49HBZ_UBD+HA LH2757 suppressed +49HBZ_UBD+HA+LH2757 suppressed +49HBZ_UBD+HA LH2758 suppressed +49HBZ_UBD+HA+LH2758 suppressed +49HBZ_UBD+HA LH2760 suppressed +49HBZ_UBD+HA+LH2760 suppressed +49HBZ_UBD+HA+LH2761 suppressed +49HBZ_UBD+HA+LH2762 suppressed +49HBZ_UBD+HA+LH2763 suppressed +49HBZ_UBD+HA+LH2764 suppressed +49HBZ_UBD+HA LH2850 suppressed +49HBZ_UBD+HA+LH2850 suppressed +49HBZ_UBD+HA LH2851 suppressed +49HBZ_UBD+HA+LH2851 suppressed +49HBZ_UBD+HA LH2852 suppressed +49HBZ_UBD+HA+LH2852 suppressed +49HBZ_UBD+HA+LH2853 suppressed +49HBZ_UBD+HA+LH2854 suppressed +49HBZ_UBD+HA+LH2855 suppressed +49HBZ_UBD+HA PR_nwiss suppressed +49HBZ_UBD+HA+PR_nwiss suppressed +49HBZ_UBD+HA Ref_Int suppressed +49HBZ_UBD+HA+Ref_Int suppressed +49HBZ_UBD+HA TU-Verw suppressed +49HBZ_UBD+HA+TU-Verw suppressed +49HBZ_UBD+HA ZfW300 suppressed +49HBZ_UBD+HA+ZfW300 suppressed +49HBZ_UBD+HA ZfW400 suppressed +49HBZ_UBD+HA+ZfW400 suppressed +49HBZ_UBD+HA ZHB_FS suppressed +49HBZ_UBD+HA+ZHB_FS suppressed +49HBZ_UBD+HA ZHB_HD suppressed +49HBZ_UBD+HA+ZHB_HD suppressed +49HBZ_UBD+HA ZHB_HF suppressed +49HBZ_UBD+HA+ZHB_HF suppressed +49HBZ_UBD+HA ZHB_SB suppressed +49HBZ_UBD+HA+ZHB_SB suppressed +49HBZ_UBD+RES_SHARE IN_RS_REQ suppressed +49HBZ_UBD+RES_SHARE OUT_RS_REQ suppressed +49HBZ_UBD+S7+Bde-in-Erw suppressed +49HBZ_UBD+S7 SchliessF suppressed +49HBZ_UBD+S7+Verm-Auss suppressed +49HBZ_UBD+SM+Bde-in-Erw suppressed +49HBZ_UBD+ZB Verm-Auss suppressed +49HBZ_UBD+ZB+Verm-Auss suppressed +49HBZ_UBT+T0011+LÖSCH suppressed +49HBZ_UBT+T0011+VERBRAUCH suppressed +49HBZ_UBT+TF011+LÖSCH suppressed +49HBZ_UDE+D0001+DHS suppressed +49HBZ_UDE+D0001+DMF suppressed +49HBZ_UDE+D0001+DNP suppressed +49HBZ_UDE+D0001+DPR suppressed +49HBZ_UDE+D0001+DVW suppressed +49HBZ_UDE+DBB suppressed +49HBZ_UDE+DES suppressed +49HBZ_UDE+DPA suppressed +49HBZ_UDE+E0001+EHS suppressed +49HBZ_UDE+E0001+EMF suppressed +49HBZ_UDE+E0001+ENP suppressed +49HBZ_UDE+E0001+EPR suppressed +49HBZ_UDE+E0001+EPT suppressed +49HBZ_UDE+E0001+EVW suppressed +49HBZ_UDE+E0023+MHS suppressed +49HBZ_UDE+E0023+MMF suppressed +49HBZ_UDE+E0023+MNP suppressed +49HBZ_UDE+E0023+MPR suppressed +49HBZ_UDE+EBB suppressed +49HBZ_UDE+EES suppressed +49HBZ_UDE+EPA suppressed +49HBZ_UDE+MHA suppressed +49HBZ_UDE+RES_SHARE+FL_LS_KV suppressed +49HBZ_UDE+RES_SHARE+FL_LS_SF suppressed +49HBZ_UDE+RES_SHARE+OUT_RS_LS suppressed +49HBZ_UDE+RES_SHARE+OUT_RS_REQ suppressed +49HBZ_UKO+RL001+UNASSIGNED suppressed +49HBZ_UKO+RL001+XAUSG suppressed +49HBZ_ULB+0+0-DLS suppressed +49HBZ_ULB+0+0-Mak suppressed +49HBZ_ULB+1+1-DLS suppressed +49HBZ_ULB+1+1-MZ suppressed +49HBZ_ULB+1EX98+1EX98-DEL suppressed +49HBZ_ULB+B059+B059-Zeit suppressed +49HBZ_ULB+B102+B102-Zeit suppressed +49HBZ_ULB+B127+B127-Zeit suppressed +49HBZ_ULB+B170+B170-Zeit suppressed +49HBZ_ULB+B206+B206-Zeit suppressed +49HBZ_ULB+B405+B405-LS suppressed +49HBZ_ULB+B405+B405-Mag suppressed +49HBZ_ULB+B412+B412-Zeit suppressed +49HBZ_ULB+RES_SHARE+0-ILL suppressed +49HBZ_ULB+RES_SHARE1+1-ILL suppressed +49HBZ_ULB+RES_SHARE1+RS1-PFL suppressed +49HBZ_ULB+RES_SHARE+OUT_RS_REQ suppressed +49HBZ_ULB+SG+SG-Loesch suppressed +49HBZ_ULB+XD+XD-Zeit suppressed +49HBZ_ULB+XS+XS-Zeit suppressed +49HBZ_ULM+AEKO_AUSGE suppressed +49HBZ_ULM+ALKU+ALKU_AUSGE suppressed +49HBZ_ULM+AORI_AUSGE suppressed +49HBZ_ULM+APHY+APHY_AUSGE suppressed +49HBZ_ULM+ARAB+ARAB_AUSGE suppressed +49HBZ_ULM+ARCH+ARCH_AUSGE suppressed +49HBZ_ULM+BEK+BEK_AUSGE suppressed +49HBZ_ULM+BEK+BEK_SFS suppressed +49HBZ_ULM+BYNE_AUSGE suppressed +49HBZ_ULM+CASE_AUSGE suppressed +49HBZ_ULM+CHEM+CHEM_AUSGE suppressed +49HBZ_ULM+CRZI+CRZI_AUSGE suppressed +49HBZ_ULM+DBIO+DBIO_AUSGE suppressed +49HBZ_ULM+DMAT_AUSGE suppressed +49HBZ_ULM+DSAC_AUSGE suppressed +49HBZ_ULM+EHRE+EHRE_AUSGE suppressed +49HBZ_ULM+ENGL+ENGL_AUSGE suppressed +49HBZ_ULM+ENGL+ENGL_BDNG suppressed +49HBZ_ULM+ETHN_AUSGE suppressed +49HBZ_ULM+EVT+EVT_AUSGE suppressed +49HBZ_ULM+FBH+FBH_AUSGE suppressed +49HBZ_ULM+FID+FID_AUSGE suppressed +49HBZ_ULM+GEOB+GEOB_AUSGE suppressed +49HBZ_ULM+GEOW+GEOW_AUSGE suppressed +49HBZ_ULM+GERM+GERM_AUSGE suppressed +49HBZ_ULM+GPHY_AUSGE suppressed +49HBZ_ULM+GRIE+GRIE_AUSGE suppressed +49HBZ_ULM+HLS+HLS_AUSGE suppressed +49HBZ_ULM+HMB+HMB_AUSGE suppressed +49HBZ_ULM+IJD+IJD_AUSGE suppressed +49HBZ_ULM+INTF+INTF_AUSGE suppressed +49HBZ_ULM+ISTG+ISTG_AUSGE suppressed +49HBZ_ULM+ITM+ITM_AUSGE suppressed +49HBZ_ULM+JUED_AUSGE suppressed +49HBZ_ULM+KATD+KATD_AUSGE suppressed +49HBZ_ULM+KATH+KATH_AUSGE suppressed +49HBZ_ULM+KATJ+KATJ_AUSGE suppressed +49HBZ_ULM+KULT_AUSGE suppressed +49HBZ_ULM+KWI+KWI_AUSGE suppressed +49HBZ_ULM+LAT+LAT_AUSGE suppressed +49HBZ_ULM+LEIB_AUSGE suppressed +49HBZ_ULM+MATH+MATH_AUSGE suppressed +49HBZ_ULM+MED+MED_AUSGE suppressed +49HBZ_ULM+MED+MED_BDINGT suppressed +49HBZ_ULM+MED+MED_EASYS suppressed +49HBZ_ULM+MED+MED_LSSFS suppressed +49HBZ_ULM+MED+MED_TABL suppressed +49HBZ_ULM+MEGT_AUSGE suppressed +49HBZ_ULM+MUHO+MUHO_AUSGE suppressed +49HBZ_ULM+MUNA_AUSGE suppressed +49HBZ_ULM+MUPA+MUPA_AUSGE suppressed +49HBZ_ULM+MUWI+MUWI_AUSGE suppressed +49HBZ_ULM+NIED+NIED_AUSGE suppressed +49HBZ_ULM+NORD+NORD_AUSGE suppressed +49HBZ_ULM+PHAR_AUSGE suppressed +49HBZ_ULM+PHIL+PHIL_AUSGE suppressed +49HBZ_ULM+PHY_AUSGE suppressed +49HBZ_ULM+PSY+PSY_AUSGE suppressed +49HBZ_ULM+RAUM_AUSGE suppressed +49HBZ_ULM+RHB+RHB_AUSGE suppressed +49HBZ_ULM+ROSL+ROSL_AUSGE suppressed +49HBZ_ULM+RWS1+RWS1_AUSGE suppressed +49HBZ_ULM+RWS1+RWS1_SFS suppressed +49HBZ_ULM+RWS2+RWS2_AUSGE suppressed +49HBZ_ULM+SINO+SINO_AUSGE suppressed +49HBZ_ULM+SOZ+SOZ_AUSGE suppressed +49HBZ_ULM+SOZ+SOZ_LSSFS suppressed +49HBZ_ULM+SPOR+SPOR_AUSGE suppressed +49HBZ_ULM+SPRA_AUSGE suppressed +49HBZ_ULM+TPHY_AUSGE suppressed +49HBZ_ULM+WINF+WINF_AUSGE suppressed +49HBZ_ULM+WIWI+WIWI_AUSGE suppressed +49HBZ_ULM+WIWI+WIWI_SFS suppressed +49HBZ_ULM+ZB+ZB_AUSGE suppressed +49HBZ_ULM+ZB+ZB_LBMAUS suppressed +49HBZ_ULM+ZB+ZB_LSSFS suppressed +49HBZ_ULM+ZB+ZB_TAGAL suppressed +49HBZ_ULM+ZB+ZB_ZUGKT suppressed +49HBZ_ULM+ZRB+ZRB_AUSGE suppressed +49HBZ_ULM+ZYPE_AUSGE suppressed +49HBZ_WBT+T0010+UNASSIGNED suppressed +49HBZ_WHS+BOH+28 suppressed +49HBZ_WHS+FB suppressed +49HBZ_WHS+GE+08 suppressed +49HBZ_WHS+GE+NBB suppressed +49HBZ_WHS+RE+38 suppressed +49HBZ_WHS+RE+NBB suppressed +49HBZ_WHS+VB suppressed +49HBZ_ZBM+RES_SHARE+OUT_RS_REQ suppressed +49HBZ_ZBS+KP001+I6MO suppressed diff --git a/conf/hebisMarc2lobid-transformation/maps/hbzId2zdbId.tsv.gz b/conf/hebisMarc2lobid-transformation/maps/hbzId2zdbId.tsv.gz new file mode 100644 index 0000000..da96f40 Binary files /dev/null and b/conf/hebisMarc2lobid-transformation/maps/hbzId2zdbId.tsv.gz differ diff --git a/conf/hebisMarc2lobid-transformation/maps/hbzowner2sigel.tsv b/conf/hebisMarc2lobid-transformation/maps/hbzowner2sigel.tsv new file mode 100644 index 0000000..1782da1 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/hbzowner2sigel.tsv @@ -0,0 +1,929 @@ +hsg_owner hsg_adm hsg_sigil hsg_kurzbenennung hsg_bibliothek hsg_geloescht hsg_id +BR001 BDR50 Bm 3 BO: Bibl. Ruhrgebiet Bibliothek des Ruhrgebiets, Bochum NULL 3001 +BR002 BDR50 Bm 3/2 BO: Bibl. Ruhrgebiet Bibliothek des Ruhrgebiets, Bochum (frü her: Bibliothek zur Geschichte der Arbeiterbewegung, Bochum; Bm 41) NULL 3002 +BR003 BDR50 Bm 3/3 BO: Bibl. Ruhrgebiet Bibliothek des Ruhrgebiets, Bochum (frü her: Bergbau-Bücherei, Essen; E 1) NULL 3003 +BR004 BDR50 Bm 3/4 BO: Bibl. Ruhrgebiet Bibliothek des Ruhrgebiets, Bochum, Dokumentationsstelle Ruhrgebiet NULL 3004 +X0001 DUE50 61 D: ULB Universitäts- und Landesbibliothek Düsseldorf NULL 3005 +X0008 DUE50 61/08 D: Zentralbibl./Lehrb. Universitäts- und Landesbibliothek Düsseldorf / Lehrbuchsammlung NULL 3006 +X0022 DUE50 61/22 D: FA Sportwiss. Universitäts- und Landesbibliothek Düsseldorf / Fachapparat Sportwissenschaft NULL 3007 +X0025 DUE50 61/25 D: FB Philosophie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Philosophie NULL 3008 +X0026 DUE50 61/26 D: FB Erziehungswiss Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Erziehungswissenschaft NULL 3009 +X0027 DUE50 61/27 D: FA Kunstgeschichte Universitäts- und Landesbibliothek Düsseldorf / Fachapparat Kunstgeschichte NULL 3010 +X0028 DUE50 61/28 D: FB Geschichte Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Geschichte NULL 3011 +X0029 DUE50 61/29 D: FB Klass. Philologie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Klassische Philologie NULL 3012 +X0030 DUE50 61/30 D: FB Germanistik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Germanistik NULL 3013 +X0031 DUE50 61/31 D: FB Anglistik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Anglistik NULL 3014 +X0032 DUE50 61/32 D: FB Romanistik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Romanistik NULL 3015 +X0033 DUE50 61/33 D: FB Sozialwiss. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Sozialwissenschaften NULL 3016 +X0035 DUE50 61/35 D: FB Ostasienwissensch. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Ostasienwissenschaften NULL 3017 +X0036 DUE50 61/36 D: FB Jiddistik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Jiddistik NULL 3018 +X0037 DUE50 61/37 D: FB Medienwiss. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Medienwissenschaft NULL 3019 +X0041 DUE50 61/41 D: FB Biologie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Biologie NULL 3020 +X0042 DUE50 61/42 D: FB Chemie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Chemie NULL 3021 +X0043 DUE50 61/43 D: FB Pharmazie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Pharmazie NULL 3022 +X0044 DUE50 61/44 D: FB Physik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Physik NULL 3023 +X0045 DUE50 61/45 D: FB Mathematik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Mathematik NULL 3024 +X0046 DUE50 61/46 D: FB Geowissenschaften Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Geowissenschaften NULL 3025 +X0048 DUE50 61/48 D: FB Informatik Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Informatik NULL 3026 +X0051 DUE50 61/51 D: FB Medizin (O.A.S.E) Universitäts- und Landesbibliothek Düsseldorf / Medizinische Abteilung NULL 3027 +X0053 DUE50 61/53 D: Medizinische Inst. Universitäts- und Landesbibliothek Düsseldorf / Medizinische Institute und Kliniken NULL 3028 +X0054 DUE50 61/54 D: FB Psychologie Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Psychologie NULL 3029 +X0055 DUE50 61/55 D: HA Medizingesch. Universitäts- und Landesbibliothek Düsseldorf / Medizinhistorischer Handapparat im Institut für Geschichte der Medizin NULL 3030 +X0056 DUE50 61/56 D: FB Theoret. Medizin Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Theoretische Medizin NULL 3031 +X0057 DUE50 61/57 D: HA Inst. Med. Stat. Universitäts- und Landesbibliothek Düsseldorf / Handapparat im Institut für Statistik in der Medizin NULL 3032 +X0058 DUE50 61/58 D: Medizin/Lehrb. Universitäts- und Landesbibliothek Düsseldorf / Medizinische Abteilung / Lehrbuchsammlung NULL 3033 +X0072 DUE50 61/72 D: Inst. Dienstleist. Universitäts- und Landesbibliothek Düsseldorf / Düsseldorfer Institut für Dienstleistungsmanagement NULL 3034 +X0081 DUE50 61/81 D: FB Jura Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Rechtswissenschaft NULL 3035 +X0082 DUE50 61/82 D: FB Jura/Sonderstand. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Rechtswissenschaft / Institut für Rechtsfragen der Medizin NULL 3036 +X0083 DUE50 61/83 D: Gewerbl. Rechtss. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Rechtswissenschaft / Sonderstandort Zentrum für gewerblichen Rechtsschutz (ZGR) NULL 3037 +X0088 DUE50 61/88 D: FB Jura/Lehrbuchslg. Universitäts- und Landesbibliothek Düsseldorf / Fachbibliothek Rechtswissenschaft / Lehrbuchsammlung NULL 3038 +X0090 DUE50 61/90 D: Aussenmagazin Universitäts- und Landesbibliothek Düsseldorf / Außenmagazin NULL 3039 +X0091 DUE50 61/91 D: Verkauf/Lehrbuchslg. 61/91 ULB Dü sseldorf: Verkauf/Lehrbuchsammlung NULL 3040 +X0093 DUE50 61/93 D: Aussenmag. Mauerstr. 61/93 ULB Dü sseldorf: Aussenmagazin Mauerstraße NULL 3041 +ED001 EDK50 Kn 28 K: Erzb. Diöz.- u. DomB Erzbischöfliche Diözesan- und Dombibliothek, Köln NULL 3042 +O9022 EDK50 Walb 1 Bornheim: B St.Albert Bibliothek St. Albert Walberberg, Bornheim/Rheinland NULL 3043 +D0001 EDU50 464 DU: UB Universitätsbibliothek Duisburg-Essen, Campus Duisburg NULL 3044 +E0001 EDU50 465 E: UB Universitätsbibliothek Duisburg-Essen, Campus Essen NULL 3045 +E0023 EDU50 465 M E: UB,FB Medizin Universitätsbibliothek Duisburg-Essen, Fachbibliothek Medizin NULL 3067 +E0030 EDU50 465/KWI E: KWI Universitätsbibliothek Duisburg- Essen: Kulturwissenschaftliches Institut NULL 3074 +F0001 FUH50 708 HA: UB Fernuniversität Universitätsbibliothek der FernUniversität in Hagen NULL 3076 +A0001 HBZ60 82 AC: Aachen RWTH UB Universitätsbibliothek der RWTH Aachen NULL 3077 +A2001 HBZ60 82/701 AC: Anatomie Institut für Anatomie der RWTH Aachen NULL 3078 +A2002 HBZ60 82/702 AC: Physiologie Institut für Physiologie der RWTH Aachen NULL 3079 +A2003 HBZ60 82/703 AC: Biochemie Institut für Biochemie der RWTH Aachen NULL 3080 +A2004 HBZ60 82/704 AC: Med. Mikrobiologie Medizinische Mikrobiologie, Bibliothek NULL 3081 +A2005 HBZ60 82/705 AC: Pharmakologie Institut für Pharmakologie der RWTH Aachen NULL 3082 +A2006 HBZ60 82/706 AC: Apotheke Apotheke der Medizinischen Fakultät der RWTH Aachen NULL 3083 +A2007 HBZ60 82/707 AC: GTE der Medizin Geschichte, Theorie und Ethik der Medizin, RWTH Aachen NULL 3084 +A2009 HBZ60 82/709 AC: Hygiene/Umweltmed. Institut für Hygiene und Umweltmedizin der RWTH Aachen NULL 3086 +A2010 HBZ60 82/710 AC: Med. Informatik Medizinische Informatik, Bibliothek NULL 3087 +A2011 HBZ60 82/711 AC: Med. Psychologie Institut für Medizinische Psychologie der RWTH Aachen NULL 3088 +A2012 HBZ60 82/712 AC: Sportmedizin Institut für Sportmedizin der RWTH Aachen NULL 3089 +A2013 HBZ60 82/713 AC: Verwaltung Klinikum Verwaltung der Medizinischen Einrichtungen der RWTH Aachen NULL 3090 +A2014 HBZ60 82/714 AC: Kinderkardiologie Klinik für Kinderkardiologie der RWTH Aachen NULL 3091 +A2015 HBZ60 82/715 AC: Kinderpsychiatrie Klinik für Kinder- und Jugendpsychiatrie und Psychotherapie der RWTH Aachen NULL 3092 +A2016 HBZ60 82/724 AC: Neurochirurgie Neurochirurgische Klinik der RWTH Aachen NULL 3093 +A2017 HBZ60 82/725 AC: Med. Klinik I Medizinische Klinik I, RWTH Aachen NULL 3094 +A2018 HBZ60 82/726 AC: Med. Klinik II Medizinische Klinik II, RWTH Aachen NULL 3095 +A2019 HBZ60 82/727 AC: Dermatologie Klinik für Dermatologie (Hautklinik) der RWTH Aachen NULL 3096 +A2020 HBZ60 82/728 AC: Chirurgie Chirurgische Klinik der RWTH Aachen NULL 3097 +A2021 HBZ60 82/729 AC: Urologie Urologische Klinik der RWTH Aachen NULL 3098 +A2022 HBZ60 82/730 AC: Orthopädie Orthopädische Klinik der RWTH Aachen NULL 3099 +A2023 HBZ60 82/731 AC: Gynäkolog./Geburtsh Klinik für Gynäkologie und Geburtshilfe der RWTH Aachen NULL 3100 +A2024 HBZ60 82/732 AC: Kinderheilkunde Klinik für Kinderheilkunde der RWTH Aachen NULL 3101 +A2025 HBZ60 82/733 AC: Neuropathologie Institut für Neuropathologie der RWTH Aachen NULL 3102 +A2026 HBZ60 82/734 AC: Neurologie Neurologische Klinik der RWTH Aachen NULL 3103 +A2027 HBZ60 82/735 AC: HNO-Heilkunde Klinik für Hals-, Nasen- und Ohrenheilkunde und Plastische Kopf- und Halschirurgie der RWTH Aachen NULL 3104 +A2028 HBZ60 82/736 AC: Augenheilkunde Klinik für Augenheilkunde der RWTH Aachen NULL 3105 +A2029 HBZ60 82/737 AC: Radiolog.Diagnostik Klinik für Radiologische Diagnostik der RWTH Aachen NULL 3106 +A2030 HBZ60 82/738 AC: Pathologie Institut für Pathologie der RWTH Aachen NULL 3107 +A2031 HBZ60 82/739 AC: Zahnchirurgie Klinik für Zahn-, Mund-, Kiefer- und Plastische Gesichtschirurgie der RWTH Aachen NULL 3108 +A2032 HBZ60 82/740 AC: Anästhesiologie Klinik für Anästhesiologie der RWTH Aachen NULL 3109 +A2033 HBZ60 82/741 AC: Biomediz. Technik Helmholtz-Institut, Lehrstuhl für Biomedizinische Technik der RWTH Aachen NULL 3110 +A2034 HBZ60 82/742 AC: Klinische Chemie Institut für klinische Chemie und Pathobiochemie der RWTH Aachen NULL 3111 +A2035 HBZ60 82/743 AC: Thoraxchirurgie Klinik für Thorax-, Herz-, Gefäßchirurgie der RWTH Aachen NULL 3112 +A2036 HBZ60 82/744 AC: Psychiatrie Klinik für Psychiatrie der RWTH Aachen NULL 3113 +A2037 HBZ60 82/745 AC: Logopädie Lehranstalt für Logopädie der RWTH Aachen NULL 3114 +A2038 HBZ60 82/746 AC: Transfusionsmedizin Institut für Transfusionsmedizin der RWTH Aachen NULL 3115 +A2040 HBZ60 82/748 AC: GKK-Schule Schule für Gesundheits-, Kinderkrankenpflege und Krankenpflege der RWTH Aachen NULL 3117 +A2041 HBZ60 82/749 AC: Versuchstierkunde Institut für Versuchstierkunde und Zentrallaboratorium für Versuchstiere der RWTH Aachen NULL 3118 +A2042 HBZ60 82/750 AC: Lehranstalt f. MTA Lehranstalt für Medizinisch-technische Labor-Assistent(inn)en der RWTH Aachen NULL 3119 +A2043 HBZ60 82/751 AC: Physiotherapie Zentralbereich für Physiotherapie der RWTH Aachen NULL 3120 +A2044 HBZ60 82/752 AC: Betriebskindertages Betriebs-Kindertagesstätte der RWTH Aachen NULL 3121 +A2045 HBZ60 82/753 AC: Tumorzentrum Tumorzentrum Aachen e.V. der RWTH Aachen NULL 3122 +A2046 HBZ60 82/754 AC: Strahlentherapie Klinik für Strahlentherapie der RWTH Aachen NULL 3123 +A2047 HBZ60 82/755 AC: Lehranst.Krankengym Lehranstalt für Physiotherapie der RWTH Aachen NULL 3124 +A2048 HBZ60 82/756 AC: Med. Klinik III Klinik für Innere Medizin III der RWTH Aachen NULL 3125 +A2049 HBZ60 82/757 AC: Wiss. Personalrat Personalrat der Wissenschaftlichen Mitarbeiter und Ärzte, Medizinische Einrichtungen der RWTH Aachen NULL 3126 +A2050 HBZ60 82/758 AC: Nuklearmedizin Klinik für Nuklearmedizin der RWTH Aachen NULL 3127 +A2051 HBZ60 82/759 AC: Nichtwiss.Personalr Nichtwissenschaftlicher Personalrat, Medizinische Einrichtungen der RWTH Aachen NULL 3128 +A2052 HBZ60 82/760 AC: Betriebsinformation Zentralbereich für Betriebsinformation und -steuerung der RWTH Aachen NULL 3129 +A2053 HBZ60 82/761 AC: Plastische Chir. Klinik für Plastische Chirurgie, Hand- und Verbrennungschirurgie der RWTH Aachen NULL 3130 +A2054 HBZ60 82/762 AC: Allgemeinmedizin Institut für Allgemeinmedizin der RWTH Aachen NULL 3131 +A2055 HBZ60 82/763 AC: Krankenhaushygiene Zentralbereich für Krankenhaushygiene der RWTH Aachen NULL 3132 +A2056 HBZ60 82/764 AC: Med. Klinik IV Medizinische Klinik IV, RWTH Aachen NULL 3133 +A2057 HBZ60 82/765 AC: Psychosomatik/Ther. Klinik für Psychosomatik und Psychotherapie der RWTH Aachen NULL 3134 +A2058 HBZ60 82/766 AC: Neuroradiologie Klinik für Neuroradiologie der RWTH Aachen NULL 3135 +A2059 HBZ60 82/767 AC: Unfallchirurgie Klinik für Unfallchirurgie der RWTH Aachen NULL 3136 +A2060 HBZ60 82/768 AC: Orthop. Rehab. Klinik für Orthopädische Rehabilitation der RWTH Aachen NULL 3137 +A2061 HBZ60 82/769 AC: Arbeitsmedizin Institut für Arbeitsmedizin der RWTH Aachen NULL 3138 +A2062 HBZ60 82/770 AC: Rehabilitation/Präv Institut für Rehabilitation und Prävention im ZNS der RWTH Aachen NULL 3139 +A2063 HBZ60 82/771 AC: Biomaterialien Interdisziplinärer Klinischer Forschungsbereich Biomaterialien der RWTH Aachen NULL 3140 +A2064 HBZ60 82/781 AC: Pflegedirektion Pflegedirektion, Bibliothek NULL 3141 +A2066 HBZ60 82/783 AC: Neuropsychologie Lehr- und Forschungsgebiet Neuropsychologie der RWTH Aachen NULL 3143 +A2067 HBZ60 82/716 AC: Med. Statistik Rheinisch-Westfälische TH, Medizinische Statistik, Bibliothek NULL 3144 +A2068 HBZ60 82/717 AC: Humangenetik Institut für Humangenetik der RWTH Aachen NULL 3145 +A2069 HBZ60 82/718 AC: Dekanat Med. Fak. Dekanat der Medizinischen Fakultät der RWTH Aachen NULL 3146 +A2071 HBZ60 82/735 a AC: Phoniatrie Institut für Phoniatrie und Pädaudiologie der RWTH Aachen NULL 3147 +A2072 HBZ60 82/739 a AC: Zahnärztl.Prothetik Klinik für Zahnärztliche Prothetik der RWTH Aachen NULL 3148 +A2073 HBZ60 82/739 b AC: Zahnerhaltung Klinik für Zahnerhaltung, Parodontologie und Präventive Zahnheilkunde, Klinik für Zahnärztliche Prothetik der RWTH Aachen: Gemeinsame Bibliothek NULL 3149 +A2074 HBZ60 82/739 c AC: Kieferorthopädie Klinik für Kieferorthopädie der RWTH Aachen NULL 3150 +A2077 HBZ60 82/704 a AC: Mediz. Immunologie Institut für Medizinische Immunologie der RWTH Aachen NULL 3153 +A2078 HBZ60 82/719 AC: IT-Direktion IT-Direktion der RWTH Aachen NULL 3154 +A2079 HBZ60 82/720 AC: Flugmedizin Flugmedizin, Bibliothek NULL 3155 +A2080 HBZ60 82/721 AC: Palliativmedizin Palliativmedizin, Bibliothek NULL 3156 +A2081 HBZ60 82/722 AC: Kinderintensivmed. Neugeborenen- und Konservative Kinderintensivmedizin der RWTH Aachen NULL 3157 +A2082 HBZ60 82/723 AC: Intermediate Care Interdisziplinäre Intermediate Care, RWTH Aachen NULL 3158 +A2083 HBZ60 82/780 AC: Oper. Intensivmed. Operative Intensivmedizin Erwachsene (Operat. Intensivmed. Erw.), RWTH Aachen NULL 3159 +A2085 HBZ60 82/785 AC: Gefäßchirurgie Klinik für Gefäßchirurgie, RWTH Aachen NULL 3161 +A2086 HBZ60 82/774 AC: Notaufnahme Notaufnahme, Bibliothek der RWTH Aachen NULL 3162 +A2087 HBZ60 82/772 AC: Molekularbiologie Institut für Kardiovaskuläre Molekularbiologie der RWTH Aachen NULL 3163 +A2088 HBZ60 82/773 AC: Gliedmaßenrekonstr. Zentrum für Gliedmaßenrekonstruktion u. Gliedmaßenverlängerung der RWTH Aachen NULL 3164 +A2089 HBZ60 82/775 AC: Neuroanatomie Institut für Neuroanatomie der RWTH Aachen NULL 3165 +A2091 HBZ60 82/777 AC: Kinderherzchirurgie Kinderherzchirurgie, Bibliothek der RWTH Aachen NULL 3167 +A2092 HBZ60 82/778 AC: BTH IBMT-ZMG Lehr- und Forschungsgebiet Zell- und Molekularbiologie an Grenzflächen der RWTH Aachen NULL 3168 +A2093 HBZ60 82/779 AC: AIXTRA AIXTRA - Aachener Interdisziplinäres Trainingszentrum für Medizinische Ausbildung NULL 3169 +A2094 HBZ60 82/715a AC: Kinderpsych./Stolb. Klinik für Kinder- und Jugendpsychiatrie und –psychotherapie, Abt. Bethlehem-Krankenhaus NULL 3170 +A2095 HBZ60 82/786 AC: Molekulare Medizin Institut für Molekulare Medizin, Bibliothek NULL 3171 +A2096 HBZ60 82/787 AC: Comput. Biomed. I Institut für Computational Biomedicine I, Bibliothek NULL 3172 +A2097 HBZ60 82/788 AC: ECCA Euregionales comprehensive Cancer Center Aachen, Bibliothek NULL 3173 +A2098 HBZ60 82/789 AC: Altersmedizin Lehrstuhl für Altersmedizin der RWTH Aachen NULL 3174 +A2099 HBZ60 82/790 AC: Computat. Genomics Institute for Computational Genomics, Bibliothek NULL 3175 +A3001 HBZ60 82/001 AC: Rechenzentrum Rechen- und Kommunikationszentrum, Bibliothek NULL 3176 +A3002 HBZ60 82/002 AC: ZLW Zentrum für Lern- und Wissensmanagement, Bibliothek NULL 3177 +A3003 HBZ60 82/003 AC: Elektronenmikrosk. Gemeinschaftslabor für Elektronenmikroskopie, Bibliothek NULL 3178 +A3004 HBZ60 82/004 AC: Hochschularchiv Hochschularchiv (Abt. des Historischen Instituts) NULL 3179 +A3005 HBZ60 82/005 AC: Wollforschung DWI - Deutsches Wollforschungsinstitut e.V. an der RWTH Aachen NULL 3180 +A3006 HBZ60 82/101 AC: GMB Gemeinsame Mathematische Bibliothek NULL 3181 +A3007 HBZ60 82/102 AC: Statistik/Wirts.Mat Lehrstuhl für Statistik und Institut für Statistik und Wirtschaftsmathematik der RWTH Aachen NULL 3182 +A3008 HBZ60 82/103 AC: Informatik Bibliothek der Fachgruppe Informatik der RWTH Aachen NULL 3183 +A3012 HBZ60 82/107 AC: Allg. Mechanik Lehrstuhl und Institut für Allgemeine Mechanik der RWTH Aachen NULL 3187 +A3013 HBZ60 82/108 AC: Techn. Verbrennung Institut für Technische Verbrennung der RWTH Aachen NULL 3188 +A3014 HBZ60 82/109 AC: LFG Mechanik Lehr- und Forschungsgebiet Mechanik der RWTH Aachen NULL 3189 +A3015 HBZ60 82/110 AC: Physik Physik-Bibliothek NULL 3190 +A3020 HBZ60 82/119 AC: Chemie Chemie-Bibliothek NULL 3195 +A3023 HBZ60 82/127 AC: Biologie I Lehrstuhl für Biotechnologie, Bibliothek NULL 3198 +A3024 HBZ60 82/128 AC: Biologie II Lehrstuhl und Institut für Biologie II (Zoologie) der RWTH Aachen NULL 3199 +A3031 HBZ60 82/201 AC: Tragkonstruktionen Lehrstuhl für Tragkonstruktionen der RWTH Aachen NULL 3206 +A3032 HBZ60 82/202 AC: Koop. Bibl. Kooperierende Lehrstühle für Planung: Lehrstühle für Planungstheorie, für Stadtbereichsplanung, für Städtebau, für Wohnbau, Bibliothek NULL 3207 +A3033 HBZ60 82/203 AC: Baukonstruktion II Lehrstuhl für Baukonstruktion II der RWTH Aachen NULL 3208 +A3034 HBZ60 82/204 AC: Entwerfen Lehrstuhl für Gebäudelehre und Grundlagen des Entwerfens und Lehrgebiet Bauplanung und Entwerfen der RWTH Aachen, Gemeinsame Bibliothek NULL 3209 +A3035 HBZ60 82/205 AC: Baukonstruktion III Lehrstuhl für Baukonstruktion III der RWTH Aachen NULL 3210 +A3036 HBZ60 82/207 AC: Bau- u. Raumgest. Lehr- und Forschungsgebiet Bau- und Raumgestaltung der RWTH Aachen NULL 3211 +A3037 HBZ60 82/208 AC: Landschaftsarchit. Lehrstuhl für Landschaftsarchitektur der RWTH Aachen NULL 3212 +A3038 HBZ60 82/209 AC: Bildner. Gestaltung Lehrstuhl für Bildnerische Gestaltung der RWTH Aachen NULL 3213 +A3040 HBZ60 82/211 AC: Kunstgeschichte Lehrstuhl und Institut für Kunstgeschichte der RWTH Aachen NULL 3215 +A3041 HBZ60 82/212 AC: Arch.geschichte Lehrstuhl für Architekturgeschichte, Bibliothek Arch.geschichte NULL 3216 +A3042 HBZ60 82/213 AC: Bauforschung Institut für Bauforschung der RWTH Aachen (= A 31) NULL 3217 +A3044 HBZ60 82/215 AC: Baumaschinen Institut für Baumaschinen und Baubetrieb der RWTH Aachen NULL 3219 +A3045 HBZ60 82/216 AC: Baustatik/Massivbau Lehrstuhl für Baustatik und Baudynamik der RWTH Aachen: Bibliothek NULL 3220 +A3046 HBZ60 82/217 AC: Stahlbau Lehrstuhl für Stahlbau der RWTH Aachen NULL 3221 +A3047 HBZ60 82/218 AC: Verkehrswiss. Lehrstuhl für Schienenbahnwesen und Verkehrswirtschaft und Verkehrswissenschaftliches Institut der RWTH Aachen NULL 3222 +A3048 HBZ60 82/219 AC: Stadtbauwesen Institut für Stadtbauwesen und Stadtverkehr, Bibliothek NULL 3223 +A3049 HBZ60 82/220 AC: Straßenwesen Institut für Straßenwesen der RWTH Aachen NULL 3224 +A3050 HBZ60 82/221 AC: GeotGrundBoden Institut für Grundbau, Bodenmechanik, Felsmechanik und Verkehrswasserbau der RWTH Aachen, Bibliothek NULL 3225 +A3051 HBZ60 82/222 AC: Wasserbau Institut für Wasserbau und Wasserwirtschaft der RWTH Aachen NULL 3226 +A3052 HBZ60 82/223 AC: Siedlungswasserwirt Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft der RWTH Aachen (= A 34b) NULL 3227 +A3053 HBZ60 82/224 AC: Geodäsie Lehrstuhl für Geodäsie und Geodätisches Institut der RWTH Aachen NULL 3228 +A3058 HBZ60 82/302 AC: Werkstoffkunde Institut für Werkstoffkunde der RWTH Aachen NULL 3233 +A3059 HBZ60 82/303 AC: Thermodynamik Lehrstuhl für Technische Thermodynamik und Institut für Thermodynamik der RWTH Aachen NULL 3234 +A3060 HBZ60 82/304 AC: Wärmeübertragung Lehrstuhl für Wärme- und Stoffübertragung der RWTH Aachen NULL 3235 +A3061 HBZ60 82/305 AC: Aerodynamik Lehrstuhl für Strömungslehre und Aerodynamisches Institut der RWTH Aachen NULL 3236 +A3062 HBZ60 82/306 AC: Keram. Komponenten Institut für keramische Komponenten im Maschinenbau der RWTH Aachen NULL 3237 +A3063 HBZ60 82/307 AC: Luft- u. Raumfahrt Institut für Luft- und Raumfahrt, Institut für Leichtbau der RWTH Aachen: Gemeinsame Bibliothek NULL 3238 +A3065 HBZ60 82/309 AC: Reaktorsicherheit Lehrstuhl für Reaktorsicherheit und -technik der RWTH Aachen NULL 3240 +A3066 HBZ60 82/310 AC: Strahlantriebe Institut für Strahlantriebe und Turboarbeitsmaschinen der RWTH Aachen NULL 3241 +A3067 HBZ60 82/311 AC: Dampf-/Gasturbinen Institut für Dampf- und Gasturbinen der RWTH Aachen NULL 3242 +A3068 HBZ60 82/312 AC: Werkzeugmasch. Name: Laboratorium für Werkzeugmaschinen und Betriebslehre - WZL - Lehrstuhl für Produktionssystematik, Lehrstuhl für Technologie der Fertigungsverfahren, Lehrstuhl für Werkzeugmaschinen, Lehrstuhl für Fertigungsmeßtechnik und Qualitätsmanagement, Bibliothek NULL 3243 +A3069 HBZ60 82/313 AC: Arbeitswiss. Lehrstuhl und Institut für Arbeitswissenschaft der RWTH Aachen NULL 3244 +A3070 HBZ60 82/314 AC: Schweiß-/Fügetechn. Lehrstuhl und Institut für Schweißtechnik und Fügetechnik der RWTH Aachen NULL 3245 +A3071 HBZ60 82/315 AC: Kunststoffverarb. Lehrstuhl für Kunststoffverarbeitung der RWTH Aachen NULL 3246 +A3072 HBZ60 82/316 AC: Regelungstechnik Lehrstuhl und Institut für Regelungstechnik der RWTH Aachen NULL 3247 +A3073 HBZ60 82/317 AC: Verfahrenstech. Lehrstuhl für Chemische Verfahrenstechnik und Institut für Verfahrenstechnik der RWTH Aachen NULL 3248 +A3074 HBZ60 82/318 AC: Lasertechnik Lehrstuhl für Lasertechnik der RWTH Aachen NULL 3249 +A3075 HBZ60 82/319 AC: Systemverfahrenst. Lehrstuhl für Systemverfahrenstechnik der RWTH Aachen NULL 3250 +A3076 HBZ60 82/320 AC: Fluidtechn.Antriebe Lehrstuhl und Institut für fluidtechnische Antriebe und Steuerungen der RWTH Aachen NULL 3251 +A3077 HBZ60 82/321 AC: Textiltechnik Lehrstuhl für Textilmaschinenbau und Institut für Textiltechnik der RWTH Aachen NULL 3252 +A3078 HBZ60 82/322 AC: Kraftfahrwesen Lehrstuhl und Institut für Kraftfahrwesen der RWTH Aachen NULL 3253 +A3079 HBZ60 82/323 AC: Schienenfahrzeuge Lehrstuhl und Institut für Schienenfahrzeuge und Fördertechnik der RWTH Aachen NULL 3254 +A3080 HBZ60 82/324 AC: Getriebetechnik Institut für Getriebetechnik und Maschinendynamik der RWTH Aachen NULL 3255 +A3081 HBZ60 82/325 AC: IMSE Lehrstuhl und Institut für Maschinenelemente und Systementwicklung der RWTH Aachen NULL 3256 +A3082 HBZ60 82/326 AC: ThermVerfahren Lehrstuhl für Thermische Verfahrenstechnik der RWTH Aachen NULL 3257 +A3083 HBZ60 82/327 AC: Verbrenn.kraftmasch Lehrstuhl für Verbrennungskraftmaschinen der RWTH Aachen NULL 3258 +A3084 HBZ60 82/328 AC: Stoßwellenlab. Lehr- und Forschungsgebiet Elektrische Antriebe der Raumfahrt - Stoßwellenlaboratorium -, Bibliothek NULL 3259 +A3088 HBZ60 82/332 AC: Bioverfahrenstechn. Lehrstuhl für Bioverfahrenstechnik NULL 3263 +A3089 HBZ60 82/401 AC: MRE Institute of Mineral Resources Engineering, Bibliothek NULL 3264 +A3090 HBZ60 82/402 AC: BGMR Lehr- und Forschungsgebiet Betriebsmittel für die Gewinnung mineralischer Rohstoffe, Bibliothek NULL 3265 +A3091 HBZ60 82/403 AC: Bergbaukunde III Institut für Bergbaukunde III der RWTH Aachen NULL 3266 +A3092 HBZ60 82/404 AC: Aufbereitung Institut für Aufbereitung, Kokerei und Brikettierung und Lehrstuhl für Aufbereitung und Recycling fester Abfallstoffe der RWTH Aachen NULL 3267 +A3093 HBZ60 82/405 AC: Bergwerksmasch. Institut für Bergwerks- und Hüttenmaschinenkunde der RWTH Aachen NULL 3268 +A3094 HBZ60 82/406 AC: Markscheidewesen Institut für Markscheidewesen, Bergschadenkunde und Geophysik im Bergbau der RWTH Aachen NULL 3269 +A3095 HBZ60 82/407 AC: Geologie Geologisches Institut der RWTH Aachen NULL 3270 +A3096 HBZ60 82/408 AC: Ingenieurgeologie Lehrstuhl für Ingenieurgeologie und Hydrogeologie der RWTH Aachen NULL 3271 +A3097 HBZ60 82/409 AC: Mineralogie Institut für Mineralogie und Lagerstättenlehre der RWTH Aachen NULL 3272 +A3098 HBZ60 82/410 AC: Kristallographie Institut für Kristallographie der RWTH Aachen NULL 3273 +A3099 HBZ60 82/411 AC: Eisenhüttenkunde Institut für Eisenhüttenkunde der RWTH Aachen NULL 3274 +A3100 HBZ60 82/412 AC: Gesteinshüttenkunde Institut für Gesteinshüttenkunde der RWTH Aachen NULL 3275 +A3101 HBZ60 82/413 AC: Metall. Prozesst. Lehrstuhl für Metallurgische Prozesstechnik und Metallrecycling, Bibliothek NULL 3276 +A3102 HBZ60 82/414 AC: Giesserei Gießerei-Institut der RWTH Aachen NULL 3277 +A3103 HBZ60 82/415 AC: Bildsame Formgebung Institut für Bildsame Formgebung der RWTH Aachen NULL 3278 +A3104 HBZ60 82/416 AC: Industrieofenbau Institut für Industrieofenbau und Wärmetechnik im Hüttenwesen der RWTH Aachen NULL 3279 +A3105 HBZ60 82/417 AC:Metallkunde Institut für Metallkunde und Metallphysik der RWTH Aachen NULL 3280 +A3106 HBZ60 82/418 AC: Werkstoffchemie Lehrstuhl für Werkstoffchemie, Bibliothek NULL 3281 +A3107 HBZ60 82/419 AC: Geologie Lehrstuhl für Geologie, Geochemie und Lagerstätten des Erdöls und der Kohle der RWTH Aachen NULL 3282 +A3108 HBZ60 82/420 AC: Angew. Geophysik Lehr- und Forschungsgebiet Angewandte Geophysik der RWTH Aachen NULL 3283 +A3109 HBZ60 82/421 AC: Prozessleittechnik Lehrstuhl für Prozeßleittechnik der RWTH Aachen NULL 3284 +A3111 HBZ60 82/423 AC: Berg-u. Umweltrecht Lehr- und Forschungsgebiet Berg- und Umweltrecht NULL 3286 +A3112 HBZ60 82/501 AC: Bildverarbeitung Lehrstuhl für Bildverarbeitung der RWTH Aachen NULL 3287 +A3113 HBZ60 82/502 AC: Elektrotechnik Lehrstuhl für Allgemeine Elektrotechnik und Datenverarbeitungssysteme der RWTH Aachen NULL 3288 +A3114 HBZ60 82/503 AC: Theor.Elektrotechn. Institut für theoretische Elektrotechnik, Erasmus-Erpel-Bibliothek, der RWTH Aachen NULL 3289 +A3116 HBZ60 82/505 AC: Elektr. Maschinen Institut für elektrische Maschinen der RWTH Aachen NULL 3291 +A3117 HBZ60 82/506 AC: Elektr. Anlagen Institut für elektrische Anlagen und Energiewirtschaft der RWTH Aachen NULL 3292 +A3118 HBZ60 82/507 AC: Stromrichtertechnik Institut für Stromrichtertechnik und elektrische Antriebe der RWTH Aachen NULL 3293 +A3119 HBZ60 82/508 AC: Nachrichtentechnik Institut für Nachrichtentechnik der RWTH Aachen NULL 3294 +A3120 HBZ60 82/509 AC: Nachrichtengeräte Institut für Nachrichtengeräte und Datenverarbeitung der RWTH Aachen NULL 3295 +A3121 HBZ60 82/510 AC: Techn. Akustik Institut für Technische Akustik der RWTH Aachen NULL 3296 +A3122 HBZ60 82/511 AC: Hochfrequenztech Institut für Hochfrequenztechnik der RWTH Aachen NULL 3297 +A3123 HBZ60 82/514 AC: Hochspannungstech. Institut für Hochspannungstechnik der RWTH Aachen NULL 3298 +A3127 HBZ60 82/520 AC: Techn. Informatik Lehrstuhl für Technische Informatik der RWTH Aachen NULL 3302 +A3128 HBZ60 82/601 AC: Philosophie Philosophisches Institut der RWTH Aachen NULL 3303 +A3129 HBZ60 82/602 AC: Psychologie Institut für Psychologie, Bibliothek NULL 3304 +A3130 HBZ60 82/603 AC: Erziehungswiss. Institut für Erziehungswissenschaft der RWTH Aachen NULL 3305 +A3131 HBZ60 82/604 AC: Historisches Inst. Historisches Institut der RWTH Aachen NULL 3306 +A3132 HBZ60 82/608 AC: Geographie Geographisches Institut der RWTH Aachen NULL 3307 +A3133 HBZ60 82/609 AC: Germanistik Germanistisches Institut der RWTH Aachen NULL 3308 +A3134 HBZ60 82/611 AC: Anglistik Institut für Anglistik der RWTH Aachen NULL 3309 +A3135 HBZ60 82/612 AC: Soziologie Institut für Soziologie der RWTH Aachen NULL 3310 +A3136 HBZ60 82/613 AC: Polit. Wissensch. Institut für politische Wissenschaft der RWTH Aachen NULL 3311 +A3137 HBZ60 82/615 AC: Wirtschaftswiss. Fakultätsbibliothek der Fakultät für Wirtschaftswissenschaften der RWTH Aachen NULL 3312 +A3139 HBZ60 82/618 AC: Theologie Theologie-Bibliothek NULL 3314 +A3141 HBZ60 82/622 AC: Roman. Philologie Institut für romanische Philologie der RWTH Aachen NULL 3316 +A3143 HBZ60 82/625 AC: Wirtsch.-/Soz.gesch Lehr- und Forschungsgebiet Wirtschafts- und Sozialgeschichte der RWTH Aachen NULL 3318 +A3146 HBZ60 82/632 AC: Wirtschaftsdidaktik Lehrstuhl für Wirtschaftsdidaktik der RWTH Aachen NULL 3321 +A3152 HBZ60 82/333 AC: Laser-Messverfahren Institut für Laser-Messverfahren in der Thermofluiddynamik der RWTH Aachen NULL 3327 +A3154 HBZ60 82/637 AC: Sprachenzentrum Sprachenzentrum der Philosophischen Fakultät der RWTH Aachen NULL 3329 +A3155 HBZ60 82/006 AC: AStA Allgemeiner Studierendenausschuss (AStA) der RWTH Aachen NULL 3330 +A3158 HBZ60 82/521 AC: Signalverarb. Integrierte Systeme der Signalverarbeitung, Bibliothek NULL 3333 +A3159 HBZ60 82/522 AC: Med. Informationst. Lehrstuhl für Medizinische Informationstechnik der RWTH Aachen NULL 3334 +A3160 HBZ60 82/230 AC: Abfallwirtschaft Lehr- und Forschungsgebiet Abfallwirtschaft der RWTH Aachen NULL 3335 +A3161 HBZ60 82/334 AC: Mikrosysteme Lehr- und Forschungsgebiet Konstruktion und Entwicklung von Mikrosystemen der RWTH Aachen NULL 3336 +A3162 HBZ60 82/007 AC: Sportzentrum Hochschulsportzentrum der RWTH Aachen NULL 3337 +A3163 HBZ60 82/008 AC: Gleichstellungsst. Die Gleichstellungsbeauftragte der RWTH Aachen NULL 3338 +A3164 HBZ60 82/009 AC: ACCESS ACCESS e.V. - Materials + Processes, Bibliothek der RWTH Aachen NULL 3339 +A3166 HBZ60 82/010 AC: Filmstudio Filmstudio an der RWTH Aachen e.V. NULL 3341 +A3167 HBZ60 82/011 AC: FIR FIR - Forschungsinstitut für Rationalisierung e.V. der RWTH Aachen NULL 3342 +A3168 HBZ60 82/335 AC: CATS Lehrstuhl für Computergestützte Analyse Technischer Systeme der RWTH Aachen NULL 3343 +A3169 HBZ60 82/336 AC: Medizintechnik Lehrstuhl für Medizintechnik der BTH Aachen NULL 3344 +A3171 HBZ60 82/206 AC: Stadtbaugeschichte Lehr- und Forschungsgebiet Stadtbaugeschichte der RWTH Aachen NULL 3346 +A3173 HBZ60 82/232 AC: BTH GDI Lehr- und Forschungsgebiet Gender und Diversity in den Ingenieurwissenschaften NULL 3348 +A3174 HBZ60 82/337 AC: Leichtbau Lehrstuhl und Institut für Leichtbau der RWTH Aachen NULL 3349 +A3175 HBZ60 82/115 AC: Didaktik Bio. Chem. Lehr- und Forschungsgebiet Didaktik der Biologie und Chemie, Bibliothek NULL 3350 +A3176 HBZ60 82/523 AC: Höchstfrequenzelekt Lehrstuhl für Höchstfrequenzelektronik der RWTH Aachen NULL 3351 +A3177 HBZ50 82/233 AC: Fachdidak Bautech. Lehr- und Forschungsgebiet Fachdidaktik Bautechnik der RWTH Aachen NULL 3352 +A3178 HBZ60 82/638 AC: SignGes Kompetenzzentrum für Gebärdensprache und Gestik NULL 3353 +A5001 HBZ60 A 96 AC: FHB Aachen Fachhochschule Aachen NULL 3354 +B0001 HBZ60 294 BO: UB Ruhr-Universität Bochum NULL 3355 +B1001 HBZ60 294/18 BO: FakB Wirtsch.wiss. Fakultät für Wirtschaftswissenschaft der Ruhr-Universität Bochum NULL 3356 +B2001 HBZ60 294/11 BO: Historische Bibl. Fakultät für Geschichtswissenschaft der Ruhr-Universität Bochum, Historische Bibliothek (frü her: Bm11) NULL 3357 +B3001 HBZ60 294/39 BO: FakB Rechtswiss. Fakultät für Rechtswissenschaft der Ruhr-Universität Bochum, Bibliothek NULL 3358 +B4001 HBZ60 294/10 BO: Geologie Institut für Geologie, Mineralogie und Geophysik NULL 3359 +B4002 HBZ60 294/13 BO: FakB Mathematik Fakultät für Mathematik der Ruhr-Universität Bochum NULL 3360 +B4003 HBZ60 294/14 BO: FakB Medizin Medizinische Fakultät der Ruhr-Universität Bochum NULL 3361 +B4004 HBZ60 294/15 BO: FakB Ostasienwiss. Fakultät für Ostasienwissenschaften der Ruhr-Universität Bochum NULL 3362 +B4005 HBZ60 294/16 BO: FakB Physik/Astron. Fakultät für Physik und Astronomie der Ruhr-Universität Bochum NULL 3363 +B4006 HBZ60 294/17 BO: FakB Sozialwiss. Fakultät für Sozialwissenschaft der Ruhr-Universität Bochum NULL 3364 +B4007 HBZ60 294/19 BO: Archäologie Archäologisches Institut der Ruhr-Universität Bochum NULL 3365 +B4008 HBZ60 294/20 BO: Engl. Seminar Fakultät für Philologie der Universität, Bibliothek, Englisches Seminar NULL 3366 +B4009 HBZ60 294/21 BO: Ev. Theologie Evangelisch-Theologische Fakultät der Ruhr-Universität Bochum, Bibliothek NULL 3367 +B4010 HBZ60 294/22 BO: IB Verbundbibl. IB Verbundbibliothek der Ruhr-Universität Bochum NULL 3368 +B4011 HBZ60 294/23 BO: Germanistik Fakultät für Philologie der Universität, Bibliothek, Germanistisches Institut NULL 3369 +B4012 HBZ60 294/24 BO: Hegel-Archiv Hegel-Archiv der Ruhr-Universität Bochum NULL 3370 +B4013 HBZ60 294/25 BO: Entwicklungsforsch. Institut für Entwicklungsforschung und Entwicklungspolitik der Ruhr-Universität Bochum NULL 3371 +B4014 HBZ60 294/26 BO: FakB Sportwiss. Fakultät für Sportwissenschaft der Ruhr-Universität Bochum NULL 3372 +B4015 HBZ60 294/27 BO: Pädagogik Institut für Pädagogik der Ruhr-Universität Bochum NULL 3373 +B4016 HBZ60 294/28 BO: Philosophie Institut für Philosophie der Ruhr-Universität Bochum NULL 3374 +B4017 HBZ60 294/29 BO: Sozialrecht Institut für Sozialrecht der Ruhr-Universität Bochum NULL 3375 +B4018 HBZ60 294/30 BO: Kunstgeschichte Kunstgeschichtliches Institut der Ruhr-Universität Bochum NULL 3376 +B4019 HBZ60 294/31 BO: Musikwissenschaft Musikwissenschaftliches Institut der Ruhr-Universität Bochum NULL 3377 +B4020 HBZ60 294/32 BO: FakB Psychologie Fakultät für Psychologie der Ruhr-Universität Bochum, Bibliothek NULL 3378 +B4021 HBZ60 294/33 BO: Roman. Seminar Fakultät für Philologie der Universität, Bibliothek, Romanisches Seminar NULL 3379 +B4022 HBZ60 294/34 BO: Klass. Philologie Fakultät für Philologie der Universität, Bibliothek, Seminar für klassische Philologie NULL 3380 +B4023 HBZ60 294/35 BO: Orientalistik Fakultät für Philologie der Universität, Bibliothek, Seminar für Orientalistik NULL 3381 +B4024 HBZ60 294/36 BO: Slavistik Fakultät für Philologie der Universität, Bibliothek, Seminar für Slavistik NULL 3382 +B4025 HBZ60 294/37 BO: Sprachwissenschaft Fakultät für Philologie der Universität, Bibliothek, Sprachwissenschaftliches Institut NULL 3383 +B4026 HBZ60 294/38 BO: FakB Kath. Theologie Katholisch-Theologische Fakultät der Ruhr-Universität Bochum, Bibliothek NULL 3384 +B4028 HBZ60 294/42 BO: Sprachlehrforschung Fakultät für Philologie der Universität, Bibliothek, Seminar für Sprachlehrforschung NULL 3386 +B4029 HBZ60 294/43 BO: Astronomie Astronomisches Institut der Ruhr-Universität Bochum NULL 3387 +B4031 HBZ60 294/45 BO: Werkstoffe Institut für Werkstoffe der Ruhr-Universität Bochum NULL 3389 +B4032 HBZ60 294/46 BO: Thermo-/Fluiddyn. Institut für Thermo- und Fluiddynamik der Ruhr-Universität Bochum NULL 3390 +B4033 HBZ60 294/47 BO: Gesch. d. Medizin Institut für Geschichte der Medizin der Ruhr-Universität Bochum NULL 3391 +B4034 HBZ60 294/48 BO: Berg-/Energierecht Institut für Berg- und Energierecht der Ruhr-Universität Bochum NULL 3392 +B4035 HBZ60 294/49 BO: Konstruktionstechn. Institut für Konstruktionstechnik der Ruhr-Universität Bochum NULL 3393 +B4036 HBZ60 294/50 BO: Automatis.technik Institut für Automatisierungstechnik der Ruhr-Universität Bochum NULL 3394 +B4037 HBZ60 294/51 BO: FakB Bauingenieurws Fakultät für Bauingenieurwesen der Ruhr-Universität Bochum NULL 3395 +B4038 HBZ60 294/52 BO: Mechanik Institut für Mechanik der Ruhr-Universität Bochum NULL 3396 +B4039 HBZ60 294/53 BO: Energietechnik Institut für Energietechnik der Ruhr-Universität Bochum NULL 3397 +B4041 HBZ60 294/55 BO: Medienwissenschaft Fakultät für Philologie der Universität, Bibliothek, Institut für Medienwissenschaft NULL 3399 +B4042 HBZ60 294/56 BO: Deutschlandforschg Institut für Deutschlandforschung der Ruhr-Universität Bochum NULL 3400 +B4043 HBZ60 294/57 BO: Friedenssich.recht Institut für Friedenssicherungsrecht und Humanitäres Völkerrecht der Ruhr-Universität Bochum NULL 3401 +B4044 HBZ60 294/58 BO: Lotman-Institut Fakultät für Philologie der Universität, Bibliothek, Lotman-Institut für Russische und Sowjetische Kultur NULL 3402 +B4045 HBZ60 294/59 BO: Neuroinformatik Institut für Neuroinformatik NULL 3403 +B4046 HBZ60 294/60 BO: Arbeitswissenschaft Institut für Arbeitswissenschaft NULL 3404 +B4047 HBZ60 294/61 BO: Allg./Vergl.Liter.w Fakultät für Philologie der Universität, Bibliothek, Allgemeine und vergleichende Literaturwissenschaft NULL 3405 +B4048 HBZ60 294/62 BO: Knappschafts-Krkhs Knappschafts-Krankenhaus Bochum-Langendreer-Universitätsklinik NULL 3406 +B4049 HBZ60 294/63 BO: Klin. Bergmannsheil Berufsgenossenschaftliche Kliniken Bergmannsheil Bochum, Universitätsklinik, Bibliothek NULL 3407 +B4050 HBZ60 294/64 BO: Botanischer Garten Botanischer Garten der Ruhr-Universität Bochum NULL 3408 +B4051 HBZ60 294/7 BO: Biologie Biotech. Fakultät für Biologie und Biotechnologie der Ruhr-Universität Bochum NULL 3409 +B4052 HBZ60 294/8 BO: FakB Chemie Fakultät für Chemie der Ruhr-Universität Bochum NULL 3410 +B4053 HBZ60 294/9 BO: FakB Elektrotechnik Fakultät für Elektrotechnik und Informationstechnik der Ruhr-Universität Bochum NULL 3411 +B4054 HBZ60 294/70 BO: IPA IPA, Institut für Prävention und Arbeitsmedizin der Deutschen Gesetzlichen Unfallversicherung, Institut der Ruhr-Universität Bochum NULL 3412 +B4055 HBZ60 294/66 BO: Theaterwissenschaft Fakultät für Philologie der Universität, Bibliothek, Institut für Theaterwissenschaft NULL 3413 +B4056 HBZ60 294/67 BO: Recht Lehrstuhl für Öffentliches Recht, Rechtssoziologie und Rechtsphilosophie der Ruhr-Universität Bochum NULL 3414 +B4057 HBZ60 294/68 BO: Marienhospit. Herne Marienhospital Herne, Klinikum der Ruhr-Universität Bochum, Service-Center für Lehre und Forschung NULL 3415 +B4058 HBZ60 294/69 BO: Landesspracheninst. Landesspracheninstitut in der Ruhr-Universität Bochum NULL 3416 +B4059 HBZ60 294/71 BO: ICAMS ICAMS, Interdisciplinary Centre for Advanced Materials Simulation, Institut an der Ruhr-Universität Bochum NULL 3417 +B5001 HBZ60 Bm 40 BO: HSB Bochum Hochschule Bochum, Hochschulbibliothek NULL 3418 +C0001 HBZ60 361 BI: UB Bielefeld Universitätsbibliothek Bielefeld NULL 3419 +C5001 HBZ60 Bi 10 BI: FHB Bielefeld Fachhochschule Bielefeld NULL 3422 +EB001 HBZ60 ZDB-23-DGG de Gruyter E-Books de Gruyter E-Books NULL 3423 +ESA01 EDK50 2750 K: Edith-Stein-Archiv Edith-Stein-Archiv Köln NULL 3424 +F5001 HBZ60 1383 Kle: HSB Rhein-Waal Hochschulbibliothek Rhein-Waal, Kleve NULL 3425 +F5002 HBZ60 1383a WES: Kamp-Lintfort Hochschule Rhein-Waal Zweigstelle Kamp-Lintfort NULL 3426 +F5010 HBZ60 1393 MH: HSB Ruhr West Bibliothek der Hochschule Ruhr West NULL 3427 +F5011 HBZ60 1393/BOT BOT: HS Ruhr West, Bottrop Hochschule Ruhr West, Zweigbibliothek Bottrop NULL 3428 +G5001 HBZ60 1010 GE: B WHS Gelsenkirchen Bibliothek der Westfälischen Hochschule Gelsenkirchen Bocholt Recklinghausen NULL 3429 +H7001 HBZ60 368 Hattingen: StBü Stadtbücherei Hattingen NULL 3430 +J5001 HBZ60 1044 St.Aug: - HuKB BnRhSie Fachhochschule Bonn-Rhein-Sieg in St. Augustin (Hochschul- und Kreisbibliothek) (umfasst auch die Bestände der früheren Kreisbibliothek Siegburg = 744) NULL 3431 +J5005 HBZ60 Sie 5 SU: WB ARSK Siegburg Wissenschaftliche Bibliothek des Kreisarchivs Rhein-Sieg-Kreis, Siegburg NULL 3432 +K0001 HBZ60 38 K: USB Universitäts- und Stadtbibliothek Köln NULL 3433 +K1002 HBZ60 38/005 K: Universitätsarchiv Universitätsarchiv Köln, Bibliothek NULL 3435 +K1003 HBZ60 38/006 K: RRZK Bibliothek für Informatik und Wirtschaftsinformatik und Bibliothek des Regionalen Rechenzentrums (RRZK) NULL 3436 +K1004 HBZ60 38/007 K: GeStiK Bibliothek GeStiK - Gender Studies in Köln NULL 3437 +K1006 HBZ60 38/102 K: Wirtschaftsarchiv Wirtschaftsarchiv der Wirtschafts- und Sozialwissenschaftlichen Fakultät der Universität Köln (= Kn112) NULL 3439 +K1010 HBZ60 38/106 K: BWL-Bibliothek Betriebswirtschaftliche Bibliothek der Universität zu Köln NULL 3443 +K1022 HBZ60 38/119 K: Energiewirtschaft Energiewirtschaftliches Institut der Universität Köln (Gemeinsame Bibliothek mit dem Seminar für Sozialpolitik: 38/128) NULL 3455 +K1025 HBZ60 38/123 K: Versicherungswiss. FBV Fachbibliothek Versicherungswissenschaft am Seminar für Allgemeine Betriebswirtschaftslehre, Risikomanagement und Versicherungslehre ; Institut für Versicherungswissenschaft, Abt. Versicherungswirtschaft, Abt. Versicherungsmathematik NULL 3458 +K1027 HBZ60 38/125 K: Pol.Wiss. u. Europ.Fr. Forschungsinstitut für Politische Wissenschaft und Europäische Fragen, Seminar für Politische Wissenschaft, Gemeinsame Bibliothek NULL 3460 +K1032 HBZ60 38/132 K: Sem. Soziologie Seminar für Soziologie der Universität Köln (= Kn100) NULL 3465 +K1034 HBZ60 38/134 K: Berufs-,Wirt-uSoz.pä Institut für Berufs-, Wirtschafts- und Sozialpädagogik der Universität Köln NULL 3467 +K1040 HBZ60 587 K: GESIS WGL GESIS Bibliothek Köln NULL 3473 +K1049 HBZ60 38/201 K: Fachbibl. Rechtswiss. Fachbibliothek Rechtswissenschaft, Rechtswissenschaftliches Seminar der Universität Köln NULL 3482 +K1051 HBZ60 38/203 K: FI Sozialrecht Forschungsinstitut für Deutsches und Europäisches Sozialrecht der Universität Köln NULL 3484 +K1052 HBZ60 38/204 K: Arbeits- u.Wirtsch.R Institut für Arbeits- und Wirtschaftsrecht der Universität Köln NULL 3485 +K1053 HBZ60 38/205 K: Straf/Strafprozessr. Institut für Strafrecht und Strafprozessrecht der Universität Köln NULL 3486 +K1056 HBZ60 38/208 K: GB Internat. Recht Gemeinschaftsbibliothek Internationales Recht NULL 3489 +K1057 HBZ60 38/209 K: Kirchenrecht Institut für Kirchenrecht und rheinische Kirchenrechtsgeschichte der Universität Köln NULL 3490 +K1058 HBZ60 38/210 K: Steuerrecht Institut für Steuerrecht der Universität Köln (= Kn105) NULL 3491 +K1059 HBZ60 38/211 K: Staatsphilosophie Seminar für Staatsphilosophie und Rechtspolitik der Universität Köln, Bibliothek (= Kn102) NULL 3492 +K1060 HBZ60 38/212 K: Luft-/Weltraumrecht Institut für Luft- und Weltraumrecht, Lehrstuhl für Völkerrecht, Europarecht, Europäisches und Internationales Wirtschaftsrecht, Gemeinsame Bibliothek NULL 3493 +K1061 HBZ60 38/213 K: Öff.Recht/Verw.lehre Institut für Öffentliches Recht und Verwaltungslehre der Universität Köln, Bibliothek (= Kn142) NULL 3494 +K1062 HBZ60 38/214 K: Römisches Recht Institut für Römisches Recht der Universität Köln NULL 3495 +K1064 HBZ60 38/216 K: Neuere PrivatRgesch. Institut für Neuere Privatrechtsgeschichte, Deutsche und Rheinische Rechtsgeschichte der Universität Köln NULL 3497 +K1065 HBZ60 38/217 K: Bankrecht Lehrstuhl für Bürgerliches Recht, Deutsches und Internationales Handels-, Wirtschafts- und Bankrecht, Internationales Privatrecht und Rechtsvergleichung, Institut für Bankwirtschaft und Bankrecht, Abt. Bankrecht, Center for Transnational Law (CENTRAL), Gemeinsame Bibliothek NULL 3498 +K1066 HBZ60 38/218 K: Versicherungsrecht Institut für Versicherungsrecht, Institut für Versicherungswissenschaft mit Abt. für Versicherungswirtschaft, Versicherungsrecht, Versicherungsmathematik, Seminar für Allgemeine Betriebswirtschaftslehre, Risikomanagement und Versicherungslehre, Gemeinsame Bibliothek NULL 3499 +K1067 HBZ60 38/219 K: Inst. Osteurop. Recht Institut für Osteuropäisches Recht und Rechtsvergleichung NULL 3500 +K1069 HBZ60 38/221 K: Verfahrensrecht Institut für Verfahrensrecht der Universität Köln, Bibliothek (= Kn143) NULL 3502 +K1070 HBZ60 38/222 K: Medienrecht Bibliothek des Instituts für Medienrecht und Kommunikationsrecht NULL 3503 +K1071 HBZ60 38/223 K: Kriminologie Institut für Kriminologie der Universität Köln NULL 3504 +K1073 HBZ60 38/225 K: Staatsrecht Institut für Staatsrecht der Universität Köln NULL 3506 +K1074 HBZ60 38/226 K: Anwaltsrecht Institut für Anwaltsrecht der Universität Köln NULL 3507 +K1075 HBZ60 38/228 K: Staats-/Verw.-recht Lehrstuhl für Staats- und Verwaltungsrecht der Universität Köln NULL 3508 +K1077 HBZ60 38/303 K: Allg. Pädagogik Seminar für Pädagogik, Abt. für Allgemeine Pädagogik NULL 3510 +K1078 HBZ60 38/304 K: Pädagogik/Schulpäd. Institut für Allgemeine Didaktik und Schulforschung NULL 3511 +K1079 HBZ60 38/305 K: Inst. Psychologie Department Psychologie NULL 3512 +K1081 HBZ60 38/307 K: HF-Bibliothek 38/307 : Humanwissenschaftliche Bibliothek: Gemeinsame Bibliothek der Humanwissenschaftlichen Fakultät und der USB Köln NULL 3514 +K1082 HBZ60 38/308 K: Soz.wiss/Polit.wiss. Politikwissenschaft, Bildungspolitik und Politische Bildung NULL 3515 +K1083 HBZ60 38/309 K: Sozialwiss./Soz./Erzw Soziologie NULL 3516 +K1085 HBZ60 38/311 K: Sem.Theologie/Erzw. Seminar für Theologie und ihre Didaktik der Universität Köln (Erziehungswissenschaftliche Fak.) NULL 3518 +K1086 HBZ60 38/312 K: Sem.Dt.Spr/Didakt. Seminar für Deutsche Sprache und ihre Didaktik, Bibliothek NULL 3519 +K1087 HBZ60 38/313 K: Sem.Engl.Spr/Didakt Institut für Englische Sprache und ihre Didaktik, Bibliothek NULL 3520 +K1088 HBZ60 38/314 K:Sem.Geographie/Erzw Seminar für Geographie der Universität Köln (Erziehungswissenschaftl. Fakultät), Bibliothek NULL 3521 +K1089 HBZ60 38/315 K: Mathem.Didaktik Institut für Mathematikdidaktik, Bibliothek NULL 3522 +K1091 HBZ60 38/317 K: Chemiedidaktik Institut für Chemiedidaktik der Universität Köln, Bibliothek NULL 3524 +K1093 HBZ60 38/319 K:Kunst/Bild.Kunst/Erzw FB Kunst und Textil, Abt. für Kunst und ihre Didaktik NULL 3526 +K1094 HBZ60 38/320 K:Kunst/Textilgest./Erzw FB Kunst und Textil, Abt. Textilgestaltung/Textilwissenschaft und ihre Didaktik NULL 3527 +K1095 HBZ60 38/321 K: HWA Musikpädagogik Institut für Musikpädagogik NULL 3528 +K1097 HBZ60 38/323 K: ALEKI Arbeitsstelle für Leseforschung und Kinder- und Jugendmedien (ALEKI) NULL 3530 +K1098 HBZ60 38/324 K: Europ. Musikethno. Institut für Europäische Musikethnologie, Bibliothek NULL 3531 +K1099 HBZ60 38/325 K: KathTheolKlosterstr Bibliothek für Systematische Theologie, Institut für Katholische Theologie, Abt. Klosterstr. NULL 3532 +K1100 HBZ60 38/401 K: Philosoph. Seminar Philosophisches Seminar der Universität Köln, Bibliothek NULL 3533 +K1102 HBZ60 38/403 K: Pädagog. Sem. Pädagogische Bibliothek im Hauptgebäude NULL 3535 +K1103 HBZ60 38/404 K: Altertumsk/Klass.Phil. Institut für Altertumskunde, Abteilung Klassische Philologie, Alte Geschichte, Bibliothek NULL 3536 +K1104 HBZ60 38/405 K: Dt. Spr. u. Literatur Institut für deutsche Sprache und Literatur der Universität Köln NULL 3537 +K1105 HBZ60 38/406 K: Niederl. Philologie Institut für Niederländische Philologie der Universität Köln (s. auch Kn 126) NULL 3538 +K1106 HBZ60 38/407 K: Skandinavistik Institut für Skandinavistik / Fennistik der Universität Köln, Abt. Skandinavistik NULL 3539 +K1107 HBZ60 38/408 K: Indologie/Tamilistik Institut für Indologie und Tamilistik der Universität Köln NULL 3540 +K1108 HBZ60 38/409 K: Sprachwissenschaft Institut für Linguistik, Abt. Allgemeine Sprachwissenschaft, Abt. Historisch-Vergleichende Sprachwissenschaft, Gemeinsame Bibliothek, Universität Köln NULL 3541 +K1109 HBZ60 38/410 K: Linguistik/Phonetik Institut für Linguistik, Abt. Phonetik, Universität Köln NULL 3542 +K1110 HBZ60 38/411 K: Engl. Seminar Englisches Seminar der Universität Köln (= Kn147) NULL 3543 +K1111 HBZ60 38/412 K: Roman. Seminar Romanisches Seminar der Universität Köln NULL 3544 +K1112 HBZ60 38/413 K: Port.-Brasilian.Inst. Portugiesisch-Brasilianisches Institut, Zentrum Portugiesischsprachige Welt, Bibliothek NULL 3545 +K1113 HBZ60 38/414 K: Oriental. Seminar Orientalisches Seminar, Seminarbibliothek mit Malaiologischem Apparat, Schiabibliothek und Max Freiherr von Oppenheim Stiftung NULL 3546 +K1114 HBZ60 38/415 K: Martin-Buber-Inst. Martin-Buber-Institut für Judaistik der Universität Köln (= Kn148) NULL 3547 +K1115 HBZ60 38/416 K: Ägyptologie Seminar für Ägyptologie der Universität Köln (= Kn135) NULL 3548 +K1117 HBZ60 38/418 K: Slavistik Slavisches Institut der Universität Köln NULL 3550 +K1118 HBZ60 38/419 K: Afrikanistik Institut für Afrikanistik der Universität Köln NULL 3551 +K1119 HBZ60 38/420 K: Hist.Inst/MA u. Neuz Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek NULL 3552 +K1120 HBZ60 38/421 K: Histor.Sem/Publizistik Historisches Seminar I, Arbeitsstelle für Geschichte der Publizistik, Bibliothek NULL 3553 +K1121 HBZ60 38/422 K: Hist.Inst/Nordam. Historisches Institut, Abteilung für Nordamerikanische Geschichte, Bibliothek NULL 3554 +K1122 HBZ60 38/423 K: Hist.Inst/Lat. Am. Historisches Institut, Abteilung für Iberische und Lateinamerikanische Geschichte, Bibliothek NULL 3555 +K1124 HBZ60 38/425 K: Hist.Inst/Osteuropa Historisches Institut, Abteilung für Osteuropäische Geschichte, Bibliothek NULL 3557 +K1125 HBZ60 38/426 K: Ur- u. Frühgeschichte Institut für Ur- und Frühgeschichte der Universität Köln NULL 3558 +K1126 HBZ60 38/427 K: Archäologie Archäologisches Institut, Institut für Klassische Archäologie und Archäologie der Römischen Provinzen NULL 3559 +K1127 HBZ60 38/428 K: Kunstgeschichte Kunsthistorisches Institut, Abteilung Allgemeine Kunstgeschichte NULL 3560 +K1128 HBZ60 38/429 K: Theatermuseum/Porz Institut für Theater-, Film- und Fernsehwissenschaft, Theaterwissenschaftliche Sammlung, Bibliothek NULL 3561 +K1129 HBZ60 38/430 K: Musikwiss. Inst. Musikwissenschaftliches Institut, Abt. Historische Musikwissenschaft, Systematische Musikwissenschaft, Musikethnologie, Collegium Musicum NULL 3562 +K1130 HBZ60 38/431 K: Ethnologie Institut für Ethnologie der Universität Köln NULL 3563 +K1131 HBZ60 38/432 K: Thomas-Institut Thomas-Institut der Universität Köln NULL 3564 +K1132 HBZ60 38/433 K: Husserl-Archiv Husserl-Archiv der Universität Köln NULL 3565 +K1133 HBZ60 38/434 K: Petrarca-Institut Petrarca-Institut, Bibliothek NULL 3566 +K1137 HBZ60 38/438 K: Ur-/Frühgeschichte Institut für Ur- und Frühgeschichte, Forschungsstelle Afrika NULL 3570 +K1138 HBZ60 38/444 K: Fennistik Institut für Skandinavistik / Fennistik der Universität Köln, Abt. Fennistik NULL 3571 +K1139 HBZ60 38/445 K:Kunsthist./Arch.gesch. Kunsthistorisches Institut der Universität Köln, bt. Architekturgeschichte NULL 3572 +K1140 HBZ60 38/448 K: Theaterwiss. Institut für Theater-, Film- u. Fernsehwissenschaft der Universität Köln NULL 3573 +K1141 HBZ60 38/450 K: Ostas.Sem./Mod.Chin Ostasiatisches Seminar, Abteilung Moderne China-Studien, der Universität Köln NULL 3574 +K1142 HBZ60 38/451 K: Dt.Spr.u.Lit/Sprechk Institut für Deutsche Sprache u. Literatur, Lektorat für Deutsche Sprechkunde der Universität Köln (zusammengelegt mit 38/405) NULL 3575 +K1144 HBZ60 38/459 K: Ostasiat.Sem./Japan. Ostasiatisches Seminar, Abt. Japanologie, der Universität Köln NULL 3577 +K1145 HBZ60 38/501 K: Mathematik Mathematisches Institut NULL 3578 +K1146 HBZ60 38/502 K: Physik Physikalische Institute, Gemeinsame Bibliothek des Instituts für Theoretische Physik, des Instituts für Kernphysik, der Physikalischen Institute I und II, der Lehrstühle für Experimentalphysik, Angewandte Physik und der Abteilung für Metallphysik NULL 3579 +K1148 HBZ60 38/507 K: Fachbibl. Chemie Fachbibliothek Chemie, Institute für Anorganische, Organische und Physikalische Chemie: Gemeinsame Bibliothek (s. auch 38/509, 38/510, 38/511) NULL 3581 +K1152 HBZ60 38/513 K: Mineralogie-Petrogr. Mineralogisch-Petrographisches Institut, Institut für Kristallographie der Universität Kö ln: Gemeinsame Bibliothek NULL 3585 +K1153 HBZ60 38/514 K: Geobibliothek GeoBibliothek der Universität zu Köln, Gemeinsame Bibliothek der Institute für Geologie, Geophysik, Kristallographie, Mineralogie und Geochemie. NULL 3586 +K1154 HBZ60 38/517 K: Geographie Geographisches Institut der Universität Köln NULL 3587 +K1161 HBZ60 38/622 K: Kath. Theologie Institut für Katholische Theologie der Universität Köln NULL 3594 +K1162 HBZ60 38/623 K: Evang. Theologie Institut für Evangelische Theologie der Universität Köln NULL 3595 +K1163 HBZ60 38/302 K: FB Heilpädagogik Fachbibliothek Heilpädagogik und Rehabilitation NULL 3596 +K1165 HBZ60 38/230 K: Gewerbl.Rechtsschutz Institut für Gewerblichen Rechtsschutz und Urheberrecht der Universität Köln NULL 3598 +K1166 HBZ60 38/460 K: Byzantinistik Institut für Altertumskunde, Abteilung Byzantinistik und Neogräzistik NULL 3599 +K1167 HBZ60 38/461 K: Mittellatein Institut für Altertumskunde, Abteilung Mittellatein NULL 3600 +K1169 HBZ60 38/231 K: Bilanz-/ Steuerrecht Lehrstuhl für Bürgerliches Recht, Bilanz- und Steuerrecht der Universität Köln NULL 3602 +K1171 HBZ60 38/503 K: FB Biologie Fachbibliothek Biologie der Universität Köln NULL 3604 +K1175 HBZ60 38/326 K: Testothek.Humanwiss. Testothek der Humanwissenschaftlichen Fakultät der Universität Köln NULL 3608 +K1176 HBZ60 Kn 184 K: FrauenMediaTurm FrauenMediaTurm - Feministisches Archiv und Bibliothek NULL 3609 +K1180 HBZ60 38/465 K: Digital Humanities Institut für Digital Humanities, Bibliothek NULL 3613 +K1182 HBZ60 38/467 K: Koll. Morphomata Internationales Kolleg Morphomata NULL 3615 +K1183 HBZ60 38/468 K: Europ. Rechtsling. Institut für Europäische Rechtslinguistik NULL 3616 +K1184 HBZ60 38/328 K: IMVR Institut für Medizinsoziologie NULL 3617 +K1187 HBZ60 38/234 K: Rechtstheorie Lehrstuhl für Bürgerliches Recht und Rechtstheorie NULL 3620 +K1188 HBZ60 38/101 K: VWL-Bibliothek Volkswirtschaftliche Bibliothek der Universität zu Köln NULL 3621 +K1189 HBZ60 38/237 K: Inst. Int. Peace Institute for International Peace and Security Law, Library NULL 3622 +K1190 HBZ60 38/466 K: Sprachlabor Sprachlabor der Philosophischen Fakultät der Universität zu Köln NULL 3623 +K1191 HBZ60 38/229 K: Inst. Insolvenzrecht Institut für Internationales und Europäisches Insolvenzrecht NULL 3624 +K5001 HBZ60 832 K: TH Köln Hochschulbibliothek der Technischen Hochschule Köln NULL 3625 +KD001 HBZ60 461/1 K: HBZ, DienstB Hochschulbibliothekszentrum NRW, Dienstbibliothek, Köln NULL 3626 +KM001 HBZ60 38 M K: ZB MED ZB MED – Leibniz-Informationszentrum Lebenswissenschaften, Köln NULL 3629 +L0001 HBZ60 51 DT: Lipp. LB Lippische Landesbibliothek Detmold NULL 3630 +L5001 HBZ60 743 Lemgo: TH OWL, S(KIM) Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien NULL 3631 +M0001 HBZ60 6 MS: ULB Universitäts- und Landesbibliothek Münster NULL 3632 +M0002 HBZ60 6/A MS: ZB Sozialwiss. Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften NULL 3633 +M0003 HBZ60 6/M MS: ZB Medizin Universitäts- und Landesbibliothek Münster, Zweigbibliothek Medizin NULL 3634 +M0004 HBZ60 6/N MS: FID Benelux Haus der Niederlande, Fachinformationsdienst Benelux / Low Countries Studies NULL 3635 +M0005 HBZ60 6/Z MS: MS: Zeitungs- u. Pressearch. Universitäts- und Landesbibliothek, Zeitungs- und Pressearchiv NULL 3636 +M1005 HBZ60 6/005 MS: Chemiebibliothek Chemiebibliothek NULL 3641 +M1006 HBZ60 6/006 MS: Ev.-Theol. Sem. Seminare der Evangelisch-Theologischen Fakultät der Universität Münster NULL 3642 +M1007 HBZ60 6/007 MS: Geowiss. I Bibliothek Geowissenschaften I der Universität Münster NULL 3643 +M1008 HBZ60 6/011 MS: Kath.-Theol.,Joh. Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abt. Johannisstr., der Universität Münster NULL 3644 +M1010 HBZ60 6/015 MS: Philosoph. Sem. Philosophisches Seminar der Universität Münster NULL 3646 +M1011 HBZ60 6/016 MS: Rechtswiss. Sem. I Rechtswissenschaftliches Seminar I der Universität Münster NULL 3647 +M1012 HBZ60 6/017 MS: FB Wirtschaft Fachbereichsbibliothek Wirtschaftswissenschaften der Universität Münster NULL 3648 +M1014 HBZ60 6/020 MS: Engl. Sem. Englisches Seminar der Universität Münster NULL 3650 +M1016 HBZ60 6/022 MS: Mathemat./Informatik Bibliothek des Fachbereichs Mathematik und Informatik der Universität Münster NULL 3652 +M1017 HBZ60 6/023 MS: FB Physik Bibliothek des Fachbereichs Physik der Universität Münster NULL 3653 +M1018 HBZ60 6/026 MS: Geobibliothek Geobibliothek der Universität Münster NULL 3654 +M1022 HBZ60 6/034 MS: Pharmakol/Toxikol Institut für Pharmakologie und Toxikologie der Universität Münster NULL 3658 +M1024 HBZ60 6/036 MS: Augenheilkunde Klinik und Poliklinik für Augenheilkunde der Universität Münster NULL 3660 +M1025 HBZ60 6/037 MS: I.f.Angew.Physik Institut für Angewandte Physik der Universität Münster NULL 3661 +M1027 HBZ60 6/039 MS: I.f.Rechtsmedizin Institut für Rechtsmedizin der Universität Münster NULL 3663 +M1034 HBZ60 6/047 MS: Psychiatr/Psychoth Klinik und Poliklinik für Psychiatrie und Psychotherapie der Universität Münster NULL 3670 +M1035 HBZ60 6/049 MS: Bibl.f.Psychologie Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie der Universität Münster NULL 3671 +M1036 HBZ60 6/050 MS: Niederl.Philol Haus der Niederlande, Institut für NiederländischePhilologie der Universität Münster NULL 3672 +M1037 HBZ60 6/052 MS: Musikwissenschaft Institut für Musikwissenschaft der Universität Münster NULL 3673 +M1041 HBZ60 6/056 MS: Theoret. Physik Bibliothek für Theoretische und Teilchenphysik der Universität Münster NULL 3677 +M1042 HBZ60 6/057 MS: Pharm.u.Med. Chemie Institut für Pharmazeutische und Medizinische Chemie der Universität Münster NULL 3678 +M1043 HBZ60 6/058 MS: Sportbibl. Fachbereich 7, Psychologie und Sportwissenschaft, Sportbibliothek NULL 3679 +M1044 HBZ60 6/069 MS: Kath.-Theol. Hüff. Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abt. Hüfferstr., der Universität Münster NULL 3680 +M1046 HBZ60 6/097 MS: Volksk/Europ.Ethno Institut für Kulturanthropologie/Europäische Ethnologie NULL 3682 +M1049 HBZ60 6/115 MS: Kommunalwiss.Inst. Kommunalwissenschaftliches Institut der Universität Münster NULL 3685 +M1052 HBZ60 6/119 MS: Judaicum Delitzs. Institutum Judaicum Delitzschianum der Universität Münster NULL 3688 +M1053 HBZ60 6/122 MS: Physiol.Chem./Path Institut für Physiologische Chemie und Pathobiochemie der Universität Münster NULL 3689 +M1054 HBZ60 6/123 MS: Erziehungswiss. Bibliothek des Instituts für Erziehungswissenschaft der Universität Münster NULL 3690 +M1055 HBZ60 6/125 MS: Rechtshist. Bibl. Rechtshistorische Bibliothek der Universität Münster NULL 3691 +M1059 HBZ60 6/136 MS: Heribert Meffert B. Heribert Meffert Bibliothek - Marketing-Centrum (MCM) an der Universität Münster NULL 3695 +M1060 HBZ60 6/137 MS: Inst. Epigraphik Gemeinsame Bibliothek des Instituts für Klassische Philologie, des Instituts für Epigraphik und des Seminars für Alte Geschichte NULL 3696 +M1062 HBZ60 6/152 MS: Ägyptol.u.Koptol. Institut für Ägyptologie und Koptologie der Universität Münster NULL 3698 +M1063 HBZ60 6/153 MS: Altorientalistik Institut für Altorientalistik und Vorderasiatische Archäologie der Universität Münster NULL 3699 +M1064 HBZ60 6/154 MS: Arab. u.Islamwiss. Seminar für Arabistik und Islamwissenschaft der Universität Münster NULL 3700 +M1066 HBZ60 6/156 MS: Sinol.u.Ostasienk. Institut für Sinologie und Ostasienkunde der Universität Münster NULL 3702 +M1072 HBZ60 6/163 MS: I.f.Geophysik Institut für Geophysik der Universität Münster NULL 3708 +M1073 HBZ60 6/164 MS: Ethik,Gesch. Medizin Institut für Ethik, Geschichte und Theorie der Medizin der Universität Münster NULL 3709 +M1074 HBZ60 6/165 MS: Ethik u.Angrenz.Soz.-Wiss. Institut für Ethik und Angrenzende Sozialwissenschaften der Universität Münster NULL 3710 +M1075 HBZ60 6/166 MS: Engl. S., Book St. Englisches Seminar, Book Studies der Universität Münster NULL 3711 +M1081 HBZ60 6/175 MS: PharmBiol/Phytoch. Institut für Pharmazeutische Biologie und Phytochemie der Universität Münster NULL 3717 +M1083 HBZ60 6/177 MS: Zivilrechtl. Bibl. Gemeinsame Bibliothek der Zivilrechtlichen Institute der Universität Münster NULL 3719 +M1088 HBZ60 6/182 MS: Neutest.Textfor. Institut für neutestamentliche Textforschung der Universität Münster NULL 3724 +M1092 HBZ60 6/186 MS: Wirt-u.Sozialgesch Institut für Wirtschafts- und Sozialgeschichte der Universität Münster NULL 3728 +M1096 HBZ60 6/190 MS: Byzantinistik Seminar für Byzantinistik der Universität Münster NULL 3732 +M1097 HBZ60 6/191 MS: Nord. Philologie Institut für Nordische Philologie / Skandinavistik der Universität Münster NULL 3733 +M1098 HBZ60 6/192 MS: Latein.Phil., MA u. Neuzeit Seminar für Lateinische Philologie des Mittelalters und der Neuzeit der Universität Münster NULL 3734 +M1099 HBZ60 6/193 MS: Ethnologie Institut für Ethnologie der Universität Münster NULL 3735 +M1100 HBZ60 6/194 MS: Raumplanung Zentralinstitut für Raumplanung an der Universität Münster NULL 3736 +M1101 HBZ60 6/210 MS: Vergl. Städtegesch. Institut für Vergleichende Städtegeschichte an der Universität Münster NULL 3737 +M1109 HBZ60 6/222 MS: Med. Psychologie Institut für Medizinische Psychologie der Universität Münster NULL 3745 +M1127 HBZ60 6/246 MS: Germanist. Inst. Germanistisches Institut, Universität Münster NULL 3763 +M1129 HBZ60 6/248 MS: Historisches Sem. Historisches Seminar der Universität Münster NULL 3765 +M1132 HBZ60 6/251 MS: Sem. Alte Gesch. Gemeinsame Bibliothek des Instituts für Klassische Philologie, des Instituts für Epigraphik und des Seminars für Alte Geschichte NULL 3768 +M1135 HBZ60 6/255 MS: Rom.S./LingFr.Abt. Romanisches Seminar, Linguistische und Französische Abteilung der Universität Münster NULL 3771 +M1138 HBZ60 6/258 MS: Sprachwissenschaft Institut für Sprachwissenschaft der Universität Münster NULL 3774 +M1139 HBZ60 6/259 MS: Indogerm.Sprachw. Seminar für Indogermanische Sprachwissenschaft der Universität Münster NULL 3775 +M1145 HBZ60 6/267 MS: Reproduktionsmed. Centrum für Reproduktionsmedizin und Andrologie (CeRA) NULL 3781 +M1149 HBZ60 6/271 MS: Pharmazeut.Technol Institut für Pharmazeutische Technologie und Biopharmazie, Bibliothek NULL 3785 +M1153 HBZ60 6/275 MS: BWL, Controlling Lehrstuhl für Betriebswirtschaftslehre, insb. Controlling der Universität Münster NULL 3789 +M1154 HBZ60 6/276 MS: Ehrenpreis-Inst. Ehrenpreis-Institut für Swift-Studien an der Universität Münster NULL 3790 +M1155 HBZ60 6/277 MS: Med. Mikrobiologie Institut für Medizinische Mikrobiologie der Universität Münster NULL 3791 +M1160 HBZ60 6/282 MS: Wirtschaftsinform. Institut für Wirtschaftsinformatik der Universität Münster NULL 3796 +M1164 HBZ60 6/286 MS: Musikpädagogik Institut für Musikpädagogik der Universität Münster NULL 3800 +M1170 HBZ60 6/293 MS: Did.d.Mathematik Institut für Didaktik der Mathematik und der Informatik an der Universität Münster NULL 3806 +M1172 HBZ60 6/295 MS: Did.d. Sachunterr. Seminar für Didaktik des Sachunterrichts an der Universität Münster NULL 3808 +M1173 HBZ60 6/296 MS: Did.d.Chemie Institut für Didaktik der Chemie an der Universität Münster NULL 3809 +M1175 HBZ60 6/298 MS: Did. d. Biologie Zentrum für Didaktik der Biologie (ZDB) an der Universität Münster NULL 3811 +M1179 HBZ60 6/304 MS: Agrarinformatik Institut für Agrar- und Forstinformatik der Universität Münster NULL 3815 +M1183 HBZ60 6/308 MS: KindJugendpsychiat Klinik für Kinder- und Jugendpsychiatrie, Psychosomatik und Psychotherapie der Universität Münster NULL 3819 +M1184 HBZ60 6/309 MS: Interd.Balt.Stud. Institut für Interdisziplinäre Baltische Studien der Universität Münster NULL 3820 +M1185 HBZ60 6/311 MS: Univ.-Archiv Universitätsarchiv Münster NULL 3821 +M1192 HBZ60 6/318 MS: Leibniz-Forschung Leibniz-Forschungsstelle der Universität Münster NULL 3828 +M1199 HBZ60 6/325 MS: Interd.Zypernstud Institut für Interdisziplinaere Zypern-Studien der Universität Münster NULL 3835 +M1200 HBZ60 6/326 MS: ITM-Recht Institut für Informations-, Telekommunikations- und Medienrecht der Universität Münster NULL 3836 +M1202 HBZ60 6/328 MS: AS Griechenland Arbeitsstelle Griechenland im Seminar für Byzantinistik der Universität Münster NULL 3838 +M1203 HBZ60 6/329 MS: ITM-Recht, Öff. Recht Institut für Informations-, Telekommunikations- und Medienrecht, Abteilung Öffentliches Recht, Universität Münster NULL 3839 +M1210 HBZ60 6/AUD MS: Biomagnetismus Institut für Biomagnetismus und Biosignalanalyse der Universität Münster NULL 3846 +M1211 HBZ60 6/EXP MS: Exp.Biomechanik Institut für experimentelle Biomechanik der Universität Münster NULL 3847 +M1219 HBZ60 6/334 MS: Musikhochschule Musikhochschule in der Universität Münster NULL 3855 +M1220 HBZ60 6/139a MS: Volkskundl. Komm. Volkskundliche Kommission für Westfalen, Landschaftsverband Westfalen-Lippe NULL 3856 +M1221 HBZ60 6/139b MS: Mundart/Namenf. Kommission für Mundart- und Namenforschung Westfalens, Landschaftsverband Westfalen-Lippe NULL 3857 +M1223 HBZ60 6/336 MS: Religiöse Studien Centrum für Religiöse Studien (CRS) der Universität Münster NULL 3859 +M1225 HBZ60 6/338 MS: Career Service Career Service, Universität Münster NULL 3861 +M5001 HBZ60 836 MS: FHB Fachhochschulbibliothek Münster NULL 3862 +MZ001 EDK50 2749 K: MedienZ Erzbistum Medienzentrale des Erzbistums Köln NULL 3863 +N5001 HBZ60 829 MG/ KR: HSB Niederrhein Hochschulbibliothek der Hochschule Niederrhein in Mönchengladbach/Krefeld NULL 3864 +NL001 HBZ60 ZDB-1-DFL NLZ Frauenliteratur Deutschsprachige Frauenliteratur des 18. und 19. Jahrhunderts NULL 3865 +NL002 HBZ60 ZDB-1-ECC NLZ ECCO Eighteenth Century Collections Online NULL 3866 +NL003 HBZ60 ZDB-1-EEB NLZ EEBO Early English Books Online NULL 3867 +NL004 HBZ60 ZDB-1-ELW NLZ Women´s Literature English Language Women’s Literature of the 18th & 19th centuries NULL 3868 +NL005 HBZ60 ZDB-1-MME NLZ Making of ME The Making of the Modern World: economics, politics and industry NULL 3869 +NL006 HBZ60 ZDB-1-MML NLZ MOML 1 The Making of Modern Law: Legal Treatises 1800 – 1926 / MOML 1 NULL 3870 +NL007 HBZ60 ZDB-1-NEL NLZ NetLibrary E-Books von NetLibrary NULL 3871 +NL008 HBZ60 ZDB-1-WFR NLZ Wales rel.Fict. Wales related Fiction of the Romantic Period NULL 3872 +NL009 HBZ60 ZDB-1-EAI NLZ EAI Early American imprints NULL 3873 +NL010 HBZ60 ZDB-1-TES NLZ TESO Teatro Español del Siglo de Oro NULL 3874 +NL011 HBZ60 ZDB-1-EIO NLZ EIO Editoria italiana online / Monografie NULL 3875 +NL012 HBZ60 ZDB-1-NEF NLZ NEF NetLibrary / kostenfreie Titel NULL 3876 +NL013 HBZ60 ZDB-1-MYA NLZ Mystik&Aszese Mystik & Aszese des 16. – 19. Jahrhunderts NULL 3877 +NL014 HBZ60 ZDB-1-RTH NLZ Relig.&Theologie Religion & Theologie des 16. – 19. Jahrhunderts NULL 3878 +NL015 HBZ60 ZDB-1-SMI NLZ Springer Med. Springer ebook collection / Medicine 2005-2008 [als Nationallizenz] NULL 3879 +NL016 HBZ60 ZDB-1-CLM NLZ litt. médiév. Le Corpus de la littérature médiévale, des origines à la fin du Xve siècle NULL 3880 +NL017 HBZ60 ZDB-1-KEB NLZ Karger Karger eBooks Collection 1997-2009 [Nationallizenz] NULL 3881 +NL018 HBZ60 ZDB-1-BEC NLZ Brill Nijhoff Brill Nijhoff E-Books Collections : Human Rights and Humanitarian Law ; International Law 2006-2008 NULL 3882 +NL019 HBZ60 ZDB-1-RSE NLZ RSC eBook RSC eBook Collection 1968-2009 NULL 3883 +NL020 HBZ60 ZDB-1-DLC NLZ Catholic Reform Digital Library of the Catholic Reformation NULL 3884 +NL021 HBZ60 ZDB-1-DLP NLZ Protestant Texts Digital Library of Classic Protestant Texts NULL 3885 +NL022 HBZ60 ZDB-1-ELC NLZ Elsevier Elsevier e-book collection on ScienceDirect NULL 3886 +NL023 HBZ60 ZDB-1-KBL NLZ K-Barth-Library The Digital Karl Barth Library NULL 3887 +NL024 HBZ60 ZDB-1-CDC NLZ Corvey Dig. Coll. Corvey Digital Collection : Literature of the 18th and 19th Centuries NULL 3888 +NL025 HBZ60 ZDB-1-SOT NLZ Social Theory Social Theory NULL 3889 +NL026 HBZ60 ZDB-1-EMO NLZ Empire Online Empire Online NULL 3890 +NL027 HBZ60 ZDB-1-ATS NLZ Acta Sanctorum Acta Sanctorum Database NULL 3891 +NL028 HBZ60 ZDB-1-CLF NLZ litt. francoph. Corpus de la première littérature francophone de l ?Afrique noire NULL 3892 +NL029 HBZ60 ZDB-1-LCL NLZ LibLatinTextsA Library of Latin Texts / Series A NULL 3893 +NL030 HBZ60 ZDB-1-MOR NLZ MusicOnlineRef Music Online Reference NULL 3894 +NL031 HBZ60 ZDB-1-NAI NLZ N.Am.Immigrant North American Immigrant Letters, Diaries and Oral Histories NULL 3895 +NL032 HBZ60 ZDB-1-WBA WBA E-Library World Bank E-Library Archive NULL 3896 +NL033 HBZ60 ZDB-1-HRA eHRAF World Cul. eHRAF World Cultures NULL 3897 +NL034 HBZ60 ZDB-1-SLN SPR LN 1964-1996 Springer Lecture Notes 1964-1996 NULL 3898 +NL035 HBZ60 ZDB-1-EAP Early Amer. Impr Early American Imprints : Shaw/Shoemaker 1801-1819 (Series II) / EAI NULL 3899 +O9002 HBZ60 Bet 1 BI: B KiHo Bethel Bibliothek der Kirchlichen Hochschule Bethel, Bielefeld NULL 3900 +O9004 HBZ60 Bm 53 BO: StArchiv Stadtarchiv Bochum NULL 3901 +O9005 HBZ60 Bo 131 BN: Sanitätsamt B'wehr Sanitätsamt der Bundeswehr Bonn, Bibliothek und Fachinformationsstelle NULL 3902 +O9006 HBZ60 Bo 133 BN: B FES Bibliothek der Friedrich-Ebert-Stiftung Bonn NULL 3903 +O9007 HBZ60 Bo 404 BN: DRZE Bibliothek/Dokumentation des Deutschen Referenzzentrums für Ethik in den Biowissenschaften der Universität Bonn NULL 3904 +O9008 HBZ60 Bo 405 BN: Dt. Archäol. Inst. Deutsches Archäologisches Institut (DAI), Kommission für Allgemeine und Vergleichende Archäologie Bonn NULL 3905 +O9009 HBZ60 Det 2 DT: BA Getreideforsch. Bundesanstalt für Getreide-, Kartoffel- und Fettforschung, Detmold NULL 3906 +O9010 HBZ60 Dü 48 D: FachB Frauendiakonie Fachbibliothek für Frauendiakonie und Fliedner-Archiv, Düsseldorf-Kaiserswerth NULL 3907 +O9012 HBZ60 Dü 59 D: Gerhart-Hauptmann-Hs Stiftung Gerhart-Hauptmann-Haus, Deutsch-Osteuropäisches Forum, Düsseldorf NULL 3908 +O9014 HBZ60 221 Bocholt: StB Stadtbibliothek Bocholt NULL 3909 +O9016 HBZ60 Jül 1 Jülich: ZB Forsch.ztr. Forschungszentrum Jülich GmbH, Zentralbibliothek NULL 3911 +O9017 HBZ60 Kn 125 K: Germania Judaica Germania Judaica, Kölner Bibliothek zur Geschichte des deutschen Judentums e.V. NULL 3912 +O9018 HBZ60 Kn 131 K: B British Council British Council, British Studies Information Centre, Köln (kein Leihverkehr mehr!) NULL 3913 +O9020 HBZ60 Le 1 LEV: Kekulé-B Kekulé-Bibliothek der Bayer AG Leverkusen (kein Leihverkehr mehr!) NULL 3914 +O9021 HBZ60 Rem 4 RS: B Dt. Werkzeugmus. Historisches Zentrum/Deutsches Werkzeugmuseum, Bibliothek, Remscheid NULL 3915 +O9023 HBZ60 211 PB: Erzb. Akad. B Erzbischöfliche Akademische Bibliothek, Paderborn NULL 3916 +O9024 HBZ60 Bo 56 BN: Rhein. Kliniken Rheinische Kliniken, Bibliothek NULL 3917 +O9025 HBZ60 Bo 59 BN: Beethoven-Archiv Beethoven-Archiv, Bibliothek NULL 3918 +O9026 HBZ60 Bo 102 Berlin: BMAS Bundesministerium für Arbeit und Soziales NULL 3919 +O9027 HBZ60 Bo 127 Bonn: Museum König Zoologisches Forschungsmuseum Alexander König NULL 3920 +O9028 HBZ60 Bo 146 BN: MPI Radioastronomie Max-Planck-Institut für Radioastronomie, Bibliothek NULL 3921 +O9029 HBZ60 Bo 170 Bonn: Bischöfl. Sem. Bischöfliches Seminar und Konvikt Johanneum. NULL 3922 +O9030 HBZ60 Bo 171 BN: Coll. Albertinum Collegium Albertinum, Bibliothek NULL 3923 +O9032 HBZ60 Bo 196 BN: Rob.-Schumann-Inst. Robert-Schumann-Institut an der Universität Bonn, Bibliothek NULL 3925 +O9033 HBZ60 Bo 206 BN: MPI f. Mathematik Max-Planck-Institut für Mathematik, Bibliothek NULL 3926 +O9034 HBZ60 Grv 1 Grevenbroich: PfarrB Alte Pfarrbibliothek der Katholischen Pfarrei St. Georg Grevenbroich-Neu-Elfgen NULL 3927 +O9035 HBZ60 Brl 1 Brü hl: Max-Ernst-Gymn. Max-Ernst-Gymnasium der Stadt Brühl (MEG), Bibliothek im Selbstlernzentrum NULL 3928 +O9036 HBZ60 Hen 2 Hennef: Stadtarchiv Stadtarchiv Hennef, Bibliothek NULL 3929 +O9037 HBZ60 Zlp 1 Zü lpich: Stadtarchiv Stadtarchiv Zülpich, Kapuziner-Bibliothek NULL 3930 +O9038 HBZ60 Hzr 1 AC: Pfarre Bibl.Turck Archiv der Pfarre St. Gertrud (St. Mariae Himmelfahrt), Bibliothek Turck NULL 3931 +O9039 HBZ60 Kn 195 K: Oberlandesgericht Oberlandesgericht Köln, Bibliothek NULL 3932 +O9040 HBZ60 Jhn1 Jü chen: Gemeindearchiv Gemeindearchiv Jüchen, Bibliothek NULL 3933 +Q0001 HBZ60 5 Bonn: ULB Universitäts- und Landesbibliothek Bonn NULL 3934 +Q0002 HBZ60 5 M Bonn: ULB, Med. Abt. Universitäts- und Landesbibliothek Bonn, Medizinische Abteilung NULL 3935 +Q0003 HBZ60 5 N Bonn: ULB, Abt. Med. Nat. Universitäts- und Landesbibliothek Bonn, Abteilungsbibliothek Medizin, Naturwissenschaften und Landbau NULL 3936 +Q1004 HBZ60 5/108 Bonn: FB. Theologie Fachbibliothek Ev. - Kath. Theologie der Universität Bonn NULL 3940 +Q1005 HBZ60 5/11 Bonn: Geographie Geographisches Institut der Universität Bonn NULL 3941 +Q1007 HBZ60 5/113 Bonn: Meteorologie Institut für Geowissenschaften, Abt. Meteorologie der Universität Bonn NULL 3943 +Q1013 HBZ60 5/12 Bonn: Geologie Institut für Geowissenschaften, Abt. Geologie der Universität Bonn NULL 3949 +Q1015 HBZ60 5/121 Bonn: Diskrete Mathematik Forschungsinstitut fuer Diskrete Mathematik - Institut fuer Oekonometrie und Operations Research, Abt. perations Research, Bibliothek. NULL 3951 +Q1016 HBZ60 5/13 Bonn: Germanistik Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft der Universität Bonn NULL 3952 +Q1020 HBZ60 5/136 Bonn: F.-J.-Dölger-Institut Franz-Joseph-Dölger-Institut zur Erforschung der Spätantike der Universität Bonn, Bibliothek NULL 3956 +Q1024 HBZ60 5/14 Bonn: FB. Mathematik FB Mathematik der Universität Bonn NULL 3960 +Q1026 HBZ60 5/141 Bonn: Orient. Asienwiss. Institut für Orient- und Asienwissenschaften (IOA) NULL 3962 +Q1027 HBZ60 5/142 Bonn: Internat. Privatrecht Institut für Internationales Privatrecht und Rechtsvergleichung der Universität Bonn NULL 3963 +Q1036 HBZ60 5/161 Bonn: Osteurop. Geschichte Institut für Geschichtswissenschaft, Abt. Osteuropäische Geschichte NULL 3972 +Q1037 HBZ60 5/162 Bonn: Politik Soziologie Institut für Politische Wissenschaft und Soziologie NULL 3973 +Q1043 HBZ60 5/169 Bonn: Altkath. Seminar Altkatholisches Seminar der Universität Bonn NULL 3979 +Q1044 HBZ60 5/17 Bonn: Chemie Kekulé-Institut für Organische Chemie und Biochemie / Institut für Anorganische Chemie der Universität Bonn NULL 3980 +Q1045 HBZ60 5/175 Bonn: Sprachwissenschaft Institut für Sprach-, Medien- und Musikwissenschaft, Abt. Interkulturelle Kommunikation und Mehrsprachigkeitsforschung der Universität Bonn NULL 3981 +Q1046 HBZ60 5/181 Bonn: Arbeitsrecht Institut für Arbeitsrecht und Recht der Sozialen Sicherheit der Universität Bonn NULL 3982 +Q1047 HBZ60 5/182 Bonn: Kriminolog. Sem. Kriminologisches Seminar der Universität Bonn NULL 3983 +Q1048 HBZ60 5/183 Bonn: Öff. Recht Institut für Öffentliches Recht der Universität Bonn NULL 3984 +Q1049 HBZ60 5/184 Bonn: Römisches Recht Institut für Römisches Recht und Vergleichende Rechtsgeschichte der Universität Bonn NULL 3985 +Q1050 HBZ60 5/185 Bonn: Rechtsphilos. Sem. Rechtsphilosophisches Seminar der Universität Bonn NULL 3986 +Q1051 HBZ60 5/186 Bonn: Steuerrecht Institut für Steuerrecht der Universität Bonn NULL 3987 +Q1052 HBZ60 5/187 Bonn: Strafrecht Institut für Strafrecht der Universität Bonn NULL 3988 +Q1055 HBZ60 5/190 Bonn: Zivilverf.recht Institut für deutsches und internationales Zivilverfahrensrecht der Universität Bonn NULL 3991 +Q1062 HBZ60 5/198 Bonn: Kulturanthropolog. Institut für Archäologie und Kulturanthropologie / Abt. Kulturanthropologie/Volkskunde NULL 3998 +Q1064 HBZ60 5/20 Bonn: Geschichtswiss. Institut für Geschichtswissenschaft der Universität Bonn NULL 4000 +Q1070 HBZ60 5/205 Bonn: Archiv der Univers. Archiv der Universität Bonn, Bibliothek NULL 4006 +Q1074 HBZ60 5/21 Bonn: Griech.Latein.Phil. Institut für Klassische und Romanische Philologie, Abt. Griechische und Lateinische Philologie NULL 4010 +Q1085 HBZ60 5/22 Bonn: Romanistik Klassische und Romanische Philologie, Abt. Romanische Philologie NULL 4021 +Q1091 HBZ60 5/225 Bonn: ZEF / ZEI Zentrum für Europäische Integrationsforschung, Zentrum für Entwicklungsforschung NULL 4027 +Q1097 HBZ60 5/26 Bonn: Voelkerrecht Institut für Völkerrecht NULL 4033 +Q1100 HBZ60 5/3 Bonn: Nees-Institut Nees-Institut fuer Biodiversitaet der Pflanzen NULL 4036 +Q1101 HBZ60 5/30 Bonn: Physikalisches Inst. Physikalisches Institut der Universität Bonn NULL 4037 +Q1103 HBZ60 5/32 Bonn: Hygiene-Institut Zentrum für Hygiene und Medizinische Mikrobiologie, Institut für Hygiene und Öffentliche Gesundheit NULL 4039 +Q1105 HBZ60 5/34 Bonn:Juristisches Seminar Juristisches Seminar der Universität Bonn, Bibliothek NULL 4041 +Q1106 HBZ60 5/35 Bonn: Handelsrecht Institut für Handels- und Wirtschaftsrecht der Universität Bonn, Bibliothek NULL 4042 +Q1107 HBZ60 5/39 Bonn: Rhein. Landesgesch. Institut für Geschichtswissenschaft, Abt. Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte der Universität Bonn NULL 4043 +Q1108 HBZ60 5/4 Bonn: Anglistik Institut für Anglistik, Amerikanistik und Keltologie NULL 4044 +Q1109 HBZ60 5/41 Bonn: Medical Humanities Institute for Medical Humanities der Universität Bonn NULL 4045 +Q1119 HBZ60 5/51 Bonn: Psychologie Institut für Psychologie der Universität Bonn NULL 4055 +Q1130 HBZ60 5/52 Bonn: Pharmazie Pharmazeutisches Institut der Universität Bonn NULL 4056 +Q1133 HBZ60 5/58 Bonn: Medien-/Musikwiss. Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft der Universität Bonn NULL 4059 +Q1135 HBZ60 5/60 Bonn: Ägyptologie Institut für Archäologie und Kulturanthropologie, Abt. Ägyptologie NULL 4061 +Q1136 HBZ60 5/61 Bonn: ILR Institut für Lebensmittel- und Ressourcenökonomik (ILR) NULL 4062 +Q1141 HBZ60 5/68 Bonn: Physikal. Chemie Institut für Physikalische und Theoretische Chemie der Universität Bonn NULL 4067 +Q1142 HBZ60 5/7 Bonn: Kunstgeschichte Kunsthistorisches Institut NULL 4068 +Q1146 HBZ60 5/74 Bonn: Alte Geschichte Institut für Geschichtswissenschaft, Abt. Alte Geschichte NULL 4072 +Q1147 HBZ60 5/76 Bonn: Staatswiss. Sem. Staatswissenschaftliches Seminar der Universität Bonn NULL 4073 +Q1148 HBZ60 5/79 Bonn: Kirchenrechtl. Inst. Kirchenrechtliches Institut der Universität Bonn NULL 4074 +Q1149 HBZ60 5/8 Bonn: Klass. Archäologie Institut für Archäologie und Kulturanthropologie, Abt. Klassische Archäologie NULL 4075 +Q1151 HBZ60 5/82 Bonn: Städtebau Institut für Geodäsie und Geoinformation der Universität Bonn NULL 4077 +Q1157 HBZ60 5/90 Bonn: Philosophie Institut für Philosophie der Universität Bonn (IPHIL) NULL 4083 +Q1160 HBZ60 5/95 Bonn: Rechtsgeschichte Institut für deutsche und rheinische Rechtsgeschichte der Universität Bonn NULL 4086 +Q1162 HBZ60 5/97 Bonn: Altamerikanistik Institut für Archäologie und Kulturanthropologie, Abt. Altamerikanistik/Ethnologie der Universität Bonn NULL 4088 +Q1163 HBZ60 5/99 Bonn: Frühgesch. Archäol. Institut für Archäologie und Kulturanthropologie, Abt. Vor- und Frühgeschichtliche Archäologie NULL 4089 +Q1164 HBZ60 B 48 Bonn: BVA Bundesversicherungsamt, Bibliothek NULL 4090 +Q1166 HBZ60 B 1509 Bonn: BI Berufsbildung Bundesinstitut für Berufsbildung, Bibliothek NULL 4092 +Q1167 HBZ60 B 1512 Bonn: BfArM Bundesinstitut für Arzneimittel und Medizinprodukte (BfArM), Bibliothek NULL 4093 +Q1170 HBZ60 5/180 Bonn: Inst. Familienrecht Institut für Deutsches, Europäisches und Internationales Familienrecht NULL 4096 +QL001 HBZ60 98 : ZB MED Bonn Bibliothek: Deutsche Zentralbibliothek für Medizin, Standort Bonn [Bis 2000 :] Deutsche Zentralbibliothek für Landbau-wissenschaften, Bonn NULL 4097 +R0001 HBZ60 929 KO: Rhein. LB Rheinische Landesbibliothek, Koblenz NULL 4098 +R0002 HBZ60 Zw 1 : Bipontina Bibliotheca Bipontina, Zweibrücken NULL 4099 +R0003 HBZ60 107 SP: PLB Speyer Pfälzische Landesbibliothek, Speyer NULL 4100 +R1001 HBZ60 Kob 1 KO: Landeshauptarchiv Landeshauptarchiv Koblenz, Bibliothek NULL 4101 +R1002 HBZ60 Kob 2 KO: B BA Gewässerkde Bundesanstalt für Gewässerkunde, Bibliothek, Koblenz NULL 4102 +R1003 HBZ60 Kob 3 KO: B BA Wehrtechnik Bundesamt für Wehrtechnik und Beschaffung, Fachinformationsstelle, Koblenz NULL 4103 +R1004 HBZ60 Mch 1 Maria-Laach: B Abtei Benediktinerabtei Maria Laach, Bibliothek, Maria Laach NULL 4104 +R1005 HBZ60 69 KO: StB Stadtbibliothek Koblenz NULL 4105 +R1006 HBZ60 977 Andernach: StBü Stadtbücherei Andernach NULL 4106 +R1007 HBZ60 987 KO: HSB Koblenz Bibliothek der Hochschule Koblenz, RheinMoselCampus NULL 4107 +R1008 HBZ60 992 Vallendar: B WHU Wissenschaftliche Hochschule für Unternehmensführung (Otto-Beisheim-Hochschule), Bibliothek, Vallendar NULL 4108 +R1009 HBZ60 Kob 9 KO: Oberverw.-gericht Oberverwaltungsgericht Rheinland-Pfalz, Koblenz NULL 4109 +R2001 HBZ60 1105 Remagen: HSB Koblenz Bibliothek der Hochschule Koblenz, RheinAhrCampus Remagen NULL 4110 +SC001 HBZ60 HBZ/Schul 1 K: Hauptbibliothek Sigel und Ownerdefinition für das ALEPH 500-Schulungssystem des HBZ NULL 4111 +SC002 HBZ60 HBZ/Schul 2 K: Institut A Sigel und Ownerdefinition für das ALEPH 500-Schulungssystem des HBZ NULL 4112 +SC003 HBZ60 HBZ/Schul 3 K: Institut B Sigel und Ownerdefinition für das ALEPH 500-Schulungssystem des HBZ NULL 4113 +SD001 HBZ60 Bo 410 BN: DIE-Bibliothek Deutsches Institut für Erwachsenenbildung Bibliothek NULL 4114 +SK001 HBZ60 Kn 185 K: Bibl. u. Mediathek Bibliothek der Kunsthochschule für Medien, Köln NULL 4115 +SM001 HBZ60 Bed 1 KLE: Museumsbibl. Moyland Museumsbibliothek der Stiftung Museum Schloss Moyland, Sammlung van der Grinten, Joseph Beuys Archiv des Landes Nordrhein-Westfalen, Bedburg-Hau NULL 4116 +T0001 HBZ60 Tr 1 TR: B Rhein. L´museum Rheinisches Landesmuseum Trier, Bibliothek NULL 4117 +T0002 HBZ60 Tr 16 TR: Dt. Liturg. Inst. Deutsches Liturgisches Institut, Bibliothek, Trier NULL 4118 +T0003 HBZ60 Tr 17 TR: SemB Weiße Väter Afrikamissionare-Weiße Väter, Seminarbibliothek, Trier NULL 4119 +T0005 HBZ60 Tr 19 TR: B Inst.Arb.recht EG Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Gemeinschaft, Trier NULL 4121 +T0007 HBZ60 Tr 20 TR: B Abtei St. Matthias Abtei St. Matthias, Bibliothek, Trier NULL 4122 +T0008 HBZ60 Tr 3 Bernkastel-K. : Biol. BA Biologische Bundesanstalt für Land- und Forstwirtschaft Bernkastel-Kues, Institut fuer Pflanzenschutz im Weinbau, Haus Gauß, Bibliothek NULL 4123 +T0009 HBZ60 Tr 7 TR: Staatl. L´u.V´A Lw. Staatliche Lehr- und Versuchsanstalt für Landwirtschaft, Weinbau und Gartenbau, Bibliothek, Trier NULL 4124 +T0010 STR50 121 TR: StB Stadtbibliothek Trier NULL 4125 +T0012 HBZ60 Tr 5 TR: HSB Trier Bibliothek der Hochschule Trier NULL 4126 +T0013 HBZ60 1042 Birkenfeld: HSB Trier Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek NULL 4127 +U0001 HBZ60 290 DO: UB Universitätsbibliothek Dortmund NULL 4128 +U5001 HBZ60 Dm 13 DO: FHB Dortmund Fachhochschulbibliothek Dortmund NULL 4154 +V0001 HBZ60 1018 Witten/Herdecke: UB Universitätsbibliothek Witten/Herdecke NULL 4155 +X5001 HBZ60 Dü 62 D: HSB Düsseldorf Hochschulbibliothek der Hochschule Düsseldorf NULL 4156 +Y9001 HBZ60 133 BO: Stadtarchiv Stadtarchiv und wissenschaftliche Stadtbibliothek Bonn NULL 4157 +Y9002 HBZ60 171 WES: StBü Stadtbücherei Wesel NULL 4158 +Y9003 HBZ60 227 GM: KrStBü Kreis- und Stadtbücherei Gummersbach NULL 4159 +Y9004 HBZ60 230 HF: StB Stadtbibliothek Herford NULL 4160 +Y9005 HBZ60 236 Iserlohn: StBü Stadtbücherei Iserlohn NULL 4161 +Y9006 HBZ60 247 Lüdenscheid: StBü Stadtbücherei Lüdenscheid NULL 4162 +Y9007 HBZ60 249 MI: StB Stadtbibliothek Minden NULL 4163 +Y9009 HBZ60 268 Ratingen: StBü Stadtbücherei Ratingen NULL 4164 +Y9011 HBZ60 272 Schwelm: StBü Stadtbücherei Schwelm NULL 4166 +Y9012 HBZ60 273 SU: StB Siegburg Stadtbibliothek Siegburg GmbH NULL 4167 +Y9014 HBZ60 278 SO: StArchiv StB Stadtarchiv und wissenschaftliche Stadtbibliothek Soest NULL 4168 +Y9015 HBZ60 287 Strausberg: Akad.B'wehr Akademie der Bundeswehr für Information und Kommunikation, Fachinformationsstelle und Regionale Fachinformationsleitstelle Ost; 15344 Strausberg (bei Berlin) NULL 4169 +Y9018 HBZ60 371 GT: StB Stadtbibliothek Gütersloh NULL 4170 +Y9019 HBZ60 372 Lage: StBü Stadtbücherei Lage/Lippe NULL 4171 +Y9020 HBZ60 373 Meschede: StBü Stadtbücherei Meschede NULL 4172 +Y9021 HBZ60 374 Rheine: StBü Stadtbücherei Rheine NULL 4173 +Y9023 HBZ60 379 UN: StB Stadtbibliothek Unna NULL 4174 +Y9024 HBZ60 387 Altena: StBü Stadtbücherei Altena/Westfalen NULL 4175 +Y9025 HBZ60 388 Bad-Salzuflen: StBü Stadtbücherei Bad Salzuflen NULL 4176 +Y9026 HBZ60 393 J ü lich: StBü Stadtbücherei Jülich NULL 4177 +Y9027 HBZ60 397 Dü lmen: StBü Stadtbücherei Dülmen NULL 4178 +Y9028 HBZ60 399 Bad-Honnef: StBü Stadtbücherei Bad Honnef NULL 4179 +Y9030 HBZ60 412 Datteln: StBü Stadtbücherei Datteln NULL 4180 +Y9031 HBZ60 415 Erkelenz: KrStBü Kreis- u. Stadtbücherei Erkelenz NULL 4181 +Y9032 HBZ60 423 Warendorf: StBü Stadtbücherei Warendorf NULL 4182 +Y9033 HBZ60 431 Ennepetal: StBü Stadtbücherei Ennepetal NULL 4183 +Y9034 HBZ60 436 Kempen: KrStBü Kreis- u. Stadtbibliothek Kempen NULL 4184 +Y9035 HBZ60 444 KLE: StBü Stadtbücherei Kleve NULL 4185 +Y9037 HBZ60 446 Stolberg/Rhld: StBü Stadtbücherei Stolberg/Rheinland NULL 4186 +Y9038 HBZ60 448 OE: StBü Stadtbücherei Olpe NULL 4187 +Y9039 HBZ60 453 SI: StBü Stadtbücherei Siegen NULL 4188 +Y9040 HBZ60 454 SO: StBü Stadtbücherei Soest NULL 4189 +Y9042 HBZ60 710 D: Heinrich-Heine-Inst. Heinrich-Heine-Institut Düsseldorf NULL 4190 +Y9043 HBZ60 713 Würselen: StBü Stadtbücherei Würselen NULL 4191 +Y9044 HBZ60 714 Oelde: StBü Stadtbücherei Oelde NULL 4192 +Y9045 HBZ60 733 HX: StBü Stadtbücherei Höxter NULL 4193 +Y9046 HBZ60 734 Lemgo: StBü Stadtbücherei Lemgo NULL 4194 +Y9047 HBZ60 738 ST: StBü Stadtbücherei Steinfurt NULL 4195 +Y9048 HBZ60 741 Rheda-Wiedenbrück: StB Stadtbibliothek Rheda-Wiedenbrück NULL 4196 +Y9050 HBZ60 745 Gevelsberg: StBü Stadtbücherei Gevelsberg NULL 4198 +Y9051 HBZ60 765 Brilon: StBü Stadtbücherei Brilon NULL 4199 +Y9052 HBZ60 831 Beckum-Neubeckum: StBü Stadtbücherei Beckum-Neubeckum NULL 4200 +Y9053 HBZ60 A 2 AC: B Kaiser-Karls-Gym. Kaiser-Karls-Gymnasium, Lehrerbibliothek, Aachen NULL 4201 +Y9054 HBZ60 Bg 1 ST: B Gymn. Arnoldinum Hohe Schule Gymnasium Arnoldinum, Steinfurt, Bibliothek NULL 4202 +Y9055 HBZ60 Bg 2 ST: PfarrB St.Nikomedes Pfarrbibliothek St. Nikomedes, Steinfurt-Borghorst NULL 4203 +Y9056 HBZ60 Bi 15 BI: B LKA Bibliothek des Landeskirchenamtes Bielefeld, Synodalbibliothek NULL 4204 +Y9057 HBZ60 Bi 7 BI: B Städt. Ratsgymn. Bibliothek des Städtischen Ratsgymnasiums Bielefeld NULL 4205 +Y9058 HBZ60 Bi 8 BI: B d Landeskirchenamt. Pfarrbibliothek Hagen-Hohenlimburg in der Bibliothek des Landeskirchenamtes, Bielefeld NULL 4206 +Y9059 HBZ60 Bm 11 BO: FakB Geschichtswiss NULL 4207 +Y9060 HBZ60 Bm 18 BO: FakB Wirtsch.wiss. Fakultätsbibliothek für Wirtschaftswissenschaft der Ruhr-Universität Bochum (=Bm18) NULL 4208 +Y9062 HBZ60 Bm 39 BO: Rechtswissensch. Zentrales Rechtswissenschaftliches Seminar der Ruhr-Universität Bochum, Bibliothek (=Bm39) NULL 4209 +Y9063 HBZ60 Bo 400 BN: B Argent.Kulturinst Domingo Faustino Sarmiento Instituto Argentino de Cultura (Argentinisches Kulturinstitut), Bibliothek, Bonn NULL 4210 +Y9064 HBZ60 Cla 1 Herzebrock-Clarholz:PfB Pfarr-Bibliothek St. Laurentius, Herzebrock-Clarholz NULL 4211 +Y9065 HBZ60 Dü 20 : ZB der Bundeswehr Ehemalige Zentralbibliothek der Bundeswehr Düsseldorf (jetzt in 287) NULL 4212 +Y9066 HBZ60 Dü 28 D: B VDI Ehemalige VDI-Bücherei Dü sseldorf: geschlossen, Bestände übergeben an das Museum für Verkehr und Technik, 10963 Berlin, Trebbiner Str. 9 (dort z.T. verfügbar, noch kein Sigel ) NULL 4213 +Y9067 HBZ60 Dü 51 BO: B DGB Ehemalige Bibliothek des Deutschen Gewerkschaftsbundes (DGB) Düsseldorf (jetzt in Bo 133) NULL 4214 +Y9068 HBZ60 Dü 58 D: B Städt.Görres-Gymn. Städtisches Görres-Gymnasium, Lehrerbibliothek, Düsseldorf NULL 4215 +Y9069 HBZ60 Dü 63 D: B Goethe-Museum Goethe-Museum, Anton- und Katharina-Kippenberg-Stiftung, Bibliothek, Düsseldorf NULL 4216 +Y9070 HBZ60 Dü 65 D: Landeskirchl. B Landeskirchliche Bibliothek der Ev. Kirche im Rheinland, Düsseldorf NULL 4217 +Y9071 HBZ60 Eus 2 EU: Histor. KrB Historische Kreisbibliothek, Euskirchen NULL 4218 +Y9072 HBZ60 Gk 1 Goch: Bibl.domus presb. Bibliotheca domus presbyterorum Gaesdonck, Goch NULL 4219 +Y9075 HBZ60 Hef 1 HF: Bü Friedrichs-Gymn. Friedrichs-Gymnasium, Lehrerbücherei, Herford NULL 4220 +Y9076 HBZ60 Hör 1 Hörstel: B Kl. Gravenh. Ehemaliges Zisterzienserinnenkloster Gravenhorst, Bibliothek, Hörstel NULL 4221 +Y9077 HBZ60 Hür 1 Hürth- Gleuel: PfarrB Alte Pfarrbibliothek St. Dionysius, Hürth-Gleuel NULL 4222 +Y9078 HBZ60 Kn 120 K: Slavisches Institut Slavisches Institut der Universität Köln NULL 4223 +Y9079 HBZ60 Kn 126 K: Niederl. Philologie Institut für Niederländische Philologie der Universität Köln (s. auch 38/406) NULL 4224 +Y9080 HBZ60 Kn 166 K: Inst. d. dt. Wirtsch Institut der deutschen Wirtschaft Köln NULL 4225 +Y9081 HBZ60 Kn 18 K: Theaterwiss. (Wahn) Bibliothek des Instituts für Theaterwissenschaft der Universität Köln (s. auch 38/429) NULL 4226 +Y9082 HBZ60 Kn 55 KS: B AGP AGP-Fachbücherei der Arbeitsgemeinschaft Partnerschaft in der Wirtschaft, Kassel NULL 4227 +Y9083 HBZ60 Kv 1 Kevelaer: B Oratorium K Oratorium Kevelariense, Bibliothek, Kevelaer NULL 4228 +Y9084 HBZ60 Mg 2 MG: B Wiss.u.Weisheit Bibliothek Wissenschaft und Weisheit, Mönchengladbach NULL 4229 +Y9085 HBZ60 Ml 1 Mü nstereifel:St.Michael St. Michael-Gymnasium, Lehrerbücherei, Bad Münstereifel NULL 4230 +Y9086 HBZ60 Mtl 1 Metelen: PfarrB Pfarrbibliothek St. Cornelius und Cyprianus, Metelen NULL 4231 +Y9087 HBZ60 Mü 27 MS: B Westf.Landesmus, Bibliothek des Westfälischen Landesmuseums für Kunst und Kulturgeschichte, Bibliothek Sammlung Levin Schücking, Münster NULL 4232 +Y9088 HBZ60 Mü 73 MS: DiözesanB Diözesanbibliothek Münster NULL 4233 +Y9089 HBZ60 Net 1 Nettetal: B Birgittenkl Bibliothek des ehemaligen Birgittenklosters Kaldenkirchen, Nettetal NULL 4234 +Y9090 HBZ60 Ob 1 OB: MAN GHH Borsig MAN Turbomaschinen AG, GHH Borsig (Gutehoffnungshütte) : Normen, Technische Bibliothek, Abteilung MKI/N NULL 4235 +Y9091 HBZ60 Rn 1 BN: BA Bauwesen R'ordn. Bundesamt für Bauwesen und Raumordnung (BBR), Bibliothek, Bonn NULL 4236 +Y9092 HBZ60 Se 1 Senden-Bö sens:B Nünning Bibliothek Nünning, Senden-Bösensell NULL 4237 +Y9093 HBZ60 Vln 1 Balve:B Landsberg-Velen Bibliothek Landsberg-Velen, Schloß Wocklum, Balve/Westf. NULL 4238 +Y9094 HBZ60 Vlo 1 Vlotho:Ges.europ.Studw. Gesamteuropäisches Studienwerk Vlotho, Bibliothek (geschlossen) NULL 4239 +Y9095 HBZ60 Wit 1 Witten: B Orts-/Heimatk Bibliothek des Vereins für Orts- und Heimatkunde in der Grafschaft Mark, Witten NULL 4240 +Y9096 HBZ60 Wrf 1 Warendorf: PfarrB Milte Pfarr-Bibliothek St. Johannes Milte, Warendorf NULL 4241 +Y9097 HBZ60 Wrl 1 Werl-Wedinghsn: PfarrB Pfarr-Bibliothek der Propstei St. Walburga + Slg. Heese, Werl-Wedinghausen NULL 4242 +Y9098 HBZ60 X 1 Xanten: StiftsB St.Viktor Katholische Propsteigemeinde St. Viktor, Stiftsbibliothek, Xanten NULL 4243 +Y9099 HBZ60 Dü 69 D: MinB MSWWF Ministerium für Schule und Weiterbildung, Wissenschaft und Forschung des Landes Nordrhein-Westfalen, Bibliothek, Düsseldorf NULL 4244 +Y9101 HBZ60 290 E DO: B Eisenbahngesch., Bibliothek für Eisenbahngeschichte in der Universitätsbibliothek Dortmund (s. auch 290/DGE) NULL 4245 +Y9102 HBZ60 Mü 78 MS: B der Kapuziner Bibliothek der Kapuziner (Kapuzinerkloster), Münster NULL 4246 +Y9103 HBZ60 248 Lü nen: StBü Stadtbücherei Lünen NULL 4247 +Y9104 HBZ60 00 : Ohne Bestand Nur bibliographischer Nachweis, kein Bestand NULL 4248 +Y9105 HBZ60 Kow 1 Kö nigswinter: B Siebeng Siebengebirgsmuseum, Bibliothek, Königswinter NULL 4249 +Y9106 HBZ60 Bri 2 Brilon: PropsteiB Propstei St. Petrus und Andreas, Brilon, Propsteibibliothek NULL 4250 +Z9003 HBZ60 Dm 11 DO: B Inst.f.Zeitungsf. Institut für Zeitungsforschung der Stadt Dortmund, Bibliothek, Dortmund NULL 4252 +Z9005 HBZ60 Kn 133 K: B IHK Industrie- und Handelskammer zu Köln, Wirtschaftsbibliothek NULL 4253 +Z9007 HBZ60 131 BI: StB Stadtbibliothek Bielefeld NULL 4254 +Z9014 HBZ60 217 NE: StB Stadtbibliothek Neuss NULL 4255 +Z9020 HBZ60 242 BOT: StBü Stadtbücherei Bottrop NULL 4256 +Z9021 HBZ60 243 RS: StBü Stadtbücherei Remscheid NULL 4257 +Z9022 HBZ60 260 MG: StB Stadtbibliothek Mönchengladbach NULL 4258 +Z9024 HBZ60 364 HER: Martin-Opitz-B Martin-Opitz-Bibliothek, Herne NULL 4259 +Z9027 HBZ60 405 Ahlen: StBü Stadtbücherei Ahlen NULL 4260 +Z9029 HBZ60 52 AC: ÖB Öffentliche Bibliothek Aachen NULL 4261 +Z9030 HBZ60 60 DO: StLB Stadt- und Landesbibliothek Dortmund NULL 4262 +Z9031 HBZ60 62 W: StB Stadtbibliothek Wuppertal NULL 4263 +Z9033 HBZ60 761 Bad-Oeynhausen: StBü Stadtbücherei Bad Oeynhausen NULL 4264 +Z9034 HBZ60 Kow 2 SU: H. Schlesien B Haus Schlesien, Bibliothek, Königswinter NULL 4265 +Z9035 HBZ60 Sol 1 SG: Stadtarchiv Stadtarchiv Solingen, Bibliothek NULL 4266 +Z9047 HBZ60 Rag 1 ME: Haus Oberschlesien Stiftung Haus Oberschlesien, Ratingen NULL 4269 +Z9049 HBZ60 E 10 Essen: Mus. Folkwang Bib. Museum Folkwang, Museumsbibliothek, Essen NULL 4270 +Z9050 HBZ60 927 DÜ W: StBü Stadtbücherei Bad Dürkheim NULL 4271 +Z9051 HBZ60 Kn 192 K: CSG Centrum Schwule Geschichte NULL 4272 +Z9052 HBZ60 Bi 12 BI: Kunsthalle Kunsthalle Bielefeld NULL 4273 +Z9054 HBZ60 918 St.Aug.: K.-Adenauer-St. Konrad?Adenauer?Stiftung in St. Augustin NULL 4274 +Z9057 HBZ60 2192 K: Mus. Schnütgen Bibl. Museum Schnütgen, Bibliothek, Köln NULL 4275 +Z9058 HBZ60 Kn 39 K: Stadtmuseum Kölnisches Stadtmuseum, Bibliothek NULL 4276 +R5005 DWTIT B 23 : OF: DWD Deutsche Meteorologische Bibliothek (DWD), Offenbach NULL 4277 +X6001 KAD50 Dü 18 D: Kunstakad. Bibliothek der Kunstakademie Düsseldorf NULL 4278 +Z9039 KHLOK 1032 K: Kath. Hochschule NRW Katholische Hochschule Nordrhein-Westfalen, Bibliothekszentrale und Abteilungsbibliotheken NULL 4279 +R3001 KLU50 386 KL: UB Kaiserslautern Universitätsbibliothek Kaiserslautern NULL 4280 +R3002 KLU50 386/02 KL: BB ARUBI Bereichsbibliothek Architektur/Raum- und Umweltplanung/Bauingenieurwesen NULL 4281 +R3012 KLU50 386/12 KL: BB EIT Bereichsbibliothek Elektro- und Informationstechnik NULL 4282 +R3014 KLU50 386/14 KL: BB BIO Bereichsbibliothek Biologie NULL 4283 +R3032 KLU50 386/32 KL: ZB Zentralbibliothek NULL 4284 +R3036 KLU50 386/36 KL: BB INF Bereichsbibliothek Informatik NULL 4285 +R3042 KLU50 386/42 KL: BB MAS/WIR Bereichsbibliothek Maschinenbau und Verfahrenstechnik/Wirtschaftsingenieurwesen NULL 4286 +R3047 KLU50 386/47 KL: ZV Verwaltung Zentrale Verwaltung NULL 4287 +R3048 KLU50 386/48 KL: BB MAT/PHY Bereichsbibliothek Mathematik/Physik NULL 4288 +R3054 KLU50 386/54 KL: BB CHE Bereichsbibliothek Chemie NULL 4289 +R3060 KLU50 386/60 KL: MPA Materialprüfamt NULL 4290 +K6001 KMB50 Kn 3 K: Kunst- u. Museumsbibl. Kunst- und Museumsbibliothek der Stadt Köln NULL 4291 +RL001 KOL50 Kob 7 KO: UB Universitätsbibliothek Koblenz der Universität Koblenz-Landau NULL 4292 +RL002 KOL50 Lan 1 LD: UB Universitätsbibliothek Landau der Universität Koblenz-Landau NULL 4293 +RL003 KOL50 Lan 1/I LD: UB/Information Universitätsbibliothek Landau der Universität Koblenz-Landau/Information NULL 4294 +R5001 LUTIT 1116 LU: HWG Ludwigshafen Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek NULL 4295 +R5002 LDLOK 1116/DLR NW: DLR Dienstleistungszentrum ländlicher Raum NULL 4296 +Z9037 MHD50 575 DT: B Musik HS Hochschule für Musik Detmold, Bibliothek NULL 4297 +Z9042 MHD50 575/1 DT/PB: B Musikwiss. Seminar Bibliothek des Musikwissenschaftlichen Seminars Detmold/Paderborn NULL 4298 +Z9036 MHE50 1156 E: Folkwang Uni Folkwang Universität der Künste Essen, Bibliothek NULL 4299 +Z9053 MHE50 1156/1 E: Folkwang/Außenst. Folkwang Universität, Außenstelle ( ehemals: Musikwissenschaftliches Institut der Universität Bochum) NULL 4300 +Z9055 MHE50 1156a BO: Folkwang Theaterz. Folkwang Theaterzentrum NULL 4301 +Z9056 MHE50 1156b DU: Folkwang Uni Künste Folkwang Universität der Künste, Standort Duisburg NULL 4302 +Z9038 MHK50 Kn 38 K: B Musik HS Hochschule für Musik und Tanz Köln, Bibliothek NULL 4303 +Z9043 MHK50 Kn 38/LS K: Lesesaal Hochschule für Musik und Tanz Köln, Lesesaal NULL 4304 +Z9044 MHK50 Kn 38/PB K: Präsenzbibliothek Hochschule für Musik und Tanz Köln, Präsenzbibliothek NULL 4305 +Z9045 MHK50 Kn 38/W W: B Musik HS Hochschule für Musik und Tanz Köln, Abteilung Wuppertal, Bibliothek NULL 4306 +Z9046 MHK50 Kn 38/AC AC: B Musik HS Hochschule für Musik und Tanz Köln, Abteilung Aachen, Bibliothek NULL 4307 +Z9048 MHK50 Kn 38/T K: Tanzabteilung Hochschule für Musik und Tanz Köln, Tanzabteilung NULL 4308 +P0001 PAD50 466 PB: UB Universitätsbibliothek Paderborn NULL 4309 +P0003 PAD50 466/03 PB: Zweigbibliothek Informatik Zweigbibliothek Informatik NULL 4310 +P0002 PAD51 110 HX: Fürstl. B Corvey Fürstliche Bibliothek Corvey NULL 4311 +T0006 PTR50 Tr 2 TR: B Priesterseminar Priesterseminar, Bibliothek, Trier NULL 4312 +TL006 PTR50 Tr 2/LS TR: Lesesaal-Ausleihe Priesterseminar, Bibliothek, Trier: Lesesaal-Ausleihe NULL 4313 +X5010 RSH50 1972 D: Robert-Schumann HS Robert-Schumann-Hochschule Düsseldorf NULL 4314 +S0001 SIE50 467 SI: UB Universitätsbibliothek Siegen NULL 4315 +I5001 SWF50 Hag 4 HA: Hagen FHB Südwestf. Hochschulbibliothek der Fachhochschule Südwestfalen, Hagen NULL 4316 +I5002 SWF50 Hag 4/02 IS: Iserlohn Südwestf. Fachhochschule Südwestfalen, Fachbibliothek Iserlohn NULL 4317 +I5003 SWF50 Hag 4/03 ME: Meschede Südwestf. Fachhochschule Südwestfalen, Fachbibliothek Meschede NULL 4318 +I5004 SWF50 Hag 4/04 SO: Soest FH Südwestf. Fachhochschule Südwestfalen, Fachbibliothek Soest NULL 4319 +I500E SWF50 Hag 4/ E: Hagen FH Südwestf. : ER Hagen FH Südwestf. : Elektronische Ressourcen NULL 4320 +T0011 TRI50 385 TR: UB Universitätsbibliothek Trier NULL 4321 +TA011 TRI50 385/AN TR: Andere Universitätsbibliothek Trier: Andere Bestände NULL 4322 +TE011 TRI50 385/EX TR: Extern Universitätsbibliothek Trier: Externe Bestände NULL 4323 +TI011 TRI50 385/823 TR: IRDT Institut für Recht und Digitalisierung Trier NULL 4324 +TL011 TRI50 385/LS : Lesesaal-Ausleihe Universitätsbibliothek Trier: Lesesaal-Ausleihe NULL 4325 +R5004 WBTIT 1117 WO: HSB Hochschulbibliothek Worms NULL 4326 +W0001 WUP50 468 Wuppertal: UB Universitätsbibliothek Wuppertal NULL 4327 +KP001 ZBS50 Kn 41 K: DSHS-ZB Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln NULL 4328 +KP002 ZBS50 Kn 41/11 K: DSHS-Leicht./Turn. Institut für Individualsport, Abt. Leichtathletik und Turnen der Deutschen Sporthochschule Köln NULL 4329 +KP003 ZBS50 Kn 41/14 K:DSHS-Morph./Tumorf. Institut für Morphologie und Tumorforschung der Deutschen Sporthochschule Köln NULL 4330 +KP004 ZBS50 Kn 41/15 K: DSHS-Bew.-Kultur Betriebseinheit Bewegungskultur und -gestaltung der Deutschen Sporthochschule Köln NULL 4331 +KP005 ZBS50 Kn 41/16 K: DSHS-Pädagogik Pädagogisches Seminar der Deutschen Sporthochschule Köln NULL 4332 +KP006 ZBS50 Kn 41/17 K: DSHS-Philosophie Philosophisches Seminar der Deutschen Sporthochschule Köln NULL 4333 +KP007 ZBS50 Kn 41/18 K: DSHS-Physio/Anatomie Institut für Physiologie und Anatomie NULL 4334 +KP008 ZBS50 Kn 41/19 K: DSHS-Psychologie Psychologisches Institut der Deutschen Sporthochschule Köln NULL 4335 +KP009 ZBS50 Kn 41/2 K: DSHS-Ski-/Bergsp. Inst. f. Natursport u. Ökologie d. DSHS Köln, Abt. Ski- u. Bergsport NULL 4336 +KP010 ZBS50 Kn 41/20 K: DSHS-Reha/Behind. Institut für Rehabilitation und Behindertensport der Deutschen Sporthochschule Köln NULL 4337 +KP011 ZBS50 Kn 41/22 K: DSHS-Schwimmsport Inst. f. Individualsport d. DSHS Köln, Abt. Schwimmsport NULL 4338 +KP012 ZBS50 Kn 41/25 K: DSHS-Sportspiele Inst. f. Sportspiele d. DSHS Köln NULL 4339 +KP013 ZBS50 Kn 41/26 K: DSHS-Wasserfahrsp. Inst. f. Natursport u. Ökologie d. DSHS Köln, Abt. Wasserfahrsport NULL 4340 +KP014 ZBS50 Kn 41/27 K: DSHS-Sportdidaktik Inst. f. Sportdidaktik d. DSHS Köln NULL 4341 +KP015 ZBS50 Kn 41/29 K: DSHS-Train/Beweg.L. Inst. f. Trainings- u. Bewegungslehre d. DSHS Köln NULL 4342 +KP016 ZBS50 Kn 41/3 K: DSHS-Biomech/Ortho Inst. f. Biomechanik und Orthopädie d. DSHS Köln NULL 4343 +KP017 ZBS50 Kn 41/38 K: DSHS-Soziologie Inst. f. Sportsoziologie d. DSHS Köln, Abt. Soziologie NULL 4344 +KP018 ZBS50 Kn 41/39 K: DSHS-Biochemie Inst. f. Biochemie d. DSHS Köln NULL 4345 +KP019 ZBS50 Kn 41/41 K: DSHS-Sportpubl. Inst. f. Sportpublizistik d. DSHS Köln NULL 4346 +KP020 ZBS50 Kn 41/42 K: DSHS-Freizeitwiss. Inst. f. Freizeitwiss. d. DSHS Köln, Bereich Freizeitwiss. NULL 4347 +KP021 ZBS50 Kn 41/43 K: DSHS-Sp.Ökon/Manag. Inst. f. Sportökonomie und Sportmanagement d. DSHS Köln NULL 4348 +KP022 ZBS50 Kn 41/44 K: DSHS-Diem-Archiv Carl u. Liselott-Diem-Archiv d. DSHS Köln NULL 4349 +KP023 ZBS50 Kn 41/45 K: DSHS-SpOrth./Trauma Inst. f. Sportorthopädie - Sporttraumatologie d. DSHS Köln NULL 4350 +KP024 ZBS50 Kn 41/46 K: DSHS-Ökologie Inst. f. Natursport u. Ökologie d. DSHS Köln, Abt. Ökologie NULL 4351 +KP025 ZBS50 Kn 41/6 K: DSHS-Sp.Geschichte Inst. f. Sportgeschichte d. DSHS Köln NULL 4352 +KP026 ZBS50 Kn 41/8 K: DSHS-Rad-/Reitsp. Inst. f. Natursport u. Ökologie d. DSHS Köln, Abt. Rad- u. Reitsport NULL 4353 +KP027 ZBS50 Kn 41/9 K: DSHS-Kreisl./Sp.Med Inst. f. Kreislaufforschung u. Sportmedizin d. DSHS Köln NULL 4354 +KP028 ZBS50 Kn 41/97 K: DSHS-Musik-/Tanzpäd. Professur f. Musik- u. Tanzpädagogik d. DSHS Köln NULL 4355 +KP029 ZBS50 Kn 41/98 K: DSHS-Geschlechterfg Inst. f. Sportsoziologie d. DSHS Köln, Abt. Geschlechterforschung NULL 4356 +KP030 ZBS50 Kn 41/99 K: DSHS-Europ.Sp.Stud Inst. f. Freizeitwiss. d. DSHS Köln, Bereich Europäische Sport- u. Freizeitstudien NULL 4357 +KP031 ZBS50 Kn 41/LS1 K: Lesesaal 1 Lesesaal 1 der DSHS Köln NULL 4358 +KP032 ZBS50 Kn 41/LS2 K: Lesesaal 2 Lesesaal 2 der DSHS Köln NULL 4359 +KP033 ZBS50 Kn 41/47 K: DSHS-SpAZ Sportlehrerausbildungszentrum d. DSHS Köln NULL 4360 +KP034 ZBS50 Kn 41/48 K: Sportambulanz Deutsche Sporthochschule / Unfall- und Sporttraumatologische Ambulanz NULL 4361 +KP035 ZBS50 Kn 41/49 K: Sportgerontologie Deutsche Sporthochschule / Institut für Bewegungs- und Sportgerontologie NULL 4362 +KP036 ZBS50 Kn41/50 K: SportHSInstVermittl Deutsche Sporthochschule / Institut für Vermittlungskompetenz in den Sportarten NULL 4363 +KP037 ZBS50 Kn41/51 K: Sportrecht Deutsche Sporthochschule Köln, Institut für Sportrecht, Bibliothek NULL 4364 +Z9059 MHE50 1156c E: Quartier Nord Bibliothek: Zollverein Quartier Nord NULL 4365 +A3179 HBZ60 82/426 AC: Aachen UB EON E.ON Energy Research Center, Bibliothek NULL 4366 +A2301 HBZ60 82/791 AC: LDZ Labordiagnostisches Zentrum, Bibliothek NULL 4371 +K1192 HBZ60 38/440 K: ZADIK Zentralarchiv für Deutsche und Internationale Kunstmarktforschung ZADIK NULL 4372 +M1226 HBZ60 6/339 MS: Bibl. CRS und ZIT Gemeinsame Bibliothek des Centrums für Religionsbezogene Studien (CRS) und des Zentrums für Islamische Theologie (ZIT) 2 NULL 4374 +BDA01 EDK50 2187 AC: Diözesanarchiv Bischöfliches Diözesanarchiv Aachen NULL 4375 +A2302 HBZ60 82/792 AC: UB Exmed. Institut für Experimentelle Innere Medizin und Systembiologie, Bibliothek NULL 4376 diff --git a/conf/hebisMarc2lobid-transformation/maps/institutions.tsv b/conf/hebisMarc2lobid-transformation/maps/institutions.tsv new file mode 100644 index 0000000..733a2e5 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/institutions.tsv @@ -0,0 +1,92 @@ +Wave Name Member Code Institution Code ISIL +0 hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen 49HBZ_NETWORK 6441 DE-655 +1 Technische Universität Dortmund 49HBZ_UBD 6445 DE-290 +1 Universität Bielefeld 49HBZ_BIE 6442 DE-361 +1 Universität Duisburg-Essen 49HBZ_UDE 6446 DE-465 +1 Bergische Universität Wuppertal 49HBZ_WUP 6447 DE-468 +1 Universität Düsseldorf 49HBZ_DUE 6443 DE-61 +1 Hochschulbibliothek der FH Aachen 49HBZ_FHA 6444 DE-A96 +2.1 Folkwang Universität der Künste 49HBZ_FUK 6459 DE-1156 +2.1 FH / KA Münster 49HBZ_FHM 6485 DE-836 +2.1 Hochschule Düsseldorf 49HBZ_HSD 6455 DE-Due62 +2.1 Fachhochschule Südwestfalen 49HBZ_FSW 6461 DE-Hag4 +2.2 Westfälische Hochschule 49HBZ_WHS 6456 DE-1010 +2.2 Hochschule Bonn-Rhein-Sieg 49HBZ_BRS 6452 DE-1044 +2.2 Hochschule Ruhr West 49HBZ_RUW 6453 DE-1393 +2.2 Fernuniversität Hagen 49HBZ_FUH 6464 DE-708 +2.2 Hochschule Bielefeld 49HBZ_HBI 6450 DE-Bi10 +2.2 Hochschule Bochum 49HBZ_HBO 6454 DE-Bm40 +2.3 RPTU Kaiserslautern-Landau 49HBZ_RTU 7476 DE-386 +2.3 Universitätsbibliothek Paderborn 49HBZ_PAD 6463 DE-466 +2.3 Universität Siegen 49HBZ_SIE 6462 DE-467 +2.3 Universität Münster 49HBZ_ULM 6449 DE-6 +2.3 RWTH Aachen 49HBZ_UBA 6448 DE-82 +2.3 Fachhochschule Dortmund 49HBZ_FDO 6451 DE-Dm13 +3.1 Katholische Hochschule Nordrhein-Westfalen 49HBZ_KHO 6474 DE-1032 +3.1 Katholische Hochschule NRW, Köln (Bridge) 49HBZ_BRIDGE_KHO 7920 DE-1032 +3.1 Rheinische Fachhochschule Köln 49HBZ_RFH 6484 DE-1140 +3.1 Hochschule für Gesundheit 49HBZ_HGB 6481 DE-1866 +3.1 Robert Schumann Hochschule Düsseldorf 49HBZ_RSH 6457 DE-1972 +3.1 Robert Schumann Hochschule Düsseldorf (Bridge) 49HBZ_BRIDGE_RSH 7922 DE-1972 +3.1 Universität Bonn 49HBZ_ULB 6467 DE-5 +3.1 Universität Bonn (Bridge) 49HBZ_BRIDGE_ULB 7502 DE-5 +3.1 Hochschule Ostwestfalen-Lippe 49HBZ_OWL 6468 DE-743 +3.1 Hochschule Ostwestfalen-Lippe (Bridge) 49HBZ_BRIDGE_OWL 7917 DE-743 +3.1 Hochschule Niederrhein 49HBZ_HSN 8056 DE-829 +3.1 Hochschule Niederrhein (Bridge) 49HBZ_BRIDGE_HSN 7916 DE-829 +3.1 Kunsthochschule für Medien Köln 49HBZ_KHM 6473 DE-Kn185 +3.2 Universität Bochum 49HBZ_UBO 6471 DE-294 +3.2 Universität Bochum (Bridge) 49HBZ_BRIDGE_UBO 7503 DE-294 +3.2 ZB MED 49HBZ_ZBM 6472 DE-38M +3.2 ZB MED, Köln/Bonn (Bridge) 49HBZ_BRIDGE_ZBM 7501 DE-38M +3.2 Hochschule Hamm-Lippstadt 49HBZ_HHL 6482 DE-1871 +3.2 Kunstakademie Düsseldorf 49HBZ_KAD 6458 DE-Due18 +3.2 Kunstakademie Düsseldorf (Bridge) 49HBZ_BRIDGE_KAD 7923 DE-Due18 +3.2 Hochschule für Musik und Tanz Köln 49HBZ_HMT 6460 DE-Kn38 +3.2 Hochschule für Musik und Tanz Köln (Bridge) 49HBZ_BRIDGE_HMT 7921 DE-Kn38 +3.3 Hochschule Rhein-Waal 49HBZ_RHW 6479 DE-1383 +3.3 Hochschule Rhein-Waal (Bridge) 49HBZ_BRIDGE_RHW 7919 DE-1383 +3.3 Universität Köln 49HBZ_UBK 6476 DE-38 +3.3 Universität Köln (Bridge) 49HBZ_BRIDGE_UBK 7147 DE-38 +3.3 Universität Trier 49HBZ_UBT 6470 DE-385 +3.3 Universität Trier (Bridge) 49HBZ_BRIDGE_UBT 8031 DE-385 +3.3 Hochschule für Musik Detmold / Lippische Landesbibliothek 49HBZ_DET 6480 DE-51 +3.3 Hochschule für Musik Detmold / Lippische Landesbibliothek (Bridge) 49HBZ_BRIDGE_DET 7918 DE-51 +3.3 Technische Hochschule Köln (TH Köln) 49HBZ_THK 6477 DE-832 +3.3 Technische Hochschule Köln (TH Köln) (Bridge) 49HBZ_BRIDGE_THK 7504 DE-832 +3.3 Evangelische Hochschule Rheinland-Westfalen-Lippe 49HBZ_EVH 6483 DE-956 +3.3 Technische Fachhochschule - Georg Agricola 49HBZ_TGA 6469 DE-Bm1 +3.3 Deutsche Sporthochschule Köln 49HBZ_ZBS 6478 DE-Kn41 +3.3 Deutsche Sporthochschule Köln (Bridge) 49HBZ_BRIDGE_ZBS 7146 DE-Kn41 +3.3 Universität Koblenz 49HBZ_UKO 8057 DE-Kob7 +3.3 Universität Koblenz (Bridge) 49HBZ_BRIDGE_UKO 7924 DE-Kob7 + Universitätsbibliothek Witten/Herdecke (Bridge) 49HBZ_BRIDGE_WIH 7828 DE-1018 +4 Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek (Bridge) 49HBZ_BRIDGE_UCB 7821 DE-1042 +4 Hochschule Ludwigshafen - DLR Rheinpfalz 49HBZ_HSL 8976 DE-1116 +4 Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek (Bridge) 49HBZ_BRIDGE_HWG 7824 DE-1116 +4 Hochschule Worms 49HBZ_HSW 8977 DE-1117 +4 Hochschulbibliothek Worms (Bridge) 49HBZ_BRIDGE_HSW 7831 DE-1117 + Museum Schnütgen, Bibliothek, Köln (Bridge) 49HBZ_BRIDGE_BSK 7825 DE-2192 +4 Landesbibliothekszentrum RLP (LBZ) 49HBZ_LBZ 8973 DE-929 +4 Rheinische Landesbibliothek Koblenz (Bridge) 49HBZ_BRIDGE_LBZ 7506 DE-929 +4 Hochschule Koblenz - RheinAhrCampus 49HBZ_HSK 8978 DE-987 +4 Bibliothek der Hochschule Koblenz (Bridge) 49HBZ_BRIDGE_HSK 7829 DE-987 +4 Deutsche Meteorologische Bibliothek (DWD), Offenbach 49HBZ_DWD 8975 DE-B23 +4 Deutsche Meteorologische Bibliothek (DWD), Offenbach (DWD), Offenbach (Bridge) 49HBZ_BRIDGE_DWD 7818 DE-B23 + Museumsbibliothek der Stiftung Museum Schloss Moyland, Sammlung van der Grinten, Joseph Beuys Archiv des Landes Nordrhein-Westfalen, Bedburg-Hau (Bridge) 49HBZ_BRIDGE_MSM 7822 DE-Bed1 +4 Haus der Geschichte des Ruhrgebiets 49HBZ_BDR 8974 DE-Bm3 +4 Bibliothek des Ruhrgebiets, Bochum (Bridge) 49HBZ_BRIDGE_BDR 7508 DE-Bm3 + Museum Folkwang, Museumsbibliothek, Essen (Bridge) 49HBZ_BRIDGE_MFE 7827 DE-E10 +4 Erzbischöfliche Diözesan- und Dombibliothek (EDK) - Bibliothek des Priesterseminars (BPS) 49HBZ_EDK 8971 DE-Kn28 +4 Erzbischöfliche Diözesan- und Dombibliothek (Bridge) 49HBZ_BRIDGE_EDK 7507 DE-Kn28 + Kölnisches Stadtmuseum, Bibliothek (Bridge) 49HBZ_BRIDGE_KSB 7823 DE-Kn39 + Stadtarchiv Solingen, Bibliothek (Bridge) 49HBZ_BRIDGE_SAS 7830 DE-Sol1 +4 Priesterseminar, Bibliothek, Trier (Bridge) 49HBZ_BRIDGE_PTR 7817 DE-Tr2 +4 Hochschule Trier - Umwelt-Campus 49HBZ_HST 8979 DE-Tr5 +4 Bibliothek der Hochschule Trier (Bridge) 49HBZ_BRIDGE_HBT 7820 DE-Tr5 +4 Dienstleistungszentrum ländlicher Raum (Bridge) 49HBZ_BRIDGE_DLR 7819 DE-Tr7 +4 Wissenschaftliche Bibliothek der Stadt Trier 49HBZ_WBT 8972 DE-121 +4 Wissenschaftliche Bibliothek der Stadt Trier (Bridge) 49HBZ_BRIDGE_WBT 7826 DE-121 + Bibliotheken ohne zentrale Katalogisierung (Bridge) 49HBZ_BRIDGE_FIZ 7816 + hbz Alma digital 49HBZ_DIG +4 Hochschule Kaiserslautern 49HBZ_HKL 8980 DE-1082 diff --git a/conf/hebisMarc2lobid-transformation/maps/isil2opac_almaMmsId.tsv b/conf/hebisMarc2lobid-transformation/maps/isil2opac_almaMmsId.tsv new file mode 100644 index 0000000..a3c8f7d --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/isil2opac_almaMmsId.tsv @@ -0,0 +1,45 @@ +DE-1010 https://w-hs.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-1032 https://research.ebsco.com/c/xkyosu/search/results?q={almaMmsId} +DE-1044 https://bib-discover.bib.h-brs.de/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=1044_and_CI&vid=49HBZ_BRS:1044&offset=0 +DE-1156 https://folkwang-uni.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-1383 https://hsb-rhein-waal.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-1393 https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-1866 https://hs-gesundheit.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-1871 https://hbz-hhl.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=LibraryCatalog&search_scope=MyInstitution&vid=49HBZ_HHL:VU1&offset=0 +DE-1926 https://hbz-hhl.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=LibraryCatalog&search_scope=MyInstitution&vid=49HBZ_HHL:VU1&offset=0 +DE-1972 https://rsh-duesseldorf.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-290 https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:{almaMmsId} +DE-294 https://hbz-ubo.primo.exlibrisgroup.com/permalink/49HBZ_UBO/mnkbqv/alma{almaMmsId} +DE-38 https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid={almaMmsId}&fdb=uni +DE-385 https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma{almaMmsId} +DE-386 https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma{almaMmsId} +DE-38M https://www.livivo.de/doc/{almaMmsId} +DE-465 https://primo.uni-due.de/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 +DE-466 https://katalog.ub.uni-paderborn.de/local/s?sr[q,any]={almaMmsId} +DE-467 https://ub-siegen.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-468 https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-5 https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma{almaMmsId} +DE-6 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-61 https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{almaMmsId} +DE-708 https://fub-hagen.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-743 https://th-owl.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-82 https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma{almaMmsId} +DE-829 https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-832 https://thb-koeln.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-836 https://fhb-muenster.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-956 https://evh-bochum.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-98 https://www.livivo.de/doc/B{almaMmsId} +DE-A96 https://fhb-aachen.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Bi10 https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Bm1 https://thga.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Bm40 https://hsb-bochum.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Dm13 https://hbz-fdo.primo.exlibrisgroup.com/permalink/49HBZ_FDO/k375rg/alma{almaMmsId} +DE-Due18 https://discovery.kunstakademie-duesseldorf.de/permalink/49HBZ_KAD/hsdblh/alma{almaMmsId} +DE-Due62 https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Hag4 https://kai.fh-swf.de/permalink/49HBZ_FSW/ou32r9/alma{almaMmsId} +DE-Kn3 https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid={almaMmsId}&fdb=uni +DE-Kn38 https://hfmt-koeln.digibib.net/search/katalog/record/(DE-605){almaMmsId} +DE-Kn41 https://primo.zbsport.dshs-koeln.de/permalink/49HBZ_ZBS/18h80sa/alma{almaMmsId} +DE-Kob7 https://primo.uni-koblenz.de/permalink/49HBZ_UKO/16pslu1/alma{almaMmsId} +DE-Lan1 https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma{almaMmsId} +DE-Sie5 https://bib-discover.bib.h-brs.de/discovery/search?query=any,contains,{almaMmsId}&tab=Sie5&search_scope=Sie5&vid=49HBZ_BRS:Sie5&offset=0 diff --git a/conf/hebisMarc2lobid-transformation/maps/isil2opac_hbzId.tsv b/conf/hebisMarc2lobid-transformation/maps/isil2opac_hbzId.tsv new file mode 100644 index 0000000..99b0e1f --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/isil2opac_hbzId.tsv @@ -0,0 +1,37 @@ +DE-1010 https://w-hs.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1042 https://grimm.umwelt-campus.de/uhtbin/cgisirsi/x/0/0/5?searchdata1={hbzid} +DE-107 https://lbz-rlp.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1105 https://bibopac2.rac.hs-koblenz.de/webOPACClient-Remagen/start.do?Query=0010=%22{hbzid}%22 +DE-1116 https://opac.hwg-lu.de/alipac/-/item-local?BASE=B-TIT&VID={hbzid} +DE-1156 https://folkwang-uni.digibib.net/search/katalog/record/56:{hbzid} +DE-121 https://aleph.zbsport.de/F/?local_base=str01&find_code=IDN&request={hbzid}&func=find-b +DE-1383 https://hsb-rhein-waal.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1383a https://hsb-rhein-waal.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1393 https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1393-BOT https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1866 https://hs-gesundheit.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1972 https://rsh-duesseldorf.digibib.net/search/katalog/record/57:{hbzid} +DE-361 https://katalogplus.ub.uni-bielefeld.de/Search/Results?type=NZsatz&lookfor={hbzid} +DE-467 https://ub-siegen.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-468 https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-51 https://det.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-575 https://det.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-60 https://stlb-dortmund.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-708 https://fub-hagen.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-743 https://th-owl.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-829 https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-832 https://thb-koeln.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-836 https://fhb-muenster.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-929 https://lbz-rlp.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-956 https://evh-bochum.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-987 https://bibopac2.rac.hs-koblenz.de/webOPACClient-Koblenz/start.do?Query=0010=%22{hbzid}%22 +DE-A96 https://fhb-aachen.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Bi10 https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Bm1 https://thga.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Bm40 https://hsb-bochum.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Due62 https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Kn28 https://katalog.dombibliothek-koeln.de/F/?local_base=edk01&find_code=IDN&request={hbzid}&func=find-b +DE-Kn38 https://hfmt-koeln.digibib.net/search/katalog/record/58:{hbzid} +DE-Tr2 https://katalog.dombibliothek-koeln.de/F/?local_base=ptr01&find_code=IDN&request={hbzid}&func=find-b +DE-Tr5 https://bibserv.fh-trier.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-Zw1 https://lbz-rlp.digibib.net/search/katalog/record/(DE-605){hbzid} diff --git a/conf/hebisMarc2lobid-transformation/maps/isil2opac_isbn.tsv b/conf/hebisMarc2lobid-transformation/maps/isil2opac_isbn.tsv new file mode 100644 index 0000000..e69de29 diff --git a/conf/hebisMarc2lobid-transformation/maps/isil2opac_issn.tsv b/conf/hebisMarc2lobid-transformation/maps/isil2opac_issn.tsv new file mode 100644 index 0000000..3a86806 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/isil2opac_issn.tsv @@ -0,0 +1,5 @@ +DE-1042 https://grimm.umwelt-campus.de/uhtbin/cgisirsi/x/0/0/5?searchdata1={issn} +DE-121 https://aleph.zbsport.de/F/?func=find-word&scan_code=WRD&scan_word={issn}&local_base=str01 +DE-Kn28 https://katalog.dombibliothek-koeln.de/F/?local_base=edk01&find_code=ISN&request={issn}&func=find-b +DE-Tr2 https://katalog.dombibliothek-koeln.de/F/?local_base=ptr01&find_code=IDN&request={issn}&func=find-b +DE-60 https://stlb-dortmund.digibib.net/search/katalog/list?start=1&count=20&q-al={issn} diff --git a/conf/hebisMarc2lobid-transformation/maps/isil2opac_zdbId.tsv b/conf/hebisMarc2lobid-transformation/maps/isil2opac_zdbId.tsv new file mode 100644 index 0000000..c7ba09d --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/isil2opac_zdbId.tsv @@ -0,0 +1,28 @@ +DE-1010 https://w-hs.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-107 https://lbz-rlp.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1156 https://folkwang-uni.digibib.net/search/katalog/list?start=1&defaults=on&q-al={zdbid} +DE-1383 https://hsb-rhein-waal.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1383a https://hsb-rhein-waal.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1393 https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1393-BOT https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1866 https://hs-gesundheit.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-1972 https://rsh-duesseldorf.digibib.net/search/katalog/list?start=1&defaults=on&q-al={zdbid} +DE-361 https://katalogplus.ub.uni-bielefeld.de/Search/Results?type=NZsatz&lookfor={zdbid} +DE-467 https://ub-siegen.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-468 https://ub-wuppertal.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-51 https://det.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-575 https://det.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-708 https://fub-hagen.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-743 https://th-owl.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-829 https://hs-niederrhein.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-832 https://thb-koeln.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-836 https://fhb-muenster.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-929 https://lbz-rlp.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-956 https://evh-bochum.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-A96 https://fhb-aachen.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-Bi10 https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-Bm1 https://thga.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-Bm40 https://hsb-bochum.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-Due62 https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-600){zdbid} +DE-Kn38 https://hfmt-koeln.digibib.net/search/katalog/list?start=1&defaults=on&q-al={zdbid} +DE-Zw1 https://lbz-rlp.digibib.net/search/katalog/record/(DE-600){zdbid} diff --git a/conf/hebisMarc2lobid-transformation/maps/isilRedirect.tsv b/conf/hebisMarc2lobid-transformation/maps/isilRedirect.tsv new file mode 100644 index 0000000..f4f2d25 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/isilRedirect.tsv @@ -0,0 +1,418 @@ +ZDB-18-NEPN ZDB-18-NOE +DE-D227 DE-D170 +DE-D227 DE-L238 +DE-201 DE-201a +DE-2914 DE-Po61 +DE-840-3 DE-2170 +DE-Re13 DE-M135 +DE-Re13 DE-M357 +DE-950-1 DE-1869 +DE-2733 DE-Frei161 +DE-MUS-530125 DE-MUS-450415 +DE-MUS-530125 DE-MUS-715019 +ZDB-179-WSZ ZDB-179-WSN +ZDB-179-WKB ZDB-179-WBK +DE-100-640 DE-100-710 +ZDB-18-NEP ZDB-18-NOE +ZDB-101-LET ZDB-101-VTB +DE-B106 DE-B1513 +DE-2294 DE-2336 +DE-2294 DE-2091 +DE-100-772 DE-100-305 +DE-188-930 DE-188-25 +DE-188-930 DE-188-726 +DE-188-930 DE-188-802 +DE-188-930 DE-188-812 +DE-188-930 DE-188-814 +DE-188-930 DE-188-816 +DE-188-930 DE-188-822 +DE-188-930 DE-188-823 +DE-188-930 DE-188-867 +DE-188-930 DE-188-869 +DE-188-930 DE-188-870JA +DE-188-930 DE-188-870KO +DE-188-930 DE-188-870SI +DE-188-930 DE-188-871 +DE-188-930 DE-188-877 +DE-188-930 DE-188-879 +DE-188-930 DE-188-885 +DE-188-930 DE-188-896 +DE-188-930 DE-188-898 +DE-188-930 DE-188-908 +DE-188-930 DE-188-912 +ZDB-125-TTW ZDB-125-TTZ +DE-2174 DE-M43 +DE-38-440 DE-2131 +ZDB-41-SSP ZDB-41-UTBV +ZDB-112-SRR ZDB-112-SRS +ZDB-109-LMI ZDB-109-LBL +DE-Hil3-9 DE-Hil3-4 +ZDB-91-CABI1 ZDB-91-CABI2 +ZDB-91-CABI1 ZDB-91-CABI3 +ZDB-90-HGE ZDB-90-HGF +ZDB-90-HGE ZDB-90-HGG +ZDB-90-HGE ZDB-90-HGP +DE-38-101 DE-38-103 +DE-38-101 DE-38-105 +DE-38-101 DE-38-120 +DE-38-101 DE-38-146 +DE-38-101 DE-38-157 +DE-38-101 DE-38-128 +DE-38-101 DE-38-528 +DE-38-101 DE-38-435 +DE-255 DE-255-KIR +DE-MUS-061827 DE-MUS-710910 +DE-MUS-061827 DE-MUS-846217 +DE-MUS-482219 DE-MUS-076319 +DE-MUS-413010 DE-MUS-129819 +DE-MUS-135611 DE-MUS-135517 +DE-916 DE-Luen4-5 +ZDB-1-SAGS ZDB-1-SAGS1 +ZDB-1-SAGH ZDB-1-SAGH1 +ZDB-1-SAGB ZDB-1-SAGB1 +DE-100-505 DE-100-573 +DE-M54 DE-M47 +DE-Rav4 DE-Rav2 +DE-578-M DE-578-911 +DE-Pa5 DE-Buer2 +ZDB-28-ORP ZDB-28-ORC +DE-MUS-802113 DE-We20 +DE-38-465 DE-38-463 +DE-588 DE-588a +DE-588 DE-588b +DE-588 DE-588c +DE-16-160 DE-16-45 +DE-16-160 DE-16-63 +DE-16-160 DE-16-102 +DE-Bre16 DE-1957 +DE-Sib1 DE-Tr3 +DE-M490 DE-M48 +ZDB-1-DGR ZDB-1-DG2 +ZDB-1-SAGK ZDB-1-SAGK1 +ZDB-1-ECJ ZDB-1-ECH +DE-B1572 DE-B1521 +ZDB-1-NEL ZDB-1-NEF +ZDB-1-CAJ ZDB-1-CAA +ZDB-1-CAJ ZDB-1-CAJK +ZDB-1-OJD ZDB-1-ENL +DE-B232 DE-Stg112 +DE-188-920 DE-188-813 +DE-188-920 DE-188-878 +DE-D271 DE-L63 +DE-578-876 DE-578-905 +DE-1198 DE-1144 +DE-38-503 DE-38-511 +DE-38-503 DE-38-519 +DE-38-503 DE-38-521 +DE-38-503 DE-38-524 +DE-38-503 DE-38-525 +DE-1156 DE-294-31 +DE-B171 DE-B171-1 +DE-B171 DE-B171-3 +DE-38-461 DE-38-462 +DE-77-006 DE-77-103 +DE-77-006 DE-77-104 +DE-77-006 DE-77-105 +DE-77-006 DE-77-106 +DE-77-006 DE-77-108 +DE-77-006 DE-77-PMC +DE-51 DE-Det3 +DE-1116 DE-1011 +DE-Wol4 DE-Bit3 +DE-Kn182 DE-B2162 +DE-Kn182 DE-Bs74 +DE-Kn182 DE-Goe146 +DE-Kn182 DE-M479 +DE-Kn182 DE-Stg192 +DE-H66 DE-H151 +DE-H66 DE-H153 +DE-Ful2 DE-Ful2a +DE-Bor4 DE-541 +DE-958 DE-900 +DE-261 DE-759 +DE-Luen4 DE-Luen4-1 +DE-Luen4 DE-Luen4-2 +DE-38-305 DE-38-402 +DE-B718 DE-B719 +DE-17-65 DE-17-64 +DE-18-285 DE-H365 +DE-18-261 DE-18-280 +DE-77-016 DE-77-017 +DE-542 DE-Mer1 +DE-Bo56 DE-Bo57 +DE-634 DE-Co1 +DE-634 DE-Sen1 +DE-634 DE-Sen1-1 +DE-32 DE-Wim12 +DE-15 DE-15-100 +DE-Wb1 DE-Wb2 +DE-3-18 DE-3-20 +DE-3-18 DE-3-25 +DE-3-18 DE-3-37 +DE-3-18 DE-3-75 +DE-3-18 DE-3-86 +DE-3-18 DE-3-98 +DE-3-4 DE-3-7 +DE-3-4 DE-3-15 +DE-3-4 DE-3-16 +DE-3-4 DE-3-21 +DE-3-4 DE-3-55 +DE-28 DE-R116 +DE-9 DE-9-10 +DE-9 DE-9-14 +DE-9 DE-9-23 +DE-9 DE-9-24 +DE-9 DE-9-25 +DE-9 DE-9-26 +DE-9 DE-9-34 +DE-9 DE-9-42 +DE-9 DE-9-46 +DE-9 DE-9-47 +DE-9 DE-9-50 +DE-9 DE-9-53 +DE-9 DE-9-57 +DE-9 DE-9-58 +DE-9 DE-9-71 +DE-9 DE-9-74 +DE-9 DE-9-75 +DE-9 DE-9-100 +DE-9 DE-9-103 +DE-9 DE-9-104 +DE-9 DE-9-106 +DE-9 DE-9-107 +DE-Po24 DE-B1511 +DE-B479 DE-Frei142 +DE-11-131 DE-11-98 +DE-11-131 DE-11-114 +DE-11-131 DE-11-145 +DE-11-131 DE-11-149 +DE-11-105 DE-11-106 +DE-11-105 DE-11-135 +DE-11-87 DE-11-87Ch +DE-11-87 DE-11-87Gg +DE-11-87 DE-11-87Ma +DE-11-87 DE-11-87Ph +DE-11-87 DE-11-87Ps +DE-11-87 DE-11-87ZFBU +DE-11-97 DE-11-17 +DE-11-97 DE-11-18 +DE-11-97 DE-11-19 +DE-11-97 DE-11-20 +DE-11-97 DE-11-22 +DE-11-97 DE-11-26 +DE-11-97 DE-11-28 +DE-11-97 DE-11-31 +DE-11-97 DE-11-32 +DE-11-97 DE-11-33 +DE-11-97 DE-11-35 +DE-11-97 DE-11-36 +DE-11-97 DE-11-39 +DE-11-97 DE-11-40 +DE-11-97 DE-11-42 +DE-11-97 DE-11-45 +DE-11-97 DE-11-84 +DE-11-97 DE-11-148 +DE-11 DE-11-44 +DE-11 DE-11-47 +DE-11 DE-11-54 +DE-11 DE-11-57 +DE-11 DE-11-89 +DE-11 DE-11-91 +DE-11 DE-11-94 +DE-11 DE-11-95 +DE-11 DE-11-96 +DE-11 DE-11-132 +DE-11 DE-11-146 +DE-91 DE-M351 +DE-Frei164 DE-Frei25 +DE-Frei164 DE-Pt1 +DE-25-31b DE-25-31c +DE-25-31b DE-25-92 +DE-25-31b DE-25-133 +DE-25-9 DE-25-176 +DE-25-9 DE-Frei80 +DE-25-9 DE-Frei116 +DE-25-9 DE-25-82 +DE-25-9 DE-25-79 +DE-25-5 DE-25-56a +DE-25-5 DE-25-58a +DE-25-5 DE-25-59a +DE-25-5 DE-25-62 +DE-25 DE-25-2 +DE-25 DE-25-178 +DE-90-147 DE-90-92 +DE-90-88 DE-90-89 +DE-90 DE-90-3 +DE-21 DE-21-118 +DE-Lg1 DE-Stg93 +DE-Stg183 DE-Stg87 +DE-100-900 DE-100-770 +DE-100-900 DE-100-660 +DE-100-490 DE-100-480 +DE-100-460 DE-100-450 +DE-100-460 DE-100-470 +DE-100-440 DE-100-495 +DE-100-401 DE-100-303 +DE-100-340 DE-100-370 +DE-100 DE-100-620 +DE-93-177 DE-93-176 +DE-93-24 DE-93-196 +DE-16-32 DE-16-59 +DE-16-32 DE-16-60 +DE-16-32 DE-16-97 +DE-16-7 DE-16-148 +DE-180 DE-180-1-1 +DE-180 DE-180-1-2 +DE-180 DE-180-1-3 +DE-180 DE-180-1-4 +DE-180 DE-180-2-1 +DE-180 DE-180-2-10 +DE-180 DE-180-2-11 +DE-180 DE-180-2-12 +DE-180 DE-180-2-13 +DE-180 DE-180-2-14 +DE-180 DE-180-2-15 +DE-180 DE-180-2-17 +DE-180 DE-180-2-18 +DE-180 DE-180-2-19 +DE-180 DE-180-2-20 +DE-180 DE-180-2-22 +DE-180 DE-180-2-23 +DE-180 DE-180-2-24 +DE-180 DE-180-2-4 +DE-180 DE-180-2-5 +DE-180 DE-180-2-6 +DE-180 DE-180-2-7 +DE-180 DE-180-2-8 +DE-180 DE-180-2-9 +DE-180 DE-180-3-1 +DE-180 DE-180-3-2 +DE-180 DE-180-3-3 +DE-180 DE-180-3-6 +DE-180 DE-180-3-7 +DE-180 DE-180-3-8 +DE-180 DE-180-4 +DE-180 DE-180-5-1 +DE-180 DE-180-5-2 +DE-180 DE-180-5-4 +DE-180 DE-180-6-1 +DE-180 DE-180-6-2 +DE-180 DE-180-6-3 +DE-180 DE-180-6-5 +DE-180 DE-180-6-7 +DE-180 DE-180-7-1 +DE-180 DE-180-7-2 +DE-180 DE-180-7-3 +DE-180 DE-180-8 +DE-180 DE-180-90 +DE-180 DE-180-95 +DE-180 DE-180-96 +DE-180 DE-180-97 +DE-Sa17 DE-Sa28 +DE-Sa16 DE-Sa19 +DE-291-417 DE-291-412 +DE-291-417 DE-291-426 +DE-291-314 DE-291-302 +DE-291-314 DE-291-320 +DE-291-314 DE-291-322 +DE-291-314 DE-291-351 +DE-291-314 DE-291-504 +DE-291-306 DE-291-502 +DE-30 DE-30-149 +DE-Bo133 DE-Tr18 +DE-5-141 DE-5-19 +DE-5-141 DE-5-96 +DE-5-141 DE-5-137 +DE-5-141 DE-5-139 +DE-5-141 DE-5-140 +DE-5-141 DE-5-143 +DE-5-141 DE-5-160 +DE-5-108 DE-5-71 +DE-5-108 DE-5-208 +DE-5-108 DE-5-138 +DE-5-108 DE-5-165 +DE-5-108 DE-5-168 +DE-5-90 DE-5-157 +DE-5-90 DE-5-158 +DE-5-82 DE-5-23 +DE-5-82 DE-5-92 +DE-5-82 DE-5-199 +DE-5-76 DE-5-134 +DE-5-61 DE-5-84 +DE-5-14 DE-5-118 +DE-5-14 DE-5-192 +DE-5-14 DE-5-193 +DE-5-14 DE-5-194 +DE-5-12 DE-5-15 +DE-38-448 DE-38-464 +DE-38-420 DE-38-424 +DE-38-418 DE-5-107 +DE-38-414 DE-38-437 +DE-38-208 DE-38-206 +DE-38-208 DE-38-207 +DE-38-208 DE-38-215 +DE-587 DE-587a +DE-587 DE-587b +DE-38-132 DE-38-171 +DE-38 DE-38-436 +DE-290 DE-290-FOME +DE-294-46 DE-294-50 +DE-294-46 DE-294-53 +DE-294-22 DE-294-10 +DE-294-22 DE-294-13 +DE-294-22 DE-294-32 +DE-Mue109 DE-Mue202 +DE-6-A DE-6-332 +DE-6-246 DE-6-245 +DE-6-246 DE-6-247 +DE-6-246 DE-6-292 +DE-6-050 DE-6-284 +DE-6-255 DE-6-033 +DE-6-022 DE-6-172 +DE-6-022 DE-6-054 +DE-6-022 DE-6-180 +DE-6-022 DE-6-274 +DE-6-017 DE-6-303 +DE-6-016 DE-6-228 +DE-6-015 DE-6-021 +DE-6-248 DE-6-186 +DE-6-248 DE-6-250 +DE-6-006 DE-6-165 +DE-6-006 DE-6-169 +DE-6-006 DE-6-183 +DE-6-005 DE-6-157 +DE-465 DE-464 +DE-465 DE-465M +DE-Goe116 DE-Goe69 +DE-7 DE-7-224 +DE-H221 DE-H220 +DE-H221 DE-H371 +DE-H221 DE-H222 +DE-18 DE-18-230 +DE-B11d DE-B11a +DE-B11d DE-B11g +DE-B11d DE-B11v +DE-B85 DE-Kle2 +DE-109 DE-109-720 +DE-188-827 DE-188-825 +DE-188-827 DE-188-910 +DE-188-819 DE-188-811 +DE-188-819 DE-188-915 +DE-188-808 DE-188-808DR +DE-188-808 DE-188-808ER +DE-188-808 DE-188-808RR +DE-188-808 DE-188-889 +DE-188-211 DE-188-423 +DE-188-211 DE-188-815 +DE-188-211 DE-188-865 +DE-188-211 DE-188-888 +DE-83-1108 DE-83-1062 +DE-83-123 DE-83-793 +DE-83 DE-83-1014 +DE-83 DE-83-1020 +DE-83 DE-83-1111 +DE-83 DE-83-1144 +DE-83 DE-83-1169 +DE-83 DE-83-1175 +DE-83 DE-83-1235 +DE-1a DE-He201 diff --git a/conf/hebisMarc2lobid-transformation/maps/lbz-notationen.ttl b/conf/hebisMarc2lobid-transformation/maps/lbz-notationen.ttl new file mode 100644 index 0000000..20a3a7e --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/lbz-notationen.ttl @@ -0,0 +1,462 @@ +@prefix : . +@prefix dct: . +@prefix rdf: . +@prefix skos: . +@prefix vann: . + + + a skos:ConceptScheme ; + dct:title "RPB-Sachgruppen und Zusätze"@de ; + dct:license ; + dct:description "This SKOS version of a controlled vocabulary for the Rhineland-Palatian Bibliography (RPB) was created by the hbz." ; + dct:issued "2016-04-25" ; + dct:modified "2021-09-09" ; + dct:publisher ; + vann:preferredNamespaceUri "https://w3id.org/lobid/rpb2#" ; + vann:preferredNamespacePrefix "rpb2" ; + skos:hasTopConcept :n100, :n106, :n107, :n120, :n130, :n131, :n132, :n133, :n136, :n137, :n139, :n140, :n141, :n145, :n146, :n147, :n150, :n160, :n161, :n180, :n200, :n210, :n230, :n250, :n260, :n270, :n280, :n300, :n320, :n330, :n380, :n400, :n430, :n450, :n480, :n500, :n510, :n520, :n530, :n540, :n550, :n560, :n580, :n600, :n610, :n620, :n630, :n640, :n650, :n680, :n690, :n700, :n710, :n720, :n740, :n760, :n780, :n800, :n810, :n820, :n830, :n840, :n850, :n860, :n880, :n900, :n910, :n920, :n930, :n940, :n950, :n970, :n980, :n990 . + +:n100 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "100" ; + skos:prefLabel "Wissenschaft und Kultur allgemein"@de . + +:n106 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "106" ; + skos:prefLabel "Amtsdruckschriften Rheinland-Pfalz"@de . + +:n107 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "107" ; + skos:prefLabel "Schulbücher"@de . + + +:n120 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "120" ; + skos:prefLabel "Erziehung, Bildung, Unterricht"@de . + +:n130 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "130" ; + skos:prefLabel "Landeskunde Region Koblenz"@de . + +:n131 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "131" ; + skos:prefLabel "Landeskunde Pfalz"@de . + +:n132 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "132" ; + skos:prefLabel "Personen aus der Region Koblenz"@de . + +:n133 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "133" ; + skos:prefLabel "Personen aus der Pfalz"@de . + +:n136 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "136" ; + skos:prefLabel "Landeskunde Region Trier"@de . + +:n137 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "137" ; + skos:prefLabel "Landeskunde Rheinhessen"@de . + +:n139 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "139" ; + skos:prefLabel "Belegexemplare Rheinland-Pfalz"@de . + +:n140 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "140" ; + skos:prefLabel "Pflichtexemplar Region Koblenz"@de . + +:n141 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "141" ; + skos:prefLabel "Pflichtexemplar Pfalz"@de . + +:n145 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "145" ; + skos:prefLabel "Musiknoten"@de . + +:n146 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "146" ; + skos:prefLabel "Pflichtexemplar Region Trier"@de . + +:n147 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "147" ; + skos:prefLabel "Pflichtexemplar Rheinhessen"@de . + +:n150 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "150" ; + skos:prefLabel "Allg. und vergl. Sprach- u. Lit. – Wiss."@de . + +:n160 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "160" ; + skos:prefLabel "Kinder-/Jugendliteratur"@de . + +:n161 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "161" ; + skos:prefLabel "Kinder-/Jugendsachbuch"@de . + +:n180 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "180" ; + skos:prefLabel "Wörterbücher (nicht fachgebunden)"@de . + +:n200 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "200" ; + skos:prefLabel "Deutsche Sprache und Literatur"@de . + +:n210 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "210" ; + skos:prefLabel "Übrige germanische Sprachen und Lit."@de . + +:n230 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "230" ; + skos:prefLabel "Englische Sprache und Literatur"@de . + +:n250 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "250" ; + skos:prefLabel "Romanische Sprachen und Literaturen"@de . + +:n260 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "260" ; + skos:prefLabel "Klassische Sprachen und Literaturen"@de . + +:n270 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "270" ; + skos:prefLabel "Slawische und baltische Spr. u. Lit."@de . + +:n280 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "280" ; + skos:prefLabel "Sonstige Sprachen und Literaturen"@de . + +:n300 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "300" ; + skos:prefLabel "Archäologie, Vorgeschichte"@de . + +:n320 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "320" ; + skos:prefLabel "Historische Hilfswissenschaften"@de . + +:n330 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "330" ; + skos:prefLabel "Geschichte"@de . + +:n380 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "380" ; + skos:prefLabel "Wirtschafts- und Sozialgeschichte"@de . + +:n400 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "400" ; + skos:prefLabel "Philosophie/Esoterik"@de . + +:n430 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "430" ; + skos:prefLabel "Allg. und vergl. Religionswiss."@de . + +:n450 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "450" ; + skos:prefLabel "Christliche Religionen"@de . + +:n480 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "480" ; + skos:prefLabel "Nichtchristliche Religionen"@de . + +:n500 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "500" ; + skos:prefLabel "Bildende Kunst"@de . + +:n510 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "510" ; + skos:prefLabel "Architektur"@de . + +:n520 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "520" ; + skos:prefLabel "Photographie"@de . + +:n530 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "530" ; + skos:prefLabel "Film"@de . + +:n540 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "540" ; + skos:prefLabel "Theater, Tanz"@de . + +:n550 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "550" ; + skos:prefLabel "Musik"@de . + +:n560 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "560" ; + skos:prefLabel "Buch, Bibl., Information und Dok."@de . + +:n580 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "580" ; + skos:prefLabel "Handschriften, Buchkunst"@de . + +:n600 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "600" ; + skos:prefLabel "Recht, öffentliche Verwaltung"@de . + +:n610 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "610" ; + skos:prefLabel "Politik"@de . + +:n620 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "620" ; + skos:prefLabel "Publizistik"@de . + +:n630 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "630" ; + skos:prefLabel "Soziologie, Gesellschaft"@de . + +:n640 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "640" ; + skos:prefLabel "Volks- und Völkerkunde"@de . + +:n650 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "650" ; + skos:prefLabel "Wirtschaft und Arbeit"@de . + +:n680 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "680" ; + skos:prefLabel "Wein"@de . + +:n690 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "690" ; + skos:prefLabel "Militär"@de . + +:n700 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "700" ; + skos:prefLabel "Natur, Naturwiss. allgemein"@de . + +:n710 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "710" ; + skos:prefLabel "Geographie"@de . + +:n720 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "720" ; + skos:prefLabel "Geowissenschaften"@de . + +:n740 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "740" ; + skos:prefLabel "Umweltschutz, Raumordn., Landschaft"@de . + +:n760 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "760" ; + skos:prefLabel "Landwirtschaft"@de . + +:n780 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "780" ; + skos:prefLabel "Biologie"@de . + +:n800 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "800" ; + skos:prefLabel "Mathematik"@de . + +:n810 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "810" ; + skos:prefLabel "Statistik"@de . + +:n820 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "820" ; + skos:prefLabel "Informatik, Kybernetik"@de . + +:n830 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "830" ; + skos:prefLabel "Physik, Astronomie"@de . + +:n840 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "840" ; + skos:prefLabel "Chemie"@de . + +:n850 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "850" ; + skos:prefLabel "Medizin"@de . + +:n860 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "860" ; + skos:prefLabel "Psychologie"@de . + +:n880 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "880" ; + skos:prefLabel "Veterinärmedizin"@de . + +:n900 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "900" ; + skos:prefLabel "Technik allgemein"@de . + +:n910 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "910" ; + skos:prefLabel "Energie, Masch.-, Fertigungstechnik"@de . + +:n920 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "920" ; + skos:prefLabel "Elektrotechnik"@de . + +:n930 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "930" ; + skos:prefLabel "Bergbau, Bautechnik, Umwelttechnik"@de . + +:n940 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "940" ; + skos:prefLabel "Nachrichten- und Verkehrswesen"@de . + +:n950 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "950" ; + skos:prefLabel "Chemische Technik, Versch. Technologien"@de . + +:n970 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "970" ; + skos:prefLabel "Hausw., Hotel- und Gaststättengewerbe"@de . + +:n980 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "980" ; + skos:prefLabel "Basteln, Handarbeit, Heimwerken"@de . + +:n990 + a skos:Concept ; + skos:topConceptOf ; + skos:notation "990" ; + skos:prefLabel "Sport, Spiele"@de . diff --git a/conf/hebisMarc2lobid-transformation/maps/lobidOrganisationsMapping.tsv b/conf/hebisMarc2lobid-transformation/maps/lobidOrganisationsMapping.tsv new file mode 100644 index 0000000..588c8f9 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/lobidOrganisationsMapping.tsv @@ -0,0 +1,18682 @@ +id isil sigel name +http://lobid.org/organisations/ZDB-4-NHH#! ZDB-4-NHH ZDB-4-NHH EBSCO Nursing & Allied Health Collection: Basic +http://lobid.org/organisations/ZDB-4-MFH#! ZDB-4-MFH ZDB-4-MFH EBSCO MasterFILE Select +http://lobid.org/organisations/ZDB-4-VOH#! ZDB-4-VOH ZDB-4-VOH EBSCO Vocational & Career Collection +http://lobid.org/organisations/ZDB-4-SLH#! ZDB-4-SLH ZDB-4-SLH EBSCO Sociological Collection +http://lobid.org/organisations/ZDB-4-HCH#! ZDB-4-HCH ZDB-4-HCH EBSCO Health Source: Nursing/Academic Edition +http://lobid.org/organisations/ZDB-4-GSH#! ZDB-4-GSH ZDB-4-GSH EBSCO General Science Collection +http://lobid.org/organisations/ZDB-4-UFH#! ZDB-4-UFH ZDB-4-UFH EBSCO Communication & Mass Media Complete +http://lobid.org/organisations/ZDB-4-NDH#! ZDB-4-NDH ZDB-4-NDH EBSCO Book Collection: Nonfiction +http://lobid.org/organisations/ZDB-1-AIP#! ZDB-1-AIP ZDB-1-AIP AIP Digital Archive [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-IOP#! ZDB-1-IOP ZDB-1-IOP IOP Historic Archive [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-TCN#! ZDB-1-TCN ZDB-1-TCN Twentieth Century North American Drama [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BHB#! ZDB-1-BHB ZDB-1-BHB The Bibliography of the Hebrew Book [Open Access / Nationallizenz] +http://lobid.org/organisations/ZDB-1-TES#! ZDB-1-TES ZDB-1-TES Teatro Español del Siglo de Oro [Nationallizenz] +http://lobid.org/organisations/ZDB-4-CMH#! ZDB-4-CMH ZDB-4-CMH EBSCO Consumer Health Complete +http://lobid.org/organisations/ZDB-4-KEH#! ZDB-4-KEH ZDB-4-KEH EBSCO MegaFILE +http://lobid.org/organisations/ZDB-4-LFH#! ZDB-4-LFH ZDB-4-LFH EBSCO Literary Reference Center +http://lobid.org/organisations/ZDB-4-NCH#! ZDB-4-NCH ZDB-4-NCH EBSCO The National Review Archive +http://lobid.org/organisations/ZDB-4-NIH#! ZDB-4-NIH ZDB-4-NIH EBSCO The Nation Archive +http://lobid.org/organisations/ZDB-1-CEE#! ZDB-1-CEE ZDB-1-CEE Central and Eastern European Online Library (CEEOL) [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-AQC#! ZDB-1-AQC ZDB-1-AQC Aquaculture Compendium [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CAB#! ZDB-1-CAB ZDB-1-CAB CAB Abstracts 1910-1989 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ZLR#! ZDB-1-ZLR ZDB-1-ZLR Zoological Record Archive 1864-2007 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CLF#! ZDB-1-CLF ZDB-1-CLF Corpus de la première littérature francophone de l'Afrique noire [Nationallizenz] +http://lobid.org/organisations/ZDB-2-ENG#! ZDB-2-ENG ZDB-2-ENG Springer ebook collection / Engineering +http://lobid.org/organisations/ZDB-2-SMD#! ZDB-2-SMD ZDB-2-SMD Springer ebook collection / Medizin +http://lobid.org/organisations/ZDB-9-VRL#! ZDB-9-VRL ZDB-9-VRL Gale ebooks [Gesamt] +http://lobid.org/organisations/ZDB-10-KNL#! ZDB-10-KNL ZDB-10-KNL Knovel library +http://lobid.org/organisations/ZDB-12-LGW#! ZDB-12-LGW ZDB-12-LGW Langenscheidt-Wörterbücher +http://lobid.org/organisations/ZDB-1-BPC#! ZDB-1-BPC ZDB-1-BPC British Periodicals Collection I+II [Nationallizenz] +http://lobid.org/organisations/ZDB-4-EOH#! ZDB-4-EOH ZDB-4-EOH EBSCO EconLit with Full Text +http://lobid.org/organisations/ZDB-1-DGR#! ZDB-1-DGR ZDB-1-DGR Walter de Gruyter Online-Zeitschriften [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-IOPK#! ZDB-1-IOPK ZDB-1-IOPK IOP Journals / IOPscience Extra [Komplett] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-MEI#! ZDB-1-MEI ZDB-1-MEI The Middle East Online / Series 2, Iraq 1914-1974 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-APS#! ZDB-1-APS ZDB-1-APS APS Digital Backfile Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EAV#! ZDB-1-EAV ZDB-1-EAV Universal Database of Social Sciences & Humanities [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SLN#! ZDB-1-SLN ZDB-1-SLN Springer Lecture Notes [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SNT#! ZDB-1-SNT ZDB-1-SNT Scientific.Net : Materials Science & Technology [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DG2K#! ZDB-1-DG2K ZDB-1-DG2K Walter de Gruyter Online-Zeitschriften / Science, Technology and Medicine - STM1 [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-2-LNC#! ZDB-2-LNC ZDB-2-LNC Springer Lecture Notes in Computer Science +http://lobid.org/organisations/ZDB-18-BEO#! ZDB-18-BEO ZDB-18-BEO beck-online +http://lobid.org/organisations/ZDB-20-CCO#! ZDB-20-CCO ZDB-20-CCO Cambridge Companions Complete Collection +http://lobid.org/organisations/ZDB-10-ARA#! ZDB-10-ARA ZDB-10-ARA Knovel Aerospace & Radar Technology +http://lobid.org/organisations/ZDB-10-ESC#! ZDB-10-ESC ZDB-10-ESC Knovel Electronics & Semiconductors +http://lobid.org/organisations/ZDB-10-EEE#! ZDB-10-EEE ZDB-10-EEE Knovel Environment & Environmental Engineering +http://lobid.org/organisations/ZDB-28-OSO#! ZDB-28-OSO ZDB-28-OSO Oxford Scholarship Online / Classical Studies +http://lobid.org/organisations/ZDB-28-OSH#! ZDB-28-OSH ZDB-28-OSH Oxford Scholarship Online / History +http://lobid.org/organisations/ZDB-30-LOR#! ZDB-30-LOR ZDB-30-LOR Literature Online Reference Edition - LORE +http://lobid.org/organisations/ZDB-4-ZPSB#! ZDB-4-ZPSB ZDB-4-ZPSB EBSCO PsycBooks +http://lobid.org/organisations/ZDB-33-CHM#! ZDB-33-CHM ZDB-33-CHM Elsevier e-book collection - Chemistry +http://lobid.org/organisations/ZDB-33-NEU#! ZDB-33-NEU ZDB-33-NEU Elsevier e-book collection - Neuroscience +http://lobid.org/organisations/ZDB-34-THI#! ZDB-34-THI ZDB-34-THI Thieme E-Book Library +http://lobid.org/organisations/ZDB-1-KEB#! ZDB-1-KEB ZDB-1-KEB Karger eBooks Collection [Nationallizenz] +http://lobid.org/organisations/ZDB-1-IHD#! ZDB-1-IHD ZDB-1-IHD Informa Healthcare Digital Archive 1896-2009 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-GCW#! ZDB-1-GCW ZDB-1-GCW The Gerritsen Collection / Women`s History Online [Nationallizenz] +http://lobid.org/organisations/ZDB-28-OSE#! ZDB-28-OSE ZDB-28-OSE Oxford Scholarship Online / Economics and Finance +http://lobid.org/organisations/ZDB-28-OSL#! ZDB-28-OSL ZDB-28-OSL Oxford Scholarship Online / Law +http://lobid.org/organisations/ZDB-28-OSY#! ZDB-28-OSY ZDB-28-OSY Oxford Scholarship Online / Physics +http://lobid.org/organisations/ZDB-28-OSG#! ZDB-28-OSG ZDB-28-OSG Oxford Scholarship Online / Psychology +http://lobid.org/organisations/ZDB-28-OSJ#! ZDB-28-OSJ ZDB-28-OSJ Oxford Scholarship Online / Public Health and Epidemiology +http://lobid.org/organisations/ZDB-28-OSR#! ZDB-28-OSR ZDB-28-OSR Oxford Scholarship Online / Religion +http://lobid.org/organisations/ZDB-23-DGC#! ZDB-23-DGC ZDB-23-DGC De Gruyter E-Books / Rechtswissenschaften +http://lobid.org/organisations/ZDB-23-DGF#! ZDB-23-DGF ZDB-23-DGF De Gruyter E-Books / Theologie, Religionswissenschaften, Judaistik +http://lobid.org/organisations/ZDB-42-OBL#! ZDB-42-OBL ZDB-42-OBL Oldenbourg +http://lobid.org/organisations/ZDB-1-CDC#! ZDB-1-CDC ZDB-1-CDC Corvey Digital Collection : Literature of the 18th and 19th Centuries [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SSB#! ZDB-1-SSB ZDB-1-SSB Primary Sources for Slavic Studies [Nationallizenz] +http://lobid.org/organisations/ZDB-44-LIO#! ZDB-44-LIO ZDB-44-LIO Literature online +http://lobid.org/organisations/ZDB-1-AAS2#! ZDB-1-AAS2 ZDB-1-AAS2 American Antiquarian Society (AAS) Historical Periodicals Collection : Series 2 (1821-1837) [Nationallizenz] +http://lobid.org/organisations/ZDB-33-ABS#! ZDB-33-ABS ZDB-33-ABS Elsevier e-book collection - Agricultural, Biological, and Food Sciences +http://lobid.org/organisations/ZDB-33-EPS#! ZDB-33-EPS ZDB-33-EPS Elsevier e-book collection - Earth & Planetary Sciences +http://lobid.org/organisations/ZDB-33-EGY#! ZDB-33-EGY ZDB-33-EGY Elsevier e-book collection - Energy +http://lobid.org/organisations/ZDB-33-EGE#! ZDB-33-EGE ZDB-33-EGE Elsevier e-book collection - Engineering +http://lobid.org/organisations/ZDB-33-MTY#! ZDB-33-MTY ZDB-33-MTY Elsevier e-book collection - Media Technology +http://lobid.org/organisations/ZDB-1-SMI#! ZDB-1-SMI ZDB-1-SMI Springer ebook collection / Medicine 2005-2008 [Nationallizenz] +http://lobid.org/organisations/ZDB-38-EIA#! ZDB-38-EIA ZDB-38-EIA ebrary subject collection / Interdisciplinary & area studies +http://lobid.org/organisations/ZDB-1-COL#! ZDB-1-COL ZDB-1-COL The Cochrane Library [Nationalkonsortium] +http://lobid.org/organisations/ZDB-52-CFR#! ZDB-52-CFR ZDB-52-CFR HeinOnline / Code of Federal Regulations +http://lobid.org/organisations/ZDB-53-ICE#! ZDB-53-ICE ZDB-53-ICE ICE Virtual Library Complete Ebook Collection +http://lobid.org/organisations/ZDB-2-LNP#! ZDB-2-LNP ZDB-2-LNP Springer Lecture Notes in Physics +http://lobid.org/organisations/ZDB-1-PRA#! ZDB-1-PRA ZDB-1-PRA Pravda [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SOT#! ZDB-1-SOT ZDB-1-SOT Social Theory [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BMJA#! ZDB-1-BMJA ZDB-1-BMJA BMJ Journals Online Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SAGM#! ZDB-1-SAGM ZDB-1-SAGM Sage Journals Online Publish & Read / Materials Science & Engineering [Nationalkonsortium] +http://lobid.org/organisations/ZDB-52-FIL#! ZDB-52-FIL ZDB-52-FIL HeinOnline / Foreign & International Law Resources Database +http://lobid.org/organisations/ZDB-1-LEO#! ZDB-1-LEO ZDB-1-LEO Der Literarische Expressionismus Online [Nationallizenz] +http://lobid.org/organisations/ZDB-55-BME#! ZDB-55-BME ZDB-55-BME Emerald Business, Management and Economics eBook Collection Purchase +http://lobid.org/organisations/ZDB-23-DGM#! ZDB-23-DGM ZDB-23-DGM De Gruyter e-dition: Best of Theology / Theologie +http://lobid.org/organisations/ZDB-23-DGN#! ZDB-23-DGN ZDB-23-DGN De Gruyter e-dition: Best of Philosophy / Philosophie +http://lobid.org/organisations/ZDB-23-DGO#! ZDB-23-DGO ZDB-23-DGO De Gruyter e-dition: Best of Linguistics / Linguistik +http://lobid.org/organisations/ZDB-59-BPA#! ZDB-59-BPA ZDB-59-BPA Beltz Psychologie Anwendung +http://lobid.org/organisations/ZDB-73-CVT#! ZDB-73-CVT ZDB-73-CVT campus e-books / Sozialwissenschaft Backlist +http://lobid.org/organisations/ZDB-42-OZG#! ZDB-42-OZG ZDB-42-OZG Oldenbourg / Schriftenreihe der Vierteljahrshefte für Zeitgeschichte +http://lobid.org/organisations/ZDB-1-PLT#! ZDB-1-PLT ZDB-1-PLT Palgrave Connect / Language, Literature & Theatre Package [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBD#! ZDB-1-CUBD ZDB-1-CUBD Cambridge Books Online / History [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBI#! ZDB-1-CUBI ZDB-1-CUBI Cambridge Books Online / Philosophy [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBL#! ZDB-1-CUBL ZDB-1-CUBL Cambridge Books Online / Sociology [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBE#! ZDB-41-UTBE ZDB-41-UTBE utb-studi-e-book / Kunst und Kultur +http://lobid.org/organisations/ZDB-41-UTBR#! ZDB-41-UTBR ZDB-41-UTBR utb-studi-e-book / Recht +http://lobid.org/organisations/ZDB-41-UTBM#! ZDB-41-UTBM ZDB-41-UTBM utb-studi-e-book / Schlüsselkompetenzen +http://lobid.org/organisations/ZDB-41-UTBO#! ZDB-41-UTBO ZDB-41-UTBO utb-studi-e-book / Soziologie +http://lobid.org/organisations/ZDB-1-SAGI#! ZDB-1-SAGI ZDB-1-SAGI Sage IMechE Publish & Read [Nationalkonsortium] +http://lobid.org/organisations/ZDB-75-TOPS#! ZDB-75-TOPS ZDB-75-TOPS Torrossa / EIO - Editoria Italiana Online / Geschichte, Politik, Gesellschaft und Wirtschaft Italiens +http://lobid.org/organisations/ZDB-1-DG2L#! ZDB-1-DG2L ZDB-1-DG2L Walter de Gruyter Online-Zeitschriften / Science, Technology and Medicine - STM2 [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-59-BPR#! ZDB-59-BPR ZDB-59-BPR Beltz Reformpädagogik +http://lobid.org/organisations/ZDB-84-KOC#! ZDB-84-KOC ZDB-84-KOC Kohlhammer Klinische Praxis - Erwachsene/Allgemein +http://lobid.org/organisations/ZDB-84-KOH#! ZDB-84-KOH ZDB-84-KOH Kohlhammer Ratgeber +http://lobid.org/organisations/ZDB-84-KOM#! ZDB-84-KOM ZDB-84-KOM Kohlhammer Schulpädagogik +http://lobid.org/organisations/ZDB-84-KOP#! ZDB-84-KOP ZDB-84-KOP Kohlhammer Kinder fördern +http://lobid.org/organisations/ZDB-85-LDB#! ZDB-85-LDB ZDB-85-LDB Linde-Verlag Management und Unternehmensführung +http://lobid.org/organisations/ZDB-85-LDD#! ZDB-85-LDD ZDB-85-LDD Linde-Verlag Management und Führung +http://lobid.org/organisations/ZDB-85-LDF#! ZDB-85-LDF ZDB-85-LDF Linde-Verlag Finanzen populär +http://lobid.org/organisations/ZDB-85-LDK#! ZDB-85-LDK ZDB-85-LDK Linde-Verlag Verkauf +http://lobid.org/organisations/ZDB-74-AKB#! ZDB-74-AKB ZDB-74-AKB akademie-link / Goedeke +http://lobid.org/organisations/ZDB-74-AKD#! ZDB-74-AKD ZDB-74-AKD akademie-link / Mittelalter, Frühe Neuzeit +http://lobid.org/organisations/ZDB-30-PRI#! ZDB-30-PRI ZDB-30-PRI Prisma. Publicaciones y revistas sociales y humanisticas +http://lobid.org/organisations/ZDB-87-GNB#! ZDB-87-GNB ZDB-87-GNB Classiques Garnier Numérique / Bibliothèque du théâtre francais +http://lobid.org/organisations/ZDB-88-JRG#! ZDB-88-JRG ZDB-88-JRG juris PartnerModul Familienrecht premium +http://lobid.org/organisations/ZDB-88-JRJ#! ZDB-88-JRJ ZDB-88-JRJ Modul Strafrecht plus De Gruyter +http://lobid.org/organisations/ZDB-54-DHG#! ZDB-54-DHG ZDB-54-DHG Duncker & Humblot eLibrary / GYIL (German Yearbook of International Law) +http://lobid.org/organisations/ZDB-28-OHB#! ZDB-28-OHB ZDB-28-OHB Oxford Handbooks Online / Business and Management +http://lobid.org/organisations/ZDB-75-TOT#! ZDB-75-TOT ZDB-75-TOT Torrossa / Leo S. Olschki Theatre Collection +http://lobid.org/organisations/ZDB-75-TOI#! ZDB-75-TOI ZDB-75-TOI Torrossa / Leo S. Olschki Italian Literature prior to 1500 Collection +http://lobid.org/organisations/ZDB-39-JA8#! ZDB-39-JA8 ZDB-39-JA8 JSTOR : Arts & Sciences VIII Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NOM#! ZDB-18-NOM ZDB-18-NOM Nomos eLibrary / Medien- und Kommunikationswissenschaft +http://lobid.org/organisations/ZDB-114-VOS#! ZDB-114-VOS ZDB-114-VOS Peter Lang eBooks / Slavistik online +http://lobid.org/organisations/ZDB-42-OAP#! ZDB-42-OAP ZDB-42-OAP Oldenbourg / Akten auswärtige Politik Deutschland +http://lobid.org/organisations/ZDB-42-OIN#! ZDB-42-OIN ZDB-42-OIN Oldenbourg / Informatik +http://lobid.org/organisations/ZDB-42-ONA#! ZDB-42-ONA ZDB-42-ONA Oldenbourg / Naturwissenschaft, Mathematik, Informatik +http://lobid.org/organisations/ZDB-42-ONZ#! ZDB-42-ONZ ZDB-42-ONZ Oldenbourg / Neuzeit +http://lobid.org/organisations/ZDB-42-OPR#! ZDB-42-OPR ZDB-42-OPR Oldenbourg / Parlamentarischer Rat +http://lobid.org/organisations/ZDB-42-OZE#! ZDB-42-OZE ZDB-42-OZE Oldenbourg / Quellen und Darstellungen Zeitschichte +http://lobid.org/organisations/ZDB-74-AKI#! ZDB-74-AKI ZDB-74-AKI akademie-link / Leibniz Philosophische Schriften +http://lobid.org/organisations/ZDB-18-NOJ#! ZDB-18-NOJ ZDB-18-NOJ Nomos eLibrary / Jura Grundlagen +http://lobid.org/organisations/ZDB-1-LWWA#! ZDB-1-LWWA ZDB-1-LWWA Ovid journals A - Z / Allianz-Lizenz LWW [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PSI#! ZDB-1-PSI ZDB-1-PSI BrillOnline / Primary sources / Reformation Studies / Italian Reformation Online, Part 1 [Nationallizenz] +http://lobid.org/organisations/ZDB-39-JBK#! ZDB-39-JBK ZDB-39-JBK JSTOR Books +http://lobid.org/organisations/ZDB-54-DHL#! ZDB-54-DHL ZDB-54-DHL Duncker & Humblot eLibrary / PHIL (Kollektion Philosophie) +http://lobid.org/organisations/ZDB-28-OHO#! ZDB-28-OHO ZDB-28-OHO Oxford Handbooks Online +http://lobid.org/organisations/ZDB-103-WEE#! ZDB-103-WEE ZDB-103-WEE Woodhead / Energy and Environmental Technology Collection +http://lobid.org/organisations/ZDB-105-MCC#! ZDB-105-MCC ZDB-105-MCC Morgan & Claypool: Computer & Information Science Collections / CIS collection five +http://lobid.org/organisations/ZDB-108-SLE#! ZDB-108-SLE ZDB-108-SLE Salem Literature E-Books +http://lobid.org/organisations/ZDB-109-LPK#! ZDB-109-LPK ZDB-109-LPK Lambertus / Pädagogik, Kinder-, Jugend- und Familienhilfe +http://lobid.org/organisations/ZDB-28-OHR#! ZDB-28-OHR ZDB-28-OHR Oxford Handbooks Online / Religion +http://lobid.org/organisations/ZDB-111-NML#! ZDB-111-NML ZDB-111-NML NAXOS Music Library (NML) +http://lobid.org/organisations/ZDB-112-SRA#! ZDB-112-SRA ZDB-112-SRA Schattauer E-Medien / AINS +http://lobid.org/organisations/ZDB-112-SRJ#! ZDB-112-SRJ ZDB-112-SRJ Schattauer E-Medien / Palliativmedizin +http://lobid.org/organisations/ZDB-112-SRL#! ZDB-112-SRL ZDB-112-SRL Schattauer E-Medien / Pädiatrie +http://lobid.org/organisations/ZDB-112-SRP#! ZDB-112-SRP ZDB-112-SRP Schattauer E-Medien / Trauma, Borderline +http://lobid.org/organisations/ZDB-112-SRR#! ZDB-112-SRR ZDB-112-SRR Schattauer E-Medien / Patientenliteratur & Sachbuch +http://lobid.org/organisations/ZDB-18-NBR#! ZDB-18-NBR ZDB-18-NBR Nomos eLibrary / Zivilrecht +http://lobid.org/organisations/ZDB-105-MC6#! ZDB-105-MC6 ZDB-105-MC6 Morgan & Claypool: Computer & Information Science Collections / CIS collection six +http://lobid.org/organisations/ZDB-113-CIL#! ZDB-113-CIL ZDB-113-CIL Chandos Publishing / Combined Information and Library Management Collection +http://lobid.org/organisations/ZDB-114-LAW#! ZDB-114-LAW ZDB-114-LAW Peter Lang eBooks / Wirtschaft +http://lobid.org/organisations/ZDB-95-EHC#! ZDB-95-EHC ZDB-95-EHC Brill Online / European History and Culture +http://lobid.org/organisations/ZDB-95-BSS#! ZDB-95-BSS ZDB-95-BSS Brill Online / Social Sciences +http://lobid.org/organisations/ZDB-95-BOB#! ZDB-95-BOB ZDB-95-BOB Brill Online / Biology +http://lobid.org/organisations/ZDB-96-SEM#! ZDB-96-SEM ZDB-96-SEM Sage knowledge / Engineering & Materials Science +http://lobid.org/organisations/ZDB-96-SHI#! ZDB-96-SHI ZDB-96-SHI Sage knowledge / History +http://lobid.org/organisations/ZDB-96-SMP#! ZDB-96-SMP ZDB-96-SMP Sage knowledge / Maths, Physics, Chemistry & Computing +http://lobid.org/organisations/ZDB-96-SRV#! ZDB-96-SRV ZDB-96-SRV Sage knowledge / Research Methods & Evaluation +http://lobid.org/organisations/ZDB-102-MOT#! ZDB-102-MOT ZDB-102-MOT The March of Time +http://lobid.org/organisations/ZDB-7-RIS#! ZDB-7-RIS ZDB-7-RIS Taylor & Francis eBooks / Reference & Information Science +http://lobid.org/organisations/ZDB-7-PIR#! ZDB-7-PIR ZDB-7-PIR Taylor & Francis eBooks / Politics & International Relations +http://lobid.org/organisations/ZDB-7-TLW#! ZDB-7-TLW ZDB-7-TLW Taylor & Francis eBooks / Law +http://lobid.org/organisations/ZDB-7-FST#! ZDB-7-FST ZDB-7-FST Taylor & Francis eBooks / Food Science & Technology +http://lobid.org/organisations/ZDB-7-ENA#! ZDB-7-ENA ZDB-7-ENA Taylor & Francis eBooks / Environment & Agriculture +http://lobid.org/organisations/ZDB-7-BSC#! ZDB-7-BSC ZDB-7-BSC Taylor & Francis eBooks / Bioscience +http://lobid.org/organisations/ZDB-1-IKA#! ZDB-1-IKA ZDB-1-IKA Iskusstvo Kino Digital Archive 1931-2013 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-23-OPS#! ZDB-23-OPS ZDB-23-OPS eBook-Paket Oldenbourg-Akademie / Politik- und Sozialwissenschaften +http://lobid.org/organisations/ZDB-23-AKU#! ZDB-23-AKU ZDB-23-AKU eBook-Paket Akademie Kunst +http://lobid.org/organisations/ZDB-1-BHR#! ZDB-1-BHR ZDB-1-BHR Brill / Human Rights and Humanitarian Law E-Books Online 2009-2014 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-BIL#! ZDB-1-BIL ZDB-1-BIL Brill / International Law E-Books Online 2009-2014 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-116-KPS#! ZDB-116-KPS ZDB-116-KPS Klett-Cotta / Psychoanalyse +http://lobid.org/organisations/ZDB-116-KPT#! ZDB-116-KPT ZDB-116-KPT Klett-Cotta / Psychotherapie +http://lobid.org/organisations/ZDB-1-SAGR#! ZDB-1-SAGR ZDB-1-SAGR Sage RSM Publish & Read [Nationalkonsortium] +http://lobid.org/organisations/ZDB-116-KST#! ZDB-116-KST ZDB-116-KST Klett-Cotta / Systemische Therapie +http://lobid.org/organisations/ZDB-88-ERP#! ZDB-88-ERP ZDB-88-ERP juris PartnerModul Erbrecht premium +http://lobid.org/organisations/ZDB-88-MRP#! ZDB-88-MRP ZDB-88-MRP juris PartnerModul Medizinrecht premium +http://lobid.org/organisations/ZDB-88-CRO#! ZDB-88-CRO ZDB-88-CRO OVS Modul CRonline powered by juris +http://lobid.org/organisations/ZDB-88-WSR#! ZDB-88-WSR ZDB-88-WSR OVS Modul Wirtschafts- und Steuerrecht +http://lobid.org/organisations/ZDB-117-AGP#! ZDB-117-AGP ZDB-117-AGP V&R eLibrary / Arbeiten zur Geschichte des Pietismus +http://lobid.org/organisations/ZDB-117-AOP#! ZDB-117-AOP ZDB-117-AOP V&R eLibrary / Arbeits- und Organisationspsychologie +http://lobid.org/organisations/ZDB-117-APL#! ZDB-117-APL ZDB-117-APL V&R eLibrary / Arbeiten zur Pastoraltheologie, Liturgik und Hymnologie +http://lobid.org/organisations/ZDB-117-HYP#! ZDB-117-HYP ZDB-117-HYP V&R eLibrary / Hypomnemata + Hypomnemata Supplement +http://lobid.org/organisations/ZDB-117-TGR#! ZDB-117-TGR ZDB-117-TGR V&R eLibrary / Tragicorum Graecorum et Romanorum Fragmenta +http://lobid.org/organisations/ZDB-35-WCN#! ZDB-35-WCN ZDB-35-WCN Wiley Collection Materials Science +http://lobid.org/organisations/ZDB-35-WCS#! ZDB-35-WCS ZDB-35-WCS Wiley Collection Physics +http://lobid.org/organisations/ZDB-35-WCU#! ZDB-35-WCU ZDB-35-WCU Wiley Collection Polymer Science & Technology +http://lobid.org/organisations/ZDB-120-SVE#! ZDB-120-SVE ZDB-120-SVE Franz Steiner Verlag eLibrary / Geschichte +http://lobid.org/organisations/ZDB-1-ISP#! ZDB-1-ISP ZDB-1-ISP INSPEC [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NOG#! ZDB-18-NOG ZDB-18-NOG Nomos eLibrary / Geschichte +http://lobid.org/organisations/ZDB-1-JA13#! ZDB-1-JA13 ZDB-1-JA13 JSTOR : Arts & Sciences XIII Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-121-UAW#! ZDB-121-UAW ZDB-121-UAW Ulmer E-Books / Agrarwissenschaften +http://lobid.org/organisations/ZDB-28-OPC#! ZDB-28-OPC ZDB-28-OPC Oxford Handbooks Online / Political Science +http://lobid.org/organisations/ZDB-41-SKP#! ZDB-41-SKP ZDB-41-SKP scholars-e-library / Klassische Philologie +http://lobid.org/organisations/ZDB-41-SSA#! ZDB-41-SSA ZDB-41-SSA scholars-e-library / Soziale Arbeit +http://lobid.org/organisations/ZDB-41-SSS#! ZDB-41-SSS ZDB-41-SSS scholars-e-library / Soziologie/ Soziologische Theorien +http://lobid.org/organisations/ZDB-107-WMU#! ZDB-107-WMU ZDB-107-WMU scholars-e-library / Musik und Musikpädagogik / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WPO#! ZDB-107-WPO ZDB-107-WPO scholars-e-library / Politik / Backlist Waxmann +http://lobid.org/organisations/ZDB-116-KEP#! ZDB-116-KEP ZDB-116-KEP Klett-Cotta / Psychologie Sachbuch +http://lobid.org/organisations/ZDB-116-KPF#! ZDB-116-KPF ZDB-116-KPF Klett-Cotta / Psychologie Fachbuch +http://lobid.org/organisations/ZDB-125-TAD#! ZDB-125-TAD ZDB-125-TAD scholars-e-library / Architektur und Design / Backlist transcript +http://lobid.org/organisations/ZDB-125-TWT#! ZDB-125-TWT ZDB-125-TWT scholars-e-library / Wissenschafts- und Technikgeschichte / Backlist transcript +http://lobid.org/organisations/ZDB-125-TLI#! ZDB-125-TLI ZDB-125-TLI scholars-e-library / Allgemeine Literaturwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TDL#! ZDB-125-TDL ZDB-125-TDL scholars-e-library / Deutsche, Englische, Romanische und Slawische Literaturwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TSR#! ZDB-125-TSR ZDB-125-TSR scholars-e-library / Stadt- und Raumsoziologie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TWI#! ZDB-125-TWI ZDB-125-TWI scholars-e-library / Wissenschafts-, Technik- und Umweltsoziologie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TMR#! ZDB-125-TMR ZDB-125-TMR scholars-e-library / Migrations- und Religionssoziologie / Backlist transcript +http://lobid.org/organisations/ZDB-126-ONW#! ZDB-126-ONW ZDB-126-ONW oekom verlag / Nachhaltiges Wirtschaften +http://lobid.org/organisations/ZDB-121-UFW#! ZDB-121-UFW ZDB-121-UFW Ulmer E-Books / Forstwirtschaft +http://lobid.org/organisations/ZDB-121-UNA#! ZDB-121-UNA ZDB-121-UNA Ulmer E-Books / Pädagogik Naturkunde +http://lobid.org/organisations/ZDB-121-UWE#! ZDB-121-UWE ZDB-121-UWE Ulmer E-Books / Weinbau +http://lobid.org/organisations/ZDB-109-LSC#! ZDB-109-LSC ZDB-109-LSC Lambertus / Sozialmanagement und Coaching +http://lobid.org/organisations/ZDB-109-LTC#! ZDB-109-LTC ZDB-109-LTC Lambertus / Tarifrecht der Caritas +http://lobid.org/organisations/ZDB-109-LCE#! ZDB-109-LCE ZDB-109-LCE Lambertus / Ethik, Caritas, Kirchliches Arbeitsrecht und Theologie +http://lobid.org/organisations/ZDB-128-VBB#! ZDB-128-VBB ZDB-128-VBB Beck eLibrary / Vahlen Buchführung, Bilanz, Steuern +http://lobid.org/organisations/ZDB-128-VIF#! ZDB-128-VIF ZDB-128-VIF Beck eLibrary / Vahlen Investition und Finanzierung +http://lobid.org/organisations/ZDB-105-MC3#! ZDB-105-MC3 ZDB-105-MC3 Morgan & Claypool: Computer & Information Science Collections / CIS collection three +http://lobid.org/organisations/ZDB-129-JBE#! ZDB-129-JBE ZDB-129-JBE John Benjamins e-Books +http://lobid.org/organisations/ZDB-2-SEP#! ZDB-2-SEP ZDB-2-SEP Springer ebook collection / Psychologie +http://lobid.org/organisations/ZDB-75-TLO#! ZDB-75-TLO ZDB-75-TLO Torrossa / Leo S. Olschki eBooks +http://lobid.org/organisations/ZDB-18-NSZ#! ZDB-18-NSZ ZDB-18-NSZ Nomos eLibrary / Studienliteratur Zivilrecht +http://lobid.org/organisations/ZDB-18-NSA#! ZDB-18-NSA ZDB-18-NSA Nomos eLibrary / Studienliteratur Soziale Arbeit +http://lobid.org/organisations/ZDB-130-BAP#! ZDB-130-BAP ZDB-130-BAP scholars-e-library / Pädagogik/ Arbeitsmarktpoltik - Forschung / Backlist wbv +http://lobid.org/organisations/ZDB-23-DBV#! ZDB-23-DBV ZDB-23-DBV De Gruyter eBook-Paket Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-23-DPM#! ZDB-23-DPM ZDB-23-DPM De Gruyter eBook-Paket Medizin +http://lobid.org/organisations/ZDB-23-DSP#! ZDB-23-DSP ZDB-23-DSP De Gruyter eBook-Paket Sprachwissenschaft +http://lobid.org/organisations/ZDB-41-SBC#! ZDB-41-SBC ZDB-41-SBC scholars-e-library / Psychologische Beratung & Coaching +http://lobid.org/organisations/ZDB-1-BCSA#! ZDB-1-BCSA ZDB-1-BCSA Brill / Classical Studies E-Books Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-23-TGP#! ZDB-23-TGP ZDB-23-TGP transcript eBook-Gesamtpaket +http://lobid.org/organisations/ZDB-25-KGC#! ZDB-25-KGC ZDB-25-KGC Karger eBook Collection (German) +http://lobid.org/organisations/ZDB-136-SKS#! ZDB-136-SKS ZDB-136-SKS Suhrkamp / Kultur- und Sozialwissenschaft +http://lobid.org/organisations/ZDB-47-ESR#! ZDB-47-ESR ZDB-47-ESR Erich Schmidt Verlag E-Books / Recht +http://lobid.org/organisations/ZDB-132-VCL#! ZDB-132-VCL ZDB-132-VCL Vogel Business Media / Chemie, Labor +http://lobid.org/organisations/ZDB-132-VET#! ZDB-132-VET ZDB-132-VET Vogel Business Media / Elektrotechnik +http://lobid.org/organisations/ZDB-4-EBU#! ZDB-4-EBU ZDB-4-EBU EBSCO eBook Business Collection +http://lobid.org/organisations/ZDB-105-MCS#! ZDB-105-MCS ZDB-105-MCS Morgan & Claypool: Synthesis Digital Library of Engineering and Computer Science +http://lobid.org/organisations/ZDB-5-WMS#! ZDB-5-WMS ZDB-5-WMS wiso Sozialwissenschaften +http://lobid.org/organisations/ZDB-18-NSW#! ZDB-18-NSW ZDB-18-NSW Nomos eLibrary / Geistes- und Sozialwissenschaften +http://lobid.org/organisations/ZDB-138-AMS#! ZDB-138-AMS ZDB-138-AMS AMS ebooks / Mathematical Surveys and Monographs +http://lobid.org/organisations/ZDB-139-LCB#! ZDB-139-LCB ZDB-139-LCB Loeb Classical Library +http://lobid.org/organisations/ZDB-140-STO#! ZDB-140-STO ZDB-140-STO juris Stotax First / Datenbank +http://lobid.org/organisations/ZDB-7-RHL#! ZDB-7-RHL ZDB-7-RHL Routledge Handbooks Online / Linguistics +http://lobid.org/organisations/ZDB-59-BEZ#! ZDB-59-BEZ ZDB-59-BEZ Beltz Erziehungswissenschaft +http://lobid.org/organisations/ZDB-1-DHW#! ZDB-1-DHW ZDB-1-DHW Duncker & Humblot E-Books WIRTSCHAFTSWISSENSCHAFTEN 1996–2005 [Nationallizenz] +http://lobid.org/organisations/ZDB-132-VTE#! ZDB-132-VTE ZDB-132-VTE Vogel Business Media / Technik +http://lobid.org/organisations/ZDB-23-BBC#! ZDB-23-BBC ZDB-23-BBC Böhlau e-dition : Complete Best of Collection +http://lobid.org/organisations/ZDB-23-BBZ#! ZDB-23-BBZ ZDB-23-BBZ Böhlau e-dition : Best of Zeitgeschichte / Contemporary History +http://lobid.org/organisations/ZDB-23-BBK#! ZDB-23-BBK ZDB-23-BBK Böhlau e-dition : Best of Kunstgeschichte / Art History +http://lobid.org/organisations/ZDB-116-KMK#! ZDB-116-KMK ZDB-116-KMK Klett-Cotta / Moderne Klassiker +http://lobid.org/organisations/ZDB-85-LDR#! ZDB-85-LDR ZDB-85-LDR Linde-Verlag Finanzen & Unternehmensführung +http://lobid.org/organisations/ZDB-141-MPP#! ZDB-141-MPP ZDB-141-MPP MWV Verlag / Psychiatrie/Psychotherapie +http://lobid.org/organisations/ZDB-41-SPE#! ZDB-41-SPE ZDB-41-SPE scholars-e-library / Psychoanalyse +http://lobid.org/organisations/ZDB-41-SML#! ZDB-41-SML ZDB-41-SML scholars-e-library / Medizin und Pflege +http://lobid.org/organisations/ZDB-41-SLA#! ZDB-41-SLA ZDB-41-SLA scholars-e-library / Literaturwissenschaft allg./ Anglistik +http://lobid.org/organisations/ZDB-125-TKL#! ZDB-125-TKL ZDB-125-TKL scholars-e-library / Kulturwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TGU#! ZDB-125-TGU ZDB-125-TGU scholars-e-library / Geographie und Urbanistik / Backlist transcript +http://lobid.org/organisations/ZDB-117-PAE#! ZDB-117-PAE ZDB-117-PAE V&R eLibrary / Pädagogik und Erziehung +http://lobid.org/organisations/ZDB-117-REG#! ZDB-117-REG ZDB-117-REG V&R eLibrary / Religionsgeschichte +http://lobid.org/organisations/ZDB-130-BEG#! ZDB-130-BEG ZDB-130-BEG scholars-e-library / Pädagogik/ Erwachsenenbildung und Grundbildung / Backlist wbv +http://lobid.org/organisations/ZDB-23-DBD#! ZDB-23-DBD ZDB-23-DBD De Gruyter e-dition 2: Best of German Studies +http://lobid.org/organisations/ZDB-23-DBH#! ZDB-23-DBH ZDB-23-DBH De Gruyter e-dition 2: Best of Linguistics Titles in English +http://lobid.org/organisations/ZDB-142-WMA#! ZDB-142-WMA ZDB-142-WMA WBG / Mittelalter +http://lobid.org/organisations/ZDB-142-WSG#! ZDB-142-WSG ZDB-142-WSG WBG / Sachbuch Geschichte +http://lobid.org/organisations/ZDB-18-BLA#! ZDB-18-BLA ZDB-18-BLA Beck eLibrary / C.H. Beck Altertumswissenschaft +http://lobid.org/organisations/ZDB-18-BLI#! ZDB-18-BLI ZDB-18-BLI Beck eLibrary / C.H. Beck Geschichte des 20. - 21. Jahrhunderts +http://lobid.org/organisations/ZDB-2-LCM#! ZDB-2-LCM ZDB-2-LCM Springer ebook collection / Literature, Cultural and Media Studies +http://lobid.org/organisations/ZDB-2-POS#! ZDB-2-POS ZDB-2-POS Springer ebook collection / Political Science and International Studies +http://lobid.org/organisations/ZDB-2-REP#! ZDB-2-REP ZDB-2-REP Springer ebook collection / Religion and Philosophy +http://lobid.org/organisations/ZDB-2-SIR#! ZDB-2-SIR ZDB-2-SIR Springer ebook collection / Springer Reference DE +http://lobid.org/organisations/ZDB-2-PLA#! ZDB-2-PLA ZDB-2-PLA Springer ebook collection / Palgrave Language & Linguistics Collection +http://lobid.org/organisations/ZDB-2-PSE#! ZDB-2-PSE ZDB-2-PSE Springer ebook collection / Palgrave Social Sciences Collection +http://lobid.org/organisations/ZDB-2-PPA#! ZDB-2-PPA ZDB-2-PPA Springer ebook collection / Palgrave Literature & Performing Arts Collection +http://lobid.org/organisations/ZDB-2-PBY#! ZDB-2-PBY ZDB-2-PBY Springer ebook collection / Palgrave BYO collection +http://lobid.org/organisations/ZDB-2-IHS#! ZDB-2-IHS ZDB-2-IHS Springer ebook collection / International Historical Statistics +http://lobid.org/organisations/ZDB-147-EMB#! ZDB-147-EMB ZDB-147-EMB European Mathematical Society E-Books +http://lobid.org/organisations/ZDB-150-PEB#! ZDB-150-PEB ZDB-150-PEB Pearson eBooks +http://lobid.org/organisations/ZDB-117-BLK#! ZDB-117-BLK ZDB-117-BLK V&R eLibrary / Die Bekenntnisschriften der Evangelisch-Lutherischen Kirche +http://lobid.org/organisations/ZDB-18-BSU#! ZDB-18-BSU ZDB-18-BSU beck-online / Sozialrecht PLUS +http://lobid.org/organisations/ZDB-1-OJL#! ZDB-1-OJL ZDB-1-OJL Oxford Journals Digital Archive / Law Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-OJU#! ZDB-1-OJU ZDB-1-OJU Oxford Journals Digital Archive / Humanities Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-23-OLI#! ZDB-23-OLI ZDB-23-OLI De Gruyter Oldenbourg ebook Paket Lehrbücher Informatik +http://lobid.org/organisations/ZDB-121-UGL#! ZDB-121-UGL ZDB-121-UGL Ulmer E-Books / Garten- und Landschaftsbau +http://lobid.org/organisations/ZDB-121-UHT#! ZDB-121-UHT ZDB-121-UHT Ulmer E-Books / Hobbytierhaltung +http://lobid.org/organisations/ZDB-156-WGG#! ZDB-156-WGG ZDB-156-WGG Wichmann / Geoinformatik, Geodäsie, Photogrammetrie +http://lobid.org/organisations/ZDB-142-WGN#! ZDB-142-WGN ZDB-142-WGN WBG / Germanistik - Neuere deutsche Literatur +http://lobid.org/organisations/ZDB-158-VER#! ZDB-158-VER ZDB-158-VER VDE Verlag EBooks / Elektrotechnik +http://lobid.org/organisations/ZDB-125-TLT#! ZDB-125-TLT ZDB-125-TLT scholars-e-library / Literaturwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-55-ETC#! ZDB-55-ETC ZDB-55-ETC Emerald Transport eBooks Collection +http://lobid.org/organisations/ZDB-159-AUT#! ZDB-159-AUT ZDB-159-AUT SciFo / Automatisierungstechnik +http://lobid.org/organisations/ZDB-159-IAD#! ZDB-159-IAD ZDB-159-IAD SciFo / Industriearmaturen & Dichtungen +http://lobid.org/organisations/ZDB-2-LNE#! ZDB-2-LNE ZDB-2-LNE Springer Lecture Notes in Earth System Sciences +http://lobid.org/organisations/ZDB-117-KIG#! ZDB-117-KIG ZDB-117-KIG V&R eLibrary / Kirchengeschichte +http://lobid.org/organisations/ZDB-142-WWI#! ZDB-142-WWI ZDB-142-WWI WBG / Weltreligionen und interreligiöser Dialog +http://lobid.org/organisations/ZDB-163-IGL#! ZDB-163-IGL ZDB-163-IGL iG Library +http://lobid.org/organisations/ZDB-105-MC9#! ZDB-105-MC9 ZDB-105-MC9 Morgan & Claypool: Computer & Information Science Collections / CIS collection nine +http://lobid.org/organisations/ZDB-164-UNL#! ZDB-164-UNL ZDB-164-UNL UN iLibrary +http://lobid.org/organisations/ZDB-1-SNTA#! ZDB-1-SNTA ZDB-1-SNTA Scientific.Net: Materials Science and Engineering [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-138-AMQ#! ZDB-138-AMQ ZDB-138-AMQ AMS ebooks / Colloquium Publications +http://lobid.org/organisations/ZDB-138-AMN#! ZDB-138-AMN ZDB-138-AMN AMS ebooks / Courant Lecture Notes +http://lobid.org/organisations/ZDB-138-AMR#! ZDB-138-AMR ZDB-138-AMR AMS ebooks / Graduate Studies in Mathematics +http://lobid.org/organisations/ZDB-23-PAM#! ZDB-23-PAM ZDB-23-PAM Princeton Series in Applied Mathematics +http://lobid.org/organisations/ZDB-23-PMS#! ZDB-23-PMS ZDB-23-PMS Princeton Mathematical Series +http://lobid.org/organisations/ZDB-18-BVP#! ZDB-18-BVP ZDB-18-BVP beck-online / Verwaltungsrecht PREMIUM +http://lobid.org/organisations/ZDB-23-PMB#! ZDB-23-PMB ZDB-23-PMB Princeton Annals of Mathematics Backlist eBook Package +http://lobid.org/organisations/ZDB-168-MAE#! ZDB-168-MAE ZDB-168-MAE Access Engineering / EBooks +http://lobid.org/organisations/ZDB-168-MAM#! ZDB-168-MAM ZDB-168-MAM Access Medicine / EBooks +http://lobid.org/organisations/ZDB-5-WGS#! ZDB-5-WGS ZDB-5-WGS wiso Grin Sozialwissenschaften +http://lobid.org/organisations/ZDB-128-VVK#! ZDB-128-VVK ZDB-128-VVK Beck eLibrary / Versus kompakt BWL +http://lobid.org/organisations/ZDB-16-LGT#! ZDB-16-LGT ZDB-16-LGT Hanser eLibrary / Leuze - Galvanotechnik +http://lobid.org/organisations/ZDB-1-CGL#! ZDB-1-CGL ZDB-1-CGL Coptic Gnostic Library [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-142-WKA#! ZDB-142-WKA ZDB-142-WKA WBG / Kunst und Architektur +http://lobid.org/organisations/ZDB-107-WSA#! ZDB-107-WSA ZDB-107-WSA scholars-e-library / Soziale Arbeit / Backlist Waxmann +http://lobid.org/organisations/ZDB-121-UTI#! ZDB-121-UTI ZDB-121-UTI Ulmer E-Books / Tiere +http://lobid.org/organisations/ZDB-157-HPT#! ZDB-157-HPT ZDB-157-HPT Herder / Praktische Theologie +http://lobid.org/organisations/ZDB-142-WWG#! ZDB-142-WWG ZDB-142-WWG WBG / Weltgeschichte +http://lobid.org/organisations/ZDB-84-KPR#! ZDB-84-KPR ZDB-84-KPR Kohlhammer Praktische Theologie und Religionsphilosophie +http://lobid.org/organisations/ZDB-171-LAK#! ZDB-171-LAK ZDB-171-LAK Logos / Akustik +http://lobid.org/organisations/ZDB-171-LAS#! ZDB-171-LAS ZDB-171-LAS Logos / Arbeits- und Sozialrecht +http://lobid.org/organisations/ZDB-171-LTE#! ZDB-171-LTE ZDB-171-LTE Logos / E-Technik, Elektronik +http://lobid.org/organisations/ZDB-171-LPO#! ZDB-171-LPO ZDB-171-LPO Logos / Politik +http://lobid.org/organisations/ZDB-171-LPY#! ZDB-171-LPY ZDB-171-LPY Logos / Psychologie +http://lobid.org/organisations/ZDB-171-LRA#! ZDB-171-LRA ZDB-171-LRA Logos / Recht Allgemein +http://lobid.org/organisations/ZDB-171-LWE#! ZDB-171-LWE ZDB-171-LWE Logos / Wärme-, Energietechnik +http://lobid.org/organisations/ZDB-173-HKC#! ZDB-173-HKC ZDB-173-HKC Haufe Lexware / Kostenrechnung und Controlling +http://lobid.org/organisations/ZDB-172-SPM#! ZDB-172-SPM ZDB-172-SPM Schlütersche / Pflegemanagement +http://lobid.org/organisations/ZDB-18-BER#! ZDB-18-BER ZDB-18-BER beck-online / Energierecht PLUS +http://lobid.org/organisations/ZDB-96-SBR#! ZDB-96-SBR ZDB-96-SBR Sage Research Methods / Books and Reference +http://lobid.org/organisations/ZDB-1-CFA#! ZDB-1-CFA ZDB-1-CFA Torrossa : E-Books FID Altertumswissenschaften [FID-Lizenz] +http://lobid.org/organisations/ZDB-142-WBG#! ZDB-142-WBG ZDB-142-WBG WBG Gesamtbestand +http://lobid.org/organisations/ZDB-129-JBB#! ZDB-129-JBB ZDB-129-JBB John Benjamins / Bochumer Studien zur Philosophie +http://lobid.org/organisations/ZDB-87-GED#! ZDB-87-GED ZDB-87-GED Classiques Garnier Numérique / Encyclopédie Diderot et D'Alembert +http://lobid.org/organisations/ZDB-136-SUS#! ZDB-136-SUS ZDB-136-SUS Suhrkamp / Soziologie und Systemtheorie +http://lobid.org/organisations/ZDB-142-WFS#! ZDB-142-WFS ZDB-142-WFS WBG / Freiherr-vom-Stein-Gedächtnisausgabe - Quellen zur deutschen Geschichte des Mittelalters +http://lobid.org/organisations/ZDB-178-HPDDA#! ZDB-178-HPDDA ZDB-178-HPDDA hep / Pädagogik & Didaktik (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HSEDA#! ZDB-178-HSEDA ZDB-178-HSEDA hep / Schulleitung & -entwicklung (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-179-WPF#! ZDB-179-WPF ZDB-179-WPF Walhalla / Gesundheit +http://lobid.org/organisations/ZDB-1-ETV#! ZDB-1-ETV ZDB-1-ETV Ethnographic Video Online: Volume 1, 2, 3 und 4 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EPL#! ZDB-1-EPL ZDB-1-EPL Eleven International Publishing Law Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-10-PLR#! ZDB-10-PLR ZDB-10-PLR Knovel Plastics & Rubber +http://lobid.org/organisations/ZDB-1-AUP#! ZDB-1-AUP ZDB-1-AUP Amsterdam University Press E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-159-SCB#! ZDB-159-SCB ZDB-159-SCB SciFo / Backlist +http://lobid.org/organisations/ZDB-182-HSS#! ZDB-182-HSS ZDB-182-HSS Hueber / Sprachpaket Spanisch +http://lobid.org/organisations/ZDB-1-MSB#! ZDB-1-MSB ZDB-1-MSB Oxford University Press : Minnesota Scholarship Online / Architecture [FID-Lizenz] +http://lobid.org/organisations/ZDB-114-LAR#! ZDB-114-LAR ZDB-114-LAR Peter Lang eBooks / Rechtswissenschaft +http://lobid.org/organisations/ZDB-28-FSM#! ZDB-28-FSM ZDB-28-FSM Florida Scholarship Online / Music +http://lobid.org/organisations/ZDB-105-MCB#! ZDB-105-MCB ZDB-105-MCB Morgan & Claypool Publishers eBooks +http://lobid.org/organisations/ZDB-181-TGC#! ZDB-181-TGC ZDB-181-TGC Tectum eLibrary / Geschichte +http://lobid.org/organisations/ZDB-181-TME#! ZDB-181-TME ZDB-181-TME Tectum eLibrary / Medienwissenschaften +http://lobid.org/organisations/ZDB-1-EWE#! ZDB-1-EWE ZDB-1-EWE Edward Elgar E-Book Archive in Business & Management, Economics and Finance [Nationallizenz] +http://lobid.org/organisations/ZDB-20-CLC#! ZDB-20-CLC ZDB-20-CLC Cambridge Companions / The Cambridge Companions to Literature and Classics +http://lobid.org/organisations/ZDB-20-CPR#! ZDB-20-CPR ZDB-20-CPR Cambridge Companions / The Cambridge Companions to Philosophy, Religion and Culture +http://lobid.org/organisations/ZDB-48-LNO#! ZDB-48-LNO ZDB-48-LNO LexisNexis Online +http://lobid.org/organisations/ZDB-1-UPH#! ZDB-1-UPH ZDB-1-UPH University Press Scholarship Online / History Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-55-EMP#! ZDB-55-EMP ZDB-55-EMP Emerald Management Premier eJournal Collection +http://lobid.org/organisations/ZDB-171-LMT#! ZDB-171-LMT ZDB-171-LMT Logos / Mathematik +http://lobid.org/organisations/ZDB-55-PPE#! ZDB-55-PPE ZDB-55-PPE Emerald Public Policy & Environmental Management eJournal Collection +http://lobid.org/organisations/ZDB-55-HSO#! ZDB-55-HSO ZDB-55-HSO Emerald Health & Social Care eJournal Collection +http://lobid.org/organisations/ZDB-60-ARP#! ZDB-60-ARP ZDB-60-ARP Annual Reviews current / Physical Sciences Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-173-HBBSP#! ZDB-173-HBBSP ZDB-173-HBBSP Haufe Lexware / Buchführung, Bilanz, Steuern (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-173-HIVSP#! ZDB-173-HIVSP ZDB-173-HIVSP Haufe Lexware / Investition und Finanzierung (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-88-ISR#! ZDB-88-ISR ZDB-88-ISR juris PartnerModul Insolvenzrecht +http://lobid.org/organisations/ZDB-88-JAO#! ZDB-88-JAO ZDB-88-JAO juris AG Online +http://lobid.org/organisations/ZDB-88-HSJ#! ZDB-88-HSJ ZDB-88-HSJ OVS Modul Hochschule powered by juris +http://lobid.org/organisations/ZDB-88-MRE#! ZDB-88-MRE ZDB-88-MRE juris PartnerModul Medienrecht Premium +http://lobid.org/organisations/ZDB-88-JUP#! ZDB-88-JUP ZDB-88-JUP juris Professionell +http://lobid.org/organisations/ZDB-187-JCG#! ZDB-187-JCG ZDB-187-JCG Junfermann / Coaching I / Grundlagen +http://lobid.org/organisations/ZDB-28-FOS#! ZDB-28-FOS ZDB-28-FOS Fordham Scholarship Online +http://lobid.org/organisations/ZDB-1-BP15#! ZDB-1-BP15 ZDB-1-BP15 Belarus Presidential Election 2015 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-188-BEU#! ZDB-188-BEU ZDB-188-BEU Beuth E-Books +http://lobid.org/organisations/ZDB-191-BEX#! ZDB-191-BEX ZDB-191-BEX Business Expert Press Ebooks +http://lobid.org/organisations/ZDB-1-EJP#! ZDB-1-EJP ZDB-1-EJP Emerald eJournals Premier Konsortium Leibniz [Nationalkonsortium] +http://lobid.org/organisations/ZDB-179-WBS#! ZDB-179-WBS ZDB-179-WBS Walhalla / Business Skills +http://lobid.org/organisations/ZDB-88-ZJV#! ZDB-88-ZJV ZDB-88-ZJV juris Zusatzmodul Justiz Verwaltungsrecht +http://lobid.org/organisations/ZDB-18-URS#! ZDB-18-URS ZDB-18-URS beck-online / Umsatzsteuerrecht SPEZIAL +http://lobid.org/organisations/ZDB-18-SES#! ZDB-18-SES ZDB-18-SES beck-online / Schmidt EStG +http://lobid.org/organisations/ZDB-179-WOH#! ZDB-179-WOH ZDB-179-WOH Walhalla / Öffentliche Hand +http://lobid.org/organisations/ZDB-18-NRE#! ZDB-18-NRE ZDB-18-NRE Nomos eLibrary / Religion +http://lobid.org/organisations/ZDB-18-NJR#! ZDB-18-NJR ZDB-18-NJR Nomos eLibrary / Jura gesamt +http://lobid.org/organisations/ZDB-18-NSD#! ZDB-18-NSD ZDB-18-NSD Nomos eLibrary / Studienliteratur Sozial- und Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-18-NPO#! ZDB-18-NPO ZDB-18-NPO Nomos eLibrary / edition sigma Politikwissenschaft +http://lobid.org/organisations/ZDB-162-SSL#! ZDB-162-SSL ZDB-162-SSL Bloomsbury Collections / Shakespeare Studies Landmark Texts (Bloomsbury Academic Collections) +http://lobid.org/organisations/ZDB-2-INR#! ZDB-2-INR ZDB-2-INR Springer Nature / Intelligent Technologies and Robotics +http://lobid.org/organisations/ZDB-192-PMM#! ZDB-192-PMM ZDB-192-PMM PMCMedia / Maritim +http://lobid.org/organisations/ZDB-158-VEW#! ZDB-158-VEW ZDB-158-VEW VDE Verlag EBooks / Energiewissenschaft +http://lobid.org/organisations/ZDB-1-JRT#! ZDB-1-JRT ZDB-1-JRT JSTOR : Religion & Theology Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NSL#! ZDB-18-NSL ZDB-18-NSL Nomos eLibrary / Studienliteratur Gesamt +http://lobid.org/organisations/ZDB-18-NSU#! ZDB-18-NSU ZDB-18-NSU Nomos eLibrary / Studienliteratur Jura +http://lobid.org/organisations/ZDB-128-MWZ#! ZDB-128-MWZ ZDB-128-MWZ Beck eLibrary / MWV Krankenhausmanagement Zusatzpaket +http://lobid.org/organisations/ZDB-138-AMI#! ZDB-138-AMI ZDB-138-AMI AMS ebooks / IAS/Park City mathematics series +http://lobid.org/organisations/ZDB-128-UWS#! ZDB-128-UWS ZDB-128-UWS Beck eLibrary / UVK Wirtschaft Spezial +http://lobid.org/organisations/ZDB-117-TBP#! ZDB-117-TBP ZDB-117-TBP V&R eLibrary / Trauerbegleitung & Predigt +http://lobid.org/organisations/ZDB-117-BOL#! ZDB-117-BOL ZDB-117-BOL V&R eLibrary / Böhlau Literatur und Kultur +http://lobid.org/organisations/ZDB-4-ENC#! ZDB-4-ENC ZDB-4-ENC EBSCO eBook EngineeringCore Collection +http://lobid.org/organisations/ZDB-195-MSS#! ZDB-195-MSS ZDB-195-MSS Al Manhal eBook collections / Social Sciences +http://lobid.org/organisations/ZDB-195-MAR#! ZDB-195-MAR ZDB-195-MAR Al Manhal eBook collections / Arts +http://lobid.org/organisations/ZDB-95-SFR#! ZDB-95-SFR ZDB-95-SFR Brill Online / Schöningh, Fink and mentis Religious Studies, Theology and Philosophy E-Books Online +http://lobid.org/organisations/ZDB-23-GLA#! ZDB-23-GLA ZDB-23-GLA De Gruyter Book Archive / Law +http://lobid.org/organisations/ZDB-23-GMA#! ZDB-23-GMA ZDB-23-GMA De Gruyter Book Archive / Mathematics +http://lobid.org/organisations/ZDB-23-GLI#! ZDB-23-GLI ZDB-23-GLI De Gruyter Book Archive / Library Information Science +http://lobid.org/organisations/ZDB-95-ILA#! ZDB-95-ILA ZDB-95-ILA Brill / International Law E-Books Online +http://lobid.org/organisations/ZDB-197-MSG#! ZDB-197-MSG ZDB-197-MSG Mohr Siebeck / Geschichtswissenschaft +http://lobid.org/organisations/ZDB-197-MST#! ZDB-197-MST ZDB-197-MST Mohr Siebeck / Theologie +http://lobid.org/organisations/ZDB-98-ISC#! ZDB-98-ISC ZDB-98-ISC InfoSci Computer Science and Information Technology +http://lobid.org/organisations/ZDB-138-AMJ#! ZDB-138-AMJ ZDB-138-AMJ AMS ebooks / DIMACS +http://lobid.org/organisations/ZDB-199-WTO#! ZDB-199-WTO ZDB-199-WTO WTO iLibrary +http://lobid.org/organisations/ZDB-202-PPT#! ZDB-202-PPT ZDB-202-PPT Psychosozial-Verlag / Psychotherapie +http://lobid.org/organisations/ZDB-203-AHO#! ZDB-203-AHO ZDB-203-AHO Artech House eBooks +http://lobid.org/organisations/ZDB-9-GEA#! ZDB-9-GEA ZDB-9-GEA Early Arabic Printed Books from the British Library +http://lobid.org/organisations/ZDB-9-NCW#! ZDB-9-NCW ZDB-9-NCW Nineteenth Century Collections Online: Photography: The World Through the Lens +http://lobid.org/organisations/ZDB-10-KMM#! ZDB-10-KMM ZDB-10-KMM Knovel Metals & Metallurgy +http://lobid.org/organisations/ZDB-10-MEE#! ZDB-10-MEE ZDB-10-MEE Knovel Mining Engineering & Extractive Metallurgy +http://lobid.org/organisations/ZDB-18-BSF#! ZDB-18-BSF ZDB-18-BSF beck-online / Strafrecht OPTIMUM +http://lobid.org/organisations/ZDB-102-AWW#! ZDB-102-AWW ZDB-102-AWW Latin American Women Writers +http://lobid.org/organisations/ZDB-1-DHC#! ZDB-1-DHC ZDB-1-DHC Digitalia Hispanica and Catalan Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-105-MC11#! ZDB-105-MC11 ZDB-105-MC11 Morgan & Claypool: Computer & Information Science Collections / CIS collection eleven +http://lobid.org/organisations/ZDB-48-WKO#! ZDB-48-WKO ZDB-48-WKO Wolters Kluwer Online +http://lobid.org/organisations/ZDB-1-WOE#! ZDB-1-WOE ZDB-1-WOE Wegbereiter der Österreichischen Psychologie [Nationallizenz] +http://lobid.org/organisations/ZDB-18-BSW#! ZDB-18-BSW ZDB-18-BSW Beck eLibrary / SPH Verwalter, Wohnungswirt +http://lobid.org/organisations/ZDB-48-WKZ#! ZDB-48-WKZ ZDB-48-WKZ Wolters Kluwer BGHZ +http://lobid.org/organisations/ZDB-214-ZWK#! ZDB-214-ZWK ZDB-214-ZWK ZIEL / Weiterbildung Kompetenzen +http://lobid.org/organisations/ZDB-215-ANV#! ZDB-215-ANV ZDB-215-ANV Aisthesis / Novitäten +http://lobid.org/organisations/ZDB-23-HLP#! ZDB-23-HLP ZDB-23-HLP Harvard University Press e-dition / Law & Political Science eBook Package +http://lobid.org/organisations/ZDB-23-HCI#! ZDB-23-HCI ZDB-23-HCI Harvard University Press e-dition / Social Science eBook Package +http://lobid.org/organisations/ZDB-195-MEB#! ZDB-195-MEB ZDB-195-MEB Al Manhal eBook collections +http://lobid.org/organisations/ZDB-187-JFB#! ZDB-187-JFB ZDB-187-JFB Junfermann / Fachbuch +http://lobid.org/organisations/ZDB-109-LWP#! ZDB-109-LWP ZDB-109-LWP Lambertus / Archiv für Wissenschaft und Praxis der Sozialen Arbeit +http://lobid.org/organisations/ZDB-171-LGE#! ZDB-171-LGE ZDB-171-LGE Logos / Archäologie/Geschichte +http://lobid.org/organisations/ZDB-171-LPH#! ZDB-171-LPH ZDB-171-LPH Logos / Philosophie +http://lobid.org/organisations/ZDB-121-ULW#! ZDB-121-ULW ZDB-121-ULW Ulmer E-Books / Landwirtschaft Ausbildung +http://lobid.org/organisations/ZDB-157-HMM#! ZDB-157-HMM ZDB-157-HMM Herder / Maria Montessori Gesamtwerke +http://lobid.org/organisations/ZDB-179-WTS#! ZDB-179-WTS ZDB-179-WTS Walhalla / Texte für die Soziale Arbeit +http://lobid.org/organisations/ZDB-142-WQD#! ZDB-142-WQD ZDB-142-WQD WBG / Freiherr-vom-Stein-Gedächtnisausgabe - Quellen zur deutschen Geschichte der Neuzeit +http://lobid.org/organisations/ZDB-173-HMGSP#! ZDB-173-HMGSP ZDB-173-HMGSP Haufe Lexware / Management (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-55-AFE#! ZDB-55-AFE ZDB-55-AFE Emerald Accounting Finance and Economics eJournal Collection +http://lobid.org/organisations/ZDB-138-AMK#! ZDB-138-AMK ZDB-138-AMK AMS ebooks / CRM Monograph Series +http://lobid.org/organisations/ZDB-217-MDE#! ZDB-217-MDE ZDB-217-MDE MairDumont E-Books +http://lobid.org/organisations/ZDB-18-NSC#! ZDB-18-NSC ZDB-18-NSC Nomos eLibrary / Studienliteratur Soziologie +http://lobid.org/organisations/ZDB-1-CEP#! ZDB-1-CEP ZDB-1-CEP CEPR Discussion Papers [Nationalkonsortium] +http://lobid.org/organisations/ZDB-114-LGC#! ZDB-114-LGC ZDB-114-LGC Peter Lang eBooks / German Collection +http://lobid.org/organisations/ZDB-221-PPR#! ZDB-221-PPR ZDB-221-PPR Packt Programming +http://lobid.org/organisations/ZDB-227-MGS#! ZDB-227-MGS ZDB-227-MGS MetaGIS E-Books +http://lobid.org/organisations/ZDB-231-SCE#! ZDB-231-SCE ZDB-231-SCE SCHMIDT VERLAG E-Books +http://lobid.org/organisations/ZDB-233-LAU#! ZDB-233-LAU ZDB-233-LAU Lauinger Verlag E-Books +http://lobid.org/organisations/ZDB-162-FAS#! ZDB-162-FAS ZDB-162-FAS Bloomsbury Collections / Fashion +http://lobid.org/organisations/ZDB-1-OBH#! ZDB-1-OBH ZDB-1-OBH Oxford Bibliographies Hinduism and Buddism [FID-Lizenz] +http://lobid.org/organisations/ZDB-236-BOO#! ZDB-236-BOO ZDB-236-BOO Boorberg E-Books +http://lobid.org/organisations/ZDB-1-TAA#! ZDB-1-TAA ZDB-1-TAA J. Walter Thompson advertising America [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-18-HGI#! ZDB-18-HGI ZDB-18-HGI beck-online / Handels- und Gesellschaftsrecht INTERNATIONAL +http://lobid.org/organisations/ZDB-18-VTR#! ZDB-18-VTR ZDB-18-VTR beck-online / Vertriebsrecht PLUS +http://lobid.org/organisations/ZDB-181-NAB#! ZDB-181-NAB ZDB-181-NAB Academia E-Books +http://lobid.org/organisations/ZDB-122-SHP#! ZDB-122-SHP ZDB-122-SHP Schäffer-Poeschel E-Books +http://lobid.org/organisations/ZDB-1-JMAU#! ZDB-1-JMAU ZDB-1-JMAU JSTOR : Lives of Literature Collection / Modernist Authors [Nationalkonsortium] +http://lobid.org/organisations/ZDB-33-WKT#! ZDB-33-WKT ZDB-33-WKT Woodhead / Knovel - Textiles +http://lobid.org/organisations/ZDB-1-BAF#! ZDB-1-BAF ZDB-1-BAF Belarus Anti-Fascist Resistance Press 1942-1945 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-142-WPY#! ZDB-142-WPY ZDB-142-WPY WBG / Psychologie +http://lobid.org/organisations/ZDB-144-BRG#! ZDB-144-BRG ZDB-144-BRG BALANCE / Ratgeber +http://lobid.org/organisations/ZDB-219-DPR#! ZDB-219-DPR ZDB-219-DPR dpunkt.verlag / Programmierung - dpunkt +http://lobid.org/organisations/ZDB-219-DFK#! ZDB-219-DFK ZDB-219-DFK dpunkt.verlag / Fotografie - Kameras +http://lobid.org/organisations/ZDB-219-DVB#! ZDB-219-DVB ZDB-219-DVB dpunkt.verlag / Bildbearbeitung +http://lobid.org/organisations/ZDB-219-ORG#! ZDB-219-ORG ZDB-219-ORG O'Reilly / Programmierung +http://lobid.org/organisations/ZDB-219-OOM#! ZDB-219-OOM ZDB-219-OOM O'Reilly / Online-Marketing +http://lobid.org/organisations/ZDB-219-OMT#! ZDB-219-OMT ZDB-219-OMT O'Reilly / Microsoft-Themen +http://lobid.org/organisations/ZDB-219-OAG#! ZDB-219-OAG ZDB-219-OAG O'Reilly / Agil +http://lobid.org/organisations/ZDB-1-JPS#! ZDB-1-JPS ZDB-1-JPS JSTOR : Plants & Society Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-215-ATH#! ZDB-215-ATH ZDB-215-ATH Aisthesis / Theater +http://lobid.org/organisations/ZDB-215-AHH#! ZDB-215-AHH ZDB-215-AHH Aisthesis / Schriften zur Ästhetik - Hans Heinz Holz +http://lobid.org/organisations/ZDB-236-ETK#! ZDB-236-ETK ZDB-236-ETK edition text+kritik / Komponisten und Künstler +http://lobid.org/organisations/ZDB-1-CJAG#! ZDB-1-CJAG ZDB-1-CJAG Diaolong Full-text Database of Chinese & Japanese Ancient Books / Dunhuang shiliao [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKC#! ZDB-1-CNKC ZDB-1-CNKC CNKI / CRWO China Reference Works Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAH#! ZDB-1-APAH ZDB-1-APAH Apabi / Imperial examination records from the Tianyige Museum [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WANC#! ZDB-1-WANC ZDB-1-WANC Wanfang / Dissertations of China [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ERUA#! ZDB-1-ERUA ZDB-1-ERUA Erudition / Database of Chinese classic ancient books [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ERUB#! ZDB-1-ERUB ZDB-1-ERUB Erudition / Database of Chinese Local Records [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PSK#! ZDB-1-PSK ZDB-1-PSK Pishu shujuku [FID-Lizenz] +http://lobid.org/organisations/ZDB-162-BLW#! ZDB-162-BLW ZDB-162-BLW Bloomsbury Collections / Law +http://lobid.org/organisations/ZDB-162-AVA#! ZDB-162-AVA ZDB-162-AVA Bloomsbury Applied Visual Arts +http://lobid.org/organisations/ZDB-100-CNW#! ZDB-100-CNW ZDB-100-CNW IET e-Books / Computing and Networks +http://lobid.org/organisations/ZDB-248-CCB#! ZDB-248-CCB ZDB-248-CCB Cross Cult E-Books +http://lobid.org/organisations/ZDB-249-SCV#! ZDB-249-SCV ZDB-249-SCV SCM E-Books +http://lobid.org/organisations/ZDB-48-KLA#! ZDB-48-KLA ZDB-48-KLA Kluwer Arbitration +http://lobid.org/organisations/ZDB-1-SAGK3#! ZDB-1-SAGK3 ZDB-1-SAGK3 Sage Journals Online Publish & Read / Premier / Upgrade für 2017 bis 2020 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGB3#! ZDB-1-SAGB3 ZDB-1-SAGB3 Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine / Upgrade für 2017 bis 2020 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-55-ELD#! ZDB-55-ELD ZDB-55-ELD Emerald eBooks +http://lobid.org/organisations/ZDB-1-EEM#! ZDB-1-EEM ZDB-1-EEM Edward Elgar Ebook Collection in Business & Management, Economics and Finance [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-KP17#! ZDB-1-KP17 ZDB-1-KP17 Kyrgyzstan Presidential Election 2017 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AB17#! ZDB-1-AB17 ZDB-1-AB17 Abkhazia Parliamentary Election 2017 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-20-CEC#! ZDB-20-CEC ZDB-20-CEC Cambridge Books Online / Economics +http://lobid.org/organisations/ZDB-20-CHT#! ZDB-20-CHT ZDB-20-CHT Cambridge Books Online / History +http://lobid.org/organisations/ZDB-20-CMA#! ZDB-20-CMA ZDB-20-CMA Cambridge Books Online / Management +http://lobid.org/organisations/ZDB-117-BRP#! ZDB-117-BRP ZDB-117-BRP V&R eLibrary / Böhlau Recht und Politik +http://lobid.org/organisations/ZDB-1-NRS#! ZDB-1-NRS ZDB-1-NRS Novoe Russko Slovo digital archive 1910 - 2010 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NMD#! ZDB-1-NMD ZDB-1-NMD Moscow News digital archive 1930 - 2014 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-259-PAB#! ZDB-259-PAB ZDB-259-PAB Panini E-Books +http://lobid.org/organisations/ZDB-34-THA#! ZDB-34-THA ZDB-34-THA Thieme eRef / AINS +http://lobid.org/organisations/ZDB-1-RIP#! ZDB-1-RIP ZDB-1-RIP Routledge Interdisciplinary Perspectives on Literature FID AVL [FID-Lizenz] +http://lobid.org/organisations/ZDB-215-APSG#! ZDB-215-APSG ZDB-215-APSG Aisthesis / Postkoloniale Studien in der Germanistik +http://lobid.org/organisations/ZDB-121-UAA#! ZDB-121-UAA ZDB-121-UAA Ulmer E-Books / Ausbildung Agrarberufe und Floristik +http://lobid.org/organisations/ZDB-142-WDF#! ZDB-142-WDF ZDB-142-WDF WBG / Deutsch-Französische Geschichte +http://lobid.org/organisations/ZDB-142-WPK#! ZDB-142-WPK ZDB-142-WPK WBG / Politik +http://lobid.org/organisations/ZDB-107-WSB#! ZDB-107-WSB ZDB-107-WSB scholars-e-library / Sprachliche Bildung / Backlist Waxmann +http://lobid.org/organisations/ZDB-157-HMPH#! ZDB-157-HMPH ZDB-157-HMPH Herder / Montessori-Pädagogik heute +http://lobid.org/organisations/ZDB-126-OLK#! ZDB-126-OLK ZDB-126-OLK oekom verlag / Lebensstil & Konsum +http://lobid.org/organisations/ZDB-18-BBJS#! ZDB-18-BBJS ZDB-18-BBJS Beck eLibrary / C.H. Beck Jura Steuerrecht +http://lobid.org/organisations/ZDB-236-ETFE#! ZDB-236-ETFE ZDB-236-ETFE edition text+kritik / Film-Erbe +http://lobid.org/organisations/ZDB-236-ETKL#! ZDB-236-ETKL ZDB-236-ETKL edition text+kritik / Kultur, Literatur und Film +http://lobid.org/organisations/ZDB-236-ETPP#! ZDB-236-ETPP ZDB-236-ETPP edition text+kritik / Literatur Plus Praxis +http://lobid.org/organisations/ZDB-236-ETA#! ZDB-236-ETA ZDB-236-ETA edition text+kritik / Autoren 100% +http://lobid.org/organisations/ZDB-261-BCO#! ZDB-261-BCO ZDB-261-BCO BMU Verlag / Computing +http://lobid.org/organisations/ZDB-41-SQA#! ZDB-41-SQA ZDB-41-SQA scholars-e-library / Philosophie/ Backlist Athena +http://lobid.org/organisations/ZDB-41-SQC#! ZDB-41-SQC ZDB-41-SQC scholars-e-library / Politikwissenschaft/ Backlist Hamburger Edition +http://lobid.org/organisations/ZDB-41-SSBH#! ZDB-41-SSBH ZDB-41-SSBH scholars-e-library / Soziologie/ Backlist Hamburger Edition +http://lobid.org/organisations/ZDB-262-CBSK#! ZDB-262-CBSK ZDB-262-CBSK Cherry Media / Business und StartUp Kultur +http://lobid.org/organisations/ZDB-263-SMW#! ZDB-263-SMW ZDB-263-SMW Schüren / Medienwissenschaft +http://lobid.org/organisations/ZDB-263-SFA#! ZDB-263-SFA ZDB-263-SFA Schüren / Filmanalyse +http://lobid.org/organisations/ZDB-263-SMQ#! ZDB-263-SMQ ZDB-263-SMQ Schüren / Medienpraxis +http://lobid.org/organisations/ZDB-2-SXE#! ZDB-2-SXE ZDB-2-SXE Springer Nature / Engineering (R0) +http://lobid.org/organisations/ZDB-2-SXPC#! ZDB-2-SXPC ZDB-2-SXPC Springer Nature / Professional and Applied Computing (R0) +http://lobid.org/organisations/ZDB-2-SXS#! ZDB-2-SXS ZDB-2-SXS Springer Nature / Social Sciences (R0) +http://lobid.org/organisations/ZDB-2-SXIT#! ZDB-2-SXIT ZDB-2-SXIT Springer Nature / Intelligent Technologies and Robotics (R0) +http://lobid.org/organisations/ZDB-2-SXRH#! ZDB-2-SXRH ZDB-2-SXRH Springer Nature / Reference Module Humanities and Social Sciences +http://lobid.org/organisations/ZDB-37-IES#! ZDB-37-IES ZDB-37-IES IEEE Xplore / IEEE-IET Electronic Library (IEL) / Standards +http://lobid.org/organisations/ZDB-5-WJSC#! ZDB-5-WJSC ZDB-5-WJSC wiso Sage Journals Communication & Media +http://lobid.org/organisations/ZDB-34-TKPC#! ZDB-34-TKPC ZDB-34-TKPC Thieme Klinik Praxis / Chirurgie, Orthopädie, Unfallchirurgie +http://lobid.org/organisations/ZDB-34-TKPO#! ZDB-34-TKPO ZDB-34-TKPO Thieme Klinik Praxis / Ophthalmologie +http://lobid.org/organisations/ZDB-34-TKPU#! ZDB-34-TKPU ZDB-34-TKPU Thieme Klinik Praxis / Urologie +http://lobid.org/organisations/ZDB-71-NVM#! ZDB-71-NVM ZDB-71-NVM Narr Verlag E-Books / Linguistik +http://lobid.org/organisations/ZDB-77-EHG#! ZDB-77-EHG ZDB-77-EHG Edward Elgar Handbooks in Geography +http://lobid.org/organisations/ZDB-1-NYT#! ZDB-1-NYT ZDB-1-NYT The @New York Times with Index & The Washington Post [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FBIS#! ZDB-1-FBIS ZDB-1-FBIS Foreign Broadcast Information Service (FBIS) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-47-ECAS#! ZDB-47-ECAS ZDB-47-ECAS ESVcampus / Arbeitssicherheit +http://lobid.org/organisations/ZDB-91-CABE#! ZDB-91-CABE ZDB-91-CABE CABI books / Environmental Science +http://lobid.org/organisations/ZDB-1-KSIE#! ZDB-1-KSIE ZDB-1-KSIE KSI E-Books [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KHCR#! ZDB-1-KHCR ZDB-1-KHCR Korean History & Culture Research Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RISS#! ZDB-1-RISS ZDB-1-RISS RISS International [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KSD#! ZDB-1-KSD ZDB-1-KSD KSDC DB [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FUGA#! ZDB-1-FUGA ZDB-1-FUGA Fujin Gaho [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAI#! ZDB-1-APAI ZDB-1-APAI Apabi / China newspapers full-text database [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BDAB#! ZDB-18-BDAB ZDB-18-BDAB Beck eLibrary / Deutscher Ärzteverlag Gesundheitswesen +http://lobid.org/organisations/ZDB-18-NSQ#! ZDB-18-NSQ ZDB-18-NSQ Nomos eLibrary / Studienliteratur Pädagogik +http://lobid.org/organisations/ZDB-245-NWSL#! ZDB-245-NWSL ZDB-245-NWSL NWB Campus Library / Steuerrecht - Lehrbücher +http://lobid.org/organisations/ZDB-18-BANP#! ZDB-18-BANP ZDB-18-BANP beck-online / Anwaltsnotar PLUS +http://lobid.org/organisations/ZDB-18-BBNN#! ZDB-18-BBNN ZDB-18-BBNN beck-online / Bonner Notarrecht Dt. Notarverlag +http://lobid.org/organisations/ZDB-18-BBJG#! ZDB-18-BBJG ZDB-18-BBJG Beck eLibrary / C.H. Beck Gesamtpaket Jura +http://lobid.org/organisations/ZDB-5-WLW#! ZDB-5-WLW ZDB-5-WLW wiso Lecturio Wirtschaft +http://lobid.org/organisations/ZDB-1-BBEO#! ZDB-1-BBEO ZDB-1-BBEO Brill / Biology E-Books Online [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-277-FTN#! ZDB-277-FTN ZDB-277-FTN Frank & Timme / Fachsprachenforschung Recht +http://lobid.org/organisations/ZDB-277-FTP#! ZDB-277-FTP ZDB-277-FTP Frank & Timme / Kulturen – Kommunikation – Kontakte +http://lobid.org/organisations/ZDB-277-FTQ#! ZDB-277-FTQ ZDB-277-FTQ Frank & Timme / Kulturwissenschaften +http://lobid.org/organisations/ZDB-277-FTT#! ZDB-277-FTT ZDB-277-FTT Frank & Timme / Literaturwissenschaft Österreich +http://lobid.org/organisations/ZDB-138-AMZ#! ZDB-138-AMZ ZDB-138-AMZ AMS ebooks / Advances in Soviet Mathematics +http://lobid.org/organisations/ZDB-138-AMXA#! ZDB-138-AMXA ZDB-138-AMXA AMS ebooks / CBMS Issues in Mathematical Education +http://lobid.org/organisations/ZDB-157-ADI#! ZDB-157-ADI ZDB-157-ADI Verlag Karl Alber / Deutscher Idealismus & 19. Jahrhundert +http://lobid.org/organisations/ZDB-157-APZ#! ZDB-157-APZ ZDB-157-APZ Verlag Karl Alber / Philosophie des 20. Jahrhunderts +http://lobid.org/organisations/ZDB-279-TBGP#! ZDB-279-TBGP ZDB-279-TBGP Traugott Bautz Verlag / Geschichte & Politik +http://lobid.org/organisations/ZDB-279-TBK#! ZDB-279-TBK ZDB-279-TBK Traugott Bautz Verlag / Kultur +http://lobid.org/organisations/ZDB-279-TBRN#! ZDB-279-TBRN ZDB-279-TBRN Traugott Bautz Verlag / Reisen +http://lobid.org/organisations/ZDB-142-WXB#! ZDB-142-WXB ZDB-142-WXB WBG / Basis Germanistik +http://lobid.org/organisations/ZDB-142-WXC#! ZDB-142-WXC ZDB-142-WXC WBG / Basis Geschichte +http://lobid.org/organisations/ZDB-150-PST#! ZDB-150-PST ZDB-150-PST Pearson / Studium +http://lobid.org/organisations/ZDB-41-STRG#! ZDB-41-STRG ZDB-41-STRG scholars-e-library / Theologie, Religion und Gesellschaft +http://lobid.org/organisations/ZDB-1-PEMM#! ZDB-1-PEMM ZDB-1-PEMM Persian E-Books Miras Maktoob [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TCMI#! ZDB-1-TCMI ZDB-1-TCMI 20th Century Media Information Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-277-FTY#! ZDB-277-FTY ZDB-277-FTY Frank & Timme / Philosophie +http://lobid.org/organisations/ZDB-277-FTZ#! ZDB-277-FTZ ZDB-277-FTZ Frank & Timme / Politikwissenschaft +http://lobid.org/organisations/ZDB-277-FTZN#! ZDB-277-FTZN ZDB-277-FTZN Frank & Timme / Translationswissenschaft +http://lobid.org/organisations/ZDB-277-FTZO#! ZDB-277-FTZO ZDB-277-FTZO Frank & Timme / TransÜD +http://lobid.org/organisations/ZDB-1-BMJC#! ZDB-1-BMJC ZDB-1-BMJC BMJ Journals / BMJ Case Reports [Nationalkonsortium] +http://lobid.org/organisations/ZDB-33-EMA#! ZDB-33-EMA ZDB-33-EMA Elsevier Medical Archive Collection +http://lobid.org/organisations/ZDB-88-ZJST#! ZDB-88-ZJST ZDB-88-ZJST juris Zusatzmodul Jurastudium +http://lobid.org/organisations/ZDB-1-DANO#! ZDB-1-DANO ZDB-1-DANO Dance Online : Dance Studies Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GUC#! ZDB-1-GUC ZDB-1-GUC The Guatemala Collection - Government and Church Documents for Sacatepéquez [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CBC#! ZDB-1-CBC ZDB-1-CBC Classic Brazilian Cinema Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SAGB4#! ZDB-1-SAGB4 ZDB-1-SAGB4 Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine / Upgrade für 2021 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-CCL#! ZDB-1-CCL ZDB-1-CCL Max Planck Encyclopedia of Comparative Constitutional Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-28-OLPL#! ZDB-28-OLPL ZDB-28-OLPL Oxford Legal Research Library / Private International Law +http://lobid.org/organisations/ZDB-1-LID#! ZDB-1-LID ZDB-1-LID Librairie Droz - Textes littéraires français [FID-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBOA#! ZDB-41-UTBOA ZDB-41-UTBOA UTB / Open Access +http://lobid.org/organisations/ZDB-95-SFB#! ZDB-95-SFB ZDB-95-SFB Brill / Schöningh and Fink Biology E-Books Online +http://lobid.org/organisations/ZDB-9-SATA#! ZDB-9-SATA ZDB-9-SATA Something About the Author +http://lobid.org/organisations/ZDB-9-TAS#! ZDB-9-TAS ZDB-9-TAS Twayne's Author Series +http://lobid.org/organisations/ZDB-126-OEA#! ZDB-126-OEA ZDB-126-OEA oekom verlag / Gesamt +http://lobid.org/organisations/ZDB-41-SBP#! ZDB-41-SBP ZDB-41-SBP scholars-e-library / Bauen/ Planen/ Architektur +http://lobid.org/organisations/ZDB-41-SV3#! ZDB-41-SV3 ZDB-41-SV3 scholars-e-library / Geschichte / Backlist vdf +http://lobid.org/organisations/ZDB-41-SV4#! ZDB-41-SV4 ZDB-41-SV4 scholars-e-library / Medien & Kommunikation / Backlist vdf +http://lobid.org/organisations/ZDB-41-SBS2#! ZDB-41-SBS2 ZDB-41-SBS2 scholars-e-library / Pädagogik (allg.) / Backlist Schattauer +http://lobid.org/organisations/ZDB-41-SPDB#! ZDB-41-SPDB ZDB-41-SPDB scholars-e-library / Pädagogik/ Digitale Bildung +http://lobid.org/organisations/ZDB-41-SJ4#! ZDB-41-SJ4 ZDB-41-SJ4 scholars-e-library / Psychologie allg. / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SJ5#! ZDB-41-SJ5 ZDB-41-SJ5 scholars-e-library / Psychologische Beratung & Coaching / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SK3#! ZDB-41-SK3 ZDB-41-SK3 scholars-e-library / Psychologische Beratung & Coaching / Backlist Klett-Cotta +http://lobid.org/organisations/ZDB-1-AEI#! ZDB-1-AEI ZDB-1-AEI Australian Education Index [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SNP#! ZDB-1-SNP ZDB-1-SNP Servicenewspapers of World War 2 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-MOO#! ZDB-1-MOO ZDB-1-MOO Mass Observation Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-187-JPK#! ZDB-187-JPK ZDB-187-JPK Junfermann / Praxis Kommunikation 2015-2020 +http://lobid.org/organisations/ZDB-277-FTZR#! ZDB-277-FTZR ZDB-277-FTZR Frank & Timme / Inklusion und Sozialarbeit +http://lobid.org/organisations/ZDB-157-HCG#! ZDB-157-HCG ZDB-157-HCG Herder / Christentum und Gesellschaft +http://lobid.org/organisations/ZDB-1-ACTD#! ZDB-1-ACTD ZDB-1-ACTD Airiti / Chinese electronic theses and dissertations service (CETD) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APR#! ZDB-1-APR ZDB-1-APR Airiti Proceedings [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RSD99#! ZDB-1-RSD99 ZDB-1-RSD99 Russia State Duma Election 1999 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-285-RMH#! ZDB-285-RMH ZDB-285-RMH Rudolf Müller / Holzbau +http://lobid.org/organisations/ZDB-286-AVF#! ZDB-286-AVF ZDB-286-AVF Aschendorff Verlag / Frühe Neuzeit +http://lobid.org/organisations/ZDB-286-AVN#! ZDB-286-AVN ZDB-286-AVN Aschendorff Verlag / Philosophie Mittelalter +http://lobid.org/organisations/ZDB-18-VEM#! ZDB-18-VEM ZDB-18-VEM Beck eLibrary / Versus Ethik & Leadership +http://lobid.org/organisations/ZDB-1-NCO#! ZDB-1-NCO ZDB-1-NCO Nineteenth Century Collections Online: Women: Transnational Networks [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NCW#! ZDB-1-NCW ZDB-1-NCW Nineteenth Century Collections Online: Photography: The World Through the Lens [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GEA#! ZDB-1-GEA ZDB-1-GEA Early Arabic Printed Books from the British Library [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RON#! ZDB-1-RON ZDB-1-RON Ronza [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DOP#! ZDB-1-DOP ZDB-1-DOP Dacheng laojiu kan quanwen shujuku [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GUO#! ZDB-1-GUO ZDB-1-GUO Guoxue Baodian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EAM#! ZDB-1-EAM ZDB-1-EAM The eastern miscellany [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DUX#! ZDB-1-DUX ZDB-1-DUX Duxiu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CADL#! ZDB-1-CADL ZDB-1-CADL China academic digital associative library : CADAL [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UDN#! ZDB-1-UDN ZDB-1-UDN United Daily News Group knowledge base [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNLD#! ZDB-1-UNLD ZDB-1-UNLD Unihan / Zhongguo lidai shike shiliao huibian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCCC#! ZDB-1-HCCC ZDB-1-HCCC Chinese Anti-Rightist Campaign Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PKUC#! ZDB-1-PKUC ZDB-1-PKUC Chinalawinfo.com [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNST#! ZDB-1-UNST ZDB-1-UNST Unihan / Shi tong [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNSD#! ZDB-1-UNSD ZDB-1-UNSD Unihan / Sibu congkan 2009 zeng bu ban [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNQS#! ZDB-1-UNQS ZDB-1-UNQS Unihan / Qing shilu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNQH#! ZDB-1-UNQH ZDB-1-UNQH Unihan / Qing huidian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNDQ#! ZDB-1-UNDQ ZDB-1-UNDQ Unihan / Daqing guangxu chaoxin faling [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAQ#! ZDB-1-CJAQ ZDB-1-CJAQ Diaolong Full-text Database of Chinese & Japanese Ancient Books / Siku weishoushu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAR#! ZDB-1-CJAR ZDB-1-CJAR Diaolong Full-text Database of Chinese & Japanese Ancient Books / Siku jinhuishu [FID-Lizenz] +http://lobid.org/organisations/ZDB-290-EAE#! ZDB-290-EAE ZDB-290-EAE Elektor / Arduino + ESP +http://lobid.org/organisations/ZDB-105-MCDM#! ZDB-105-MCDM ZDB-105-MCDM Morgan & Claypool: Synthesis Lectures on Data Management +http://lobid.org/organisations/ZDB-41-UGLB#! ZDB-41-UGLB ZDB-41-UGLB scholars-e-library / Garten- & Landschaftsbau / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UHTB#! ZDB-41-UHTB ZDB-41-UHTB scholars-e-library / Hobbytierhaltung / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-ULTB#! ZDB-41-ULTB ZDB-41-ULTB scholars-e-library / Landwirtschaft & Tierhaltung / Backlist Ulmer +http://lobid.org/organisations/ZDB-162-ZBP#! ZDB-162-ZBP ZDB-162-ZBP Zed Books / Politics and International Relations Archive +http://lobid.org/organisations/ZDB-18-NLKK#! ZDB-18-NLKK ZDB-18-NLKK Nomos eLibrary / Kulturwissenschaft, Kulturgeschichte +http://lobid.org/organisations/ZDB-47-EGK#! ZDB-47-EGK ZDB-47-EGK Erich Schmidt Verlag E-Books / Germanistik und Komparatistik +http://lobid.org/organisations/ZDB-1-CHC#! ZDB-1-CHC ZDB-1-CHC Caribbean History and Culture, 1535-1920: From the Library Company of Philadelphia [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNP#! ZDB-1-CNP ZDB-1-CNP Caribbean newspapers, 1718-1876 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-LICF#! ZDB-1-LICF ZDB-1-LICF Gale Literature Criticism [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-LRCF#! ZDB-1-LRCF ZDB-1-LRCF Gale Literature Resource Center [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SCWSF#! ZDB-1-SCWSF ZDB-1-SCWSF Scribner Writer Series [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GAUF#! ZDB-1-GAUF ZDB-1-GAUF Gale Archives Unbound [FID-Lizenz] +http://lobid.org/organisations/ZDB-281-VDI#! ZDB-281-VDI ZDB-281-VDI VDI Verlag-eLibrary / IT & Informatik +http://lobid.org/organisations/ZDB-168-MASY#! ZDB-168-MASY ZDB-168-MASY Access Surgery / EBooks +http://lobid.org/organisations/ZDB-168-MAP#! ZDB-168-MAP ZDB-168-MAP Access Pharmacy / EBooks +http://lobid.org/organisations/ZDB-77-EEL#! ZDB-77-EEL ZDB-77-EEL Edward Elgar Ebook collection Law +http://lobid.org/organisations/ZDB-18-BSRP#! ZDB-18-BSRP ZDB-18-BSRP beck-online / Sanierungsrecht PLUS +http://lobid.org/organisations/ZDB-260-MPOA#! ZDB-260-MPOA ZDB-260-MPOA MIT Press Direct / Direct to Open - Open Access +http://lobid.org/organisations/ZDB-1-SAGK5#! ZDB-1-SAGK5 ZDB-1-SAGK5 Sage Journals Online Publish & Read / Premier / Upgrade für 2022 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-22-CWC#! ZDB-22-CWC ZDB-22-CWC Ciando / Lehrbuchpaket Wiley Chemie +http://lobid.org/organisations/ZDB-28-OPLA#! ZDB-28-OPLA ZDB-28-OPLA Oxford Public International Law / Gesamt +http://lobid.org/organisations/ZDB-208-WNA#! ZDB-208-WNA ZDB-208-WNA Adam Matthew Digital / Women in The National Archives +http://lobid.org/organisations/ZDB-1-IBV#! ZDB-1-IBV ZDB-1-IBV Iberoamericana Vervuert E-Books / FID-Romanistik Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-95-FSBA#! ZDB-95-FSBA ZDB-95-FSBA Ferdinand Schöningh eBooks +http://lobid.org/organisations/ZDB-301-BSBE#! ZDB-301-BSBE ZDB-301-BSBE Bentham Science / Business, Economics, Finance and Accounting +http://lobid.org/organisations/ZDB-114-LGLL#! ZDB-114-LGLL ZDB-114-LGLL Peter Lang eBooks / German Language & Literatures +http://lobid.org/organisations/ZDB-77-EOB#! ZDB-77-EOB ZDB-77-EOB Edward Elgar / Essentials in Organizational Behavior & HRM +http://lobid.org/organisations/ZDB-54-DKLP#! ZDB-54-DKLP ZDB-54-DKLP Duncker & Humblot eLibrary / Lehrbücher Pepels +http://lobid.org/organisations/ZDB-54-DKFR#! ZDB-54-DKFR ZDB-54-DKFR Duncker & Humblot eLibrary / Festschriften Recht +http://lobid.org/organisations/ZDB-277-FTZS#! ZDB-277-FTZS ZDB-277-FTZS Frank & Timme / Forum: Rumänien +http://lobid.org/organisations/ZDB-263-SWN#! ZDB-263-SWN ZDB-263-SWN Schüren / Sozialwissenschaften +http://lobid.org/organisations/ZDB-245-NWSS#! ZDB-245-NWSS ZDB-245-NWSS NWB Steuer und Studium +http://lobid.org/organisations/ZDB-30-PBW#! ZDB-30-PBW ZDB-30-PBW ProQuest / Bertolt Brechts Werke im WWW +http://lobid.org/organisations/ZDB-303-BVB#! ZDB-303-BVB ZDB-303-BVB Bildner Verlag / Bildbearbeitung +http://lobid.org/organisations/ZDB-142-WBSL#! ZDB-142-WBSL ZDB-142-WBSL WBG / Slavistik +http://lobid.org/organisations/ZDB-157-HNG#! ZDB-157-HNG ZDB-157-HNG Herder / Nachkriegsgeschichte +http://lobid.org/organisations/ZDB-30-PASS#! ZDB-30-PASS ZDB-30-PASS ProQuest Academic Collection / Social Sciences +http://lobid.org/organisations/ZDB-305-LTA#! ZDB-305-LTA ZDB-305-LTA letters2feel / E-Books +http://lobid.org/organisations/ZDB-306-IRE#! ZDB-306-IRE ZDB-306-IRE iRead eBooks +http://lobid.org/organisations/ZDB-186-WTG#! ZDB-186-WTG ZDB-186-WTG WTM-Verlag / Schriften zur mathematischen Begabungsforschung +http://lobid.org/organisations/ZDB-208-FOM71#! ZDB-208-FOM71 ZDB-208-FOM71 Adam Matthew Digital / Foreign Office Files for the Middle East: 1971-1974, The 1973 Arab-Israeli War and the Oil Crisis +http://lobid.org/organisations/ZDB‑18‑BSPI#! ZDB‑18‑BSPI ZDB‑18‑BSPI beck‑online / Steuerrecht PREMIUM international +http://lobid.org/organisations/ZDB-41-SU4#! ZDB-41-SU4 ZDB-41-SU4 scholars-e-library / Soziologie / Backlist UVK +http://lobid.org/organisations/ZDB-41-SA3#! ZDB-41-SA3 ZDB-41-SA3 scholars-e-library / Kulturwissenschaft / Backlist Aisthesis +http://lobid.org/organisations/ZDB-41-SA6#! ZDB-41-SA6 ZDB-41-SA6 scholars-e-library / Philosophie / Backlist Aisthesis +http://lobid.org/organisations/ZDB-95-ILW#! ZDB-95-ILW ZDB-95-ILW Brill / International Law & World Order: Weston's & Carlson's Basic Documents +http://lobid.org/organisations/ZDB-95-RGG#! ZDB-95-RGG ZDB-95-RGG Brill / Religion in Geschichte und Gegenwart Online +http://lobid.org/organisations/ZDB-1-CMW4#! ZDB-1-CMW4 ZDB-1-CMW4 China and the Modern World, Part 4: Hong Kong, Britain and China (1841-1951) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ICW2#! ZDB-1-ICW2 ZDB-1-ICW2 China and the Modern World / Imperial China and the West, Part 2 [FID-Lizenz] +http://lobid.org/organisations/ZDB-55-EMOA#! ZDB-55-EMOA ZDB-55-EMOA Emerald / Open Access +http://lobid.org/organisations/ZDB-54-DHOA#! ZDB-54-DHOA ZDB-54-DHOA Duncker & Humblot eLibrary / Open Access +http://lobid.org/organisations/ZDB-313-EBOA#! ZDB-313-EBOA ZDB-313-EBOA Fachpaket Erziehungswissenschaft und Bildungsforschung Open Access (OA) +http://lobid.org/organisations/ZDB-20-CTB#! ZDB-20-CTB ZDB-20-CTB Cambridge Textbooks +http://lobid.org/organisations/ZDB-221-PPK#! ZDB-221-PPK ZDB-221-PPK Packt Publishing Kombipaket +http://lobid.org/organisations/ZDB-18-NIRP#! ZDB-18-NIRP ZDB-18-NIRP Nomos eLibrary / Internationales Recht, Völkerrecht / Partner only +http://lobid.org/organisations/ZDB-18-NOMN#! ZDB-18-NOMN ZDB-18-NOMN Nomos eLibrary / Medien- und Kommunikationswissenschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NOZP#! ZDB-18-NOZP ZDB-18-NOZP Nomos eLibrary / Soziologie / Partner only +http://lobid.org/organisations/ZDB-18-NEPN#! ZDB-18-NEPN ZDB-18-NEPN Nomos eLibrary / Europapolitik / Nomos only +http://lobid.org/organisations/ZDB-18-NLAN#! ZDB-18-NLAN ZDB-18-NLAN Nomos eLibrary / Anthropologie und Ethnologie / Nomos only +http://lobid.org/organisations/ZDB-18-NPPP#! ZDB-18-NPPP ZDB-18-NPPP Nomos eLibrary / Psychotherapie und Psychologie / Partner only +http://lobid.org/organisations/ZDB-1-EJG#! ZDB-1-EJG ZDB-1-EJG Enzyklopädie jüdischer Geschichte und Kultur [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NLSRN#! ZDB-18-NLSRN ZDB-18-NLSRN Nomos eLibrary / Sozialrecht / Nomos only +http://lobid.org/organisations/ZDB-18-NLBRN#! ZDB-18-NLBRN ZDB-18-NLBRN Nomos eLibrary / Bürgerliches Recht / Nomos only +http://lobid.org/organisations/ZDB-18-NLKKN#! ZDB-18-NLKKN ZDB-18-NLKKN Nomos eLibrary / Kulturwissenschaft, Kulturgeschichte / Nomos only +http://lobid.org/organisations/ZDB-18-NSLM#! ZDB-18-NSLM ZDB-18-NSLM Nomos eLibrary / Studienliteratur Musikwissenschaft +http://lobid.org/organisations/ZDB-1-SAGM6#! ZDB-1-SAGM6 ZDB-1-SAGM6 Sage Journals Online Publish & Read / Materials Science & Engineering / Upgrade für 2023 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-41-BPAB#! ZDB-41-BPAB ZDB-41-BPAB scholars-e-library / Bauen/Planen/Architektur / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PWB#! ZDB-41-PWB ZDB-41-PWB scholars-e-library / Pädagogik/Berufs- und Wirtschaftspädagogik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-RHS#! ZDB-41-RHS ZDB-41-RHS scholars-e-library / Romanistik/Hispanistik/Slavistik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-SPAB#! ZDB-41-SPAB ZDB-41-SPAB scholars-e-library / Sprachwissenschaft allg./Anglistik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-KKT#! ZDB-41-KKT ZDB-41-KKT scholars-e-library / Kunst/Kultur/Theater / Backlist ibidem +http://lobid.org/organisations/ZDB-18-BOEB#! ZDB-18-BOEB ZDB-18-BOEB beck-online / Öffentliches Baurecht Kohlhammer +http://lobid.org/organisations/ZDB-18-BUP#! ZDB-18-BUP ZDB-18-BUP beck-online / Umweltrecht PREMIUM +http://lobid.org/organisations/ZDB-18-BVRE#! ZDB-18-BVRE ZDB-18-BVRE beck-online / Vergaberecht PREMIUM +http://lobid.org/organisations/ZDB-55-BMEX#! ZDB-55-BMEX ZDB-55-BMEX Emerald Business, Management and Economics eBook Collection Extra +http://lobid.org/organisations/ZDB-55-ESSX#! ZDB-55-ESSX ZDB-55-ESSX Emerald Social Sciences eBook Collection Extra +http://lobid.org/organisations/ZDB-142-WBGG#! ZDB-142-WBGG ZDB-142-WBGG WBG / Geschichte +http://lobid.org/organisations/ZDB-325-VSL#! ZDB-325-VSL ZDB-325-VSL VitalSource / Lehrbuchpaket Wiley Life Science +http://lobid.org/organisations/ZDB-119-KAC#! ZDB-119-KAC ZDB-119-KAC Knowledge Unlatched / Archaeology [Open Access] +http://lobid.org/organisations/ZDB-260-MCN#! ZDB-260-MCN ZDB-260-MCN MIT Press Direct / MIT CogNet +http://lobid.org/organisations/ZDB-304-GNO#! ZDB-304-GNO ZDB-304-GNO GABAL / Novitäten +http://lobid.org/organisations/ZDB-1-NBR#! ZDB-1-NBR ZDB-1-NBR Nomos eLibrary / Zivilrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-30-PQL#! ZDB-30-PQL ZDB-30-PQL ProQuest / Luthers Werke (Weimarer Ausgabe) +http://lobid.org/organisations/ZDB-97-EOA#! ZDB-97-EOA ZDB-97-EOA Edition Open Access [Open Access] +http://lobid.org/organisations/ZDB-245-NPU#! ZDB-245-NPU ZDB-245-NPU NWB PLUS +http://lobid.org/organisations/ZDB-1-NLA#! ZDB-1-NLA ZDB-1-NLA Nomos eLibrary / Anthropologie und Ethnologie 2017-2020 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-84-KBS#! ZDB-84-KBS ZDB-84-KBS Kohlhammer eLibrary Brandschutz +http://lobid.org/organisations/ZDB-56-JCS#! ZDB-56-JCS ZDB-56-JCS Tagebücher Johann Christian Senckenberg (1707-1772) [Open Access] +http://lobid.org/organisations/ZDB-56-VDS#! ZDB-56-VDS ZDB-56-VDS VD16 Digitalisate der Universitätsbibliothek Johann Christian Senckenberg [Open Access] +http://lobid.org/organisations/ZDB-2-SXCH#! ZDB-2-SXCH ZDB-2-SXCH Springer Nature / Reference Module Chemistry, Materials and Physics +http://lobid.org/organisations/ZDB-1-AIS#! ZDB-1-AIS ZDB-1-AIS Al Manhal MENA E-Book Collections [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-296-TTN#! ZDB-296-TTN ZDB-296-TTN TIB-Sammlung Deutscher Forschungsberichte aus Technik und Naturwissenschaften [Open Access] +http://lobid.org/organisations/ZDB-167-JBD#! ZDB-167-JBD ZDB-167-JBD Jüdische Bibliothek Digitalisate der Universitätsbibliothek Mainz [Open Access] +http://lobid.org/organisations/ZDB-56-FSOC#! ZDB-56-FSOC ZDB-56-FSOC Sammlung Occulta der Universitätsbibliothek Frankfurt/Main [Open Access] +http://lobid.org/organisations/ZDB-97-MPR#! ZDB-97-MPR ZDB-97-MPR MPG Publication Repository [Open Access] +http://lobid.org/organisations/ZDB-56-COM#! ZDB-56-COM ZDB-56-COM Compact Memory [Open Access] +http://lobid.org/organisations/ZDB-56-FCF#! ZDB-56-FCF ZDB-56-FCF Freimann Collection Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-119-KMU#! ZDB-119-KMU ZDB-119-KMU Knowledge Unlatched / Music [Open Access] +http://lobid.org/organisations/ZDB-290-EMT#! ZDB-290-EMT ZDB-290-EMT Elektor / Maker & Tools +http://lobid.org/organisations/ZDB-84-KET#! ZDB-84-KET ZDB-84-KET Kohlhammer eLibrary Theologie/Kulturwissenschaft +http://lobid.org/organisations/ZDB-1-NOJ#! ZDB-1-NOJ ZDB-1-NOJ Nomos eLibrary / Jura Grundlagen 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-157-HPA#! ZDB-157-HPA ZDB-157-HPA Herder / Pädagogik Aktuell +http://lobid.org/organisations/ZDB-144-PVBP#! ZDB-144-PVBP ZDB-144-PVBP Psychiatrie Verlag / Basiswissen +http://lobid.org/organisations/ZDB-1-NPP#! ZDB-1-NPP ZDB-1-NPP Nomos eLibrary / Psychologie, Psychotherapie 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-NRL#! ZDB-1-NRL ZDB-1-NRL Nomos eLibrary /Religion 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-56-MSF#! ZDB-56-MSF ZDB-56-MSF Mittelalterliche Handschriften Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-119-KLS#! ZDB-119-KLS ZDB-119-KLS Knowledge Unlatched / Language Science Press [Open Access] +http://lobid.org/organisations/ZDB-160-FES#! ZDB-160-FES ZDB-160-FES FES-Publikationen in der Digitalen Bibliothek / Friedrich-Ebert-Stiftung [Open Access] +http://lobid.org/organisations/ZDB-41-PBA#! ZDB-41-PBA ZDB-41-PBA scholars-e-library / Philosophie / Backlist Königshausen & Neumann +http://lobid.org/organisations/ZDB-88-JBJ#! ZDB-88-JBJ ZDB-88-JBJ juris Basismodul Justiz +http://lobid.org/organisations/ZDB-1-NMNZ#! ZDB-1-NMNZ ZDB-1-NMNZ Nomos eLibrary / Mediation [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-MCBN#! ZDB-1-MCBN ZDB-1-MCBN Memoria Chilena, Biblioteca Nacional de Chile [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-94-OAB#! ZDB-94-OAB ZDB-94-OAB Directory of Open Access Books +http://lobid.org/organisations/ZDB-157-HPG#! ZDB-157-HPG ZDB-157-HPG Herder / Pädagogik Grundlagen +http://lobid.org/organisations/ZDB-1-NIR#! ZDB-1-NIR ZDB-1-NIR Nomos eLibrary / Internationales Recht, Völkerrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-119-KEO#! ZDB-119-KEO ZDB-119-KEO Knowledge Unlatched / Economics [Open Access] +http://lobid.org/organisations/ZDB-81-FSG#! ZDB-81-FSG ZDB-81-FSG Future Science Group eBook collection +http://lobid.org/organisations/ZDB-82-BOE#! ZDB-82-BOE ZDB-82-BOE BioOne [Komplett] +http://lobid.org/organisations/ZDB-42-OBT#! ZDB-42-OBT ZDB-42-OBT Oldenbourg / Betriebswirtschaftslehre und Tourismus +http://lobid.org/organisations/ZDB-42-OPW#! ZDB-42-OPW ZDB-42-OPW Oldenbourg / Politikwissenschaften +http://lobid.org/organisations/ZDB-84-KOL#! ZDB-84-KOL ZDB-84-KOL Kohlhammer Bildung, Erziehung und Sozialisation +http://lobid.org/organisations/ZDB-85-LDA#! ZDB-85-LDA ZDB-85-LDA Linde-Verlag Finanzen und Rechnungswesen +http://lobid.org/organisations/ZDB-85-LDE#! ZDB-85-LDE ZDB-85-LDE Linde-Verlag Kommunikation und Rhetorik +http://lobid.org/organisations/ZDB-9-INF#! ZDB-9-INF ZDB-9-INF Informe +http://lobid.org/organisations/ZDB-87-GNT#! ZDB-87-GNT ZDB-87-GNT Classiques Garnier Numérique  / Théorie de la littérature +http://lobid.org/organisations/ZDB-88-JRF#! ZDB-88-JRF ZDB-88-JRF juris Fachportal Steuerrecht / Hochschulen +http://lobid.org/organisations/ZDB-88-JRI#! ZDB-88-JRI ZDB-88-JRI Archiv OLG-Rechtsprechung +http://lobid.org/organisations/ZDB-89-EBM#! ZDB-89-EBM ZDB-89-EBM EBL Ebook Library / Business and Management +http://lobid.org/organisations/ZDB-89-EIT#! ZDB-89-EIT ZDB-89-EIT EBL Ebook Library / IT +http://lobid.org/organisations/ZDB-4-KHH#! ZDB-4-KHH ZDB-4-KHH EBSCO History Reference Center +http://lobid.org/organisations/ZDB-1-OJD#! ZDB-1-OJD ZDB-1-OJD Oxford Journals Digital Archive 1849-2017 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-COD#! ZDB-1-COD ZDB-1-COD Dokumenty Sovetskoj ėpochi [Open Access / Nationallizenz] +http://lobid.org/organisations/ZDB-1-WBI#! ZDB-1-WBI ZDB-1-WBI World Biographical Information System [Nationallizenz] +http://lobid.org/organisations/ZDB-1-FGD#! ZDB-1-FGD ZDB-1-FGD Dictionnaire de l'ancienne langue française et de tous ses dialectes du 9e au 15e siècle / Frédéric Godefroy [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MOC#! ZDB-1-MOC ZDB-1-MOC Macmillan Cabinet Papers (1957-1963) [Nationallizenz] +http://lobid.org/organisations/ZDB-1-NEL#! ZDB-1-NEL ZDB-1-NEL EBSCOhost eBook Collection [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MME#! ZDB-1-MME ZDB-1-MME Making of the Modern World : economics, politics and industry [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DLC#! ZDB-1-DLC ZDB-1-DLC Digital Library of the Catholic Reformation [Nationallizenz] +http://lobid.org/organisations/ZDB-4-AQH#! ZDB-4-AQH ZDB-4-AQH EBSCO Advanced Placement Source +http://lobid.org/organisations/ZDB-4-BTH#! ZDB-4-BTH ZDB-4-BTH EBSCO Business Source Complete +http://lobid.org/organisations/ZDB-4-EHH#! ZDB-4-EHH ZDB-4-EHH EBSCO Education Research Complete +http://lobid.org/organisations/ZDB-1-IUC#! ZDB-1-IUC ZDB-1-IUC IUCR Backfile Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-AHP#! ZDB-1-AHP ZDB-1-AHP Animal Health and Production Compendium [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MYA#! ZDB-1-MYA ZDB-1-MYA Mystik & Aszese des 16.-19. Jahrhunderts [Nationallizenz] +http://lobid.org/organisations/ZDB-1-NID#! ZDB-1-NID ZDB-1-NID Northern Ireland - A Divided Community 1921-1972 : Cabinet papers of the Stormont Administration [Nationallizenz] +http://lobid.org/organisations/ZDB-1-RTH#! ZDB-1-RTH ZDB-1-RTH Religion & Theologie des 16.-19. Jahrhunderts [Nationallizenz] +http://lobid.org/organisations/ZDB-1-LWW#! ZDB-1-LWW ZDB-1-LWW Lippincott Williams & Wilkins 'LWW Legacy Archive' [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CLM#! ZDB-1-CLM ZDB-1-CLM Le Corpus de la littérature médiévale, des origines à la fin du Xve siècle [Nationallizenz] +http://lobid.org/organisations/ZDB-1-TCE#! ZDB-1-TCE ZDB-1-TCE Thieme Zeitschriftenarchive 1980-2007 [Nationallizenz] +http://lobid.org/organisations/ZDB-2-SWI#! ZDB-2-SWI ZDB-2-SWI Springer ebook collection / Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-7-EDU#! ZDB-7-EDU ZDB-7-EDU Taylor & Francis Education Collection +http://lobid.org/organisations/ZDB-1-EIOP#! ZDB-1-EIOP ZDB-1-EIOP Torrossa / Periodici [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SAG#! ZDB-1-SAG ZDB-1-SAG Sage Journals Online Deep Backfile 1879-2020 [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-KAR#! ZDB-1-KAR ZDB-1-KAR Karger Journals [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-KLU#! ZDB-1-KLU ZDB-1-KLU Kluwer Law International Journals [Nationallizenz] +http://lobid.org/organisations/ZDB-1-NCN#! ZDB-1-NCN ZDB-1-NCN Nineteenth Century U.S. Newspapers [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ANRK#! ZDB-1-ANRK ZDB-1-ANRK Annual Reviews Electronic Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-MEA#! ZDB-1-MEA ZDB-1-MEA The Middle East Online / Series 1, Arab-Israeli Relations 1917-1970 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-KBL#! ZDB-1-KBL ZDB-1-KBL The Digital Karl Barth Library [Nationallizenz] +http://lobid.org/organisations/ZDB-14-DLO#! ZDB-14-DLO ZDB-14-DLO Deutsche Literatur des 18. Jahrhunderts online +http://lobid.org/organisations/ZDB-11-EBC#! ZDB-11-EBC ZDB-11-EBC RSC eBook Collection +http://lobid.org/organisations/ZDB-1-JA4#! ZDB-1-JA4 ZDB-1-JA4 JSTOR : Arts & Sciences IV Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JA5#! ZDB-1-JA5 ZDB-1-JA5 JSTOR : Arts & Sciences V Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JA6#! ZDB-1-JA6 ZDB-1-JA6 JSTOR : Arts & Sciences VI Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JB2#! ZDB-1-JB2 ZDB-1-JB2 JSTOR : Business II Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JP1#! ZDB-1-JP1 ZDB-1-JP1 JSTOR : Public Library I Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SRC#! ZDB-1-SRC ZDB-1-SRC Chinamaxx / SSReaders [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CIA#! ZDB-1-CIA ZDB-1-CIA Columbia International Affairs Online (CIAO) [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BLN#! ZDB-1-BLN ZDB-1-BLN 19th Century British Library Newspapers [Nationallizenz] +http://lobid.org/organisations/ZDB-1-HRA#! ZDB-1-HRA ZDB-1-HRA eHRAF World Cultures [Nationallizenz] +http://lobid.org/organisations/ZDB-16-HEB#! ZDB-16-HEB ZDB-16-HEB Hanser eLibrary +http://lobid.org/organisations/ZDB-1-LOL#! ZDB-1-LOL ZDB-1-LOL Liebert On Line Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-17-ACL#! ZDB-17-ACL ZDB-17-ACL ACLS Humanities E-Book Project +http://lobid.org/organisations/ZDB-20-CHO#! ZDB-20-CHO ZDB-20-CHO Cambridge Histories Online +http://lobid.org/organisations/ZDB-22-CAN#! ZDB-22-CAN ZDB-22-CAN Ciando +http://lobid.org/organisations/ZDB-25-KRG#! ZDB-25-KRG ZDB-25-KRG Karger eBook Collection +http://lobid.org/organisations/ZDB-10-BBB#! ZDB-10-BBB ZDB-10-BBB Knovel Biochemistry, Biology, Biotechnology +http://lobid.org/organisations/ZDB-10-CER#! ZDB-10-CER ZDB-10-CER Knovel Ceramics & Ceramic Engineering +http://lobid.org/organisations/ZDB-26-MYL#! ZDB-26-MYL ZDB-26-MYL MyiLibrary +http://lobid.org/organisations/ZDB-27-PSB#! ZDB-27-PSB ZDB-27-PSB PsycBooks (via Ovid) +http://lobid.org/organisations/ZDB-28-OSC#! ZDB-28-OSC ZDB-28-OSC Oxford Scholarship Online / Linguistics +http://lobid.org/organisations/ZDB-28-OSK#! ZDB-28-OSK ZDB-28-OSK Oxford Scholarship Online / Mathematics +http://lobid.org/organisations/ZDB-28-OSN#! ZDB-28-OSN ZDB-28-OSN Oxford Scholarship Online / Neuroscience +http://lobid.org/organisations/ZDB-23-DGB#! ZDB-23-DGB ZDB-23-DGB De Gruyter eBook-Paket Bibliothekswesen, Dokumentation und Information +http://lobid.org/organisations/ZDB-1-AAS1#! ZDB-1-AAS1 ZDB-1-AAS1 American Antiquarian Society (AAS) Historical Periodicals Collection : Series 1 (1691-1820) [Nationallizenz] +http://lobid.org/organisations/ZDB-33-MTC#! ZDB-33-MTC ZDB-33-MTC Elsevier e-book collection - Mathematics +http://lobid.org/organisations/ZDB-33-PAS#! ZDB-33-PAS ZDB-33-PAS Elsevier e-book collection - Physics & Astronomy +http://lobid.org/organisations/ZDB-33-MAD#! ZDB-33-MAD ZDB-33-MAD Elsevier e-book collection - Medicine and Dentistry +http://lobid.org/organisations/ZDB-48-LNW#! ZDB-48-LNW ZDB-48-LNW LexisNexis / Wirtschaft +http://lobid.org/organisations/ZDB-38-ELP#! ZDB-38-ELP ZDB-38-ELP ebrary subject collection / Law, international relations & public policy +http://lobid.org/organisations/ZDB-49-OLM#! ZDB-49-OLM ZDB-49-OLM Olms Online / Messkataloge +http://lobid.org/organisations/ZDB-1-WBA#! ZDB-1-WBA ZDB-1-WBA World Bank E-Library Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-42-OVW#! ZDB-42-OVW ZDB-42-OVW Oldenbourg / Volkswirtschaftslehre +http://lobid.org/organisations/ZDB-42-ON2#! ZDB-42-ON2 ZDB-42-ON2 Oldenbourg / Naturwissenschaft und Technik 2 +http://lobid.org/organisations/ZDB-32-STB#! ZDB-32-STB ZDB-32-STB Safari Tech Books Online +http://lobid.org/organisations/ZDB-52-ECM#! ZDB-52-ECM ZDB-52-ECM HeinOnline / European Center for Minority Issues +http://lobid.org/organisations/ZDB-52-USS#! ZDB-52-USS ZDB-52-USS HeinOnline / U.S. Statutes at Large +http://lobid.org/organisations/ZDB-48-LNF#! ZDB-48-LNF ZDB-48-LNF Jurion - Familienrecht +http://lobid.org/organisations/ZDB-1-AAS3#! ZDB-1-AAS3 ZDB-1-AAS3 American Antiquarian Society (AAS) Historical Periodicals Collection : Series 3 (1838-1852) [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EMS#! ZDB-1-EMS ZDB-1-EMS European Mathematical Society / EMS Journals [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ABA#! ZDB-1-ABA ZDB-1-ABA ARTbibliographies Modern 1974 - 2016 [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ABM#! ZDB-1-ABM ZDB-1-ABM ARTbibliographies Modern [Komplett] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-EMSK#! ZDB-1-EMSK ZDB-1-EMSK European Mathematical Society / EMS Journals [Komplett] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-NRA#! ZDB-1-NRA ZDB-1-NRA The New Republic Archive 1914-2010 [Nationallizenz] +http://lobid.org/organisations/ZDB-38-EAC#! ZDB-38-EAC ZDB-38-EAC ebrary Academic Complete +http://lobid.org/organisations/ZDB-54-DHR#! ZDB-54-DHR ZDB-54-DHR Duncker & Humblot eLibrary / Paket RECHT (Rechts- und Staatswissenschaften) +http://lobid.org/organisations/ZDB-1-AIA#! ZDB-1-AIA ZDB-1-AIA AIAA Meeting Papers and Journals Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PLC#! ZDB-1-PLC ZDB-1-PLC Psychiatry Legacy Collection Online Journals 1844-1996 [Nationallizenz] +http://lobid.org/organisations/ZDB-4-BUH#! ZDB-4-BUH ZDB-4-BUH EBSCO Business Source Premier +http://lobid.org/organisations/ZDB-4-APH#! ZDB-4-APH ZDB-4-APH EBSCO Academic Search Premier +http://lobid.org/organisations/ZDB-4-ANH#! ZDB-4-ANH ZDB-4-ANH EBSCO Australia/New Zealand Reference Centre +http://lobid.org/organisations/ZDB-4-BYH#! ZDB-4-BYH ZDB-4-BYH EBSCO Biomedical Reference Collection: Comprehensive +http://lobid.org/organisations/ZDB-4-FTH#! ZDB-4-FTH ZDB-4-FTH EBSCO MasterFILE Elite +http://lobid.org/organisations/ZDB-4-CPH#! ZDB-4-CPH ZDB-4-CPH EBSCO Computer Source: Consumer Edition +http://lobid.org/organisations/ZDB-4-BCH#! ZDB-4-BCH ZDB-4-BCH EBSCO Business Source Corporate +http://lobid.org/organisations/ZDB-4-LGH#! ZDB-4-LGH ZDB-4-LGH EBSCO Legal Collection +http://lobid.org/organisations/ZDB-54-DHO#! ZDB-54-DHO ZDB-54-DHO Duncker & Humblot eLibrary / Paket SÖR (Schriften zum Öffentlichen Recht) +http://lobid.org/organisations/ZDB-23-DGK#! ZDB-23-DGK ZDB-23-DGK De Gruyter e-dition: Best of Biology / Biologie +http://lobid.org/organisations/ZDB-23-DGP#! ZDB-23-DGP ZDB-23-DGP De Gruyter e-dition: Best of Library & Information Science / Buch - Bibliothek - Information +http://lobid.org/organisations/ZDB-54-DHE#! ZDB-54-DHE ZDB-54-DHE Duncker & Humblot eLibrary +http://lobid.org/organisations/ZDB-16-HEM#! ZDB-16-HEM ZDB-16-HEM Hanser eLibrary / Maschinenbau +http://lobid.org/organisations/ZDB-16-HEN#! ZDB-16-HEN ZDB-16-HEN Hanser eLibrary / Mathematik und Naturwissenschaften +http://lobid.org/organisations/ZDB-73-CVB#! ZDB-73-CVB ZDB-73-CVB campus e-books / Business +http://lobid.org/organisations/ZDB-73-CVH#! ZDB-73-CVH ZDB-73-CVH campus e-books / Geschichte Backlist +http://lobid.org/organisations/ZDB-1-PHU#! ZDB-1-PHU ZDB-1-PHU Palgrave Connect / Humanities Package [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBF#! ZDB-1-CUBF ZDB-1-CUBF Cambridge Books Online / Law [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBG#! ZDB-1-CUBG ZDB-1-CUBG Cambridge Books Online / Literature [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-WRD#! ZDB-1-WRD ZDB-1-WRD World Religion Database [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBG#! ZDB-41-UTBG ZDB-41-UTBG utb-studi-e-book / Medien- und Kommunikationswissenschaften +http://lobid.org/organisations/ZDB-75-TOL#! ZDB-75-TOL ZDB-75-TOL Torrossa / Leo S. Olschki Italian Literature from 1600 onwards Collection +http://lobid.org/organisations/ZDB-91-CABI1#! ZDB-91-CABI1 ZDB-91-CABI1 CABI books +http://lobid.org/organisations/ZDB-39-JA10#! ZDB-39-JA10 ZDB-39-JA10 JSTOR : Arts & Sciences X Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-84-KOK#! ZDB-84-KOK ZDB-84-KOK Kohlhammer Theologie / Exegese +http://lobid.org/organisations/ZDB-74-AKJ#! ZDB-74-AKJ ZDB-74-AKJ akademie-link / Schönberger Repertorium Philosophie Mittelalter +http://lobid.org/organisations/ZDB-74-AKN#! ZDB-74-AKN ZDB-74-AKN akademie-link / Tusculum Cicero Reden +http://lobid.org/organisations/ZDB-18-NOR#! ZDB-18-NOR ZDB-18-NOR Nomos eLibrary / Europarecht +http://lobid.org/organisations/ZDB-18-NOP#! ZDB-18-NOP ZDB-18-NOP Nomos eLibrary / Politikwissenschaft +http://lobid.org/organisations/ZDB-1-PSR#! ZDB-1-PSR ZDB-1-PSR BrillOnline / Primary sources / Reformation Studies / Hungarian Reformation Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-LGD#! ZDB-1-LGD ZDB-1-LGD Literaturnaja gazeta [Nationallizenz] +http://lobid.org/organisations/ZDB-1-JJS#! ZDB-1-JJS ZDB-1-JJS JSTOR : Jewish Studies Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-95-PJA#! ZDB-95-PJA ZDB-95-PJA Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Ephraim Deinard (1846-1930) +http://lobid.org/organisations/ZDB-95-PJC#! ZDB-95-PJC ZDB-95-PJC Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Hebrew Printing in India +http://lobid.org/organisations/ZDB-95-PJF#! ZDB-95-PJF ZDB-95-PJF Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Sephardic Editions, 1550-1820 +http://lobid.org/organisations/ZDB-95-PJG#! ZDB-95-PJG ZDB-95-PJG Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / MEMO 1: Pioneer Orientalists +http://lobid.org/organisations/ZDB-95-PJH#! ZDB-95-PJH ZDB-95-PJH Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / MEMO 2: The Ottoman Legacy of Levinus Warner +http://lobid.org/organisations/ZDB-18-NOL#! ZDB-18-NOL ZDB-18-NOL Nomos eLibrary / Gesamt +http://lobid.org/organisations/ZDB-1-PRP#! ZDB-1-PRP ZDB-1-PRP Palgrave Connect / Religion & Philosophy [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PLI#! ZDB-1-PLI ZDB-1-PLI Palgrave Connect / Literature [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PED#! ZDB-1-PED ZDB-1-PED Palgrave Connect / Education [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PME#! ZDB-1-PME ZDB-1-PME Palgrave Connect / Media & Culture [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-23-DPS#! ZDB-23-DPS ZDB-23-DPS De Gruyter E-Books / Geschichte, Politikwissenschaft, Soziologie +http://lobid.org/organisations/ZDB-84-KOU#! ZDB-84-KOU ZDB-84-KOU Kohlhammer Dynastien +http://lobid.org/organisations/ZDB-59-BSA#! ZDB-59-BSA ZDB-59-BSA Beltz Soziale Arbeit +http://lobid.org/organisations/ZDB-96-SGE#! ZDB-96-SGE ZDB-96-SGE Sage knowledge / Geography +http://lobid.org/organisations/ZDB-23-DMP#! ZDB-23-DMP ZDB-23-DMP De Gruyter eBook-Paket Mathematik, Physik, Ingenieurwissenschaften deutsch +http://lobid.org/organisations/ZDB-23-DME#! ZDB-23-DME ZDB-23-DME De Gruyter eBook-Paket Medizin englisch +http://lobid.org/organisations/ZDB-8-APA#! ZDB-8-APA ZDB-8-APA APA Books E-Collections +http://lobid.org/organisations/ZDB-35-WCA#! ZDB-35-WCA ZDB-35-WCA Wiley Collection Agriculture +http://lobid.org/organisations/ZDB-28-OHP#! ZDB-28-OHP ZDB-28-OHP Oxford Handbooks Online / Philosophy +http://lobid.org/organisations/ZDB-28-OHH#! ZDB-28-OHH ZDB-28-OHH Oxford Handbooks Online / History +http://lobid.org/organisations/ZDB-28-OHL#! ZDB-28-OHL ZDB-28-OHL Oxford Handbooks Online / Linguistics +http://lobid.org/organisations/ZDB-109-LHH#! ZDB-109-LHH ZDB-109-LHH Lambertus / Heilpädagogik und Heilerziehungspflege +http://lobid.org/organisations/ZDB-8-APY#! ZDB-8-APY ZDB-8-APY APA PsycTHERAPY +http://lobid.org/organisations/ZDB-41-UTBT#! ZDB-41-UTBT ZDB-41-UTBT scholars-e-library / Journalistik +http://lobid.org/organisations/ZDB-112-SRB#! ZDB-112-SRB ZDB-112-SRB Schattauer E-Medien / Gynäkologie, Urologie, Hebammen +http://lobid.org/organisations/ZDB-112-SRF#! ZDB-112-SRF ZDB-112-SRF Schattauer E-Medien / Kardio Vascular +http://lobid.org/organisations/ZDB-112-SRG#! ZDB-112-SRG ZDB-112-SRG Schattauer E-Medien / Neurologie +http://lobid.org/organisations/ZDB-112-SRM#! ZDB-112-SRM ZDB-112-SRM Schattauer E-Medien / Psychotherapie +http://lobid.org/organisations/ZDB-112-SRN#! ZDB-112-SRN ZDB-112-SRN Schattauer E-Medien / Körperpsychotherapie, Verhaltenstherapie +http://lobid.org/organisations/ZDB-112-SRQ#! ZDB-112-SRQ ZDB-112-SRQ Schattauer E-Medien / Wissen & Leben +http://lobid.org/organisations/ZDB-1-EVO#! ZDB-1-EVO ZDB-1-EVO Ethnographic Video Online: Volume 1 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-52-PSF#! ZDB-52-PSF ZDB-52-PSF HeinOnline / Parker School of Foreign and Comparative Law Publications +http://lobid.org/organisations/ZDB-41-SEL#! ZDB-41-SEL ZDB-41-SEL scholars-e-library +http://lobid.org/organisations/ZDB-103-WTT#! ZDB-103-WTT ZDB-103-WTT Woodhead / Textile Technology Collection +http://lobid.org/organisations/ZDB-113-IMA#! ZDB-113-IMA ZDB-113-IMA Chandos Publishing / Information Management +http://lobid.org/organisations/ZDB-113-AST#! ZDB-113-AST ZDB-113-AST Chandos Publishing / Asian Studies +http://lobid.org/organisations/ZDB-114-LAC#! ZDB-114-LAC ZDB-114-LAC Peter Lang eBooks / Complete +http://lobid.org/organisations/ZDB-95-BBS#! ZDB-95-BBS ZDB-95-BBS Brill / Biblical Studies, Ancient Near East and Early Christianity E-Books Online +http://lobid.org/organisations/ZDB-96-SCP#! ZDB-96-SCP ZDB-96-SCP Sage knowledge / Counseling and Psychotherapy +http://lobid.org/organisations/ZDB-96-SEC#! ZDB-96-SEC ZDB-96-SEC Sage knowledge / Education +http://lobid.org/organisations/ZDB-96-SSO#! ZDB-96-SSO ZDB-96-SSO Sage knowledge / Sociology +http://lobid.org/organisations/ZDB-102-AFS#! ZDB-102-AFS ZDB-102-AFS American Film Scripts +http://lobid.org/organisations/ZDB-102-AHV#! ZDB-102-AHV ZDB-102-AHV American History in Video +http://lobid.org/organisations/ZDB-102-RRP#! ZDB-102-RRP ZDB-102-RRP Romanticism Redefined: Pickering & Chatto and The Wordsworth Circle +http://lobid.org/organisations/ZDB-102-UIC#! ZDB-102-UIC ZDB-102-UIC Underground and Independent Comics, Comix, and Graphic Novels +http://lobid.org/organisations/ZDB-7-TFC#! ZDB-7-TFC ZDB-7-TFC Taylor & Francis eBooks / Complete +http://lobid.org/organisations/ZDB-7-SPL#! ZDB-7-SPL ZDB-7-SPL Taylor & Francis eBooks / Sports and Leisure +http://lobid.org/organisations/ZDB-7-SSC#! ZDB-7-SSC ZDB-7-SSC Taylor & Francis eBooks / Social Sciences +http://lobid.org/organisations/ZDB-7-MHS#! ZDB-7-MHS ZDB-7-MHS Taylor & Francis eBooks / Museum and Heritage Studies +http://lobid.org/organisations/ZDB-7-HUM#! ZDB-7-HUM ZDB-7-HUM Taylor & Francis eBooks / Humanities +http://lobid.org/organisations/ZDB-7-ENT#! ZDB-7-ENT ZDB-7-ENT Taylor & Francis eBooks / Engineering & Technology +http://lobid.org/organisations/ZDB-7-DEV#! ZDB-7-DEV ZDB-7-DEV Taylor & Francis eBooks / Development Studies +http://lobid.org/organisations/ZDB-7-BEN#! ZDB-7-BEN ZDB-7-BEN Taylor & Francis eBooks / Built Environment +http://lobid.org/organisations/ZDB-7-TAR#! ZDB-7-TAR ZDB-7-TAR Taylor & Francis eBooks / Arts +http://lobid.org/organisations/ZDB-7-GEO#! ZDB-7-GEO ZDB-7-GEO Taylor & Francis eBooks / Geography +http://lobid.org/organisations/ZDB-23-DKA#! ZDB-23-DKA ZDB-23-DKA De Gruyter eBook-Paket Kunst, Architektur und Design +http://lobid.org/organisations/ZDB-116-KKJ#! ZDB-116-KKJ ZDB-116-KKJ Klett-Cotta / Kinder und Jugendliche +http://lobid.org/organisations/ZDB-88-JMA#! ZDB-88-JMA ZDB-88-JMA juris PartnerModul Arbeitsrecht +http://lobid.org/organisations/ZDB-88-UMR#! ZDB-88-UMR ZDB-88-UMR juris PartnerModul Umweltrecht +http://lobid.org/organisations/ZDB-88-GRP#! ZDB-88-GRP ZDB-88-GRP OVS Modul Gesellschaftsrecht Premium powered by juris +http://lobid.org/organisations/ZDB-88-BKR#! ZDB-88-BKR ZDB-88-BKR OVS Modul Bank- und Kapitalmarktrecht powered by juris +http://lobid.org/organisations/ZDB-117-AKZ#! ZDB-117-AKZ ZDB-117-AKZ V&R eLibrary / Arbeiten zur kirchlichen Zeitgeschichte +http://lobid.org/organisations/ZDB-117-GAN#! ZDB-117-GAN ZDB-117-GAN V&R eLibrary / Grundrisse zum Alten und zum Neuen Testament +http://lobid.org/organisations/ZDB-117-KKR#! ZDB-117-KKR ZDB-117-KKR V&R eLibrary / Kirche-Konfession-Religion +http://lobid.org/organisations/ZDB-117-KSG#! ZDB-117-KSG ZDB-117-KSG V&R eLibrary / Kritische Studien zur Geschichtswissenschaft +http://lobid.org/organisations/ZDB-117-NSP#! ZDB-117-NSP ZDB-117-NSP V&R eLibrary / Neue Studien zur Philosophie +http://lobid.org/organisations/ZDB-117-NTD#! ZDB-117-NTD ZDB-117-NTD V&R eLibrary / Neues Testament Deutsch - Zweite Neubearbeitung +http://lobid.org/organisations/ZDB-117-RCR#! ZDB-117-RCR ZDB-117-RCR V&R eLibrary / Research in Contemporary Religion +http://lobid.org/organisations/ZDB-117-SAD#! ZDB-117-SAD ZDB-117-SAD V&R eLibrary / Studien zum Althochdeutschen +http://lobid.org/organisations/ZDB-35-WCG#! ZDB-35-WCG ZDB-35-WCG Wiley Collection Ecology +http://lobid.org/organisations/ZDB-35-WCI#! ZDB-35-WCI ZDB-35-WCI Wiley Collection Electrical & Electronics Engineering +http://lobid.org/organisations/ZDB-35-WCO#! ZDB-35-WCO ZDB-35-WCO Wiley Collection Mechanical Engineering +http://lobid.org/organisations/ZDB-35-WCQ#! ZDB-35-WCQ ZDB-35-WCQ Wiley Collection Nanotechnology +http://lobid.org/organisations/ZDB-35-WCR#! ZDB-35-WCR ZDB-35-WCR Wiley Collection Organic Chemistry & Catalysis +http://lobid.org/organisations/ZDB-1-AFU#! ZDB-1-AFU ZDB-1-AFU Hoppenstedt-Aktienführer [Nationallizenz] +http://lobid.org/organisations/ZDB-41-SGM#! ZDB-41-SGM ZDB-41-SGM scholars-e-library / Germanistik +http://lobid.org/organisations/ZDB-41-SPW#! ZDB-41-SPW ZDB-41-SPW scholars-e-library / Pädagogik/ Bildungswesen +http://lobid.org/organisations/ZDB-41-SPG#! ZDB-41-SPG ZDB-41-SPG scholars-e-library / Pädagogik/ Genderforschung +http://lobid.org/organisations/ZDB-41-SOM#! ZDB-41-SOM ZDB-41-SOM scholars-e-library / Romanistik +http://lobid.org/organisations/ZDB-41-SSR#! ZDB-41-SSR ZDB-41-SSR scholars-e-library / Sprachwissenschaft +http://lobid.org/organisations/ZDB-84-KHE#! ZDB-84-KHE ZDB-84-KHE Kohlhammer Medizin / Kinder- und Jugendpsychiatrie, Psychotherapie +http://lobid.org/organisations/ZDB-107-WEF#! ZDB-107-WEF ZDB-107-WEF scholars-e-library / Europäische Ethnologie / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WEG#! ZDB-107-WEG ZDB-107-WEG scholars-e-library / Geschichte / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WKU#! ZDB-107-WKU ZDB-107-WKU scholars-e-library / Kunst / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WLI#! ZDB-107-WLI ZDB-107-WLI scholars-e-library / Linguistik / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WSP#! ZDB-107-WSP ZDB-107-WSP scholars-e-library / Sozialpädagogik / Backlist Waxmann +http://lobid.org/organisations/ZDB-116-KFR#! ZDB-116-KFR ZDB-116-KFR Klett-Cotta / Fachratgeber +http://lobid.org/organisations/ZDB-85-LDN#! ZDB-85-LDN ZDB-85-LDN Linde-Verlag Finanzen und Rechnungswesen / Rechtsgebiet AT +http://lobid.org/organisations/ZDB-122-SPV#! ZDB-122-SPV ZDB-122-SPV SP.datenbanken +http://lobid.org/organisations/ZDB-125-TEK#! ZDB-125-TEK ZDB-125-TEK scholars-e-library / Ethnologie und Kulturanthropologie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKS#! ZDB-125-TKS ZDB-125-TKS scholars-e-library / Kultur- und Sozialgeschichte / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKM#! ZDB-125-TKM ZDB-125-TKM scholars-e-library / Kulturmanagement / Backlist transcript +http://lobid.org/organisations/ZDB-125-TAG#! ZDB-125-TAG ZDB-125-TAG scholars-e-library / Aging - Disability - Fashion - Human-Animal - Postcolonial Studies / Backlist transcript +http://lobid.org/organisations/ZDB-126-OER#! ZDB-126-OER ZDB-126-OER oekom verlag / Energie & Ressourcen +http://lobid.org/organisations/ZDB-126-OKE#! ZDB-126-OKE ZDB-126-OKE oekom verlag / Konsum & Ernährung +http://lobid.org/organisations/ZDB-126-OTR#! ZDB-126-OTR ZDB-126-OTR oekom verlag / Transformationsdesign +http://lobid.org/organisations/ZDB-126-OUN#! ZDB-126-OUN ZDB-126-OUN oekom verlag / Umwelt- & Nachhaltigkeitsforschung +http://lobid.org/organisations/ZDB-121-UGB#! ZDB-121-UGB ZDB-121-UGB Ulmer E-Books / Gartenbau +http://lobid.org/organisations/ZDB-121-ULF#! ZDB-121-ULF ZDB-121-ULF Ulmer E-Books / Landwirtschaft/ Forst/ Jagd +http://lobid.org/organisations/ZDB-128-VKC#! ZDB-128-VKC ZDB-128-VKC Beck eLibrary / Vahlen Kostenrechnung und Controlling +http://lobid.org/organisations/ZDB-128-VMH#! ZDB-128-VMH ZDB-128-VMH Beck eLibrary / Vahlen Marketing und Handel +http://lobid.org/organisations/ZDB-128-VPM#! ZDB-128-VPM ZDB-128-VPM Beck eLibrary / Vahlen Personalmanagement +http://lobid.org/organisations/ZDB-105-MC2#! ZDB-105-MC2 ZDB-105-MC2 Morgan & Claypool: Computer & Information Science Collections / CIS collection two +http://lobid.org/organisations/ZDB-105-MC7#! ZDB-105-MC7 ZDB-105-MC7 Morgan & Claypool: Computer & Information Science Collections / CIS collection seven +http://lobid.org/organisations/ZDB-130-BEB#! ZDB-130-BEB ZDB-130-BEB scholars-e-library / Pädagogik/ Erwachsenenbildung Praktiker / Backlist wbv +http://lobid.org/organisations/ZDB-33-ESD#! ZDB-33-ESD ZDB-33-ESD Elsevier Online Books on ScienceDirect +http://lobid.org/organisations/ZDB-128-VEL#! ZDB-128-VEL ZDB-128-VEL Beck eLibrary (früher: Vahlen eLibrary) +http://lobid.org/organisations/ZDB-18-NJG#! ZDB-18-NJG ZDB-18-NJG Nomos eLibrary / Studienliteratur Jura Grundlagen +http://lobid.org/organisations/ZDB-23-BBF#! ZDB-23-BBF ZDB-23-BBF Birkhäuser eBook-Paket / Bauwelt Fundamente +http://lobid.org/organisations/ZDB-133-HGM#! ZDB-133-HGM ZDB-133-HGM Hirzel eLibrary / Germanistik +http://lobid.org/organisations/ZDB-23-OAT#! ZDB-23-OAT ZDB-23-OAT eBook-Paket Oldenbourg-Akademie / Altertum +http://lobid.org/organisations/ZDB-23-DCM#! ZDB-23-DCM ZDB-23-DCM De Gruyter eBook-Paket Chemie, Materialwissenschaften, Biologie, Geowissenschaften +http://lobid.org/organisations/ZDB-23-DLW#! ZDB-23-DLW ZDB-23-DLW De Gruyter eBook-Paket Literaturwissenschaft +http://lobid.org/organisations/ZDB-25-KSE#! ZDB-25-KSE ZDB-25-KSE Karger eBook Series Collection +http://lobid.org/organisations/ZDB-136-PUR#! ZDB-136-PUR ZDB-136-PUR Suhrkamp / Philosophie und Religion +http://lobid.org/organisations/ZDB-137-MGW#! ZDB-137-MGW ZDB-137-MGW medhochzwei Onlinebibliothek - Medien für das Gesundheitswesen +http://lobid.org/organisations/ZDB-4-EBA#! ZDB-4-EBA ZDB-4-EBA EBSCO eBook Academic Collection +http://lobid.org/organisations/ZDB-47-ESW#! ZDB-47-ESW ZDB-47-ESW Erich Schmidt Verlag E-Books / Wirtschaft +http://lobid.org/organisations/ZDB-132-VMK#! ZDB-132-VMK ZDB-132-VMK Vogel Business Media / Maschinenbau, Konstruktion +http://lobid.org/organisations/ZDB-23-HAA#! ZDB-23-HAA ZDB-23-HAA Harvard University Press e-dition / Art & Architecture eBook Package +http://lobid.org/organisations/ZDB-135-IEP#! ZDB-135-IEP ZDB-135-IEP IOP ebooks / Expanding physics +http://lobid.org/organisations/ZDB-117-HBI#! ZDB-117-HBI ZDB-117-HBI V&R eLibrary / Hebrew Bible +http://lobid.org/organisations/ZDB-109-LST#! ZDB-109-LST ZDB-109-LST Lambertus / Studium und Theorie der Sozialen Arbeit +http://lobid.org/organisations/ZDB-107-WAE#! ZDB-107-WAE ZDB-107-WAE scholars-e-library / Allgemeine Erziehungswissenschaften / Backlist Waxmann +http://lobid.org/organisations/ZDB-23-DKU#! ZDB-23-DKU ZDB-23-DKU De Gruyter eBook-Paket Literatur- und Kulturwissenschaft, Area Studies +http://lobid.org/organisations/ZDB-117-IDP#! ZDB-117-IDP ZDB-117-IDP V&R eLibrary / Individualpsychologie +http://lobid.org/organisations/ZDB-141-MKG#! ZDB-141-MKG ZDB-141-MKG MWV Verlag / Krankenhaus, Gesundheitsmanagement +http://lobid.org/organisations/ZDB-23-BBN#! ZDB-23-BBN ZDB-23-BBN Böhlau e-dition : Best of Neuzeit / Modern History +http://lobid.org/organisations/ZDB-23-BBT#! ZDB-23-BBT ZDB-23-BBT Böhlau e-dition : Best of Musik & Theater / Music & Drama +http://lobid.org/organisations/ZDB-23-BBM#! ZDB-23-BBM ZDB-23-BBM Böhlau e-dition : Best of Mittelalter / Medieval History +http://lobid.org/organisations/ZDB-23-BBL#! ZDB-23-BBL ZDB-23-BBL Böhlau e-dition : Best of Literaturwissenschaft / Literature +http://lobid.org/organisations/ZDB-141-MAN#! ZDB-141-MAN ZDB-141-MAN MWV Verlag / Anästhesie/Intensiv-/Notfall-/Schmerzmedizin +http://lobid.org/organisations/ZDB-41-SOR#! ZDB-41-SOR ZDB-41-SOR scholars-e-library / Recht/ Österreichisches Recht +http://lobid.org/organisations/ZDB-117-PUS#! ZDB-117-PUS ZDB-117-PUS V&R eLibrary / Psychologie und Systemik +http://lobid.org/organisations/ZDB-130-BBW#! ZDB-130-BBW ZDB-130-BBW scholars-e-library / Pädagogik/ Berufs- und Wirtschaftspädagogik / Backlist wbv +http://lobid.org/organisations/ZDB-16-HEA#! ZDB-16-HEA ZDB-16-HEA Hanser eLibrary / Backlist +http://lobid.org/organisations/ZDB-84-KHN#! ZDB-84-KHN ZDB-84-KHN Kohlhammer Strafrecht +http://lobid.org/organisations/ZDB-23-DBA#! ZDB-23-DBA ZDB-23-DBA De Gruyter e-dition 2: Best of Classical Studies +http://lobid.org/organisations/ZDB-23-DBG#! ZDB-23-DBG ZDB-23-DBG De Gruyter e-dition 2: Best of Library & Information Science +http://lobid.org/organisations/ZDB-142-WKP#! ZDB-142-WKP ZDB-142-WKP WBG / Klassische Philologie +http://lobid.org/organisations/ZDB-18-BLB#! ZDB-18-BLB ZDB-18-BLB Beck eLibrary / C.H. Beck LSW Literatur, Kunst, Musik +http://lobid.org/organisations/ZDB-18-BLG#! ZDB-18-BLG ZDB-18-BLG Beck eLibrary / C.H. Beck Politik, Wirtschaft und Gesellschaft +http://lobid.org/organisations/ZDB-2-MGE#! ZDB-2-MGE ZDB-2-MGE Springer ebook collection / J.B. Metzler Geisteswissenschaften +http://lobid.org/organisations/ZDB-144-PLP#! ZDB-144-PLP ZDB-144-PLP Psychiatrie Verlag / Lehrbuch/Fachwissen Psychiatrie +http://lobid.org/organisations/ZDB-71-NVG#! ZDB-71-NVG ZDB-71-NVG Narr Verlag E-Books / Germanistik +http://lobid.org/organisations/ZDB-71-NVR#! ZDB-71-NVR ZDB-71-NVR Narr Verlag E-Books / Romanistik +http://lobid.org/organisations/ZDB-2-PHC#! ZDB-2-PHC ZDB-2-PHC Springer ebook collection / Palgrave History Collection +http://lobid.org/organisations/ZDB-2-PID#! ZDB-2-PID ZDB-2-PID Springer ebook collection / Palgrave Intern. Relations & Development Collection +http://lobid.org/organisations/ZDB-2-SYA#! ZDB-2-SYA ZDB-2-SYA Springer ebook collection / The Statesman’s Yearbook Archive +http://lobid.org/organisations/ZDB-2-PRE#! ZDB-2-PRE ZDB-2-PRE Springer ebook collection / Palgrave Religion & Philosophy Collection +http://lobid.org/organisations/ZDB-2-PSD#! ZDB-2-PSD ZDB-2-PSD Springer ebook collection / Palgrave Social & Cultural Studies Collection +http://lobid.org/organisations/ZDB-2-TNP#! ZDB-2-TNP ZDB-2-TNP Springer ebook collection / The New Palgrave: A Dictionary of Economics +http://lobid.org/organisations/ZDB-59-BTZ#! ZDB-59-BTZ ZDB-59-BTZ Beltz E-Books +http://lobid.org/organisations/ZDB-117-SST#! ZDB-117-SST ZDB-117-SST V&R eLibrary / Studium Systematische Theologie (StST) +http://lobid.org/organisations/ZDB-18-NST#! ZDB-18-NST ZDB-18-NST Nomos eLibrary / Soziale Arbeit, Sozialwirtschaft +http://lobid.org/organisations/ZDB-142-WGW#! ZDB-142-WGW ZDB-142-WGW WBG / Geowissenschaften +http://lobid.org/organisations/ZDB-6-UHE#! ZDB-6-UHE ZDB-6-UHE UPCC Book Collection on Project MUSE / Higher Education Collection +http://lobid.org/organisations/ZDB-1-IZVA#! ZDB-1-IZVA ZDB-1-IZVA Izvestija Digital Archive 1917 - 1991 [Nationallizenz] +http://lobid.org/organisations/ZDB-28-OCP#! ZDB-28-OCP ZDB-28-OCP Oxford Clinical Psychology +http://lobid.org/organisations/ZDB-5-WSC#! ZDB-5-WSC ZDB-5-WSC wiso Schlütersche Pflege +http://lobid.org/organisations/ZDB-38-ESG#! ZDB-38-ESG ZDB-38-ESG ebrary subject collection / Science & Technology +http://lobid.org/organisations/ZDB-117-RPA#! ZDB-117-RPA ZDB-117-RPA V&R eLibrary / Religionspädagogik +http://lobid.org/organisations/ZDB-18-NEP#! ZDB-18-NEP ZDB-18-NEP Nomos eLibrary / Europapolitik +http://lobid.org/organisations/ZDB-136-PUG#! ZDB-136-PUG ZDB-136-PUG Suhrkamp / Politik & Gesellschaft +http://lobid.org/organisations/ZDB-18-BSR#! ZDB-18-BSR ZDB-18-BSR beck-online / Sozialrecht PREMIUM +http://lobid.org/organisations/ZDB-1-OJP#! ZDB-1-OJP ZDB-1-OJP Oxford Journals Digital Archive / Maths & Physical Sciences Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-OJI#! ZDB-1-OJI ZDB-1-OJI Oxford Journals Digital Archive / Life Sciences Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-84-KGW#! ZDB-84-KGW ZDB-84-KGW Kohlhammer Grundlagen Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-2-COE#! ZDB-2-COE ZDB-2-COE Springer Compact Austria +http://lobid.org/organisations/ZDB-117-VRE#! ZDB-117-VRE ZDB-117-VRE V&R eLibrary / EBooks +http://lobid.org/organisations/ZDB-121-UHU#! ZDB-121-UHU ZDB-121-UHU Ulmer E-Books / Hundehaltung +http://lobid.org/organisations/ZDB-77-EEC#! ZDB-77-EEC ZDB-77-EEC Edward Elgar Ebook Collection +http://lobid.org/organisations/ZDB-18-BSG#! ZDB-18-BSG ZDB-18-BSG beck-online / Steuerrecht Grundmodul +http://lobid.org/organisations/ZDB-158-VGT#! ZDB-158-VGT ZDB-158-VGT VDE Verlag EBooks / Das Gebäude +http://lobid.org/organisations/ZDB-88-HHS#! ZDB-88-HHS ZDB-88-HHS OVS Modul HHSp-Online powered by juris +http://lobid.org/organisations/ZDB-142-WPG#! ZDB-142-WPG ZDB-142-WPG WBG / Philosophie - Grundlagen und aktuelle Themen +http://lobid.org/organisations/ZDB-84-KTP#! ZDB-84-KTP ZDB-84-KTP Kohlhammer Theologie, Philosophie, Kulturwissenschaft +http://lobid.org/organisations/ZDB-136-SKI#! ZDB-136-SKI ZDB-136-SKI Suhrkamp / Philosophie +http://lobid.org/organisations/ZDB-5-WST#! ZDB-5-WST ZDB-5-WST wiso Statistiken +http://lobid.org/organisations/ZDB-95-BOD#! ZDB-95-BOD ZDB-95-BOD Brill Online / Dictionaries +http://lobid.org/organisations/ZDB-18-BLJ#! ZDB-18-BLJ ZDB-18-BLJ Beck eLibrary / C.H. Beck Reformation +http://lobid.org/organisations/ZDB-159-ELB#! ZDB-159-ELB ZDB-159-ELB SciFo / Elektrische Bahnen +http://lobid.org/organisations/ZDB-159-GET#! ZDB-159-GET ZDB-159-GET SciFo / Gebäudetechnik +http://lobid.org/organisations/ZDB-159-TPT#! ZDB-159-TPT ZDB-159-TPT SciFo / Thermoprozesstechnik +http://lobid.org/organisations/ZDB-109-LSB#! ZDB-109-LSB ZDB-109-LSB Lambertus / eJournals zur Sozialen Arbeit +http://lobid.org/organisations/ZDB-2-LNI#! ZDB-2-LNI ZDB-2-LNI Springer Lecture Notes in Control and Information Sciences +http://lobid.org/organisations/ZDB-157-HFG#! ZDB-157-HFG ZDB-157-HFG Herder / Frühpädagogik, Grundlagen +http://lobid.org/organisations/ZDB-157-HFR#! ZDB-157-HFR ZDB-157-HFR Herder / Frühpädagogik, Recht und Qualität +http://lobid.org/organisations/ZDB-142-WPT#! ZDB-142-WPT ZDB-142-WPT WBG / Praktische Theologie +http://lobid.org/organisations/ZDB-162-BFM#! ZDB-162-BFM ZDB-162-BFM Bloomsbury Collections / Film & Media Studies +http://lobid.org/organisations/ZDB-1-IGE#! ZDB-1-IGE ZDB-1-IGE IGI Global IS&T E-Books [Nationalkonsortium] +http://lobid.org/organisations/ZDB-138-AMU#! ZDB-138-AMU ZDB-138-AMU AMS ebooks / University Lecture Series +http://lobid.org/organisations/ZDB-169-VWI#! ZDB-169-VWI ZDB-169-VWI Velbrück Wissenschaft +http://lobid.org/organisations/ZDB-5-WVB#! ZDB-5-WVB ZDB-5-WVB wiso Videos Business (Lecturio) +http://lobid.org/organisations/ZDB-1-EIV#! ZDB-1-EIV ZDB-1-EIV Education in Video: Volumes I + II [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-157-HST#! ZDB-157-HST ZDB-157-HST Herder / Systematische Theologie +http://lobid.org/organisations/ZDB-142-WZG#! ZDB-142-WZG ZDB-142-WZG WBG / Geschichte - Zeitgeschichte +http://lobid.org/organisations/ZDB-157-HQD#! ZDB-157-HQD ZDB-157-HQD Herder / Quaestiones disputatae +http://lobid.org/organisations/ZDB-171-LMS#! ZDB-171-LMS ZDB-171-LMS Logos / Maschinenbau +http://lobid.org/organisations/ZDB-171-LVE#! ZDB-171-LVE ZDB-171-LVE Logos / Strafrecht +http://lobid.org/organisations/ZDB-173-HBB#! ZDB-173-HBB ZDB-173-HBB Haufe Lexware / Buchführung, Bilanz, Steuern +http://lobid.org/organisations/ZDB-173-HMV#! ZDB-173-HMV ZDB-173-HMV Haufe Lexware / Marketing, Vertrieb, Handel +http://lobid.org/organisations/ZDB-173-HUN#! ZDB-173-HUN ZDB-173-HUN Haufe Lexware / Unternehmensführung, Organisation, Management +http://lobid.org/organisations/ZDB-172-SGN#! ZDB-172-SGN ZDB-172-SGN Schlütersche / Groß- & Nutztier +http://lobid.org/organisations/ZDB-172-SPF#! ZDB-172-SPF ZDB-172-SPF Schlütersche / Pflegepraxis +http://lobid.org/organisations/ZDB-23-FJR#! ZDB-23-FJR ZDB-23-FJR De Gruyter eBook-Paket 500 Jahre Reformation +http://lobid.org/organisations/ZDB-96-SC1#! ZDB-96-SC1 ZDB-96-SC1 Sage Research Methods / Cases 1 +http://lobid.org/organisations/ZDB-18-BRB#! ZDB-18-BRB ZDB-18-BRB beck-online / Rahmenvertrag Bund +http://lobid.org/organisations/ZDB-129-JBC#! ZDB-129-JBC ZDB-129-JBC John Benjamins / Communication studies +http://lobid.org/organisations/ZDB-135-IAS#! ZDB-135-IAS ZDB-135-IAS IOP ebooks / AAS-IOP Astronomy +http://lobid.org/organisations/ZDB-178-HBF#! ZDB-178-HBF ZDB-178-HBF hep / Berufliche Bildung +http://lobid.org/organisations/ZDB-178-HBP#! ZDB-178-HBP ZDB-178-HBP hep / Bildungsforschung & -politik +http://lobid.org/organisations/ZDB-178-HWBDA#! ZDB-178-HWBDA ZDB-178-HWBDA hep / Erwachsenen-/Weiterbildung (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HUPDA#! ZDB-178-HUPDA ZDB-178-HUPDA hep / Unterrichtspraxis (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-179-WBV#! ZDB-179-WBV ZDB-179-WBV Walhalla / Betreuungsrecht, Verfahrenspflegschaft +http://lobid.org/organisations/ZDB-179-WIM#! ZDB-179-WIM ZDB-179-WIM Walhalla / Immobilienrecht +http://lobid.org/organisations/ZDB-179-WKB#! ZDB-179-WKB ZDB-179-WKB Walhalla / Berufseinstieg und Karriere +http://lobid.org/organisations/ZDB-179-WSZ#! ZDB-179-WSZ ZDB-179-WSZ Walhalla / Sozialmanagement +http://lobid.org/organisations/ZDB-179-WZA#! ZDB-179-WZA ZDB-179-WZA Walhalla / Soziale Arbeit +http://lobid.org/organisations/ZDB-1-UP12#! ZDB-1-UP12 ZDB-1-UP12 Ukraine Parliamentary Election 2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EPU#! ZDB-1-EPU ZDB-1-EPU Euromaidan Protests in Ukraine 2013-2014 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-10-ACE#! ZDB-10-ACE ZDB-10-ACE Knovel Adhesive, Coatings, Sealants & Inks +http://lobid.org/organisations/ZDB-10-CCM#! ZDB-10-CCM ZDB-10-CCM Knovel Civil Engineering & Construction Materials +http://lobid.org/organisations/ZDB-1-TFE#! ZDB-1-TFE ZDB-1-TFE Taylor & Francis E-Journals - FID Pharmazie [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ECA#! ZDB-1-ECA ZDB-1-ECA Editio Cantor E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-181-TWW#! ZDB-181-TWW ZDB-181-TWW Tectum eLibrary / Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-1-IEC#! ZDB-1-IEC ZDB-1-IEC Intered Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-181-TEC#! ZDB-181-TEC ZDB-181-TEC Tectum eLibrary +http://lobid.org/organisations/ZDB-182-HSF#! ZDB-182-HSF ZDB-182-HSF Hueber / Sprachpaket Französisch +http://lobid.org/organisations/ZDB-138-AMD#! ZDB-138-AMD ZDB-138-AMD AMS ebooks / Fields Institute Communications +http://lobid.org/organisations/ZDB-138-AME#! ZDB-138-AME ZDB-138-AME AMS ebooks / AMS Chelsea Publishing +http://lobid.org/organisations/ZDB-105-MC10#! ZDB-105-MC10 ZDB-105-MC10 Morgan & Claypool: Computer & Information Science Collections / CIS collection ten +http://lobid.org/organisations/ZDB-1-MSA#! ZDB-1-MSA ZDB-1-MSA Oxford University Press : Minnesota Scholarship Online / Art [FID-Lizenz] +http://lobid.org/organisations/ZDB-162-BAN#! ZDB-162-BAN ZDB-162-BAN Bloomsbury Collections / Anthropology +http://lobid.org/organisations/ZDB-28-MPM#! ZDB-28-MPM ZDB-28-MPM MIT Press Scholarship Online / Mathematics +http://lobid.org/organisations/ZDB-28-MSM#! ZDB-28-MSM ZDB-28-MSM Minnesota Scholarship Online / Music +http://lobid.org/organisations/ZDB-28-MMU#! ZDB-28-MMU ZDB-28-MMU Mississippi Scholarship Online / Music +http://lobid.org/organisations/ZDB-1-TLG#! ZDB-1-TLG ZDB-1-TLG TradeLawGuide [FID-Lizenz] +http://lobid.org/organisations/ZDB-34-CNE#! ZDB-34-CNE ZDB-34-CNE Thieme CNE +http://lobid.org/organisations/ZDB-181-TRW#! ZDB-181-TRW ZDB-181-TRW Tectum eLibrary / Rechtswissenschaften +http://lobid.org/organisations/ZDB-1-FSA#! ZDB-1-FSA ZDB-1-FSA Oxford University Press : Florida Scholarship Online / Archaeology [FID-Lizenz] +http://lobid.org/organisations/ZDB-95-HRH#! ZDB-95-HRH ZDB-95-HRH Brill / Human Rights and Humanitarian Law E-Books Online +http://lobid.org/organisations/ZDB-1-MPC#! ZDB-1-MPC ZDB-1-MPC Project MUSE Premium Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UMC#! ZDB-1-UMC ZDB-1-UMC University Press Scholarship Online / Music Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NEA#! ZDB-18-NEA ZDB-18-NEA Nomos eLibrary Open Access +http://lobid.org/organisations/ZDB-1-PQC#! ZDB-1-PQC ZDB-1-PQC ProQuest Ebook Central / Classical Studies Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PQH#! ZDB-1-PQH ZDB-1-PQH ProQuest Ebook Central / History Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-84-KSY#! ZDB-84-KSY ZDB-84-KSY Kohlhammer Theologie I: Bibel, Kirchengeschichte, Systematik / Ethik +http://lobid.org/organisations/ZDB-55-THM#! ZDB-55-THM ZDB-55-THM Emerald Tourism & Hospitality Management eJournal Collection +http://lobid.org/organisations/ZDB-55-IKM#! ZDB-55-IKM ZDB-55-IKM Emerald Information & Knowledge Management eJournal Collection +http://lobid.org/organisations/ZDB-41-SPJ#! ZDB-41-SPJ ZDB-41-SPJ scholars-e-library / Pädagogik/ Erwachsenenbildung +http://lobid.org/organisations/ZDB-173-HBWSP#! ZDB-173-HBWSP ZDB-173-HBWSP Haufe Lexware / Allgemeine BWL (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-173-HMVSP#! ZDB-173-HMVSP ZDB-173-HMVSP Haufe Lexware / Marketing, Vertrieb, Handel (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-173-HPFSP#! ZDB-173-HPFSP ZDB-173-HPFSP Haufe Lexware / Personalmanagement, Führung, Karriere (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-59-BSABP#! ZDB-59-BSABP ZDB-59-BSABP Beltz Soziale Arbeit Basis-Paket +http://lobid.org/organisations/ZDB-88-STP#! ZDB-88-STP ZDB-88-STP juris PartnerModul Steuerrecht premium +http://lobid.org/organisations/ZDB-88-IPR#! ZDB-88-IPR ZDB-88-IPR juris Modul Internationales Privatrecht +http://lobid.org/organisations/ZDB-88-JPG#! ZDB-88-JPG ZDB-88-JPG juris PraxisKommentar SGB - Gesamtausgabe +http://lobid.org/organisations/ZDB-187-JKN#! ZDB-187-JKN ZDB-187-JKN Junfermann / Kommunikation / NLP +http://lobid.org/organisations/ZDB-187-JCB#! ZDB-187-JCB ZDB-187-JCB Junfermann / Coaching & Beratung / Soft Skills kompakt +http://lobid.org/organisations/ZDB-187-JSE#! ZDB-187-JSE ZDB-187-JSE Junfermann / Kommunikation / Schule & Erziehung +http://lobid.org/organisations/ZDB-187-JST#! ZDB-187-JST ZDB-187-JST Junfermann / Ratgeber II / Störungen +http://lobid.org/organisations/ZDB-1-BP16#! ZDB-1-BP16 ZDB-1-BP16 Belarus Parliamentary Election 2016 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CFD#! ZDB-1-CFD ZDB-1-CFD The Chernobyl Collection. Documents and Maps [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-189-HJR#! ZDB-189-HJR ZDB-189-HJR hjr-Verlag E-Books +http://lobid.org/organisations/ZDB-129-JBO#! ZDB-129-JBO ZDB-129-JBO John Benjamins Open Access Books +http://lobid.org/organisations/ZDB-1-TFB#! ZDB-1-TFB ZDB-1-TFB Taylor & Francis Business Management & Economics Archive - 2000 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-JSSE#! ZDB-1-JSSE ZDB-1-JSSE JSTOR : Security Studies Extension [Nationalkonsortium] +http://lobid.org/organisations/ZDB-88-ZJF#! ZDB-88-ZJF ZDB-88-ZJF juris Zusatzmodul Justiz Familienrecht +http://lobid.org/organisations/ZDB-88-ZMS#! ZDB-88-ZMS ZDB-88-ZMS juris Zusatzmodul Justiz Sozialrecht +http://lobid.org/organisations/ZDB-179-WHA#! ZDB-179-WHA ZDB-179-WHA Walhalla / Hilfe im Alltag +http://lobid.org/organisations/ZDB-1-CAP#! ZDB-1-CAP ZDB-1-CAP China, America and the Pacific [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CTP#! ZDB-1-CTP ZDB-1-CTP China: Trade, Politics & Culture [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FOJ#! ZDB-1-FOJ ZDB-1-FOJ Foreign Office Files for Japan (Module I, II, III) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NPA#! ZDB-18-NPA ZDB-18-NPA Nomos eLibrary / Pädagogik +http://lobid.org/organisations/ZDB-18-NSI#! ZDB-18-NSI ZDB-18-NSI Nomos eLibrary / Sportwissenschaft +http://lobid.org/organisations/ZDB-162-CWT#! ZDB-162-CWT ZDB-162-CWT Bloomsbury Collections / Contemporary Writing, Theory and Culture Archive 2006-2012 +http://lobid.org/organisations/ZDB-162-LCT#! ZDB-162-LCT ZDB-162-LCT Bloomsbury Collections / Literary Criticism Landmark Texts (Bloomsbury Academic Collections series) +http://lobid.org/organisations/ZDB-34-THU#! ZDB-34-THU ZDB-34-THU Thieme eRef / Urologie +http://lobid.org/organisations/ZDB-34-THL#! ZDB-34-THL ZDB-34-THL Thieme eRef / Lehrbücher +http://lobid.org/organisations/ZDB-102-MUC#! ZDB-102-MUC ZDB-102-MUC Music Online / Classical Scores Library +http://lobid.org/organisations/ZDB-1-NGP#! ZDB-1-NGP ZDB-1-NGP Nomos eLibrary / edition sigma Politikwissenschaft [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-JIB#! ZDB-1-JIB ZDB-1-JIB JSTOR : Iberoamérica Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-PLM#! ZDB-1-PLM ZDB-1-PLM Peter Lang Monographien aus 12 Schriftenreihen 1976 - 2017 [Nationallizenz / Open Access] +http://lobid.org/organisations/ZDB-20-CTM#! ZDB-20-CTM ZDB-20-CTM Cambridge Books Online / Science, Technology & Medicine +http://lobid.org/organisations/ZDB-1-LYCN#! ZDB-1-LYCN ZDB-1-LYCN Lyell Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-128-VGW#! ZDB-128-VGW ZDB-128-VGW Beck eLibrary / Vahlen Gesamtpaket Wirtschaft +http://lobid.org/organisations/ZDB-128-BJZ1#! ZDB-128-BJZ1 ZDB-128-BJZ1 Beck eLibrary / C.H. Beck Jura Zivilrecht I +http://lobid.org/organisations/ZDB-128-UST#! ZDB-128-UST ZDB-128-UST Beck eLibrary / UVK Richtig studieren +http://lobid.org/organisations/ZDB-4-ITC#! ZDB-4-ITC ZDB-4-ITC EBSCO eBook ITCore Collection +http://lobid.org/organisations/ZDB-195-MAA#! ZDB-195-MAA ZDB-195-MAA Al Manhal eBook collections / Art and Architecture +http://lobid.org/organisations/ZDB-195-MLL#! ZDB-195-MLL ZDB-195-MLL Al Manhal eBook collections / Language & Literature +http://lobid.org/organisations/ZDB-18-BVE#! ZDB-18-BVE ZDB-18-BVE beck-online / Verrechnungspreise plus +http://lobid.org/organisations/ZDB-196-MEL#! ZDB-196-MEL ZDB-196-MEL Meiner eLibrary +http://lobid.org/organisations/ZDB-23-GLC#! ZDB-23-GLC ZDB-23-GLC De Gruyter Book Archive / Literary and Cultural Studies +http://lobid.org/organisations/ZDB-28-OEO#! ZDB-28-OEO ZDB-28-OEO Oxford Scholarly Editions Online +http://lobid.org/organisations/ZDB-23-GHI#! ZDB-23-GHI ZDB-23-GHI De Gruyter Book Archive / History +http://lobid.org/organisations/ZDB-23-GBE#! ZDB-23-GBE ZDB-23-GBE De Gruyter Book Archive / Business and Economics +http://lobid.org/organisations/ZDB-23-GML#! ZDB-23-GML ZDB-23-GML De Gruyter Book Archive / Medicine and Life Sciences +http://lobid.org/organisations/ZDB-23-GTR#! ZDB-23-GTR ZDB-23-GTR De Gruyter Book Archive / Theology and Religious Studies +http://lobid.org/organisations/ZDB-197-MSR#! ZDB-197-MSR ZDB-197-MSR Mohr Siebeck / Theologie/Religionswissenschaft +http://lobid.org/organisations/ZDB-1-NOLG#! ZDB-1-NOLG ZDB-1-NOLG Nomos eLibrary / Gesamt 2017-2020 [Nationallizenz] +http://lobid.org/organisations/ZDB-5-WPR#! ZDB-5-WPR ZDB-5-WPR wiso Presse +http://lobid.org/organisations/ZDB-5-WSL#! ZDB-5-WSL ZDB-5-WSL wiso Schlütersche Technik +http://lobid.org/organisations/ZDB-201-MSI#! ZDB-201-MSI ZDB-201-MSI manchesterhive / Manchester Studies in Imperialism +http://lobid.org/organisations/ZDB-202-PSP#! ZDB-202-PSP ZDB-202-PSP Psychosozial-Verlag / Psychologie +http://lobid.org/organisations/ZDB-202-PVP#! ZDB-202-PVP ZDB-202-PVP Psychosozial-Verlag / Pädagogik +http://lobid.org/organisations/ZDB-1-SCI#! ZDB-1-SCI ZDB-1-SCI Soviet Cinema Online : Archival Documents from RGALI, 1923-1935 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UKP#! ZDB-1-UKP ZDB-1-UKP Ukrainian Publications (UDB-UKR) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-9-NCT#! ZDB-9-NCT ZDB-9-NCT Nineteenth Century Collections Online: British Theatre, Music, and Literature: High and Popular Culture +http://lobid.org/organisations/ZDB-10-EML#! ZDB-10-EML ZDB-10-EML Knovel Engineering Management & Leadership +http://lobid.org/organisations/ZDB-10-OPP#! ZDB-10-OPP ZDB-10-OPP Knovel Optics & Photonics +http://lobid.org/organisations/ZDB-10-KWE#! ZDB-10-KWE ZDB-10-KWE Knovel Welding Engineering & Materials Joining +http://lobid.org/organisations/ZDB-18-BVS#! ZDB-18-BVS ZDB-18-BVS beck-online / Versicherungsrecht PREMIUM +http://lobid.org/organisations/ZDB-102-DAO#! ZDB-102-DAO ZDB-102-DAO Dance Online: Dance in Video +http://lobid.org/organisations/ZDB-1-RUI#! ZDB-1-RUI ZDB-1-RUI Russian Islamic Studies (UDB-ISL) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-209-ASE#! ZDB-209-ASE ZDB-209-ASE American Society of Civil Engineers / Library +http://lobid.org/organisations/ZDB-1-JLIE#! ZDB-1-JLIE ZDB-1-JLIE JSTOR : Lives of Literature Extension [Nationalkonsortium] +http://lobid.org/organisations/ZDB-117-VMU#! ZDB-117-VMU ZDB-117-VMU V&R eLibrary / Musikwissenschaften +http://lobid.org/organisations/ZDB-117-NAP#! ZDB-117-NAP ZDB-117-NAP V&R eLibrary / Nationalismus und Politik +http://lobid.org/organisations/ZDB-33-EUF#! ZDB-33-EUF ZDB-33-EUF Elsevier / Urban & Fischer +http://lobid.org/organisations/ZDB-211-BRE#! ZDB-211-BRE ZDB-211-BRE BrepolsOnline Books +http://lobid.org/organisations/ZDB-211-BRM#! ZDB-211-BRM ZDB-211-BRM BrepolsOnline Books / Brepols Miscellanea Online - Essays in Medieval Studies +http://lobid.org/organisations/ZDB-212-VOE#! ZDB-212-VOE ZDB-212-VOE Verlag Österreich eLibrary +http://lobid.org/organisations/ZDB-18-BSX#! ZDB-18-BSX ZDB-18-BSX Beck eLibrary / SPH Personalmanagement +http://lobid.org/organisations/ZDB-162-CLS#! ZDB-162-CLS ZDB-162-CLS Bloomsbury Collections / Classical Studies & Archaeology +http://lobid.org/organisations/ZDB-213-MIF#! ZDB-213-MIF ZDB-213-MIF mitp / Fotografie +http://lobid.org/organisations/ZDB-213-MIP#! ZDB-213-MIP ZDB-213-MIP mitp / Programmierung +http://lobid.org/organisations/ZDB-213-MIW#! ZDB-213-MIW ZDB-213-MIW mitp / Web +http://lobid.org/organisations/ZDB-1-CPO#! ZDB-1-CPO ZDB-1-CPO Copernicus Publications Open Access Zeitschriften [Open Access / Open-Access-Transformationsvertrag] +http://lobid.org/organisations/ZDB-126-OGL#! ZDB-126-OGL ZDB-126-OGL oekom verlag / Gesundheit & Lifestyle +http://lobid.org/organisations/ZDB-157-HSH#! ZDB-157-HSH ZDB-157-HSH Herder / Systematische & Praktische Theologie +http://lobid.org/organisations/ZDB-157-HFK#! ZDB-157-HFK ZDB-157-HFK Herder / Fachwissen Kita Aktuell +http://lobid.org/organisations/ZDB-179-WOV#! ZDB-179-WOV ZDB-179-WOV Walhalla / Öffentliche Verwaltung +http://lobid.org/organisations/ZDB-107-WDI#! ZDB-107-WDI ZDB-107-WDI scholars-e-library / Diversität und Inklusion / Backlist Waxmann +http://lobid.org/organisations/ZDB-142-WMK#! ZDB-142-WMK ZDB-142-WMK WBG / Musik +http://lobid.org/organisations/ZDB-181-ERG#! ZDB-181-ERG ZDB-181-ERG Ergon E-Books +http://lobid.org/organisations/ZDB-1-AFG#! ZDB-1-AFG ZDB-1-AFG Afghan Serials Collection [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-216-WEP#! ZDB-216-WEP ZDB-216-WEP Westend / Politik +http://lobid.org/organisations/ZDB-1-HINF#! ZDB-1-HINF ZDB-1-HINF Historical Newspapers [FID-Lizenz] +http://lobid.org/organisations/ZDB-221-PDA#! ZDB-221-PDA ZDB-221-PDA Packt Data +http://lobid.org/organisations/ZDB-223-RAP#! ZDB-223-RAP ZDB-223-RAP RAP E-Books +http://lobid.org/organisations/ZDB-225-IKB#! ZDB-225-IKB ZDB-225-IKB ikotes E-Books +http://lobid.org/organisations/ZDB-162-MUS#! ZDB-162-MUS ZDB-162-MUS Bloomsbury Collections / Music & Sound +http://lobid.org/organisations/ZDB-237-PAT#! ZDB-237-PAT ZDB-237-PAT Verlagsgruppe Patmos E-Books +http://lobid.org/organisations/ZDB-117-BJE#! ZDB-117-BJE ZDB-117-BJE V&R eLibrary / Backlist Jubiläums EBS +http://lobid.org/organisations/ZDB-242-LEB#! ZDB-242-LEB ZDB-242-LEB Linea E-Books +http://lobid.org/organisations/ZDB-124-WMH#! ZDB-124-WMH ZDB-124-WMH World Scientific Publishing / Mathematics +http://lobid.org/organisations/ZDB-5-WNS#! ZDB-5-WNS ZDB-5-WNS wiso Nomos Sozialwissenschaften +http://lobid.org/organisations/ZDB-219-DVM#! ZDB-219-DVM ZDB-219-DVM dpunkt.verlag / Microsoft Press +http://lobid.org/organisations/ZDB-219-DNF#! ZDB-219-DNF ZDB-219-DNF dpunkt.verlag / Naturfotografie +http://lobid.org/organisations/ZDB-219-DKT#! ZDB-219-DKT ZDB-219-DKT dpunkt.verlag / Kamera & Technik +http://lobid.org/organisations/ZDB-219-DVD#! ZDB-219-DVD ZDB-219-DVD dpunkt.verlag / Genrefotografie - diverse +http://lobid.org/organisations/ZDB-219-DFA#! ZDB-219-DFA ZDB-219-DFA dpunkt.verlag / Fotografie - allgemein +http://lobid.org/organisations/ZDB-219-OAD#! ZDB-219-OAD ZDB-219-OAD O'Reilly / Admin +http://lobid.org/organisations/ZDB-117-VBL#! ZDB-117-VBL ZDB-117-VBL V&R eLibrary / Böhlau Backlist EBS +http://lobid.org/organisations/ZDB-5-WWS#! ZDB-5-WWS ZDB-5-WWS wiso wbv media Sozialwissenschaften +http://lobid.org/organisations/ZDB-157-APP#! ZDB-157-APP ZDB-157-APP Verlag Karl Alber / Primärwerke und eigenständige philosophische Entwürfe +http://lobid.org/organisations/ZDB-1-SFW#! ZDB-1-SFW ZDB-1-SFW Secret Files from World Wars to Cold War [FID-Lizenz] +http://lobid.org/organisations/ZDB-5-VWW#! ZDB-5-VWW ZDB-5-VWW wiso Videos Wirtschaft +http://lobid.org/organisations/ZDB-5-VTC#! ZDB-5-VTC ZDB-5-VTC wiso Videos Technik +http://lobid.org/organisations/ZDB-247-GPV#! ZDB-247-GPV ZDB-247-GPV Greenlight Press E-Books +http://lobid.org/organisations/ZDB-18-SVR#! ZDB-18-SVR ZDB-18-SVR Beck eLibrary / C.H. Beck Staatsrecht/Völkerrecht +http://lobid.org/organisations/ZDB-1-CJAB#! ZDB-1-CJAB ZDB-1-CJAB Diaolong Full-text Database of Chinese & Japanese Ancient Books / Yongle dadian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAK#! ZDB-1-CJAK ZDB-1-CJAK Diaolong Full-text Database of Chinese & Japanese Ancient Books / Essentials of the Daoist Canon [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAL#! ZDB-1-CJAL ZDB-1-CJAL Diaolong Full-text Database of Chinese & Japanese Ancient Books / Siku quanshu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKI#! ZDB-1-CNKI ZDB-1-CNKI CNKI / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKA#! ZDB-1-CNKA ZDB-1-CNKA CNKI / Digital Collection on China Studies (CNKI eBooks) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKB#! ZDB-1-CNKB ZDB-1-CNKB CNKI / China Monographic Series Full-text Database (CMSD) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAD#! ZDB-1-APAD ZDB-1-APAD Apabi / Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAF#! ZDB-1-APAF ZDB-1-APAF Apabi / Yearbooks [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WANA#! ZDB-1-WANA ZDB-1-WANA Wanfang / Policies and laws of China [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ERU#! ZDB-1-ERU ZDB-1-ERU Erudition / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-15-ACB#! ZDB-15-ACB ZDB-15-ACB ACM Digital Library / ACM Books Collection II +http://lobid.org/organisations/ZDB-1-SAGS3#! ZDB-1-SAGS3 ZDB-1-SAGS3 Sage Journals Online Publish & Read / Science Technology Medicine (STM) / Upgrade für 2017 bis 2020 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-AP12#! ZDB-1-AP12 ZDB-1-AP12 Armenia Parliamentary Election 2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AP17#! ZDB-1-AP17 ZDB-1-AP17 Armenia Parliamentary Election 2017 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AV18#! ZDB-1-AV18 ZDB-1-AV18 Armenia Velvet Revolution 2018 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TP15#! ZDB-1-TP15 ZDB-1-TP15 Tajikistan Parliamentary Elections 2015 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-20-CFS#! ZDB-20-CFS ZDB-20-CFS Cambridge Books Online / Life Sciences +http://lobid.org/organisations/ZDB-20-CPP#! ZDB-20-CPP ZDB-20-CPP Cambridge Books Online / Philosophy +http://lobid.org/organisations/ZDB-117-BMK#! ZDB-117-BMK ZDB-117-BMK V&R eLibrary / Böhlau Musik und Kunst +http://lobid.org/organisations/ZDB-181-TEO#! ZDB-181-TEO ZDB-181-TEO Tectum eLibrary / Open Access +http://lobid.org/organisations/ZDB-18-NLK#! ZDB-18-NLK ZDB-18-NLK Nomos eLibrary / Studienliteratur Kulturwissenschaft +http://lobid.org/organisations/ZDB-18-NLA#! ZDB-18-NLA ZDB-18-NLA Nomos eLibrary / Anthropologie und Ethnologie +http://lobid.org/organisations/ZDB-1-VMY#! ZDB-1-VMY ZDB-1-VMY Voennaia mysl* digital archive 1918 - 2018 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FSE#! ZDB-1-FSE ZDB-1-FSE Foreign Office Files for South East Asia, 1963-1980 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-27-ADA#! ZDB-27-ADA ZDB-27-ADA Ovid / ADA Book Collection +http://lobid.org/organisations/ZDB-162-BPI#! ZDB-162-BPI ZDB-162-BPI Bloomsbury Collections / Politics & International Relations +http://lobid.org/organisations/ZDB-1-AEA#! ZDB-1-AEA ZDB-1-AEA Archaeopress : Selected E-Books in Archaeology [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-HRE#! ZDB-18-HRE ZDB-18-HRE beck-online / Hochschulrecht PLUS +http://lobid.org/organisations/ZDB-95-MTI#! ZDB-95-MTI ZDB-95-MTI Primary Sources / Middle East and Islamic Studies / Western Travellers in the Islamic World Online +http://lobid.org/organisations/ZDB-213-MPE#! ZDB-213-MPE ZDB-213-MPE mitp / Programmierung, Elektronik & Web +http://lobid.org/organisations/ZDB-126-OEP#! ZDB-126-OEP ZDB-126-OEP oekom verlag / Ethik & Philosophie +http://lobid.org/organisations/ZDB-157-APPE#! ZDB-157-APPE ZDB-157-APPE Verlag Karl Alber / Praktische Philosophie, Ethik +http://lobid.org/organisations/ZDB-236-ETAS#! ZDB-236-ETAS ZDB-236-ETAS edition text+kritik / Arno Schmidt all inclusive +http://lobid.org/organisations/ZDB-236-ETLP3#! ZDB-236-ETLP3 ZDB-236-ETLP3 edition text+kritik / Literatur Plus Periodika 3 +http://lobid.org/organisations/ZDB-236-ETLP4#! ZDB-236-ETLP4 ZDB-236-ETLP4 edition text+kritik / Literatur Plus Periodika 4 +http://lobid.org/organisations/ZDB-41-SGA#! ZDB-41-SGA ZDB-41-SGA scholars-e-library / Germanistik/ Backlist Athena +http://lobid.org/organisations/ZDB-41-SGB#! ZDB-41-SGB ZDB-41-SGB scholars-e-library / Geschichte/ Backlist Athena +http://lobid.org/organisations/ZDB-41-SGH#! ZDB-41-SGH ZDB-41-SGH scholars-e-library / Geschichte/ Backlist Hamburger Edition +http://lobid.org/organisations/ZDB-41-SQB#! ZDB-41-SQB ZDB-41-SQB scholars-e-library / Philosophie/ Backlist Hamburger Edition +http://lobid.org/organisations/ZDB-41-SSPA#! ZDB-41-SSPA ZDB-41-SSPA scholars-e-library / Sonderpädagogik/ Backlist Athena +http://lobid.org/organisations/ZDB-262-CFG#! ZDB-262-CFG ZDB-262-CFG Cherry Media / Finanzen und Geldanlage +http://lobid.org/organisations/ZDB-54-DDB#! ZDB-54-DDB ZDB-54-DDB Duncker & Humblot eLibrary / Deutscher Betriebswirte Verlag +http://lobid.org/organisations/ZDB-54-DKR#! ZDB-54-DKR ZDB-54-DKR Duncker & Humblot eLibrary / Kollektion Rechtsphilosophie +http://lobid.org/organisations/ZDB-263-SFK#! ZDB-263-SFK ZDB-263-SFK Schüren / Filmschaffende +http://lobid.org/organisations/ZDB-266-BWE#! ZDB-266-BWE ZDB-266-BWE Berliner Wissenschafts-Verlag / eLibrary +http://lobid.org/organisations/ZDB-2-SXCS#! ZDB-2-SXCS ZDB-2-SXCS Springer Nature / Computer Science (R0) +http://lobid.org/organisations/ZDB-2-SXH#! ZDB-2-SXH ZDB-2-SXH Springer Nature / History (R0) +http://lobid.org/organisations/ZDB-2-SXPR#! ZDB-2-SXPR ZDB-2-SXPR Springer Nature / Philosophy and Religion (R0) +http://lobid.org/organisations/ZDB-2-SXRB#! ZDB-2-SXRB ZDB-2-SXRB Springer Nature / Reference Module Biomedical and Life Sciences +http://lobid.org/organisations/ZDB-268-EGB#! ZDB-268-EGB ZDB-268-EGB Equinox / Gesamt E-Books +http://lobid.org/organisations/ZDB-34-TGK#! ZDB-34-TGK ZDB-34-TGK Thieme / Gesundheitsmanagement, Klinikmanagement, Gesundheitswirtschaft +http://lobid.org/organisations/ZDB-5-WJE#! ZDB-5-WJE ZDB-5-WJE wiso Journals Economy +http://lobid.org/organisations/ZDB-5-WJSS#! ZDB-5-WJSS ZDB-5-WJSS wiso Sage Journals Social Science +http://lobid.org/organisations/ZDB-269-FFD#! ZDB-269-FFD ZDB-269-FFD Filmfriend +http://lobid.org/organisations/ZDB-1-FOA#! ZDB-1-FOA ZDB-1-FOA Foreign Office Files for India, Pakistan and Afghanistan, 1947-1980 [FID-Lizenz] +http://lobid.org/organisations/ZDB-34-TKPG#! ZDB-34-TKPG ZDB-34-TKPG Thieme Klinik Praxis / Gynäkologie +http://lobid.org/organisations/ZDB-34-TKPM#! ZDB-34-TKPM ZDB-34-TKPM Thieme Klinik Praxis / Mikrobiologie, Hygiene + übergreifende Titel +http://lobid.org/organisations/ZDB-34-TKPP#! ZDB-34-TKPP ZDB-34-TKPP Thieme Klinik Praxis / Pädiatrie +http://lobid.org/organisations/ZDB-107-WEC#! ZDB-107-WEC ZDB-107-WEC Waxmann / E-Books +http://lobid.org/organisations/ZDB-274-CSOA#! ZDB-274-CSOA ZDB-274-CSOA Content-Select / Open Access +http://lobid.org/organisations/ZDB-1-APGP#! ZDB-1-APGP ZDB-1-APGP Apartheid: Global Perspectives, 1946-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AKV#! ZDB-1-AKV ZDB-1-AKV American Proxy Wars: Korea and Vietnam Global Perspectives, 1946-1975 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CWGP#! ZDB-1-CWGP ZDB-1-CWGP The Cold War: Global Perspectives on East-West Tensions, 1945-1991 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PCP#! ZDB-1-PCP ZDB-1-PCP Propaganda & The Chinese Press: Global Perspectives, 1946-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WPGP#! ZDB-1-WPGP ZDB-1-WPGP World Protest & Reform Movements: Global Perspectives, 1945-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KPM#! ZDB-1-KPM ZDB-1-KPM KPM [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KISS#! ZDB-1-KISS ZDB-1-KISS KISS [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-LLIS#! ZDB-1-LLIS ZDB-1-LLIS LawnB’s Legal Information Service [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DBP#! ZDB-1-DBP ZDB-1-DBP Dbpia [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NKS#! ZDB-1-NKS ZDB-1-NKS NK Scholar [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKB#! ZDB-1-JAKB ZDB-1-JAKB JapanKnowledge / Gunsho ruiju [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKE#! ZDB-1-JAKE ZDB-1-JAKE JapanKnowledge / Taiyo [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKG#! ZDB-1-JAKG ZDB-1-JAKG JapanKnowledge / Toyo Keizai Archives [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKH#! ZDB-1-JAKH ZDB-1-JAKH JapanKnowledge / Bungeishunju Archives [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WHOP#! ZDB-1-WHOP ZDB-1-WHOP WhoPlus [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-VGM#! ZDB-18-VGM ZDB-18-VGM Beck eLibrary / Versus Gesundheit & Management +http://lobid.org/organisations/ZDB-18-BDAE#! ZDB-18-BDAE ZDB-18-BDAE Beck eLibrary / Deutscher Ärzteverlag Zahnmedizin - Chirurgie, Anästhesie, Kieferorthopädie +http://lobid.org/organisations/ZDB-128-VJG#! ZDB-128-VJG ZDB-128-VJG Beck eLibrary / Vahlen Gesamtpaket Jura +http://lobid.org/organisations/ZDB-18-NLM#! ZDB-18-NLM ZDB-18-NLM Nomos eLibrary / Musikwissenschaft +http://lobid.org/organisations/ZDB-41-SPTH#! ZDB-41-SPTH ZDB-41-SPTH scholars-e-library / Praktische Theologie +http://lobid.org/organisations/ZDB-18-BVSI#! ZDB-18-BVSI ZDB-18-BVSI beck-online / Verfahrens- und Schiedsrecht INTERNATIONAL +http://lobid.org/organisations/ZDB-276-DAZ#! ZDB-276-DAZ ZDB-276-DAZ Deutscher Ärzteverlag / Zahnmedizin: Behandlung und Praxismanagement +http://lobid.org/organisations/ZDB-276-DAX#! ZDB-276-DAX ZDB-276-DAX Deutscher Ärzteverlag / Medizin +http://lobid.org/organisations/ZDB-277-FTC#! ZDB-277-FTC ZDB-277-FTC Frank & Timme / Alte Geschichte, Archäologie +http://lobid.org/organisations/ZDB-277-FTE#! ZDB-277-FTE ZDB-277-FTE Frank & Timme / Arbeiten und Texte zur Slawistik +http://lobid.org/organisations/ZDB-277-FTK#! ZDB-277-FTK ZDB-277-FTK Frank & Timme / Fachdidaktik Fremdsprachen, DaF, DaZ +http://lobid.org/organisations/ZDB-277-FTM#! ZDB-277-FTM ZDB-277-FTM Frank & Timme / Fachsprachenforschung Medizin Technik Wirtschaft +http://lobid.org/organisations/ZDB-277-FTS#! ZDB-277-FTS ZDB-277-FTS Frank & Timme / Literaturwissenschaft +http://lobid.org/organisations/ZDB-138-AMXB#! ZDB-138-AMXB ZDB-138-AMXB AMS ebooks / Centre de Recherches Mathématiques (CRM) Proceedings & Lecture Notes +http://lobid.org/organisations/ZDB-263-SEG#! ZDB-263-SEG ZDB-263-SEG Schüren / Schüren E-Books Gesamt +http://lobid.org/organisations/ZDB-157-AAP#! ZDB-157-AAP ZDB-157-AAP Verlag Karl Alber / Anthropologie +http://lobid.org/organisations/ZDB-157-ANPH#! ZDB-157-ANPH ZDB-157-ANPH Verlag Karl Alber / Neue Phänomenologie +http://lobid.org/organisations/ZDB-157-AGQ#! ZDB-157-AGQ ZDB-157-AGQ Verlag Karl Alber / Grundfragen der Philosophie +http://lobid.org/organisations/ZDB-279-TBE#! ZDB-279-TBE ZDB-279-TBE Traugott Bautz Verlag / Ethik +http://lobid.org/organisations/ZDB-279-TBKL#! ZDB-279-TBKL ZDB-279-TBKL Traugott Bautz Verlag / Klassik +http://lobid.org/organisations/ZDB-279-TBKU#! ZDB-279-TBKU ZDB-279-TBKU Traugott Bautz Verlag / Kunst +http://lobid.org/organisations/ZDB-279-TBY#! ZDB-279-TBY ZDB-279-TBY Traugott Bautz Verlag / Lyrik +http://lobid.org/organisations/ZDB-279-TBPO#! ZDB-279-TBPO ZDB-279-TBPO Traugott Bautz Verlag / Politik +http://lobid.org/organisations/ZDB-87-GNR#! ZDB-87-GNR ZDB-87-GNR Classiques Garnier Numérique / La Révolution et l'Empire +http://lobid.org/organisations/ZDB-142-WXF#! ZDB-142-WXF ZDB-142-WXF WBG / Basis Regionalia +http://lobid.org/organisations/ZDB-142-WXG#! ZDB-142-WXG ZDB-142-WXG WBG / Basis Romanistik +http://lobid.org/organisations/ZDB-198-DUA#! ZDB-198-DUA ZDB-198-DUA Duke University Press / Anthropology e-book collection +http://lobid.org/organisations/ZDB-18-BCCP#! ZDB-18-BCCP ZDB-18-BCCP beck-online / Corona und COVID-19 PLUS +http://lobid.org/organisations/ZDB-280-SWG#! ZDB-280-SWG ZDB-280-SWG Schwabe Ebooks Gesamt +http://lobid.org/organisations/ZDB-1-NPM#! ZDB-1-NPM ZDB-1-NPM National Palace Museum Periodicals [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CPME#! ZDB-1-CPME ZDB-1-CPME Confidential Print: Middle East, 1839-1969 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-277-FTW#! ZDB-277-FTW ZDB-277-FTW Frank & Timme / Ost-West-Express +http://lobid.org/organisations/ZDB-277-FTZC#! ZDB-277-FTZC ZDB-277-FTZC Frank & Timme / Romanistik +http://lobid.org/organisations/ZDB-277-FTZI#! ZDB-277-FTZI ZDB-277-FTZI Frank & Timme / Sprachwissenschaft +http://lobid.org/organisations/ZDB-277-FTZM#! ZDB-277-FTZM ZDB-277-FTZM Frank & Timme / Transkulturalität – Translation – Transfer +http://lobid.org/organisations/ZDB-277-FTZP#! ZDB-277-FTZP ZDB-277-FTZP Frank & Timme / Wirtschaft, Urbanistik, Informatik +http://lobid.org/organisations/ZDB-48-WKSO#! ZDB-48-WKSO ZDB-48-WKSO Wolters Kluwer Online / Straf- und Ordnungswidrigkeitenrecht +http://lobid.org/organisations/ZDB-33-ECMS#! ZDB-33-ECMS ZDB-33-ECMS Elsevier Clinical Medicine and Surgery +http://lobid.org/organisations/ZDB-1-ECD#! ZDB-1-ECD ZDB-1-ECD Eighteenth Century Drama [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CPLA#! ZDB-1-CPLA ZDB-1-CPLA Confidential Print: Latin America [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CMC#! ZDB-1-CMC ZDB-1-CMC Classic Mexican Cinema Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CCCR#! ZDB-1-CCCR ZDB-1-CCCR Cuban Culture and Cultural Relations, 1959- (Part I & II) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SAGS4#! ZDB-1-SAGS4 ZDB-1-SAGS4 Sage Journals Online Publish & Read / Science Technology Medicine (STM) / Upgrade für 2021 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGK4#! ZDB-1-SAGK4 ZDB-1-SAGK4 Sage Journals Online Publish & Read / Premier / Upgrade für 2021 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-AIPO#! ZDB-1-AIPO ZDB-1-AIPO AIP Journals Read and Publish [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-BAS#! ZDB-1-BAS ZDB-1-BAS Brill / Asian Studies E-Books Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DCC#! ZDB-1-DCC ZDB-1-DCC Brill / Student’s Dictionary of Classical and Medieval Chinese Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-281-VDG#! ZDB-281-VDG ZDB-281-VDG VDI Verlag-eLibrary / Gesamt +http://lobid.org/organisations/ZDB-9-LIC#! ZDB-9-LIC ZDB-9-LIC Gale Literature Criticism +http://lobid.org/organisations/ZDB-41-SJ2#! ZDB-41-SJ2 ZDB-41-SJ2 scholars-e-library / Medizin und Pflege / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SBS1#! ZDB-41-SBS1 ZDB-41-SBS1 scholars-e-library / Medizin und Pflege / Backlist Schattauer +http://lobid.org/organisations/ZDB-41-SK1#! ZDB-41-SK1 ZDB-41-SK1 scholars-e-library / Psychoanalyse / Backlist Klett-Cotta +http://lobid.org/organisations/ZDB-41-SK2#! ZDB-41-SK2 ZDB-41-SK2 scholars-e-library / Psychologie allg. / Backlist Klett-Cotta +http://lobid.org/organisations/ZDB-41-SV8#! ZDB-41-SV8 ZDB-41-SV8 scholars-e-library / Psychologie allg. / Backlist vdf +http://lobid.org/organisations/ZDB-41-SBS4#! ZDB-41-SBS4 ZDB-41-SBS4 scholars-e-library / Psychologische Beratung & Coaching / Backlist Schattauer +http://lobid.org/organisations/ZDB-41-SJ6#! ZDB-41-SJ6 ZDB-41-SJ6 scholars-e-library / Psychotherapie / Backlist Junfermann +http://lobid.org/organisations/ZDB-125-TGW#! ZDB-125-TGW ZDB-125-TGW scholars-e-library / Geschichtswissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-34-THCH#! ZDB-34-THCH ZDB-34-THCH Thieme eRef / Chirurgie +http://lobid.org/organisations/ZDB-18-BMGP#! ZDB-18-BMGP ZDB-18-BMGP beck-online / Medizin- und Gesundheitsrecht PREMIUM +http://lobid.org/organisations/ZDB-121-UNS#! ZDB-121-UNS ZDB-121-UNS Ulmer E-Books / Naturschutz und Landschaftsplanung +http://lobid.org/organisations/ZDB-142-WAZ#! ZDB-142-WAZ ZDB-142-WAZ WBG / Archäologie Zeitschriften und Sonderhefte +http://lobid.org/organisations/ZDB-142-WRO#! ZDB-142-WRO ZDB-142-WRO WBG / Romanistik +http://lobid.org/organisations/ZDB-1-EMQ#! ZDB-1-EMQ ZDB-1-EMQ Erudition / Ming Qing shilu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ECG#! ZDB-1-ECG ZDB-1-ECG Erudition / Database of Chinese genealogy [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ONPC#! ZDB-1-ONPC ZDB-1-ONPC Oriprobe / The database of the National People's Congress [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OCG#! ZDB-1-OCG ZDB-1-OCG Oriprobe / Archives of the Chinese government [FID-Lizenz] +http://lobid.org/organisations/ZDB-285-RMA#! ZDB-285-RMA ZDB-285-RMA Rudolf Müller / Planen und Bauen +http://lobid.org/organisations/ZDB-285-RMC#! ZDB-285-RMC ZDB-285-RMC Rudolf Müller / Barrierefreies Bauen +http://lobid.org/organisations/ZDB-1-NCC#! ZDB-1-NCC ZDB-1-NCC Nineteenth Century Collections Online: Children's Literature and Childhood [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NCS#! ZDB-1-NCS ZDB-1-NCS Nineteenth Century Collections Online: Science, Technology, and Medicine, 1780-1925 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKL#! ZDB-1-JAKL ZDB-1-JAKL JapanKnowledge / Bijutsu Shinpo [FID-Lizenz] +http://lobid.org/organisations/ZDB-96-SC2#! ZDB-96-SC2 ZDB-96-SC2 Sage Research Methods / Cases 2 +http://lobid.org/organisations/ZDB-1-ATEP#! ZDB-1-ATEP ZDB-1-ATEP Airiti / Taiwan Electronic Periodical Services [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ASTP#! ZDB-1-ASTP ZDB-1-ASTP Analytical System for the Complete Tong Poetry [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TDN#! ZDB-1-TDN ZDB-1-TDN Taiwan Nichinichi [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PD2#! ZDB-1-PD2 ZDB-1-PD2 People's Daily (1946-2012) [FID-Lizenz] +http://lobid.org/organisations/ZDB-96-SDS2#! ZDB-96-SDS2 ZDB-96-SDS2 Sage Research Methods / Datasets 2 +http://lobid.org/organisations/ZDB-157-APHG#! ZDB-157-APHG ZDB-157-APHG Verlag Karl Alber / Philosophie Gesamt +http://lobid.org/organisations/ZDB-276-DAW#! ZDB-276-DAW ZDB-276-DAW Deutscher Ärzteverlag / Novitäten +http://lobid.org/organisations/ZDB-290-EPR#! ZDB-290-EPR ZDB-290-EPR Elektor / Programmierung +http://lobid.org/organisations/ZDB-290-EIOT#! ZDB-290-EIOT ZDB-290-EIOT Elektor / IoT Automation +http://lobid.org/organisations/ZDB-290-EMC#! ZDB-290-EMC ZDB-290-EMC Elektor / Mikrocontroller +http://lobid.org/organisations/ZDB-41-UAAB#! ZDB-41-UAAB ZDB-41-UAAB scholars-e-library / Ausbildung Agrarberufe und Floristik / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UFWB#! ZDB-41-UFWB ZDB-41-UFWB scholars-e-library / Forstwirtschaft / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UHFB#! ZDB-41-UHFB ZDB-41-UHFB scholars-e-library / Hobby & Freizeit / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UHUB#! ZDB-41-UHUB ZDB-41-UHUB scholars-e-library / Hundehaltung / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UWEB#! ZDB-41-UWEB ZDB-41-UWEB scholars-e-library / Weinbau / Backlist Ulmer +http://lobid.org/organisations/ZDB-28-HOS#! ZDB-28-HOS ZDB-28-HOS Hong Kong Scholarship Online +http://lobid.org/organisations/ZDB-1-HAN#! ZDB-1-HAN ZDB-1-HAN Hispanic American newspapers, 1808-1980 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SATAF#! ZDB-1-SATAF ZDB-1-SATAF Something About the Author [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TASF#! ZDB-1-TASF ZDB-1-TASF Twayne's Author Series [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-MENA#! ZDB-1-MENA ZDB-1-MENA Middle Eastern and North African Newspapers [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-201-MGO#! ZDB-201-MGO ZDB-201-MGO Manchester Gothic +http://lobid.org/organisations/ZDB-260-MPT#! ZDB-260-MPT ZDB-260-MPT MIT Press Direct / Trade Collection +http://lobid.org/organisations/ZDB-28-OGTY#! ZDB-28-OGTY ZDB-28-OGTY Oxford Scholarly Editions Online / Greek Tragedy +http://lobid.org/organisations/ZDB-92-LJC#! ZDB-92-LJC ZDB-92-LJC Liverpool University Press / Littman E-Library of Jewish Civilization +http://lobid.org/organisations/ZDB-285-RMI#! ZDB-285-RMI ZDB-285-RMI Rudolf Müller / Gebäudeschadstoffe und Innenraumluft +http://lobid.org/organisations/ZDB-136-SMWI#! ZDB-136-SMWI ZDB-136-SMWI Suhrkamp / Medienwissenschaft +http://lobid.org/organisations/ZDB-286-AVP#! ZDB-286-AVP ZDB-286-AVP Aschendorff Verlag / Geschichte (Religion, Politik, Zentraleuropa) +http://lobid.org/organisations/ZDB-295-KSA#! ZDB-295-KSA ZDB-295-KSA Klett-Sprachen +http://lobid.org/organisations/ZDB-6-PMOA#! ZDB-6-PMOA ZDB-6-PMOA Project MUSE / Open Access E-Books +http://lobid.org/organisations/ZDB-18-BAMP#! ZDB-18-BAMP ZDB-18-BAMP beck-online / Ausländer- und Migrationsrecht PREMIUM +http://lobid.org/organisations/ZDB-197-MSGP#! ZDB-197-MSGP ZDB-197-MSGP Mohr Siebeck / Geschichtswissenschaft - Philosophie +http://lobid.org/organisations/ZDB-1-DHSB#! ZDB-1-DHSB ZDB-1-DHSB De Gruyter HSS- und Economic-Journals Konvolut B [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-VNA#! ZDB-18-VNA ZDB-18-VNA Beck eLibrary / Versus Neue Arbeitswelten +http://lobid.org/organisations/ZDB-54-DKP#! ZDB-54-DKP ZDB-54-DKP Duncker & Humblot eLibrary / Preussen +http://lobid.org/organisations/ZDB-95-CCLC#! ZDB-95-CCLC ZDB-95-CCLC Climate Change and Law Collection +http://lobid.org/organisations/ZDB-1-BYL#! ZDB-1-BYL ZDB-1-BYL Brill Yearbooks International Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BGZ#! ZDB-18-BGZ ZDB-18-BGZ beck-online / GROSSKOMMENTAR zum Zivilrecht +http://lobid.org/organisations/ZDB-30-PGW#! ZDB-30-PGW ZDB-30-PGW ProQuest / Goethes Werke im WWW +http://lobid.org/organisations/ZDB-30-PSW#! ZDB-30-PSW ZDB-30-PSW ProQuest / Schillers Werke im WWW +http://lobid.org/organisations/ZDB-303-BVF#! ZDB-303-BVF ZDB-303-BVF Bildner Verlag / Fotografie +http://lobid.org/organisations/ZDB-303-BVSP#! ZDB-303-BVSP ZDB-303-BVKSP Bildner Verlag / Smartphone +http://lobid.org/organisations/ZDB-219-DSF#! ZDB-219-DSF ZDB-219-DSF dpunkt.verlag / Science Fiction +http://lobid.org/organisations/ZDB-132-VKS#! ZDB-132-VKS ZDB-132-VKS Vogel Business Media / Kunststoff, Chemie +http://lobid.org/organisations/ZDB-30-PAL#! ZDB-30-PAL ZDB-30-PAL ProQuest Academic Collection / Law +http://lobid.org/organisations/ZDB-1-TAST#! ZDB-1-TAST ZDB-1-TAST The Transatlantic Slave Trade, 1675-1907 [FID-Lizenz] +http://lobid.org/organisations/ZDB-304-GMW#! ZDB-304-GMW ZDB-304-GMW GABAL / Marketing & Verkauf +http://lobid.org/organisations/ZDB-304-GBK#! ZDB-304-GBK ZDB-304-GBK GABAL / Beruf & Karriere +http://lobid.org/organisations/ZDB-197-MSRE#! ZDB-197-MSRE ZDB-197-MSRE Mohr Siebeck / Retro-Paket-eBook-collection bis 2015 +http://lobid.org/organisations/ZDB-186-WTA#! ZDB-186-WTA ZDB-186-WTA WTM-Verlag / Beiträge zum Mathematikunterricht +http://lobid.org/organisations/ZDB-277-FTZU#! ZDB-277-FTZU ZDB-277-FTZU Frank & Timme / Religion und Philosophie +http://lobid.org/organisations/ZDB-186-WTI#! ZDB-186-WTI ZDB-186-WTI WTM-Verlag / Hochschulschriften zur Mathematikdidaktik +http://lobid.org/organisations/ZDB-186-WTJ#! ZDB-186-WTJ ZDB-186-WTJ WTM-Verlag / Sammelbände der Mathematikdidaktik +http://lobid.org/organisations/ZDB-186-WTQ#! ZDB-186-WTQ ZDB-186-WTQ WTM-Verlag / Testentwicklung und Evaluation in der Mathematikdidaktik +http://lobid.org/organisations/ZDB-309-SIE#! ZDB-309-SIE ZDB-309-SIE Sidestone Press / E-Books +http://lobid.org/organisations/ZDB-208-FOM79#! ZDB-208-FOM79 ZDB-208-FOM79 Adam Matthew Digital / Foreign Office Files for the Middle East: 1979-1981, The Iranian Revolution and the Iran-Iraq War +http://lobid.org/organisations/ZDB-1-MJN#! ZDB-1-MJN ZDB-1-MJN Meiji Japan [FID-Lizenz] +http://lobid.org/organisations/ZDB-41-AAF#! ZDB-41-AAF ZDB-41-AAF scholars-e-library / Ausbildung Agrarberufe und Floristik +http://lobid.org/organisations/ZDB-41-SN3#! ZDB-41-SN3 ZDB-41-SN3 scholars-e-library / Klassische Philologie / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN14#! ZDB-41-SN14 ZDB-41-SN14 scholars-e-library / Sprachwissenschaft, Übersetzungswissenschaft / Backlist Narr +http://lobid.org/organisations/ZDB-41-SU1#! ZDB-41-SU1 ZDB-41-SU1 scholars-e-library / Geschichte / Backlist UVK +http://lobid.org/organisations/ZDB-41-SA5#! ZDB-41-SA5 ZDB-41-SA5 scholars-e-library / Literaturwissenschaft / Backlist Aisthesis +http://lobid.org/organisations/ZDB-1-CMW2#! ZDB-1-CMW2 ZDB-1-CMW2 China and the Modern World, Part 2: Records of the Maritime Customs Service of China (1854-1949) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ICW1#! ZDB-1-ICW1 ZDB-1-ICW1 China and the Modern World / Imperial China and the West, Part 1, 1815–1881 [FID-Lizenz] +http://lobid.org/organisations/ZDB-95-CEM2#! ZDB-95-CEM2 ZDB-95-CEM2 Brill's Companions to Early Modern and Modern History Online II +http://lobid.org/organisations/ZDB-102-FLO#! ZDB-102-FLO ZDB-102-FLO Filmakers Library Online: Second Edition collection +http://lobid.org/organisations/ZDB-102-THV2#! ZDB-102-THV2 ZDB-102-THV2 Theatre in Video: Volume 2 +http://lobid.org/organisations/ZDB-28-OAA#! ZDB-28-OAA ZDB-28-OAA Oxford Academic / Books +http://lobid.org/organisations/ZDB-18-BSPH#! ZDB-18-BSPH ZDB-18-BSPH Beck eLibrary / SPH [Gesamt] +http://lobid.org/organisations/ZDB-23-UCY#! ZDB-23-UCY ZDB-23-UCY UC Press + Yale Ebooks +http://lobid.org/organisations/ZDB-54-DHB#! ZDB-54-DHB ZDB-54-DHB Duncker & Humblot eLibrary / Backlist 1815-2017 +http://lobid.org/organisations/ZDB-33-MRN#! ZDB-33-MRN ZDB-33-MRN SSRN / Management Research Network (MRN). +http://lobid.org/organisations/ZDB-170-EOW#! ZDB-170-EOW ZDB-170-EOW Die digitale SAP-Bibliothek / Zusatzmodul MS-Office + Web Development +http://lobid.org/organisations/ZDB-1-GRO#! ZDB-1-GRO ZDB-1-GRO Le Grand Ricci online [FID-Lizenz] +http://lobid.org/organisations/ZDB-314-METV#! ZDB-314-METV ZDB-314-METV medici.tv +http://lobid.org/organisations/ZDB-23-DOAL#! ZDB-23-DOAL ZDB-23-DOAL De Gruyter Open Access Transformationspaket / Deutsche Literaturwissenschaft +http://lobid.org/organisations/ZDB-23-DOGE#! ZDB-23-DOGE ZDB-23-DOGE De Gruyter Open Access Transformationspaket / Geschichte +http://lobid.org/organisations/ZDB-49-OOAA#! ZDB-49-OOAA ZDB-49-OOAA Olms Open Access Transformationspaket / Neuerscheinungen Geschichte, Alte Geschichte +http://lobid.org/organisations/ZDB-1-DSA#! ZDB-1-DSA ZDB-1-DSA Difangzhi sanji [FID-Lizenz] +http://lobid.org/organisations/ZDB-20-CSP#! ZDB-20-CSP ZDB-20-CSP Cambridge Books Online / Statistics & Probability +http://lobid.org/organisations/ZDB-33-ETPS#! ZDB-33-ETPS ZDB-33-ETPS Elsevier Educational Textbooks / Physical Sciences +http://lobid.org/organisations/ZDB-1-OPTC#! ZDB-1-OPTC ZDB-1-OPTC Optica Read & Publish [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NOJN#! ZDB-18-NOJN ZDB-18-NOJN Nomos eLibrary / Nomos Jura Grundlagen / Nomos only +http://lobid.org/organisations/ZDB-18-NOJP#! ZDB-18-NOJP ZDB-18-NOJP Nomos eLibrary / Jura Grundlagen / Partner Only +http://lobid.org/organisations/ZDB-18-NJRN#! ZDB-18-NJRN ZDB-18-NJRN Nomos eLibrary / Jura gesamt Nomos only +http://lobid.org/organisations/ZDB-18-NFRN#! ZDB-18-NFRN ZDB-18-NFRN Nomos eLibrary / Öffentliches Recht / Nomos only +http://lobid.org/organisations/ZDB-18-NSRP#! ZDB-18-NSRP ZDB-18-NSRP Nomos eLibrary / Strafrecht / Partner only +http://lobid.org/organisations/ZDB-18-NOWN#! ZDB-18-NOWN ZDB-18-NOWN Nomos eLibrary / Wirtschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NOGN#! ZDB-18-NOGN ZDB-18-NOGN Nomos eLibrary / Geschichte / Nomos only +http://lobid.org/organisations/ZDB-18-NPAN#! ZDB-18-NPAN ZDB-18-NPAN Nomos eLibrary / Pädagogik / Nomos only +http://lobid.org/organisations/ZDB-18-NSBN#! ZDB-18-NSBN ZDB-18-NSBN Nomos eLibrary / Sprach- und Literaturwissenschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NLMP#! ZDB-18-NLMP ZDB-18-NLMP Nomos eLibrary / Musikwissenschaft / Partner only +http://lobid.org/organisations/ZDB-33-ECMC#! ZDB-33-ECMC ZDB-33-ECMC Elsevier e-book collection - Mathematics & Computing +http://lobid.org/organisations/ZDB-18-NLKWP#! ZDB-18-NLKWP ZDB-18-NLKWP Nomos eLibrary / Kunstwissenschaft, -geschichte / Partner only +http://lobid.org/organisations/ZDB-1-SAGH6#! ZDB-1-SAGH6 ZDB-1-SAGH6 Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) / Upgrade für 2023 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGS6#! ZDB-1-SAGS6 ZDB-1-SAGS6 Sage Journals Online Publish & Read / Science Technology Medicine (STM) / Upgrade für 2023 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-28-OSEA#! ZDB-28-OSEA ZDB-28-OSEA Oxford Scholarly Editions Online / Aristotle +http://lobid.org/organisations/ZDB-28-OSEP#! ZDB-28-OSEP ZDB-28-OSEP Oxford Scholarly Editions Online / Plato +http://lobid.org/organisations/ZDB-319-SWL#! ZDB-319-SWL ZDB-319-SWL Swisslex E-books +http://lobid.org/organisations/ZDB-304-GABN#! ZDB-304-GABN ZDB-304-GABN GABAL / Novitäten 2022 +http://lobid.org/organisations/ZDB-322-HEGE#! ZDB-322-HEGE ZDB-322-HEGE Hüthig Energie- und Gebäudetechnik +http://lobid.org/organisations/ZDB-43-MMAU#! ZDB-43-MMAU ZDB-43-MMAU Die Musikdrucke (1631–1830) und Mozartsammlung der Staats- und Stadtbibliothek Augsburg +http://lobid.org/organisations/ZDB-41-NLB#! ZDB-41-NLB ZDB-41-NLB scholars-e-library / Naturschutz und Landschaftsplanung / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PHS#! ZDB-41-PHS ZDB-41-PHS scholars-e-library / Pädagogik/Hochschule / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PSBE#! ZDB-41-PSBE ZDB-41-PSBE scholars-e-library / Psychologische Beratung / Backlist ibidem +http://lobid.org/organisations/ZDB-41-RBA#! ZDB-41-RBA ZDB-41-RBA scholars-e-library / Recht / Backlist ibidem +http://lobid.org/organisations/ZDB-18-BOKN#! ZDB-18-BOKN ZDB-18-BOKN beck-online / Kommunalpraxis Niedersachsen PLUS +http://lobid.org/organisations/ZDB-77-EEU#! ZDB-77-EEU ZDB-77-EEU Edward Elgar / Essentials in UN Sustainable Development Goals +http://lobid.org/organisations/ZDB-119-KSH#! ZDB-119-KSH ZDB-119-KSH KU select HSS [Open Access] +http://lobid.org/organisations/ZDB-84-KELP#! ZDB-84-KELP ZDB-84-KELP Kohlhammer eLibrary Philosophie +http://lobid.org/organisations/ZDB-119-KURG#! ZDB-119-KURG ZDB-119-KURG Knowledge Unlatched / Routledge Gender Studies [Open Access] +http://lobid.org/organisations/ZDB-1-NPH#! ZDB-1-NPH ZDB-1-NPH Nomos eLibrary / Philosophie 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-30-PQP#! ZDB-30-PQP ZDB-30-PQP ProQuest LibGuides / Patrologia Latina +http://lobid.org/organisations/ZDB-119-KUL#! ZDB-119-KUL ZDB-119-KUL Knowledge Unlatched / Literature [Open Access] +http://lobid.org/organisations/ZDB-1-BVBR#! ZDB-1-BVBR ZDB-1-BVBR Biblioteca Virtual del Banco de la República en Colombia [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-84-KOX#! ZDB-84-KOX ZDB-84-KOX Kohlhammer eLibrary Psychologie +http://lobid.org/organisations/ZDB-2-SOB#! ZDB-2-SOB ZDB-2-SOB Springer Nature Open Access Bücher [Open Access] +http://lobid.org/organisations/ZDB-236-EDF#! ZDB-236-EDF ZDB-236-EDF edition text+kritik / Basispaket Deutsche Filmgeschichte +http://lobid.org/organisations/ZDB-325-VSV#! ZDB-325-VSV ZDB-325-VSV VitalSource / Lehrbuchpaket Wiley Veterinary Collection +http://lobid.org/organisations/ZDB-204-ACQ#! ZDB-204-ACQ ZDB-204-ACQ Archaeopress / Open Access E-Books [Open Access] +http://lobid.org/organisations/ZDB-119-KUM#! ZDB-119-KUM ZDB-119-KUM Knowledge Unlatched / University of Michigan Press [Open Access] +http://lobid.org/organisations/ZDB-56-VDT#! ZDB-56-VDT ZDB-56-VDT VD17 Digitalisate der Universitätsbibliothek Johann Christian Senckenberg [Open Access] +http://lobid.org/organisations/ZDB-325-VSW#! ZDB-325-VSW ZDB-325-VSW VitalSource / Lehrbuchpaket Wiley Ingenieurwissenschaften +http://lobid.org/organisations/ZDB-236-ERM#! ZDB-236-ERM ZDB-236-ERM edition text+kritik / Reihen Musik +http://lobid.org/organisations/ZDB-119-KDU#! ZDB-119-KDU ZDB-119-KDU Knowledge Unlatched / Duke University Press [Open Access] +http://lobid.org/organisations/ZDB-328-EXL#! ZDB-328-EXL ZDB-328-EXL Exlibrus +http://lobid.org/organisations/ZDB-296-TAP#! ZDB-296-TAP ZDB-296-TAP TIB AV-Portal [Open Access] +http://lobid.org/organisations/ZDB-1-NAS#! ZDB-1-NAS ZDB-1-NAS Nomos eLibrary / Arbeits- und Sozialrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-SBD#! ZDB-1-SBD ZDB-1-SBD Sammlung Biodiversität [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-1-NOP#! ZDB-1-NOP ZDB-1-NOP Nomos eLibrary / Politikwissenschaft 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-SLG#! ZDB-41-SLG ZDB-41-SLG scholars-e-library / Germanistik / Backlist Königshausen & Neumann +http://lobid.org/organisations/ZDB-1-PPU#! ZDB-1-PPU ZDB-1-PPU Anáforas, Publicaciones Periódicas del Uruguay [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-84-KHP#! ZDB-84-KHP ZDB-84-KHP Kohlhammer eLibrary Pflege +http://lobid.org/organisations/ZDB-88-JPV#! ZDB-88-JPV ZDB-88-JPV juris PartnerModul Verwaltungsrecht Premium +http://lobid.org/organisations/ZDB-88-JZJ#! ZDB-88-JZJ ZDB-88-JZJ juris Zusatzmodul Justiz Horizontal +http://lobid.org/organisations/ZDB-193-NCB#! ZDB-193-NCB ZDB-193-NCB National Library of Medicine, National Center for Biotechnology Information Bookshelf [Open Access] +http://lobid.org/organisations/ZDB-326-CRL#! ZDB-326-CRL ZDB-326-CRL Center for Research Libraries (CRL) - Materials in Public Domain [Open Access] +http://lobid.org/organisations/ZDB-84-KEPS#! ZDB-84-KEPS ZDB-84-KEPS Kohlhammer eLibrary Pädagogik/Soziologie +http://lobid.org/organisations/ZDB-119-KTH#! ZDB-119-KTH ZDB-119-KTH Knowledge Unlatched / Theology & Religion [Open Access] +http://lobid.org/organisations/ZDB-1-NOEZ#! ZDB-1-NOEZ ZDB-1-NOEZ Nomos eLibrary / Europapolitik [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-39-JOA#! ZDB-39-JOA ZDB-39-JOA JSTOR Open Access EBooks [Open Access] +http://lobid.org/organisations/ZDB-119-KLL#! ZDB-119-KLL ZDB-119-KLL Knowledge Unlatched / Languages & Linguistics [Open Access] +http://lobid.org/organisations/ZDB-325-VSC#! ZDB-325-VSC ZDB-325-VSC VitalSource / Lehrbuchpaket Wiley Chemie +http://lobid.org/organisations/ZDB-119-KPI#! ZDB-119-KPI ZDB-119-KPI Knowledge Unlatched / Philosophy [Open Access] +http://lobid.org/organisations/ZDB-282-AAE#! ZDB-282-AAE ZDB-282-AAE arthistoricum.net-ART-Books / E-Books [Open Access] +http://lobid.org/organisations/ZDB-232-HEP#! ZDB-232-HEP ZDB-232-HEP Heidelberg University Publishing E-Books [Open Access] +http://lobid.org/organisations/ZDB-119-KNU#! ZDB-119-KNU ZDB-119-KNU Knowledge Unlatched [Open Access] +http://lobid.org/organisations/ZDB-1-NLAR#! ZDB-1-NLAR ZDB-1-NLAR Nomos eLibrary / Arbeitsrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-84-KHC#! ZDB-84-KHC ZDB-84-KHC Kohlhammer eLibrary Krankenhaus +http://lobid.org/organisations/ZDB-57-DSG#! ZDB-57-DSG ZDB-57-DSG Digi20 / Sagner [Open Access] +http://lobid.org/organisations/ZDB-162-DRO#! ZDB-162-DRO ZDB-162-DRO Drama Online / Oberon Books Collection 2 +http://lobid.org/organisations/ZDB-84-KEPO#! ZDB-84-KEPO ZDB-84-KEPO Kohlhammer eLibrary Politik +http://lobid.org/organisations/ZDB-1-NOLZ#! ZDB-1-NOLZ ZDB-1-NOLZ Nomos eLibrary / Gesamt [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-56-NHF#! ZDB-56-NHF ZDB-56-NHF Neuzeitliche Handschriften Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-119-ORL#! ZDB-119-ORL ZDB-119-ORL Open Research Library [Open Access] [Open Access] +http://lobid.org/organisations/ZDB-1-NFR#! ZDB-1-NFR ZDB-1-NFR Nomos eLibrary / Öffentliches Recht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-308-WRJ#! ZDB-308-WRJ ZDB-308-WRJ WLB regiopen journals [Open Access] +http://lobid.org/organisations/ZDB-77-ECB#! ZDB-77-ECB ZDB-77-ECB Edward Elgar Ebook collection Business / Management +http://lobid.org/organisations/ZDB-78-UNW#! ZDB-78-UNW ZDB-78-UNW UNWTO Elibrary +http://lobid.org/organisations/ZDB-48-JIP#! ZDB-48-JIP ZDB-48-JIP Jurion - Insolvenzrecht Premium +http://lobid.org/organisations/ZDB-1-AAS5#! ZDB-1-AAS5 ZDB-1-AAS5 American Antiquarian Society (AAS) Historical Periodicals Collection : Series 5 (1866-1877) [Nationallizenz] +http://lobid.org/organisations/ZDB-42-OWS#! ZDB-42-OWS ZDB-42-OWS Oldenbourg / Wirtschaftsmathematik und -statistik +http://lobid.org/organisations/ZDB-38-EBR#! ZDB-38-EBR ZDB-38-EBR ebrary +http://lobid.org/organisations/ZDB-83-BFL#! ZDB-83-BFL ZDB-83-BFL Berg Fashion Library +http://lobid.org/organisations/ZDB-84-KOA#! ZDB-84-KOA ZDB-84-KOA Kohlhammer Entwicklungspsychologie +http://lobid.org/organisations/ZDB-85-LDI#! ZDB-85-LDI ZDB-85-LDI Linde-Verlag Projektmanagement +http://lobid.org/organisations/ZDB-85-LDL#! ZDB-85-LDL ZDB-85-LDL Linde-Verlag Lehrbücher Sprachen +http://lobid.org/organisations/ZDB-16-HEP#! ZDB-16-HEP ZDB-16-HEP Hanser eLibrary / Plastics +http://lobid.org/organisations/ZDB-4-H6A#! ZDB-4-H6A ZDB-4-H6A EBSCO Arte Público Hispanic Historical Collection Series 1 +http://lobid.org/organisations/ZDB-87-GNE#! ZDB-87-GNE ZDB-87-GNE Classiques Garnier Numérique  / Ètudes de littérature des XXe et XXIe  siècles +http://lobid.org/organisations/ZDB-88-JRA#! ZDB-88-JRA ZDB-88-JRA juris Standard +http://lobid.org/organisations/ZDB-88-JRB#! ZDB-88-JRB ZDB-88-JRB juris Spectrum / Hochschulen +http://lobid.org/organisations/ZDB-88-JRC#! ZDB-88-JRC ZDB-88-JRC juris Fachportal Öffentliche Verwaltung +http://lobid.org/organisations/ZDB-88-JRE#! ZDB-88-JRE ZDB-88-JRE juris Fachportal Sozialrecht / Hochschulen +http://lobid.org/organisations/ZDB-88-JRH#! ZDB-88-JRH ZDB-88-JRH juris Modul Verwaltungsvorschriften +http://lobid.org/organisations/ZDB-4-NLEBK#! ZDB-4-NLEBK ZDB-4-NLEBK EBSCO eBook Collection +http://lobid.org/organisations/ZDB-89-ELE#! ZDB-89-ELE ZDB-89-ELE EBL Ebook Library / Engineering +http://lobid.org/organisations/ZDB-89-EBL#! ZDB-89-EBL ZDB-89-EBL EBL Ebook Library +http://lobid.org/organisations/ZDB-84-KOD#! ZDB-84-KOD ZDB-84-KOD Kohlhammer Praktische Theologie, Religionspädagogik, Diakonie +http://lobid.org/organisations/ZDB-84-KOI#! ZDB-84-KOI ZDB-84-KOI Kohlhammer Religions- und Kulturwissenschaft +http://lobid.org/organisations/ZDB-74-AKO#! ZDB-74-AKO ZDB-74-AKO akademie-link / Tusculum Plinius Naturkunde +http://lobid.org/organisations/ZDB-74-AKQ#! ZDB-74-AKQ ZDB-74-AKQ akademie-link / Mittelalter +http://lobid.org/organisations/ZDB-23-DBC#! ZDB-23-DBC ZDB-23-DBC De Gruyter eBook-Paket Biologie, Chemie, Geowissenschaften deutsch +http://lobid.org/organisations/ZDB-95-PJB#! ZDB-95-PJB ZDB-95-PJB Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Hebrew and Judeo-Arabic Printing in Baghdad +http://lobid.org/organisations/ZDB-95-PJE#! ZDB-95-PJE ZDB-95-PJE Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Israel's Messenger +http://lobid.org/organisations/ZDB-95-PJI#! ZDB-95-PJI ZDB-95-PJI Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Shahnamah Editions +http://lobid.org/organisations/ZDB-1-PSO#! ZDB-1-PSO ZDB-1-PSO Palgrave Connect / Social Sciences [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-RSEK#! ZDB-1-RSEK ZDB-1-RSEK RSC eBook Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-59-BPP#! ZDB-59-BPP ZDB-59-BPP Beltz Pflege +http://lobid.org/organisations/ZDB-35-WCP#! ZDB-35-WCP ZDB-35-WCP Wiley Collection Plant Science +http://lobid.org/organisations/ZDB-1-JEB2#! ZDB-1-JEB2 ZDB-1-JEB2 JSTOR : Ecology & Botany II Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-106-ODA#! ZDB-106-ODA ZDB-106-ODA Oberwolfach Digital Archive +http://lobid.org/organisations/ZDB-84-KOY#! ZDB-84-KOY ZDB-84-KOY Kohlhammer Theologie +http://lobid.org/organisations/ZDB-107-WDS#! ZDB-107-WDS ZDB-107-WDS scholars-e-library / Didaktik, Schule & Unterricht / Backlist Waxmann +http://lobid.org/organisations/ZDB-109-LTS#! ZDB-109-LTS ZDB-109-LTS Lambertus / Theorie der Sozialen Arbeit +http://lobid.org/organisations/ZDB-109-LFA#! ZDB-109-LFA ZDB-109-LFA Lambertus / Familien +http://lobid.org/organisations/ZDB-107-WEW#! ZDB-107-WEW ZDB-107-WEW scholars-e-library / Empirische Erziehungswissenschaften / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WER#! ZDB-107-WER ZDB-107-WER scholars-e-library / Erwachsenenbildung / Backlist Waxmann +http://lobid.org/organisations/ZDB-41-UTBU#! ZDB-41-UTBU ZDB-41-UTBU scholars-e-library / Film und Fernsehen +http://lobid.org/organisations/ZDB-110-WBL#! ZDB-110-WBL ZDB-110-WBL World Bank E-Library +http://lobid.org/organisations/ZDB-112-SRH#! ZDB-112-SRH ZDB-112-SRH Schattauer E-Medien / Ökonomie +http://lobid.org/organisations/ZDB-23-OEM#! ZDB-23-OEM ZDB-23-OEM eBook-Paket Oldenbourg / Elektrotechnik, Maschinenbau, Ingenieurswissenschaften +http://lobid.org/organisations/ZDB-114-LAG#! ZDB-114-LAG ZDB-114-LAG Peter Lang eBooks / Geschichte +http://lobid.org/organisations/ZDB-115-ABC#! ZDB-115-ABC ZDB-115-ABC ABC-CLIO +http://lobid.org/organisations/ZDB-96-SBM#! ZDB-96-SBM ZDB-96-SBM Sage knowledge / Business & Management +http://lobid.org/organisations/ZDB-96-SPH#! ZDB-96-SPH ZDB-96-SPH Sage knowledge / Philosophy +http://lobid.org/organisations/ZDB-7-THE#! ZDB-7-THE ZDB-7-THE Taylor & Francis eBooks / Tourism, Hospitality and Events +http://lobid.org/organisations/ZDB-7-PHS#! ZDB-7-PHS ZDB-7-PHS Taylor & Francis eBooks / Physical Sciences +http://lobid.org/organisations/ZDB-7-MDN#! ZDB-7-MDN ZDB-7-MDN Taylor & Francis eBooks / Medicine, Dentistry, Nursing & Allied Health +http://lobid.org/organisations/ZDB-7-MAS#! ZDB-7-MAS ZDB-7-MAS Taylor & Francis eBooks / Mathematics & Statistics +http://lobid.org/organisations/ZDB-7-INS#! ZDB-7-INS ZDB-7-INS Taylor & Francis eBooks / Information Science +http://lobid.org/organisations/ZDB-7-EFB#! ZDB-7-EFB ZDB-7-EFB Taylor & Francis eBooks / Economics, Finance, Business & Industry +http://lobid.org/organisations/ZDB-7-DSE#! ZDB-7-DSE ZDB-7-DSE Taylor & Francis eBooks / Development Studies, Environment, Social Work, Urban Studies +http://lobid.org/organisations/ZDB-7-BES#! ZDB-7-BES ZDB-7-BES Taylor & Francis eBooks / Behavioral Sciences +http://lobid.org/organisations/ZDB-7-ARS#! ZDB-7-ARS ZDB-7-ARS Taylor & Francis eBooks / Area Studies +http://lobid.org/organisations/ZDB-18-NAS#! ZDB-18-NAS ZDB-18-NAS Nomos eLibrary / Arbeits- und Sozialrecht +http://lobid.org/organisations/ZDB-1-HBE#! ZDB-1-HBE ZDB-1-HBE Elsevier Handbooks in Economics Series [Nationallizenz] +http://lobid.org/organisations/ZDB-116-KTR#! ZDB-116-KTR ZDB-116-KTR Klett-Cotta / Trauma +http://lobid.org/organisations/ZDB-88-MWR#! ZDB-88-MWR ZDB-88-MWR juris PartnerModul Miet- und Wohnungseigentumsrecht +http://lobid.org/organisations/ZDB-88-WIR#! ZDB-88-WIR ZDB-88-WIR OVS Modul Wirtschaftsrecht powered by juris +http://lobid.org/organisations/ZDB-88-HCS#! ZDB-88-HCS ZDB-88-HCS OVS Modul Hochschulen +http://lobid.org/organisations/ZDB-117-APE#! ZDB-117-APE ZDB-117-APE V&R eLibrary / Angewandte Psychologie Erwachsene +http://lobid.org/organisations/ZDB-117-FKD#! ZDB-117-FKD ZDB-117-FKD V&R eLibrary / Forschungen zur Kirchen- und Dogmengeschichte +http://lobid.org/organisations/ZDB-117-FRA#! ZDB-117-FRA ZDB-117-FRA V&R eLibrary / Forschungen zur Religion und Literatur des Alten und Neuen Testaments +http://lobid.org/organisations/ZDB-117-SAP#! ZDB-117-SAP ZDB-117-SAP V&R eLibrary / Super Alta Perennis. Studien zur Wirkung der klassischen Antike +http://lobid.org/organisations/ZDB-35-WCK#! ZDB-35-WCK ZDB-35-WCK Wiley Collection Geography +http://lobid.org/organisations/ZDB-35-WCM#! ZDB-35-WCM ZDB-35-WCM Wiley Collection Industrial Engineering +http://lobid.org/organisations/ZDB-120-SVD#! ZDB-120-SVD ZDB-120-SVD Franz Steiner Verlag eLibrary / Altertumswissenschaften +http://lobid.org/organisations/ZDB-18-NIR#! ZDB-18-NIR ZDB-18-NIR Nomos eLibrary / Internationales Recht, Völkerrecht +http://lobid.org/organisations/ZDB-41-SNG#! ZDB-41-SNG ZDB-41-SNG scholars-e-library / Anglistik +http://lobid.org/organisations/ZDB-41-SGS#! ZDB-41-SGS ZDB-41-SGS scholars-e-library / Geschichte +http://lobid.org/organisations/ZDB-41-SGK#! ZDB-41-SGK ZDB-41-SGK scholars-e-library / Geschichte/ Kulturgeschichte +http://lobid.org/organisations/ZDB-41-SLI#! ZDB-41-SLI ZDB-41-SLI scholars-e-library / Literaturwissenschaft +http://lobid.org/organisations/ZDB-41-SPA#! ZDB-41-SPA ZDB-41-SPA scholars-e-library / Pädagogik (allgemein) +http://lobid.org/organisations/ZDB-41-SCG#! ZDB-41-SCG ZDB-41-SCG scholars-e-library / Schulpädagogik/ Grundschule +http://lobid.org/organisations/ZDB-41-SSZ#! ZDB-41-SSZ ZDB-41-SSZ scholars-e-library / Soziologie +http://lobid.org/organisations/ZDB-41-SSW#! ZDB-41-SSW ZDB-41-SSW scholars-e-library / Soziologie/ Arbeits- und Wirtschaftssoziologie +http://lobid.org/organisations/ZDB-2-BAE#! ZDB-2-BAE ZDB-2-BAE Springer Book Archive Englisch +http://lobid.org/organisations/ZDB-84-KHD#! ZDB-84-KHD ZDB-84-KHD Kohlhammer Medizin und Ethik +http://lobid.org/organisations/ZDB-107-WSO#! ZDB-107-WSO ZDB-107-WSO scholars-e-library / Soziologie / Backlist Waxmann +http://lobid.org/organisations/ZDB-123-WEK#! ZDB-123-WEK ZDB-123-WEK WEKA-Business-Portal +http://lobid.org/organisations/ZDB-125-TRI#! ZDB-125-TRI ZDB-125-TRI scholars-e-library / Religions- und Islamwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TGS#! ZDB-125-TGS ZDB-125-TGS scholars-e-library / Gender Studies und Queer Studies / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKG#! ZDB-125-TKG ZDB-125-TKG scholars-e-library / Kunstgeschichte / Backlist transcript +http://lobid.org/organisations/ZDB-125-TFW#! ZDB-125-TFW ZDB-125-TFW scholars-e-library / Filmwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TMW#! ZDB-125-TMW ZDB-125-TMW scholars-e-library / Medienwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TMS#! ZDB-125-TMS ZDB-125-TMS scholars-e-library / Musikwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TPH#! ZDB-125-TPH ZDB-125-TPH scholars-e-library / Philosophie / Backlist transcript +http://lobid.org/organisations/ZDB-126-OLS#! ZDB-126-OLS ZDB-126-OLS oekom verlag / Literarisches Sachbuch +http://lobid.org/organisations/ZDB-126-OSU#! ZDB-126-OSU ZDB-126-OSU oekom verlag / Suffizienz & Urban Gardening +http://lobid.org/organisations/ZDB-109-LKS#! ZDB-109-LKS ZDB-109-LKS Lambertus / Klassiker der Sozialen Arbeit +http://lobid.org/organisations/ZDB-128-VAB#! ZDB-128-VAB ZDB-128-VAB Beck eLibrary / Vahlen Allgemeine Betriebswirtschaftslehre +http://lobid.org/organisations/ZDB-128-VMW#! ZDB-128-VMW ZDB-128-VMW Beck eLibrary / Vahlen Mathematik für Wirtschaftswissenschaftler +http://lobid.org/organisations/ZDB-128-VRW#! ZDB-128-VRW ZDB-128-VRW Beck eLibrary / Vahlen Recht für Wirtschaftswissenschaftler +http://lobid.org/organisations/ZDB-33-RER#! ZDB-33-RER ZDB-33-RER Referex engineering reference collection on ScienceDirect +http://lobid.org/organisations/ZDB-30-PDT#! ZDB-30-PDT ZDB-30-PDT ProQuest Dissertations & Theses Full Text +http://lobid.org/organisations/ZDB-130-BBI#! ZDB-130-BBI ZDB-130-BBI scholars-e-library / Pädagogik/ Bildungsstudien / Backlist wbv +http://lobid.org/organisations/ZDB-116-KGP#! ZDB-116-KGP ZDB-116-KGP Klett-Cotta / Gesellschaft/Politik +http://lobid.org/organisations/ZDB-130-BEW#! ZDB-130-BEW ZDB-130-BEW scholars-e-library / Pädagogik/ Erwachsenenbildungsforschung / Backlist wbv +http://lobid.org/organisations/ZDB-18-NEE#! ZDB-18-NEE ZDB-18-NEE Nomos eLibrary / Enzyklopädie Europarecht +http://lobid.org/organisations/ZDB-131-GSW#! ZDB-131-GSW ZDB-131-GSW GRIN Verlag eBook-Themenpaket Sozialwissenschaften +http://lobid.org/organisations/ZDB-23-DSW#! ZDB-23-DSW ZDB-23-DSW De Gruyter eBook-Paket Sozialwissenschaften +http://lobid.org/organisations/ZDB-133-HSA#! ZDB-133-HSA ZDB-133-HSA Hirzel eLibrary / Sachbuch +http://lobid.org/organisations/ZDB-23-ALW#! ZDB-23-ALW ZDB-23-ALW eBook-Paket Akademie Literaturwissenschaften +http://lobid.org/organisations/ZDB-23-DEG#! ZDB-23-DEG ZDB-23-DEG De Gruyter eBook-Paket Geschichte +http://lobid.org/organisations/ZDB-23-DEI#! ZDB-23-DEI ZDB-23-DEI De Gruyter eBook-Paket Technik, Informatik +http://lobid.org/organisations/ZDB-41-SPP#! ZDB-41-SPP ZDB-41-SPP scholars-e-library / Psychologische Beratung +http://lobid.org/organisations/ZDB-41-SWT#! ZDB-41-SWT ZDB-41-SWT scholars-e-library / Wirtschaft +http://lobid.org/organisations/ZDB-23-TSO#! ZDB-23-TSO ZDB-23-TSO Transcript eBook-Sonderpaket Gesamtpaket +http://lobid.org/organisations/ZDB-132-VBV#! ZDB-132-VBV ZDB-132-VBV Vogel Business Media / Verfahrenstechnik +http://lobid.org/organisations/ZDB-5-WMR#! ZDB-5-WMR ZDB-5-WMR wiso Recht +http://lobid.org/organisations/ZDB-33-EBS#! ZDB-33-EBS ZDB-33-EBS Elsevier ScienceDirect Evidence Based Selection +http://lobid.org/organisations/ZDB-41-SFD#! ZDB-41-SFD ZDB-41-SFD scholars-e-library / Fachdidaktik Religion +http://lobid.org/organisations/ZDB-131-GPF#! ZDB-131-GPF ZDB-131-GPF GRIN Verlag eBook-Themenpaket Pflege +http://lobid.org/organisations/ZDB-1-RWF#! ZDB-1-RWF ZDB-1-RWF Duncker & Humblot E-Books „Best of reprints“ WIRTSCHAFT & FINANZEN 1875–1941 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-JA14#! ZDB-1-JA14 ZDB-1-JA14 JSTOR : Arts & Sciences XIV Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-117-FRB#! ZDB-117-FRB ZDB-117-FRB V&R eLibrary / Frühe Bildung +http://lobid.org/organisations/ZDB-125-TSZ#! ZDB-125-TSZ ZDB-125-TSZ scholars-e-library / Soziologie / Backlist transcript +http://lobid.org/organisations/ZDB-109-LSP#! ZDB-109-LSP ZDB-109-LSP Lambertus / Studium und Praxis der Sozialen Arbeit +http://lobid.org/organisations/ZDB-41-UTBX#! ZDB-41-UTBX ZDB-41-UTBX utb-studi-e-book / Sportwissenschaft +http://lobid.org/organisations/ZDB-116-KGL#! ZDB-116-KGL ZDB-116-KGL Klett-Cotta / Gegenwartsliteratur +http://lobid.org/organisations/ZDB-85-LDS#! ZDB-85-LDS ZDB-85-LDS Linde-Verlag Internationales Steuerrecht +http://lobid.org/organisations/ZDB-85-LDT#! ZDB-85-LDT ZDB-85-LDT Linde-Verlag Lehrbuch / Öffentliches Recht/Verwaltung +http://lobid.org/organisations/ZDB-121-UEW#! ZDB-121-UEW ZDB-121-UEW Ulmer E-Books / Ernährungswissenschaften +http://lobid.org/organisations/ZDB-117-GEW#! ZDB-117-GEW ZDB-117-GEW V&R eLibrary / Geisteswissenschaften +http://lobid.org/organisations/ZDB-117-LIS#! ZDB-117-LIS ZDB-117-LIS V&R eLibrary / Literatur- und Sprachwissenschaft +http://lobid.org/organisations/ZDB-117-RAS#! ZDB-117-RAS ZDB-117-RAS V&R eLibrary / Refo500 Academic Studies +http://lobid.org/organisations/ZDB-130-BHE#! ZDB-130-BHE ZDB-130-BHE scholars-e-library / Pädagogik/ Hochschulentwicklung / Backlist wbv +http://lobid.org/organisations/ZDB-23-DBF#! ZDB-23-DBF ZDB-23-DBF De Gruyter e-dition 2: Best of History +http://lobid.org/organisations/ZDB-23-DBK#! ZDB-23-DBK ZDB-23-DBK De Gruyter e-dition 2: Best of Theology +http://lobid.org/organisations/ZDB-23-DBL#! ZDB-23-DBL ZDB-23-DBL De Gruyter e-dition 2: Best of Theology Titles in English +http://lobid.org/organisations/ZDB-142-WAG#! ZDB-142-WAG ZDB-142-WAG WBG / Alte Geschichte +http://lobid.org/organisations/ZDB-143-DOC#! ZDB-143-DOC ZDB-143-DOC 123Library +http://lobid.org/organisations/ZDB-18-BLE#! ZDB-18-BLE ZDB-18-BLE Beck eLibrary / C.H. Beck Naturkunde, Psychologie und Medizin +http://lobid.org/organisations/ZDB-2-BSP#! ZDB-2-BSP ZDB-2-BSP Springer ebook collection / Behavioral Science and Psychology +http://lobid.org/organisations/ZDB-2-ECF#! ZDB-2-ECF ZDB-2-ECF Springer ebook collection / Economics and Finance +http://lobid.org/organisations/ZDB-2-HTY#! ZDB-2-HTY ZDB-2-HTY Springer ebook collection / History +http://lobid.org/organisations/ZDB-144-PVB#! ZDB-144-PVB ZDB-144-PVB Psychiatrie Verlag eBooks +http://lobid.org/organisations/ZDB-145-GVL#! ZDB-145-GVL ZDB-145-GVL Getty Publications / Virtual Library +http://lobid.org/organisations/ZDB-144-PPV#! ZDB-144-PPV ZDB-144-PPV Psychiatrie Verlag / Basiswissen Psychiatrische Versorgung +http://lobid.org/organisations/ZDB-71-NVF#! ZDB-71-NVF ZDB-71-NVF Narr Verlag E-Books / Fremdsprachendidaktik +http://lobid.org/organisations/ZDB-2-PEC#! ZDB-2-PEC ZDB-2-PEC Springer ebook collection / Palgrave Education Collection +http://lobid.org/organisations/ZDB-2-PCO#! ZDB-2-PCO ZDB-2-PCO Springer ebook collection / Palgrave Literature Collection +http://lobid.org/organisations/ZDB-2-PPS#! ZDB-2-PPS ZDB-2-PPS Springer ebook collection / Palgrave Political Science Collection +http://lobid.org/organisations/ZDB-2-PTC#! ZDB-2-PTC ZDB-2-PTC Springer ebook collection / Palgrave Theatre & Performance Collection +http://lobid.org/organisations/ZDB-2-PES#! ZDB-2-PES ZDB-2-PES Springer ebook collection / Palgrave Encycl. Of Strategic Management +http://lobid.org/organisations/ZDB-1-MSN#! ZDB-1-MSN ZDB-1-MSN MathSciNet (American Mathematical Society / AMS) [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-75-SMS#! ZDB-75-SMS ZDB-75-SMS SISMEL / Mediaeval Studies +http://lobid.org/organisations/ZDB-18-NPP#! ZDB-18-NPP ZDB-18-NPP Nomos eLibrary / Psychotherapie und Psychologie +http://lobid.org/organisations/ZDB-6-UPC#! ZDB-6-UPC ZDB-6-UPC UPCC Book Collections on Project MUSE +http://lobid.org/organisations/ZDB-6-UGC#! ZDB-6-UGC ZDB-6-UGC UPCC Book Collection on Project MUSE / Global Culture Studies Collection +http://lobid.org/organisations/ZDB-6-UPS#! ZDB-6-UPS ZDB-6-UPS UPCC Book Collection on Project MUSE / Political Science and Policy Studies Collection +http://lobid.org/organisations/ZDB-23-DMA#! ZDB-23-DMA ZDB-23-DMA De Gruyter eBook-Paket Mathematik +http://lobid.org/organisations/ZDB-18-NPH#! ZDB-18-NPH ZDB-18-NPH Nomos eLibrary / Philosophie +http://lobid.org/organisations/ZDB-5-WPU#! ZDB-5-WPU ZDB-5-WPU wiso Publikum +http://lobid.org/organisations/ZDB-5-WBD#! ZDB-5-WBD ZDB-5-WBD wiso BILD +http://lobid.org/organisations/ZDB-136-SPT#! ZDB-136-SPT ZDB-136-SPT Suhrkamp / Politische Theorie +http://lobid.org/organisations/ZDB-142-WGE#! ZDB-142-WGE ZDB-142-WGE WBG / Germanistik +http://lobid.org/organisations/ZDB-59-BPL#! ZDB-59-BPL ZDB-59-BPL Beltz Psychologie Heute +http://lobid.org/organisations/ZDB-59-TCB#! ZDB-59-TCB ZDB-59-TCB Beltz Training, Coaching und Beratung +http://lobid.org/organisations/ZDB-88-JSO#! ZDB-88-JSO ZDB-88-JSO juris Staudinger Online +http://lobid.org/organisations/ZDB-105-MCL#! ZDB-105-MCL ZDB-105-MCL Morgan & Claypool: Synthesis Lectures on Information Concepts, Retrieval, and Services +http://lobid.org/organisations/ZDB-84-KHR#! ZDB-84-KHR ZDB-84-KHR Kohlhammer Recht +http://lobid.org/organisations/ZDB-120-SVG#! ZDB-120-SVG ZDB-120-SVG Franz Steiner Verlag eLibrary / EBooks +http://lobid.org/organisations/ZDB-154-ADS#! ZDB-154-ADS ZDB-154-ADS Publication of the American Dialect Society +http://lobid.org/organisations/ZDB-157-HFP#! ZDB-157-HFP ZDB-157-HFP Herder / Frühpädagogik, aktuelle Themen +http://lobid.org/organisations/ZDB-18-BZP#! ZDB-18-BZP ZDB-18-BZP beck-online / Zivilrecht PREMIUM +http://lobid.org/organisations/ZDB-18-BFP#! ZDB-18-BFP ZDB-18-BFP beck-online / Familienrecht PREMIUM +http://lobid.org/organisations/ZDB-18-BNS#! ZDB-18-BNS ZDB-18-BNS beck-online / NomosOnline Sozialrecht +http://lobid.org/organisations/ZDB-142-WBT#! ZDB-142-WBT ZDB-142-WBT WBG / Biblische Theologie +http://lobid.org/organisations/ZDB-47-ETO#! ZDB-47-ETO ZDB-47-ETO Erich Schmidt Verlag E-Books / Tourismusmanagement +http://lobid.org/organisations/ZDB-159-WAB#! ZDB-159-WAB ZDB-159-WAB SciFo / Wasser & Abwasser +http://lobid.org/organisations/ZDB-2-LNB#! ZDB-2-LNB ZDB-2-LNB Springer Lecture Notes in Business Information Processing +http://lobid.org/organisations/ZDB-2-LNS#! ZDB-2-LNS ZDB-2-LNS Springer Lecture Notes of the Institute for Computer Sciences, Social Informatics and Telecommunications Engineering +http://lobid.org/organisations/ZDB-142-WSY#! ZDB-142-WSY ZDB-142-WSY WBG / Systematische Theologie +http://lobid.org/organisations/ZDB-1-SAGS2#! ZDB-1-SAGS2 ZDB-1-SAGS2 Sage Journals Online Publish & Read / Science Technology Medicine (STM) / Upgrade für 2015 bis Mitte 2016 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGH2#! ZDB-1-SAGH2 ZDB-1-SAGH2 Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) / Upgrade für 2015 bis Mitte 2016 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-138-AMT#! ZDB-138-AMT ZDB-138-AMT AMS ebooks / American Mathematical Society Translations: Series 2 +http://lobid.org/organisations/ZDB-1-TDA2#! ZDB-1-TDA2 ZDB-1-TDA2 Times Digital Archive (TDA II) [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-30-PAD#! ZDB-30-PAD ZDB-30-PAD ProQuest Academic Complete +http://lobid.org/organisations/ZDB-30-PBE#! ZDB-30-PBE ZDB-30-PBE ProQuest Business Ebook Subscription +http://lobid.org/organisations/ZDB-23-EXM#! ZDB-23-EXM ZDB-23-EXM De Gruyter Expositions in Mathematics +http://lobid.org/organisations/ZDB-23-PST#! ZDB-23-PST ZDB-23-PST Princeton Annals of Mathematics Studies +http://lobid.org/organisations/ZDB-7-RCJ#! ZDB-7-RCJ ZDB-7-RCJ Routledge Handbooks Online / Communication, Journalism, Media & Culture +http://lobid.org/organisations/ZDB-5-WGP#! ZDB-5-WGP ZDB-5-WGP wiso Grin Pflege +http://lobid.org/organisations/ZDB-1-WOC#! ZDB-1-WOC ZDB-1-WOC World of Children - Artek Pioneer Camp Archives, 1944-1967 Online [Nationallizenz] +http://lobid.org/organisations/ZDB-170-ETU#! ZDB-170-ETU ZDB-170-ETU Die digitale SAP-Bibliothek +http://lobid.org/organisations/ZDB-133-HEL#! ZDB-133-HEL ZDB-133-HEL Hirzel eLibrary +http://lobid.org/organisations/ZDB-142-WBP#! ZDB-142-WBP ZDB-142-WBP WBG / Philosophie +http://lobid.org/organisations/ZDB-73-CVF#! ZDB-73-CVF ZDB-73-CVF campus e-books / Business Audio +http://lobid.org/organisations/ZDB-73-CVK#! ZDB-73-CVK ZDB-73-CVK campus e-books / Karriereratgeber/Besser leben Audio +http://lobid.org/organisations/ZDB-84-KGK#! ZDB-84-KGK ZDB-84-KGK Kohlhammer Geschichte, Kultur- & Politikwissenschaft +http://lobid.org/organisations/ZDB-84-KPE#! ZDB-84-KPE ZDB-84-KPE Kohlhammer Philosophie und Ethik +http://lobid.org/organisations/ZDB-171-LDW#! ZDB-171-LDW ZDB-171-LDW Logos / Didaktik der Naturwissenschaften +http://lobid.org/organisations/ZDB-171-LPE#! ZDB-171-LPE ZDB-171-LPE Logos / Didaktik, Pädagogik,Erziehungswissenschaften +http://lobid.org/organisations/ZDB-171-LIA#! ZDB-171-LIA ZDB-171-LIA Logos / Ingenieurwissenschaften Allgemein +http://lobid.org/organisations/ZDB-171-LSO#! ZDB-171-LSO ZDB-171-LSO Logos / Soziologie, Soziale Arbeit +http://lobid.org/organisations/ZDB-171-LVT#! ZDB-171-LVT ZDB-171-LVT Logos / Verfahrenstechnik +http://lobid.org/organisations/ZDB-171-LWA#! ZDB-171-LWA ZDB-171-LWA Logos / Wirtschaft Allgemein +http://lobid.org/organisations/ZDB-136-SWE#! ZDB-136-SWE ZDB-136-SWE Suhrkamp / Werkausgabe Elias +http://lobid.org/organisations/ZDB-173-HBW#! ZDB-173-HBW ZDB-173-HBW Haufe Lexware / Allgemeine BWL +http://lobid.org/organisations/ZDB-173-HIV#! ZDB-173-HIV ZDB-173-HIV Haufe Lexware / Investition und Finanzierung +http://lobid.org/organisations/ZDB-173-HVW#! ZDB-173-HVW ZDB-173-HVW Haufe Lexware / VWL +http://lobid.org/organisations/ZDB-172-SAV#! ZDB-172-SAV ZDB-172-SAV Schlütersche / Allgemeine Veterinärmedizin +http://lobid.org/organisations/ZDB-172-SKH#! ZDB-172-SKH ZDB-172-SKH Schlütersche / Klein- & Heimtier +http://lobid.org/organisations/ZDB-1-CFK#! ZDB-1-CFK ZDB-1-CFK Torrossa : E-Books FID Kunst [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PJL#! ZDB-1-PJL ZDB-1-PJL Brill Research Perspectives Journals Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-128-ZR2#! ZDB-128-ZR2 ZDB-128-ZR2 Beck eLibrary / Vahlen Zivilrecht II +http://lobid.org/organisations/ZDB-177-KAN#! ZDB-177-KAN ZDB-177-KAN kanopy +http://lobid.org/organisations/ZDB-178-HBPDA#! ZDB-178-HBPDA ZDB-178-HBPDA hep / Bildungsforschung & -politik (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HDK#! ZDB-178-HDK ZDB-178-HDK hep / Digitale Kompetenz +http://lobid.org/organisations/ZDB-178-HDKDA#! ZDB-178-HDKDA ZDB-178-HDKDA hep / Digitale Kompetenz (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HPD#! ZDB-178-HPD ZDB-178-HPD hep / Pädagogik & Didaktik +http://lobid.org/organisations/ZDB-179-WAT#! ZDB-179-WAT ZDB-179-WAT Walhalla / Arbeits- und Tarifrecht +http://lobid.org/organisations/ZDB-179-WAU#! ZDB-179-WAU ZDB-179-WAU Walhalla / Ausländerrecht +http://lobid.org/organisations/ZDB-179-WBR#! ZDB-179-WBR ZDB-179-WBR Walhalla / Bankenrecht +http://lobid.org/organisations/ZDB-179-WBE#! ZDB-179-WBE ZDB-179-WBE Walhalla / Beamtenrecht +http://lobid.org/organisations/ZDB-179-WBW#! ZDB-179-WBW ZDB-179-WBW Walhalla / Bundeswehr +http://lobid.org/organisations/ZDB-179-WSM#! ZDB-179-WSM ZDB-179-WSM Walhalla / Selbstmanagement +http://lobid.org/organisations/ZDB-25-KAG#! ZDB-25-KAG ZDB-25-KAG Karger eBook Archive Collection (German) +http://lobid.org/organisations/ZDB-181-TSE#! ZDB-181-TSE ZDB-181-TSE Tectum eLibrary / Soziologie +http://lobid.org/organisations/ZDB-1-BGJ#! ZDB-1-BGJ ZDB-1-BGJ Berghahn E-Journals - FID Sozial- und Kulturanthropologie [FID-Lizenz] +http://lobid.org/organisations/ZDB-10-PCT#! ZDB-10-PCT ZDB-10-PCT Knovel Pharmaceuticals, Cosmetics & Toiletries +http://lobid.org/organisations/ZDB-10-TXL#! ZDB-10-TXL ZDB-10-TXL Knovel Textiles +http://lobid.org/organisations/ZDB-10-MEN#! ZDB-10-MEN ZDB-10-MEN Knovel Manufacturing Engineering +http://lobid.org/organisations/ZDB-1-ASD#! ZDB-1-ASD ZDB-1-ASD Alexander Street Drama [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TRE#! ZDB-1-TRE ZDB-1-TRE Thomson Reuters E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-138-AMB#! ZDB-138-AMB ZDB-138-AMB AMS ebooks / Fields Institute Monographs +http://lobid.org/organisations/ZDB-1-JSU#! ZDB-1-JSU ZDB-1-JSU JSTOR : Sustainability Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-124-WEN#! ZDB-124-WEN ZDB-124-WEN World Scientific Publishing / Environmental Science +http://lobid.org/organisations/ZDB-28-CHI#! ZDB-28-CHI ZDB-28-CHI Chicago Scholarship Online / Music +http://lobid.org/organisations/ZDB-28-CMU#! ZDB-28-CMU ZDB-28-CMU Cornell Scholarship Online / Music +http://lobid.org/organisations/ZDB-28-NCM#! ZDB-28-NCM ZDB-28-NCM North Carolina Scholarship Online / Music +http://lobid.org/organisations/ZDB-28-YSM#! ZDB-28-YSM ZDB-28-YSM Yale Scholarship Online / Music +http://lobid.org/organisations/ZDB-1-JBU#! ZDB-1-JBU ZDB-1-JBU JSTOR : Business & Economics Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-RSCRP#! ZDB-1-RSCRP ZDB-1-RSCRP RSC Journals Read & Publish [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-ECS#! ZDB-1-ECS ZDB-1-ECS ECS Plus [Nationalkonsortium] +http://lobid.org/organisations/ZDB-181-TLI#! ZDB-181-TLI ZDB-181-TLI Tectum eLibrary / Literaturwissenschaft +http://lobid.org/organisations/ZDB-181-TRL#! ZDB-181-TRL ZDB-181-TRL Tectum eLibrary / Religionen +http://lobid.org/organisations/ZDB-1-AIL#! ZDB-1-AIL ZDB-1-AIL Oxford Scholarly Authorities on International Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BOP#! ZDB-18-BOP ZDB-18-BOP beck-online / Arbeitsrecht OPTIMUM +http://lobid.org/organisations/ZDB-1-TOR#! ZDB-1-TOR ZDB-1-TOR Torrossa E-Journals : FID-Romanistik Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TVL#! ZDB-1-TVL ZDB-1-TVL transcript Verlag / Literaturwissenschaft [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BDA#! ZDB-18-BDA ZDB-18-BDA beck-online / Datenschutz- und Informationsfreiheitsrecht PREMIUM +http://lobid.org/organisations/ZDB-18-BIT#! ZDB-18-BIT ZDB-18-BIT beck-online / IT-Recht PREMIUM +http://lobid.org/organisations/ZDB-1-EPC#! ZDB-1-EPC ZDB-1-EPC Euclid Prime Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-55-OLQ#! ZDB-55-OLQ ZDB-55-OLQ Emerald Operations, Logistics & Quality eJournal Collection +http://lobid.org/organisations/ZDB-60-ARE#! ZDB-60-ARE ZDB-60-ARE Annual Reviews current Complete Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-60-ARF#! ZDB-60-ARF ZDB-60-ARF Annual Reviews current / Economic Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-60-ARH#! ZDB-60-ARH ZDB-60-ARH Annual Reviews current / Social Sciences Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-178-HFNDA#! ZDB-178-HFNDA ZDB-178-HFNDA hep / Frühjahrsnovitäten (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-107-WFK#! ZDB-107-WFK ZDB-107-WFK scholars-e-library / Sozialpädagogik & Pädagogik der frühen Kindheit / Backlist Waxmann +http://lobid.org/organisations/ZDB-59-BEZBP#! ZDB-59-BEZBP ZDB-59-BEZBP Beltz Erziehungswissenschaft Basis-Paket +http://lobid.org/organisations/ZDB-88-ZOE#! ZDB-88-ZOE ZDB-88-ZOE OVS Modul Zöller-online powered by juris +http://lobid.org/organisations/ZDB-88-HGR#! ZDB-88-HGR ZDB-88-HGR juris PartnerModul Handels- und Gesellschaftsrecht Premium +http://lobid.org/organisations/ZDB-187-JKG#! ZDB-187-JKG ZDB-187-JKG Junfermann / Kommunikation / GFK +http://lobid.org/organisations/ZDB-187-JTS#! ZDB-187-JTS ZDB-187-JTS Junfermann / Fachbuch / Therapeutische Skills kompakt +http://lobid.org/organisations/ZDB-162-BCL#! ZDB-162-BCL ZDB-162-BCL Bloomsbury Collections / Literary Studies +http://lobid.org/organisations/ZDB-190-EDL#! ZDB-190-EDL ZDB-190-EDL Momentum Press / Engineering Digital Library +http://lobid.org/organisations/ZDB-162-BDO#! ZDB-162-BDO ZDB-162-BDO Drama Online +http://lobid.org/organisations/ZDB-135-IAL#! ZDB-135-IAL ZDB-135-IAL IOP ebooks (All collections) +http://lobid.org/organisations/ZDB-88-ZJS#! ZDB-88-ZJS ZDB-88-ZJS juris Zusatzmodul Justiz Strafrecht +http://lobid.org/organisations/ZDB-88-ZSR#! ZDB-88-ZSR ZDB-88-ZSR juris Zusatzmodul Justiz Steuerrecht +http://lobid.org/organisations/ZDB-47-EHP#! ZDB-47-EHP ZDB-47-EHP ESVcampus / Hueber eBooks Philologie +http://lobid.org/organisations/ZDB-1-RSA#! ZDB-1-RSA ZDB-1-RSA Research Source: Area Studies: China und Southeast Asia [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CCS#! ZDB-1-CCS ZDB-1-CCS China Culture & Society [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NSJ#! ZDB-18-NSJ ZDB-18-NSJ Nomos eLibrary / Studienliteratur Jura Schlüsselkompetenzen +http://lobid.org/organisations/ZDB-162-ECL#! ZDB-162-ECL ZDB-162-ECL Bloomsbury Collections / 18th- and 19th Century Literature Archive 2006-2012 +http://lobid.org/organisations/ZDB-34-THD#! ZDB-34-THD ZDB-34-THD Thieme eRef / Dermatologie +http://lobid.org/organisations/ZDB-1-NGH#! ZDB-1-NGH ZDB-1-NGH Nomos eLibrary / edition sigma Hans-Böckler-Stiftung [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-28-CFT#! ZDB-28-CFT ZDB-28-CFT Columbia Scholarship Online / Film, Television and Radio +http://lobid.org/organisations/ZDB-1-RWI#! ZDB-1-RWI ZDB-1-RWI Duncker & Humblot Schriften des RWI 1968 - 2009 [Nationallizenz / Open Access] +http://lobid.org/organisations/ZDB-91-CABH#! ZDB-91-CABH ZDB-91-CABH CABI books / Public Health eBook Collection +http://lobid.org/organisations/ZDB-7-GOL#! ZDB-7-GOL ZDB-7-GOL Greenleaf Online Library (GOL) +http://lobid.org/organisations/ZDB-194-NBW#! ZDB-194-NBW ZDB-194-NBW NBER Working Papers +http://lobid.org/organisations/ZDB-128-VJS#! ZDB-128-VJS ZDB-128-VJS Beck eLibrary / Vahlen Jura Strafrecht +http://lobid.org/organisations/ZDB-128-MWB#! ZDB-128-MWB ZDB-128-MWB Beck eLibrary / MWV Krankenhausmanagement Basispaket +http://lobid.org/organisations/ZDB-120-SVF#! ZDB-120-SVF ZDB-120-SVF Franz Steiner Verlag eLibrary / Geographie +http://lobid.org/organisations/ZDB-138-AMH#! ZDB-138-AMH ZDB-138-AMH AMS ebooks / History of Mathematics +http://lobid.org/organisations/ZDB-128-UTM#! ZDB-128-UTM ZDB-128-UTM Beck eLibrary / UVK Tourismusmanagement +http://lobid.org/organisations/ZDB-117-BKU#! ZDB-117-BKU ZDB-117-BKU V&R eLibrary / Böhlau Kunst und Architektur +http://lobid.org/organisations/ZDB-18-BOS#! ZDB-18-BOS ZDB-18-BOS beck-online / Steuerberater OPTIMUM +http://lobid.org/organisations/ZDB-162-HPU#! ZDB-162-HPU ZDB-162-HPU Bloomsbury Collections / Hart Publishing +http://lobid.org/organisations/ZDB-195-MCR#! ZDB-195-MCR ZDB-195-MCR Al Manhal eBook collections / Contemporary References +http://lobid.org/organisations/ZDB-195-MHG#! ZDB-195-MHG ZDB-195-MHG Al Manhal eBook collections / History, Geography & Biography +http://lobid.org/organisations/ZDB-23-DLS#! ZDB-23-DLS ZDB-23-DLS De Gruyter Book Archive / Linguistics and Semiotics +http://lobid.org/organisations/ZDB-95-SFH#! ZDB-95-SFH ZDB-95-SFH Brill Online / Schöningh and Fink History: Early Modern and Modern History E-Books Online +http://lobid.org/organisations/ZDB-28-OLP#! ZDB-28-OLP ZDB-28-OLP Oxford Scholarly Editions Online / Latin Poetry +http://lobid.org/organisations/ZDB-28-OLD#! ZDB-28-OLD ZDB-28-OLD Oxford Scholarly Editions Online / Latin Drama +http://lobid.org/organisations/ZDB-23-GPH#! ZDB-23-GPH ZDB-23-GPH De Gruyter Book Archive / Philosophy +http://lobid.org/organisations/ZDB-197-MAW#! ZDB-197-MAW ZDB-197-MAW Mohr Siebeck / Altertumswissenschaft +http://lobid.org/organisations/ZDB-197-MPH#! ZDB-197-MPH ZDB-197-MPH Mohr Siebeck / Philosophie +http://lobid.org/organisations/ZDB-23-GBA#! ZDB-23-GBA ZDB-23-GBA De Gruyter Book Archive +http://lobid.org/organisations/ZDB-1-SLV#! ZDB-1-SLV ZDB-1-SLV Slavonic bibles online: early printed Cyrillic books from the Lomonosov Moscow State University Library [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-45-CEEK#! ZDB-45-CEEK ZDB-45-CEEK Central and Eastern European Online Library (CEEOL) [Komplett] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-BCJ#! ZDB-1-BCJ ZDB-1-BCJ Biochemical Society Journals / Read & Publish (optional) [Nationalkonsortium] +http://lobid.org/organisations/ZDB-10-OIG#! ZDB-10-OIG ZDB-10-OIG Knovel Oil & Gas Engineering +http://lobid.org/organisations/ZDB-102-CAL#! ZDB-102-CAL ZDB-102-CAL Caribbean Literature +http://lobid.org/organisations/ZDB-208-ADM#! ZDB-208-ADM ZDB-208-ADM Adam Matthew Digital / Gesamtpaket +http://lobid.org/organisations/ZDB-208-LTM#! ZDB-208-LTM ZDB-208-LTM Adam Matthew Digital / Leisure, Travel and Mass Culture +http://lobid.org/organisations/ZDB-1-ANP#! ZDB-1-ANP ZDB-1-ANP Anthropology Plus [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BSM#! ZDB-18-BSM ZDB-18-BSM Beck eLibrary / SPH Management +http://lobid.org/organisations/ZDB-18-BSN#! ZDB-18-BSN ZDB-18-BSN Beck eLibrary / SPH Marketing, Vertrieb, Handel +http://lobid.org/organisations/ZDB-162-BIS#! ZDB-162-BIS ZDB-162-BIS Bloomsbury Collections / Biblical Studies +http://lobid.org/organisations/ZDB-162-ECT#! ZDB-162-ECT ZDB-162-ECT Bloomsbury Collections / Education +http://lobid.org/organisations/ZDB-162-LIN#! ZDB-162-LIN ZDB-162-LIN Bloomsbury Collections / Linguistics +http://lobid.org/organisations/ZDB-162-RES#! ZDB-162-RES ZDB-162-RES Bloomsbury Collections / Religious Studies +http://lobid.org/organisations/ZDB-48-WKI#! ZDB-48-WKI ZDB-48-WKI Wolters Kluwer Heymanns Insolvenzrecht Plus +http://lobid.org/organisations/ZDB-48-WKS#! ZDB-48-WKS ZDB-48-WKS Wolters Kluwer Sozialrecht +http://lobid.org/organisations/ZDB-213-MIB#! ZDB-213-MIB ZDB-213-MIB mitp / Business +http://lobid.org/organisations/ZDB-213-MIC#! ZDB-213-MIC ZDB-213-MIC mitp / CAD & 3D +http://lobid.org/organisations/ZDB-213-MIE#! ZDB-213-MIE ZDB-213-MIE mitp / Elektronik +http://lobid.org/organisations/ZDB-23-HLI#! ZDB-23-HLI ZDB-23-HLI Harvard University Press e-dition / Literature eBook Package +http://lobid.org/organisations/ZDB-23-HSP#! ZDB-23-HSP ZDB-23-HSP Harvard University Press e-dition / Science eBook Package +http://lobid.org/organisations/ZDB-195-MLA#! ZDB-195-MLA ZDB-195-MLA Al Manhal eBook collections / Law +http://lobid.org/organisations/ZDB-178-HHN#! ZDB-178-HHN ZDB-178-HHN hep / Herbstnovitäten +http://lobid.org/organisations/ZDB-178-HHNDA#! ZDB-178-HHNDA ZDB-178-HHNDA hep / Herbstnovitäten (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-171-LKM#! ZDB-171-LKM ZDB-171-LKM Logos / Kunst/Musik/Film/Tanz +http://lobid.org/organisations/ZDB-171-LRW#! ZDB-171-LRW ZDB-171-LRW Logos / Religionswissenschaft +http://lobid.org/organisations/ZDB-157-HIE#! ZDB-157-HIE ZDB-157-HIE Herder / Islam und Europa +http://lobid.org/organisations/ZDB-142-WQB#! ZDB-142-WQB ZDB-142-WQB WBG / Freiherr-vom-Stein-Gedächtnisausgabe - Quellen zu den Beziehungen Deutschlands zu seinen Nachbarn im 19. und 20. Jahrhundert +http://lobid.org/organisations/ZDB-142-WTF#! ZDB-142-WTF ZDB-142-WTF WBG / Texte zur Forschung +http://lobid.org/organisations/ZDB-1-NUP#! ZDB-1-NUP ZDB-1-NUP Numérique Premium : FID-Romanistik Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-173-HVE#! ZDB-173-HVE ZDB-173-HVE Haufe Lexware / Verwalter und Wohnungswirt +http://lobid.org/organisations/ZDB-216-WWR#! ZDB-216-WWR ZDB-216-WWR Westend / Wirtschaft +http://lobid.org/organisations/ZDB-1-PAO8#! ZDB-1-PAO8 ZDB-1-PAO8 Periodicals Archive Online / Kollektion 8 [FID-Lizenz] +http://lobid.org/organisations/ZDB-48-WKR#! ZDB-48-WKR ZDB-48-WKR Wolters Kluwer Arbeitsrecht +http://lobid.org/organisations/ZDB-1-GON#! ZDB-1-GON ZDB-1-GON Gregory of Nyssa (UDB-ISL) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-224-WUB#! ZDB-224-WUB ZDB-224-WUB Wunderhorn E-Books +http://lobid.org/organisations/ZDB-95-BOA#! ZDB-95-BOA ZDB-95-BOA Brill Open Access Collections +http://lobid.org/organisations/ZDB-239-IPP#! ZDB-239-IPP ZDB-239-IPP International Press / Pure Mathematics Package +http://lobid.org/organisations/ZDB-1-JMAT#! ZDB-1-JMAT ZDB-1-JMAT JSTOR : Lives of Literature Collection / Medieval Authors & Texts [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-RPE#! ZDB-1-RPE ZDB-1-RPE Russia Presidential Election 2018 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-41-SPN#! ZDB-41-SPN ZDB-41-SPN scholars-e-library / Pädagogik/ Inklusion +http://lobid.org/organisations/ZDB-142-WNW#! ZDB-142-WNW ZDB-142-WNW WBG / Naturwissenschaften +http://lobid.org/organisations/ZDB-219-DZE#! ZDB-219-DZE ZDB-219-DZE dpunkt.verlag / Zeichnen +http://lobid.org/organisations/ZDB-219-DWE#! ZDB-219-DWE ZDB-219-DWE dpunkt.verlag / Webentwicklung +http://lobid.org/organisations/ZDB-219-DVF#! ZDB-219-DVF ZDB-219-DVF dpunkt.verlag / Fotoschulen +http://lobid.org/organisations/ZDB-219-DAI#! ZDB-219-DAI ZDB-219-DAI dpunkt.verlag / Administration & IT-Sicherheit +http://lobid.org/organisations/ZDB-219-ODS#! ZDB-219-ODS ZDB-219-ODS O'Reilly / Data Science & Deep Learning +http://lobid.org/organisations/ZDB-1-RNB#! ZDB-1-RNB ZDB-1-RNB Rossijskaja nacional'naja bibliografija = Russian national bibliography [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-245-NPR#! ZDB-245-NPR ZDB-245-NPR NWB PRO +http://lobid.org/organisations/ZDB-72-SIB#! ZDB-72-SIB ZDB-72-SIB SIAM Proceedings +http://lobid.org/organisations/ZDB-5-WVV#! ZDB-5-WVV ZDB-5-WVV wiso VVW Versicherungswirtschaft +http://lobid.org/organisations/ZDB-18-KPB#! ZDB-18-KPB ZDB-18-KPB beck-online / KOMMUNALPRAXIS Brandenburg PLUS +http://lobid.org/organisations/ZDB-245-NWB#! ZDB-245-NWB ZDB-245-NWB NWB Datenbank +http://lobid.org/organisations/ZDB-215-API#! ZDB-215-API ZDB-215-API Aisthesis / Philosophie +http://lobid.org/organisations/ZDB-1-IGA#! ZDB-1-IGA ZDB-1-IGA IG Publishing Asian Studies collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-VWR#! ZDB-18-VWR ZDB-18-VWR Beck eLibrary / C.H. Beck Verwaltungsrecht/Europarecht +http://lobid.org/organisations/ZDB-18-VKI#! ZDB-18-VKI ZDB-18-VKI Beck eLibrary / Versus Kommunikation & Innovation +http://lobid.org/organisations/ZDB-1-CJAC#! ZDB-1-CJAC ZDB-1-CJAC Diaolong Full-text Database of Chinese & Japanese Ancient Books / Sibu congkan [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAE#! ZDB-1-CJAE ZDB-1-CJAE Diaolong Full-text Database of Chinese & Japanese Ancient Books / Gujin tushu jicheng [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAH#! ZDB-1-CJAH ZDB-1-CJAH Diaolong Full-text Database of Chinese & Japanese Ancient Books / Zhongguo difangzhi (1.Slg) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAI#! ZDB-1-CJAI ZDB-1-CJAI Diaolong Full-text Database of Chinese & Japanese Ancient Books / Zhongguo difangzhi (2.Slg) [FID-Lizenz] +http://lobid.org/organisations/ZDB-4-NXH#! ZDB-4-NXH ZDB-4-NXH EBSCO Nursing & Allied Health Collection: Expanded +http://lobid.org/organisations/ZDB-4-NYH#! ZDB-4-NYH ZDB-4-NYH EBSCO Nursing & Allied Health Collection: Comprehensive +http://lobid.org/organisations/ZDB-4-ULH#! ZDB-4-ULH ZDB-4-ULH EBSCO MAS Ultra - School Edition +http://lobid.org/organisations/ZDB-4-UKH#! ZDB-4-UKH ZDB-4-UKH EBSCO UK/EIRE Reference Centre +http://lobid.org/organisations/ZDB-4-TFH#! ZDB-4-TFH ZDB-4-TFH EBSCO Professional Development Collection +http://lobid.org/organisations/ZDB-4-BMH#! ZDB-4-BMH ZDB-4-BMH EBSCO Biomedical Reference Collection: Basic +http://lobid.org/organisations/ZDB-4-BEH#! ZDB-4-BEH ZDB-4-BEH EBSCO Biomedical Reference Collection: Expanded +http://lobid.org/organisations/ZDB-4-HBH#! ZDB-4-HBH ZDB-4-HBH EBSCO Health Business FullTEXT +http://lobid.org/organisations/ZDB-4-AWH#! ZDB-4-AWH ZDB-4-AWH EBSCO Alt HealthWatch +http://lobid.org/organisations/ZDB-4-LTH#! ZDB-4-LTH ZDB-4-LTH EBSCO MedicLatina +http://lobid.org/organisations/ZDB-1-ACS#! ZDB-1-ACS ZDB-1-ACS ACS Legacy Archives [Nationallizenz] +http://lobid.org/organisations/ZDB-1-RSC#! ZDB-1-RSC ZDB-1-RSC RSC Journals Super Archive [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SOJ#! ZDB-1-SOJ ZDB-1-SOJ Springer Online Journal Archives [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EIO#! ZDB-1-EIO ZDB-1-EIO Torrossa / Monografie [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DNS#! ZDB-1-DNS ZDB-1-DNS Digital National Security Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ATS#! ZDB-1-ATS ZDB-1-ATS Acta Sanctorum Database [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ULA#! ZDB-1-ULA ZDB-1-ULA Ut per litteras apostolicas [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DFL#! ZDB-1-DFL ZDB-1-DFL Deutschsprachige Frauenliteratur des 18. & 19. Jahrhunderts, Teil 1 und 2 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-AHM#! ZDB-1-AHM ZDB-1-AHM Analecta Hymnica Medii Aevi [Nationallizenz] +http://lobid.org/organisations/ZDB-1-WFR#! ZDB-1-WFR ZDB-1-WFR Wales related Fiction of the Romantic Period [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CAJ#! ZDB-1-CAJ ZDB-1-CAJ China Academic Journals (CAJ) [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-THC#! ZDB-1-THC ZDB-1-THC Testaments to the Holocaust [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ECC#! ZDB-1-ECC ZDB-1-ECC Eighteenth Century Collections Online / ECCO [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PGL#! ZDB-1-PGL ZDB-1-PGL Patrologia graeca [Nationallizenz] +http://lobid.org/organisations/ZDB-4-A2H#! ZDB-4-A2H ZDB-4-A2H EBSCO Academic Search Alumni Edition +http://lobid.org/organisations/ZDB-4-QRH#! ZDB-4-QRH ZDB-4-QRH EBSCO LGBT Life +http://lobid.org/organisations/ZDB-4-QTH#! ZDB-4-QTH ZDB-4-QTH EBSCO LGBT Life with Full Text +http://lobid.org/organisations/ZDB-4-SCH#! ZDB-4-SCH ZDB-4-SCH EBSCO Science Reference Center +http://lobid.org/organisations/ZDB-4-SIH#! ZDB-4-SIH ZDB-4-SIH EBSCO SocINDEX with Full Text +http://lobid.org/organisations/ZDB-1-ASC#! ZDB-1-ASC ZDB-1-ASC Art Sales Catalogues Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CPC#! ZDB-1-CPC ZDB-1-CPC Crop Protection Compendium [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SPC#! ZDB-1-SPC ZDB-1-SPC Scriptores possessoresque codicum medii aevi [Nationallizenz] +http://lobid.org/organisations/ZDB-2-ADE#! ZDB-2-ADE ZDB-2-ADE Springer ebook collection / Architecture and Design +http://lobid.org/organisations/ZDB-2-SGR#! ZDB-2-SGR ZDB-2-SGR Springer ebook collection / Geistes- und Sozialwissenschaften, Recht +http://lobid.org/organisations/ZDB-2-SHU#! ZDB-2-SHU ZDB-2-SHU Springer ebook collection / Humanities, Social Science & Law +http://lobid.org/organisations/ZDB-2-SMA#! ZDB-2-SMA ZDB-2-SMA Springer ebook collection / Mathematics and Statistics +http://lobid.org/organisations/ZDB-2-SME#! ZDB-2-SME ZDB-2-SME Springer ebook collection / Medicine +http://lobid.org/organisations/ZDB-2-PHA#! ZDB-2-PHA ZDB-2-PHA Springer ebook collection / Physics and Astronomy +http://lobid.org/organisations/ZDB-2-STI#! ZDB-2-STI ZDB-2-STI Springer ebook collection / Technik und Informatik +http://lobid.org/organisations/ZDB-2-SBE#! ZDB-2-SBE ZDB-2-SBE Springer ebook collection / Business and Economics +http://lobid.org/organisations/ZDB-6-STC#! ZDB-6-STC ZDB-6-STC Project MUSE Standard Collection +http://lobid.org/organisations/ZDB-1-OJDK#! ZDB-1-OJDK ZDB-1-OJDK Oxford Journals Complete / Full Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-HCP#! ZDB-1-HCP ZDB-1-HCP 18th/19th/20th Century House of Commons Parliamentary Papers [Nationallizenz] +http://lobid.org/organisations/ZDB-15-ACM#! ZDB-15-ACM ZDB-15-ACM ACM Digital Library +http://lobid.org/organisations/ZDB-1-JHG#! ZDB-1-JHG ZDB-1-JHG JSTOR : Health & General Sciences Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JLL#! ZDB-1-JLL ZDB-1-JLL JSTOR : Language & Literature Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JLS#! ZDB-1-JLS ZDB-1-JLS JSTOR : Life Sciences Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JP2#! ZDB-1-JP2 ZDB-1-JP2 JSTOR : Public Library II Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-AHN#! ZDB-1-AHN ZDB-1-AHN America's Historical Newspapers [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SCA#! ZDB-1-SCA ZDB-1-SCA Science Classic Archiv [Nationallizenz] +http://lobid.org/organisations/ZDB-2-LNM#! ZDB-2-LNM ZDB-2-LNM Springer Lecture Notes in Mathematics +http://lobid.org/organisations/ZDB-1-JCO#! ZDB-1-JCO ZDB-1-JCO Journal of Clinical Oncology Legacy Archive (ASCO) 1983-1998 [Nationallizenz] +http://lobid.org/organisations/ZDB-23-DGS#! ZDB-23-DGS ZDB-23-DGS De Gruyter Handbücher zur Sprach- und Kommunikationswissenschaft +http://lobid.org/organisations/ZDB-29-ENB#! ZDB-29-ENB ZDB-29-ENB ENGnetBASE +http://lobid.org/organisations/ZDB-10-CHE#! ZDB-10-CHE ZDB-10-CHE Knovel Chemistry & Chemical Engineering +http://lobid.org/organisations/ZDB-10-EPE#! ZDB-10-EPE ZDB-10-EPE Knovel Electrical & Power Engineering +http://lobid.org/organisations/ZDB-10-GER#! ZDB-10-GER ZDB-10-GER Knovel General Engineering References +http://lobid.org/organisations/ZDB-28-DRS#! ZDB-28-DRS ZDB-28-DRS Oxford Reference Library +http://lobid.org/organisations/ZDB-28-ORP#! ZDB-28-ORP ZDB-28-ORP Oxford Reference Online / Oxford Reference Collection Premium +http://lobid.org/organisations/ZDB-33-SDR#! ZDB-33-SDR ZDB-33-SDR Elsevier Online Books on ScienceDirect / Reference Works +http://lobid.org/organisations/ZDB-33-PCH#! ZDB-33-PCH ZDB-33-PCH Elsevier e-book collection - Psychology +http://lobid.org/organisations/ZDB-35-WIC#! ZDB-35-WIC ZDB-35-WIC Wiley InterScience Online Books +http://lobid.org/organisations/ZDB-32-SBO#! ZDB-32-SBO ZDB-32-SBO Safari Books Online +http://lobid.org/organisations/ZDB-88-LEG#! ZDB-88-LEG ZDB-88-LEG OVS Module in juris +http://lobid.org/organisations/ZDB-1-BEC#! ZDB-1-BEC ZDB-1-BEC Brill / Human Rights and Humanitarian Law E-Books Online; International Law E-Books Online 2006-2008 [Nationallizenz] +http://lobid.org/organisations/ZDB-37-IEA#! ZDB-37-IEA ZDB-37-IEA IEEE All Society Periodicals Package +http://lobid.org/organisations/ZDB-2-PBM#! ZDB-2-PBM ZDB-2-PBM Springer ebook collection / Palgrave Business & Management Collection +http://lobid.org/organisations/ZDB-1-SCM#! ZDB-1-SCM ZDB-1-SCM Springer ebook collection / Chemistry and Materials Science 2005-2008 [Nationallizenz] +http://lobid.org/organisations/ZDB-28-OST#! ZDB-28-OST ZDB-28-OST Oxford Scholarship Online / Political Science +http://lobid.org/organisations/ZDB-23-DGD#! ZDB-23-DGD ZDB-23-DGD De Gruyter E-Books / Altertumswissenschaften +http://lobid.org/organisations/ZDB-1-NAA#! ZDB-1-NAA ZDB-1-NAA The Nation Digital Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-43-HSB#! ZDB-43-HSB ZDB-43-HSB Wilhelm von Humboldts sprachwissenschaftliche Bibliothek +http://lobid.org/organisations/ZDB-33-BMT#! ZDB-33-BMT ZDB-33-BMT Elsevier e-book collection - Business, Management, Hospitality, and Tourism +http://lobid.org/organisations/ZDB-33-COS#! ZDB-33-COS ZDB-33-COS Elsevier e-book collection - Computer Science +http://lobid.org/organisations/ZDB-33-FIN#! ZDB-33-FIN ZDB-33-FIN Elsevier e-book collection - Finance +http://lobid.org/organisations/ZDB-28-OMO#! ZDB-28-OMO ZDB-28-OMO Oxford music online +http://lobid.org/organisations/ZDB-33-GPC#! ZDB-33-GPC ZDB-33-GPC Elsevier ScienceDirect German Premium Collection 2003-2008 +http://lobid.org/organisations/ZDB-48-LNR#! ZDB-48-LNR ZDB-48-LNR Jurion +http://lobid.org/organisations/ZDB-49-OLR#! ZDB-49-OLR ZDB-49-OLR Olms Online / Reprints +http://lobid.org/organisations/ZDB-42-OGE#! ZDB-42-OGE ZDB-42-OGE Oldenbourg / Geschichte +http://lobid.org/organisations/ZDB-42-OEG#! ZDB-42-OEG ZDB-42-OEG Oldenbourg / Enzyklopädie deutscher Geschichte +http://lobid.org/organisations/ZDB-52-TAL#! ZDB-52-TAL ZDB-52-TAL HeinOnline / Treaties and Agreements Library +http://lobid.org/organisations/ZDB-52-USP#! ZDB-52-USP ZDB-52-USP HeinOnline / U.S. Presidential Library +http://lobid.org/organisations/ZDB-1-ZBM#! ZDB-1-ZBM ZDB-1-ZBM Zentralblatt MATH [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SAGB#! ZDB-1-SAGB ZDB-1-SAGB Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGS#! ZDB-1-SAGS ZDB-1-SAGS Sage Journals Online Publish & Read / Science Technology Medicine (STM) [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-ZBMK#! ZDB-1-ZBMK ZDB-1-ZBMK Zentralblatt MATH [Komplett] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-52-NMC#! ZDB-52-NMC ZDB-52-NMC HeinOnline / National Moot Court Competition +http://lobid.org/organisations/ZDB-54-DHP#! ZDB-54-DHP ZDB-54-DHP Duncker & Humblot eLibrary / Paket WISO (Wirtschafts- und Sozialwissenschaften) +http://lobid.org/organisations/ZDB-54-DHH#! ZDB-54-DHH ZDB-54-DHH Duncker & Humblot eLibrary / Paket HIST (Geschichte) +http://lobid.org/organisations/ZDB-58-IHC#! ZDB-58-IHC ZDB-58-IHC Informa Healthcare Online Books / Complete Collection +http://lobid.org/organisations/ZDB-23-DGH#! ZDB-23-DGH ZDB-23-DGH De Gruyter e-dition: Best of German Studies / Germanistik +http://lobid.org/organisations/ZDB-23-DGJ#! ZDB-23-DGJ ZDB-23-DGJ De Gruyter e-dition: Best of Classical Studies / Altertum +http://lobid.org/organisations/ZDB-23-DGU#! ZDB-23-DGU ZDB-23-DGU De Gruyter e-dition: Best of Physics / Physik +http://lobid.org/organisations/ZDB-59-BPS#! ZDB-59-BPS ZDB-59-BPS Beltz Pädagogik Studium +http://lobid.org/organisations/ZDB-59-BPU#! ZDB-59-BPU ZDB-59-BPU Beltz Pädagogik Unterricht +http://lobid.org/organisations/ZDB-16-HET#! ZDB-16-HET ZDB-16-HET Hanser eLibrary / IT +http://lobid.org/organisations/ZDB-16-HEK#! ZDB-16-HEK ZDB-16-HEK Hanser eLibrary / Konstruktion +http://lobid.org/organisations/ZDB-16-HES#! ZDB-16-HES ZDB-16-HES Hanser eLibrary / Kunststofftechnik +http://lobid.org/organisations/ZDB-16-HEW#! ZDB-16-HEW ZDB-16-HEW Hanser eLibrary / Wirtschaft +http://lobid.org/organisations/ZDB-74-AKG#! ZDB-74-AKG ZDB-74-AKG akademie-link / Geschichte +http://lobid.org/organisations/ZDB-74-AKA#! ZDB-74-AKA ZDB-74-AKA akademie-link / Aristoteles +http://lobid.org/organisations/ZDB-1-CUBC#! ZDB-1-CUBC ZDB-1-CUBC Cambridge Books Online / Classical Studies [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBE#! ZDB-1-CUBE ZDB-1-CUBE Cambridge Books Online / Language and Linguistics [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBH#! ZDB-1-CUBH ZDB-1-CUBH Cambridge Books Online / Music [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBJ#! ZDB-1-CUBJ ZDB-1-CUBJ Cambridge Books Online / Politics [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-WCD#! ZDB-1-WCD ZDB-1-WCD World Christian Database [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBA#! ZDB-41-UTBA ZDB-41-UTBA utb-studi-e-book / BWL und VWL +http://lobid.org/organisations/ZDB-41-UTBC#! ZDB-41-UTBC ZDB-41-UTBC utb-studi-e-book / Geowissenschaften +http://lobid.org/organisations/ZDB-41-UTBD#! ZDB-41-UTBD ZDB-41-UTBD utb-studi-e-book / Geschichte +http://lobid.org/organisations/ZDB-41-UTBF#! ZDB-41-UTBF ZDB-41-UTBF utb-studi-e-book / Literaturwissenschaften +http://lobid.org/organisations/ZDB-41-UTBL#! ZDB-41-UTBL ZDB-41-UTBL utb-studi-e-book / Psychologie +http://lobid.org/organisations/ZDB-41-UTBP#! ZDB-41-UTBP ZDB-41-UTBP utb-studi-e-book / Sprachwissenschaft +http://lobid.org/organisations/ZDB-41-UTBQ#! ZDB-41-UTBQ ZDB-41-UTBQ utb-studi-e-book / Theologie und Religion +http://lobid.org/organisations/ZDB-37-IED#! ZDB-37-IED ZDB-37-IED IEEE Computer Society Digital Library +http://lobid.org/organisations/ZDB-1-APAC#! ZDB-1-APAC ZDB-1-APAC Apabi / eBooks collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAE#! ZDB-1-APAE ZDB-1-APAE Apabi / China reference books collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAG#! ZDB-1-APAG ZDB-1-APAG Apabi / Ancient Books of Traditional Chinese Medicine [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WAN#! ZDB-1-WAN ZDB-1-WAN Wanfang / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WANB#! ZDB-1-WANB ZDB-1-WANB Wanfang / New Local Gazetteers [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CRB#! ZDB-1-CRB ZDB-1-CRB China Rare Book Reprinted Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-162-POM#! ZDB-162-POM ZDB-162-POM Bloomsbury Popular Music +http://lobid.org/organisations/ZDB-254-IBI#! ZDB-254-IBI ZDB-254-IBI ibidem-Verlag E-Books +http://lobid.org/organisations/ZDB-201-MFS#! ZDB-201-MFS ZDB-201-MFS Manchester Film Studies +http://lobid.org/organisations/ZDB-48-KIP#! ZDB-48-KIP ZDB-48-KIP Kluwer IP Law +http://lobid.org/organisations/ZDB-1-AP18#! ZDB-1-AP18 ZDB-1-AP18 Azerbaijan Presidential Election 2018 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GP16#! ZDB-1-GP16 ZDB-1-GP16 Georgia Parliamentary Election 2016 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-117-EUG#! ZDB-117-EUG ZDB-117-EUG V&R eLibrary / Böhlau Europäische Geschichte +http://lobid.org/organisations/ZDB-18-NLG#! ZDB-18-NLG ZDB-18-NLG Nomos eLibrary / Studienliteratur Gesundheit und Pflege +http://lobid.org/organisations/ZDB-18-NLR#! ZDB-18-NLR ZDB-18-NLR Nomos eLibrary / Studienliteratur Religion +http://lobid.org/organisations/ZDB-1-ERC#! ZDB-1-ERC ZDB-1-ERC Eastview eBooks / Essential Russian Classics [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JLTE#! ZDB-1-JLTE ZDB-1-JLTE JSTOR : Lives of Literature Extension / Literary Theorists [Nationalkonsortium] +http://lobid.org/organisations/ZDB-260-MPD#! ZDB-260-MPD ZDB-260-MPD MIT Press Direct +http://lobid.org/organisations/ZDB-1-KVZ#! ZDB-1-KVZ ZDB-1-KVZ Kavkaz : věstnik pravitelʹstva Gruzii [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-162-BMD#! ZDB-162-BMD ZDB-162-BMD Bloomsbury Collections / Middle East +http://lobid.org/organisations/ZDB-1-SAGB2#! ZDB-1-SAGB2 ZDB-1-SAGB2 Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine / Upgrade für 2015 bis Mitte 2016 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-95-CNT#! ZDB-95-CNT ZDB-95-CNT Primary Sources / Biblical Studies / Critical Editions of the New Testament Online +http://lobid.org/organisations/ZDB-23-PLW#! ZDB-23-PLW ZDB-23-PLW De Gruyter eBook-Paket Politikwissenschaft +http://lobid.org/organisations/ZDB-87-FOI#! ZDB-87-FOI ZDB-87-FOI Classiques Garnier Numérique / Corpus de la première littérature francophone de l'Océan Indien +http://lobid.org/organisations/ZDB-142-WDP#! ZDB-142-WDP ZDB-142-WDP WBG / Deutsch-Polnische Geschichte +http://lobid.org/organisations/ZDB-157-HDO#! ZDB-157-HDO ZDB-157-HDO Herder / Deutschland und Osteuropa 1989 +http://lobid.org/organisations/ZDB-126-OWL#! ZDB-126-OWL ZDB-126-OWL oekom verlag / Wirtschaft & Landwirtschaft +http://lobid.org/organisations/ZDB-18-BJSA#! ZDB-18-BJSA ZDB-18-BJSA Beck eLibrary / C.H. Beck Jura Soziale Arbeit +http://lobid.org/organisations/ZDB-157-APG#! ZDB-157-APG ZDB-157-APG Verlag Karl Alber / Philosophiegeschichte +http://lobid.org/organisations/ZDB-236-ETWR#! ZDB-236-ETWR ZDB-236-ETWR edition text+kritik / Kultur in der Weimarer Republik +http://lobid.org/organisations/ZDB-236-ETLP#! ZDB-236-ETLP ZDB-236-ETLP edition text+kritik / Literatur im Porträt +http://lobid.org/organisations/ZDB-236-ETLE#! ZDB-236-ETLE ZDB-236-ETLE edition text+kritik / Literatur Plus Exil +http://lobid.org/organisations/ZDB-41-SKA#! ZDB-41-SKA ZDB-41-SKA scholars-e-library / Kunst/ Kultur/ Musik/ Theater/ Backlist Athena +http://lobid.org/organisations/ZDB-41-SQD#! ZDB-41-SQD ZDB-41-SQD scholars-e-library / Pädagogik (allg.) / Backlist Athena +http://lobid.org/organisations/ZDB-262-CPE#! ZDB-262-CPE ZDB-262-CPE Cherry Media / Persönlichkeitsentwicklung +http://lobid.org/organisations/ZDB-54-DKSG#! ZDB-54-DKSG ZDB-54-DKSG Duncker & Humblot eLibrary / Kollektion 70 Jahre Grundgesetz +http://lobid.org/organisations/ZDB-2-SXB#! ZDB-2-SXB ZDB-2-SXB Springer Nature / Biomedical and Life Sciences (R0) +http://lobid.org/organisations/ZDB-2-SXC#! ZDB-2-SXC ZDB-2-SXC Springer Nature / Chemistry and Material Science (R0) +http://lobid.org/organisations/ZDB-2-SXEE#! ZDB-2-SXEE ZDB-2-SXEE Springer Nature / Earth and Environmental Science (R0) +http://lobid.org/organisations/ZDB-2-SXM#! ZDB-2-SXM ZDB-2-SXM Springer Nature / Medicine (R0) +http://lobid.org/organisations/ZDB-2-SXEF#! ZDB-2-SXEF ZDB-2-SXEF Springer Nature / Economics and Finance (R0) +http://lobid.org/organisations/ZDB-2-SXED#! ZDB-2-SXED ZDB-2-SXED Springer Nature / Education (R0) +http://lobid.org/organisations/ZDB-2-SXRM#! ZDB-2-SXRM ZDB-2-SXRM Springer Nature / Reference Module Medicine +http://lobid.org/organisations/ZDB-267-KEL#! ZDB-267-KEL ZDB-267-KEL Kogan Page / Ebook Collection Logistics +http://lobid.org/organisations/ZDB-41-UTBZ#! ZDB-41-UTBZ ZDB-41-UTBZ utb-studi-e-book / Tourismus +http://lobid.org/organisations/ZDB-265-AFC#! ZDB-265-AFC ZDB-265-AFC AVA Library / Film collection +http://lobid.org/organisations/ZDB-34-THLO#! ZDB-34-THLO ZDB-34-THLO Thieme / Logopädie +http://lobid.org/organisations/ZDB-34-THP#! ZDB-34-THP ZDB-34-THP Thieme / Psychiatrie +http://lobid.org/organisations/ZDB-34-TKPA#! ZDB-34-TKPA ZDB-34-TKPA Thieme Klinik Praxis / Anästhesie, Intensiv- und Notfallmedizin +http://lobid.org/organisations/ZDB-34-TKPH#! ZDB-34-TKPH ZDB-34-TKPH Thieme Klinik Praxis / HNO +http://lobid.org/organisations/ZDB-92-LOE#! ZDB-92-LOE ZDB-92-LOE Liverpool University Press / Oxford University Studies in the Enlightenment ONLINE +http://lobid.org/organisations/ZDB-1-AAN1#! ZDB-1-AAN1 ZDB-1-AAN1 African American Newspapers : Series 1 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SOF#! ZDB-1-SOF ZDB-1-SOF Socialism on Film [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-142-WES#! ZDB-142-WES ZDB-142-WES WBG / E-Books +http://lobid.org/organisations/ZDB-271-ADC#! ZDB-271-ADC ZDB-271-ADC Artfilms Digital +http://lobid.org/organisations/ZDB-48-KLCL#! ZDB-48-KLCL ZDB-48-KLCL Kluwer Competition Law +http://lobid.org/organisations/ZDB-273-OSBM#! ZDB-273-OSBM ZDB-273-OSBM Otto Schmidt / Beratermodul Erich Fleischer Ausbildung und Praxis Steuerrecht +http://lobid.org/organisations/ZDB-4-EEPS#! ZDB-4-EEPS ZDB-4-EEPS EBSCO eBooks Psychology Subscription Collection +http://lobid.org/organisations/ZDB-34-TCC#! ZDB-34-TCC ZDB-34-TCC Thieme / Clinical Collections +http://lobid.org/organisations/ZDB-34-THIV#! ZDB-34-THIV ZDB-34-THIV Thieme E-Book Library / Veterinärmedizin +http://lobid.org/organisations/ZDB-1-KAZ#! ZDB-1-KAZ ZDB-1-KAZ KoreaA2Z [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CHIA#! ZDB-1-CHIA ZDB-1-CHIA Chosun Ilbo Archive [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KRPI#! ZDB-1-KRPI ZDB-1-KRPI Krpia [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SCL#! ZDB-1-SCL ZDB-1-SCL Scholar [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKF#! ZDB-1-JAKF ZDB-1-JAKF JapanKnowledge / Fuzoku gaho [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKI#! ZDB-1-JAKI ZDB-1-JAKI JapanKnowledge / Shinpen Kokka Taikan [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ASSH#! ZDB-1-ASSH ZDB-1-ASSH Kikuzo II Visual for libraries [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OKT#! ZDB-1-OKT ZDB-1-OKT Okinawa Times kiji detabesu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ZBZ#! ZDB-1-ZBZ ZDB-1-ZBZ Zofukuin bunko zenpon shusei [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OYA#! ZDB-1-OYA ZDB-1-OYA Web Oya-bunko [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKG#! ZDB-1-CNKG ZDB-1-CNKG CNKI / China yearbooks full-text database : CYFD [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WAND#! ZDB-1-WAND ZDB-1-WAND Wanfang / China online journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BDAC#! ZDB-18-BDAC ZDB-18-BDAC Beck eLibrary / Deutscher Ärzteverlag Medizin +http://lobid.org/organisations/ZDB-18-BDAD#! ZDB-18-BDAD ZDB-18-BDAD Beck eLibrary / Deutscher Ärzteverlag Zahnmedizin - Behandlung und Praxismanagement +http://lobid.org/organisations/ZDB-18-NLBR#! ZDB-18-NLBR ZDB-18-NLBR Nomos eLibrary / Bürgerliches Recht +http://lobid.org/organisations/ZDB-41-STE#! ZDB-41-STE ZDB-41-STE scholars-e-library / Theologie, Exegese +http://lobid.org/organisations/ZDB-41-STKG#! ZDB-41-STKG ZDB-41-STKG scholars-e-library / Theologie, Kirchengeschichte +http://lobid.org/organisations/ZDB-41-SGG#! ZDB-41-SGG ZDB-41-SGG scholars-e-library / Geschichte, Geschichtsdidaktik +http://lobid.org/organisations/ZDB-277-FTG#! ZDB-277-FTG ZDB-FTG Frank & Timme / Erziehungswissenschaft und Inklusion +http://lobid.org/organisations/ZDB-5-WLSP#! ZDB-5-WLSP ZDB-5-WLSP wiso Lecturio Software & Programmieren +http://lobid.org/organisations/ZDB-277-FTO#! ZDB-277-FTO ZDB-277-FTO Frank & Timme / Geschichtswissenschaft +http://lobid.org/organisations/ZDB-136-SHB#! ZDB-136-SHB ZDB-136-SHB Suhrkamp / Handke Bibliothek (Bd. 1-13) +http://lobid.org/organisations/ZDB-157-ATP#! ZDB-157-ATP ZDB-157-ATP Verlag Karl Alber / Theoretische Philosophie +http://lobid.org/organisations/ZDB-279-TBC#! ZDB-279-TBC ZDB-279-TBC Traugott Bautz Verlag / Bibliographien +http://lobid.org/organisations/ZDB-279-TBF#! ZDB-279-TBF ZDB-279-TBF Traugott Bautz Verlag / Biographien +http://lobid.org/organisations/ZDB-279-TBEL#! ZDB-279-TBEL ZDB-279-TBEL Traugott Bautz Verlag / Ethnologie +http://lobid.org/organisations/ZDB-279-TBG#! ZDB-279-TBG ZDB-279-TBG Traugott Bautz Verlag / Germanistik +http://lobid.org/organisations/ZDB-279-TBH#! ZDB-279-TBH ZDB-279-TBH Traugott Bautz Verlag / Geschichte +http://lobid.org/organisations/ZDB-279-TBMW#! ZDB-279-TBMW ZDB-279-TBMW Traugott Bautz Verlag / Musikwissenschaft +http://lobid.org/organisations/ZDB-279-TBS#! ZDB-279-TBS ZDB-279-TBS Traugott Bautz Verlag / Sozialwissenschaften +http://lobid.org/organisations/ZDB-278-ZUT#! ZDB-278-ZUT ZDB-278-ZUT Zuckschwerdt Verlag / TZM Manuale +http://lobid.org/organisations/ZDB-278-ZUO#! ZDB-278-ZUO ZDB-278-ZUO Zuckschwerdt Verlag / Onkologie +http://lobid.org/organisations/ZDB-1-FPDC#! ZDB-1-FPDC ZDB-1-FPDC Philosophy Document Center E-Collection FID Philosophie [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TTV#! ZDB-1-TTV ZDB-1-TTV Thieme-Transformationsvertrag [Open Access / Open-Access-Transformationsvertrag] +http://lobid.org/organisations/ZDB-162-FVA#! ZDB-162-FVA ZDB-162-FVA Bloomsbury / Fashion Video Archive +http://lobid.org/organisations/ZDB-277-FTZE#! ZDB-277-FTZE ZDB-277-FTZE Frank & Timme / Sanssouci +http://lobid.org/organisations/ZDB-277-FTZF#! ZDB-277-FTZF ZDB-277-FTZF Frank & Timme / Slawistik +http://lobid.org/organisations/ZDB-277-FTZG#! ZDB-277-FTZG ZDB-277-FTZG Frank & Timme / Soziale Arbeit, Sozialpädagogik, Psychologie +http://lobid.org/organisations/ZDB-277-FTZK#! ZDB-277-FTZK ZDB-277-FTZK Frank & Timme / Sprechwissenschaft, Phonetik und Rhetorik +http://lobid.org/organisations/ZDB-48-WKW#! ZDB-48-WKW ZDB-48-WKW Wolters Kluwer Online / Wirtschaftsrecht +http://lobid.org/organisations/ZDB-1-BMJJ#! ZDB-1-BMJJ ZDB-1-BMJJ BMJ Journals / The BMJ [Nationalkonsortium] +http://lobid.org/organisations/ZDB-22-CWN#! ZDB-22-CWN ZDB-22-CWN Ciando / Lehrbuchpaket Wiley Nebenfach +http://lobid.org/organisations/ZDB-1-LAMA#! ZDB-1-LAMA ZDB-1-LAMA Latin American Anarchist and Labour Periodicals Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-281-VDC#! ZDB-281-VDC ZDB-281-VDC VDI Verlag-eLibrary / Maschinenbau, Fahrzeugtechnik & Konstruktion +http://lobid.org/organisations/ZDB-281-VDD#! ZDB-281-VDD ZDB-281-VDD VDI Verlag-eLibrary / Materialwissenschaften, Produktgestaltung, Fertigung, Logistik +http://lobid.org/organisations/ZDB-91-CABN#! ZDB-91-CABN ZDB-91-CABN CABI books / Human Health & Nutrition +http://lobid.org/organisations/ZDB-91-CABP#! ZDB-91-CABP ZDB-91-CABP CABI books / Plant Sciences +http://lobid.org/organisations/ZDB-91-CABO#! ZDB-91-CABO ZDB-91-CABO CABI books / Open Access eBooks +http://lobid.org/organisations/ZDB-1-MTV#! ZDB-1-MTV ZDB-1-MTV medici.tv [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-MHC#! ZDB-1-MHC ZDB-1-MHC IG Publishing / Malaysia Historical Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-9-GRC#! ZDB-9-GRC ZDB-9-GRC Gale Reference Complete +http://lobid.org/organisations/ZDB-9-LRC#! ZDB-9-LRC ZDB-9-LRC Gale Literature Resource Center +http://lobid.org/organisations/ZDB-9-GAU#! ZDB-9-GAU ZDB-9-GAU Gale Archives Unbound +http://lobid.org/organisations/ZDB-41-SMM#! ZDB-41-SMM ZDB-41-SMM scholars-e-library / Musikwissenschaft/ Musikpädagogik +http://lobid.org/organisations/ZDB-41-SBSH#! ZDB-41-SBSH ZDB-41-SBSH scholars-e-library / Pädagogik (allg.) / Backlist Schneider Hohengehren +http://lobid.org/organisations/ZDB-41-SBS3#! ZDB-41-SBS3 ZDB-41-SBS3 scholars-e-library / Psychologie allg. / Backlist Schattauer +http://lobid.org/organisations/ZDB-41-SK4#! ZDB-41-SK4 ZDB-41-SK4 scholars-e-library / Psychotherapie / Backlist Klett-Cotta +http://lobid.org/organisations/ZDB-41-SV9#! ZDB-41-SV9 ZDB-41-SV9 scholars-e-library / Schlüsselkompetenzen / Backlist vdf +http://lobid.org/organisations/ZDB-150-PDP#! ZDB-150-PDP ZDB-150-PDP Pearson / Deutschsprachiges Paket +http://lobid.org/organisations/ZDB-283-AERC#! ZDB-283-AERC ZDB-283-AERC ARC Aerospace Research Central Ebooks +http://lobid.org/organisations/ZDB-73-CGA#! ZDB-73-CGA ZDB-73-CGA campus e-books / Geschichte Archiv +http://lobid.org/organisations/ZDB-263-SNN#! ZDB-263-SNN ZDB-263-SNN Schüren / Novitäten +http://lobid.org/organisations/ZDB-84-KTB#! ZDB-84-KTB ZDB-84-KTB Kohlhammer Theologie Basispaket +http://lobid.org/organisations/ZDB-144-BNN#! ZDB-144-BNN ZDB-144-BNN BALANCE / Novitäten +http://lobid.org/organisations/ZDB-157-HGZ#! ZDB-157-HGZ ZDB-157-HGZ Herder / Gesellschaftlicher Zusammenhalt +http://lobid.org/organisations/ZDB-157-HMI#! ZDB-157-HMI ZDB-157-HMI Herder / Militärgeschichte +http://lobid.org/organisations/ZDB-1-CPF#! ZDB-1-CPF ZDB-1-CPF 1833-1949 Chinese periodical full-text databases [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ESHJ#! ZDB-1-ESHJ ZDB-1-ESHJ Erudition / Song huiyao jigao [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-BP19#! ZDB-1-BP19 ZDB-1-BP19 Belarus Parliamentary Election 2019 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RR93#! ZDB-1-RR93 ZDB-1-RR93 Russia Referendum 1993 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SOCA#! ZDB-1-SOCA ZDB-1-SOCA Soviet Coup Attempt 1991 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-285-RMF#! ZDB-285-RMF ZDB-285-RMF Rudolf Müller / Bauleitung und Organisation +http://lobid.org/organisations/ZDB-285-RMG#! ZDB-285-RMG ZDB-285-RMG Rudolf Müller / Dachdeckung +http://lobid.org/organisations/ZDB-286-AVL#! ZDB-286-AVL ZDB-286-AVL Aschendorff Verlag / Kirchenrecht +http://lobid.org/organisations/ZDB-286-AVM#! ZDB-286-AVM ZDB-286-AVM Aschendorff Verlag / Liturgie 1 +http://lobid.org/organisations/ZDB-37-ICG#! ZDB-37-ICG ZDB-37-ICG IEEE Xplore / IEEE-IET Electronic Library (IEL) / Courses +http://lobid.org/organisations/ZDB-283-APAA#! ZDB-283-APAA ZDB-283-APAA ARC Aerospace Research Central Ebooks / Progress in Aeronautics and Astronautics +http://lobid.org/organisations/ZDB-162-BDH#! ZDB-162-BDH ZDB-162-BDH Bloomsbury digital resources / Human Kinetics library +http://lobid.org/organisations/ZDB-1-CAT#! ZDB-1-CAT ZDB-1-CAT Chinese ancient texts [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GSA#! ZDB-1-GSA ZDB-1-GSA Grand Secretariat Archives [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SCSI#! ZDB-1-SCSI ZDB-1-SCSI Scripta Sinica [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TKP#! ZDB-1-TKP ZDB-1-TKP Ta Kung Pao [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GMD#! ZDB-1-GMD ZDB-1-GMD Guangming Daily [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCCB#! ZDB-1-HCCB ZDB-1-HCCB Chinese Cultural Revolution Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCCE#! ZDB-1-HCCE ZDB-1-HCCE Chinese Great Leap Forward and Great Famine Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GOAJ#! ZDB-1-GOAJ ZDB-1-GOAJ De Gruyter Open-Acess-E-Books Jüdische Studien [FID-Lizenz] +http://lobid.org/organisations/ZDB-173-HSLB#! ZDB-173-HSLB ZDB-173-HSLB Haufe Lexware / Steuern - Lehrbuch +http://lobid.org/organisations/ZDB-124-WSBE#! ZDB-124-WSBE ZDB-124-WSBE World Scientific Publishing / Business and Economics +http://lobid.org/organisations/ZDB-1-CJAO#! ZDB-1-CJAO ZDB-1-CJAO Diaolong Full-text Database of Chinese & Japanese Ancient Books / Qingdai keju zhujuan jicheng [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAP#! ZDB-1-CJAP ZDB-1-CJAP Diaolong Full-text Database of Chinese & Japanese Ancient Books / Quan siku cunmu [FID-Lizenz] +http://lobid.org/organisations/ZDB-33-SFEN#! ZDB-33-SFEN ZDB-33-SFEN SSRN / Financial Economics Network +http://lobid.org/organisations/ZDB-288-PEG#! ZDB-288-PEG ZDB-288-PEG Papierfresserchens MTM-Verlag / E-Books +http://lobid.org/organisations/ZDB-213-MIK#! ZDB-213-MIK ZDB-213-MIK mitp / Hobby / Kreativ +http://lobid.org/organisations/ZDB-290-ERA#! ZDB-290-ERA ZDB-290-ERA Elektor / Rasperry Pi +http://lobid.org/organisations/ZDB-290-EGE#! ZDB-290-EGE ZDB-290-EGE Elektor / Grundlagen Elektronik +http://lobid.org/organisations/ZDB-162-DOH#! ZDB-162-DOH ZDB-162-DOH Drama Online / Shakespeare's Globe on Screen 1 & 2 +http://lobid.org/organisations/ZDB-41-UGPB#! ZDB-41-UGPB ZDB-41-UGPB scholars-e-library / Garten & Pflanzen / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UHGB#! ZDB-41-UHGB ZDB-41-UHGB scholars-e-library / Heilpflanzen & Gesundheit / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UIMB#! ZDB-41-UIMB ZDB-41-UIMB scholars-e-library / Imkern / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UTIB#! ZDB-41-UTIB ZDB-41-UTIB scholars-e-library / Tiere / Backlist Ulmer +http://lobid.org/organisations/ZDB-34-THVK#! ZDB-34-THVK ZDB-34-THVK Thieme eRef / Medizinstudium Vorklinik +http://lobid.org/organisations/ZDB-18-NSLW#! ZDB-18-NSLW ZDB-18-NSLW Nomos eLibrary / Studienliteratur Literaturwissenschaft +http://lobid.org/organisations/ZDB-281-VDH#! ZDB-281-VDH ZDB-281-VDH VDI Verlag-eLibrary / Fraunhofer IRB +http://lobid.org/organisations/ZDB-168-MAEM#! ZDB-168-MAEM ZDB-168-MAEM Access Emergency Medicine / EBooks +http://lobid.org/organisations/ZDB-168-MAH#! ZDB-168-MAH ZDB-168-MAH Access HemOnc / EBooks +http://lobid.org/organisations/ZDB-28-OLPR#! ZDB-28-OLPR ZDB-28-OLPR Oxford Scholarly Editions Online / Latin Prose +http://lobid.org/organisations/ZDB-28-OGC#! ZDB-28-OGC ZDB-28-OGC Oxford Scholarly Editions Online / Greek Comedy +http://lobid.org/organisations/ZDB-286-AVO#! ZDB-286-AVO ZDB-286-AVO Aschendorff Verlag / Geographie Westfalen +http://lobid.org/organisations/ZDB-34-TCCI#! ZDB-34-TCCI ZDB-34-TCCI Thieme / Clinical Collections India - TCCI +http://lobid.org/organisations/ZDB-1-UPA#! ZDB-1-UPA ZDB-1-UPA Oxford University Press : University Press Scholarship Online / Archaeology [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BRDP#! ZDB-18-BRDP ZDB-18-BRDP beck-online / Recht Digital PLUS +http://lobid.org/organisations/ZDB-260-MPOB#! ZDB-260-MPOB ZDB-260-MPOB MIT Press Direct / Direct to Open Backfile Collection +http://lobid.org/organisations/ZDB-1-BCJN#! ZDB-1-BCJN ZDB-1-BCJN Biochemical Society Journals [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SAGB5#! ZDB-1-SAGB5 ZDB-1-SAGB5 Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine / Upgrade für 2022 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-109-LAE#! ZDB-109-LAE ZDB-109-LAE Lambertus / Gesamt +http://lobid.org/organisations/ZDB-1-CID#! ZDB-1-CID ZDB-1-CID The History of Religiosity in Latin America : CIDOC-Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-95-MBA#! ZDB-95-MBA ZDB-95-MBA mentis eBooks +http://lobid.org/organisations/ZDB-77-EEI#! ZDB-77-EEI ZDB-77-EEI Edward Elgar / Essentials in Innovation +http://lobid.org/organisations/ZDB-1-MUSE#! ZDB-1-MUSE ZDB-1-MUSE Muslims of the Soviet East Digital Archive [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WRDN#! ZDB-1-WRDN ZDB-1-WRDN World religion database [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-30-LRU#! ZDB-30-LRU ZDB-30-LRU ProQuest / Die Deutsche Lyrik in Reclams Universalbibliothek +http://lobid.org/organisations/ZDB-302-SKG#! ZDB-302-SKG ZDB-302-SKG SKVdirect / Gesamt +http://lobid.org/organisations/ZDB-236-ETAT#! ZDB-236-ETAT ZDB-236-ETAT edition text+kritik / Basispaket Arno Schmidt +http://lobid.org/organisations/ZDB-236-ETSO#! ZDB-236-ETSO ZDB-236-ETSO edition text+kritik / Solo +http://lobid.org/organisations/ZDB-30-PDK#! ZDB-30-PDK ZDB-30-PDK ProQuest / Digitale Bibliothek Deutscher Klassiker im WWW +http://lobid.org/organisations/ZDB-95-ACU#! ZDB-95-ACU ZDB-95-ACU Brill / Archives of the Church of Uganda Online +http://lobid.org/organisations/ZDB-303-BVKS#! ZDB-303-BVKS ZDB-303-BVKS Bildner Verlag / Kaufmännische Software +http://lobid.org/organisations/ZDB-157-HRG#! ZDB-157-HRG ZDB-157-HRG Herder / Religion und Gesellschaft +http://lobid.org/organisations/ZDB-157-HGDR#! ZDB-157-HGDR ZDB-157-HGDR Herder / Geschichte der Religionen +http://lobid.org/organisations/ZDB-157-HGD#! ZDB-157-HGD ZDB-157-HGD Herder / Geschichte der DDR +http://lobid.org/organisations/ZDB-132-VBT#! ZDB-132-VBT ZDB-132-VBT Vogel Business Media / Bau-/Versorgungstechnik +http://lobid.org/organisations/ZDB-132-VTG#! ZDB-132-VTG ZDB-132-VTG Vogel Business Media / Technische Grundlagen +http://lobid.org/organisations/ZDB-261-BPW#! ZDB-261-BPW ZDB-261-BPW BMU Verlag / Persönlichkeitsentwicklung +http://lobid.org/organisations/ZDB-162-DOJ#! ZDB-162-DOJ ZDB-162-DOJ Drama Online / TCG Books Play Collection +http://lobid.org/organisations/ZDB-1-RTW#! ZDB-1-RTW ZDB-1-RTW Running the West Indies, 1678-1950 [FID-Lizenz] +http://lobid.org/organisations/ZDB-173-HLE#! ZDB-173-HLE ZDB-173-HLE Haufe Lexware / Ebooks [Gesamt] +http://lobid.org/organisations/ZDB-286-AWF#! ZDB-286-AWF ZDB-286-AWF Aschendorff Verlag / Westfälische Forschungen +http://lobid.org/organisations/ZDB-285-RMN#! ZDB-285-RMN ZDB-285-RMN Rudolf Müller / Novitäten +http://lobid.org/organisations/ZDB-186-WTD#! ZDB-186-WTD ZDB-186-WTD WTM-Verlag / Schriften zur allgemeinen Hochschuldidaktik +http://lobid.org/organisations/ZDB-186-WTK#! ZDB-186-WTK ZDB-186-WTK WTM-Verlag / Diversität und Inklusion im Kontext mathematischer Lehr-Lernprozesse +http://lobid.org/organisations/ZDB-186-WTP#! ZDB-186-WTP ZDB-186-WTP WTM-Verlag / Skripte zur Mathematik und ihrer Didaktik +http://lobid.org/organisations/ZDB-124-WSOA#! ZDB-124-WSOA ZDB-124-WSOA World Scientific Publishing / Open Access +http://lobid.org/organisations/ZDB-1-LISC#! ZDB-1-LISC ZDB-1-LISC Library and Information Science Collection : LISC [FID-Lizenz] +http://lobid.org/organisations/ZDB-208-CAF#! ZDB-208-CAF ZDB-208-CAF Adam Matthew Digital / Confidential Print: Africa, 1834-1966 +http://lobid.org/organisations/ZDB-41-SN2#! ZDB-41-SN2 ZDB-41-SN2 scholars-e-library / Geschichte / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN4#! ZDB-41-SN4 ZDB-41-SN4 scholars-e-library / Kunst, Kultur, Theater / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN5#! ZDB-41-SN5 ZDB-41-SN5 scholars-e-library / Literaturwissenschaft allg., Anglistik / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN6#! ZDB-41-SN6 ZDB-41-SN6 scholars-e-library / Medien & Kommunikation / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN7#! ZDB-41-SN7 ZDB-41-SN7 scholars-e-library / Philosophie / Backlist Narr +http://lobid.org/organisations/ZDB-41-SU2#! ZDB-41-SU2 ZDB-41-SU2 scholars-e-library / Medien & Kommunikation / Backlist UVK +http://lobid.org/organisations/ZDB-41-SET2#! ZDB-41-SET2 ZDB-41-SET2 scholars-e-library / Natur, Technik / Backlist expert +http://lobid.org/organisations/ZDB-41-SA7#! ZDB-41-SA7 ZDB-41-SA7 scholars-e-library / Psychotherapie / Backlist Aisthesis +http://lobid.org/organisations/ZDB-95-DSNB#! ZDB-95-DSNB ZDB-95-DSNB Brill / Dead Sea Scrolls Electronic Library Non-Biblical Texts +http://lobid.org/organisations/ZDB-95-THB#! ZDB-95-THB ZDB-95-THB Brill / Textual History of the Bible Online +http://lobid.org/organisations/ZDB-158-VVE#! ZDB-158-VVE ZDB-158-VVE VDE Verlag EBooks +http://lobid.org/organisations/ZDB-7-HUS#! ZDB-7-HUS ZDB-7-HUS Taylor & Francis eBooks / Humanities & Social Sciences +http://lobid.org/organisations/ZDB-312-BROE#! ZDB-312-BROE ZDB-312-BROE BiblioRossica Ebooks +http://lobid.org/organisations/ZDB-1-BMEN#! ZDB-1-BMEN ZDB-1-BMEN Emerald Business, Management and Economics eBook Series Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-EOBO#! ZDB-1-EOBO ZDB-1-EOBO Brill's Encyclopedia of Buddhism Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AHE#! ZDB-1-AHE ZDB-1-AHE Verlag Karl Alber / Herder E-Books FID Philosophie [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-BECS#! ZDB-1-BECS ZDB-1-BECS Bloomsbury Education and Childhood Studies [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-120-SOA#! ZDB-120-SOA ZDB-120-SOA Franz Steiner Verlag eLibrary / Open Access +http://lobid.org/organisations/ZDB-33-ERN#! ZDB-33-ERN ZDB-33-ERN SSRN / Economics Research Network (ERN) +http://lobid.org/organisations/ZDB-18-BOZ#! ZDB-18-BOZ ZDB-18-BOZ beck-online / Zivilrecht OPTIMUM International +http://lobid.org/organisations/ZDB-1-BPJ#! ZDB-1-BPJ ZDB-1-BPJ Brill E-Book Collection Philosophie Jüdische Studien [FID-Lizenz] +http://lobid.org/organisations/ZDB-22-CLI#! ZDB-22-CLI ZDB-22-CLI Ciando / Lehrbuchpaket Wiley Ingenieurwissenschaften +http://lobid.org/organisations/ZDB-23-DOAG#! ZDB-23-DOAG ZDB-23-DOAG De Gruyter Open Access Transformationspaket / Germanistische Linguistik +http://lobid.org/organisations/ZDB-33-EEEC#! ZDB-33-EEEC ZDB-33-EEEC Elsevier Educational Textbooks / Engineering and Computing +http://lobid.org/organisations/ZDB-18-NJRP#! ZDB-18-NJRP ZDB-18-NJRP Nomos eLibrary / Jura gesamt Partner only +http://lobid.org/organisations/ZDB-18-NORN#! ZDB-18-NORN ZDB-18-NORN Nomos eLibrary / Europarecht / Nomos only +http://lobid.org/organisations/ZDB-18-NOPN#! ZDB-18-NOPN ZDB-18-NOPN Nomos eLibrary / Politikwissenschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NOMP#! ZDB-18-NOMP ZDB-18-NOMP Nomos eLibrary / Medien- und Kommunikationswissenschaft / Partner only +http://lobid.org/organisations/ZDB-18-NPHP#! ZDB-18-NPHP ZDB-18-NPHP Nomos eLibrary / Philosophie / Partner only +http://lobid.org/organisations/ZDB-18-NSTN#! ZDB-18-NSTN ZDB-18-NSTN Nomos eLibrary / Soziale Arbeit, Sozialwirtschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NSIN#! ZDB-18-NSIN ZDB-18-NSIN Nomos eLibrary / Sportwissenschaft / Nomos only +http://lobid.org/organisations/ZDB-18-NSIP#! ZDB-18-NSIP ZDB-18-NSIP Nomos eLibrary / Sportwissenschaft / Partner only +http://lobid.org/organisations/ZDB-18-NSBP#! ZDB-18-NSBP ZDB-18-NSBP Nomos eLibrary / Sprach- und Literaturwissenschaft / Partner only +http://lobid.org/organisations/ZDB-18-NSWN#! ZDB-18-NSWN ZDB-18-NSWN Nomos eLibrary / Geistes- und Sozialwissenschaften / Nomos only +http://lobid.org/organisations/ZDB-18-NSWP#! ZDB-18-NSWP ZDB-18-NSWP Nomos eLibrary / Geistes- und Sozialwissenschaften / Partner only +http://lobid.org/organisations/ZDB-5-WLS#! ZDB-5-WLS ZDB-5-WLS wiso Lecturio Strafrecht +http://lobid.org/organisations/ZDB-18-NLWRN#! ZDB-18-NLWRN ZDB-18-NLWRN Nomos eLibrary / Wirtschaftsrecht / Nomos only +http://lobid.org/organisations/ZDB-18-NLSRP#! ZDB-18-NLSRP ZDB-18-NLSRP Nomos eLibrary / Sozialrecht / Partner only +http://lobid.org/organisations/ZDB-20-CBM#! ZDB-20-CBM ZDB-20-CBM Cambridge Books Online / Mathematics +http://lobid.org/organisations/ZDB-1-DGEW#! ZDB-1-DGEW ZDB-1-DGEW De Gruyter HSS- und Economic-Journals Konvolut Wirtschaft [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NSLG#! ZDB-18-NSLG ZDB-18-NSLG Nomos eLibrary/ Studienliteratur Geschichte +http://lobid.org/organisations/ZDB-1-SAGB6#! ZDB-1-SAGB6 ZDB-1-SAGB6 Sage Journals Online Publish & Read / Health, Biomedical & Clinical Medicine / Upgrade für 2023 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-88-JZW#! ZDB-88-JZW ZDB-88-JZW juris Zusatzmodul Justiz Wirtschaftsrecht +http://lobid.org/organisations/ZDB-162-BCI#! ZDB-162-BCI ZDB-162-BCI Bloomsbury Comparative and International Education +http://lobid.org/organisations/ZDB-307-UVA#! ZDB-307-UVA ZDB-307-UVA Unrast Verlag / Antifaschismus +http://lobid.org/organisations/ZDB-43-MUA#! ZDB-43-MUA ZDB-43-MUA Die Musikdrucke der Staats- und Stadtbibliothek Augsburg 1488-1630 +http://lobid.org/organisations/ZDB-41-EKB#! ZDB-41-EKB ZDB-41-EKB scholars-e-library / Ethnologie und Kulturanthropologie / Backlist ibidem +http://lobid.org/organisations/ZDB-41-FFB#! ZDB-41-FFB ZDB-41-FFB scholars-e-library / Film & Fernsehen / Backlist ibidem +http://lobid.org/organisations/ZDB-41-GEB#! ZDB-41-GEB ZDB-41-GEB scholars-e-library / Geschichte / Backlist ibidem +http://lobid.org/organisations/ZDB-41-GKB#! ZDB-41-GKB ZDB-41-GKB scholars-e-library / Geschichte/Kulturgeschichte / Backlist ibidem +http://lobid.org/organisations/ZDB-41-LWAB#! ZDB-41-LWAB ZDB-41-LWAB scholars-e-library / Literaturwissenschaft allg./Anglistik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PSYB#! ZDB-41-PSYB ZDB-41-PSYB scholars-e-library / Psychologie / Backlist ibidem +http://lobid.org/organisations/ZDB-41-SPBA#! ZDB-41-SPBA ZDB-41-SPBA scholars-e-library / Schulpädagogik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-SOBA#! ZDB-41-SOBA ZDB-41-SOBA scholars-e-library / Soziologie / Backlist ibidem +http://lobid.org/organisations/ZDB-41-UES#! ZDB-41-UES ZDB-41-UES scholars-e-library / Sprachwissenschaft / Übersetzungswissenschaft/ Backlist ibidem +http://lobid.org/organisations/ZDB-28-CVP#! ZDB-28-CVP ZDB-155-CVP Cuvillier Verlag / Philosophie +http://lobid.org/organisations/ZDB-18-BOZP#! ZDB-18-BOZP ZDB-18-BOZP beck-online / Zivilrecht PREMIUM International +http://lobid.org/organisations/ZDB-18-BOST#! ZDB-18-BOST ZDB-18-BOST beck-online / Steuerrecht PREMIUM +http://lobid.org/organisations/ZDB-1-NSF#! ZDB-1-NSF ZDB-1-NSF Nomos eLibrary / Strafrecht 2017- 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-56-DBZ#! ZDB-56-DBZ ZDB-56-DBZ Sammlung deutscher botanischer Zeitschriften 1753-1914 [Open Access] +http://lobid.org/organisations/ZDB-84-KHU#! ZDB-84-KHU ZDB-84-KHU Kohlhammer eLibrary Gesamt +http://lobid.org/organisations/ZDB-56-FKM#! ZDB-56-FKM ZDB-56-FKM Karikaturensammlung Friedrich Nicolas Manskopf [Open Access] +http://lobid.org/organisations/ZDB-1-EIC#! ZDB-1-EIC ZDB-1-EIC East India Company (Module I, II, III, IV, V) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-119-KHS#! ZDB-119-KHS ZDB-119-KHS Knowledge Unlatched / History [Open Access] +http://lobid.org/organisations/ZDB-300-LAO#! ZDB-300-LAO ZDB-300-LAO The Digital Library of Lao Manuscripts (DLLM) [Open Access] +http://lobid.org/organisations/ZDB-175-LEV#! ZDB-175-LEV ZDB-175-LEV Digitale Sammlungen der Universitätsbibliothek Leipzig / Leipziger Verlage 1851-1920 [Open Access] +http://lobid.org/organisations/ZDB-290-EMPR#! ZDB-290-EMPR ZDB-290-EMPR Elektor / Mikrocontroller + Programmierung +http://lobid.org/organisations/ZDB-104-KIT#! ZDB-104-KIT ZDB-104-KIT KIT Monographs and Scientific Reports [Open Access] +http://lobid.org/organisations/ZDB-1-NJU#! ZDB-1-NJU ZDB-1-NJU Nomos eLibrary / Rechtswissenschaften gesamt, 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-157-HPFA#! ZDB-157-HPFA ZDB-157-HPFA Herder / Pädagogik Fachwissen +http://lobid.org/organisations/ZDB-23-GOA#! ZDB-23-GOA ZDB-23-GOA De Gruyter Open Access Bücher [Open Access] +http://lobid.org/organisations/ZDB-234-MED#! ZDB-234-MED ZDB-234-MED MENAdoc [Open Access] +http://lobid.org/organisations/ZDB-119-KSS#! ZDB-119-KSS ZDB-119-KSS KU select STEM [Open Access] +http://lobid.org/organisations/ZDB-186-WTMN#! ZDB-186-WTMN ZDB-186-WTMN WTM-Verlag / Novitäten +http://lobid.org/organisations/ZDB-308-WRM#! ZDB-308-WRM ZDB-308-WRM WLB regiopen books [Open Access] +http://lobid.org/organisations/ZDB-1-NPL#! ZDB-1-NPL ZDB-1-NPL Nomos eLibrary / Sprach- und Literaturwissenschaft 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-329-AAR#! ZDB-329-AAR ZDB-329-AAR AMI Agrarmarkt Informations-Gesellschaft mbH / Analysen & Reports +http://lobid.org/organisations/ZDB-1-NOZ#! ZDB-1-NOZ ZDB-1-NOZ Nomos eLibrary / Soziologie 2017- 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-315-OTL#! ZDB-315-OTL ZDB-315-OTL Open Textbook Library [Open Access] +http://lobid.org/organisations/ZDB-1-NOWZ#! ZDB-1-NOWZ ZDB-1-NOWZ Nomos eLibrary / Wirtschaft [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-NOMZ#! ZDB-1-NOMZ ZDB-1-NOMZ Nomos eLibrary / Medien-, Kommunikationswissenschaft [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-175-LHS#! ZDB-175-LHS ZDB-175-LHS Digitale Sammlungen der Universitätsbibliothek Leipzig / Hochschulschriften der Universität Leipzig [Open Access] +http://lobid.org/organisations/ZDB-86-CHA#! ZDB-86-CHA ZDB-86-CHA Chronicling America [Open Access] +http://lobid.org/organisations/ZDB-41-MPF#! ZDB-41-MPF ZDB-41-MPF scholars-e-library / Medizin/Pflege / Backlist Königshausen & Neumann +http://lobid.org/organisations/ZDB-56-JEF#! ZDB-56-JEF ZDB-56-JEF Judaica Europeana Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-175-V16#! ZDB-175-V16 ZDB-175-V16 Digitale Sammlungen der Universitätsbibliothek Leipzig / VD16 [Open Access] +http://lobid.org/organisations/ZDB-119-KMC#! ZDB-119-KMC ZDB-119-KMC Knowledge Unlatched / Media and Communications [Open Access] +http://lobid.org/organisations/ZDB-59-BPHI#! ZDB-59-BPHI ZDB-59-BPHI Beltz Psychoedukation & Hilfe zur Selbsthilfe +http://lobid.org/organisations/ZDB-56-HIF#! ZDB-56-HIF ZDB-56-HIF Hebräische Inkunabeln Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-270-WAF#! ZDB-270-WAF ZDB-270-WAF Wright American Fiction [Open Access] +http://lobid.org/organisations/ZDB-119-KH2#! ZDB-119-KH2 ZDB-119-KH2 Knowledge Unlatched / History 2 [Open Access] +http://lobid.org/organisations/ZDB-1-NSW#! ZDB-1-NSW ZDB-1-NSW Nomos eLibrary / Geistes- und Sozialwissenschaften 2017- 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-UAR#! ZDB-1-UAR ZDB-1-UAR Oxford University Press : University Presses Scholarship Online / Art and Architecture [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NOGZ#! ZDB-1-NOGZ ZDB-1-NOGZ Nomos eLibrary / Geschichte [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-79-PBC#! ZDB-79-PBC ZDB-79-PBC PubLIS Cologne - Digitales Repositorium des Instituts für Informationswissenschaft der Fachhochschule Köln [Open Access] +http://lobid.org/organisations/ZDB-119-KSC#! ZDB-119-KSC ZDB-119-KSC KU select / Communication, Cultural and Media Studies [Open Access] +http://lobid.org/organisations/ZDB-1-NSBZ#! ZDB-1-NSBZ ZDB-1-NSBZ Nomos eLibrary / Sportwissenschaft [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-219-DPSE#! ZDB-219-DPSE ZDB-219-DPSE dpunkt.verlag / Security & IT +http://lobid.org/organisations/ZDB-110-WBO#! ZDB-110-WBO ZDB-110-WBO World Bank Group / Open Knowledge Repository [Open Access] +http://lobid.org/organisations/ZDB-99-PER#! ZDB-99-PER ZDB-99-PER Perspectivia.net [Open Access] +http://lobid.org/organisations/ZDB-95-BLAM#! ZDB-95-BLAM ZDB-95-BLAM Brill / Late Antiquity and Medieval Studies E-Books Online +http://lobid.org/organisations/ZDB-167-MFP#! ZDB-167-MFP ZDB-167-MFP Mainzer Bibliotheksbestand der Kunsthistorischen Forschungsstätte Paris / Digitalisate der Universitätsbibliothek Mainz [Open Access] +http://lobid.org/organisations/ZDB-59-BWB#! ZDB-59-BWB ZDB-59-BWB Beltz Weiterbildung +http://lobid.org/organisations/ZDB-23-BBR#! ZDB-23-BBR ZDB-23-BBR Böhlau e-dition : Best of Rechtsgeschichte / History of Law +http://lobid.org/organisations/ZDB-41-UTBW#! ZDB-41-UTBW ZDB-41-UTBW utb-studi-e-book / Mathematik/ Statistik/ Informatik +http://lobid.org/organisations/ZDB-109-LBS#! ZDB-109-LBS ZDB-109-LBS Lambertus / Backlist Soziale Arbeit Deutscher Verein für öffentliche und private Fürsorge +http://lobid.org/organisations/ZDB-85-LDP#! ZDB-85-LDP ZDB-85-LDP Linde-Verlag Internationales Recht +http://lobid.org/organisations/ZDB-41-SRU#! ZDB-41-SRU ZDB-41-SRU scholars-e-library / Romanistik/ Hispanistik/ Slavistik +http://lobid.org/organisations/ZDB-117-GES#! ZDB-117-GES ZDB-117-GES V&R eLibrary / Geschichte +http://lobid.org/organisations/ZDB-117-REW#! ZDB-117-REW ZDB-117-REW V&R eLibrary / Rechtswissenschaft +http://lobid.org/organisations/ZDB-117-THO#! ZDB-117-THO ZDB-117-THO V&R eLibrary / Theologie +http://lobid.org/organisations/ZDB-117-ZEG#! ZDB-117-ZEG ZDB-117-ZEG V&R eLibrary / Zeitgeschichte +http://lobid.org/organisations/ZDB-130-BBA#! ZDB-130-BBA ZDB-130-BBA scholars-e-library / Pädagogik/ Betriebliche Aus- und Weiterbildung / Backlist wbv +http://lobid.org/organisations/ZDB-142-WEH#! ZDB-142-WEH ZDB-142-WEH WBG / Erziehungswissenschaft +http://lobid.org/organisations/ZDB-18-BLC#! ZDB-18-BLC ZDB-18-BLC Beck eLibrary / C.H. Beck Geschichte des Mittelalters und der Neuzeit +http://lobid.org/organisations/ZDB-18-BLF#! ZDB-18-BLF ZDB-18-BLF Beck eLibrary / C.H. Beck Philosophie +http://lobid.org/organisations/ZDB-18-BLH#! ZDB-18-BLH ZDB-18-BLH Beck eLibrary / C.H. Beck Religion und Theologie +http://lobid.org/organisations/ZDB-18-BEL#! ZDB-18-BEL ZDB-18-BEL Beck eLibrary +http://lobid.org/organisations/ZDB-2-DLM#! ZDB-2-DLM ZDB-2-DLM Springer ebook collection / Dutch language eBook collection +http://lobid.org/organisations/ZDB-2-EDA#! ZDB-2-EDA ZDB-2-EDA Springer ebook collection / Education +http://lobid.org/organisations/ZDB-2-LCR#! ZDB-2-LCR ZDB-2-LCR Springer ebook collection / Law and Criminology +http://lobid.org/organisations/ZDB-2-SLS#! ZDB-2-SLS ZDB-2-SLS Springer ebook collection / Social Sciences +http://lobid.org/organisations/ZDB-71-NVL#! ZDB-71-NVL ZDB-71-NVL Narr Verlag E-Books / Literaturwissenschaft +http://lobid.org/organisations/ZDB-2-PCC#! ZDB-2-PCC ZDB-2-PCC Springer ebook collection / Palgrave Media & Culture Collection +http://lobid.org/organisations/ZDB-2-PIS#! ZDB-2-PIS ZDB-2-PIS Springer ebook collection / Palgrave Political & Intern. Studies Collection +http://lobid.org/organisations/ZDB-73-CVA#! ZDB-73-CVA ZDB-73-CVA campus e-books +http://lobid.org/organisations/ZDB-35-WCV#! ZDB-35-WCV ZDB-35-WCV Wiley Collection Pharmaceutical & Medicinal Chemistry +http://lobid.org/organisations/ZDB-30-PQE#! ZDB-30-PQE ZDB-30-PQE ProQuest Ebook Central +http://lobid.org/organisations/ZDB-117-VPS#! ZDB-117-VPS ZDB-117-VPS V&R eLibrary / Pädagogik und Soziale Arbeit +http://lobid.org/organisations/ZDB-148-RDB#! ZDB-148-RDB ZDB-148-RDB RDB / Modul Zeitschriften +http://lobid.org/organisations/ZDB-75-TOC#! ZDB-75-TOC ZDB-75-TOC Torrossa / Olschki Comprehensive Collection +http://lobid.org/organisations/ZDB-105-MC8#! ZDB-105-MC8 ZDB-105-MC8 Morgan & Claypool: Computer & Information Science Collections / CIS collection eight +http://lobid.org/organisations/ZDB-149-HCB#! ZDB-149-HCB ZDB-149-HCB Herdt Campus eBooks +http://lobid.org/organisations/ZDB-28-OAR#! ZDB-28-OAR ZDB-28-OAR Oxford Handbooks Online / Archaeology +http://lobid.org/organisations/ZDB-28-OCR#! ZDB-28-OCR ZDB-28-OCR Oxford Handbooks Online / Criminology +http://lobid.org/organisations/ZDB-7-RLI#! ZDB-7-RLI ZDB-7-RLI Routledge Handbooks Online / Literatur +http://lobid.org/organisations/ZDB-138-AMA#! ZDB-138-AMA ZDB-138-AMA AMS ebooks / Memoirs of the American Mathematical Society +http://lobid.org/organisations/ZDB-151-ADL#! ZDB-151-ADL ZDB-151-ADL Acsess Digital Library +http://lobid.org/organisations/ZDB-1-PEO#! ZDB-1-PEO ZDB-1-PEO Springer ebook collection / Palgrave Economics and Finance Collection 2000 – 2013 [Nationallizenz] +http://lobid.org/organisations/ZDB-117-IKC#! ZDB-117-IKC ZDB-117-IKC V&R eLibrary / Interkulturelle Kompetenz und Coaching +http://lobid.org/organisations/ZDB-153-SAE#! ZDB-153-SAE ZDB-153-SAE SAE Mobilus +http://lobid.org/organisations/ZDB-34-THG#! ZDB-34-THG ZDB-34-THG Thieme eRef / Gynäkologie und Geburtshilfe +http://lobid.org/organisations/ZDB-1-JA15#! ZDB-1-JA15 ZDB-1-JA15 JSTOR : Arts & Sciences XV Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-23-OLW#! ZDB-23-OLW ZDB-23-OLW De Gruyter Oldenbourg ebook Paket Lehrbücher Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-1-OJM#! ZDB-1-OJM ZDB-1-OJM Oxford Journals Digital Archive / Medicine Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-OJE#! ZDB-1-OJE ZDB-1-OJE Oxford Journals Digital Archive / Economics and Finance Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-130-BZS#! ZDB-130-BZS ZDB-130-BZS scholars-e-library / Pädagogik/ Erziehungswissenschaft & Sozialforschung / Backlist wbv +http://lobid.org/organisations/ZDB-1-JMSE#! ZDB-1-JMSE ZDB-1-JMSE JSTOR : Mathematics & Statistics Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-121-UIM#! ZDB-121-UIM ZDB-121-UIM Ulmer E-Books / Imkern +http://lobid.org/organisations/ZDB-155-CUV#! ZDB-155-CUV ZDB-155-CUV Cuvillier Verlag / Gesamtpaket +http://lobid.org/organisations/ZDB-142-WPI#! ZDB-142-WPI ZDB-142-WPI WBG / Philosophie - Werke, Interpretationen +http://lobid.org/organisations/ZDB-142-WGF#! ZDB-142-WGF ZDB-142-WGF WBG / Germanistik - Einführungen +http://lobid.org/organisations/ZDB-85-LDU#! ZDB-85-LDU ZDB-85-LDU Linde-Verlag Nationales Steuerrecht +http://lobid.org/organisations/ZDB-159-SCF#! ZDB-159-SCF ZDB-159-SCF SciFo +http://lobid.org/organisations/ZDB-16-HEE#! ZDB-16-HEE ZDB-16-HEE Hanser eLibrary / Handbuch +http://lobid.org/organisations/ZDB-158-VNV#! ZDB-158-VNV ZDB-158-VNV VDE Verlag EBooks / Normenkommentar VDE-Schriftenreihe +http://lobid.org/organisations/ZDB-158-VKK#! ZDB-158-VKK ZDB-158-VKK VDE Verlag EBooks / Kälte- und Klimatechnik +http://lobid.org/organisations/ZDB-18-BVK#! ZDB-18-BVK ZDB-18-BVK beck-online / Verwaltungsrecht Kohlhammer +http://lobid.org/organisations/ZDB-18-BKB#! ZDB-18-BKB ZDB-18-BKB beck-online / KOMMUNALPRAXIS Bayern PLUS +http://lobid.org/organisations/ZDB-52-HOL#! ZDB-52-HOL ZDB-52-HOL HeinOnline +http://lobid.org/organisations/ZDB-159-RLT#! ZDB-159-RLT ZDB-159-RLT SciFo / Rohrleitungstechnik +http://lobid.org/organisations/ZDB-23-DAD#! ZDB-23-DAD ZDB-23-DAD De Gruyter eBook-Paket Architektur und Design +http://lobid.org/organisations/ZDB-23-DPK#! ZDB-23-DPK ZDB-23-DPK De Gruyter eBook-Paket Kunst +http://lobid.org/organisations/ZDB-23-DAT#! ZDB-23-DAT ZDB-23-DAT De Gruyter eBook-Paket Altdeutsche Textbibliothek Online +http://lobid.org/organisations/ZDB-117-EXE#! ZDB-117-EXE ZDB-117-EXE V&R eLibrary / Exegese +http://lobid.org/organisations/ZDB-27-OLC#! ZDB-27-OLC ZDB-27-OLC Ovid / LWW Classic Book Collection +http://lobid.org/organisations/ZDB-30-PPB#! ZDB-30-PPB ZDB-30-PPB PsycBOOKS (via ProQuest) +http://lobid.org/organisations/ZDB-1-NES#! ZDB-1-NES ZDB-1-NES Nomos eLibrary / edition sigma Soziologie [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-138-AMC#! ZDB-138-AMC ZDB-138-AMC AMS ebooks / CBMS Regional Conference Series in Mathematics +http://lobid.org/organisations/ZDB-138-AMO#! ZDB-138-AMO ZDB-138-AMO AMS ebooks / Proceedings of Symposia in Pure Mathematics +http://lobid.org/organisations/ZDB-23-GSM#! ZDB-23-GSM ZDB-23-GSM De Gruyter Studies in Mathematics +http://lobid.org/organisations/ZDB-23-PMN#! ZDB-23-PMN ZDB-23-PMN Princeton Mathematical Notes +http://lobid.org/organisations/ZDB-166-LEX#! ZDB-166-LEX ZDB-166-LEX Lextenso +http://lobid.org/organisations/ZDB-5-WWP#! ZDB-5-WWP ZDB-5-WWP wiso Wirtschaftspraxis +http://lobid.org/organisations/ZDB-1-CWI#! ZDB-1-CWI ZDB-1-CWI Cold War Intelligence [Nationallizenz] +http://lobid.org/organisations/ZDB-128-VVM#! ZDB-128-VVM ZDB-128-VVM Beck eLibrary / Versus kompakt Management +http://lobid.org/organisations/ZDB-128-UVK#! ZDB-128-UVK ZDB-128-UVK Beck eLibrary / UVK Wirtschaft +http://lobid.org/organisations/ZDB-41-SHA#! ZDB-41-SHA ZDB-41-SHA scholars-e-library / Sprachwissenschaft allg./ Anglistik +http://lobid.org/organisations/ZDB-23-OTI#! ZDB-23-OTI ZDB-23-OTI De Gruyter Oldenbourg ebook Paket Lehrbücher Technik und Informatik +http://lobid.org/organisations/ZDB-87-GBI#! ZDB-87-GBI ZDB-87-GBI Classiques Garnier Numérique / Bibliothèque du XVIIe siècle +http://lobid.org/organisations/ZDB-157-HHT#! ZDB-157-HHT ZDB-157-HHT Herder / Historische Theologie +http://lobid.org/organisations/ZDB-157-HBT#! ZDB-157-HBT ZDB-157-HBT Herder / Biblische Theologie +http://lobid.org/organisations/ZDB-157-HMF#! ZDB-157-HMF ZDB-157-HMF Herder / Migration und Flüchtlinge +http://lobid.org/organisations/ZDB-84-KEK#! ZDB-84-KEK ZDB-84-KEK Kohlhammer Exegese, Religions- und Kirchengeschichte +http://lobid.org/organisations/ZDB-171-LBW#! ZDB-171-LBW ZDB-171-LBW Logos / BWL +http://lobid.org/organisations/ZDB-171-LMN#! ZDB-171-LMN ZDB-171-LMN Logos / Management +http://lobid.org/organisations/ZDB-1-POR#! ZDB-1-POR ZDB-1-POR Portico Digital Preservation Service [Nationalkonsortium] +http://lobid.org/organisations/ZDB-172-SAW#! ZDB-172-SAW ZDB-172-SAW Schlütersche / Aus- & Weiterbildung +http://lobid.org/organisations/ZDB-23-GRA#! ZDB-23-GRA ZDB-23-GRA De Gruyter Rights, Action and Social Responsibility +http://lobid.org/organisations/ZDB-23-BON#! ZDB-23-BON ZDB-23-BON Basics Online eBook-Paket +http://lobid.org/organisations/ZDB-7-RHO#! ZDB-7-RHO ZDB-7-RHO Routledge Handbooks Online +http://lobid.org/organisations/ZDB-1-SDA#! ZDB-1-SDA ZDB-1-SDA Stalin Digital Archive [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-128-ZR1#! ZDB-128-ZR1 ZDB-128-ZR1 Beck eLibrary / Vahlen Zivilrecht I +http://lobid.org/organisations/ZDB-128-VSO#! ZDB-128-VSO ZDB-128-VSO Beck eLibrary / Vahlen Strafrecht/Öffentliches Recht +http://lobid.org/organisations/ZDB-142-WAR#! ZDB-142-WAR ZDB-142-WAR WBG / Archäologie +http://lobid.org/organisations/ZDB-135-IPW#! ZDB-135-IPW ZDB-135-IPW IOP ebooks / Physics World Discovery +http://lobid.org/organisations/ZDB-178-HBFDA#! ZDB-178-HBFDA ZDB-178-HBFDA hep / Berufliche Bildung (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HWB#! ZDB-178-HWB ZDB-178-HWB hep / Erwachsenen-/Weiterbildung +http://lobid.org/organisations/ZDB-178-HFD#! ZDB-178-HFD ZDB-178-HFD hep / Fachdidaktik +http://lobid.org/organisations/ZDB-178-HUP#! ZDB-178-HUP ZDB-178-HUP hep / Unterrichtspraxis +http://lobid.org/organisations/ZDB-179-WRA#! ZDB-179-WRA ZDB-179-WRA Walhalla / Recht im Alltag +http://lobid.org/organisations/ZDB-28-OFT#! ZDB-28-OFT ZDB-28-OFT University Press Scholarship Online / Film, Television and Radio +http://lobid.org/organisations/ZDB-1-UPR#! ZDB-1-UPR ZDB-1-UPR Ukraine Presidential Election 2014 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-25-KAS#! ZDB-25-KAS ZDB-25-KAS Karger eBook Archive Collection (Series) +http://lobid.org/organisations/ZDB-25-KEN#! ZDB-25-KEN ZDB-25-KEN Karger eBook Archive Collection (Non-Series) +http://lobid.org/organisations/ZDB-181-TCP#! ZDB-181-TCP ZDB-181-TCP Tectum eLibrary / Pädagogik +http://lobid.org/organisations/ZDB-1-BGB#! ZDB-1-BGB ZDB-1-BGB Berghahn E-Books - FID Sozial- und Kulturanthropologie [FID-Lizenz] +http://lobid.org/organisations/ZDB-10-NON#! ZDB-10-NON ZDB-10-NON Knovel Nondestructive Testing & Evaluation +http://lobid.org/organisations/ZDB-128-URC#! ZDB-128-URC ZDB-128-URC Beck eLibrary / UVK Rechnungswesen & Controlling +http://lobid.org/organisations/ZDB-88-ZHS#! ZDB-88-ZHS ZDB-88-ZHS Juris Zusatzmodul Hochschulen +http://lobid.org/organisations/ZDB-1-TTP#! ZDB-1-TTP ZDB-1-TTP transcript Verlag / Theater-, Tanz- und Performancewissenschaft [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-BEJ#! ZDB-1-BEJ ZDB-1-BEJ Bentham E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FME#! ZDB-1-FME ZDB-1-FME Future Medicine E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-159-SCN#! ZDB-159-SCN ZDB-159-SCN SciFo / Neuauflagen/Neuerscheinungen +http://lobid.org/organisations/ZDB-28-OCS#! ZDB-28-OCS ZDB-28-OCS Oxford Handbooks Online / Classical Studies +http://lobid.org/organisations/ZDB-28-OSV#! ZDB-28-OSV ZDB-28-OSV University Press Scholarship Online +http://lobid.org/organisations/ZDB-124-WSE#! ZDB-124-WSE ZDB-124-WSE World Scientific Publishing / Engineering +http://lobid.org/organisations/ZDB-124-WPC#! ZDB-124-WPC ZDB-124-WPC World Scientific Publishing / Computer Science +http://lobid.org/organisations/ZDB-7-RHF#! ZDB-7-RHF ZDB-7-RHF Routledge Historical Resources / Feminism +http://lobid.org/organisations/ZDB-28-CSM#! ZDB-28-CSM ZDB-28-CSM California Scholarship Online / Music +http://lobid.org/organisations/ZDB-1-MFU#! ZDB-1-MFU ZDB-1-MFU MIPP E-Books FinnUg [FID-Lizenz] +http://lobid.org/organisations/ZDB-181-TMI#! ZDB-181-TMI ZDB-181-TMI Tectum eLibrary / Musikwissenschaft +http://lobid.org/organisations/ZDB-181-TKW#! ZDB-181-TKW ZDB-181-TKW Tectum eLibrary / Kulturwissenschaften +http://lobid.org/organisations/ZDB-20-CMU#! ZDB-20-CMU ZDB-20-CMU Cambridge Companions / The Cambridge Companions to Music +http://lobid.org/organisations/ZDB-1-TFR#! ZDB-1-TFR ZDB-1-TFR Taylor & Francis E-Journals : FID-Romanistik Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CIR#! ZDB-1-CIR ZDB-1-CIR Cairn.info E-Journals : FID-Romanistik Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TFL#! ZDB-1-TFL ZDB-1-TFL Taylor & Francis Econ Konsortium Leibniz [Nationalkonsortium] +http://lobid.org/organisations/ZDB-121-UEB#! ZDB-121-UEB ZDB-121-UEB Ulmer E-Books +http://lobid.org/organisations/ZDB-1-MOS#! ZDB-1-MOS ZDB-1-MOS Music Online / Classical Scores Library, vol. II, III, IV [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JCM#! ZDB-1-JCM ZDB-1-JCM JSTOR : Complete Music Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-162-BCC#! ZDB-162-BCC ZDB-162-BCC Bloomsbury Collections / Complete +http://lobid.org/organisations/ZDB-185-STD#! ZDB-185-STD ZDB-185-STD Statista Dossiers +http://lobid.org/organisations/ZDB-185-SDI#! ZDB-185-SDI ZDB-185-SDI Statista Dossiers international +http://lobid.org/organisations/ZDB-1-OXC#! ZDB-1-OXC ZDB-1-OXC Oxford Scholarship Online / Classical Studies Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PQM#! ZDB-1-PQM ZDB-1-PQM ProQuest Ebook Central / Music Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-55-EM2#! ZDB-55-EM2 ZDB-55-EM2 Emerald Management 200 eJournal Collection +http://lobid.org/organisations/ZDB-136-WEM#! ZDB-136-WEM ZDB-136-WEM Suhrkamp / Werkausgabe Marcuse +http://lobid.org/organisations/ZDB-84-KER#! ZDB-84-KER ZDB-84-KER Kohlhammer Exegese, Religionspädagogik und Religionswissenschaft +http://lobid.org/organisations/ZDB-28-NYU#! ZDB-28-NYU ZDB-28-NYU NYU Scholarship Online +http://lobid.org/organisations/ZDB-55-LSE#! ZDB-55-LSE ZDB-55-LSE Emerald Library Studies eJournal Collection +http://lobid.org/organisations/ZDB-55-HRL#! ZDB-55-HRL ZDB-55-HRL Emerald HR, Learning & Organization Studies eJournal Collection +http://lobid.org/organisations/ZDB-60-ARC#! ZDB-60-ARC ZDB-60-ARC Annual Reviews current [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-60-ARG#! ZDB-60-ARG ZDB-60-ARG Annual Reviews current / Agriculture Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-41-SPQ#! ZDB-41-SPQ ZDB-41-SPQ scholars-e-library / Pädagogik/ Politische Bildung +http://lobid.org/organisations/ZDB-41-SPU#! ZDB-41-SPU ZDB-41-SPU scholars-e-library / Pädagogik/ Berufs- und Wirtschaftspädagogik +http://lobid.org/organisations/ZDB-173-HKCSP#! ZDB-173-HKCSP ZDB-173-HKCSP Haufe Lexware / Kostenrechnung und Controlling (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-173-HVWSP#! ZDB-173-HVWSP ZDB-173-HVWSP Haufe Lexware / VWL (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-88-JVG#! ZDB-88-JVG ZDB-88-JVG juris PraxisKommentar Vergaberecht +http://lobid.org/organisations/ZDB-7-RHE#! ZDB-7-RHE ZDB-7-RHE Routledge Handbooks Online / Education +http://lobid.org/organisations/ZDB-187-JRL#! ZDB-187-JRL ZDB-187-JRL Junfermann / Ratgeber I / Lebenshilfe +http://lobid.org/organisations/ZDB-187-JTE#! ZDB-187-JTE ZDB-187-JTE Junfermann / Fachbuch / Trauma/EMDR +http://lobid.org/organisations/ZDB-1-BP12#! ZDB-1-BP12 ZDB-1-BP12 Belarus Parliamentary Election 2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RSD11#! ZDB-1-RSD11 ZDB-1-RSD11 Russia State Duma Election 2011 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RSD16#! ZDB-1-RSD16 ZDB-1-RSD16 Russia State Duma Election 2016 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OPE#! ZDB-1-OPE ZDB-1-OPE South Ossetia Presidential Election 2011-2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-179-WBU#! ZDB-179-WBU ZDB-179-WBU Walhalla / Business Recht +http://lobid.org/organisations/ZDB-1-FOC#! ZDB-1-FOC ZDB-1-FOC Foreign Office Files for China 1919-1980 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-182-HSN#! ZDB-182-HSN ZDB-182-HSN Hueber / Sprachpaket Englisch +http://lobid.org/organisations/ZDB-18-NWI#! ZDB-18-NWI ZDB-18-NWI Nomos eLibrary / edition sigma Wirtschaft +http://lobid.org/organisations/ZDB-162-BMS#! ZDB-162-BMS ZDB-162-BMS Bloomsbury Collections / Media Studies Archive 2008-2013 +http://lobid.org/organisations/ZDB-162-BMA#! ZDB-162-BMA ZDB-162-BMA Bloomsbury Collections / Modernism Archive 2005-2012 +http://lobid.org/organisations/ZDB-2-ESA#! ZDB-2-ESA ZDB-2-ESA Springer Nature / Erziehungswissenschaften und Soziale Arbeit +http://lobid.org/organisations/ZDB-1-NGW#! ZDB-1-NGW ZDB-1-NGW Nomos eLibrary / edition sigma Wirtschaft [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-192-PML#! ZDB-192-PML ZDB-192-PML PMCMedia / Logistik +http://lobid.org/organisations/ZDB-2-SEB#! ZDB-2-SEB ZDB-2-SEB Springer Ebooks +http://lobid.org/organisations/ZDB-128-MWG#! ZDB-128-MWG ZDB-128-MWG Beck eLibrary / MWV Gesundheitsökonomie +http://lobid.org/organisations/ZDB-138-AMF#! ZDB-138-AMF ZDB-138-AMF AMS ebooks / Translations of Mathematical Monographs +http://lobid.org/organisations/ZDB-128-JUR#! ZDB-128-JUR ZDB-128-JUR Beck eLibrary / Vahlen Jura Referendariat +http://lobid.org/organisations/ZDB-128-BJZ2#! ZDB-128-BJZ2 ZDB-128-BJZ2 Beck eLibrary / C.H. Beck Jura Zivilrecht II +http://lobid.org/organisations/ZDB-128-BJS#! ZDB-128-BJS ZDB-128-BJS Beck eLibrary / C.H. Beck Jura Strafrecht +http://lobid.org/organisations/ZDB-128-RAB#! ZDB-128-RAB ZDB-128-RAB Beck eLibrary / UVK Ratgeber Beruf +http://lobid.org/organisations/ZDB-117-PFW#! ZDB-117-PFW ZDB-117-PFW V&R eLibrary / Pädagogik im Fokus von Wissenschaft und Religion +http://lobid.org/organisations/ZDB-95-SFL#! ZDB-95-SFL ZDB-95-SFL Brill Online / Schöningh and Fink Literature and Culture E-Books Online Collection +http://lobid.org/organisations/ZDB-195-MLI#! ZDB-195-MLI ZDB-195-MLI Al Manhal eBook collections / Classical Literature +http://lobid.org/organisations/ZDB-1-JJH#! ZDB-1-JJH ZDB-1-JJH JSTOR : Complete Jewish Studies inklusive Hebrew Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-23-GRW#! ZDB-23-GRW ZDB-23-GRW De Gruyter Book Archive / Reference Works +http://lobid.org/organisations/ZDB-23-GSS#! ZDB-23-GSS ZDB-23-GSS De Gruyter Book Archive / Social Sciences +http://lobid.org/organisations/ZDB-20-CBL#! ZDB-20-CBL ZDB-20-CBL Cambridge Books Online / Law +http://lobid.org/organisations/ZDB-197-MSK#! ZDB-197-MSK ZDB-197-MSK Mohr Siebeck / Sozial- & Kulturwissenschaft +http://lobid.org/organisations/ZDB-198-DUP#! ZDB-198-DUP ZDB-198-DUP Duke University Press / Gesamtpaket +http://lobid.org/organisations/ZDB-200-WGC#! ZDB-200-WGC ZDB-200-WGC Wallstein / Geschichte +http://lobid.org/organisations/ZDB-200-WAL#! ZDB-200-WAL ZDB-200-WAL Wallstein / Literaturwissenschaft +http://lobid.org/organisations/ZDB-15-ACA#! ZDB-15-ACA ZDB-15-ACA ACM Digital Library / ACM Books Collection I +http://lobid.org/organisations/ZDB-41-UTBY#! ZDB-41-UTBY ZDB-41-UTBY utb-studi-e-book / Technik/Ingenieurwesen +http://lobid.org/organisations/ZDB-205-MET#! ZDB-205-MET ZDB-205-MET Metropolis eBooks +http://lobid.org/organisations/ZDB-9-NCO#! ZDB-9-NCO ZDB-9-NCO Nineteenth Century Collections Online: Women: Transnational Networks +http://lobid.org/organisations/ZDB-9-NCC#! ZDB-9-NCC ZDB-9-NCC Nineteenth Century Collections Online: Children's Literature and Childhood +http://lobid.org/organisations/ZDB-10-KCH#! ZDB-10-KCH ZDB-10-KCH Knovel Computer Hardware Engineering +http://lobid.org/organisations/ZDB-10-KES#! ZDB-10-KES ZDB-10-KES Knovel Earth Science +http://lobid.org/organisations/ZDB-10-FPE#! ZDB-10-FPE ZDB-10-FPE Knovel Fire Protection Engineering & Emergency Response +http://lobid.org/organisations/ZDB-10-KIE#! ZDB-10-KIE ZDB-10-KIE Knovel Industrial Engineering & Operations Management +http://lobid.org/organisations/ZDB-10-KME#! ZDB-10-KME ZDB-10-KME Knovel Marine Engineering & Naval Architecture +http://lobid.org/organisations/ZDB-10-PDC#! ZDB-10-PDC ZDB-10-PDC Knovel Process Design, Control & Automation +http://lobid.org/organisations/ZDB-10-KSI#! ZDB-10-KSI ZDB-10-KSI Knovel Safety & Industrial Hygiene +http://lobid.org/organisations/ZDB-10-KTE#! ZDB-10-KTE ZDB-10-KTE Knovel Transportation Engineering +http://lobid.org/organisations/ZDB-1-JLI#! ZDB-1-JLI ZDB-1-JLI JSTOR : Lives of Literature Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-117-SKU#! ZDB-117-SKU ZDB-117-SKU V&R eLibrary / Sozial- und Kulturwissenschaften +http://lobid.org/organisations/ZDB-117-TIN#! ZDB-117-TIN ZDB-117-TIN V&R eLibrary / Theologie international +http://lobid.org/organisations/ZDB-210-GSC#! ZDB-210-GSC ZDB-210-GSC GeoScienceWorld eBooks +http://lobid.org/organisations/ZDB-18-VRP#! ZDB-18-VRP ZDB-18-VRP beck-online / Verfassungsrecht PREMIUM +http://lobid.org/organisations/ZDB-18-BSJ#! ZDB-18-BSJ ZDB-18-BSJ Beck eLibrary / SPH Buchführung, Bilanzen, Steuern I +http://lobid.org/organisations/ZDB-18-BSQ#! ZDB-18-BSQ ZDB-18-BSQ Beck eLibrary / SPH Kostenrechnung, Controlling +http://lobid.org/organisations/ZDB-18-BSV#! ZDB-18-BSV ZDB-18-BSV Beck eLibrary / SPH Volkswirtschaftslehre +http://lobid.org/organisations/ZDB-162-BHI#! ZDB-162-BHI ZDB-162-BHI Bloomsbury Collections / History +http://lobid.org/organisations/ZDB-162-PHY#! ZDB-162-PHY ZDB-162-PHY Bloomsbury Collections / Philosophy +http://lobid.org/organisations/ZDB-48-WKG#! ZDB-48-WKG ZDB-48-WKG Wolters Kluwer Handels- und Gesellschaftsrecht +http://lobid.org/organisations/ZDB-48-WKH#! ZDB-48-WKH ZDB-48-WKH Wolters Kluwer Hochschulen +http://lobid.org/organisations/ZDB-48-WKF#! ZDB-48-WKF ZDB-48-WKF Wolters Kluwer Online-Flat +http://lobid.org/organisations/ZDB-48-WKE#! ZDB-48-WKE ZDB-48-WKE Wolters Kluwer BGHSt - Entscheidungen des Bundesgerichtshofes in Strafsachen +http://lobid.org/organisations/ZDB-213-MIG#! ZDB-213-MIG ZDB-213-MIG mitp / Grafik +http://lobid.org/organisations/ZDB-213-MIT#! ZDB-213-MIT ZDB-213-MIT mitp / IT Business +http://lobid.org/organisations/ZDB-214-ZWG#! ZDB-214-ZWG ZDB-214-ZWG ZIEL / Weiterbildung Grundlagen +http://lobid.org/organisations/ZDB-214-ZEP#! ZDB-214-ZEP ZDB-214-ZEP ZIEL / Erlebnispädagogik +http://lobid.org/organisations/ZDB-215-AWR1#! ZDB-215-AWR1 ZDB-215-AWR1 Aisthesis / Zur Literatur der Weimarer Republik 1 +http://lobid.org/organisations/ZDB-23-HAH#! ZDB-23-HAH ZDB-23-HAH Harvard University Press e-dition / American History eBook Package +http://lobid.org/organisations/ZDB-117-SFG#! ZDB-117-SFG ZDB-117-SFG V&R eLibrary / Schriften des Sigmund-Freud-Instituts +http://lobid.org/organisations/ZDB-171-LBI#! ZDB-171-LBI ZDB-171-LBI Logos / Bibliothekswissenschaft +http://lobid.org/organisations/ZDB-171-LIT#! ZDB-171-LIT ZDB-171-LIT Logos / Literatur & Sprache +http://lobid.org/organisations/ZDB-171-LNA#! ZDB-171-LNA ZDB-171-LNA Logos / Naturwissenschaften +http://lobid.org/organisations/ZDB-41-SDH#! ZDB-41-SDH ZDB-41-SDH scholars-e-library / Pädagogik/ Hochschule +http://lobid.org/organisations/ZDB-157-HIP#! ZDB-157-HIP ZDB-157-HIP Herder / Innenpolitik +http://lobid.org/organisations/ZDB-179-WOD#! ZDB-179-WOD ZDB-179-WOD Walhalla / Öffentlicher Dienst +http://lobid.org/organisations/ZDB-208-DFG#! ZDB-208-DFG ZDB-208-DFG Adam Matthew Digital / Defining Gender +http://lobid.org/organisations/ZDB-173-HMG#! ZDB-173-HMG ZDB-173-HMG Haufe Lexware / Management +http://lobid.org/organisations/ZDB-1-BZA#! ZDB-1-BZA ZDB-1-BZA Brill Zeitschriften Asien [FID-Lizenz] +http://lobid.org/organisations/ZDB-198-DUG#! ZDB-198-DUG ZDB-198-DUG Duke University Press / Gender Studies e-book collection +http://lobid.org/organisations/ZDB-218-IOS#! ZDB-218-IOS ZDB-218-IOS IOS Press Ebooks +http://lobid.org/organisations/ZDB-1-BLAF#! ZDB-1-BLAF ZDB-1-BLAF Beck eLibrary / Altertumswissenschaft [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EIUA#! ZDB-1-EIUA ZDB-1-EIUA EIU Viewpoint [Allianzlizenz] +http://lobid.org/organisations/ZDB-18-NSB#! ZDB-18-NSB ZDB-18-NSB Nomos eLibrary / Sprach- und Literaturwissenschaft +http://lobid.org/organisations/ZDB-48-WKD#! ZDB-48-WKD ZDB-48-WKD Wolters Kluwer Erbrecht +http://lobid.org/organisations/ZDB-219-DPV#! ZDB-219-DPV ZDB-219-DPV dpunkt.verlag E-Books +http://lobid.org/organisations/ZDB-221-PCL#! ZDB-221-PCL ZDB-221-PCL Packt Cloud +http://lobid.org/organisations/ZDB-226-PSV#! ZDB-226-PSV ZDB-226-PSV persona verlag E-Books +http://lobid.org/organisations/ZDB-228-MBO#! ZDB-228-MBO ZDB-228-MBO marketing-BÖRSE E-Books +http://lobid.org/organisations/ZDB-229-KAD#! ZDB-229-KAD ZDB-229-KAD Kaden E-Books +http://lobid.org/organisations/ZDB-162-BCD#! ZDB-162-BCD ZDB-162-BCD Bloomsbury Collections / Design +http://lobid.org/organisations/ZDB-27-DOO#! ZDB-27-DOO ZDB-27-DOO Ovid / LWW Doody's Core Book Collection +http://lobid.org/organisations/ZDB-1-BRA#! ZDB-1-BRA ZDB-1-BRA British Archiv [FID-Lizenz] +http://lobid.org/organisations/ZDB-20-CUL#! ZDB-20-CUL ZDB-20-CUL Cambridge University Press / London Mathematical Society Lecture Note Series +http://lobid.org/organisations/ZDB-18-HGO#! ZDB-18-HGO ZDB-18-HGO beck-online / Handels- und Gesellschaftsrecht OPTIMUM +http://lobid.org/organisations/ZDB-18-KRP#! ZDB-18-KRP ZDB-18-KRP beck-online / Kartellrecht PLUS +http://lobid.org/organisations/ZDB-240-ASM#! ZDB-240-ASM ZDB-240-ASM ASME Digital Collection eBooks +http://lobid.org/organisations/ZDB-1-JAS#! ZDB-1-JAS ZDB-1-JAS JSTOR : Asia Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-GUD#! ZDB-1-GUD ZDB-1-GUD Gudok : ežednevnaja transportnaja gazeta (UDB-ISL) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-30-ORH#! ZDB-30-ORH ZDB-30-ORH O'Reilly Higher Education +http://lobid.org/organisations/ZDB-219-DTS#! ZDB-219-DTS ZDB-219-DTS dpunkt.verlag / Testen & Softwarequalität +http://lobid.org/organisations/ZDB-219-DSO#! ZDB-219-DSO ZDB-219-DSO dpunkt.verlag / Softwareentwicklung +http://lobid.org/organisations/ZDB-219-DPD#! ZDB-219-DPD ZDB-219-DPD dpunkt.verlag / Publishing & Design +http://lobid.org/organisations/ZDB-219-DMT#! ZDB-219-DMT ZDB-219-DMT dpunkt.verlag / Maker-Themen +http://lobid.org/organisations/ZDB-219-DVG#! ZDB-219-DVG ZDB-219-DVG dpunkt.verlag / Genres - Menschenfotografie +http://lobid.org/organisations/ZDB-219-DAM#! ZDB-219-DAM ZDB-219-DAM dpunkt.verlag / Agile Methoden +http://lobid.org/organisations/ZDB-219-DAL#! ZDB-219-DAL ZDB-219-DAL dpunkt.verlag / Agile Leadership +http://lobid.org/organisations/ZDB-219-OWD#! ZDB-219-OWD ZDB-219-OWD O'Reilly / Webprogrammierung/-Design +http://lobid.org/organisations/ZDB-219-ODV#! ZDB-219-ODV ZDB-219-ODV O'Reilly / Divers +http://lobid.org/organisations/ZDB-59-EEO#! ZDB-59-EEO ZDB-59-EEO Beltz Enzyklopädie Erziehungswissenschaft Online +http://lobid.org/organisations/ZDB-7-RHM#! ZDB-7-RHM ZDB-7-RHM Routledge Handbooks Online / Music +http://lobid.org/organisations/ZDB-236-ETM#! ZDB-236-ETM ZDB-236-ETM edition text+kritik / Musikgeschichte 1 +http://lobid.org/organisations/ZDB-236-ETS#! ZDB-236-ETS ZDB-236-ETS edition text+kritik / Film & Schrift, Fernsehen/Geschichte/Ästhetik & CineGraphBuch +http://lobid.org/organisations/ZDB-18-AUR#! ZDB-18-AUR ZDB-18-AUR beck-online / Ausländer- und Migrationsrecht PLUS +http://lobid.org/organisations/ZDB-28-OLH#! ZDB-28-OLH ZDB-28-OLH Oxford Scholarly Editions Online / Latin History +http://lobid.org/organisations/ZDB-138-AMV#! ZDB-138-AMV ZDB-138-AMV AMS ebooks / AMS/IP Studies in Advanced Mathematics +http://lobid.org/organisations/ZDB-7-TOA#! ZDB-7-TOA ZDB-7-TOA Taylor & Francis eBooks / Open Access +http://lobid.org/organisations/ZDB-1-CJAA#! ZDB-1-CJAA ZDB-1-CJAA Diaolong Full-text Database of Chinese & Japanese Ancient Books / Zhengtong Daozang [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAB#! ZDB-1-APAB ZDB-1-APAB Apabi / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-AIB#! ZDB-1-AIB ZDB-1-AIB airitiBooks [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CCG#! ZDB-1-CCG ZDB-1-CCG China Comprehensive Gazetteers [FID-Lizenz] +http://lobid.org/organisations/ZDB-33-ESE#! ZDB-33-ESE ZDB-33-ESE Elsevier e-book collection - Social Sciences +http://lobid.org/organisations/ZDB-20-CPS#! ZDB-20-CPS ZDB-20-CPS Cambridge Books Online / Psychology +http://lobid.org/organisations/ZDB-253-DIP#! ZDB-253-DIP ZDB-253-DIP dp DIGITAL PUBLISHERS E-Books +http://lobid.org/organisations/ZDB-256-RHV#! ZDB-256-RHV ZDB-256-RHV Rainer Hampp Verlag e-books +http://lobid.org/organisations/ZDB-1-SAGH3#! ZDB-1-SAGH3 ZDB-1-SAGH3 Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) / Upgrade für 2017 bis 2020 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-AP13#! ZDB-1-AP13 ZDB-1-AP13 Armenia Presidential Election 2013 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-95-GCO#! ZDB-95-GCO ZDB-95-GCO Primary Sources / History / Grotius Collection Online: Printed Works +http://lobid.org/organisations/ZDB-18-NLP#! ZDB-18-NLP ZDB-18-NLP Nomos eLibrary / Studienliteratur Philosophie +http://lobid.org/organisations/ZDB-257-PMV#! ZDB-257-PMV ZDB-257-PMV Pabel-Moewig Verlag E-Books +http://lobid.org/organisations/ZDB-258-RAV#! ZDB-258-RAV ZDB-258-RAV Ravensburger E-Books +http://lobid.org/organisations/ZDB-1-MHT#! ZDB-1-MHT ZDB-1-MHT Magnes Press / e-Book collection Hebrew title [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JMATE#! ZDB-1-JMATE ZDB-1-JMATE JSTOR : Lives of Literature Extension / Medieval Authors & Texts [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JMAUE#! ZDB-1-JMAUE ZDB-1-JMAUE JSTOR : Lives of Literature Extension / Modernist Authors [Nationalkonsortium] +http://lobid.org/organisations/ZDB-27-DEB#! ZDB-27-DEB ZDB-27-DEB Ovid / LWW Doody's Essential Book Collection +http://lobid.org/organisations/ZDB-1-SAGM3#! ZDB-1-SAGM3 ZDB-1-SAGM3 Sage Journals Online Publish & Read / Materials Science & Engineering / Upgrade für 2017 bis 2020 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-23-SEW#! ZDB-23-SEW ZDB-23-SEW De Gruyter eBook-Paket Erziehungswissenschaften, Psychologie, Kommunikation +http://lobid.org/organisations/ZDB-87-BDL#! ZDB-87-BDL ZDB-87-BDL Classiques Garnier Numérique / Bibliothèque des Lettres +http://lobid.org/organisations/ZDB-171-LSG#! ZDB-171-LSG ZDB-171-LSG Logos / Sport, Bewegung +http://lobid.org/organisations/ZDB-84-KFW#! ZDB-84-KFW ZDB-84-KFW Kohlhammer Feuerwehr +http://lobid.org/organisations/ZDB-142-WAA#! ZDB-142-WAA ZDB-142-WAA WBG / Anglistik, Amerikanistik +http://lobid.org/organisations/ZDB-126-OBF#! ZDB-126-OBF ZDB-126-OBF oekom verlag / Bildung & Forschung +http://lobid.org/organisations/ZDB-126-ONNS#! ZDB-126-ONNS ZDB-126-ONNS oekom verlag / Natur & Naturschutz +http://lobid.org/organisations/ZDB-18-BHNI#! ZDB-18-BHNI ZDB-18-BHNI Beck eLibrary / C.H. Beck Jura Beck-Hart-Nomos-International +http://lobid.org/organisations/ZDB-157-AREP#! ZDB-157-AREP ZDB-157-AREP Verlag Karl Alber / Religionsphilosophie +http://lobid.org/organisations/ZDB-157-AGE#! ZDB-157-AGE ZDB-157-AGE Verlag Karl Alber / Gegenwartsphilosophie +http://lobid.org/organisations/ZDB-157-AIK#! ZDB-157-AIK ZDB-157-AIK Verlag Karl Alber / Interkulturelle Philosophie +http://lobid.org/organisations/ZDB-157-APHA#! ZDB-157-APHA ZDB-157-APHA Verlag Karl Alber / Phänomenologie +http://lobid.org/organisations/ZDB-1-GISC#! ZDB-1-GISC ZDB-1-GISC Gender : Identity and Social Change [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-236-ETBM#! ZDB-236-ETBM ZDB-236-ETBM edition text+kritik / Basispaket Musik +http://lobid.org/organisations/ZDB-236-ETLP1#! ZDB-236-ETLP1 ZDB-236-ETLP1 edition text+kritik / Literatur Plus Periodika 1 +http://lobid.org/organisations/ZDB-18-BVRP#! ZDB-18-BVRP ZDB-18-BVRP beck-online / Verkehrsrecht PREMIUM +http://lobid.org/organisations/ZDB-263-SFI#! ZDB-263-SFI ZDB-263-SFI Schüren / Filmgeschichte +http://lobid.org/organisations/ZDB-2-SXMS#! ZDB-2-SXMS ZDB-2-SXMS Springer Nature / Mathematics and Statistics (R0) +http://lobid.org/organisations/ZDB-2-SXP#! ZDB-2-SXP ZDB-2-SXP Springer Nature / Physics and Astronomy (R0) +http://lobid.org/organisations/ZDB-2-SXBM#! ZDB-2-SXBM ZDB-2-SXBM Springer Nature / Business and Management (R0) +http://lobid.org/organisations/ZDB-2-SXPI#! ZDB-2-SXPI ZDB-2-SXPI Springer Nature / Political Science and International Studies (R0) +http://lobid.org/organisations/ZDB-2-SXLC#! ZDB-2-SXLC ZDB-2-SXLC Springer Nature / Law and Criminology (R0) +http://lobid.org/organisations/ZDB-2-SXRP#! ZDB-2-SXRP ZDB-2-SXRP Springer Nature / Reference Module Physical and Materials Science +http://lobid.org/organisations/ZDB-157-APW#! ZDB-157-APW ZDB-157-APW Verlag Karl Alber / Philosophie und die Wissenschaften +http://lobid.org/organisations/ZDB-88-ZZZ#! ZDB-88-ZZZ ZDB-88-ZZZ juris Zusatzmodul Zivil- und Zivilprozessrecht +http://lobid.org/organisations/ZDB-34-THPP#! ZDB-34-THPP ZDB-34-THPP Thieme / Psychologie, Psychotherapie +http://lobid.org/organisations/ZDB-5-WJP#! ZDB-5-WJP ZDB-5-WJP wiso Journals Politics +http://lobid.org/organisations/ZDB-34-TKPR#! ZDB-34-TKPR ZDB-34-TKPR Thieme Klinik Praxis / Radiologie +http://lobid.org/organisations/ZDB-34-TKPZ#! ZDB-34-TKPZ ZDB-34-TKPZ Thieme Klinik Praxis / Zahnmedizin +http://lobid.org/organisations/ZDB-136-SEA#! ZDB-136-SEA ZDB-136-SEA Suhrkamp / E-Books +http://lobid.org/organisations/ZDB-5-WIP#! ZDB-5-WIP ZDB-5-WIP wiso Pflege +http://lobid.org/organisations/ZDB-34-THKM#! ZDB-34-THKM ZDB-34-THKM Thieme E-Library Komplementärmedizin +http://lobid.org/organisations/ZDB-1-AMRR#! ZDB-1-AMRR ZDB-1-AMRR American Race Relations: Global Perspectives, 1941-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-IMR#! ZDB-1-IMR ZDB-1-IMR Immigrations, Migrations and Refugees: Global Perspectives, 1941-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-71-NVA#! ZDB-71-NVA ZDB-71-NVA Narr Verlag E-Books / Anglistik +http://lobid.org/organisations/ZDB-18-BEUP#! ZDB-18-BEUP ZDB-18-BEUP beck-online / Europarecht PREMIUM +http://lobid.org/organisations/ZDB-18-BNRP#! ZDB-18-BNRP ZDB-18-BNRP beck-online / Notarrecht PREMIUM +http://lobid.org/organisations/ZDB-5-WZH#! ZDB-5-WZH ZDB-5-WZH wiso DIE ZEIT (historisch) +http://lobid.org/organisations/ZDB-1-KAZD#! ZDB-1-KAZD ZDB-1-KAZD Digital Culture Art Course [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCU#! ZDB-1-HCU ZDB-1-HCU History Culture Series [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKA#! ZDB-1-JAKA ZDB-1-JAKA JapanKnowledge / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKC#! ZDB-1-JAKC ZDB-1-JAKC JapanKnowledge / Jinbutsu sosho [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKJ#! ZDB-1-JAKJ ZDB-1-JAKJ JapanKnowledge / Kadokawa kogo daijiten [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NKBT#! ZDB-1-NKBT ZDB-1-NKBT Nihon koten bungaku taikei honbun dētabēsu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ZKSS#! ZDB-1-ZKSS ZDB-1-ZKSS Zasshi kiji sakuin shūsei : Zassaku purasu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-MAIS#! ZDB-1-MAIS ZDB-1-MAIS Maisaku [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-FUKO#! ZDB-1-FUKO ZDB-1-FUKO Fujin Koron [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WLJL#! ZDB-1-WLJL ZDB-1-WLJL Web Library of Japanese Literature [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NFQ#! ZDB-1-NFQ ZDB-1-NFQ NEEDS Financial Quest [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKD#! ZDB-1-CNKD ZDB-1-CNKD CNKI / China Proceedings of Conference Full-text Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKE#! ZDB-1-CNKE ZDB-1-CNKE CNKI / China master's theses full-text database : CMFD [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NLSR#! ZDB-18-NLSR ZDB-18-NLSR Nomos eLibrary / Sozialrecht +http://lobid.org/organisations/ZDB-245-NWSG#! ZDB-245-NWSG ZDB-245-NWSG NWB Campus Library / Steuerrecht - Gesamt +http://lobid.org/organisations/ZDB-47-ECRW#! ZDB-47-ECRW ZDB-47-ECRW ESVcampus / Recht, Wirtschaft, Steuern (RWS) +http://lobid.org/organisations/ZDB-95-ERE#! ZDB-95-ERE ZDB-95-ERE Brill / Educational Research E-Books Online +http://lobid.org/organisations/ZDB-1-BKS#! ZDB-1-BKS ZDB-1-BKS Brill / Book Sales Catalogues Online [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-276-DAY#! ZDB-276-DAY ZDB-276-DAY Deutscher Ärzteverlag / Zahnmedizin: Chirurgie, Anästhesie, Kieferorthopädie +http://lobid.org/organisations/ZDB-277-FTD#! ZDB-277-FTD ZDB-277-FTD Frank & Timme / Antike und Rhetorik +http://lobid.org/organisations/ZDB-277-FTR#! ZDB-277-FTR ZDB-277-FTR Frank & Timme / Kunst-, Musik- und Theaterwissenschaft +http://lobid.org/organisations/ZDB-157-APOP#! ZDB-157-APOP ZDB-157-APOP Verlag Karl Alber / Politische Philosophie +http://lobid.org/organisations/ZDB-279-TBA#! ZDB-279-TBA ZDB-279-TBA Traugott Bautz Verlag / E-Books Gesamt +http://lobid.org/organisations/ZDB-279-TBB#! ZDB-279-TBB ZDB-279-TBB Traugott Bautz Verlag / Bellestristik +http://lobid.org/organisations/ZDB-279-TBD#! ZDB-279-TBD ZDB-279-TBD Traugott Bautz Verlag / Bibliotheks- & Buchgeschichte +http://lobid.org/organisations/ZDB-279-TBI#! ZDB-279-TBI ZDB-279-TBI Traugott Bautz Verlag / Islam +http://lobid.org/organisations/ZDB-279-TBPS#! ZDB-279-TBPS ZDB-279-TBPS Traugott Bautz Verlag / Psychologie +http://lobid.org/organisations/ZDB-279-TBR#! ZDB-279-TBR ZDB-279-TBR Traugott Bautz Verlag / Religion +http://lobid.org/organisations/ZDB-279-TBW#! ZDB-279-TBW ZDB-279-TBW Traugott Bautz Verlag / Wirtschaft +http://lobid.org/organisations/ZDB-142-WXA#! ZDB-142-WXA ZDB-142-WXA WBG / Basis Alte Geschichte +http://lobid.org/organisations/ZDB-142-WXD#! ZDB-142-WXD ZDB-142-WXD WBG / Basis Kunst +http://lobid.org/organisations/ZDB-142-WXH#! ZDB-142-WXH ZDB-142-WXH WBG / Basis Theologie +http://lobid.org/organisations/ZDB‑198‑DUB#! ZDB‑198‑DUB ZDB‑198‑DUB Duke University Press / African American, African, and Black Diaspora Studies e‑book collection +http://lobid.org/organisations/ZDB-278-ZUC#! ZDB-278-ZUC ZDB-278-ZUC Zuckschwerdt Verlag / Chirurgie +http://lobid.org/organisations/ZDB-162-FBL#! ZDB-162-FBL ZDB-162-FBL Bloomsbury / Fairchild Books Library +http://lobid.org/organisations/ZDB-277-FTX#! ZDB-277-FTX ZDB-277-FTX Frank & Timme / Paul-Gerhard +http://lobid.org/organisations/ZDB-277-FTZA#! ZDB-277-FTZA ZDB-277-FTZA Frank & Timme / Rechtwissenschaft +http://lobid.org/organisations/ZDB-277-FTZD#! ZDB-277-FTZD ZDB-277-FTZD Frank & Timme / Rumänistik +http://lobid.org/organisations/ZDB-277-FTZH#! ZDB-277-FTZH ZDB-277-FTZH Frank & Timme / Sprache und Kultur +http://lobid.org/organisations/ZDB-277-FTZL#! ZDB-277-FTZL ZDB-277-FTZL Frank & Timme / Theologie und Religionswissenschaft +http://lobid.org/organisations/ZDB-22-CWH#! ZDB-22-CWH ZDB-22-CWH Ciando / Lehrbuchpaket Wiley Hauptfach +http://lobid.org/organisations/ZDB-1-SPPB#! ZDB-1-SPPB ZDB-1-SPPB Shakespeare in Performance. Prompt Books from The Folger Shakespeare Library [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SAGH4#! ZDB-1-SAGH4 ZDB-1-SAGH4 Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) / Upgrade für 2021 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-281-VDA#! ZDB-281-VDA ZDB-281-VDA VDI Verlag-eLibrary / Agrar- und Umwelttechnik, Wasser, Boden, Chemie +http://lobid.org/organisations/ZDB-281-VDB#! ZDB-281-VDB ZDB-281-VDB VDI Verlag-eLibrary / Bauingenieurwesen und Architektur +http://lobid.org/organisations/ZDB-281-VDE#! ZDB-281-VDE ZDB-281-VDE VDI Verlag-eLibrary / Elektrotechnik, Elektronik und Medizintechnik +http://lobid.org/organisations/ZDB-1-OBIL#! ZDB-1-OBIL ZDB-1-OBIL Oxford Bibliographies in International Law [FID-Lizenz] +http://lobid.org/organisations/ZDB-105-MCIA#! ZDB-105-MCIA ZDB-105-MCIA IEEE Morgan & Claypool: Computer & Information Science Collections +http://lobid.org/organisations/ZDB-28-OLFL#! ZDB-28-OLFL ZDB-28-OLFL Oxford Legal Research Library / Financial and Banking Law +http://lobid.org/organisations/ZDB-91-CABA#! ZDB-91-CABA ZDB-91-CABA CABI books / Agriculture +http://lobid.org/organisations/ZDB-91-CABV#! ZDB-91-CABV ZDB-91-CABV CABI books / Animal & Veterinary +http://lobid.org/organisations/ZDB-37-IAHO#! ZDB-37-IAHO ZDB-37-IAHO IEEE Artech House eBook Collection +http://lobid.org/organisations/ZDB-16-KIA#! ZDB-16-KIA ZDB-16-KIA Hanser eLibrary / KI und Automatisierung +http://lobid.org/organisations/ZDB-1-RNF#! ZDB-1-RNF ZDB-1-RNF Retronews.fr [FID-Lizenz] +http://lobid.org/organisations/ZDB-9-DLB#! ZDB-9-DLB ZDB-9-DLB Dictionary of Literary Biography +http://lobid.org/organisations/ZDB-41-SV2#! ZDB-41-SV2 ZDB-41-SV2 scholars-e-library / Germanistik / Backlist vdf +http://lobid.org/organisations/ZDB-41-SJ1#! ZDB-41-SJ1 ZDB-41-SJ1 scholars-e-library / Medien & Kommunikation / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SBS5#! ZDB-41-SBS5 ZDB-41-SBS5 scholars-e-library / Psychotherapie / Backlist Schattauer +http://lobid.org/organisations/ZDB-41-SJ7#! ZDB-41-SJ7 ZDB-41-SJ7 scholars-e-library / Schlüsselkompetenzen / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SV10#! ZDB-41-SV10 ZDB-41-SV10 scholars-e-library / Soziologie / Backlist vdf +http://lobid.org/organisations/ZDB-41-SV11#! ZDB-41-SV11 ZDB-41-SV11 scholars-e-library / Wirtschaft / Backlist vdf +http://lobid.org/organisations/ZDB-41-SKK#! ZDB-41-SKK ZDB-41-SKK scholars-e-library / Kunst/ Kultur/ Theater +http://lobid.org/organisations/ZDB-162-BCA#! ZDB-162-BCA ZDB-162-BCA Bloomsbury Collections / Architecture +http://lobid.org/organisations/ZDB-34-THOP#! ZDB-34-THOP ZDB-34-THOP Thieme E-Book Library / Osteopathie +http://lobid.org/organisations/ZDB-73-CSW#! ZDB-73-CSW ZDB-73-CSW campus e-books / Sozialwissenschaften Archiv +http://lobid.org/organisations/ZDB-59-BPBP#! ZDB-59-BPBP ZDB-59-BPBP Beltz Psychologie Basis-Paket +http://lobid.org/organisations/ZDB-215-AMST#! ZDB-215-AMST ZDB-215-AMST Aisthesis / Moderne Studien +http://lobid.org/organisations/ZDB-142-WAZ1#! ZDB-142-WAZ1 ZDB-142-WAZ1 WBG / Archäologie Zeitschriften und Sonderhefte 2017-2020 +http://lobid.org/organisations/ZDB-157-HREX#! ZDB-157-HREX ZDB-157-HREX Herder / Rechtsextremismus +http://lobid.org/organisations/ZDB-157-HEU#! ZDB-157-HEU ZDB-157-HEU Herder / Europa +http://lobid.org/organisations/ZDB-157-HSL#! ZDB-157-HSL ZDB-157-HSL Herder / Staatslexikon +http://lobid.org/organisations/ZDB-1-NICN#! ZDB-1-NICN ZDB-1-NICN National index to Chinese newspapers & periodicals [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EZL#! ZDB-1-EZL ZDB-1-EZL Erudition / Zhongguo leishu ku [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OCPC#! ZDB-1-OCPC ZDB-1-OCPC Oriprobe / Archives of the Communist Party of China (CPC) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UP19#! ZDB-1-UP19 ZDB-1-UP19 Ukraine Parliamentary Election 2019 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RPF#! ZDB-1-RPF ZDB-1-RPF Russia Presidential Election 2008 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RSDA#! ZDB-1-RSDA ZDB-1-RSDA Russia State Duma Election 2007 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RCC#! ZDB-1-RCC ZDB-1-RCC Russia's Constitutional Crisis 1993 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RSD93#! ZDB-1-RSD93 ZDB-1-RSD93 Russia State Duma Election 1993 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RIT#! ZDB-1-RIT ZDB-1-RIT Russia in Transition 1990s [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-284-DPP#! ZDB-284-DPP ZDB-284-DPP DPV / Praxiswissen Psychologie +http://lobid.org/organisations/DB-286-AVE#! DB-286-AVE ZDB-286-AVE Aschendorff Verlag / Ethik +http://lobid.org/organisations/ZDB-1-DST#! ZDB-1-DST ZDB-1-DST Sammlung Tusculum [FID-Lizenz] +http://lobid.org/organisations/ZDB-283-ALF#! ZDB-283-ALF ZDB-283-ALF ARC Aerospace Research Central Ebooks / Library of flight +http://lobid.org/organisations/ZDB-1-GRC#! ZDB-1-GRC ZDB-1-GRC Gale Reference Complete [FID-Lizenz] +http://lobid.org/organisations/ZDB-23-DSL#! ZDB-23-DSL ZDB-23-DSL De Gruyter eBook-Paket Soziologie +http://lobid.org/organisations/ZDB-1-JAKM#! ZDB-1-JAKM ZDB-1-JAKM JapanKnowledge / Dai Kanwa Jiten [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KXI#! ZDB-1-KXI ZDB-1-KXI Kangxi zidian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ASSP#! ZDB-1-ASSP ZDB-1-ASSP Analytical System for the Complete Song Poetry [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CBH#! ZDB-1-CBH ZDB-1-CBH China's Borderland History and Geography Studies Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PD1#! ZDB-1-PD1 ZDB-1-PD1 People's Daily (1946-) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-QIU#! ZDB-1-QIU ZDB-1-QIU Qiushi [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNQM#! ZDB-1-UNQM ZDB-1-UNQM Unihan / Qingmo lujun haijun wenxian huibian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCCD#! ZDB-1-HCCD ZDB-1-HCCD Database of the Chinese Political Campaigns in the 1950s: From Land Reform to State-Private Partnership [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PKUA#! ZDB-1-PKUA ZDB-1-PKUA PKULaw.com [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PKUB#! ZDB-1-PKUB ZDB-1-PKUB LawInfoChina [FID-Lizenz] +http://lobid.org/organisations/ZDB-236-ETAB#! ZDB-236-ETAB ZDB-236-ETAB edition text+kritik / Frankfurter Adorno Blätter +http://lobid.org/organisations/ZDB-1-OGT#! ZDB-1-OGT ZDB-1-OGT Oriprobe / Huan qiu shi bao = Global Times (1993-Present) [FID-Lizenz] +http://lobid.org/organisations/ZDB-289-HSEG#! ZDB-289-HSEG ZDB-289-HSEG Herzsprung-Verlag / E-Books +http://lobid.org/organisations/ZDB-162-DOA#! ZDB-162-DOA ZDB-162-DOA Drama Online / Core collection +http://lobid.org/organisations/ZDB-162-DOE#! ZDB-162-DOE ZDB-162-DOE Drama Online / Playwrights Canada Press +http://lobid.org/organisations/ZDB-162-DOF#! ZDB-162-DOF ZDB-162-DOF Drama Online / L.A. Theatre Works +http://lobid.org/organisations/ZDB-41-ULWB#! ZDB-41-ULWB ZDB-41-ULWB scholars-e-library / Landwirtschaft Ausbildung / Backlist Ulmer +http://lobid.org/organisations/ZDB-1-EBF#! ZDB-1-EBF ZDB-1-EBF EBSCO / E-Book-Paket des FID Erziehungswissenschaft und Bildungsforschung [FID-Lizenz] +http://lobid.org/organisations/ZDB-292-PDCA#! ZDB-292-PDCA ZDB-292-PDCA Philosophy Documentation Center / Complete E-Collection +http://lobid.org/organisations/ZDB-1-LAN#! ZDB-1-LAN ZDB-1-LAN Latin American newspapers, 1805-1922 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DLBF#! ZDB-1-DLBF ZDB-1-DLBF Dictionary of Literary Biography [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DLZ#! ZDB-1-DLZ ZDB-1-DLZ Dalloz [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EOC#! ZDB-1-EOC ZDB-1-EOC Brill's Encyclopedia of China [FID-Lizenz] +http://lobid.org/organisations/ZDB-293-ALE#! ZDB-293-ALE ZDB-293-ALE Amalivre Ebooks +http://lobid.org/organisations/ZDB-124-WSEM#! ZDB-124-WSEM ZDB-124-WSEM World Scientific Publishing / Energy Materials +http://lobid.org/organisations/ZDB-294-OBPA#! ZDB-294-OBPA ZDB-294-OBPA Open Book Publishers / Ebooks +http://lobid.org/organisations/ZDB-75-TOES#! ZDB-75-TOES ZDB-75-TOES Torrossa / EEO - Edición Española Online / Spanish Studies +http://lobid.org/organisations/ZDB-168-MANL#! ZDB-168-MANL ZDB-168-MANL Access Neurology / EBooks +http://lobid.org/organisations/ZDB-297-RIME#! ZDB-297-RIME ZDB-297-RIME RILM Music Encyclopedias +http://lobid.org/organisations/ZDB-1-EOS#! ZDB-1-EOS ZDB-1-EOS Brill's Encyclopedia of Sikhism Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SAGH5#! ZDB-1-SAGH5 ZDB-1-SAGH5 Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) / Upgrade für 2022 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGS5#! ZDB-1-SAGS5 ZDB-1-SAGS5 Sage Journals Online Publish & Read / Science Technology Medicine (STM) / Upgrade für 2022 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-SAGM5#! ZDB-1-SAGM5 ZDB-1-SAGM5 Sage Journals Online Publish & Read / Materials Science & Engineering / Upgrade für 2022 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-77-EEP#! ZDB-77-EEP ZDB-77-EEP Edward Elgar / Political Science & Public Policy +http://lobid.org/organisations/ZDB-33-NSPL#! ZDB-33-NSPL ZDB-33-NSPL Elsevier e-book collection – Neuroscience and Psychology +http://lobid.org/organisations/ZDB-2-SXSC#! ZDB-2-SXSC ZDB-2-SXSC Springer Nature / Synthesis Collection of Technology (R0) +http://lobid.org/organisations/ZDB-41-SBS6#! ZDB-41-SBS6 ZDB-41-SBS6 scholars-e-library / Psychoanalyse / Backlist Schattauer +http://lobid.org/organisations/ZDB-28-OPLB#! ZDB-28-OPLB ZDB-28-OPLB Oxford Public International Law / Oxford Scholarly Authorities on International Law +http://lobid.org/organisations/ZDB-298-BUSA#! ZDB-298-BUSA ZDB-298-BUSA Buske eLibrary +http://lobid.org/organisations/ZDB-77-ESSP#! ZDB-77-ESSP ZDB-77-ESSP Edward Elgar / Sociology, Social Policy and Education +http://lobid.org/organisations/ZDB-114-LACS#! ZDB-114-LACS ZDB-114-LACS Peter Lang eBooks / Culture & Society +http://lobid.org/organisations/ZDB-77-EMF#! ZDB-77-EMF ZDB-77-EMF Edward Elgar / Essentials in Money & Finance +http://lobid.org/organisations/ZDB-54-DKPW#! ZDB-54-DKPW ZDB-54-DKPW Duncker & Humblot eLibrary / Paket POL (Politikwissenschaft) +http://lobid.org/organisations/ZDB-4-EOAC#! ZDB-4-EOAC ZDB-4-EOAC EBSCO eBook Open Access (OA) Collection +http://lobid.org/organisations/ZDB-277-FTZT#! ZDB-277-FTZT ZDB-277-FTZT Frank & Timme / Geschichte, Politik, Soziales +http://lobid.org/organisations/ZDB-236-ETFG#! ZDB-236-ETFG ZDB-236-ETFG edition text+kritik / Basispaket Filmgeschichte +http://lobid.org/organisations/ZDB-236-ETFM#! ZDB-236-ETFM ZDB-236-ETFM edition text+kritik / Basispaket Filmemacher +http://lobid.org/organisations/ZDB-290-EEBS#! ZDB-290-EEBS ZDB-290-EEBS Elektor / Elektronikbaustein +http://lobid.org/organisations/ZDB-1-ENI#! ZDB-1-ENI ZDB-1-ENI Environmental Issues Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-303-BVC#! ZDB-303-BVC ZDB-303-BVC Bildner Verlag / Computer & Office +http://lobid.org/organisations/ZDB-142-WHOA#! ZDB-142-WHOA ZDB-142-WHOA WBG / Historamericana Open Access +http://lobid.org/organisations/ZDB-157-HSQ#! ZDB-157-HSQ ZDB-157-HSQ Herder / Spiritualität +http://lobid.org/organisations/ZDB-157-HSZ#! ZDB-157-HSZ ZDB-157-HSZ Herder / Kirche in schwierigen Zeiten +http://lobid.org/organisations/ZDB-114-LELL#! ZDB-114-LELL ZDB-114-LELL Peter Lang eBooks / English Language and Literatures +http://lobid.org/organisations/ZDB-186-WTB#! ZDB-186-WTB ZDB-186-WTB WTM-Verlag / Allgemeine Reihe +http://lobid.org/organisations/ZDB-186-WTE#! ZDB-186-WTE ZDB-186-WTE WTM-Verlag / ars inveniendi et dejudicandi (Problemlösen im Mathematikunterricht) +http://lobid.org/organisations/ZDB-186-WTL#! ZDB-186-WTL ZDB-186-WTL WTM-Verlag / Geschichte der Mathematik und ihrer Didaktik +http://lobid.org/organisations/ZDB-186-WTN#! ZDB-186-WTN ZDB-186-WTN WTM-Verlag / Schriften zum Modellieren und Anwenden von Mathematik +http://lobid.org/organisations/ZDB-186-WTR#! ZDB-186-WTR ZDB-186-WTR WTM-Verlag / Mathematiklernen mit digitalen Medien +http://lobid.org/organisations/ZDB-162-BAM#! ZDB-162-BAM ZDB-162-BAM Bloomsbury Collections / Business & Management +http://lobid.org/organisations/ZDB-1-LIPC#! ZDB-1-LIPC ZDB-1-LIPC Literary Print Culture [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-208-FOM75#! ZDB-208-FOM75 ZDB-208-FOM75 Adam Matthew Digital / Foreign Office Files for the Middle East: 1975-1978, The Lebanese Civil War and the Camp David Accords +http://lobid.org/organisations/ZDB-208-SIQ#! ZDB-208-SIQ ZDB-208-SIQ Adam Matthew Digital / Shakespeare in Performance +http://lobid.org/organisations/ZDB-41-FOW#! ZDB-41-FOW ZDB-41-FOW scholars-e-library / Forstwirtschaft +http://lobid.org/organisations/ZDB-41-SPWI#! ZDB-41-SPWI ZDB-41-SPWI scholars-e-library / Sportwissenschaft +http://lobid.org/organisations/ZDB-41-TIR#! ZDB-41-TIR ZDB-41-TIR scholars-e-library / Tiere +http://lobid.org/organisations/ZDB-41-SN9#! ZDB-41-SN9 ZDB-41-SN9 scholars-e-library / Religion, Theologie, Religionswissenschaft / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN15#! ZDB-41-SN15 ZDB-41-SN15 scholars-e-library / Wirtschaft / Backlist Narr +http://lobid.org/organisations/ZDB-41-SA4#! ZDB-41-SA4 ZDB-41-SA4 scholars-e-library / Kunst, Kultur, Theater / Backlist Aisthesis +http://lobid.org/organisations/ZDB-95-HRD#! ZDB-95-HRD ZDB-95-HRD Brill / Human Rights Documents online +http://lobid.org/organisations/ZDB-95-MAL#! ZDB-95-MAL ZDB-95-MAL Brill / Missionary Archives from Lesotho, 1832-2006 +http://lobid.org/organisations/ZDB-95-CMR#! ZDB-95-CMR ZDB-95-CMR Brill / Christian-Muslim Relations 600-1500 +http://lobid.org/organisations/ZDB-1-CMW1#! ZDB-1-CMW1 ZDB-1-CMW1 China and the Modern World, Part 1: Missionary, Sinology, and Literary Periodicals (1817-1949) [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BNV#! ZDB-18-BNV ZDB-18-BNV beck-online / NomosOnline Verwaltungsrecht +http://lobid.org/organisations/ZDB-95-SFM#! ZDB-95-SFM ZDB-95-SFM Brill / All Schöningh, Fink and mentis Titles +http://lobid.org/organisations/ZDB-1-RPS#! ZDB-1-RPS ZDB-1-RPS RIPM preservation series: European & North American music periodicals [FID-Lizenz] +http://lobid.org/organisations/ZDB-48-JFP#! ZDB-48-JFP ZDB-48-JFP Jurion - Familienrecht Premium +http://lobid.org/organisations/ZDB-1-IMF#! ZDB-1-IMF ZDB-1-IMF International Monetary Fund eLibrary [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-42-ON3#! ZDB-42-ON3 ZDB-42-ON3 Oldenbourg / Naturwissenschaft und Technik 3 +http://lobid.org/organisations/ZDB-42-OWZ#! ZDB-42-OWZ ZDB-42-OWZ Oldenbourg / Zeitgeschichte ab 1933 +http://lobid.org/organisations/ZDB-59-BPB#! ZDB-59-BPB ZDB-59-BPB Beltz Psychologie +http://lobid.org/organisations/ZDB-59-BPF#! ZDB-59-BPF ZDB-59-BPF Beltz Frühpädagogik +http://lobid.org/organisations/ZDB-84-KOF#! ZDB-84-KOF ZDB-84-KOF Kohlhammer Pädagogische Psychologie +http://lobid.org/organisations/ZDB-84-KOJ#! ZDB-84-KOJ ZDB-84-KOJ Kohlhammer Einführungen und Allgemeine Psychologie +http://lobid.org/organisations/ZDB-84-KOO#! ZDB-84-KOO ZDB-84-KOO Kohlhammer Heil- und Sonderpädagogik +http://lobid.org/organisations/ZDB-85-LDG#! ZDB-85-LDG ZDB-85-LDG Linde-Verlag Gründung und Selbstständigkeit +http://lobid.org/organisations/ZDB-85-LDH#! ZDB-85-LDH ZDB-85-LDH Linde-Verlag Beruf und Kariere +http://lobid.org/organisations/ZDB-85-LDM#! ZDB-85-LDM ZDB-85-LDM Linde-Verlag Wohnen und Immobilien +http://lobid.org/organisations/ZDB-90-HGE#! ZDB-90-HGE ZDB-90-HGE Hogrefe eLibrary +http://lobid.org/organisations/ZDB-39-JB3#! ZDB-39-JB3 ZDB-39-JB3 JSTOR : Business III Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-18-NOW#! ZDB-18-NOW ZDB-18-NOW Nomos eLibrary / Wirtschaft +http://lobid.org/organisations/ZDB-84-KOQ#! ZDB-84-KOQ ZDB-84-KOQ Kohlhammer Theologie / Systematik - Ethik +http://lobid.org/organisations/ZDB-42-OPO#! ZDB-42-OPO ZDB-42-OPO Oldenbourg / Politische Ideen Politikwissenschaften +http://lobid.org/organisations/ZDB-42-OTE#! ZDB-42-OTE ZDB-42-OTE Oldenbourg / Technik +http://lobid.org/organisations/ZDB-74-AKE#! ZDB-74-AKE ZDB-74-AKE akademie-link / Goethe Briefe +http://lobid.org/organisations/ZDB-74-AKF#! ZDB-74-AKF ZDB-74-AKF akademie-link / Kunstgeschichte +http://lobid.org/organisations/ZDB-74-AKL#! ZDB-74-AKL ZDB-74-AKL akademie-link / Sprach- und Literaturwissenschaften +http://lobid.org/organisations/ZDB-1-DGW#! ZDB-1-DGW ZDB-1-DGW Nietzsche online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PSA#! ZDB-1-PSA ZDB-1-PSA BrillOnline / Primary sources / Reformation Studies / Anti-Calvin Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PSC#! ZDB-1-PSC ZDB-1-PSC BrillOnline / Primary sources / Reformation Studies / Conrad Gessner's Private Library Online [Nationallizenz] +http://lobid.org/organisations/ZDB-23-BKA#! ZDB-23-BKA ZDB-23-BKA Birkhäuser eBook-Paket / Architektur und Design +http://lobid.org/organisations/ZDB-23-DBE#! ZDB-23-DBE ZDB-23-DBE De Gruyter eBook-Paket Biologie, Chemie, Geowissenschaften englisch +http://lobid.org/organisations/ZDB-23-DCA#! ZDB-23-DCA ZDB-23-DCA De Gruyter e-dition 2: Best of Law / Rechtswissenschaften +http://lobid.org/organisations/ZDB-95-PJD#! ZDB-95-PJD ZDB-95-PJD Primary sources / Jewish Studies, Middle Eastern and Islamic Studies / Moses Maimonides, unparalleled editions +http://lobid.org/organisations/ZDB-1-PLL#! ZDB-1-PLL ZDB-1-PLL Palgrave Connect / Language & Linguistics [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PTH#! ZDB-1-PTH ZDB-1-PTH Palgrave Connect / Theatre & Performance [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-7-TLL#! ZDB-7-TLL ZDB-7-TLL Taylor & Francis eBooks / Language & Linguistics +http://lobid.org/organisations/ZDB-37-IEX#! ZDB-37-IEX ZDB-37-IEX IEEE Xplore / IEEE-IET Electronic Library (IEL) +http://lobid.org/organisations/ZDB-84-KOS#! ZDB-84-KOS ZDB-84-KOS Kohlhammer Biographien +http://lobid.org/organisations/ZDB-84-KOV#! ZDB-84-KOV ZDB-84-KOV Kohlhammer Völkergeschichte +http://lobid.org/organisations/ZDB-23-DMD#! ZDB-23-DMD ZDB-23-DMD De Gruyter eBook-Paket Medizin deutsch +http://lobid.org/organisations/ZDB-23-DPA#! ZDB-23-DPA ZDB-23-DPA DETAIL eBook-Paket Architektur +http://lobid.org/organisations/ZDB-102-ANO#! ZDB-102-ANO ZDB-102-ANO Anthropology Online +http://lobid.org/organisations/ZDB-109-LSS#! ZDB-109-LSS ZDB-109-LSS Lambertus / Sozialmanagement und Sozialwirtschaft +http://lobid.org/organisations/ZDB-109-LIB#! ZDB-109-LIB ZDB-109-LIB Lambertus / Inklusion, Heilpädagogik, Behinderung +http://lobid.org/organisations/ZDB-109-LMI#! ZDB-109-LMI ZDB-109-LMI Lambertus / Fachliteratur für die Arbeit mit Menschen in Besonderen Lebenslagen +http://lobid.org/organisations/ZDB-107-WPS#! ZDB-107-WPS ZDB-107-WPS scholars-e-library / Psychologie / Backlist Waxmann +http://lobid.org/organisations/ZDB-41-UTBS#! ZDB-41-UTBS ZDB-41-UTBS scholars-e-library / Pflege +http://lobid.org/organisations/ZDB-1-JB4#! ZDB-1-JB4 ZDB-1-JB4 JSTOR : Business IV Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-112-SRE#! ZDB-112-SRE ZDB-112-SRE Schattauer E-Medien / Zahnmedizin +http://lobid.org/organisations/ZDB-112-SRK#! ZDB-112-SRK ZDB-112-SRK Schattauer E-Medien / Orthopädie, Sportmedizin +http://lobid.org/organisations/ZDB-1-ATO#! ZDB-1-ATO ZDB-1-ATO Anthropology Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-18-NFR#! ZDB-18-NFR ZDB-18-NFR Nomos eLibrary / Öffentliches Recht +http://lobid.org/organisations/ZDB-41-SSP#! ZDB-41-SSP ZDB-41-SSP scholars-e-library / Sonderpädagogik +http://lobid.org/organisations/ZDB-113-LMA#! ZDB-113-LMA ZDB-113-LMA Chandos Publishing / Library Management +http://lobid.org/organisations/ZDB-95-BCS#! ZDB-95-BCS ZDB-95-BCS Brill / Classical Studies E-Books Online +http://lobid.org/organisations/ZDB-95-BGO#! ZDB-95-BGO ZDB-95-BGO Brill Online / Global Oriental +http://lobid.org/organisations/ZDB-95-RST#! ZDB-95-RST ZDB-95-RST Brill / Religious Studies, Theology and Philosophy E-Books Online +http://lobid.org/organisations/ZDB-98-IGB#! ZDB-98-IGB ZDB-98-IGB IGI Global Books +http://lobid.org/organisations/ZDB-28-OSF#! ZDB-28-OSF ZDB-28-OSF Oxford Scholarship Online / Palliative Care +http://lobid.org/organisations/ZDB-96-SKC#! ZDB-96-SKC ZDB-96-SKC Sage knowledge / Complete +http://lobid.org/organisations/ZDB-96-SLB#! ZDB-96-SLB ZDB-96-SLB Sage knowledge / Life & Biomedical Sciences +http://lobid.org/organisations/ZDB-96-SPS#! ZDB-96-SPS ZDB-96-SPS Sage knowledge / Psychology +http://lobid.org/organisations/ZDB-102-SPD#! ZDB-102-SPD ZDB-102-SPD The Sixties: Primary Documents and Personal Narratives, 1960 to 1974 +http://lobid.org/organisations/ZDB-7-EDC#! ZDB-7-EDC ZDB-7-EDC Taylor & Francis eBooks / Education +http://lobid.org/organisations/ZDB-7-EAS#! ZDB-7-EAS ZDB-7-EAS Taylor & Francis eBooks / Earth Sciences +http://lobid.org/organisations/ZDB-7-CST#! ZDB-7-CST ZDB-7-CST Taylor & Francis eBooks / Communication Studies +http://lobid.org/organisations/ZDB-109-LSK#! ZDB-109-LSK ZDB-109-LSK Lambertus / Sozial- und Kommunalpolitik +http://lobid.org/organisations/ZDB-1-RSCM#! ZDB-1-RSCM ZDB-1-RSCM Merck Index Online 2014-2016 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-JHJ#! ZDB-1-JHJ ZDB-1-JHJ JSTOR : Hebrew Journals Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-118-HAB#! ZDB-118-HAB ZDB-118-HAB Harmattan E-Books +http://lobid.org/organisations/ZDB-88-SPB#! ZDB-88-SPB ZDB-88-SPB juris Spectrum Bund +http://lobid.org/organisations/ZDB-88-FRZ#! ZDB-88-FRZ ZDB-88-FRZ OVS Modul FamRZonline powered by juris +http://lobid.org/organisations/ZDB-88-STR#! ZDB-88-STR ZDB-88-STR OVS Modul Steuerrecht Premium powered by juris +http://lobid.org/organisations/ZDB-117-KKN#! ZDB-117-KKN ZDB-117-KKN V&R eLibrary / Kritisch-exegetischer Kommentar über das Neue Testament +http://lobid.org/organisations/ZDB-117-SF1#! ZDB-117-SF1 ZDB-117-SF1 V&R eLibrary / Schriften des Sigmund-Freud-Instituts / Reihe 1: Klinische Psychoanalyse: Depression +http://lobid.org/organisations/ZDB-117-WDG#! ZDB-117-WDG ZDB-117-WDG V&R eLibrary / Wilhelm Dilthey Gesammelte Schriften +http://lobid.org/organisations/ZDB-35-WCC#! ZDB-35-WCC ZDB-35-WCC Wiley Collection Analytical Chemistry +http://lobid.org/organisations/ZDB-35-WCB#! ZDB-35-WCB ZDB-35-WCB Wiley Collection Biochemistry +http://lobid.org/organisations/ZDB-35-WCF#! ZDB-35-WCF ZDB-35-WCF Wiley Collection Chemical Engineering +http://lobid.org/organisations/ZDB-35-WCT#! ZDB-35-WCT ZDB-35-WCT Wiley Collection Earth & Environmental Sciences +http://lobid.org/organisations/ZDB-35-WCH#! ZDB-35-WCH ZDB-35-WCH Wiley Collection Energy +http://lobid.org/organisations/ZDB-120-SVC#! ZDB-120-SVC ZDB-120-SVC Franz Steiner Verlag eLibrary / Sozialwissenschaften +http://lobid.org/organisations/ZDB-41-SMK#! ZDB-41-SMK ZDB-41-SMK scholars-e-library / Medien & Kommunikation +http://lobid.org/organisations/ZDB-41-SMZ#! ZDB-41-SMZ ZDB-41-SMZ scholars-e-library / Medizin +http://lobid.org/organisations/ZDB-41-SPK#! ZDB-41-SPK ZDB-41-SPK scholars-e-library / Pädagogik/ Kindergarten- und Vorschule +http://lobid.org/organisations/ZDB-41-SHO#! ZDB-41-SHO ZDB-41-SHO scholars-e-library / Philosophie +http://lobid.org/organisations/ZDB-41-SRT#! ZDB-41-SRT ZDB-41-SRT scholars-e-library / Recht +http://lobid.org/organisations/ZDB-41-STH#! ZDB-41-STH ZDB-41-STH scholars-e-library / Religion/ Theologie +http://lobid.org/organisations/ZDB-41-SIK#! ZDB-41-SIK ZDB-41-SIK scholars-e-library / Schulpädagogik +http://lobid.org/organisations/ZDB-41-SSG#! ZDB-41-SSG ZDB-41-SSG scholars-e-library / Soziologie/ Geschlechterforschung +http://lobid.org/organisations/ZDB-41-SWM#! ZDB-41-SWM ZDB-41-SWM scholars-e-library / Wirtschaft und Management +http://lobid.org/organisations/ZDB-2-REF#! ZDB-2-REF ZDB-2-REF SpringerReference +http://lobid.org/organisations/ZDB-84-KHA#! ZDB-84-KHA ZDB-84-KHA Kohlhammer Altenpflege, Demenz und Palliativpflege +http://lobid.org/organisations/ZDB-84-KHF#! ZDB-84-KHF ZDB-84-KHF Kohlhammer Medizin / Psychiatrie & Psychotherapie +http://lobid.org/organisations/ZDB-84-KHL#! ZDB-84-KHL ZDB-84-KHL Kohlhammer Pflegepraxis +http://lobid.org/organisations/ZDB-107-WPH#! ZDB-107-WPH ZDB-107-WPH scholars-e-library / Philosophie / backlist Waxmann +http://lobid.org/organisations/ZDB-18-BOH#! ZDB-18-BOH ZDB-18-BOH beck-online / Hochschulmodul +http://lobid.org/organisations/ZDB-124-WOP#! ZDB-124-WOP ZDB-124-WOP World Scientific Publishing +http://lobid.org/organisations/ZDB-125-TCS#! ZDB-125-TCS ZDB-125-TCS scholars-e-library / Cultural Studies und Popkultur / Backlist transcript +http://lobid.org/organisations/ZDB-125-TER#! ZDB-125-TER ZDB-125-TER scholars-e-library / Erinnerungskulturen / Backlist transcript +http://lobid.org/organisations/ZDB-125-TMU#! ZDB-125-TMU ZDB-125-TMU scholars-e-library / Museumswissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TPO#! ZDB-125-TPO ZDB-125-TPO scholars-e-library / Politikwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TST#! ZDB-125-TST ZDB-125-TST scholars-e-library / Soziologische Theorie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TWO#! ZDB-125-TWO ZDB-125-TWO scholars-e-library / Wirtschafts-, Organisations- und Arbeitssoziologie / Backlist transcript +http://lobid.org/organisations/ZDB-126-OKP#! ZDB-126-OKP ZDB-126-OKP oekom verlag / Klimadiskussion in der Politik +http://lobid.org/organisations/ZDB-126-OVD#! ZDB-126-OVD ZDB-126-OVD oekom verlag / Vordenker +http://lobid.org/organisations/ZDB-121-UHA#! ZDB-121-UHA ZDB-121-UHA Ulmer E-Books / Haustierhaltung +http://lobid.org/organisations/ZDB-121-UOB#! ZDB-121-UOB ZDB-121-UOB Ulmer E-Books / Ökologie Botanik +http://lobid.org/organisations/ZDB-128-VPL#! ZDB-128-VPL ZDB-128-VPL Beck eLibrary / Vahlen Produktion und Logistik +http://lobid.org/organisations/ZDB-128-VVW#! ZDB-128-VVW ZDB-128-VVW Beck eLibrary / Vahlen Volkswirtschaftslehre +http://lobid.org/organisations/ZDB-125-TGE#! ZDB-125-TGE ZDB-125-TGE transcript Verlag / Gesamtpaket +http://lobid.org/organisations/ZDB-33-HDE#! ZDB-33-HDE ZDB-33-HDE Handbooks in Economics Series +http://lobid.org/organisations/ZDB-131-GWI#! ZDB-131-GWI ZDB-131-GWI GRIN Verlag eBook-Themenpaket Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-18-NSS#! ZDB-18-NSS ZDB-18-NSS Nomos eLibrary / Studienliteratur Strafrecht +http://lobid.org/organisations/ZDB-130-BPE#! ZDB-130-BPE ZDB-130-BPE scholars-e-library / Pädagogik/ Personalentwicklung / Backlist wbv +http://lobid.org/organisations/ZDB-135-ICP#! ZDB-135-ICP ZDB-135-ICP IOP ebooks / Concise Physics +http://lobid.org/organisations/ZDB-133-HAL#! ZDB-133-HAL ZDB-133-HAL Hirzel eLibrary / Ahnungslose +http://lobid.org/organisations/ZDB-134-EBW#! ZDB-134-EBW ZDB-134-EBW Ernst & Sohn / Bauwesen allgemein +http://lobid.org/organisations/ZDB-23-OGS#! ZDB-23-OGS ZDB-23-OGS eBook-Paket Oldenbourg-Akademie / Geschichte +http://lobid.org/organisations/ZDB-23-DPH#! ZDB-23-DPH ZDB-23-DPH De Gruyter eBook-Paket Philosophie +http://lobid.org/organisations/ZDB-33-GMC#! ZDB-33-GMC ZDB-33-GMC Elsevier ScienceDirect German Medical Collection +http://lobid.org/organisations/ZDB-25-KNS#! ZDB-25-KNS ZDB-25-KNS Karger eBook Non-Series Collection +http://lobid.org/organisations/ZDB-1-SPIE#! ZDB-1-SPIE ZDB-1-SPIE SPIE Digital Library [Nationalkonsortium] +http://lobid.org/organisations/ZDB-132-VAT#! ZDB-132-VAT ZDB-132-VAT Vogel Business Media / Automatisierung +http://lobid.org/organisations/ZDB-132-VAM#! ZDB-132-VAM ZDB-132-VAM Vogel Business Media / Automobil +http://lobid.org/organisations/ZDB-132-VPH#! ZDB-132-VPH ZDB-132-VPH Vogel Business Media / Physik +http://lobid.org/organisations/ZDB-75-TOG#! ZDB-75-TOG ZDB-75-TOG Torrossa / Olschki Gabinetto Catalogues +http://lobid.org/organisations/ZDB-7-CRC#! ZDB-7-CRC ZDB-7-CRC CRCnetBASE Online Libraries +http://lobid.org/organisations/ZDB-5-WMW#! ZDB-5-WMW ZDB-5-WMW wiso Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-5-WMP#! ZDB-5-WMP ZDB-5-WMP wiso Psychologie +http://lobid.org/organisations/ZDB-23-HPI#! ZDB-23-HPI ZDB-23-HPI Harvard University Press e-dition: Philosophy eBook Package +http://lobid.org/organisations/ZDB-1-PJO#! ZDB-1-PJO ZDB-1-PJO PsyJournals (Hogrefe) Read & Publish [Nationalkonsortium] +http://lobid.org/organisations/ZDB-117-MFN#! ZDB-117-MFN ZDB-117-MFN V&R eLibrary / Mittelalter/Frühe Neuzeit +http://lobid.org/organisations/ZDB-55-EME#! ZDB-55-EME ZDB-55-EME Emerald Marketing eJournal Collection +http://lobid.org/organisations/ZDB-4-HC2#! ZDB-4-HC2 ZDB-4-HC2 EBSCO Arte Público Hispanic Historical Collection Series 2 +http://lobid.org/organisations/ZDB-23-TSW#! ZDB-23-TSW ZDB-23-TSW transcript eBook-Sonderpaket Sozialwissenschaften +http://lobid.org/organisations/ZDB-47-CBA#! ZDB-47-CBA ZDB-47-CBA ConsultingBay +http://lobid.org/organisations/ZDB-16-HEO#! ZDB-16-HEO ZDB-16-HEO Hanser eLibrary / Populäre Wissenschaft +http://lobid.org/organisations/ZDB-18-NOB#! ZDB-18-NOB ZDB-18-NOB NomosOnline Bundesrecht +http://lobid.org/organisations/ZDB-28-OLA#! ZDB-28-OLA ZDB-28-OLA Oxford Handbooks Online / Law +http://lobid.org/organisations/ZDB-107-WLB#! ZDB-107-WLB ZDB-107-WLB scholars-e-library / Lehrerbildung / Backlist Waxmann +http://lobid.org/organisations/ZDB-42-OWW#! ZDB-42-OWW ZDB-42-OWW Oldenbourg / Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-51-LIP#! ZDB-51-LIP ZDB-51-LIP Library Information Portal +http://lobid.org/organisations/ZDB-52-LJL#! ZDB-52-LJL ZDB-52-LJL HeinOnline / Law Journal Library +http://lobid.org/organisations/ZDB-52-FRL#! ZDB-52-FRL ZDB-52-FRL HeinOnline / Federal Register Library +http://lobid.org/organisations/ZDB-1-FTA#! ZDB-1-FTA ZDB-1-FTA Financial Times Historical Archive 1888-2006 [Nationallizenz] +http://lobid.org/organisations/ZDB-20-CBO#! ZDB-20-CBO ZDB-20-CBO Cambridge Books Online +http://lobid.org/organisations/ZDB-1-SAGH#! ZDB-1-SAGH ZDB-1-SAGH Sage Journals Online Publish & Read / Humanities and Social Sciences (HSS) [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-AAS4#! ZDB-1-AAS4 ZDB-1-AAS4 American Antiquarian Society (AAS) Historical Periodicals Collection : Series 4 (1853-1865) [Nationallizenz] +http://lobid.org/organisations/ZDB-1-OJS#! ZDB-1-OJS ZDB-1-OJS Oxford Journals Digital Archive / STM Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-18-NOA#! ZDB-18-NOA ZDB-18-NOA NomosOnline Arbeitsrecht +http://lobid.org/organisations/ZDB-23-DGQ#! ZDB-23-DGQ ZDB-23-DGQ De Gruyter e-dition: Best of Mathematics / Mathematik +http://lobid.org/organisations/ZDB-23-DGT#! ZDB-23-DGT ZDB-23-DGT De Gruyter e-dition: Best of Medicine / Medizin +http://lobid.org/organisations/ZDB-71-NAR#! ZDB-71-NAR ZDB-71-NAR Narr Verlag E-Books +http://lobid.org/organisations/ZDB-16-HED#! ZDB-16-HED ZDB-16-HED Hanser eLibrary / Elektrotechnik +http://lobid.org/organisations/ZDB-16-HEQ#! ZDB-16-HEQ ZDB-16-HEQ Hanser eLibrary / Qualitätsmanagement +http://lobid.org/organisations/ZDB-73-CVG#! ZDB-73-CVG ZDB-73-CVG campus e-books / Geschichte +http://lobid.org/organisations/ZDB-73-CVS#! ZDB-73-CVS ZDB-73-CVS campus e-books / Sozialwissenschaft +http://lobid.org/organisations/ZDB-74-AKK#! ZDB-74-AKK ZDB-74-AKK akademie-link / Klassiker Auslegen +http://lobid.org/organisations/ZDB-74-AKM#! ZDB-74-AKM ZDB-74-AKM akademie-link / Mittelalter Monographie +http://lobid.org/organisations/ZDB-1-PPI#! ZDB-1-PPI ZDB-1-PPI Palgrave Connect / Political & International Studies Package [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PSS#! ZDB-1-PSS ZDB-1-PSS Palgrave Connect / Social Sciences Package [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBK#! ZDB-1-CUBK ZDB-1-CUBK Cambridge Books Online / Religion [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBB#! ZDB-41-UTBB ZDB-41-UTBB utb-studi-e-book / Naturwissenschaften +http://lobid.org/organisations/ZDB-41-UTBN#! ZDB-41-UTBN ZDB-41-UTBN utb-studi-e-book / Soziale Arbeit - Sozialpädagogik +http://lobid.org/organisations/ZDB-75-TOP#! ZDB-75-TOP ZDB-75-TOP Torrossa / EIO - Editoria Italiana Online / Gesamtpaket +http://lobid.org/organisations/ZDB-75-TOPL#! ZDB-75-TOPL ZDB-75-TOPL Torrossa / EIO - Editoria Italiana Online / Italienische Sprache und Literatur +http://lobid.org/organisations/ZDB-1-AWS#! ZDB-1-AWS ZDB-1-AWS African Writers Series [Nationallizenz] +http://lobid.org/organisations/ZDB-1-AGU#! ZDB-1-AGU ZDB-1-AGU AGU Journals [Nationalkonsortium] +http://lobid.org/organisations/ZDB-76-SDL#! ZDB-76-SDL ZDB-76-SDL ASTM Standards and Engineering Digital Library (SEDL) +http://lobid.org/organisations/ZDB-4-MUH#! ZDB-4-MUH ZDB-4-MUH EBSCO MAS Ultra-Public Library Edition +http://lobid.org/organisations/ZDB-4-MIH#! ZDB-4-MIH ZDB-4-MIH EBSCO Middle Search Plus +http://lobid.org/organisations/ZDB-4-RCH#! ZDB-4-RCH ZDB-4-RCH EBSCO Canadian Reference Centre +http://lobid.org/organisations/ZDB-4-BSH#! ZDB-4-BSH ZDB-4-BSH EBSCO Business Source Elite +http://lobid.org/organisations/ZDB-4-AFH#! ZDB-4-AFH ZDB-4-AFH EBSCO Academic Search Elite +http://lobid.org/organisations/ZDB-4-F5H#! ZDB-4-F5H ZDB-4-F5H EBSCO MasterFILE Premier +http://lobid.org/organisations/ZDB-4-CXH#! ZDB-4-CXH ZDB-4-CXH EBSCO Biomedical Reference Collection : Corporate +http://lobid.org/organisations/ZDB-1-WIS#! ZDB-1-WIS ZDB-1-WIS Wiley InterScience Backfile Collections 1832-2005 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PAO#! ZDB-1-PAO ZDB-1-PAO Periodicals Archive Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EEB#! ZDB-1-EEB ZDB-1-EEB Early English Books Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DLP#! ZDB-1-DLP ZDB-1-DLP Digital Library of Classic Protestant Texts [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ALD#! ZDB-1-ALD ZDB-1-ALD Aristoteles Latinus Database [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PIO#! ZDB-1-PIO ZDB-1-PIO Periodicals Index Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EAI#! ZDB-1-EAI ZDB-1-EAI Early American Imprints - Series I : Evans 1639-1800 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-TLS#! ZDB-1-TLS ZDB-1-TLS Times Literary Supplement Historical Archive 1902-2005 / TLS [Nationallizenz] +http://lobid.org/organisations/ZDB-1-NAI#! ZDB-1-NAI ZDB-1-NAI North American Immigrant Letters, Diaries and Oral Histories [Nationallizenz] +http://lobid.org/organisations/ZDB-4-FRH#! ZDB-4-FRH ZDB-4-FRH EBSCO Vente et Gestion +http://lobid.org/organisations/ZDB-4-TIH#! ZDB-4-TIH ZDB-4-TIH EBSCO Texas Reference Center +http://lobid.org/organisations/ZDB-4-TSH#! ZDB-4-TSH ZDB-4-TSH EBSCO International Security & Counter-Terrorism Reference Center +http://lobid.org/organisations/ZDB-1-RGS#! ZDB-1-RGS ZDB-1-RGS Entscheidungen des Reichsgerichts in Zivilsachen (RGZ) und Entscheidungen des Reichsgerichts in Strafsachen (RGSt) [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MMS#! ZDB-1-MMS ZDB-1-MMS Making of Modern Law : U.S. Supreme Court Records and Briefs 1832-1978 / MOML 2 [Nationallizenz] +http://lobid.org/organisations/ZDB-2-CMS#! ZDB-2-CMS ZDB-2-CMS Springer ebook collection / Chemistry and Materials Science +http://lobid.org/organisations/ZDB-2-EES#! ZDB-2-EES ZDB-2-EES Springer ebook collection / Earth and Environmental Science +http://lobid.org/organisations/ZDB-1-EMO#! ZDB-1-EMO ZDB-1-EMO Empire Online [Nationallizenz] +http://lobid.org/organisations/ZDB-6-PMC#! ZDB-6-PMC ZDB-6-PMC Project MUSE Premium Collection +http://lobid.org/organisations/ZDB-1-BMJ#! ZDB-1-BMJ ZDB-1-BMJ BMJ Journals Publish & Read [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-MMH#! ZDB-1-MMH ZDB-1-MMH Making of Modern Law : Trials 1600-1926 / MOML 3 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DJB#! ZDB-1-DJB ZDB-1-DJB Blackwell Publishing Journal Backfiles 1879-2005 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-PWE#! ZDB-1-PWE ZDB-1-PWE Post-War Europe : Refugees, Exile and Resettlement 1945-1950 [Nationallizenz] +http://lobid.org/organisations/ZDB-4-8GH#! ZDB-4-8GH ZDB-4-8GH EBSCO GreenFILE +http://lobid.org/organisations/ZDB-1-JA2#! ZDB-1-JA2 ZDB-1-JA2 JSTOR : Arts & Sciences II Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JA3#! ZDB-1-JA3 ZDB-1-JA3 JSTOR : Arts & Sciences III Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JBS#! ZDB-1-JBS ZDB-1-JBS JSTOR : Biological Sciences Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JB1#! ZDB-1-JB1 ZDB-1-JB1 JSTOR : Business I Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JEB#! ZDB-1-JEB ZDB-1-JEB JSTOR : Ecology & Botany I Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JIR#! ZDB-1-JIR ZDB-1-JIR JSTOR : Ireland Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-ART#! ZDB-1-ART ZDB-1-ART ARTstor [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-BCN#! ZDB-1-BCN ZDB-1-BCN 17th and 18th Century Burney Collection Newspapers [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BJA#! ZDB-1-BJA ZDB-1-BJA Brill / Brill Journal Archive Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-TMP#! ZDB-1-TMP ZDB-1-TMP Dutch Pamphlets Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CUP#! ZDB-1-CUP ZDB-1-CUP Cambridge Journals Digital Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BIO#! ZDB-1-BIO ZDB-1-BIO BioOne [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-21-EIL#! ZDB-21-EIL ZDB-21-EIL Torrossa +http://lobid.org/organisations/ZDB-23-DGG#! ZDB-23-DGG ZDB-23-DGG De Gruyter E-Books +http://lobid.org/organisations/ZDB-10-MMN#! ZDB-10-MMN ZDB-10-MMN Knovel Mechanics and Mechanical Engineering +http://lobid.org/organisations/ZDB-10-SED#! ZDB-10-SED ZDB-10-SED Knovel Sustainable Energy & Development +http://lobid.org/organisations/ZDB-27-OVI#! ZDB-27-OVI ZDB-27-OVI Books@Ovid +http://lobid.org/organisations/ZDB-28-OSP#! ZDB-28-OSP ZDB-28-OSP Oxford Scholarship Online / Philosophy +http://lobid.org/organisations/ZDB-33-ENV#! ZDB-33-ENV ZDB-33-ENV Elsevier e-book collection - Environmental science +http://lobid.org/organisations/ZDB-38-EBE#! ZDB-38-EBE ZDB-38-EBE ebrary subject collection / Business & economics +http://lobid.org/organisations/ZDB-23-DMN#! ZDB-23-DMN ZDB-23-DMN De Gruyter E-Books / Mathematik, Naturwissenschaften, Medizin +http://lobid.org/organisations/ZDB-1-RSE#! ZDB-1-RSE ZDB-1-RSE RSC eBook Collection 1968-2009 [Nationallizenz] +http://lobid.org/organisations/ZDB-28-OSI#! ZDB-28-OSI ZDB-28-OSI Oxford Scholarship Online / Literature +http://lobid.org/organisations/ZDB-28-OSA#! ZDB-28-OSA ZDB-28-OSA Oxford Scholarship Online / Business and Management +http://lobid.org/organisations/ZDB-10-NNT#! ZDB-10-NNT ZDB-10-NNT Knovel Nanotechnology +http://lobid.org/organisations/ZDB-23-DGA#! ZDB-23-DGA ZDB-23-DGA De Gruyter E-Books / Linguistik und Literaturwissenschaft +http://lobid.org/organisations/ZDB-23-DGE#! ZDB-23-DGE ZDB-23-DGE De Gruyter E-Books / Philosophie und Geschichte +http://lobid.org/organisations/ZDB-41-UTB#! ZDB-41-UTB ZDB-41-UTB utb-studi-e-book +http://lobid.org/organisations/ZDB-1-EHA#! ZDB-1-EHA ZDB-1-EHA The Economist - Historical Archive 1843-2006 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MOR#! ZDB-1-MOR ZDB-1-MOR Music Online [Nationallizenz] +http://lobid.org/organisations/ZDB-33-HSC#! ZDB-33-HSC ZDB-33-HSC Elsevier e-book collection - Health Sciences +http://lobid.org/organisations/ZDB-4-FOH#! ZDB-4-FOH ZDB-4-FOH EBSCO Fonte Acadêmica +http://lobid.org/organisations/ZDB-46-DGZ#! ZDB-46-DGZ ZDB-46-DGZ DigiZeitschriften +http://lobid.org/organisations/ZDB-18-BST#! ZDB-18-BST ZDB-18-BST beck-eBibliothek - Die Studienliteratur +http://lobid.org/organisations/ZDB-42-OGG#! ZDB-42-OGG ZDB-42-OGG Oldenbourg / Grundriss der Geschichte +http://lobid.org/organisations/ZDB-42-OZW#! ZDB-42-OZW ZDB-42-OZW Oldenbourg / Sozialwissenschaften +http://lobid.org/organisations/ZDB-18-NFRP#! ZDB-18-NFRP ZDB-18-NFRP Nomos eLibrary / Öffentliches Recht / Partner only +http://lobid.org/organisations/ZDB-18-NSRN#! ZDB-18-NSRN ZDB-18-NSRN Nomos eLibrary / Strafrecht / Nomos only +http://lobid.org/organisations/ZDB-18-NOGP#! ZDB-18-NOGP ZDB-18-NOGP Nomos eLibrary / Geschichte / Partner only +http://lobid.org/organisations/ZDB-18-NOZN#! ZDB-18-NOZN ZDB-18-NOZN Nomos eLibrary / Soziologie / Nomos only +http://lobid.org/organisations/ZDB-18-NSTP#! ZDB-18-NSTP ZDB-18-NSTP Nomos eLibrary / Soziale Arbeit, Sozialwirtschaft / Partner only +http://lobid.org/organisations/ZDB-18-NREP#! ZDB-18-NREP ZDB-18-NREP Nomos eLibrary / Religion / Partner only +http://lobid.org/organisations/ZDB-77-EEOA#! ZDB-77-EEOA ZDB-77-EEOA Edward Elgar / Open Access +http://lobid.org/organisations/ZDB-124-WSPC#! ZDB-124-WSPC ZDB-124-WSPC World Scientific Publishing / Chemistry, Materials Science, Nanotechnology +http://lobid.org/organisations/ZDB-18-NLARP#! ZDB-18-NLARP ZDB-18-NLARP Nomos eLibrary / Arbeitsrecht / Partner only +http://lobid.org/organisations/ZDB-18-NLKKP#! ZDB-18-NLKKP ZDB-18-NLKKP Nomos eLibrary / Kulturwissenschaft, Kulturgeschichte / Partner only +http://lobid.org/organisations/ZDB-1-ETCI#! ZDB-1-ETCI ZDB-1-ETCI Eustathius of Thessalonica, Commentary on the Iliad [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ETCO#! ZDB-1-ETCO ZDB-1-ETCO Eustathius of Thessalonica, Commentary on the Odyssey [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-162-BVL#! ZDB-162-BVL ZDB-162-BVL Bloomsbury Video Library +http://lobid.org/organisations/ZDB-28-OSET#! ZDB-28-OSET ZDB-28-OSET Oxford Scholarly Editions Online / Thucydides +http://lobid.org/organisations/ZDB-219-DPF#! ZDB-219-DPF ZDB-219-DPF dpunkt.verlag / Fotografie Klassiker +http://lobid.org/organisations/ZDB-1-BDAG#! ZDB-1-BDAG ZDB-1-BDAG The Brill Dictionary of Ancient Greek Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-321-LVEL#! ZDB-321-LVEL ZDB-321-LVEL Eugen G. Leuze Verlag Elektrotechnik +http://lobid.org/organisations/ZDB-321-LVG#! ZDB-321-LVG ZDB-321-LVG Eugen G. Leuze Verlag Galvanotechnik +http://lobid.org/organisations/ZDB-41-JOB#! ZDB-41-JOB ZDB-41-JOB scholars-e-library / Journalistik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-MEP#! ZDB-41-MEP ZDB-41-MEP scholars-e-library / Medizin und Pflege / Backlist ibidem +http://lobid.org/organisations/ZDB-41-NTB#! ZDB-41-NTB ZDB-41-NTBJ scholars-e-library / Natur/Technik / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PBL#! ZDB-41-PBL ZDB-41-PBL scholars-e-library / Pädagogik (allg.) / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PBWB#! ZDB-41-PBWB ZDB-41-PBWB scholars-e-library / Pädagogik/Bildungswesen / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PLB#! ZDB-41-PLB ZDB-41-PLB scholars-e-library / Pädagogik/Lehrerbildung / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PWI#! ZDB-41-PWI ZDB-41-PWI scholars-e-library / Politikwissenschaft / Backlist ibidem +http://lobid.org/organisations/ZDB-41-SAB#! ZDB-41-SAB ZDB-41-SAB scholars-e-library / Soziale Arbeit / Backlist ibidem +http://lobid.org/organisations/ZDB-41-SWSB#! ZDB-41-SWSB ZDB-41-SWSB scholars-e-library / Sprachwissenschaft/Spracherwerb/ Backlist ibidem +http://lobid.org/organisations/ZDB-41-WIB#! ZDB-41-WIB ZDB-41-WIB scholars-e-library / Wirtschaft / Backlist ibidem +http://lobid.org/organisations/ZDB-18-BKRP#! ZDB-18-BKRP ZDB-18-BKRP beck-online / Kostenrecht PREMIUM +http://lobid.org/organisations/ZDB-124-PWG#! ZDB-124-PWG ZDB-124-PWG World Scientific Publishing / Scientific Publishing Writing Guide +http://lobid.org/organisations/ZDB-95-CPM#! ZDB-95-CPM ZDB-95-CPM Brill / CASA - Cuban Periodicals: Cultural Magazines Published by Casa de las Américas, 1960-2009 +http://lobid.org/organisations/ZDB-18-BOBS#! ZDB-18-BOBS ZDB-18-BOBS beck-online / BeckOK Steuerrecht +http://lobid.org/organisations/ZDB-1-SPOC#! ZDB-1-SPOC ZDB-1-SPOC State Papers Online Colonial [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SDAR#! ZDB-1-SDAR ZDB-1-SDAR Slaviane Digital Archive (DA-SL) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-IRD#! ZDB-1-IRD ZDB-1-IRD Illiustrirovannaia Rossiia Digital Archive (DA-IR) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-324-RGF#! ZDB-324-RGF ZDB-324-RGF Reguvis Fachmedien +http://lobid.org/organisations/ZDB-18-BLS#! ZDB-18-BLS ZDB-18-BLS Beck eLibrary / C.H. Beck LSW gesamt +http://lobid.org/organisations/ZDB-2-SXEA#! ZDB-2-SXEA ZDB-2-SXEA Springer Nature / Reference Module Earth and Environmental Sciences +http://lobid.org/organisations/ZDB-1-NST#! ZDB-1-NST ZDB-1-NST Nomos eLibrary / Sozialwirtschaft und Soziale Arbeit 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-NOG#! ZDB-1-NOG ZDB-1-NOG Nomos eLibrary / Geschichte 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-KKTB#! ZDB-41-KKTB ZDB-41-KKTB scholars-e-library / Kunst/Kultur/Theater / Backlist Königshausen & Neumann +http://lobid.org/organisations/ZDB-1-NEP#! ZDB-1-NEP ZDB-1-NEP Nomos eLibrary / Europapolitik 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-327-UWN#! ZDB-327-UWN ZDB-327-UWN UV Webler / Neuerscheinungen 2018-2022 +http://lobid.org/organisations/ZDB-152-RDK#! ZDB-152-RDK ZDB-152-RDK RDK Labor [Open Access] +http://lobid.org/organisations/ZDB-1-NJUZ#! ZDB-1-NJUZ ZDB-1-NJUZ Nomos eLibrary / Rechtswissenschaften [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-NLWR#! ZDB-1-NLWR ZDB-1-NLWR Nomos eLibrary / Wirtschaftsrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-245-NPM#! ZDB-245-NPM ZDB-245-NPM NWB MAX +http://lobid.org/organisations/ZDB-56-JID#! ZDB-56-JID ZDB-56-JID Jiddische Drucke [Open Access] +http://lobid.org/organisations/ZDB-45-CGR#! ZDB-45-CGR ZDB-45-CGR Central and Eastern European Online Library (CEEOL) E-Books / Grey Literature [Open Access] +http://lobid.org/organisations/ZDB-18-NOK#! ZDB-18-NOK ZDB-18-NOK Nomos eLibrary / Vittorio Klostermann Archivpaket +http://lobid.org/organisations/ZDB-56-PLH#! ZDB-56-PLH ZDB-56-PLH Porträtsammlung aus dem Legat Holzhausen in der Universitätsbibliothek Frankfurt/Main [Open Access] +http://lobid.org/organisations/ZDB-1-NOW#! ZDB-1-NOW ZDB-1-NOW Nomos eLibrary / Wirtschaft 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-119-KH1#! ZDB-119-KH1 ZDB-119-KH1 Knowledge Unlatched / History 1 [Open Access] +http://lobid.org/organisations/ZDB-119-KIS#! ZDB-119-KIS ZDB-119-KIS Knowledge Unlatched / Information Science [Open Access] +http://lobid.org/organisations/ZDB-1-NOL#! ZDB-1-NOL ZDB-1-NOL Nomos eLibrary / Gesamt 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-318-TOLM#! ZDB-318-TOLM ZDB-318-TOLM transcript Open Library Medienwissenschaft [Open Access] +http://lobid.org/organisations/ZDB-1-NSWZ#! ZDB-1-NSWZ ZDB-1-NSWZ Nomos eLibrary / Geistes- und Sozialwissenschaften [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-57-DVR#! ZDB-57-DVR ZDB-57-DVR Digi20 / Vandenhoeck & Ruprecht [Open Access] +http://lobid.org/organisations/ZDB-1-CUPK#! ZDB-1-CUPK ZDB-1-CUPK Cambridge Journals [Komplett] [Open Access Transformations-Lizenz] +http://lobid.org/organisations/ZDB-56-IKF#! ZDB-56-IKF ZDB-56-IKF Inkunabeln Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-1-NLSR#! ZDB-1-NLSR ZDB-1-NLSR Nomos eLibrary / Sozialrecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-162-DOB#! ZDB-162-DOB ZDB-162-DOB Drama Online / Oberon Books Collection 1 +http://lobid.org/organisations/ZDB-84-KHM#! ZDB-84-KHM ZDB-84-KHM Kohlhammer eLibrary Medizin +http://lobid.org/organisations/ZDB-1-NPG#! ZDB-1-NPG ZDB-1-NPG Nomos eLibrary / Pädagogik 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-18-NLAR#! ZDB-18-NLAR ZDB-18-NLAR Nomos eLibrary / Arbeitsrecht +http://lobid.org/organisations/ZDB-57-DFS#! ZDB-57-DFS ZDB-57-DFS Digi20 / Fink - Schöningh [Open Access] +http://lobid.org/organisations/ZDB-300-NTM#! ZDB-300-NTM ZDB-300-NTM The Digital Library of Northern Thai Manuscripts (Lanna) [Open Access] +http://lobid.org/organisations/ZDB-119-KNA#! ZDB-119-KNA ZDB-119-KNA Knowledge Unlatched / Anthropology [Open Access] +http://lobid.org/organisations/ZDB-119-KUMI#! ZDB-119-KUMI ZDB-119-KUMI Knowledge Unlatched / Mohr Siebeck IT-Recht [Open Access] +http://lobid.org/organisations/ZDB-310-IMOA#! ZDB-310-IMOA ZDB-310-IMOA International Monetary Fund eLibrary [Gesamt] [Open Access] +http://lobid.org/organisations/ZDB-2-SXBE#! ZDB-2-SXBE ZDB-2-SXBE Springer Nature / Reference Module Business, Economics and Social Sciences +http://lobid.org/organisations/ZDB-18-NOV#! ZDB-18-NOV ZDB-18-NOV Nomos eLibrary / Verlag Karl Alber Archivpaket +http://lobid.org/organisations/ZDB-77-ECE#! ZDB-77-ECE ZDB-77-ECE Edward Elgar Ebook collection Economics +http://lobid.org/organisations/ZDB-80-PAC#! ZDB-80-PAC ZDB-80-PAC PaperC +http://lobid.org/organisations/ZDB-48-JIN#! ZDB-48-JIN ZDB-48-JIN Jurion - Insolvenzrecht +http://lobid.org/organisations/ZDB-59-BPD#! ZDB-59-BPD ZDB-59-BPD Beltz Pädagogik +http://lobid.org/organisations/ZDB-59-BPH#! ZDB-59-BPH ZDB-59-BPH Beltz Hochschuldidaktik +http://lobid.org/organisations/ZDB-84-KOB#! ZDB-84-KOB ZDB-84-KOB Kohlhammer Klinische Psychologie Kindes- u. Jugendalter +http://lobid.org/organisations/ZDB-84-KOE#! ZDB-84-KOE ZDB-84-KOE Kohlhammer Sozialpsychologie, Persönlichkeitspsychologie u. Arbeits- & Organisationspsychologie +http://lobid.org/organisations/ZDB-84-KOG#! ZDB-84-KOG ZDB-84-KOG Kohlhammer Psychoanalyse +http://lobid.org/organisations/ZDB-84-KON#! ZDB-84-KON ZDB-84-KON Kohlhammer Sozialpädagogik +http://lobid.org/organisations/ZDB-85-LDC#! ZDB-85-LDC ZDB-85-LDC Linde-Verlag HR Management +http://lobid.org/organisations/ZDB-85-LDJ#! ZDB-85-LDJ ZDB-85-LDJ Linde-Verlag Recht +http://lobid.org/organisations/ZDB-74-AKC#! ZDB-74-AKC ZDB-74-AKC akademie-link / Heine +http://lobid.org/organisations/ZDB-1-JA11#! ZDB-1-JA11 ZDB-1-JA11 JSTOR : Arts & Sciences XI Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-4-ASGB#! ZDB-4-ASGB ZDB-4-ASGB EBSCO Green Business +http://lobid.org/organisations/ZDB-87-GNL#! ZDB-87-GNL ZDB-87-GNL Classiques Garnier Numérique  / L'Europe des Lumières +http://lobid.org/organisations/ZDB-88-JRD#! ZDB-88-JRD ZDB-88-JRD juris Deutsches Gesetzesportal +http://lobid.org/organisations/ZDB-54-DHS#! ZDB-54-DHS ZDB-54-DHS Duncker & Humblot eLibrary / SCHMITT (Carl-Schmitt-Kollektion) +http://lobid.org/organisations/ZDB-2-ENE#! ZDB-2-ENE ZDB-2-ENE Springer ebook collection / Energy +http://lobid.org/organisations/ZDB-75-TOE#! ZDB-75-TOE ZDB-75-TOE Torrossa / EEO - Edición Española Online +http://lobid.org/organisations/ZDB-39-JA9#! ZDB-39-JA9 ZDB-39-JA9 JSTOR : Arts & Sciences IX Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-92-TTH#! ZDB-92-TTH ZDB-92-TTH Liverpool University Press / Translated Texts for Historians E-Library +http://lobid.org/organisations/ZDB-42-OMA#! ZDB-42-OMA ZDB-42-OMA Oldenbourg / Management +http://lobid.org/organisations/ZDB-42-OPH#! ZDB-42-OPH ZDB-42-OPH Oldenbourg / Physik, Mathematik +http://lobid.org/organisations/ZDB-18-NOZ#! ZDB-18-NOZ ZDB-18-NOZ Nomos eLibrary / Soziologie +http://lobid.org/organisations/ZDB-1-DGV#! ZDB-1-DGV ZDB-1-DGV Germanische Altertumskunde Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-EAVA#! ZDB-1-EAVA ZDB-1-EAVA Universal Database of Social Sciences & Humanities / 2013-2015 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-PSH#! ZDB-1-PSH ZDB-1-PSH BrillOnline / Primary sources / Reformation Studies / Huguenots Online [Nationallizenz] +http://lobid.org/organisations/ZDB-9-GMT#! ZDB-9-GMT ZDB-9-GMT Gale Archives Unbound / Global Missions and Theology +http://lobid.org/organisations/ZDB-1-PHI#! ZDB-1-PHI ZDB-1-PHI Palgrave Connect / History [Allianz-Lizenz] +http://lobid.org/organisations/ZDB-35-WEL#! ZDB-35-WEL ZDB-35-WEL IEEE-Wiley eBooks Library +http://lobid.org/organisations/ZDB-30-PGC#! ZDB-30-PGC ZDB-30-PGC German Literature Collections +http://lobid.org/organisations/ZDB-33-CLK#! ZDB-33-CLK ZDB-33-CLK ClinicalKey / Neurology +http://lobid.org/organisations/ZDB-84-KOR#! ZDB-84-KOR ZDB-84-KOR Kohlhammer Europa +http://lobid.org/organisations/ZDB-23-DMI#! ZDB-23-DMI ZDB-23-DMI De Gruyter eBook-Paket Mathematik, Physik, Ingenieurwissenschaften englisch +http://lobid.org/organisations/ZDB-98-IGI#! ZDB-98-IGI ZDB-98-IGI IGI Global InfoSci-Journals +http://lobid.org/organisations/ZDB-100-IET#! ZDB-100-IET ZDB-100-IET IET e-Books +http://lobid.org/organisations/ZDB-35-WCE#! ZDB-35-WCE ZDB-35-WCE Wiley Collection Business, Economics, Finance, Accounting +http://lobid.org/organisations/ZDB-1-JA12#! ZDB-1-JA12 ZDB-1-JA12 JSTOR : Arts & Sciences XII Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-9-MMW2#! ZDB-9-MMW2 ZDB-9-MMW2 Making of the Modern World, Part 2 (1851 - 1914) +http://lobid.org/organisations/ZDB-109-LAP#! ZDB-109-LAP ZDB-109-LAP Lambertus / Alter und Pflege +http://lobid.org/organisations/ZDB-109-LPS#! ZDB-109-LPS ZDB-109-LPS Lambertus / Praxis der Sozialen Arbeit +http://lobid.org/organisations/ZDB-109-LSA#! ZDB-109-LSA ZDB-109-LSA Lambertus / Sucht und Abhängigkeit +http://lobid.org/organisations/ZDB-109-LLS#! ZDB-109-LLS ZDB-109-LLS Lambertus / Lehrbücher für die Soziale Arbeit +http://lobid.org/organisations/ZDB-109-LPC#! ZDB-109-LPC ZDB-109-LPC Lambertus / Palliative Care und Hospizarbeit +http://lobid.org/organisations/ZDB-109-LKF#! ZDB-109-LKF ZDB-109-LKF Lambertus / Kita- und Frühpädagogik +http://lobid.org/organisations/ZDB-107-WIV#! ZDB-107-WIV ZDB-107-WIV scholars-e-library / Interkulturelle und vergleichende Erziehungswissenschaft / Backlist Waxmann +http://lobid.org/organisations/ZDB-107-WRE#! ZDB-107-WRE ZDB-107-WRE scholars-e-library / Religion und Religionspädagogik / Backlist Waxmann +http://lobid.org/organisations/ZDB-23-DON#! ZDB-23-DON ZDB-23-DON De Gruyter eBook-Paket Ontos +http://lobid.org/organisations/ZDB-37-IEL#! ZDB-37-IEL ZDB-37-IEL IEEE Xplore / IEEE-IET Electronic Library (IEL) +http://lobid.org/organisations/ZDB-28-OHY#! ZDB-28-OHY ZDB-28-OHY Oxford Handbooks Online / Psychology +http://lobid.org/organisations/ZDB-112-SRD#! ZDB-112-SRD ZDB-112-SRD Schattauer E-Medien / Medizin +http://lobid.org/organisations/ZDB-112-SRI#! ZDB-112-SRI ZDB-112-SRI Schattauer E-Medien / Onkologie +http://lobid.org/organisations/ZDB-112-SRO#! ZDB-112-SRO ZDB-112-SRO Schattauer E-Medien / Kinder- und Jugendpsychotherapie +http://lobid.org/organisations/ZDB-28-OHI#! ZDB-28-OHI ZDB-28-OHI Oxford Handbooks Online / Literature +http://lobid.org/organisations/ZDB-23-OAV#! ZDB-23-OAV ZDB-23-OAV eBook-Paket Oldenbourg-Akademie / BWL, VWL +http://lobid.org/organisations/ZDB-18-NSR#! ZDB-18-NSR ZDB-18-NSR Nomos eLibrary / Strafrecht +http://lobid.org/organisations/ZDB-105-MC4#! ZDB-105-MC4 ZDB-105-MC4 Morgan & Claypool: Computer & Information Science Collections / CIS collection four +http://lobid.org/organisations/ZDB-114-LAL#! ZDB-114-LAL ZDB-114-LAL Peter Lang eBooks / Linguistik +http://lobid.org/organisations/ZDB-114-LAT#! ZDB-114-LAT ZDB-114-LAT Peter Lang eBooks / Theologie +http://lobid.org/organisations/ZDB-95-BOC#! ZDB-95-BOC ZDB-95-BOC Brill Online / Complete +http://lobid.org/organisations/ZDB-95-BAS#! ZDB-95-BAS ZDB-95-BAS Brill / Asian Studies E-Books Online +http://lobid.org/organisations/ZDB-95-MIS#! ZDB-95-MIS ZDB-95-MIS Brill / Middle East and Islamic Studies E-Books Online +http://lobid.org/organisations/ZDB-95-BLL#! ZDB-95-BLL ZDB-95-BLL Brill Online / Language & Linguistics +http://lobid.org/organisations/ZDB-28-OSS#! ZDB-28-OSS ZDB-28-OSS Oxford Scholarship Online / Sociology +http://lobid.org/organisations/ZDB-28-OSD#! ZDB-28-OSD ZDB-28-OSD Oxford Scholarship Online / Complete +http://lobid.org/organisations/ZDB-96-SCO#! ZDB-96-SCO ZDB-96-SCO Sage knowledge / Communication and Media Studies +http://lobid.org/organisations/ZDB-96-SCC#! ZDB-96-SCC ZDB-96-SCC Sage knowledge / Criminology & Criminal Justice +http://lobid.org/organisations/ZDB-96-SHS#! ZDB-96-SHS ZDB-96-SHS Sage knowledge / Health and Social Care +http://lobid.org/organisations/ZDB-96-SPR#! ZDB-96-SPR ZDB-96-SPR Sage knowledge / Politics & International Relations +http://lobid.org/organisations/ZDB-7-URB#! ZDB-7-URB ZDB-7-URB Taylor & Francis eBooks / Urban Studies +http://lobid.org/organisations/ZDB-7-ESM#! ZDB-7-ESM ZDB-7-ESM Taylor & Francis eBooks / Environmental Studies & Management +http://lobid.org/organisations/ZDB-7-CSC#! ZDB-7-CSC ZDB-7-CSC Taylor & Francis eBooks / Computer Science +http://lobid.org/organisations/ZDB-109-LSR#! ZDB-109-LSR ZDB-109-LSR Lambertus / Sozialrecht +http://lobid.org/organisations/ZDB-47-ESV#! ZDB-47-ESV ZDB-47-ESV Erich Schmidt Verlag E-Books +http://lobid.org/organisations/ZDB-88-ITR#! ZDB-88-ITR ZDB-88-ITR juris PartnerModul IT-Recht +http://lobid.org/organisations/ZDB-88-ARR#! ZDB-88-ARR ZDB-88-ARR OVS Modul Arbeitsrecht powered by juris +http://lobid.org/organisations/ZDB-117-AMG#! ZDB-117-AMG ZDB-117-AMG V&R eLibrary / Abhandlungen zur Musikgeschichte +http://lobid.org/organisations/ZDB-117-APK#! ZDB-117-APK ZDB-117-APK V&R eLibrary / Angewandte Psychologie Kinder +http://lobid.org/organisations/ZDB-117-FER#! ZDB-117-FER ZDB-117-FER V&R eLibrary / Formen der Erinnerung +http://lobid.org/organisations/ZDB-117-FSO#! ZDB-117-FSO ZDB-117-FSO V&R eLibrary / Forschungen zur systematischen und oekumenischen Theologie +http://lobid.org/organisations/ZDB-117-HAI#! ZDB-117-HAI ZDB-117-HAI V&R eLibrary / Schriften des Hannah-Arendt-Instituts +http://lobid.org/organisations/ZDB-117-HIS#! ZDB-117-HIS ZDB-117-HIS V&R eLibrary / Historische Semantik +http://lobid.org/organisations/ZDB-117-JAJ#! ZDB-117-JAJ ZDB-117-JAJ V&R eLibrary / Journal of Ancient Judaism. Supplements +http://lobid.org/organisations/ZDB-117-JRK#! ZDB-117-JRK ZDB-117-JRK V&R eLibrary / Jüdische Religion, Geschichte und Kultur +http://lobid.org/organisations/ZDB-117-NGZ#! ZDB-117-NGZ ZDB-117-NGZ V&R eLibrary / Neueste Geschichte - Zeitgeschichte +http://lobid.org/organisations/ZDB-117-NOT#! ZDB-117-NOT ZDB-117-NOT V&R eLibrary / Novum Testamentum - Studien zur Umwelt des Neuen Testaments +http://lobid.org/organisations/ZDB-35-WCJ#! ZDB-35-WCJ ZDB-35-WCJ Wiley Collection General & Physical Chemistry +http://lobid.org/organisations/ZDB-35-WCL#! ZDB-35-WCL ZDB-35-WCL Wiley Collection Industrial Chemistry +http://lobid.org/organisations/ZDB-120-SVA#! ZDB-120-SVA ZDB-120-SVA Franz Steiner Verlag eLibrary / Jahresgesamtpaket +http://lobid.org/organisations/ZDB-120-SVB#! ZDB-120-SVB ZDB-120-SVB Franz Steiner Verlag eLibrary / Geisteswissenschaften +http://lobid.org/organisations/ZDB-116-KEZ#! ZDB-116-KEZ ZDB-116-KEZ Klett-Cotta / Erziehung +http://lobid.org/organisations/ZDB-28-OEF#! ZDB-28-OEF ZDB-28-OEF Oxford Handbooks Online / Economics & Finance +http://lobid.org/organisations/ZDB-41-SKM#! ZDB-41-SKM ZDB-41-SKM scholars-e-library / Kunst/ Kultur/ Musik/ Theater +http://lobid.org/organisations/ZDB-41-SNI#! ZDB-41-SNI ZDB-41-SNI scholars-e-library / Natur/ Technik +http://lobid.org/organisations/ZDB-41-SPO#! ZDB-41-SPO ZDB-41-SPO scholars-e-library / Politikwissenschaft +http://lobid.org/organisations/ZDB-41-SPY#! ZDB-41-SPY ZDB-41-SPY scholars-e-library / Psychologie allg. +http://lobid.org/organisations/ZDB-41-SSK#! ZDB-41-SSK ZDB-41-SSK scholars-e-library / Schlüsselkompetenzen +http://lobid.org/organisations/ZDB-41-SCT#! ZDB-41-SCT ZDB-41-SCT scholars-e-library / Schulpädagogik/ Sekundarstufe +http://lobid.org/organisations/ZDB-41-SSU#! ZDB-41-SSU ZDB-41-SSU scholars-e-library / Sprachwissenschaft/ Übersetzungswissenschaft +http://lobid.org/organisations/ZDB-41-SSE#! ZDB-41-SSE ZDB-41-SSE scholars-e-library / Sprachwissenschaft/ Spracherwerb +http://lobid.org/organisations/ZDB-41-SWU#! ZDB-41-SWU ZDB-41-SWU scholars-e-library / Wirtschaft/ Unternehmenskommunikation +http://lobid.org/organisations/ZDB-2-BAD#! ZDB-2-BAD ZDB-2-BAD Springer Book Archive Deutsch +http://lobid.org/organisations/ZDB-59-BSO#! ZDB-59-BSO ZDB-59-BSO Beltz Soziologie +http://lobid.org/organisations/ZDB-84-KHG#! ZDB-84-KHG ZDB-84-KHG Kohlhammer Neurologie +http://lobid.org/organisations/ZDB-84-KHI#! ZDB-84-KHI ZDB-84-KHI Kohlhammer Palliativmedizin, Geriatrie +http://lobid.org/organisations/ZDB-84-KHJ#! ZDB-84-KHJ ZDB-84-KHJ Kohlhammer Pflege: Aus- und Weiterbildung, Nachschlagewerke +http://lobid.org/organisations/ZDB-84-KHK#! ZDB-84-KHK ZDB-84-KHK Kohlhammer Pflegemanagement und Recht +http://lobid.org/organisations/ZDB-107-WDN#! ZDB-107-WDN ZDB-107-WDN scholars-e-library / Didaktik der Naturwissenschaften und Mathematik / Backlist Waxmann +http://lobid.org/organisations/ZDB-85-LDO#! ZDB-85-LDO ZDB-85-LDO Linde-Verlag Recht / Rechtsgebiet AT +http://lobid.org/organisations/ZDB-18-NOI#! ZDB-18-NOI ZDB-18-NOI NomosOnline Premium +http://lobid.org/organisations/ZDB-55-ESS#! ZDB-55-ESS ZDB-55-ESS Emerald Social Sciences eBook Collection Purchase +http://lobid.org/organisations/ZDB-125-TRG#! ZDB-125-TRG ZDB-125-TRG scholars-e-library / Geographie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TGZ#! ZDB-125-TGZ ZDB-125-TGZ scholars-e-library / Geschichte des 20. Jahrhunderts / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKT#! ZDB-125-TKT ZDB-125-TKT scholars-e-library / Kulturtheorie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKB#! ZDB-125-TKB ZDB-125-TKB scholars-e-library / Kunst- und Bildwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-125-TPS#! ZDB-125-TPS ZDB-125-TPS scholars-e-library / Psychologie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TPA#! ZDB-125-TPA ZDB-125-TPA scholars-e-library / Pädagogik / Backlist transcript +http://lobid.org/organisations/ZDB-125-TKU#! ZDB-125-TKU ZDB-125-TKU scholars-e-library / Kultur- und Mediensoziologie / Backlist transcript +http://lobid.org/organisations/ZDB-125-TSG#! ZDB-125-TSG ZDB-125-TSG scholars-e-library / Soziologie des Geschlechts und des Körpers / Backlist transcript +http://lobid.org/organisations/ZDB-125-TPU#! ZDB-125-TPU ZDB-125-TPU scholars-e-library / Politische Soziologie und Soziale Ungleichheit / Backlist transcript +http://lobid.org/organisations/ZDB-125-TTW#! ZDB-125-TTW ZDB-125-TTW scholars-e-library / Theater- und Tanzwissenschaft / Backlist transcript +http://lobid.org/organisations/ZDB-126-OBK#! ZDB-126-OBK ZDB-126-OBK oekom verlag / Bildung & Kommunikation +http://lobid.org/organisations/ZDB-126-ODB#! ZDB-126-ODB ZDB-126-ODB oekom verlag / Demokratie & Bürgerbeteiligung +http://lobid.org/organisations/ZDB-126-OLN#! ZDB-126-OLN ZDB-126-OLN oekom verlag / Landnutzung & Naturschutz +http://lobid.org/organisations/ZDB-126-OPG#! ZDB-126-OPG ZDB-126-OPG oekom verlag / Politik & Gesellschaft +http://lobid.org/organisations/ZDB-126-ORS#! ZDB-126-ORS ZDB-126-ORS oekom verlag / Rohstoffe +http://lobid.org/organisations/ZDB-121-UEG#! ZDB-121-UEG ZDB-121-UEG Ulmer E-Books / Ernährung und Gesundheit/ Lifestyle +http://lobid.org/organisations/ZDB-121-UGA#! ZDB-121-UGA ZDB-121-UGA Ulmer E-Books / Garten +http://lobid.org/organisations/ZDB-128-VUM#! ZDB-128-VUM ZDB-128-VUM Beck eLibrary / Vahlen Unternehmensführung, Management, Organisation +http://lobid.org/organisations/ZDB-105-MC1#! ZDB-105-MC1 ZDB-105-MC1 Morgan & Claypool: Computer & Information Science Collections / CIS collection one +http://lobid.org/organisations/ZDB-18-NSO#! ZDB-18-NSO ZDB-18-NSO Nomos eLibrary / Studienliteratur Öffentliches Recht +http://lobid.org/organisations/ZDB-18-NSM#! ZDB-18-NSM ZDB-18-NSM Nomos eLibrary / Studienliteratur Medien & Kommunikation +http://lobid.org/organisations/ZDB-132-VBM#! ZDB-132-VBM ZDB-132-VBM Vogel Business Media +http://lobid.org/organisations/ZDB-23-DTO#! ZDB-23-DTO ZDB-23-DTO De Gruyter eBook-Paket Tusculum Online +http://lobid.org/organisations/ZDB-23-DIW#! ZDB-23-DIW ZDB-23-DIW De Gruyter eBook-Paket Ingenieurswissenschaften +http://lobid.org/organisations/ZDB-133-HKL#! ZDB-133-HKL ZDB-133-HKL Hirzel eLibrary / Klassiker +http://lobid.org/organisations/ZDB-23-OSQ#! ZDB-23-OSQ ZDB-23-OSQ eBook-Paket Oldenbourg-Akademie / Sprachwissenschaft +http://lobid.org/organisations/ZDB-23-DEM#! ZDB-23-DEM ZDB-23-DEM De Gruyter eBook-Paket Mathematik und Physik +http://lobid.org/organisations/ZDB-41-SSY#! ZDB-41-SSY ZDB-41-SSY scholars-e-library / Psychotherapie +http://lobid.org/organisations/ZDB-1-BBSA#! ZDB-1-BBSA ZDB-1-BBSA Brill / Biblical Studies, Ancient Near East and Early Christianity E-Books Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-MISA#! ZDB-1-MISA ZDB-1-MISA Brill / Middle East and Islamic Studies E-Books Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-RSTA#! ZDB-1-RSTA ZDB-1-RSTA Brill / Religious Studies, Theology and Philosophy E-Books Online [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-47-EST#! ZDB-47-EST ZDB-47-EST Erich Schmidt Verlag E-Books / Steuern +http://lobid.org/organisations/ZDB-1-GIS#! ZDB-1-GIS ZDB-1-GIS IGI Global InfoSci Journals Archive 2000 - 2015 [Nationallizenz] +http://lobid.org/organisations/ZDB-132-VBS#! ZDB-132-VBS ZDB-132-VBS Vogel Business Media / Bau, Sanitär +http://lobid.org/organisations/ZDB-132-VEK#! ZDB-132-VEK ZDB-132-VEK Vogel Business Media / Elektronik +http://lobid.org/organisations/ZDB-23-TKA#! ZDB-23-TKA ZDB-23-TKA transcript eBook-Sonderpaket Kunst und Architektur +http://lobid.org/organisations/ZDB-5-WMT#! ZDB-5-WMT ZDB-5-WMT wiso Technik +http://lobid.org/organisations/ZDB-28-OME#! ZDB-28-OME ZDB-28-OME Oxford Medicine Online +http://lobid.org/organisations/ZDB-37-IEM#! ZDB-37-IEM ZDB-37-IEM MIT Press eBooks Library - Computing & Engineering Collection +http://lobid.org/organisations/ZDB-117-STK#! ZDB-117-STK ZDB-117-STK V&R eLibrary / Systemik +http://lobid.org/organisations/ZDB-138-AMP#! ZDB-138-AMP ZDB-138-AMP AMS ebooks / Proceedings of Symposia in Applied Mathematics +http://lobid.org/organisations/ZDB-23-DRG#! ZDB-23-DRG ZDB-23-DRG Reallexikon der Germanischen Altertumskunde / Ergänzungsbände +http://lobid.org/organisations/ZDB-75-TEL#! ZDB-75-TEL ZDB-75-TEL Torrossa / EEO - Edición Española Online / Core Language & Literature +http://lobid.org/organisations/ZDB-75-TIL#! ZDB-75-TIL ZDB-75-TIL Torrossa / EIO - Editoria Italiana Online / Core Language & Literature +http://lobid.org/organisations/ZDB-138-AMM#! ZDB-138-AMM ZDB-138-AMM AMS ebooks / Contemporary Mathematics +http://lobid.org/organisations/ZDB-116-KGT#! ZDB-116-KGT ZDB-116-KGT Klett-Cotta / Geschichte +http://lobid.org/organisations/ZDB-85-LDQ#! ZDB-85-LDQ ZDB-85-LDQ Linde-Verlag Lehrbuch / Arbeit & Soziales +http://lobid.org/organisations/ZDB-125-TMK#! ZDB-125-TMK ZDB-125-TMK scholars-e-library / Museumswissenschaft und Kulturmanagement / Backlist transcript +http://lobid.org/organisations/ZDB-117-RHT#! ZDB-117-RHT ZDB-117-RHT V&R eLibrary / Reformed Historical Theology +http://lobid.org/organisations/ZDB-84-KHO#! ZDB-84-KHO ZDB-84-KHO Kohlhammer Öffentliches Recht +http://lobid.org/organisations/ZDB-84-KHQ#! ZDB-84-KHQ ZDB-84-KHQ Kohlhammer Zivilrecht +http://lobid.org/organisations/ZDB-23-DBB#! ZDB-23-DBB ZDB-23-DBB De Gruyter e-dition 2: Best of Classical Studies Titles in English +http://lobid.org/organisations/ZDB-23-DBI#! ZDB-23-DBI ZDB-23-DBI De Gruyter e-dition 2: Best of Mathematics, Physics +http://lobid.org/organisations/ZDB-23-DBJ#! ZDB-23-DBJ ZDB-23-DBJ De Gruyter e-dition 2: Best of Philosophy +http://lobid.org/organisations/ZDB-18-BLD#! ZDB-18-BLD ZDB-18-BLD Beck eLibrary / C.H. Beck Musikgeschichte und musikalische Werkführer +http://lobid.org/organisations/ZDB-2-BUM#! ZDB-2-BUM ZDB-2-BUM Springer ebook collection / Business and Management +http://lobid.org/organisations/ZDB-2-SZR#! ZDB-2-SZR ZDB-2-SZR Springer ebook collection / Sozialwissenschaften und Recht +http://lobid.org/organisations/ZDB-23-LCO#! ZDB-23-LCO ZDB-23-LCO Le Corbusier Online +http://lobid.org/organisations/ZDB-117-VPP#! ZDB-117-VPP ZDB-117-VPP V&R eLibrary / Psychotherapie und Psychologie +http://lobid.org/organisations/ZDB-6-UFT#! ZDB-6-UFT ZDB-6-UFT UPCC Book Collection on Project MUSE / Film, Theater, and Performing Arts Collection +http://lobid.org/organisations/ZDB-138-AML#! ZDB-138-AML ZDB-138-AML AMS ebooks / Student mathematical library +http://lobid.org/organisations/ZDB-1-DJS#! ZDB-1-DJS ZDB-1-DJS E-Duke Journals Scholarly Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-101-LET#! ZDB-101-LET ZDB-101-LET LinkedIn Learning +http://lobid.org/organisations/ZDB-107-WBM#! ZDB-107-WBM ZDB-107-WBM scholars-e-library / Bildungsmanagement / Backlist Waxmann +http://lobid.org/organisations/ZDB-88-ISJ#! ZDB-88-ISJ ZDB-88-ISJ OVS Modul Internationales Steuerrecht powered by juris +http://lobid.org/organisations/ZDB-1-OJC#! ZDB-1-OJC ZDB-1-OJC Oxford Journals Digital Archive / Social Sciences Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-73-CVD#! ZDB-73-CVD ZDB-73-CVD campus e-books / WestEnd +http://lobid.org/organisations/ZDB-73-CVE#! ZDB-73-CVE ZDB-73-CVE campus e-books / Soziologie +http://lobid.org/organisations/ZDB-84-KHV#! ZDB-84-KHV ZDB-84-KHV Kohlhammer Verwaltung +http://lobid.org/organisations/ZDB-23-OLT#! ZDB-23-OLT ZDB-23-OLT De Gruyter Oldenbourg ebook Paket Lehrbücher Technik +http://lobid.org/organisations/ZDB-1-JMUE#! ZDB-1-JMUE ZDB-1-JMUE JSTOR : Music Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-121-UGP#! ZDB-121-UGP ZDB-121-UGP Ulmer E-Books / Garten und Pflanzen +http://lobid.org/organisations/ZDB-121-UHG#! ZDB-121-UHG ZDB-121-UHG Ulmer E-Books / Heilpflanzen und Gesundheit +http://lobid.org/organisations/ZDB-121-UHF#! ZDB-121-UHF ZDB-121-UHF Ulmer E-Books / Hobby und Freizeit +http://lobid.org/organisations/ZDB-121-UBA#! ZDB-121-UBA ZDB-121-UBA Ulmer E-Books / Kochen und Backen +http://lobid.org/organisations/ZDB-121-ULT#! ZDB-121-ULT ZDB-121-ULT Ulmer E-Books / Landwirtschaft und Tierhaltung +http://lobid.org/organisations/ZDB-30-PUP#! ZDB-30-PUP ZDB-30-PUP ProQuest / University Press Collection +http://lobid.org/organisations/ZDB-18-BAR#! ZDB-18-BAR ZDB-18-BAR beck-online / Arbeitsrecht PREMIUM +http://lobid.org/organisations/ZDB-142-WGM#! ZDB-142-WGM ZDB-142-WGM WBG / Germanistik - Mediävistik +http://lobid.org/organisations/ZDB-142-WNG#! ZDB-142-WNG ZDB-142-WNG WBG / Geschichte - Neuere Geschichte +http://lobid.org/organisations/ZDB-18-BVR#! ZDB-18-BVR ZDB-18-BVR beck-online / Verwaltungsrecht PLUS +http://lobid.org/organisations/ZDB-142-WHT#! ZDB-142-WHT ZDB-142-WHT WBG / Historische Theologie +http://lobid.org/organisations/ZDB-159-GAS#! ZDB-159-GAS ZDB-159-GAS SciFo / Gas +http://lobid.org/organisations/ZDB-117-NTE#! ZDB-117-NTE ZDB-117-NTE V&R eLibrary / Neues Testament +http://lobid.org/organisations/ZDB-117-RUW#! ZDB-117-RUW ZDB-117-RUW V&R eLibrary / Rechts- und Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-117-RJU#! ZDB-117-RJU ZDB-117-RJU V&R eLibrary / Reformationsjubiläum +http://lobid.org/organisations/ZDB-23-DPC#! ZDB-23-DPC ZDB-23-DPC De Gruyter eBook-Paket Physik, Chemie, Industrielle Chemie, Materialwissenschaft, Geowissenschaften +http://lobid.org/organisations/ZDB-161-CSL#! ZDB-161-CSL ZDB-161-CSL Commonwealth Secretariat iLibrary +http://lobid.org/organisations/ZDB-20-CHS#! ZDB-20-CHS ZDB-20-CHS Cambridge Books Online / Humanities & Social Sciences Collection +http://lobid.org/organisations/ZDB-1-PJOA#! ZDB-1-PJOA ZDB-1-PJOA PsyJournals Archiv [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SAGK2#! ZDB-1-SAGK2 ZDB-1-SAGK2 Sage Journals Online Publish & Read / Premier / Upgrade für 2015 bis Mitte 2016 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-165-NOC#! ZDB-165-NOC ZDB-165-NOC Nordic iLibrary +http://lobid.org/organisations/ZDB-23-GKO#! ZDB-23-GKO ZDB-23-GKO De Gruyter e-Book-Paket Das Kapital Online (Marx-Engels-Gesamtausgabe Abteilung II) +http://lobid.org/organisations/ZDB-5-WGV#! ZDB-5-WGV ZDB-5-WGV wiso Grin Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-8-APN#! ZDB-8-APN ZDB-8-APN PsycBOOKS (via APA PsycNET) +http://lobid.org/organisations/ZDB-5-WVW#! ZDB-5-WVW ZDB-5-WVW wiso Videos Wirtschaftswissenschaften (Lecturio) +http://lobid.org/organisations/ZDB-128-VVA#! ZDB-128-VVA ZDB-128-VVA Beck eLibrary / Versus Allgemeine Betriebswirtschaftslehre +http://lobid.org/organisations/ZDB-16-LBE#! ZDB-16-LBE ZDB-16-LBE Hanser eLibrary / Leuze Backlist - Elektrotechnik +http://lobid.org/organisations/ZDB-16-LBG#! ZDB-16-LBG ZDB-16-LBG Hanser eLibrary / Leuze Backlist - Galvanotechnik +http://lobid.org/organisations/ZDB-23-ODJ#! ZDB-23-ODJ ZDB-23-ODJ De Gruyter Oldenbourg ebook Paket Deutsch-jüdische Quellen aus Palästina / Israel +http://lobid.org/organisations/ZDB-142-WTH#! ZDB-142-WTH ZDB-142-WTH WBG / Theologie +http://lobid.org/organisations/ZDB-142-WPE#! ZDB-142-WPE ZDB-142-WPE WBG / Philosophie Einführungen +http://lobid.org/organisations/ZDB-157-HSU#! ZDB-157-HSU ZDB-157-HSU Herder / Studienliteratur +http://lobid.org/organisations/ZDB-173-HPF#! ZDB-173-HPF ZDB-173-HPF Haufe Lexware / Personalmanagement, Führung, Karriere +http://lobid.org/organisations/ZDB-174-OHU#! ZDB-174-OHU ZDB-174-OHU Open Humanities Press / Books +http://lobid.org/organisations/ZDB-18-BDI#! ZDB-18-BDI ZDB-18-BDI beck-online / Datenschutz- und Informationsfreiheitsrecht PLUS +http://lobid.org/organisations/ZDB-28-OAH#! ZDB-28-OAH ZDB-28-OAH Very Short Introductions / Arts and Humanities +http://lobid.org/organisations/ZDB-47-ESP#! ZDB-47-ESP ZDB-47-ESP Erich Schmidt Verlag E-Books / Sportmanagement +http://lobid.org/organisations/ZDB-1-JFK#! ZDB-1-JFK ZDB-1-JFK JSTOR : E-Books in Art, Design and Photography [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DEI#! ZDB-1-DEI ZDB-1-DEI Detail Inspiration [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-176-DCH#! ZDB-176-DCH ZDB-176-DCH Digital Concert Hall +http://lobid.org/organisations/ZDB-142-WEA#! ZDB-142-WEA ZDB-142-WEA WBG / Edition Antike +http://lobid.org/organisations/ZDB-178-HFDDA#! ZDB-178-HFDDA ZDB-178-HFDDA hep / Fachdidaktik (Ausgabe Deutschland und Österreich) +http://lobid.org/organisations/ZDB-178-HSE#! ZDB-178-HSE ZDB-178-HSE hep / Schulleitung & -entwicklung +http://lobid.org/organisations/ZDB-179-WMG#! ZDB-179-WMG ZDB-179-WMG Walhalla / Management +http://lobid.org/organisations/ZDB-179-WNH#! ZDB-179-WNH ZDB-179-WNH Walhalla / Nachhaltigkeit +http://lobid.org/organisations/ZDB-180-LYC#! ZDB-180-LYC ZDB-180-LYC Lyell Collection +http://lobid.org/organisations/ZDB-1-EVB#! ZDB-1-EVB ZDB-1-EVB Eastview eBooks [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UP14#! ZDB-1-UP14 ZDB-1-UP14 Ukraine Parliamentary Election 2014 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-181-TPL#! ZDB-181-TPL ZDB-181-TPL Tectum eLibrary / Politik +http://lobid.org/organisations/ZDB-10-CMP#! ZDB-10-CMP ZDB-10-CMP Knovel Composites +http://lobid.org/organisations/ZDB-10-GEP#! ZDB-10-GEP ZDB-10-GEP Knovel General Engineering & Project Administration +http://lobid.org/organisations/ZDB-4-WDH#! ZDB-4-WDH ZDB-4-WDH EBSCO World History Collection +http://lobid.org/organisations/ZDB-1-ANR#! ZDB-1-ANR ZDB-1-ANR Annual Reviews Electronic Back Volume Collection [Archiv] [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SDJ#! ZDB-1-SDJ ZDB-1-SDJ Elsevier Journal Backfiles on ScienceDirect [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EHD#! ZDB-1-EHD ZDB-1-EHD Dictionnaire de la langue française du 16e siècle / Edmond Huguet [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EUS#! ZDB-1-EUS ZDB-1-EUS Europa Sacra [Nationallizenz] +http://lobid.org/organisations/ZDB-1-LCL#! ZDB-1-LCL ZDB-1-LCL Library of Latin Texts / Series A [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CSA#! ZDB-1-CSA ZDB-1-CSA CSA Sozialwissenschaftliche Datenbanken 1996-2009 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BAA#! ZDB-1-BAA ZDB-1-BAA BIOSIS previews / Biological Abstracts [Nationallizenz] +http://lobid.org/organisations/ZDB-1-DDR#! ZDB-1-DDR ZDB-1-DDR U.S. Declassified Documents Online [Nationallizenz] +http://lobid.org/organisations/ZDB-1-TDA#! ZDB-1-TDA ZDB-1-TDA The Times Digital Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ELW#! ZDB-1-ELW ZDB-1-ELW English Language Women's Literature of the 18th & 19th centuries [Nationallizenz] +http://lobid.org/organisations/ZDB-1-MML#! ZDB-1-MML ZDB-1-MML Making of Modern Law : Legal Treatises 1800-1926 / MOML 1 [Nationallizenz] +http://lobid.org/organisations/ZDB-4-BAH#! ZDB-4-BAH ZDB-4-BAH EBSCO Business Source Alumni Edition +http://lobid.org/organisations/ZDB-4-HLH#! ZDB-4-HLH ZDB-4-HLH EBSCO Humanities International Complete +http://lobid.org/organisations/ZDB-4-IBH#! ZDB-4-IBH ZDB-4-IBH EBSCO International Bibliography of Theatre & Dance with Full Text +http://lobid.org/organisations/ZDB-4-SNH#! ZDB-4-SNH ZDB-4-SNH EBSCO SocINDEX +http://lobid.org/organisations/ZDB-1-TFO#! ZDB-1-TFO ZDB-1-TFO Taylor & Francis Online Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-VIC#! ZDB-1-VIC ZDB-1-VIC Voprosy Istorii Digital Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EIU#! ZDB-1-EIU ZDB-1-EIU EIU Country Reports Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-1-CAD#! ZDB-1-CAD ZDB-1-CAD China Ancient Books [Nationallizenz] +http://lobid.org/organisations/ZDB-1-FCP#! ZDB-1-FCP ZDB-1-FCP Forestry Compendium [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EAP#! ZDB-1-EAP ZDB-1-EAP Early American Imprints. Series II : Shaw/Shoemaker 1801-1819 [Nationallizenz] +http://lobid.org/organisations/ZDB-1-BEP#! ZDB-1-BEP ZDB-1-BEP De Gruyter Online / Research Now E-Journals [Nationallizenz] +http://lobid.org/organisations/ZDB-1-EFD#! ZDB-1-EFD ZDB-1-EFD Emerald eJournals Premier Collection Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-2-BHS#! ZDB-2-BHS ZDB-2-BHS Springer ebook collection / Behavioral Science +http://lobid.org/organisations/ZDB-2-SBL#! ZDB-2-SBL ZDB-2-SBL Springer ebook collection / Biomedical and Life Sciences +http://lobid.org/organisations/ZDB-2-SCS#! ZDB-2-SCS ZDB-2-SCS Springer ebook collection / Computer Science +http://lobid.org/organisations/ZDB-2-SNA#! ZDB-2-SNA ZDB-2-SNA Springer ebook collection / Natur- und Basiswissenschaften +http://lobid.org/organisations/ZDB-2-CWD#! ZDB-2-CWD ZDB-2-CWD Springer ebook collection / Professional and Applied Computing +http://lobid.org/organisations/ZDB-1-ECJ#! ZDB-1-ECJ ZDB-1-ECJ Eighteenth Century Journals : A Portal to Newspapers and Periodicals, 1685-1815 / ECJ I & II [Nationallizenz] +http://lobid.org/organisations/ZDB-8-PSY#! ZDB-8-PSY ZDB-8-PSY PsycARTICLES +http://lobid.org/organisations/ZDB-1-SAGK#! ZDB-1-SAGK ZDB-1-SAGK Sage Journals Online Publish & Read [Komplett] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-KARK#! ZDB-1-KARK ZDB-1-KARK Karger Journals [Komplett] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-NTA#! ZDB-1-NTA ZDB-1-NTA Nature Archives 1869 - 2009 [Nationallizenz] +http://lobid.org/organisations/ZDB-13-SOC#! ZDB-13-SOC ZDB-13-SOC OECD iLibrary +http://lobid.org/organisations/ZDB-1-WEZ#! ZDB-1-WEZ ZDB-1-WEZ Wenshi ziliao [Nationallizenz] +http://lobid.org/organisations/ZDB-1-SHE#! ZDB-1-SHE ZDB-1-SHE Shenbao [Nationallizenz] +http://lobid.org/organisations/ZDB-1-JA1#! ZDB-1-JA1 ZDB-1-JA1 JSTOR : Arts & Sciences I Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JAC#! ZDB-1-JAC ZDB-1-JAC JSTOR : Arts & Sciences VII Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JMS#! ZDB-1-JMS ZDB-1-JMS JSTOR : Mathematics & Statistics Legacy Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JMC#! ZDB-1-JMC ZDB-1-JMC JSTOR : Museum Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-USC#! ZDB-1-USC ZDB-1-USC U.S. Congressional Serial Set [Nationallizenz] +http://lobid.org/organisations/ZDB-1-VEV#! ZDB-1-VEV ZDB-1-VEV Vestnik Evropy [Nationallizenz] +http://lobid.org/organisations/ZDB-1-INT#! ZDB-1-INT ZDB-1-INT Integrum World Wide [Nationallizenz] +http://lobid.org/organisations/ZDB-1-JAP#! ZDB-1-JAP ZDB-1-JAP Legacy Archive : Journal of the APS 1898-1998 [Nationallizenz] +http://lobid.org/organisations/ZDB-19-BRO#! ZDB-19-BRO ZDB-19-BRO Blackwell Reference Online +http://lobid.org/organisations/ZDB-24-HUO#! ZDB-24-HUO ZDB-24-HUO Humanities Online +http://lobid.org/organisations/ZDB-28-OSM#! ZDB-28-OSM ZDB-28-OSM Oxford Scholarship Online / Music +http://lobid.org/organisations/ZDB-31-RAR#! ZDB-31-RAR ZDB-31-RAR Rarebooks.info +http://lobid.org/organisations/ZDB-33-BGM#! ZDB-33-BGM ZDB-33-BGM Elsevier e-book collection - Biochemistry, Genetics and Molecular Biology +http://lobid.org/organisations/ZDB-33-IMU#! ZDB-33-IMU ZDB-33-IMU Elsevier e-book collection - Immunology & Microbiology +http://lobid.org/organisations/ZDB-33-PTP#! ZDB-33-PTP ZDB-33-PTP Elsevier e-book collection - Pharmacology, Toxicology and Pharmaceutical Science +http://lobid.org/organisations/ZDB-4-FUA#! ZDB-4-FUA ZDB-4-FUA EBSCO Fuente Académica Premier +http://lobid.org/organisations/ZDB-2-PEF#! ZDB-2-PEF ZDB-2-PEF Springer ebook collection / Palgrave Economics & Finance Collection +http://lobid.org/organisations/ZDB-1-HIN#! ZDB-1-HIN ZDB-1-HIN Historical Newspapers [Nationallizenz] +http://lobid.org/organisations/ZDB-1-ELC#! ZDB-1-ELC ZDB-1-ELC Elsevier eBook collection on ScienceDirect - Mathematics [Nationallizenz] +http://lobid.org/organisations/ZDB-28-OSB#! ZDB-28-OSB ZDB-28-OSB Oxford Scholarship Online / Biology +http://lobid.org/organisations/ZDB-28-OSW#! ZDB-28-OSW ZDB-28-OSW Oxford Scholarship Online / Social Work +http://lobid.org/organisations/ZDB-9-AOF#! ZDB-9-AOF ZDB-9-AOF AcademicOneFile +http://lobid.org/organisations/ZDB-33-CEN#! ZDB-33-CEN ZDB-33-CEN Elsevier e-book collection - Chemical Engineering +http://lobid.org/organisations/ZDB-33-FOR#! ZDB-33-FOR ZDB-33-FOR Elsevier e-book collection - Forensics +http://lobid.org/organisations/ZDB-33-MSC#! ZDB-33-MSC ZDB-33-MSC Elsevier e-book collection - Materials Science +http://lobid.org/organisations/ZDB-28-OAO#! ZDB-28-OAO ZDB-28-OAO Oxford art online +http://lobid.org/organisations/ZDB-4-A9H#! ZDB-4-A9H ZDB-4-A9H EBSCO Academic Search Complete +http://lobid.org/organisations/ZDB-47-CPD#! ZDB-47-CPD ZDB-47-CPD COMPLIANCEdigital +http://lobid.org/organisations/ZDB-50-SPI#! ZDB-50-SPI ZDB-50-SPI SPIE Digital Library +http://lobid.org/organisations/ZDB-42-OBW#! ZDB-42-OBW ZDB-42-OBW Oldenbourg / Betriebswirtschaftslehre +http://lobid.org/organisations/ZDB-42-ON1#! ZDB-42-ON1 ZDB-42-ON1 Oldenbourg / Naturwissenschaft und Technik 1 +http://lobid.org/organisations/ZDB-32-SBB#! ZDB-32-SBB ZDB-32-SBB Safari Business Books Online +http://lobid.org/organisations/ZDB-4-EIH#! ZDB-4-EIH ZDB-4-EIH EBSCO Environment Complete +http://lobid.org/organisations/ZDB-1-MMP#! ZDB-1-MMP ZDB-1-MMP Making of Modern Law : Primary Sources, 1620-1926 / MOML 4 [Nationallizenz] +http://lobid.org/organisations/ZDB-4-30H#! ZDB-4-30H ZDB-4-30H EBSCO Historical Abstracts with Full Text +http://lobid.org/organisations/ZDB-1-KEC#! ZDB-1-KEC ZDB-1-KEC Karger eBooks Collection [Komplett] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-52-SLW#! ZDB-52-SLW ZDB-52-SLW HeinOnline / Session Laws +http://lobid.org/organisations/ZDB-2-PRO#! ZDB-2-PRO ZDB-2-PRO Springer Protocols +http://lobid.org/organisations/ZDB-1-OJH#! ZDB-1-OJH ZDB-1-OJH Oxford Journals Digital Archive / HSS Collection [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-18-NOS#! ZDB-18-NOS ZDB-18-NOS NomosOnline Sozialrecht +http://lobid.org/organisations/ZDB-18-IBR#! ZDB-18-IBR ZDB-18-IBR Privates Baurecht ibr-online +http://lobid.org/organisations/ZDB-23-DGI#! ZDB-23-DGI ZDB-23-DGI De Gruyter e-dition: Best of Law / Rechtswissenschaften +http://lobid.org/organisations/ZDB-23-DGL#! ZDB-23-DGL ZDB-23-DGL De Gruyter e-dition: Best of Chemistry / Chemie +http://lobid.org/organisations/ZDB-59-BPG#! ZDB-59-BPG ZDB-59-BPG Beltz Psychologie Grundlagen +http://lobid.org/organisations/ZDB-16-HEC#! ZDB-16-HEC ZDB-16-HEC Hanser eLibrary / Bautechnik +http://lobid.org/organisations/ZDB-72-SIA#! ZDB-72-SIA ZDB-72-SIA SIAM E-Books +http://lobid.org/organisations/ZDB-73-CVC#! ZDB-73-CVC ZDB-73-CVC campus e-books / Business Backlist +http://lobid.org/organisations/ZDB-74-AKP#! ZDB-74-AKP ZDB-74-AKP akademie-link / Philosophie +http://lobid.org/organisations/ZDB-74-AKS#! ZDB-74-AKS ZDB-74-AKS akademie-link / Studienbücher +http://lobid.org/organisations/ZDB-1-IZV#! ZDB-1-IZV ZDB-1-IZV Izvestija Digital Archive 1917 - 1991 [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBA#! ZDB-1-CUBA ZDB-1-CUBA Cambridge Books Online / Anthropology [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-CUBB#! ZDB-1-CUBB ZDB-1-CUBB Cambridge Books Online / Archaeology [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-41-UTBH#! ZDB-41-UTBH ZDB-41-UTBH utb-studi-e-book / Pädagogik +http://lobid.org/organisations/ZDB-41-UTBI#! ZDB-41-UTBI ZDB-41-UTBI utb-studi-e-book / Schulpädagogik +http://lobid.org/organisations/ZDB-41-UTBJ#! ZDB-41-UTBJ ZDB-41-UTBJ utb-studi-e-book / Philosophie +http://lobid.org/organisations/ZDB-41-UTBK#! ZDB-41-UTBK ZDB-41-UTBK utb-studi-e-book / Politik +http://lobid.org/organisations/ZDB-75-TOZ#! ZDB-75-TOZ ZDB-75-TOZ Torrossa / Biblioteca Italiana Zanichelli +http://lobid.org/organisations/ZDB-75-TOPC#! ZDB-75-TOPC ZDB-75-TOPC Torrossa / EIO - Editoria Italiana Online / Altertum +http://lobid.org/organisations/ZDB-1-CAR#! ZDB-1-CAR ZDB-1-CAR CAB Abstracts (incl. CAB Reviews) [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-4-MTH#! ZDB-4-MTH ZDB-4-MTH EBSCO Military & Government Collection +http://lobid.org/organisations/ZDB-4-RLH#! ZDB-4-RLH ZDB-4-RLH EBSCO Religion & Philosophy Collection +http://lobid.org/organisations/ZDB-4-PRH#! ZDB-4-PRH ZDB-4-PRH EBSCO Primary Search +http://lobid.org/organisations/ZDB-4-PBH#! ZDB-4-PBH ZDB-4-PBH EBSCO Psychology & Behavioral Sciences Collection +http://lobid.org/organisations/ZDB-4-HPH#! ZDB-4-HPH ZDB-4-HPH EBSCO Health Source - Consumer Edition +http://lobid.org/organisations/ZDB-4-HEH#! ZDB-4-HEH ZDB-4-HEH EBSCO Health Business Elite +http://lobid.org/organisations/ZDB-4-CRH#! ZDB-4-CRH ZDB-4-CRH EBSCO Corporate ResourceNet +http://lobid.org/organisations/ZDB-4-ZBH#! ZDB-4-ZBH ZDB-4-ZBH EBSCO Fuente Académica +http://lobid.org/organisations/ZDB-4-SYH#! ZDB-4-SYH ZDB-4-SYH EBSCO Science & Technology Collection +http://lobid.org/organisations/ZDB-128-UMM#! ZDB-128-UMM ZDB-128-UMM Beck eLibrary / UVK Management & Marketing +http://lobid.org/organisations/ZDB-128-UFI#! ZDB-128-UFI ZDB-128-UFI Beck eLibrary / UVK Finance +http://lobid.org/organisations/ZDB-128-UWW#! ZDB-128-UWW ZDB-128-UWW Beck eLibrary / UVK Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-181-TSK#! ZDB-181-TSK ZDB-181-TSK Tectum eLibrary / Sozialwissenschaften komplett +http://lobid.org/organisations/ZDB-28-OMU#! ZDB-28-OMU ZDB-28-OMU Oxford Handbooks Online / Music +http://lobid.org/organisations/ZDB-182-HSI#! ZDB-182-HSI ZDB-182-HSI Hueber / Sprachpaket Italienisch +http://lobid.org/organisations/ZDB-114-LAA#! ZDB-114-LAA ZDB-114-LAA Peter Lang eBooks / Die Künste +http://lobid.org/organisations/ZDB-124-WPN#! ZDB-124-WPN ZDB-124-WPN World Scientific Publishing / Physics, Nonlinear Science +http://lobid.org/organisations/ZDB-1-USI#! ZDB-1-USI ZDB-1-USI U.S. Intelligence on Europe 1945-1995 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-95-LCS#! ZDB-95-LCS ZDB-95-LCS Brill Online / Literature and Cultural Studies +http://lobid.org/organisations/ZDB-181-TKU#! ZDB-181-TKU ZDB-181-TKU Tectum eLibrary / Kunst +http://lobid.org/organisations/ZDB-181-TPI#! ZDB-181-TPI ZDB-181-TPI Tectum eLibrary / Philosophie/Humanismus +http://lobid.org/organisations/ZDB-1-OCW#! ZDB-1-OCW ZDB-1-OCW Oxford Constitutions of the World [FID-Lizenz] +http://lobid.org/organisations/ZDB-179-WAL#! ZDB-179-WAL ZDB-179-WAL Walhalla E-Books +http://lobid.org/organisations/ZDB-1-EPB#! ZDB-1-EPB ZDB-1-EPB Emerald Business, Management and Economics eBook Collection Archive 1991 – 2018 [DFG-geförderte Allianz-Lizenz][ +http://lobid.org/organisations/ZDB-28-CSO#! ZDB-28-CSO ZDB-28-CSO Columbia Scholarship Online +http://lobid.org/organisations/ZDB-1-CIG#! ZDB-1-CIG ZDB-1-CIG Cairn.info E-Journals : FID-Geschichtswissenschaft Collection [FID-Lizenz] +http://lobid.org/organisations/ZDB-55-EM1#! ZDB-55-EM1 ZDB-55-EM1 Emerald Management 120 eJournal Collection +http://lobid.org/organisations/ZDB-1-MMA#! ZDB-1-MMA ZDB-1-MMA MSP E-Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-84-KTD#! ZDB-84-KTD ZDB-84-KTD Kohlhammer Theologie II: Praktische Theologie / Diakonie / Religionspädagogik / Allgemein +http://lobid.org/organisations/ZDB-171-LOD#! ZDB-171-LOD ZDB-171-LOD Logos / Didaktik +http://lobid.org/organisations/ZDB-171-LOT#! ZDB-171-LOT ZDB-171-LOT Logos / Technik +http://lobid.org/organisations/ZDB-55-PRM#! ZDB-55-PRM ZDB-55-PRM Emerald Property Management & Built Environment eJournal Collection +http://lobid.org/organisations/ZDB-55-EJC#! ZDB-55-EJC ZDB-55-EJC Emerald Engineering eJournal Collection +http://lobid.org/organisations/ZDB-60-ARD#! ZDB-60-ARD ZDB-60-ARD Annual Reviews current / Science Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-60-ARB#! ZDB-60-ARB ZDB-60-ARB Annual Reviews current / Biomedical Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-60-ARL#! ZDB-60-ARL ZDB-60-ARL Annual Reviews current / Life Sciences Collection [HeBIS-Konsortium] +http://lobid.org/organisations/ZDB-186-WTM#! ZDB-186-WTM ZDB-186-WTM WTM-Verlag E-Books +http://lobid.org/organisations/ZDB-157-HPS#! ZDB-157-HPS ZDB-157-HPS Herder / Psychologie +http://lobid.org/organisations/ZDB-85-LDV#! ZDB-85-LDV ZDB-85-LDV Linde-Verlag Novitäten +http://lobid.org/organisations/ZDB-178-HFN#! ZDB-178-HFN ZDB-178-HFN hep / Frühjahrsnovitäten +http://lobid.org/organisations/ZDB-173-HUNSP#! ZDB-173-HUNSP ZDB-173-HUNSP Haufe Lexware / Unternehmensführung, Organisation, Management (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-59-BSOBP#! ZDB-59-BSOBP ZDB-59-BSOBP Beltz Soziologie Basis-Paket +http://lobid.org/organisations/ZDB-59-TCBBP#! ZDB-59-TCBBP ZDB-59-TCBBP Beltz Training, Coaching und Beratung Basis-Paket +http://lobid.org/organisations/ZDB-88-SOP#! ZDB-88-SOP ZDB-88-SOP ESV Modul Sozialrecht Premium powered by juris +http://lobid.org/organisations/ZDB-88-JKV#! ZDB-88-JKV ZDB-88-JKV juris PraxisKommentar SGB V Gesetzliche Krankenversicherung +http://lobid.org/organisations/ZDB-88-JAR#! ZDB-88-JAR ZDB-88-JAR juris PartnerModul Arbeitsrecht Premium +http://lobid.org/organisations/ZDB-88-JPC#! ZDB-88-JPC ZDB-88-JPC juris PartnerModul Compliance +http://lobid.org/organisations/ZDB-187-JCP#! ZDB-187-JCP ZDB-187-JCP Junfermann / Coaching II / Praxis +http://lobid.org/organisations/ZDB-187-JPT#! ZDB-187-JPT ZDB-187-JPT Junfermann / Fachbuch / Psychotherapie +http://lobid.org/organisations/ZDB-1-BP10#! ZDB-1-BP10 ZDB-1-BP10 Belarus Presidential Election 2010 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DLN#! ZDB-1-DLN ZDB-1-DLN Donetsk and Luhansk Newspaper Collection [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RP12#! ZDB-1-RP12 ZDB-1-RP12 Russia Presidential Election 2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JSS#! ZDB-1-JSS ZDB-1-JSS JSTOR : Security Studies Collection [Nationalkonsortium] +http://lobid.org/organisations/ZDB-4-FAP#! ZDB-4-FAP ZDB-4-FAP EBSCO Fuente Académica Plus +http://lobid.org/organisations/ZDB-88-ZJI#! ZDB-88-ZJI ZDB-88-ZJI juris Zusatzmodul Justiz Insolvenzrecht +http://lobid.org/organisations/ZDB-88-ZJA#! ZDB-88-ZJA ZDB-88-ZJA juris Zusatzmodul Justiz Arbeitsrecht +http://lobid.org/organisations/ZDB-88-NFD#! ZDB-88-NFD ZDB-88-NFD juris Fachportal Steuerrecht / NfD +http://lobid.org/organisations/ZDB-136-SWS#! ZDB-136-SWS ZDB-136-SWS Suhrkamp / Werkausgabe Simmel +http://lobid.org/organisations/ZDB-1-ASJ#! ZDB-1-ASJ ZDB-1-ASJ Research Source: Area Studies: Japan [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NSE#! ZDB-18-NSE ZDB-18-NSE Nomos eLibrary / Studienliteratur Europarecht +http://lobid.org/organisations/ZDB-18-NSG#! ZDB-18-NSG ZDB-18-NSG Nomos eLibrary / edition sigma Soziologie +http://lobid.org/organisations/ZDB-18-NHB#! ZDB-18-NHB ZDB-18-NHB Nomos eLibrary / edition sigma Hans-Böckler-Stiftung +http://lobid.org/organisations/ZDB-18-NPW#! ZDB-18-NPW ZDB-18-NPW Nomos eLibrary / Studienliteratur Politikwissenschaft +http://lobid.org/organisations/ZDB-162-BFS#! ZDB-162-BFS ZDB-162-BFS Bloomsbury Collections / Film Studies Archive 2000-2013 +http://lobid.org/organisations/ZDB-171-LOI#! ZDB-171-LOI ZDB-171-LOI Logos / Informatik +http://lobid.org/organisations/ZDB-28-OSZ#! ZDB-28-OSZ ZDB-28-OSZ Oxford Handbooks Online / Sociology +http://lobid.org/organisations/ZDB-162-ACT#! ZDB-162-ACT ZDB-162-ACT Bloomsbury Collections / Aesthetics and Cultural Theory Archive 1999-2012 +http://lobid.org/organisations/ZDB-23-PHM#! ZDB-23-PHM ZDB-23-PHM De Gruyter eBook-Paket Philosophie des Mittelalters Online +http://lobid.org/organisations/ZDB-192-PMR#! ZDB-192-PMR ZDB-192-PMR PMCMedia / Rail +http://lobid.org/organisations/ZDB-192-PMO#! ZDB-192-PMO ZDB-192-PMO PMCMedia / ÖPNV +http://lobid.org/organisations/ZDB-1-RHW#! ZDB-1-RHW ZDB-1-RHW Rainer Hampp Wirtschaftswissenschaftliche Bücher 1995 - 2009 [Nationallizenz / Open Access] +http://lobid.org/organisations/ZDB-128-VJR#! ZDB-128-VJR ZDB-128-VJR Beck eLibrary / Vahlen Jura Öffentliches Recht +http://lobid.org/organisations/ZDB-2-SLR#! ZDB-2-SLR ZDB-2-SLR Springer ebook collection / Springer Reference / Living References +http://lobid.org/organisations/ZDB-128-BJO#! ZDB-128-BJO ZDB-128-BJO Beck eLibrary / C.H. Beck Jura Öffentliches Recht +http://lobid.org/organisations/ZDB-117-BOG#! ZDB-117-BOG ZDB-117-BOG V&R eLibrary / Böhlau Geschichte +http://lobid.org/organisations/ZDB-25-KFF#! ZDB-25-KFF ZDB-25-KFF Karger eBook Fast Facts Collection +http://lobid.org/organisations/ZDB-95-SFS#! ZDB-95-SFS ZDB-95-SFS Brill Online / Schöningh and Fink Social Sciences E-Books Online Collection +http://lobid.org/organisations/ZDB-196-MPB#! ZDB-196-MPB ZDB-196-MPB Meiner eLibrary / Philosophische Bibliothek +http://lobid.org/organisations/ZDB-23-GAA#! ZDB-23-GAA ZDB-23-GAA De Gruyter Book Archive / Art and Architecture +http://lobid.org/organisations/ZDB-23-GCN#! ZDB-23-GCN ZDB-23-GCN De Gruyter Book Archive / Classics and Near East Studies +http://lobid.org/organisations/ZDB-23-GPS#! ZDB-23-GPS ZDB-23-GPS De Gruyter Book Archive / Physical Sciences +http://lobid.org/organisations/ZDB-35-UBC#! ZDB-35-UBC ZDB-35-UBC Wiley Online Library / Usage-Based-Collection Management (UBCM) +http://lobid.org/organisations/ZDB-197-MJU#! ZDB-197-MJU ZDB-197-MJU Mohr Siebeck / Judaistik +http://lobid.org/organisations/ZDB-197-MRW#! ZDB-197-MRW ZDB-197-MRW Mohr Siebeck / Rechtswissenschaft +http://lobid.org/organisations/ZDB-197-MWW#! ZDB-197-MWW ZDB-197-MWW Mohr Siebeck / Wirtschaftswissenschaft +http://lobid.org/organisations/ZDB-35-IWT#! ZDB-35-IWT ZDB-35-IWT IEEE-Wiley Telecommunications eBooks Library +http://lobid.org/organisations/ZDB-197-MSE#! ZDB-197-MSE ZDB-197-MSE Mohr Siebeck eBooks +http://lobid.org/organisations/ZDB-200-WED#! ZDB-200-WED ZDB-200-WED Wallstein / Editionen +http://lobid.org/organisations/ZDB-200-WKL#! ZDB-200-WKL ZDB-200-WKL Wallstein / Kulturwissenschaft +http://lobid.org/organisations/ZDB-202-PSG#! ZDB-202-PSG ZDB-202-PSG Psychosozial-Verlag / Gesamt +http://lobid.org/organisations/ZDB-200-WLG#! ZDB-200-WLG ZDB-200-WLG Wallstein / Gesamt +http://lobid.org/organisations/ZDB-204-ACP#! ZDB-204-ACP ZDB-204-ACP Archaeopress +http://lobid.org/organisations/ZDB-1-KDA#! ZDB-1-KDA ZDB-1-KDA Krokodil Digital Archive (1922 - 2008) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-SAGM2#! ZDB-1-SAGM2 ZDB-1-SAGM2 Sage Journals Online Publish & Read / Materials Science & Engineering / Upgrade für 2015 bis Mitte 2016 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-206-RWO#! ZDB-206-RWO ZDB-206-RWO R&W Online-Datenbank - Fachmedien Recht und Wirtschaft +http://lobid.org/organisations/ZDB-207-IBV#! ZDB-207-IBV ZDB-207-IBV Iberoamericana Vervuert / eBooks +http://lobid.org/organisations/ZDB-9-NCS#! ZDB-9-NCS ZDB-9-NCS Nineteenth Century Collections Online: Science, Technology, and Medicine, 1780-1925 +http://lobid.org/organisations/ZDB-1-JCL#! ZDB-1-JCL ZDB-1-JCL JSTOR : E-Books in Classical Studies [FID-Lizenz] +http://lobid.org/organisations/ZDB-10-KFS#! ZDB-10-KFS ZDB-10-KFS Knovel Food Science +http://lobid.org/organisations/ZDB-10-SOE#! ZDB-10-SOE ZDB-10-SOE Knovel Software Engineering +http://lobid.org/organisations/ZDB-18-BBP#! ZDB-18-BBP ZDB-18-BBP beck-online / Privates Baurecht PREMIUM +http://lobid.org/organisations/ZDB-102-LLI#! ZDB-102-LLI ZDB-102-LLI Latino Literature +http://lobid.org/organisations/ZDB-55-BUS#! ZDB-55-BUS ZDB-55-BUS Emerald Business, Management & Strategy eJournal Collection +http://lobid.org/organisations/ZDB-100-CRS#! ZDB-100-CRS ZDB-100-CRS IET e-Books / Control, Robotics & Sensors +http://lobid.org/organisations/ZDB-95-BKS#! ZDB-95-BKS ZDB-95-BKS Brill / Book Sales Catalogues Online +http://lobid.org/organisations/ZDB-1-JSUE#! ZDB-1-JSUE ZDB-1-JSUE JSTOR : Sustainability Extension [Nationalkonsortium] +http://lobid.org/organisations/ZDB-117-BSK#! ZDB-117-BSK ZDB-117-BSK V&R eLibrary / Bausteine zur Slavischen Philologie und Kulturgeschichte +http://lobid.org/organisations/ZDB-117-VLW#! ZDB-117-VLW ZDB-117-VLW V&R eLibrary / Böhlau Literaturwissenschaften +http://lobid.org/organisations/ZDB-162-BLO#! ZDB-162-BLO ZDB-162-BLO Bloomsbury Open Access +http://lobid.org/organisations/ZDB-1-BBX#! ZDB-1-BBX ZDB-1-BBX Brill E-Books Benelux [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-R48#! ZDB-1-R48 ZDB-1-R48 Die 1848/49er Revolutionäre und ihre Einflüsse in den USA [Nationallizenz] +http://lobid.org/organisations/ZDB-18-BSB#! ZDB-18-BSB ZDB-18-BSB Beck eLibrary / SPH Allgemeine BWL +http://lobid.org/organisations/ZDB-18-BSI#! ZDB-18-BSI ZDB-18-BSI Beck eLibrary / SPH Investition und Finanzierung +http://lobid.org/organisations/ZDB-18-BSL#! ZDB-18-BSL ZDB-18-BSL Beck eLibrary / SPH Steuern - Lehrbuch +http://lobid.org/organisations/ZDB-162-THY#! ZDB-162-THY ZDB-162-THY Bloomsbury Collections / Theology +http://lobid.org/organisations/ZDB-213-MIA#! ZDB-213-MIA ZDB-213-MIA mitp / Anwendungen +http://lobid.org/organisations/ZDB-215-AGH#! ZDB-215-AGH ZDB-215-AGH Aisthesis / Georg Herwegh. Werke und Briefe. Kritische und kommentierte Gesamtausgabe +http://lobid.org/organisations/ZDB-23-HCO#! ZDB-23-HCO ZDB-23-HCO Harvard University Press e-dition / Complete eBook Package +http://lobid.org/organisations/ZDB-23-HMP#! ZDB-23-HMP ZDB-23-HMP Harvard University Press e-dition / Medicine eBook Package +http://lobid.org/organisations/ZDB-23-HRP#! ZDB-23-HRP ZDB-23-HRP Harvard University Press e-dition / Religion eBook Package +http://lobid.org/organisations/ZDB-23-HWH#! ZDB-23-HWH ZDB-23-HWH Harvard University Press e-dition / World History eBook Package +http://lobid.org/organisations/ZDB-187-JFR#! ZDB-187-JFR ZDB-187-JFR Junfermann / Ratgeber +http://lobid.org/organisations/ZDB-187-JCK#! ZDB-187-JCK ZDB-187-JCK Junfermann / Coaching & Kommunikation +http://lobid.org/organisations/ZDB-157-HAP#! ZDB-157-HAP ZDB-157-HAP Herder / Außenpolitik +http://lobid.org/organisations/ZDB-157-HTH#! ZDB-157-HTH ZDB-157-HTH Herder / Biblische & Historische Theologie +http://lobid.org/organisations/ZDB-157-HHO#! ZDB-157-HHO ZDB-157-HHO Herder / Hort Grundschule +http://lobid.org/organisations/ZDB-132-VDF#! ZDB-132-VDF ZDB-132-VDF Vogel Business Media / Digitale Fabrik +http://lobid.org/organisations/ZDB-142-WKC#! ZDB-142-WKC ZDB-142-WKC WBG / Kulturgeschichte +http://lobid.org/organisations/ZDB-6-PMU#! ZDB-6-PMU ZDB-6-PMU Project MUSE +http://lobid.org/organisations/ZDB-95-WFB#! ZDB-95-WFB ZDB-95-WFB Wilhelm Fink eBooks +http://lobid.org/organisations/ZDB-1-BCM#! ZDB-1-BCM ZDB-1-BCM BabelSCORES : contemporary music online [FID-Lizenz] +http://lobid.org/organisations/ZDB-220-VWE#! ZDB-220-VWE ZDB-220-VWE VVW E-Books +http://lobid.org/organisations/ZDB-221-PWD#! ZDB-221-PWD ZDB-221-PWD Packt Web Development +http://lobid.org/organisations/ZDB-222-WDB#! ZDB-222-WDB ZDB-222-WDB Waldkirch E-Books +http://lobid.org/organisations/ZDB-34-THR#! ZDB-34-THR ZDB-34-THR Thieme eRef / Radiologie +http://lobid.org/organisations/ZDB-230-EDE#! ZDB-230-EDE ZDB-230-EDE Edition Essentials E-Books +http://lobid.org/organisations/ZDB-1-SFE#! ZDB-1-SFE ZDB-1-SFE Sage FID Erziehungswissenschaft und Bildungsforschung [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OBA#! ZDB-1-OBA ZDB-1-OBA Oxford Bibliographies Anthropology [FID-Lizenz] +http://lobid.org/organisations/ZDB-235-SIL#! ZDB-235-SIL ZDB-235-SIL Silberburg E-Books +http://lobid.org/organisations/ZDB-238-KSM#! ZDB-238-KSM ZDB-238-KSM KOSMOS E-Books +http://lobid.org/organisations/ZDB-1-MRA#! ZDB-1-MRA ZDB-1-MRA Market research & American business, 1935-1965 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-18-SIP#! ZDB-18-SIP ZDB-18-SIP beck-online / Sicherheits- und Polizeirecht PLUS +http://lobid.org/organisations/ZDB-18-TPR#! ZDB-18-TPR ZDB-18-TPR beck-online / Transportrecht PLUS +http://lobid.org/organisations/ZDB-239-IPG#! ZDB-239-IPG ZDB-239-IPG International Press / Geometry, Topology, Analysis and Theoretical Physics Package +http://lobid.org/organisations/ZDB-241-REB#! ZDB-241-REB ZDB-241-REB Reclam E-Books +http://lobid.org/organisations/ZDB-1-JLT#! ZDB-1-JLT ZDB-1-JLT JSTOR : Lives of Literature Collection / Literary Theorists [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-JVEG#! ZDB-1-JVEG ZDB-1-JVEG JSTOR : Lives of Literature Collection / Victorian, Edwardian & Gothic Authors [Nationalkonsortium] +http://lobid.org/organisations/ZDB-236-CSF#! ZDB-236-CSF ZDB-236-CSF edition text+kritik / Basispaket Film +http://lobid.org/organisations/ZDB-1-BAL#! ZDB-1-BAL ZDB-1-BAL Belarus Anti-Fascist Resistance Leaflets 1942-1944 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-144-BBE#! ZDB-144-BBE ZDB-144-BBE BALANCE / Beruf & Erfahrungen +http://lobid.org/organisations/ZDB-219-DRF#! ZDB-219-DRF ZDB-219-DRF dpunkt.verlag / Reisen - Fotografie +http://lobid.org/organisations/ZDB-219-DIB#! ZDB-219-DIB ZDB-219-DIB dpunkt.verlag / IT & Business +http://lobid.org/organisations/ZDB-219-DIS#! ZDB-219-DIS ZDB-219-DIS dpunkt.verlag / Inspiration/Soft Skills - Fotografie +http://lobid.org/organisations/ZDB-244-SOS#! ZDB-244-SOS ZDB-244-SOS sorriso E-Books +http://lobid.org/organisations/ZDB-198-DUL#! ZDB-198-DUL ZDB-198-DUL Duke University Press / Latin American Studies e-book collection +http://lobid.org/organisations/ZDB-5-WVR#! ZDB-5-WVR ZDB-5-WVR wiso VVW Versicherungsrecht +http://lobid.org/organisations/ZDB-1-UBO#! ZDB-1-UBO ZDB-1-UBO Universitetskaja biblioteka ONLINE (UBO) [FID-Lizenz] +http://lobid.org/organisations/ZDB-7-RHP#! ZDB-7-RHP ZDB-7-RHP Routledge Handbooks Online / Psychology +http://lobid.org/organisations/ZDB-215-ALN#! ZDB-215-ALN ZDB-215-ALN Aisthesis / Literaturwissenschaften Novitäten +http://lobid.org/organisations/ZDB-215-APC#! ZDB-215-APC ZDB-215-APC Aisthesis / Psychotherapie +http://lobid.org/organisations/ZDB-162-AVC#! ZDB-162-AVC ZDB-162-AVC Bloomsbury Collections / Art & Visual Culture +http://lobid.org/organisations/ZDB-236-ETF#! ZDB-236-ETF ZDB-236-ETF edition text+kritik / Film und Musik +http://lobid.org/organisations/ZDB-197-MWE#! ZDB-197-MWE ZDB-197-MWE Mohr Siebeck / Max Weber Gesamtausgabe +http://lobid.org/organisations/ZDB-246-WVE#! ZDB-246-WVE ZDB-246-WVE Wochenschau Verlag E-Books +http://lobid.org/organisations/ZDB-138-AMX#! ZDB-138-AMX ZDB-138-AMX AMS ebooks / Mathematical World +http://lobid.org/organisations/ZDB-138-AMY#! ZDB-138-AMY ZDB-138-AMY AMS ebooks / A Comprehensive Course in Analysis +http://lobid.org/organisations/ZDB-18-RGE#! ZDB-18-RGE ZDB-18-RGE Beck eLibrary / C.H. Beck Rechtsgeschichte/Methodenlehre +http://lobid.org/organisations/ZDB-18-BWR#! ZDB-18-BWR ZDB-18-BWR Beck eLibrary / C.H. Beck Wirtschaftsrecht +http://lobid.org/organisations/ZDB-1-CJA#! ZDB-1-CJA ZDB-1-CJA Diaolong Full-text Database of Chinese & Japanese Ancient Books / Gesamtpaket [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAD#! ZDB-1-CJAD ZDB-1-CJAD Diaolong Full-text Database of Chinese & Japanese Ancient Books / Xu Sibu congkan [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAF#! ZDB-1-CJAF ZDB-1-CJAF Diaolong Full-text Database of Chinese & Japanese Ancient Books / Classical Works of Japan [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAJ#! ZDB-1-CJAJ ZDB-1-CJAJ Diaolong Full-text Database of Chinese & Japanese Ancient Books / Liufu wencang [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAM#! ZDB-1-CJAM ZDB-1-CJAM Diaolong Full-text Database of Chinese & Japanese Ancient Books / Xuxiu Siku quanshu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CJAN#! ZDB-1-CJAN ZDB-1-CJAN Diaolong Full-text Database of Chinese & Japanese Ancient Books / Qingdai shiliao [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ZAB#! ZDB-1-ZAB ZDB-1-ZAB Zhonghua Ancient Books Database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ETW#! ZDB-1-ETW ZDB-1-ETW Early Twentieth Century Book in China, 1912-1949 [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DIA#! ZDB-1-DIA ZDB-1-DIA Detail inspiration Archive [Nationallizenz] +http://lobid.org/organisations/ZDB-250-GMV#! ZDB-250-GMV ZDB-250-GMV Gmeiner-Verlag E-Books +http://lobid.org/organisations/ZDB-251-FVL#! ZDB-251-FVL ZDB-251-FVL frechverlag E-Books +http://lobid.org/organisations/ZDB-252-NRY#! ZDB-252-NRY ZDB-252-NRY Narayana Verlag E-Books +http://lobid.org/organisations/ZDB-255-ZEW#! ZDB-255-ZEW ZDB-255-ZEW ZEW E-Books +http://lobid.org/organisations/ZDB-1-RSL#! ZDB-1-RSL ZDB-1-RSL Royal Society London Journals [Nationalkonsortium] +http://lobid.org/organisations/ZDB-33-CKS#! ZDB-33-CKS ZDB-33-CKS ClinicalKey / Student +http://lobid.org/organisations/ZDB-162-CUH#! ZDB-162-CUH ZDB-162-CUH Bloomsbury Cultural History +http://lobid.org/organisations/ZDB-1-GP12#! ZDB-1-GP12 ZDB-1-GP12 Georgia Parliamentary Election 2012 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GP13#! ZDB-1-GP13 ZDB-1-GP13 Georgia Presidential Election 2013 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-KP15#! ZDB-1-KP15 ZDB-1-KP15 Kyrgyzstan Parliamentary Elections 2015 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-20-CLL#! ZDB-20-CLL ZDB-20-CLL Cambridge Books Online / Language and Linguistics +http://lobid.org/organisations/ZDB-20-CPA#! ZDB-20-CPA ZDB-20-CPA Cambridge Books Online / Physics and Astronomy +http://lobid.org/organisations/ZDB-20-CPI#! ZDB-20-CPI ZDB-20-CPI Cambridge Books Online / Politics and International Relations +http://lobid.org/organisations/ZDB-117-SKG#! ZDB-117-SKG ZDB-117-SKG V&R eLibrary / Sozial und Kulturgeschichte +http://lobid.org/organisations/ZDB-117-SGW#! ZDB-117-SGW ZDB-117-SGW V&R eLibrary / Böhlau Sozial- und Geisteswissenschaften +http://lobid.org/organisations/ZDB-117-RJS#! ZDB-117-RJS ZDB-117-RJS V&R eLibrary / Religionswissenschaft, Jüdische Studien +http://lobid.org/organisations/ZDB-28-VSM#! ZDB-28-VSM ZDB-28-VSM Very Short Introductions / Science and Mathematics +http://lobid.org/organisations/ZDB-18-NLW#! ZDB-18-NLW ZDB-18-NLW Nomos eLibrary / Studienliteratur Wirtschaft +http://lobid.org/organisations/ZDB-1-JVEGE#! ZDB-1-JVEGE ZDB-1-JVEGE JSTOR : Lives of Literature Extension / Victorian, Edwardian & Gothic Authors [Nationalkonsortium] +http://lobid.org/organisations/ZDB-28-VSI#! ZDB-28-VSI ZDB-28-VSI Very Short Introductions +http://lobid.org/organisations/ZDB-178-HEG#! ZDB-178-HEG ZDB-178-HEG hep E-Books +http://lobid.org/organisations/ZDB-105-MC12#! ZDB-105-MC12 ZDB-105-MC12 Morgan & Claypool: Computer & Information Science Collections / CIS collection twelve +http://lobid.org/organisations/ZDB-95-MIR#! ZDB-95-MIR ZDB-95-MIR Primary Sources / Art History / Military Architecture 1600-1900 +http://lobid.org/organisations/ZDB-18-NSRE#! ZDB-18-NSRE ZDB-18-NSRE Nomos eLibrary / Studienliteratur Referendariat +http://lobid.org/organisations/ZDB-213-MCF#! ZDB-213-MCF ZDB-213-MCF mitp / CAD, 3D & Fotografie +http://lobid.org/organisations/ZDB-171-LPM#! ZDB-171-LPM ZDB-171-LPM Logos / Pflege, Medizin +http://lobid.org/organisations/ZDB-201-MGF#! ZDB-201-MGF ZDB-201-MGF manchesterhive / Gesamt [E-Books] +http://lobid.org/organisations/ZDB-1-OIO#! ZDB-1-OIO ZDB-1-OIO Oxford International Organizations [FID-Lizenz] +http://lobid.org/organisations/ZDB-219-ONN#! ZDB-219-ONN ZDB-219-ONN O'Reilly / Neuheiten +http://lobid.org/organisations/ZDB-157-HGN#! ZDB-157-HGN ZDB-157-HGN Herder / Geschichte 1900 - 1945 +http://lobid.org/organisations/ZDB-157-HWP#! ZDB-157-HWP ZDB-157-HWP Herder / Wirtschaftspolitik +http://lobid.org/organisations/ZDB-157-HKR#! ZDB-157-HKR ZDB-157-HKR Herder / Kirchenreformen +http://lobid.org/organisations/ZDB-157-HFKG#! ZDB-157-HFKG ZDB-157-HFKG Herder / Fachwissen Kita Grundlagenwerke +http://lobid.org/organisations/ZDB-157-AID#! ZDB-157-AID ZDB-157-AID Verlag Karl Alber / Interdisziplinäre Philosophie +http://lobid.org/organisations/ZDB-157-AKR#! ZDB-157-AKR ZDB-157-AKR Verlag Karl Alber / Kulturphilosophie +http://lobid.org/organisations/ZDB-236-ETKA#! ZDB-236-ETKA ZDB-236-ETKA edition text+kritik / Hrsg.: Kinemathek Berlin, Akademie der Künste Berlin, HFF München +http://lobid.org/organisations/ZDB-236-ETSA#! ZDB-236-ETSA ZDB-236-ETSA edition text+kritik / Schreiben andernorts +http://lobid.org/organisations/ZDB-236-ETLP2#! ZDB-236-ETLP2 ZDB-236-ETLP2 edition text+kritik / Literatur Plus Periodika 2 +http://lobid.org/organisations/ZDB-236-ETLP5#! ZDB-236-ETLP5 ZDB-236-ETLP5 edition text+kritik / Literatur Plus Periodika 5 +http://lobid.org/organisations/ZDB-41-SLU#! ZDB-41-SLU ZDB-41-SLU scholars-e-library / Literaturwissenschaft übergreifend/ Backlist Athena +http://lobid.org/organisations/ZDB-18-BERP#! ZDB-18-BERP ZDB-18-BERP beck-online / Energierecht PREMIUM +http://lobid.org/organisations/ZDB-4-EPSC#! ZDB-4-EPSC ZDB-4-EPSC EBSCO Political Science Complete +http://lobid.org/organisations/ZDB-264-WAEB#! ZDB-264-WAEB ZDB-264-WAEB Wageningen Academic Publishers / eBooks +http://lobid.org/organisations/ZDB-2-SXEN#! ZDB-2-SXEN ZDB-2-SXEN Springer Nature / Energy (R0) +http://lobid.org/organisations/ZDB-2-SXBP#! ZDB-2-SXBP ZDB-2-SXBP Springer Nature / Behavioral Science and Psychology (R0) +http://lobid.org/organisations/ZDB-2-SXL#! ZDB-2-SXL ZDB-2-SXL Springer Nature / Literature, Cultural and Media Studies (R0) +http://lobid.org/organisations/ZDB-2-SXRC#! ZDB-2-SXRC ZDB-2-SXRC Springer Nature / Reference Module Computer Science and Engineering +http://lobid.org/organisations/ZDB-1-PNA#! ZDB-1-PNA ZDB-1-PNA Proceedings of the National Academy of Sciences [Nationalkonsortium] +http://lobid.org/organisations/ZDB-41-SSPB#! ZDB-41-SSPB ZDB-41-SSPB scholars-e-library / Schulpädagogik/ Backlist Athena +http://lobid.org/organisations/ZDB-88-ZDI#! ZDB-88-ZDI ZDB-88-ZDI juris Zusatzmodul Datenschutz und IT-Recht +http://lobid.org/organisations/ZDB-88-ZSV#! ZDB-88-ZSV ZDB-88-ZSV juris Zusatzmodul Staats- und Verfassungsrecht +http://lobid.org/organisations/ZDB-88-JPL#! ZDB-88-JPL ZDB-88-JPL juris PreLex +http://lobid.org/organisations/ZDB-1-FWW#! ZDB-1-FWW ZDB-1-FWW The @First World War [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-5-WJSE#! ZDB-5-WJSE ZDB-5-WJSE wiso Sage Journals Economy +http://lobid.org/organisations/ZDB-1-ECLL#! ZDB-1-ECLL ZDB-1-ECLL Encyclopedia of Chinese language and linguistics online [FID-Lizenz] +http://lobid.org/organisations/ZDB-34-TKPD#! ZDB-34-TKPD ZDB-34-TKPD Thieme Klinik Praxis / Dermatologie +http://lobid.org/organisations/ZDB-34-TKPI#! ZDB-34-TKPI ZDB-34-TKPI Thieme Klinik Praxis / Innere Medizin +http://lobid.org/organisations/ZDB-34-TKPN#! ZDB-34-TKPN ZDB-34-TKPN Thieme Klinik Praxis / Neurologie +http://lobid.org/organisations/ZDB-1-AAN2#! ZDB-1-AAN2 ZDB-1-AAN2 African American Newspapers : Series 2 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-272-BSE#! ZDB-272-BSE ZDB-272-BSE BuildingSMART Germany / E-Books +http://lobid.org/organisations/ZDB-275-AIPB#! ZDB-275-AIPB ZDB-275-AIPB AIP / Gesamt E-Books +http://lobid.org/organisations/ZDB-47-EPH#! ZDB-47-EPH ZDB-47-EPH Erich Schmidt Verlag E-Books / Philologie +http://lobid.org/organisations/ZDB-34-TSS#! ZDB-34-TSS ZDB-34-TSS Thieme / Science of Synthesis +http://lobid.org/organisations/ZDB-1-NAGP#! ZDB-1-NAGP ZDB-1-NAGP Nuclear Arms and Weapons of Mass Destruction: Global Perspectives, 1945-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-PAGP#! ZDB-1-PAGP ZDB-1-PAGP Pravda Archive: Global Perspectives, 1959-1996 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BGRP#! ZDB-18-BGRP ZDB-18-BGRP beck-online / Gewerblicher Rechtsschutz PREMIUM +http://lobid.org/organisations/ZDB-5-WPSE#! ZDB-5-WPSE ZDB-5-WPSE wiso Packt Softwareentwicklung & IT +http://lobid.org/organisations/ZDB-34-THSL#! ZDB-34-THSL ZDB-34-THSL Thieme E-Book Library / Studium & Lehre +http://lobid.org/organisations/ZDB-1-DOIA#! ZDB-1-DOIA ZDB-1-DOIA Donga Ilbo Archive [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EAR#! ZDB-1-EAR ZDB-1-EAR e-article [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKD#! ZDB-1-JAKD ZDB-1-JAKD JapanKnowledge / Kamakura ibun [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-JAKK#! ZDB-1-JAKK ZDB-1-JAKK JapanKnowledge / Bungei Kurabu [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNA#! ZDB-1-CNA ZDB-1-CNA CiNii articles [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-YOR#! ZDB-1-YOR ZDB-1-YOR Yomidasu rekishikan [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NITE#! ZDB-1-NITE ZDB-1-NITE Nikkei Telecom [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TKCL#! ZDB-1-TKCL ZDB-1-TKCL TKC Law Library [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-CNKF#! ZDB-1-CNKF ZDB-1-CNKF CNKI / China doctoral dissertations full-text database : CDFD [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-APAJ#! ZDB-1-APAJ ZDB-1-APAJ Apabi / China Republican Journals [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-NLWR#! ZDB-18-NLWR ZDB-18-NLWR Nomos eLibrary / Wirtschaftsrecht +http://lobid.org/organisations/ZDB-245-NWSF#! ZDB-245-NWSF ZDB-245-NWSF NWB Campus Library / Steuerrecht - Fallsammlungen +http://lobid.org/organisations/ZDB-41-SRW#! ZDB-41-SRW ZDB-41-SRW scholars-e-library / Religionswissenschaft +http://lobid.org/organisations/ZDB-41-SSTH#! ZDB-41-SSTH ZDB-41-SSTH scholars-e-library / Systematische Theologie +http://lobid.org/organisations/ZDB-33-CKB#! ZDB-33-CKB ZDB-33-CKB ClinicalKey / Student Foundation Medicine German Package +http://lobid.org/organisations/ZDB-18-BBRP#! ZDB-18-BBRP ZDB-18-BBRP beck-online / Beamtenrecht PLUS +http://lobid.org/organisations/ZDB-173-HSLSP#! ZDB-173-HSLSP ZDB-173-HSLSP Haufe Lexware / Steuern - Lehrbuch (Schäffer-Poeschel) +http://lobid.org/organisations/ZDB-277-FTF#! ZDB-277-FTF ZDB-277-FTF Frank & Timme / Aus Religion und Recht +http://lobid.org/organisations/ZDB-277-FTI#! ZDB-277-FTI ZDB-277-FTI Frank & Timme / Inklusion +http://lobid.org/organisations/ZDB-277-FTL#! ZDB-277-FTL ZDB-277-FTL Frank & Timme / Fachsprachenforschung +http://lobid.org/organisations/ZDB-277-FTU#! ZDB-277-FTU ZDB-277-FTU Frank & Timme / Medien- und Kommunikationswissenschaft +http://lobid.org/organisations/ZDB-84-KHBH#! ZDB-84-KHBH ZDB-84-KHBH Kohlhammer Biblische, historische und Systematische Fächer +http://lobid.org/organisations/ZDB-157-AEU#! ZDB-157-AEU ZDB-157-AEU Verlag Karl Alber / Einführungen & Übersichtswerke +http://lobid.org/organisations/ZDB-279-TBKG#! ZDB-279-TBKG ZDB-279-TBKG Traugott Bautz Verlag / Kulturgeschichte +http://lobid.org/organisations/ZDB-279-TBKW#! ZDB-279-TBKW ZDB-279-TBKW Traugott Bautz Verlag / Kulturwissenschaften +http://lobid.org/organisations/ZDB-279-TBLW#! ZDB-279-TBLW ZDB-279-TBLW Traugott Bautz Verlag / Literaturwissenschaften +http://lobid.org/organisations/ZDB-279-TBM#! ZDB-279-TBM ZDB-279-TBM Traugott Bautz Verlag / Musik +http://lobid.org/organisations/ZDB-279-TBN#! ZDB-279-TBN ZDB-279-TBN Traugott Bautz Verlag / Naturwissenschaft +http://lobid.org/organisations/ZDB-279-TBPA#! ZDB-279-TBPA ZDB-279-TBPA Traugott Bautz Verlag / Pädagogik +http://lobid.org/organisations/ZDB-279-TBPH#! ZDB-279-TBPH ZDB-279-TBPH Traugott Bautz Verlag / Philosophie +http://lobid.org/organisations/ZDB-279-TBT#! ZDB-279-TBT ZDB-279-TBT Traugott Bautz Verlag / Theologie +http://lobid.org/organisations/ZDB-142-WXE#! ZDB-142-WXE ZDB-142-WXE WBG / Basis Philosophie +http://lobid.org/organisations/ZDB-150-PGE#! ZDB-150-PGE ZDB-150-PGE Pearson / Global Editions +http://lobid.org/organisations/ZDB-278-ZUWL#! ZDB-278-ZUWL ZDB-278-ZUWL Zuckschwerdt Verlag / Wissen & Leben +http://lobid.org/organisations/ZDB-162-FPA#! ZDB-162-FPA ZDB-162-FPA Bloomsbury / Fashion Photography Archive +http://lobid.org/organisations/ZDB-277-FTV#! ZDB-277-FTV ZDB-277-FTV Frank & Timme / Musikwissenschaft, Tanzwissenschaft +http://lobid.org/organisations/ZDB-277-FTZB#! ZDB-277-FTZB ZDB-277-FTZB Frank & Timme / Religionspädagogik +http://lobid.org/organisations/ZDB-48-WKZZ#! ZDB-48-WKZZ ZDB-48-WKZZ Wolters Kluwer Online / Zivil- und Zivilprozessrecht +http://lobid.org/organisations/ZDB-1-VPC#! ZDB-1-VPC ZDB-1-VPC Victorian Popular Culture [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-1-ABCE#! ZDB-1-ABCE ZDB-1-ABCE African Books Collective E-Books [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-VLA#! ZDB-1-VLA ZDB-1-VLA vLex Latin America [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-RDC#! ZDB-1-RDC ZDB-1-RDC The Ricci dictionary of Chinese law online [FID-Lizenz] +http://lobid.org/organisations/ZDB-28-OLCA#! ZDB-28-OLCA ZDB-28-OLCA Oxford Legal Research Library / International Commercial Arbitration +http://lobid.org/organisations/ZDB-28-OLCL#! ZDB-28-OLCL ZDB-28-OLCL Oxford Legal Research Library / International Commercial Law +http://lobid.org/organisations/ZDB-28-OLRL#! ZDB-28-OLRL ZDB-28-OLRL Oxford Legal Research Library / Gesamt +http://lobid.org/organisations/ZDB-91-CABL#! ZDB-91-CABL ZDB-91-CABL CABI books / Leisure & Tourism +http://lobid.org/organisations/ZDB-33-MASC#! ZDB-33-MASC ZDB-33-MASC Elsevier e-book collection - Mathematical Sciences +http://lobid.org/organisations/ZDB-94-OAL#! ZDB-94-OAL ZDB-94-OAL OAPEN Library +http://lobid.org/organisations/ZDB-9-SCWS#! ZDB-9-SCWS ZDB-9-SCWS Scribner Writer Series +http://lobid.org/organisations/ZDB-41-SHG#! ZDB-41-SHG ZDB-41-SHG scholars-e-library / (Human-)Geographie +http://lobid.org/organisations/ZDB-41-SV1#! ZDB-41-SV1 ZDB-41-SV1 scholars-e-library / Bauen/ Planen/ Architektur / Backlist vdf +http://lobid.org/organisations/ZDB-41-SEK#! ZDB-41-SEK ZDB-41-SEK scholars-e-library / Ethnologie und Kulturanthropologie +http://lobid.org/organisations/ZDB-41-SV5#! ZDB-41-SV5 ZDB-41-SV5 scholars-e-library / Medizin und Pflege / Backlist vdf +http://lobid.org/organisations/ZDB-41-SV6#! ZDB-41-SV6 ZDB-41-SV6 scholars-e-library / Natur/ Technik / Backlist vdf +http://lobid.org/organisations/ZDB-41-SJ3#! ZDB-41-SJ3 ZDB-41-SJ3 scholars-e-library / Pädagogik (allg.) / Backlist Junfermann +http://lobid.org/organisations/ZDB-41-SPLB#! ZDB-41-SPLB ZDB-41-SPLB scholars-e-library / Pädagogik/ Lehrerbildung +http://lobid.org/organisations/ZDB-41-SPSB#! ZDB-41-SPSB ZDB-41-SPSB scholars-e-library / Pädagogik/ Sprachliche Bildung +http://lobid.org/organisations/ZDB-41-SV7#! ZDB-41-SV7 ZDB-41-SV7 scholars-e-library / Politikwissenschaft / Backlist vdf +http://lobid.org/organisations/ZDB-18-BGAP#! ZDB-18-BGAP ZDB-18-BGAP beck-online / GewArch PLUS +http://lobid.org/organisations/ZDB-1-OGO#! ZDB-1-OGO ZDB-1-OGO Ogonek digital archive [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-117-VOA#! ZDB-117-VOA ZDB-117-VOA V&R eLibrary / Open Access +http://lobid.org/organisations/ZDB-171-LSPW#! ZDB-171-LSPW ZDB-171-LSPW Logos / Sozial- und Politikwissenschaften +http://lobid.org/organisations/ZDB-277-FTZQ#! ZDB-277-FTZQ ZDB-277-FTZQ Frank & Timme / Sprachwissenschaft und DaF/ DaZ +http://lobid.org/organisations/ZDB-157-HID#! ZDB-157-HID ZDB-157-HID Herder / Interreligiöser Dialog +http://lobid.org/organisations/ZDB-157-HKS#! ZDB-157-HKS ZDB-157-HKS Herder / Krankheit und Resilienz +http://lobid.org/organisations/ZDB-157-HTB#! ZDB-157-HTB ZDB-157-HTB Herder / Theologie Backlist +http://lobid.org/organisations/ZDB-1-CSY#! ZDB-1-CSY ZDB-1-CSY China statistical yearbooks database [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EYD#! ZDB-1-EYD ZDB-1-EYD Erudition / Yongle dadian [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-OPCC#! ZDB-1-OPCC ZDB-1-OPCC Oriprobe / The database of Chinese People's Political Consultative Conference (CPPCC) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-DRP#! ZDB-1-DRP ZDB-1-DRP The @Current Digest of the Russian Press [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-285-RMB#! ZDB-285-RMB ZDB-285-RMB Rudolf Müller / Baurecht +http://lobid.org/organisations/ZDB-285-RMD#! ZDB-285-RMD ZDB-285-RMD Rudolf Müller / Brandschutz +http://lobid.org/organisations/ZDB-285-RME#! ZDB-285-RME ZDB-285-RME Rudolf Müller / Schadstoffe und Schäden +http://lobid.org/organisations/ZDB-286-AVG#! ZDB-286-AVG ZDB-286-AVG Aschendorff Verlag / Alte Geschichte +http://lobid.org/organisations/ZDB-286-AVH#! ZDB-286-AVH ZDB-286-AVH Aschendorff Verlag / Antike, Christentum 2 +http://lobid.org/organisations/ZDB-286-AVI#! ZDB-286-AVI ZDB-286-AVI Aschendorff Verlag / Antike, Christentum 1 +http://lobid.org/organisations/ZDB-286-AVJ#! ZDB-286-AVJ ZDB-286-AVJ Aschendorff Verlag / Reformationsgeschichte 1 +http://lobid.org/organisations/ZDB-286-AVK#! ZDB-286-AVK ZDB-286-AVK Aschendorff Verlag / Reformationsgeschichte 2 +http://lobid.org/organisations/ZDB-105-MC13#! ZDB-105-MC13 ZDB-105-MC13 Morgan & Claypool: Computer & Information Science Collections / CIS collection thirteen +http://lobid.org/organisations/ZDB-18-BBJR#! ZDB-18-BBJR ZDB-18-BBJR Beck eLibrary / C.H. Beck Jura Referendariat +http://lobid.org/organisations/ZDB-287-WOA#! ZDB-287-WOA ZDB-287-WOA wbv / Open Access +http://lobid.org/organisations/ZDB-1-NCT#! ZDB-1-NCT ZDB-1-NCT Nineteenth Century Collections Online: British Theatre, Music, and Literature: High and Popular Culture [FID-Lizenz] +http://lobid.org/organisations/ZDB-96-SDS#! ZDB-96-SDS ZDB-96-SDS Sage Research Methods / Datasets 1 +http://lobid.org/organisations/ZDB-245-NWSI#! ZDB-245-NWSI ZDB-245-NWSI NWB Steuern International +http://lobid.org/organisations/ZDB-245-NWIR#! ZDB-245-NWIR ZDB-245-NWIR NWB Internationale Rechnungslegung +http://lobid.org/organisations/ZDB-1-HBC#! ZDB-1-HBC ZDB-1-HBC Historical Book Catalogue of China [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-BDRC#! ZDB-1-BDRC ZDB-1-BDRC Buddhist Digital Resource Center (BDRC) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-GTJ#! ZDB-1-GTJ ZDB-1-GTJ Gujin tushu jicheng [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-WISE#! ZDB-1-WISE ZDB-1-WISE WiseSearch [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-HCCA#! ZDB-1-HCCA ZDB-1-HCCA History of Contemporary Chinese Political Movements [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-UNSC#! ZDB-1-UNSC ZDB-1-UNSC Unihan / Sibu congkan [FID-Lizenz] +http://lobid.org/organisations/ZDB-162-DOD#! ZDB-162-DOD ZDB-162-DOD Drama Online / Nick Hern Books Modern Plays +http://lobid.org/organisations/ZDB-162-DOG#! ZDB-162-DOG ZDB-162-DOG Drama Online / BBC Drama Films and Documentaries +http://lobid.org/organisations/ZDB-162-DOI#! ZDB-162-DOI ZDB-162-DOI Drama Online / Critical Studies and Performance Practice +http://lobid.org/organisations/ZDB-41-UBAB#! ZDB-41-UBAB ZDB-41-UBAB scholars-e-library / Kochen & Backen / Backlist Ulmer +http://lobid.org/organisations/ZDB-41-UNSB#! ZDB-41-UNSB ZDB-41-UNSB scholars-e-library / Naturschutz und Landschaftsplanung / Backlist Ulmer +http://lobid.org/organisations/ZDB-102-WAC#! ZDB-102-WAC ZDB-102-WAC The World of Archie Comics Archive +http://lobid.org/organisations/ZDB-291-LRG#! ZDB-291-LRG ZDB-291-LRG Reichert Media Library / Gesamt +http://lobid.org/organisations/ZDB-34-THMK#! ZDB-34-THMK ZDB-34-THMK Thieme eRef / Medizinstudium Klinik +http://lobid.org/organisations/ZDB-34-THW#! ZDB-34-THW ZDB-34-THW Houben-Weyl (Chemistry) +http://lobid.org/organisations/ZDB-91-CABT#! ZDB-91-CABT ZDB-91-CABT CABI Tourism Cases / Gesamt +http://lobid.org/organisations/ZDB-201-MLS#! ZDB-201-MLS ZDB-201-MLS Manchester Literature Studies +http://lobid.org/organisations/ZDB-168-MAAN#! ZDB-168-MAAN ZDB-168-MAAN Access Anesthesiology / EBooks +http://lobid.org/organisations/ZDB-136-SUO#! ZDB-136-SUO ZDB-136-SUO Suhrkamp / Soziologie und Ökonomie +http://lobid.org/organisations/ZDB-77-EEG#! ZDB-77-EEG ZDB-77-EEG Edward Elgar Ebook collection Geography, Planning and Tourism +http://lobid.org/organisations/ZDB-75-TOM#! ZDB-75-TOM ZDB-75-TOM Torrossa / EIO - Editoria Italiana Online / Monographs +http://lobid.org/organisations/ZDB-95-BEMH#! ZDB-95-BEMH ZDB-95-BEMH Brill / Early Modern History and Modern History E-Books Online +http://lobid.org/organisations/ZDB-1-EOJ#! ZDB-1-EOJ ZDB-1-EOJ Brill's Encyclopedia of Jainism Online [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-EOR#! ZDB-1-EOR ZDB-1-EOR Brill's Encyclopedia of the Religions of the Indigenous Peoples of South Asia [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-TRO#! ZDB-1-TRO ZDB-1-TRO Transatlantic Relations Online [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-162-HTM#! ZDB-162-HTM ZDB-162-HTM Bloomsbury History: Theory and Method +http://lobid.org/organisations/ZDB-34-TMO#! ZDB-34-TMO ZDB-34-TMO Thieme MedOne / Otolaryngology +http://lobid.org/organisations/ZDB-1-DHSA#! ZDB-1-DHSA ZDB-1-DHSA De Gruyter HSS- und Economic-Journals Konvolut A [Nationalkonsortium] +http://lobid.org/organisations/ZDB-34-TKPQ#! ZDB-34-TKPQ ZDB-34-TKPQ Thieme Klinik Praxis / Psychiatrie, Psychotherapie +http://lobid.org/organisations/ZDB-1-NPC#! ZDB-1-NPC ZDB-1-NPC National population census of China [FID-Lizenz] +http://lobid.org/organisations/ZDB-77-EHBM#! ZDB-77-EHBM ZDB-77-EHBM Edward Elgar / Business and Management Handbooks +http://lobid.org/organisations/ZDB-1-BPY#! ZDB-1-BPY ZDB-1-BPY Brill E-Book Collection Philosophy [FID-Lizenz] +http://lobid.org/organisations/ZDB-299-HHOA#! ZDB-299-HHOA ZDB-299-HHOA hhu.books Open Access +http://lobid.org/organisations/ZDB-48-WKGA#! ZDB-48-WKGA ZDB-48-WKGA Wolters Kluwer Grundausstattung +http://lobid.org/organisations/ZDB-98-IGD#! ZDB-98-IGD ZDB-98-IGD IGI Global / Diversity, Equity, and Inclusion e-Book Collection +http://lobid.org/organisations/ZDB-30-PKW#! ZDB-30-PKW ZDB-30-PKW ProQuest / Kafkas Werke im WWW +http://lobid.org/organisations/ZDB-114-LOA#! ZDB-114-LOA ZDB-114-LOA Peter Lang eBooks / Open Access +http://lobid.org/organisations/ZDB-20-CUOA#! ZDB-20-CUOA ZDB-20-CUOA Cambridge University Press / Open Access +http://lobid.org/organisations/ZDB-1-AUN#! ZDB-1-AUN ZDB-1-AUN Amsterdam University Press Zeitschriftenpaket [Nationallizenz] +http://lobid.org/organisations/ZDB-303-BVKA#! ZDB-303-BVKA ZDB-303-BVKA Bildner Verlag / Kamera +http://lobid.org/organisations/ZDB-157-HTE#! ZDB-157-HTE ZDB-157-HTE Herder / Theologische Ethik +http://lobid.org/organisations/ZDB-157-HDGP#! ZDB-157-HDGP ZDB-157-HDGP Herder / Deutsche Gesellschaft und Politik +http://lobid.org/organisations/ZDB-157-HWQ#! ZDB-157-HWQ ZDB-157-HWQ Herder / Weltpolitik +http://lobid.org/organisations/ZDB-261-BFSK#! ZDB-261-BFSK ZDB-261-BFSK BMU Verlag / Business, Finanzen und StartUp Kultur +http://lobid.org/organisations/ZDB-155-COA#! ZDB-155-COA ZDB-155-COA Cuvillier Verlag / Open Access +http://lobid.org/organisations/ZDB-114-LEC#! ZDB-114-LEC ZDB-114-LEC Peter Lang eBooks / English Collection +http://lobid.org/organisations/ZDB-304-GMF#! ZDB-304-GMF ZDB-304-GMF GABAL / Management & Führung +http://lobid.org/organisations/ZDB-304-GBL#! ZDB-304-GBL ZDB-304-GBL GABAL / Besser leben +http://lobid.org/organisations/ZDB-1-PUW#! ZDB-1-PUW ZDB-1-PUW Publishers Weekly Digital Archive [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-307-UVG#! ZDB-307-UVG ZDB-307-UVG Unrast Verlag / Genderlabyrinth, Feminismus +http://lobid.org/organisations/ZDB-277-FTZV#! ZDB-277-FTZV ZDB-277-FTZV Frank & Timme / Psychologie +http://lobid.org/organisations/ZDB-186-WTC#! ZDB-186-WTC ZDB-186-WTC WTM-Verlag / Schriften zur Hochschuldidaktik Mathematik +http://lobid.org/organisations/ZDB-208-JLA#! ZDB-208-JLA ZDB-208-JLA Jewish Life in America, c1654-1954 +http://lobid.org/organisations/ZDB-208-FOM#! ZDB-208-FOM ZDB-208-FOM Adam Matthew Digital / Foreign Office Files for the Middle East, 1971-1981 +http://lobid.org/organisations/ZDB-208-ASA#! ZDB-208-ASA ZDB-208-ASA Adam Matthew Digital / Apartheid South Africa 1948-1980 +http://lobid.org/organisations/ZDB-311-SFX#! ZDB-311-SFX ZDB-311-SFX Coherent Digital / Secret Files from World Wars to Cold War +http://lobid.org/organisations/ZDB-41-WNB#! ZDB-41-WNB ZDB-41-WNB scholars-e-library / Weinbau +http://lobid.org/organisations/ZDB-41-SN1#! ZDB-41-SN1 ZDB-41-SN1 scholars-e-library / Germanistik / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN8#! ZDB-41-SN8 ZDB-41-SN8 scholars-e-library / Religion, Theologie, Kirchengeschichte / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN10#! ZDB-41-SN10 ZDB-41-SN10 scholars-e-library / Romanistik, Hispanistik, Slavistik / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN11#! ZDB-41-SN11 ZDB-41-SN11 scholars-e-library / Schlüsselkompetenzen / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN12#! ZDB-41-SN12 ZDB-41-SN12 scholars-e-library / Sprachwissenschaft allg., Anglistik / Backlist Narr +http://lobid.org/organisations/ZDB-41-SN13#! ZDB-41-SN13 ZDB-41-SN13 scholars-e-library / Sprachwissenschaft, Spracherwerb / Backlist Narr +http://lobid.org/organisations/ZDB-41-SU3#! ZDB-41-SU3 ZDB-41-SU3 scholars-e-library / Schlüsselkompetenzen / Backlist UVK +http://lobid.org/organisations/ZDB-41-SU5#! ZDB-41-SU5 ZDB-41-SU5 scholars-e-library / Tourismus / Backlist UVK +http://lobid.org/organisations/ZDB-41-SU6#! ZDB-41-SU6 ZDB-41-SU6 scholars-e-library / Wirtschaft / Backlist UVK +http://lobid.org/organisations/ZDB-41-SET1#! ZDB-41-SET1 ZDB-41-SET1 scholars-e-library / Bauen, Planen, Architektur / Backlist expert +http://lobid.org/organisations/ZDB-41-SA1#! ZDB-41-SA1 ZDB-41-SA1 scholars-e-library / Germanistik / Backlist Aisthesis +http://lobid.org/organisations/ZDB-41-SA2#! ZDB-41-SA2 ZDB-41-SA2 scholars-e-library / Geschichte / Backlist Aisthesis +http://lobid.org/organisations/ZDB-95-SEGO#! ZDB-95-SEGO ZDB-95-SEGO Brill / Supplementum Epigraphicum Graecum Online +http://lobid.org/organisations/ZDB-95-FJO#! ZDB-95-FJO ZDB-95-FJO Brill / Flavius Josephus Online +http://lobid.org/organisations/ZDB-95-DSB#! ZDB-95-DSB ZDB-95-DSB Brill / Dead Sea Scrolls Electronic Library Biblical Texts +http://lobid.org/organisations/ZDB-1-CMW3#! ZDB-1-CMW3 ZDB-1-CMW3 China and the Modern World, Part 3: Diplomacy and political secrets (1869-1950) [FID-Lizenz] +http://lobid.org/organisations/ZDB-1-NCA#! ZDB-1-NCA ZDB-1-NCA Nineteenth Century Collections Online: Asia and the West: Diplomacy and Cultural Exchange [FID-Lizenz] +http://lobid.org/organisations/ZDB-95-CEM1#! ZDB-95-CEM1 ZDB-95-CEM1 Brill's Companions to Early Modern and Modern History Online I +http://lobid.org/organisations/ZDB-102-THV1#! ZDB-102-THV1 ZDB-102-THV1 Theatre in Video: Volume 1 +http://lobid.org/organisations/ZDB-95-BAT#! ZDB-95-BAT ZDB-95-BAT Brill / All Brill Titles +http://lobid.org/organisations/ZDB-211-BROA#! ZDB-211-BROA ZDB-211-BROA BrepolsOnline / Open Access E-Books +http://lobid.org/organisations/ZDB-28-OOA#! ZDB-28-OOA ZDB-28-OOA Oxford Academic / Open Access +http://lobid.org/organisations/ZDB-1-CAPA#! ZDB-1-CAPA ZDB-1-CAPA Central Asia, Persia and Afghanistan 1834-1922 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-33-FRN#! ZDB-33-FRN ZDB-33-FRN SSRN / Financial Planning Research Network (FinPlanRN) +http://lobid.org/organisations/ZDB-1-SZK#! ZDB-1-SZK ZDB-1-SZK Shintei zōho kokushi taikei [FID-Lizenz] +http://lobid.org/organisations/ZDB-18-BSTP#! ZDB-18-BSTP ZDB-18-BSTP beck-online / Strafrecht PREMIUM +http://lobid.org/organisations/ZDB-316-BISC#! ZDB-316-BISC ZDB-316-BISC BiblioScout +http://lobid.org/organisations/ZDB-317-EUL#! ZDB-317-EUL ZDB-317-EUL Verlag Europa-Lehrmittel +http://lobid.org/organisations/ZDB-208-LPRC#! ZDB-208-LPRC ZDB-208-LPRC Literary Print Culture +http://lobid.org/organisations/ZDB-20-CCSC#! ZDB-20-CCSC ZDB-20-CCSC Cambridge Books Online / Computer Science +http://lobid.org/organisations/ZDB-18-NOLN#! ZDB-18-NOLN ZDB-18-NOLN Nomos eLibrary / Nomos only +http://lobid.org/organisations/ZDB-18-NOLP#! ZDB-18-NOLP ZDB-18-NOLP Nomos eLibrary / Partner only +http://lobid.org/organisations/ZDB-18-NIRN#! ZDB-18-NIRN ZDB-18-NIRN Nomos eLibrary / Internationales Recht, Völkerrecht / Nomos only +http://lobid.org/organisations/ZDB-18-NPHN#! ZDB-18-NPHN ZDB-18-NPHN Nomos eLibrary / Philosophie / Nomos only +http://lobid.org/organisations/ZDB-18-NREN#! ZDB-18-NREN ZDB-18-NREN Nomos eLibrary / Religion / Nomos only +http://lobid.org/organisations/ZDB-18-NPAP#! ZDB-18-NPAP ZDB-18-NPAP Nomos eLibrary / Pädagogik / Partner only +http://lobid.org/organisations/ZDB-18-NLMN#! ZDB-18-NLMN ZDB-18-NLMN Nomos eLibrary / Musikwissenschaft / Nomos only +http://lobid.org/organisations/ZDB-138-AMSM#! ZDB-138-AMSM ZDB-138-AMSM AMS Non-Series Monographs +http://lobid.org/organisations/ZDB-1-EJH#! ZDB-1-EJH ZDB-1-EJH Encyclopedia of Jewish history and culture online [FID-Lizenz] +http://lobid.org/organisations/ZDB-33-ECBE#! ZDB-33-ECBE ZDB-33-ECBE Elsevier e-book collection - Biomedical Engineering +http://lobid.org/organisations/ZDB-18-NLWRP#! ZDB-18-NLWRP ZDB-18-NLWRP Nomos eLibrary / Wirtschaftsrecht / Partner only +http://lobid.org/organisations/ZDB-18-NLARN#! ZDB-18-NLARN ZDB-18-NLARN Nomos eLibrary / Arbeitsrecht / Nomos only +http://lobid.org/organisations/ZDB-18-NLKWN#! ZDB-18-NLKWN ZDB-18-NLKWN Nomos eLibrary / Kunstwissenschaft, -geschichte / Nomos only +http://lobid.org/organisations/ZDB-1-SAGK6#! ZDB-1-SAGK6 ZDB-1-SAGK6 Sage Journals Online Publish & Read / Premier / Upgrade für 2023 [Nationalkonsortium] +http://lobid.org/organisations/ZDB-221-PCR#! ZDB-221-PCR ZDB-221-PCR Packt Security +http://lobid.org/organisations/ZDB-1-JLAM#! ZDB-1-JLAM ZDB-1-JLAM Jewish Life in America, c1654-1954 [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-95-BHA#! ZDB-95-BHA ZDB-95-BHA Brill / The Hague Academy Collected Courses Online / Recueil des cours de l'Académie de La Haye en ligne +http://lobid.org/organisations/ZDB-28-OSEH#! ZDB-28-OSEH ZDB-28-OSEH Oxford Scholarly Editions Online / Herodotus +http://lobid.org/organisations/ZDB-316-BSCP#! ZDB-316-BSCP ZDB-316-BSCP BiblioScout / Pharmazielehrbücher +http://lobid.org/organisations/ZDB-322-HEI#! ZDB-322-HEI ZDB-322-HEI Hüthig Elektroinstallation +http://lobid.org/organisations/ZDB-43-FJA#! ZDB-43-FJA ZDB-43-FJA Flugschriften des 17. Jahrhunderts in der Staats- und Stadtbibliothek Augsburg +http://lobid.org/organisations/ZDB-41-MKB#! ZDB-41-MKB ZDB-41-MKB scholars-e-library / Medien & Kommunikation / Backlist ibidem +http://lobid.org/organisations/ZDB-41-PHB#! ZDB-41-PHB ZDB-41-PHB scholars-e-library / Philosophie / Backlist ibidem +http://lobid.org/organisations/ZDB-150-PSTP#! ZDB-150-PSTP ZDB-150-PSTP Pearson / Studium / Psychologie +http://lobid.org/organisations/ZDB-18-BEUR#! ZDB-18-BEUR ZDB-18-BEUR beck-online / Europarecht PLUS +http://lobid.org/organisations/ZDB-18-BOEP#! ZDB-18-BOEP ZDB-18-BOEP beck-online / Öffentliches Baurecht PREMIUM +http://lobid.org/organisations/ZDB-323-ACSY#! ZDB-323-ACSY ZDB-323-ACSY American Chemical Society / Symposium Series +http://lobid.org/organisations/ZDB-323-ACSA#! ZDB-323-ACSA ZDB-323-ACSA American Chemical Society / Advances in Chemistry +http://lobid.org/organisations/ZDB-18-BOK#! ZDB-18-BOK ZDB-18-BOK beck-online / KiJuP-online +http://lobid.org/organisations/ZDB-1-WPJ#! ZDB-1-WPJ ZDB-1-WPJ Warsaw Pact Journal Digital Archive (DA-WPJ) [Nationallizenz / FID-Lizenz] +http://lobid.org/organisations/ZDB-296-ACSJ#! ZDB-296-ACSJ ZDB-296-ACSJ ACS Journals Read & Publish [Niedersachsen-Konsortium], American Chemical Society +http://lobid.org/organisations/ZDB-175-V17#! ZDB-175-V17 ZDB-175-V17 Digitale Sammlungen der Universitätsbibliothek Leipzig / VD17 [Open Access] +http://lobid.org/organisations/ZDB-1-NLBR#! ZDB-1-NLBR ZDB-1-NLBR Nomos eLibrary / Bürgerliches Recht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-307-UVP#! ZDB-307-UVP ZDB-307-UVP Unrast Verlag / Politik & Gesellschaft +http://lobid.org/organisations/ZDB-236-EIF#! ZDB-236-EIF ZDB-236-EIF edition text+kritik / Basispaket Internationale Filmgeschichte +http://lobid.org/organisations/ZDB-136-WHM#! ZDB-136-WHM ZDB-136-WHM Suhrkamp / Werkausgabe Heiner Müller +http://lobid.org/organisations/ZDB-2-SXEU#! ZDB-2-SXEU ZDB-2-SXEU Springer Nature / Reference Module Education +http://lobid.org/organisations/ZDB-1-NPS#! ZDB-1-NPS ZDB-1-NPS Nomos eLibrary / Politikwissenschaft, Soziologie [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-56-HKB#! ZDB-56-HKB ZDB-56-HKB Digitale Ausgaben historischer Kinderbuchsammlungen [Open Access] +http://lobid.org/organisations/ZDB-56-FNM#! ZDB-56-FNM ZDB-56-FNM Porträtsammlung Friedrich Nicolas Manskopf [Open Access] +http://lobid.org/organisations/ZDB-1-NOR#! ZDB-1-NOR ZDB-1-NOR Nomos eLibrary / Europarecht 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-84-KHW#! ZDB-84-KHW ZDB-84-KHW Kohlhammer eLibrary Wirtschaftswissenschaften +http://lobid.org/organisations/ZDB-1-NLM#! ZDB-1-NLM ZDB-1-NLM Nomos eLibrary / Musikwissenschaft 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-95-PSM#! ZDB-95-PSM ZDB-95-PSM Primary Sources / U.S. intelligence on the Middle East, 1945 - 2009 +http://lobid.org/organisations/ZDB-119-KPL#! ZDB-119-KPL ZDB-119-KPL Knowledge Unlatched / Peter Lang IT Law [Open Access] +http://lobid.org/organisations/ZDB-84-KELR#! ZDB-84-KELR ZDB-84-KELR Kohlhammer eLibrary Religionswissenschaft +http://lobid.org/organisations/ZDB-1-NSTZ#! ZDB-1-NSTZ ZDB-1-NSTZ Nomos eLibrary / Sozialwirtschaft und Soziale Arbeit [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-1-HDB#! ZDB-1-HDB ZDB-1-HDB Hemeroteca digital de la Biblioteca Nacional de Colombia [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-119-KSO#! ZDB-119-KSO ZDB-119-KSO Knowledge Unlatched / Sociology [Open Access] +http://lobid.org/organisations/ZDB-183-OEB#! ZDB-183-OEB ZDB-183-OEB OpenEdition books [Open Access] +http://lobid.org/organisations/ZDB-84-KOW#! ZDB-84-KOW ZDB-84-KOW Kohlhammer eLibrary Pädagogik bis 2018 +http://lobid.org/organisations/ZDB-119-KTO#! ZDB-119-KTO ZDB-119-KTO Knowledge Unlatched / transcript OPEN library Politikwissenschaft [Open Access] +http://lobid.org/organisations/ZDB-184-ITO#! ZDB-184-ITO ZDB-184-ITO InTechOpen [Open Access] +http://lobid.org/organisations/ZDB-236-EFK#! ZDB-236-EFK ZDB-236-EFK edition text+kritik / Basispaket Film und Kultur +http://lobid.org/organisations/ZDB-167-VDM#! ZDB-167-VDM ZDB-167-VDM VD18 Digitalisate der Universitätsbibliothek Mainz [Open Access] +http://lobid.org/organisations/ZDB-56-MHF#! ZDB-56-MHF ZDB-56-MHF Manuscripta Hebraica Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-56-LVP#! ZDB-56-LVP ZDB-56-LVP Landschafts- und Pflanzenbilder der Louise von Panhuys [Open Access] +http://lobid.org/organisations/ZDB-175-KBP#! ZDB-175-KBP ZDB-175-KBP Digitale Sammlungen der Universitätsbibliothek Leipzig / Kirchenbibliothek Pegau [Open Access] +http://lobid.org/organisations/ZDB-2-SXMH#! ZDB-2-SXMH ZDB-2-SXMH Springer Nature / Reference Module Humanities +http://lobid.org/organisations/ZDB-56-FDD#! ZDB-56-FDD ZDB-56-FDD Sammlung Deutscher Drucke 1801-1870 (Segment UB Frankfurt) [Open Access] +http://lobid.org/organisations/ZDB-320-LLM#! ZDB-320-LLM ZDB-320-LLM LLMC Digital +http://lobid.org/organisations/ZDB-119-KURA#! ZDB-119-KURA ZDB-119-KURA Knowledge Unlatched / Routledge African Studies [Open Access] +http://lobid.org/organisations/ZDB-84-KRV#! ZDB-84-KRV ZDB-84-KRV Kohlhammer eLibrary Recht/Verwaltung +http://lobid.org/organisations/ZDB-1-NPPZ#! ZDB-1-NPPZ ZDB-1-NPPZ Nomos eLibrary / Psychologie, Psychotherapie [E-Journals] [Nationalkonsortium] +http://lobid.org/organisations/ZDB-198-DUE#! ZDB-198-DUE ZDB-198-DUE Duke University Press / e-book collection [Open Access ] +http://lobid.org/organisations/ZDB-84-KHB#! ZDB-84-KHB ZDB-84-KHB Kohlhammer elibrary Geschichte +http://lobid.org/organisations/ZDB-56-GPT#! ZDB-56-GPT ZDB-56-GPT Georg Philipp Telemann : Kantatenhandschriften in der Universitätsbibliothek Frankfurt/Main [Open Access] +http://lobid.org/organisations/ZDB-56-OHF#! ZDB-56-OHF ZDB-56-OHF Orientalische Handschriften Frankfurt [Open Access] +http://lobid.org/organisations/ZDB-34-TVC#! ZDB-34-TVC ZDB-34-TVC Thieme / VetCenter +http://lobid.org/organisations/ZDB-277-FTPG#! ZDB-277-FTPG ZDB-277-FTPG Frank & Timme / Pädagogik +http://lobid.org/organisations/ZDB-56-FLM#! ZDB-56-FLM ZDB-56-FLM Librettosammlung Friedrich Nicolas Manskopf [Open Access] +http://lobid.org/organisations/ZDB-1-NSB#! ZDB-1-NSB ZDB-1-NSB Nomos eLibrary / Sportwissenschaft 2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-1-BND#! ZDB-1-BND ZDB-1-BND Biblioteca Nacional Digital Periódicos [FID-Lizenz / Open Access] +http://lobid.org/organisations/ZDB-119-KFC#! ZDB-119-KFC ZDB-119-KFC Knowledge Unlatched / Climate Change [Open Access] +http://lobid.org/organisations/ZDB-23-MOA#! ZDB-23-MOA ZDB-23-MOA De Gruyter Open-Access-E-Books Millennium-Studien [Open Access] +http://lobid.org/organisations/ZDB-119-KMP#! ZDB-119-KMP ZDB-119-KMP Knowledge Unlatched / Politics [Open Access] +http://lobid.org/organisations/ZDB-175-LKSI#! ZDB-175-LKSI ZDB-175-LKSI Digitale Sammlungen der Universitätsbibliothek Leipzig / Bibliothek des Karl-Sudhoff-Instituts [Open Access] +http://lobid.org/organisations/ZDB-1-NOM#! ZDB-1-NOM ZDB-1-NOM Nomos eLibrary / Medien- und Kommunikationswissenschaft 2017-2020 [Ebooks] [DFG-geförderte Allianz-Lizenz] +http://lobid.org/organisations/ZDB-119-KCL#! ZDB-119-KCL ZDB-119-KCL Knowledge Unlatched / Classics [Open Access] +http://lobid.org/organisations/DE-MUS-862719#! DE-MUS-862719 Karasek-Museum +http://lobid.org/organisations/DE-MUS-863316#! DE-MUS-863316 Drachenhöhle Syrau +http://lobid.org/organisations/DE-MUS-864215#! DE-MUS-864215 Stadt- und Dampfmaschinenmuseum Werdau +http://lobid.org/organisations/DE-MUS-864413#! DE-MUS-864413 Museum ""Alte Dorfschule"" +http://lobid.org/organisations/DE-MUS-866419#! DE-MUS-866419 Schloßmuseum +http://lobid.org/organisations/DE-MUS-867818#! DE-MUS-867818 Museum der Thüringischen Rhön +http://lobid.org/organisations/DE-MUS-867912#! DE-MUS-867912 Dornburger Schlösser +http://lobid.org/organisations/DE-MUS-869512#! DE-MUS-869512 Stadtmuseum Erfurt +http://lobid.org/organisations/DE-MUS-869710#! DE-MUS-869710 Naturkundemuseum Erfurt +http://lobid.org/organisations/DE-MUS-870215#! DE-MUS-870215 Heimatmuseum Finsterbergen +http://lobid.org/organisations/DE-MUS-870913#! DE-MUS-870913 Stadtmuseum Gera +http://lobid.org/organisations/DE-MUS-872513#! DE-MUS-872513 Stadtmuseum Hildburghausen +http://lobid.org/organisations/DE-MUS-873214#! DE-MUS-873214 Friedrich-Schiller-Universität / Goethe-Gedenkstätte Jena +http://lobid.org/organisations/DE-MUS-873912#! DE-MUS-873912 Wasserburg Kapellendorf +http://lobid.org/organisations/DE-MUS-874019#! DE-MUS-874019 Hennebergisches Museum Kloster Veßra +http://lobid.org/organisations/DE-MUS-874217#! DE-MUS-874217 Museum für Glaskunst Lauscha +http://lobid.org/organisations/DE-MUS-874415#! DE-MUS-874415 Meininger Museen / Schloß Elisabethenburg +http://lobid.org/organisations/DE-MUS-875012#! DE-MUS-875012 KZ-Gedenkstätte ""Mittelbau-Dora"" +http://lobid.org/organisations/DE-MUS-876015#! DE-MUS-876015 Ruhlaer Orts- und Tabakpfeifen Museum +http://lobid.org/organisations/DE-MUS-876411#! DE-MUS-876411 Naturhistorisches Museum Schloß Bertholdsburg +http://lobid.org/organisations/DE-MUS-877810#! DE-MUS-877810 Sandstein und Märchenhöhle Walldorf +http://lobid.org/organisations/DE-MUS-878417#! DE-MUS-878417 Stadtmuseum Weimar +http://lobid.org/organisations/DE-MUS-880113#! DE-MUS-880113 Klassik Stiftung Weimar / Schloß Tiefurt +http://lobid.org/organisations/DE-MUS-880311#! DE-MUS-880311 Technisches Schaudenkmal Gießerei Heinrichshütte +http://lobid.org/organisations/DE-MUS-880415#! DE-MUS-880415 Museum in der Beschussanstalt +http://lobid.org/organisations/DE-MUS-881616#! DE-MUS-881616 Heimatmuseum Dommitzsch +http://lobid.org/organisations/DE-MUS-882119#! DE-MUS-882119 Geowissenschaftliche Sammlungen - Werner-Bau +http://lobid.org/organisations/DE-MUS-882515#! DE-MUS-882515 Feuerwehrmuseum Grethen +http://lobid.org/organisations/DE-MUS-883112#! DE-MUS-883112 Steinarbeiterhaus Hohburg +http://lobid.org/organisations/DE-MUS-885712#! DE-MUS-885712 Städtische Museen Zittau und Museum für Naturkunde des Zittauer Landes 'Dr.-Curt-Heinke' +http://lobid.org/organisations/DE-MUS-885816#! DE-MUS-885816 Serpentinsteinmuseum Zöblitz +http://lobid.org/organisations/DE-MUS-886413#! DE-MUS-886413 Stadtmuseum Kröpelin und Ostrockmuseum Kröpelin +http://lobid.org/organisations/DE-MUS-887010#! DE-MUS-887010 Hans-Fallada-Museum Carwitz +http://lobid.org/organisations/DE-MUS-887510#! DE-MUS-887510 Heimatmuseum Altenbrak +http://lobid.org/organisations/DE-MUS-888419#! DE-MUS-888419 Heimatstube Harzgerode +http://lobid.org/organisations/DE-MUS-889214#! DE-MUS-889214 Freilichtmuseum Königspfalz Tilleda +http://lobid.org/organisations/DE-MUS-890115#! DE-MUS-890115 Museum im Steintor +http://lobid.org/organisations/DE-MUS-892111#! DE-MUS-892111 Kurt Tucholsky Literaturmuseum +http://lobid.org/organisations/DE-MUS-892819#! DE-MUS-892819 Stasimuseum Berlin - Gedenkstätte Normannenstraße +http://lobid.org/organisations/DE-MUS-896519#! DE-MUS-896519 Volkskundemuseum ""Thüringer Bauernhäuser"" +http://lobid.org/organisations/DE-MUS-897512#! DE-MUS-897512 Heimatstube Dreetz +http://lobid.org/organisations/DE-MUS-900816#! DE-MUS-900816 Kunstspeicher an der B167 +http://lobid.org/organisations/DE-MUS-901111#! DE-MUS-901111 Märkisches Ziegeleimuseum Glindow +http://lobid.org/organisations/DE-MUS-903419#! DE-MUS-903419 Stadtmuseum Burgstädt +http://lobid.org/organisations/DE-MUS-905613#! DE-MUS-905613 Milch- und Reklamemuseum +http://lobid.org/organisations/DE-MUS-906418#! DE-MUS-906418 Deutsches Museum Bonn +http://lobid.org/organisations/DE-MUS-906616#! DE-MUS-906616 Inselmuseum Pellworm +http://lobid.org/organisations/DE-MUS-906710#! DE-MUS-906710 Glanz des Barock - Sammlung Ludwig in Bamberg +http://lobid.org/organisations/DE-MUS-907619#! DE-MUS-907619 Museum im Steinhaus-Schwäbisches Schnapsmuseum +http://lobid.org/organisations/DE-MUS-908810#! DE-MUS-908810 Handwerker- und Heimatstube Gernsbach +http://lobid.org/organisations/DE-MUS-909615#! DE-MUS-909615 Lohrbacher Heimatstube +http://lobid.org/organisations/DE-MUS-909719#! DE-MUS-909719 Städtisches Museum Munderkingen +http://lobid.org/organisations/DE-MUS-910318#! DE-MUS-910318 Haus Bühler - Kunst und Geschichte in Schömberg +http://lobid.org/organisations/DE-MUS-910516#! DE-MUS-910516 Heimatmuseum Umkirch +http://lobid.org/organisations/DE-MUS-910610#! DE-MUS-910610 Kalkofenmuseum +http://lobid.org/organisations/DE-MUS-910714#! DE-MUS-910714 Museum am Widumhof+mit Museum Farrenstall +http://lobid.org/organisations/DE-MUS-911019#! DE-MUS-911019 Villa Otto Flath +http://lobid.org/organisations/DE-MUS-911113#! DE-MUS-911113 Computerspielemuseum +http://lobid.org/organisations/DE-MUS-911915#! DE-MUS-911915 Museum-Altomünster +http://lobid.org/organisations/DE-MUS-912314#! DE-MUS-912314 Museum für Grenzgänger +http://lobid.org/organisations/DE-MUS-913015#! DE-MUS-913015 Fischinger Skimuseum +http://lobid.org/organisations/DE-MUS-913515#! DE-MUS-913515 Schwarzwälder Ski-Museum +http://lobid.org/organisations/DE-MUS-914414#! DE-MUS-914414 Dorfschulmuseum Ködnitz +http://lobid.org/organisations/DE-MUS-915511#! DE-MUS-915511 Orgelbaumuseum Schloss Hanstein e.V. +http://lobid.org/organisations/DE-MUS-916212#! DE-MUS-916212 Porzellanikon Selb +http://lobid.org/organisations/DE-MUS-917913#! DE-MUS-917913 Tischlereimuseum +http://lobid.org/organisations/DE-MUS-918114#! DE-MUS-918114 Stadtmuseum Breuberg +http://lobid.org/organisations/DE-MUS-918510#! DE-MUS-918510 SK Stiftung Kultur Die Photographische Sammlung - August Sander Archiv +http://lobid.org/organisations/DE-MUS-919013#! DE-MUS-919013 Spielzeugmuseum Trier +http://lobid.org/organisations/DE-MUS-919711#! DE-MUS-919711 KZ-Gedenkstätte Beendorf +http://lobid.org/organisations/DE-MUS-920414#! DE-MUS-920414 Pinneberg Museum +http://lobid.org/organisations/DE-MUS-920612#! DE-MUS-920612 Historische Geraer Höhler, Außenstelle des Stadtmuseums Gera +http://lobid.org/organisations/DE-MUS-921813#! DE-MUS-921813 Bocholter Handwerksmuseum Dues +http://lobid.org/organisations/DE-MUS-922014#! DE-MUS-922014 Stiftskammer +http://lobid.org/organisations/DE-MUS-922118#! DE-MUS-922118 Museum im Kloster Grafschaft +http://lobid.org/organisations/DE-MUS-922618#! DE-MUS-922618 Heimatstube für dörfliche Alltagskultur +http://lobid.org/organisations/DE-MUS-922816#! DE-MUS-922816 Mühlenmuseum +http://lobid.org/organisations/DE-MUS-923215#! DE-MUS-923215 Militärmuseum Kummersdorf +http://lobid.org/organisations/DE-MUS-924114#! DE-MUS-924114 Eisenbahnmuseum Lokschuppen Aumühle +http://lobid.org/organisations/DE-MUS-925117#! DE-MUS-925117 Museumsbahn Bremerhaven-Bederkesa +http://lobid.org/organisations/DE-MUS-925419#! DE-MUS-925419 Landwirtschaftsmuseum Rhede (Ems) +http://lobid.org/organisations/DE-MUS-925711#! DE-MUS-925711 Stadtmuseum Damme +http://lobid.org/organisations/DE-MUS-927217#! DE-MUS-927217 Museum Vechta +http://lobid.org/organisations/DE-MUS-927311#! DE-MUS-927311 Venner Mühle mit Dorfmuseum +http://lobid.org/organisations/DE-MUS-927519#! DE-MUS-927519 UNESCO Weltnaturerbe Wattenmeer +http://lobid.org/organisations/DE-MUS-929119#! DE-MUS-929119 Heimatmuseum Ihringen +http://lobid.org/organisations/DE-MUS-929213#! DE-MUS-929213 Heimatstube Neues Schloss +http://lobid.org/organisations/DE-MUS-929619#! DE-MUS-929619 Heimatmuseum Neuried +http://lobid.org/organisations/DE-MUS-930510#! DE-MUS-930510 Wiesentäler Textilmuseum +http://lobid.org/organisations/DE-MUS-930718#! DE-MUS-930718 Pfälzisches Steinhauermuseum und PSM-Galerie +http://lobid.org/organisations/DE-MUS-930916#! DE-MUS-930916 Burgenmuseum auf Burg Altdahn +http://lobid.org/organisations/DE-MUS-931315#! DE-MUS-931315 Beerewei(n)-Museum +http://lobid.org/organisations/DE-MUS-931815#! DE-MUS-931815 Deutsches Schuhmuseum +http://lobid.org/organisations/DE-MUS-932818#! DE-MUS-932818 Römermuseum Eisenberg +http://lobid.org/organisations/DE-MUS-933717#! DE-MUS-933717 Dorfmuseum Leo""s Tenne - erlebte Dorfgeschichte(n) +http://lobid.org/organisations/DE-MUS-933811#! DE-MUS-933811 Jüdisches Museum Steinbach am Glan +http://lobid.org/organisations/DE-MUS-933915#! DE-MUS-933915 Eisenhüttenmuseum Trippstadt +http://lobid.org/organisations/DE-MUS-934116#! DE-MUS-934116 Heimatmuseum Waldfischbach-Burgalben +http://lobid.org/organisations/DE-MUS-934210#! DE-MUS-934210 Heimatmuseum Waldsee +http://lobid.org/organisations/DE-MUS-935911#! DE-MUS-935911 Dorfmuseum Hoffeld +http://lobid.org/organisations/DE-MUS-936018#! DE-MUS-936018 Museum für Stadtgeschichte Höhr-Grenzhausen +http://lobid.org/organisations/DE-MUS-937417#! DE-MUS-937417 Feuerwehr Museumsverein e.V. +http://lobid.org/organisations/DE-MUS-938118#! DE-MUS-938118 Tonbergbaumuseum +http://lobid.org/organisations/DE-MUS-940210#! DE-MUS-940210 Puppenmuseum +http://lobid.org/organisations/DE-MUS-940918#! DE-MUS-940918 Hunsrücker Holzmuseum +http://lobid.org/organisations/DE-MUS-941213#! DE-MUS-941213 Heimweberei-Museum Schalkenmehren +http://lobid.org/organisations/DE-MUS-942310#! DE-MUS-942310 Universitäts Museum Altdorf +http://lobid.org/organisations/DE-MUS-942414#! DE-MUS-942414 Jerusalem Panorama Kreuzigung Christi +http://lobid.org/organisations/DE-MUS-942914#! DE-MUS-942914 Heimatmuseum Buchloe +http://lobid.org/organisations/DE-MUS-943219#! DE-MUS-943219 Städtische Kunstgalerie im Deutschordenshaus +http://lobid.org/organisations/DE-MUS-944316#! DE-MUS-944316 Jüdisches Museum Georgensgmünd +http://lobid.org/organisations/DE-MUS-944712#! DE-MUS-944712 Museum Schwarzes Roß +http://lobid.org/organisations/DE-MUS-946312#! DE-MUS-946312 Römerkastell Abusina +http://lobid.org/organisations/DE-MUS-946812#! DE-MUS-946812 Sammlung zur Landeskunde Ost- und Westpreußens +http://lobid.org/organisations/DE-MUS-950316#! DE-MUS-950316 Museum im Stasi-Bunker +http://lobid.org/organisations/DE-MUS-950816#! DE-MUS-950816 Rungehaus Wolgast +http://lobid.org/organisations/DE-MUS-951017#! DE-MUS-951017 Ignaz Günther Museum +http://lobid.org/organisations/DE-MUS-951715#! DE-MUS-951715 Gold-Museum Theuern +http://lobid.org/organisations/DE-MUS-951819#! DE-MUS-951819 Museumshof Lensahn - Landwirtschaftsmuseum Prienfeldhof Lensahn e.V. +http://lobid.org/organisations/DE-MUS-952416#! DE-MUS-952416 Heimatmuseum Poppenweiler +http://lobid.org/organisations/DE-MUS-952718#! DE-MUS-952718 Bauern-Museum +http://lobid.org/organisations/DE-MUS-953117#! DE-MUS-953117 SPSG / Marmorpalais +http://lobid.org/organisations/DE-MUS-953815#! DE-MUS-953815 Kulturgeschichtliches Museum / Felix-Nussbaum-Haus +http://lobid.org/organisations/DE-MUS-953919#! DE-MUS-953919 Museum für Kommunikation Nürnberg +http://lobid.org/organisations/DE-MUS-954016#! DE-MUS-954016 Goldfuß-Museum +http://lobid.org/organisations/DE-MUS-954412#! DE-MUS-954412 Radiomuseum Rottenburg a.d. Laaber +http://lobid.org/organisations/DE-MUS-955019#! DE-MUS-955019 Heimatstube Brüel +http://lobid.org/organisations/DE-MUS-956012#! DE-MUS-956012 Mecklenburgisches Orgelmuseum +http://lobid.org/organisations/DE-MUS-956512#! DE-MUS-956512 Museum der Stadt Penkun +http://lobid.org/organisations/DE-MUS-958018#! DE-MUS-958018 Stadtgeschichtliches Museum Waren +http://lobid.org/organisations/DE-MUS-958414#! DE-MUS-958414 Veteranen-Fahrzeugmuseum 'Herbert Schmidt' +http://lobid.org/organisations/DE-MUS-958810#! DE-MUS-958810 Deutsches Traktoren und Modellauto Museum e.V. +http://lobid.org/organisations/DE-MUS-958914#! DE-MUS-958914 Museum der Strohverarbeitung Twistringen e.V. +http://lobid.org/organisations/DE-MUS-959219#! DE-MUS-959219 Sächsisches Industriemuseum +http://lobid.org/organisations/DE-MUS-959511#! DE-MUS-959511 Gedenkstätte Bautzen +http://lobid.org/organisations/DE-MUS-959719#! DE-MUS-959719 Sächs. Eisenbahnmuseum e.V. +http://lobid.org/organisations/DE-MUS-959813#! DE-MUS-959813 Museum für sächs. Fahrzeuge e.V. +http://lobid.org/organisations/DE-MUS-961311#! DE-MUS-961311 Pferdegöpel Johanngeorgenstadt +http://lobid.org/organisations/DE-MUS-961811#! DE-MUS-961811 Feuerwehrmuseum Lengenfeld +http://lobid.org/organisations/DE-MUS-962210#! DE-MUS-962210 Bergbaumuseum Glückauf-Schacht Mehren +http://lobid.org/organisations/DE-MUS-962418#! DE-MUS-962418 Turmuhrenmuseum Naunhof e.V. +http://lobid.org/organisations/DE-MUS-962512#! DE-MUS-962512 Museum Schloss Netzschkau +http://lobid.org/organisations/DE-MUS-962918#! DE-MUS-962918 Schunkelhaus +http://lobid.org/organisations/DE-MUS-964112#! DE-MUS-964112 Komplex Besucherbergwerk / Mineralienzentrum +http://lobid.org/organisations/DE-MUS-965615#! DE-MUS-965615 LWL-Preußenmuseum Minden +http://lobid.org/organisations/DE-MUS-966118#! DE-MUS-966118 Städtische Museen Tangermünde Burgmuseum +http://lobid.org/organisations/DE-MUS-966212#! DE-MUS-966212 Handwerkermuseum Sittensen +http://lobid.org/organisations/DE-MUS-967413#! DE-MUS-967413 Geologisches Freilichtmuseum +http://lobid.org/organisations/DE-MUS-970310#! DE-MUS-970310 Polizeimuseum Niedersachsen +http://lobid.org/organisations/DE-MUS-970518#! DE-MUS-970518 Heimatmuseum der Bürgergemeinschaft Wülferode +http://lobid.org/organisations/DE-MUS-970810#! DE-MUS-970810 Deutsches Zementmuseum Hemmoor +http://lobid.org/organisations/DE-MUS-972712#! DE-MUS-972712 Norddeutsches Vogelmuseum (Sammlung Baumeister) +http://lobid.org/organisations/DE-MUS-973611#! DE-MUS-973611 Museum am Stadtsee +http://lobid.org/organisations/DE-MUS-973913#! DE-MUS-973913 Erdöl-Erdgas-Museum Twist +http://lobid.org/organisations/DE-MUS-976016#! DE-MUS-976016 Marinemuseum Dänholm, Außenstelle des Stralsund Museums +http://lobid.org/organisations/DE-MUS-976318#! DE-MUS-976318 Museum Friedhof Ohlsdorf +http://lobid.org/organisations/DE-MUS-976912#! DE-MUS-976912 Archäologisches Museum Gunzenhausen +http://lobid.org/organisations/DE-MUS-979619#! DE-MUS-979619 Käserei-Museum +http://lobid.org/organisations/DE-MUS-980718#! DE-MUS-980718 Glockenmuseum Stiftskirche Herrenberg +http://lobid.org/organisations/DE-MUS-981211#! DE-MUS-981211 Ehemalige Synagoge Kippenheim +http://lobid.org/organisations/DE-MUS-982318#! DE-MUS-982318 Heimatmuseum Tieringen +http://lobid.org/organisations/DE-MUS-983019#! DE-MUS-983019 Klostermuseum Ochsenhausen +http://lobid.org/organisations/DE-MUS-983217#! DE-MUS-983217 Das DDR-Museum Pforzheim +http://lobid.org/organisations/DE-MUS-984418#! DE-MUS-984418 Besucherbergwerk Anna-Elisabeth +http://lobid.org/organisations/DE-MUS-985515#! DE-MUS-985515 Tuttlinger Haus +http://lobid.org/organisations/DE-MUS-986518#! DE-MUS-986518 Besucherbergwerk Finstergrund Glück Auf +http://lobid.org/organisations/DE-MUS-987115#! DE-MUS-987115 Natur- und Landschaftsmuseum im Werther Tor +http://lobid.org/organisations/DE-MUS-987813#! DE-MUS-987813 Ägyptisches Museum der Universität Bonn +http://lobid.org/organisations/DE-MUS-988316#! DE-MUS-988316 Museum Kaiserswerth +http://lobid.org/organisations/DE-MUS-988514#! DE-MUS-988514 Grafschafter Stuben im Lehrerhaus +http://lobid.org/organisations/DE-MUS-988816#! DE-MUS-988816 Eisenbahn- und Heimatmuseum Erkrath-Hochdahl e.V. +http://lobid.org/organisations/DE-MUS-989413#! DE-MUS-989413 Jacob Litsch Museum +http://lobid.org/organisations/DE-MUS-991015#! DE-MUS-991015 Alte Mühle Donsbrüggen +http://lobid.org/organisations/DE-MUS-991515#! DE-MUS-991515 Rheinisches Industriebahn-Museum e.V. +http://lobid.org/organisations/DE-MUS-991619#! DE-MUS-991619 Mikwe +http://lobid.org/organisations/DE-MUS-992216#! DE-MUS-992216 Museum Kulturbahnhof Korschenbroich +http://lobid.org/organisations/DE-MUS-992414#! DE-MUS-992414 Hülser Heimatstuben +http://lobid.org/organisations/DE-MUS-994014#! DE-MUS-994014 Städtisches Museum Koenraad Bosman +http://lobid.org/organisations/DE-MUS-995413#! DE-MUS-995413 Kunst- und Kulturhaus 'Alte Schule' +http://lobid.org/organisations/DE-MUS-996416#! DE-MUS-996416 SPSG / Schloß Caputh +http://lobid.org/organisations/DE-MUS-996916#! DE-MUS-996916 Morgenländischer Bau Morgenländischer Bau im Felsengarten Sanspareil +http://lobid.org/organisations/DE-MUS-998016#! DE-MUS-998016 Heimatstube Karwe +http://lobid.org/organisations/DE-MUS-998318#! DE-MUS-998318 Museum Schloss und Gut Liebenberg +http://lobid.org/organisations/DE-MUS-998912#! DE-MUS-998912 Heimatmuseum Kappe +http://lobid.org/organisations/DE-MUS-999311#! DE-MUS-999311 Museum Dreiseitenhof +http://lobid.org/organisations/DE-Kob2#! DE-Kob2 Kob 2 Bundesanstalt für Gewässerkunde, Bibliothek +http://lobid.org/organisations/DE-Gl2#! DE-Gl2 Gl 2 Oberlausitzische Bibliothek der Wissenschaften bei den Görlitzer Sammlungen +http://lobid.org/organisations/DE-B170#! DE-B170 B 170 Universität der Künste Berlin, Universitätsbibliothek +http://lobid.org/organisations/DE-He213#! DE-He213 Springer-Verlag GmbH +http://lobid.org/organisations/DE-M515#! DE-M515 M 515 Archäologische Staatssammlung München, Bibliothek +http://lobid.org/organisations/DE-MUS-029625#! DE-MUS-029625 Klassik Stiftung Weimar / Haus Hohe Pappeln +http://lobid.org/organisations/ZDB-PL-100#! ZDB-PL-100 ZDB-PL-100 Muzeum Górnoslaskie, Biblioteka +http://lobid.org/organisations/DE-1887#! DE-1887 1887 Gemeindebücherei Niedernhausen +http://lobid.org/organisations/DE-Wlr1#! DE-Wlr1 Wlr 1 Vitra Design Museum, Bibliothek +http://lobid.org/organisations/DE-B1596#! DE-B1596 B 1596 Mediothek der ZE Sprachenzentrum der Humboldt-Universität zu Berlin +http://lobid.org/organisations/DE-1895#! DE-1895 1895 Stadtbücherei im Pfleghof Langenau +http://lobid.org/organisations/DE-92#! DE-92 92 Technische Hochschule Nürnberg Georg Simon Ohm, Bibliothek +http://lobid.org/organisations/DE-Pul1#! DE-Pul1 Pul 1 LVR-Archivberatungs- und Fortbildungszentrum, Archiv des Landschaftsverbandes Rheinland +http://lobid.org/organisations/DE-Po86#! DE-Po86 Po 86 Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg / DIZ, Bibliothek +http://lobid.org/organisations/DE-Tue135#! DE-Tue135 Tü 135 Index theologicus der Universitätsbibliothek Tübingen +http://lobid.org/organisations/DE-38-101#! DE-38-101 38/101 Volkswirtschaftliche Bibliothek der Universität zu Köln +http://lobid.org/organisations/DE-38-237#! DE-38-237 38/237 Institute for International Peace and Security Law, Library +http://lobid.org/organisations/DE-17-2#! DE-17-2 17/2 TU Darmstadt, Universitäts- und Landesbibliothek - Lichtwiese +http://lobid.org/organisations/DE-1908#! DE-1908 1908 Stadtbibliothek Braunsbedra +http://lobid.org/organisations/DE-18-312#! DE-18-312 18/312 Zentrale Stelle für Normdaten der Fachbibliotheken der Universität Hamburg +http://lobid.org/organisations/DE-Ots2#! DE-Ots2 Ots 2 Logistikschule der Bundeswehr, Fachinformationsstelle und Bibliothek +http://lobid.org/organisations/DE-L333#! DE-L333 L 333 ROSA ARCHIV Bibliothek +http://lobid.org/organisations/DE-Old5#! DE-Old5 Old 5 Landesmuseum Natur und Mensch, Bibliothek +http://lobid.org/organisations/DE-Old6#! DE-Old6 Old 6 Landesmuseum für Kunst und Kulturgeschichte Oldenburg, Bibliothek +http://lobid.org/organisations/DE-A102#! DE-A102 A 102 Bauer + Kirch GmbH +http://lobid.org/organisations/DE-1913#! DE-1913 1913 University of Europe for Applied Sciences GmbH, Campus Berlin, Bibliothek +http://lobid.org/organisations/DE-1918#! DE-1918 1918 Stadtbücherei Baunatal +http://lobid.org/organisations/DE-E17#! DE-E17 E 17 Medienzentrum Ruhr e.V. +http://lobid.org/organisations/DE-Ks14b#! DE-Ks14b Ks 14b Museumslandschaft Hessen Kassel, Bibliothek, Bunsenstrasse +http://lobid.org/organisations/DE-MUS-044624#! DE-MUS-044624 Fliegermuseum Bad Wörishofen +http://lobid.org/organisations/DE-MUS-036128#! DE-MUS-036128 Meininger Museen / Theatermuseum 'Zauberwelt der Kulisse' +http://lobid.org/organisations/DE-MUS-043121#! DE-MUS-043121 Stiftung Schloß Friedenstein Gotha / Ekhof-Theater +http://lobid.org/organisations/DE-MUS-043225#! DE-MUS-043225 Museum Europäischer Kulturpark +http://lobid.org/organisations/DE-1923#! DE-1923 1923 Mediothek Bunde +http://lobid.org/organisations/DE-MUS-047821#! DE-MUS-047821 Kn 196 Dokumentationszentrum und Museum über die Migration in Deutschland e.V. (DOMiD) +http://lobid.org/organisations/DE-93-35#! DE-93-35 93/35 Universität Stuttgart, Institut für Elektrische Energiewandlung, Bibliothek +http://lobid.org/organisations/DE-B1598#! DE-B1598 B 1598 Evangelisches Zentralarchiv, Bibliothek +http://lobid.org/organisations/DE-1933#! DE-1933 1933 Popakademie Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-1937#! DE-1937 1937 Stadtbibliothek Oederan +http://lobid.org/organisations/DE-1936#! DE-1936 Institut für Geschichtliche Landeskunde an der Universität Mainz e.V. / Projekt www.ingrossaturbuecher.de +http://lobid.org/organisations/DE-1941#! DE-1941 1941 Berufsakademie für Gesundheits- und Sozialwesen Saarland und Lehrinstitut für Gesundheitsberufe der Saarland-Heilstätten GmbH, gemeinsame Bibliothek +http://lobid.org/organisations/DE-1053#! DE-1053 1053 Bibliothek der Hochschule Mainz, Standort Holzstraße +http://lobid.org/organisations/DE-1053-1#! DE-1053-1 1053/1 Bibliothek der Hochschule Mainz, Standort Campus +http://lobid.org/organisations/DE-B496#! DE-B496 B 496 Stiftung Deutsches Historisches Museum, Bibliothek +http://lobid.org/organisations/DE-1945#! DE-1945 1945 Stadtbücherei Ehingen +http://lobid.org/organisations/DE-1951#! DE-1951 Landesarchiv Baden-Württemberg +http://lobid.org/organisations/DE-1952#! DE-1952 1952 Gemeindebücherei Wörth +http://lobid.org/organisations/DE-1954#! DE-1954 1954 C. G. Jung-Institut Stuttgart e.V., Bibliothek +http://lobid.org/organisations/DE-1962#! DE-1962 1962 Kreisarchiv des Hochtaunuskreises +http://lobid.org/organisations/DE-1967#! DE-1967 1967 Amt für Bürgerservice und Informationsverarbeitung der Stadt Freiburg im Breisgau, Bibliothek +http://lobid.org/organisations/DE-1971#! DE-1971 1971 Weltkulturen Museum, Bibliothek +http://lobid.org/organisations/DE-1976#! DE-1976 1976 Zentrum zur Erforschung der Freireligiösen Bewegung, Bibliothek und Archiv +http://lobid.org/organisations/DE-1978#! DE-1978 1978 Museum für Kommunikation Frankfurt, Bibliothek +http://lobid.org/organisations/DE-B1548#! DE-B1548 B 1548 Stiftung zur Aufarbeitung der SED-Diktatur, Bibliothek +http://lobid.org/organisations/DE-1983#! DE-1983 1983 Stadtarchiv Reutlingen +http://lobid.org/organisations/DE-8-2#! DE-8-2 8/2 Universitätsbibliothek Kiel, Fachbibliothek Theologie +http://lobid.org/organisations/DE-1989#! DE-1989 1989 arthistoricum.net - Fachinformationsdienst Kunst, Fotografie, Design +http://lobid.org/organisations/DE-1993#! DE-1993 Hochschularchiv der RWTH Aachen +http://lobid.org/organisations/AT-FHJ-G#! AT-FHJ-G AT-FHJ-G Fachhochschule Joanneum GmbH, Bibliotheks- und Informationszentrum, Standort Graz +http://lobid.org/organisations/DE-1998#! DE-1998 1998 Stadtbibliothek Plochingen +http://lobid.org/organisations/DE-2005#! DE-2005 2005 Stadtbücherei Horb a.N. +http://lobid.org/organisations/DE-2017#! DE-2017 2017 Ortsbücherei Wolfschlugen +http://lobid.org/organisations/DE-8-40#! DE-8-40 8/40 Universitätsbibliothek Kiel, Fachbibliothek Geschichte +http://lobid.org/organisations/DE-2019#! DE-2019 2019 Städtische Mediothek Niederstetten +http://lobid.org/organisations/DE-2021#! DE-2021 Brockhaus/German Books +http://lobid.org/organisations/DE-8-44#! DE-8-44 8/44 Universitätsbibliothek Kiel, Fachbibliothek am Kunsthistorischen Institut +http://lobid.org/organisations/DE-8-48#! DE-8-48 8/48 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Skandinavistik, Frisistik und Allg. Sprachwissenschaft, Bereich Allg.Sprachwissenschaft +http://lobid.org/organisations/DE-2022#! DE-2022 2022 Stadtbibliothek Ditzingen +http://lobid.org/organisations/DE-8-50#! DE-8-50 8/50 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Klassische Altertumskunde +http://lobid.org/organisations/DE-8-541#! DE-8-541 8/54a Universitätsbibliothek Kiel, Fachbibliothek am Institut für Skandinavistik, Frisistik und Allg. Sprachwissenschaft, Bereich Frisistik +http://lobid.org/organisations/DE-8-591#! DE-8-591 8/591 Universitätsbibliothek Kiel, Handapparat Graduiertenschule +http://lobid.org/organisations/CH-000015-0#! CH-000015-0 Schweizerische Nationalbibliothek, Schweizerisches Literaturarchiv +http://lobid.org/organisations/CH-000050-X#! CH-000050-X Aargauer Kantonsbibliothek +http://lobid.org/organisations/DE-2030#! DE-2030 2030 Stadtbücherei Schorndorf +http://lobid.org/organisations/DE-2040#! DE-2040 2040 Stadtbücherei Wendlingen am Neckar +http://lobid.org/organisations/DE-2042#! DE-2042 2042 Stadtbücherei Eislingen +http://lobid.org/organisations/DE-2043#! DE-2043 Archiv des Erzbistums München und Freising +http://lobid.org/organisations/US-NN#! US-NN New York Public Library, Mid-Manhattan Library +http://lobid.org/organisations/DE-2058#! DE-2058 2058 Bibliothek Abtsgmünd +http://lobid.org/organisations/DE-2060#! DE-2060 Klassik Stiftung Weimar / Goethe- und Schiller-Archiv +http://lobid.org/organisations/DE-2068#! DE-2068 2068 Ortsbücherei Nordheim +http://lobid.org/organisations/DE-2072#! DE-2072 2072 Stadtbibliothek Heubach +http://lobid.org/organisations/DE-2073#! DE-2073 2073 Bücherei Pleidelsheim +http://lobid.org/organisations/DE-2075#! DE-2075 2075 Bayerisches Staatsministerium für Gesundheit und Pflege, Bibliothek +http://lobid.org/organisations/DE-17-900#! DE-17-900 17/900 TU Darmstadt, Elektronische Ressourcen +http://lobid.org/organisations/DE-B1527#! DE-B1527 B 1527 Gedenkstätte Deutscher Widerstand, Bibliothek +http://lobid.org/organisations/DE-2081#! DE-2081 2081 Gemeindebücherei Rot am See +http://lobid.org/organisations/DE-2087#! DE-2087 Archiv des Deutschen Theaters Berlin +http://lobid.org/organisations/DE-2088#! DE-2088 Landeskirchliches Archiv Kassel +http://lobid.org/organisations/DE-2094#! DE-2094 Stadtarchiv Grevesmühlen +http://lobid.org/organisations/DE-4-150#! DE-4-150 4/150 Universität Marburg, Bibliothek Naturwissenschaften +http://lobid.org/organisations/DE-Y8#! DE-Y8 Y 8 Deutsches Historisches Institut Washington, Bibliothek +http://lobid.org/organisations/DE-2096#! DE-2096 2096 Stadtbücherei Oberndorf a.N. +http://lobid.org/organisations/DE-2100#! DE-2100 Universitätsarchiv Münster +http://lobid.org/organisations/DE-1834m#! DE-1834m 1834m freshpages MHMK Bibliothek Mailand +http://lobid.org/organisations/DE-2102#! DE-2102 Rheinisches Bildarchiv +http://lobid.org/organisations/DE-2103#! DE-2103 Hamburger Institut für Sozialforschung, Archiv +http://lobid.org/organisations/DE-2106#! DE-2106 Kreisarchiv Ludwigsburg +http://lobid.org/organisations/DE-2120#! DE-2120 Stadtarchiv Leipzig +http://lobid.org/organisations/DE-2121#! DE-2121 Gemeindearchiv Herscheid +http://lobid.org/organisations/DE-2122#! DE-2122 Universitätsarchiv Bamberg +http://lobid.org/organisations/DE-Kn41-51#! DE-Kn41-51 Kn 41/51 Deutsche Sporthochschule Köln, Institut für Sportrecht, Bibliothek +http://lobid.org/organisations/DE-MUS-059923#! DE-MUS-059923 Weberhaus Kempen +http://lobid.org/organisations/DE-MUS-060324#! DE-MUS-060324 RadioMuseum Köln +http://lobid.org/organisations/DE-MUS-054928#! DE-MUS-054928 Feld-Haus - Museum für populäre Druckgrafik +http://lobid.org/organisations/DE-MUS-478413#! DE-MUS-478413 LVR-Industriemuseum, Museum Eisenheim +http://lobid.org/organisations/DE-2134#! DE-2134 Heinrich-Heine-Universität Düsseldorf, Institut für Geschichte, Theorie und Ethik der Medizin, Nachlässe +http://lobid.org/organisations/DE-2142#! DE-2142 Vereinigte Westfälische Adelsarchive e.V. +http://lobid.org/organisations/DE-2149#! DE-2149 Archiv der Kolpingstadt Kerpen +http://lobid.org/organisations/DE-2157#! DE-2157 2157 Gedenkbibliothek zu Ehren der Opfer des Kommunismus +http://lobid.org/organisations/DE-623#! DE-623 Transport- und Umladestation Badische Landesbibliothek Karlsruhe (BLB) +http://lobid.org/organisations/DE-2168#! DE-2168 2168 Mediathek Munderkingen +http://lobid.org/organisations/DE-2173#! DE-2173 2173 Leibniz-Institut für Wirtschaftsforschung Halle, Bibliothek +http://lobid.org/organisations/DE-2187#! DE-2187 2187 Bischöfliches Diözesanarchiv Aachen +http://lobid.org/organisations/DE-2191#! DE-2191 Landesarchiv Nordrhein-Westfalen +http://lobid.org/organisations/DE-2192#! DE-2192 2192 Museum Schnütgen, Bibliothek +http://lobid.org/organisations/DE-2193#! DE-2193 Landeshauptarchiv Koblenz +http://lobid.org/organisations/DE-2212#! DE-2212 Archiv der deutschen Frauenbewegung, Archiv +http://lobid.org/organisations/DE-2220#! DE-2220 Oberpfarr- und Domkirche zu Berlin, Domarchiv +http://lobid.org/organisations/DE-2221#! DE-2221 Landeskirchliches Archiv Karlsruhe +http://lobid.org/organisations/DE-2228#! DE-2228 2228 Stadtarchiv Bamberg +http://lobid.org/organisations/DE-2231#! DE-2231 Europa-Universität Viadrina, Universitätsarchiv +http://lobid.org/organisations/DE-2233#! DE-2233 2233 Stadtbücherei Adenau +http://lobid.org/organisations/DE-2234#! DE-2234 2234 Psychologische Ausbildungsstelle für EFL-Beratung im Erzbistum Freiburg, Bibliothek +http://lobid.org/organisations/DE-473-TB3#! DE-473-TB3 473/TB3 Universitätsbibliothek Bamberg, Teilbibliothek 3 (Sozial- und Wirtschaftswissenschaften) +http://lobid.org/organisations/DE-473-TB6#! DE-473-TB6 473/TB6 Universitätsbibliothek Bamberg, ERBA-Bibliothek (Informatik, Kommunikationswissenschaft, Kunst und Musik) +http://lobid.org/organisations/DE-2241#! DE-2241 Stadtarchiv Renningen +http://lobid.org/organisations/DE-Bm3-2#! DE-Bm3-2 Bm 3/2 Bibliothek des Ruhrgebiets, Bestandsabteilung Institut für soziale Bewegungen +http://lobid.org/organisations/DE-2246#! DE-2246 2246 Senckenberg Forschungsstation für Quartärpaläontologie Weimar, Bibliothek +http://lobid.org/organisations/DE-2247#! DE-2247 2247 Senckenberg am Meer Wilhelmshaven, Bibliothek +http://lobid.org/organisations/DE-2255#! DE-2255 2255 Hochschule der Deutschen Gesetzlichen Unfallversicherung (HGU), University of Applied Sciences, Bibliothek Campus Bad Hersfeld +http://lobid.org/organisations/DE-2261#! DE-2261 Kreisarchiv des Märkischen Kreises +http://lobid.org/organisations/DE-1156b#! DE-1156b 1156b Folkwang Universität der Künste, Standort Duisburg, Bibliothek +http://lobid.org/organisations/DE-2266#! DE-2266 2266 Stadtarchiv Rees +http://lobid.org/organisations/DE-2267#! DE-2267 2267 Bibliothek & Mediothek des Bistums Münster +http://lobid.org/organisations/DE-2269#! DE-2269 2269 Bücherei-Mediathek-Zetel in der Gemeinde Zetel +http://lobid.org/organisations/DE-2271#! DE-2271 Landeskirchliches Archiv der Evangelisch-Lutherischen Kirche in Bayern +http://lobid.org/organisations/DE-B198#! DE-B198 B 198 Deutsche Rentenversicherung Bund, Bibliothek +http://lobid.org/organisations/DE-2276#! DE-2276 Diözesanarchiv Osnabrück +http://lobid.org/organisations/DE-974-900#! DE-974-900 974/900 Technische Hochschule Mittelhessen, Elektronische Ressourcen +http://lobid.org/organisations/DE-2286#! DE-2286 Stadtarchiv Hannover +http://lobid.org/organisations/DE-82-523#! DE-82-523 82/523 Lehrstuhl für Höchstfrequenzelektronik, Bibliothek +http://lobid.org/organisations/DE-2294#! DE-2294 Landeskirchliches Archiv der Nordkirche +http://lobid.org/organisations/DE-2295#! DE-2295 2295 Hochschule für den öffentlichen Dienst in Bayern, Fachbereich Polizei, Studienstandort Sulzbach-Rosenberg, Bibliothek +http://lobid.org/organisations/DE-82-786#! DE-82-786 82/786 Institut für Molekulare Medizin, Bibliothek +http://lobid.org/organisations/DE-100-400#! DE-100-400 100/400 Versuchsstation Agrarwissenschaften der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-2305#! DE-2305 Archiv der Stadt Eschweiler +http://lobid.org/organisations/DE-2307#! DE-2307 2307 Gemeindebücherei Allersberg +http://lobid.org/organisations/DE-MUS-068724#! DE-MUS-068724 Christiane und Dirk Reichow-Stiftung zur Förderung der bildenden Kunst +http://lobid.org/organisations/DE-2310#! DE-2310 2310 Herder-Institut für historische Ostmitteleuropaforschung / Bildarchiv +http://lobid.org/organisations/DE-H2#! DE-H2 H 2 Bundesamt für Seeschifffahrt und Hydrographie, Bibliothek +http://lobid.org/organisations/DE-MUS-069623#! DE-MUS-069623 Georg-August-Universität Göttingen / Sammlung historischer Objekte im Institut für Geophysik +http://lobid.org/organisations/DE-MUS-069727#! DE-MUS-069727 Georg-August-Universität Göttingen / Forstbotanischer Garten und Arboretum +http://lobid.org/organisations/DE-MUS-070128#! DE-MUS-070128 Georg-August-Universität: Blumenbachsche Schädelsammlung +http://lobid.org/organisations/DE-2337#! DE-2337 2337 Klinikum Ingolstadt GmbH, Bibliothek +http://lobid.org/organisations/DE-2340#! DE-2340 2340 Gemeindebücherei Fürstenstein +http://lobid.org/organisations/DE-2341#! DE-2341 2341 Katholische Öffentliche Bibliothek St. Michael, Vilshofen +http://lobid.org/organisations/DE-625#! DE-625 625 Regensburger Verbundklassifikation +http://lobid.org/organisations/DE-2356#! DE-2356 2356 Deutsches Archäologisches Institut, Orient Abteilung, Bibliothek +http://lobid.org/organisations/DE-2362#! DE-2362 2362 Haus Gottesdienst und Kirchenmusik, Bibliothek +http://lobid.org/organisations/DE-MUS-061327#! DE-MUS-061327 Museum am Gradierwerk +http://lobid.org/organisations/DE-MUS-134212#! DE-MUS-134212 Sammlung antiker und nachantiker Münzen und Medaillen des Instituts für Klassische Archäologie der Universität Tübingen +http://lobid.org/organisations/DE-Ds203#! DE-Ds203 Ds 203 Evangelische Kirche in Hessen und Nassau, Zentrum Bildung, Bibliothek +http://lobid.org/organisations/DE-2365#! DE-2365 Kreisarchiv Ravensburg +http://lobid.org/organisations/DE-2373#! DE-2373 Stadtarchiv Wegberg +http://lobid.org/organisations/DE-2398#! DE-2398 2398 Dombauarchiv Köln, Bibliothek +http://lobid.org/organisations/DE-2402#! DE-2402 2402 Pfarr- und Gemeindebücherei Pförring +http://lobid.org/organisations/DE-2405#! DE-2405 2405 Schiller International University, Library +http://lobid.org/organisations/DE-MUS-104929#! DE-MUS-104929 Haus Brandenburg der Stiftung Brandenburg +http://lobid.org/organisations/DE-B23#! DE-B23 B 23 Deutscher Wetterdienst, Deutsche Meteorologische Bibliothek +http://lobid.org/organisations/DE-2409#! DE-2409 Archiv der Bibliothek für Bildungsgeschichtliche Forschung (BBF) des Deutschen Instituts für Internationale Pädagogische Forschung (DIPF) +http://lobid.org/organisations/DE-2413#! DE-2413 2413 Bibliothek der Bayerischen Akademie für Jagd und Natur +http://lobid.org/organisations/DE-385-823#! DE-385-823 385/823 Institut für Recht und Digitalisierung Trier (IRDT), Bibliothek +http://lobid.org/organisations/DE-2426#! DE-2426 Hirmer Unternehmensarchiv +http://lobid.org/organisations/DE-2430#! DE-2430 2430 Wilhelm-Löhe-Schule, Schulbibliothek +http://lobid.org/organisations/DE-100-640#! DE-100-640 100/640 Universität Hohenheim, Core Facility Hohenheim, Bibliothek +http://lobid.org/organisations/DE-We2#! DE-We2 We 2 Robert Koch-Institut, Bibliothek Wernigerode +http://lobid.org/organisations/DE-2441#! DE-2441 Kreis- und Kommunalarchiv Landkreis Grafschaft Bentheim +http://lobid.org/organisations/DE-2443#! DE-2443 2443 Stadtbücherei Coburg +http://lobid.org/organisations/DE-2449#! DE-2449 Medienzentrum Heidenheim +http://lobid.org/organisations/DE-MUS-106227#! DE-MUS-106227 Georg-August-Universität Göttingen / Wildbiologie +http://lobid.org/organisations/DE-MUS-106321#! DE-MUS-106321 Georg-August-Universität Göttingen / Nutztierforschung +http://lobid.org/organisations/DE-2462#! DE-2462 Historisches Archiv des Germanischen Nationalmuseums +http://lobid.org/organisations/CH-000956-2#! CH-000956-2 Archiv und Sammlung Hermann Rorschach +http://lobid.org/organisations/DE-2463#! DE-2463 2463 Stadtbibliothek Volkach +http://lobid.org/organisations/CH-000006-1#! CH-000006-1 Zentral- & Hochschulbibliothek Luzern (ZHB) +http://lobid.org/organisations/DE-82-788#! DE-82-788 82/788 Euregionales comprehensive Cancer Center Aachen, Bibliothek +http://lobid.org/organisations/DE-2466#! DE-2466 2466 Stadtbücherei Gefrees +http://lobid.org/organisations/DE-2467#! DE-2467 2467 Stadtbücherei Geisenfeld +http://lobid.org/organisations/DE-2469#! DE-2469 2469 Archiv des Landkreises Cuxhaven +http://lobid.org/organisations/DE-2470#! DE-2470 Gemeinsames Archiv des Kreises Steinburg und der Stadt Itzehoe +http://lobid.org/organisations/DE-MUS-108827#! DE-MUS-108827 Jüdische Lebenswege Museum Kleinsteinach +http://lobid.org/organisations/DE-MUS-108921#! DE-MUS-108921 Haus der Böhmerwäldler/ Adolf Webinger Haus +http://lobid.org/organisations/DE-MUS-105828#! DE-MUS-105828 Museum ""Stifter und der Wald"" +http://lobid.org/organisations/DE-MUS-106821#! DE-MUS-106821 Phonomuseum ""Alte Schule"" +http://lobid.org/organisations/DE-2481#! DE-2481 2481 Weiterbildungskolleg Münster, Bibliothek +http://lobid.org/organisations/DE-MUS-700210#! DE-MUS-700210 LWL-Industriemuseum - Landesmuseum für westfälische Industriekultur +http://lobid.org/organisations/DE-2487#! DE-2487 2487 Berlin Cosmopolitan School, Bibliothek +http://lobid.org/organisations/DE-2488#! DE-2488 2488 Landschaftsverband Rheinland, Bibliothek der LVR-Klinik Köln +http://lobid.org/organisations/DE-2492#! DE-2492 2492 Deutsches Historisches Institut Warschau, Bibliothek +http://lobid.org/organisations/CH-000917-4#! CH-000917-4 UZH Archiv +http://lobid.org/organisations/DE-Mh35#! DE-Mh35 Mh 35 Duale Hochschule Baden-Württemberg Mannheim, Bibliothek +http://lobid.org/organisations/DE-2501#! DE-2501 2501 Staatliches Museum Ägyptischer Kunst, Bibliothek +http://lobid.org/organisations/DE-2505#! DE-2505 2505 Öffentliche Fachbibliothek im Beruflichen Schulzentrum Ludwigsburg +http://lobid.org/organisations/DE-2508#! DE-2508 2508 Bibliothek des Fritz Bauer Instituts zur Geschichte und Wirkung des Holocaust +http://lobid.org/organisations/DE-2509#! DE-2509 2509 Stadtbücherei St. Michael Grafenwöhr +http://lobid.org/organisations/DE-2518#! DE-2518 2518 Realschule Wolbeck, Lehrbuchsammlung +http://lobid.org/organisations/DE-2524#! DE-2524 2524 Bibliothek der Hochschulrektorenkonferenz +http://lobid.org/organisations/DE-90-62#! DE-90-62 90/62 KIT-Bibliothek, Materialbibliothek Architektur +http://lobid.org/organisations/DE-2537#! DE-2537 2537 ekz Gruppe +http://lobid.org/organisations/DE-2541#! DE-2541 2541 Herder-Institut für historische Ostmitteleuropaforschung, Kartensammlung +http://lobid.org/organisations/DE-Bv2#! DE-Bv2 Bv 2 Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung, (AWI), Bibliothek +http://lobid.org/organisations/DE-MUS-054017#! DE-MUS-054017 Historisches Museum Schloss Gifhorn +http://lobid.org/organisations/DE-MUS-055916#! DE-MUS-055916 Museum, Sammlungen & Geopark+Göttinger Zentrum Geowissenschaften +http://lobid.org/organisations/DE-MUS-056315#! DE-MUS-056315 Zoologisches Museum der Georg-August-Universität +http://lobid.org/organisations/DE-MUS-056419#! DE-MUS-056419 Heimatmuseum 'Hüsli' des Landkreises Waldshut +http://lobid.org/organisations/DE-MUS-057110#! DE-MUS-057110 Stadtmuseum Groß-Gerau +http://lobid.org/organisations/DE-MUS-058019#! DE-MUS-058019 Schwarzwälder Freilichtmuseum 'Vogtsbauernhof' +http://lobid.org/organisations/DE-MUS-059012#! DE-MUS-059012 Ernst Barlach Haus, Stiftung Hermann F. Reemtsma +http://lobid.org/organisations/DE-MUS-060413#! DE-MUS-060413 Rieck-Haus/Vierländer Freilichtmuseum +http://lobid.org/organisations/DE-MUS-060611#! DE-MUS-060611 Museum Hameln +http://lobid.org/organisations/DE-MUS-066515#! DE-MUS-066515 Heimatmuseum +http://lobid.org/organisations/DE-MUS-066713#! DE-MUS-066713 Museum Bayerisches Vogtland +http://lobid.org/organisations/DE-MUS-066911#! DE-MUS-066911 Automuseum Engstingen +http://lobid.org/organisations/DE-MUS-067716#! DE-MUS-067716 Heimatmuseum im Hochzeitshaus +http://lobid.org/organisations/DE-MUS-068615#! DE-MUS-068615 Otto-Pankok-Museum +http://lobid.org/organisations/DE-MUS-068917#! DE-MUS-068917 Theodor-Storm-Haus +http://lobid.org/organisations/DE-MUS-070217#! DE-MUS-070217 Deutsches Höhlenmuseum Iserlohn +http://lobid.org/organisations/DE-MUS-071210#! DE-MUS-071210 Küstenmuseum Juist +http://lobid.org/organisations/DE-MUS-071512#! DE-MUS-071512 Stadtmuseum Kaiserslautern +http://lobid.org/organisations/DE-MUS-071710#! DE-MUS-071710 Heimat- und Keramikmuseum +http://lobid.org/organisations/DE-MUS-071918#! DE-MUS-071918 Deutsches Hugenotten-Museum +http://lobid.org/organisations/DE-MUS-072713#! DE-MUS-072713 Städtische Galerie Karlsruhe +http://lobid.org/organisations/DE-MUS-072817#! DE-MUS-072817 Verkehrsmuseum Karlsruhe +http://lobid.org/organisations/DE-MUS-073018#! DE-MUS-073018 Grimmwelt Kassel +http://lobid.org/organisations/DE-MUS-073310#! DE-MUS-073310 Spohr Museum +http://lobid.org/organisations/DE-MUS-074011#! DE-MUS-074011 Blüchermuseum Kaub +http://lobid.org/organisations/DE-MUS-074917#! DE-MUS-074917 Museum Kellinghusen +http://lobid.org/organisations/DE-MUS-076611#! DE-MUS-076611 Zoologisches Museum Kiel +http://lobid.org/organisations/DE-MUS-077718#! DE-MUS-077718 Landesmuseum Koblenz, Staatliche Sammlung technischer Kulturdenkmäler +http://lobid.org/organisations/DE-MUS-079016#! DE-MUS-079016 Museum Schnütgen +http://lobid.org/organisations/DE-MUS-079318#! DE-MUS-079318 Deutsches Zollmuseum Hamburg +http://lobid.org/organisations/DE-MUS-080011#! DE-MUS-080011 Bodensee-Naturmuseum +http://lobid.org/organisations/DE-MUS-080115#! DE-MUS-080115 Wessenberg - Galerie +http://lobid.org/organisations/DE-MUS-080417#! DE-MUS-080417 Wolfgang-Bonhage-Museum Korbach +http://lobid.org/organisations/DE-MUS-080719#! DE-MUS-080719 Museum Katharinenhof Kranenburg +http://lobid.org/organisations/DE-MUS-084513#! DE-MUS-084513 Heimathaus der Stadt Lauingen (Donau) +http://lobid.org/organisations/DE-MUS-085110#! DE-MUS-085110 Stadtmuseum Echterdingen +http://lobid.org/organisations/DE-MUS-085912#! DE-MUS-085912 Heimatkundliche Sammlung der Stadt Lich +http://lobid.org/organisations/DE-MUS-086519#! DE-MUS-086519 Hüttenberger Heimatmuseum +http://lobid.org/organisations/DE-MUS-087314#! DE-MUS-087314 Dreiländermuseum +http://lobid.org/organisations/DE-MUS-087616#! DE-MUS-087616 Freihaus mit Manfred-Kyber-Museum +http://lobid.org/organisations/DE-MUS-088015#! DE-MUS-088015 Museumsquartier St. Annen, St. Annen-Museum +http://lobid.org/organisations/DE-MUS-089112#! DE-MUS-089112 Stadtmuseum Ludwigshafen +http://lobid.org/organisations/DE-MUS-089612#! DE-MUS-089612 Ostpreußisches Landesmuseum mit Deutschbaltischer Abteilung +http://lobid.org/organisations/DE-MUS-089716#! DE-MUS-089716 Museum der Stadt Lünen +http://lobid.org/organisations/DE-MUS-090013#! DE-MUS-090013 Römermuseum Mainhardt +http://lobid.org/organisations/DE-MUS-091714#! DE-MUS-091714 Religionskundliche Sammlung der Philipps-Universität +http://lobid.org/organisations/DE-MUS-091818#! DE-MUS-091818 Heimatmuseum Marktl +http://lobid.org/organisations/DE-MUS-091912#! DE-MUS-091912 Paul-Röder-Museum +http://lobid.org/organisations/DE-MUS-092113#! DE-MUS-092113 Heimatmuseum Marl +http://lobid.org/organisations/DE-MUS-092811#! DE-MUS-092811 Wilhelm-Busch-Haus +http://lobid.org/organisations/DE-MUS-093314#! DE-MUS-093314 Neues Schloss +http://lobid.org/organisations/DE-MUS-093512#! DE-MUS-093512 Dithmarscher Landesmuseum +http://lobid.org/organisations/DE-MUS-093918#! DE-MUS-093918 Städtisches Museum +http://lobid.org/organisations/DE-MUS-094515#! DE-MUS-094515 Deutsches Korbmuseum +http://lobid.org/organisations/DE-MUS-095018#! DE-MUS-095018 Museum.Stadt.Miltenberg +http://lobid.org/organisations/DE-MUS-095810#! DE-MUS-095810 Städtisches Museum Schloß Rheydt +http://lobid.org/organisations/DE-MUS-096417#! DE-MUS-096417 Alte Pinakothek +http://lobid.org/organisations/DE-MUS-096917#! DE-MUS-096917 Paläontologisches Museum München +http://lobid.org/organisations/DE-MUS-097118#! DE-MUS-097118 BMW Museum +http://lobid.org/organisations/DE-MUS-097816#! DE-MUS-097816 Museum ""Reich der Kristalle""+ Mineralogische Staatssammlung +http://lobid.org/organisations/DE-MUS-098319#! DE-MUS-098319 Die Neue Sammlung - The Design Museum +http://lobid.org/organisations/DE-MUS-099114#! DE-MUS-099114 Staatliche Münzsammlung München +http://lobid.org/organisations/DE-MUS-099510#! DE-MUS-099510 Deutsches Theatermuseum München +http://lobid.org/organisations/DE-MUS-100318#! DE-MUS-100318 Museum Haus Rüschhaus +http://lobid.org/organisations/DE-MUS-101717#! DE-MUS-101717 Deutsches Zweirad- und+NSU-Museum Neckarsulm +http://lobid.org/organisations/DE-MUS-102616#! DE-MUS-102616 Hohenlohe-Museum Schloss Neuenstein +http://lobid.org/organisations/DE-MUS-103213#! DE-MUS-103213 Tuch und Technik, Textilmuseum Neumünster +http://lobid.org/organisations/DE-MUS-103317#! DE-MUS-103317 Schwarzachtaler Heimatmuseum +http://lobid.org/organisations/DE-MUS-104612#! DE-MUS-104612 Städtisches Museum im Hospital mit Kulturbetrieb +http://lobid.org/organisations/DE-MUS-105219#! DE-MUS-105219 Norderneyer Fischerhausmuseum +http://lobid.org/organisations/DE-MUS-105417#! DE-MUS-105417 Museum der Stadt Northeim +http://lobid.org/organisations/DE-MUS-107111#! DE-MUS-107111 Historisches Museum und Südsee-Sammlung Obergünzburg +http://lobid.org/organisations/DE-MUS-107215#! DE-MUS-107215 Ludwiggalerie Schloss Oberhausen +http://lobid.org/organisations/DE-MUS-107319#! DE-MUS-107319 ZEISS Museum der Optik +http://lobid.org/organisations/DE-MUS-108010#! DE-MUS-108010 Meißener Porzellan-Sammlung/Stiftung Ernst Schneider +http://lobid.org/organisations/DE-MUS-109211#! DE-MUS-109211 Museum im Ritterhaus +http://lobid.org/organisations/DE-MUS-110018#! DE-MUS-110018 Domschatzkammer und Diözesanmuseum Osnabrück +http://lobid.org/organisations/DE-MUS-110914#! DE-MUS-110914 Stiftung Heimathaus Irmintraut +http://lobid.org/organisations/DE-MUS-111417#! DE-MUS-111417 Oberhausmuseum der Stadt Passau +http://lobid.org/organisations/DE-MUS-111615#! DE-MUS-111615 Kreismuseum Peine / Museum für Alltagskultur +http://lobid.org/organisations/DE-MUS-112014#! DE-MUS-112014 Stadtmuseum Pforzheim +http://lobid.org/organisations/DE-MUS-112410#! DE-MUS-112410 Heimatmuseum Philippsburg +http://lobid.org/organisations/DE-MUS-113111#! DE-MUS-113111 Museum Prien +http://lobid.org/organisations/DE-MUS-113215#! DE-MUS-113215 Museum im Augustiner-Chorherrenstift mit Exter Gemäldegalerie, Ausst. zum Verfassungskonvent +http://lobid.org/organisations/DE-MUS-114510#! DE-MUS-114510 Kreismuseum Herzogtum Lauenburg +http://lobid.org/organisations/DE-MUS-114916#! DE-MUS-114916 Museen der Stadt Recklinghausen/Ikonen-Museum +http://lobid.org/organisations/DE-MUS-115919#! DE-MUS-115919 Schatzkammer des Münsters +http://lobid.org/organisations/DE-MUS-116016#! DE-MUS-116016 Heimatmuseum der Stadt Reinfeld (Holstein) +http://lobid.org/organisations/DE-MUS-116516#! DE-MUS-116516 Elektromuseum Rendsburg +http://lobid.org/organisations/DE-MUS-116714#! DE-MUS-116714 Naturkundemuseum Reutlingen +http://lobid.org/organisations/DE-MUS-116912#! DE-MUS-116912 Glasmuseum Rheinbach +http://lobid.org/organisations/DE-MUS-117113#! DE-MUS-117113 Museum 'Schöne Stiege' Riedlingen +http://lobid.org/organisations/DE-MUS-117311#! DE-MUS-117311 Philipp Schäfer II Museum +http://lobid.org/organisations/DE-MUS-117811#! DE-MUS-117811 Kreisheimatmuseum +http://lobid.org/organisations/DE-MUS-118116#! DE-MUS-118116 ""Historiengewölbe"" mit Staatsverlies +http://lobid.org/organisations/DE-MUS-118210#! DE-MUS-118210 Mittelalterliches Kriminalmuseum +http://lobid.org/organisations/DE-MUS-118512#! DE-MUS-118512 Sülchgau-Museum +http://lobid.org/organisations/DE-MUS-118710#! DE-MUS-118710 Stadtmuseum Rottweil +http://lobid.org/organisations/DE-MUS-119619#! DE-MUS-119619 Saarlandmuseum - Moderne Galerie +http://lobid.org/organisations/DE-MUS-120218#! DE-MUS-120218 Bergwerksmuseum, Historisches Silbererzbergwerk Grube Samson +http://lobid.org/organisations/DE-MUS-121013#! DE-MUS-121013 Heimatmuseum im 'Adler' +http://lobid.org/organisations/DE-MUS-121919#! DE-MUS-121919 Museum der Stadt Schopfheim +http://lobid.org/organisations/DE-MUS-123415#! DE-MUS-123415 Museum der Schwalm +http://lobid.org/organisations/DE-MUS-123717#! DE-MUS-123717 Museum Haus Martfeld +http://lobid.org/organisations/DE-MUS-123915#! DE-MUS-123915 Schloß Schwetzingen +http://lobid.org/organisations/DE-MUS-125015#! DE-MUS-125015 Hunsrück-Museum +http://lobid.org/organisations/DE-MUS-127511#! DE-MUS-127511 Museum Starnberger See +http://lobid.org/organisations/DE-MUS-128118#! DE-MUS-128118 Festung Wilhelmstein im Steinhuder Meer +http://lobid.org/organisations/DE-MUS-128618#! DE-MUS-128618 Mercedes-Benz Museum GmbH +http://lobid.org/organisations/DE-MUS-128712#! DE-MUS-128712 Deutsches Landwirtschaftsmuseum +http://lobid.org/organisations/DE-MUS-128910#! DE-MUS-128910 Gottlieb-Daimler-Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-129017#! DE-MUS-129017 Stadtmuseum Bad Cannstatt (Klösterle-Scheuer) +http://lobid.org/organisations/DE-MUS-129913#! DE-MUS-129913 Staatsgalerie Stuttgart +http://lobid.org/organisations/DE-MUS-130314#! DE-MUS-130314 Zoologisches und Tiermedizinisches Museum Hohenheim +http://lobid.org/organisations/DE-MUS-130512#! DE-MUS-130512 Landlmuseum (Heimatmuseum) +http://lobid.org/organisations/DE-MUS-131411#! DE-MUS-131411 Olaf Gulbransson Museum +http://lobid.org/organisations/DE-MUS-131713#! DE-MUS-131713 Residenzschloss Tettnang +http://lobid.org/organisations/DE-MUS-131911#! DE-MUS-131911 Bergbau- und Industriemuseum Ostbayern +http://lobid.org/organisations/DE-MUS-132310#! DE-MUS-132310 Mittelmosel-Museum im Barockbau Böcking +http://lobid.org/organisations/DE-MUS-132414#! DE-MUS-132414 Museum im Heimathaus - Stadt- und Spielzeugmuseum Traunstein +http://lobid.org/organisations/DE-MUS-133011#! DE-MUS-133011 Karl-Marx-Haus Trier +http://lobid.org/organisations/DE-MUS-133219#! DE-MUS-133219 Stadtmuseum Simeonstift Trier +http://lobid.org/organisations/DE-MUS-133813#! DE-MUS-133813 Klostermuseum Bebenhausen +http://lobid.org/organisations/DE-MUS-134316#! DE-MUS-134316 Zahnärztliches Museum +http://lobid.org/organisations/DE-MUS-134816#! DE-MUS-134816 Suso-Haus +http://lobid.org/organisations/DE-MUS-134910#! DE-MUS-134910 Museum Schloss Holdenstedt +http://lobid.org/organisations/DE-MUS-135017#! DE-MUS-135017 Militärhist. Museum der Bundeswehr - Flugplatz Berlin-Gatow +http://lobid.org/organisations/DE-MUS-135111#! DE-MUS-135111 Uffenheimer Gollachgaumuseum +http://lobid.org/organisations/DE-MUS-137013#! DE-MUS-137013 Heimatmuseum Veringenstadt +http://lobid.org/organisations/DE-MUS-137513#! DE-MUS-137513 Franziskanermuseum Villingen +http://lobid.org/organisations/DE-MUS-137815#! DE-MUS-137815 Heimatstube Mühlhausen +http://lobid.org/organisations/DE-MUS-137919#! DE-MUS-137919 Heimatmuseum-Kröninger Hafnermuseum +http://lobid.org/organisations/DE-MUS-138016#! DE-MUS-138016 Heimatmuseum der Stadt Vohenstrauß +http://lobid.org/organisations/DE-MUS-139311#! DE-MUS-139311 Museum 'Alte Metzig' Waldshut +http://lobid.org/organisations/DE-MUS-139415#! DE-MUS-139415 Oberammergau-Museum +http://lobid.org/organisations/DE-MUS-140514#! DE-MUS-140514 Heimatmuseum Wanfried +http://lobid.org/organisations/DE-MUS-141715#! DE-MUS-141715 Schloß Weikersheim +http://lobid.org/organisations/DE-MUS-142916#! DE-MUS-142916 Alamannen-Museum Weingarten +http://lobid.org/organisations/DE-MUS-144110#! DE-MUS-144110 Städtisches Museum Welzheim, Museum für den Welzheimer Wald +http://lobid.org/organisations/DE-MUS-144412#! DE-MUS-144412 Städtisches Museum +http://lobid.org/organisations/DE-MUS-144610#! DE-MUS-144610 Heimatmuseum Wertach +http://lobid.org/organisations/DE-MUS-144714#! DE-MUS-144714 GrafschaftsMuseum Wertheim und Otto-Modersohn-Kabinett +http://lobid.org/organisations/DE-MUS-145217#! DE-MUS-145217 Sammlung Dr. Irmgard von Lemmers-Danforth +http://lobid.org/organisations/DE-MUS-145415#! DE-MUS-145415 Kreismuseum Wewelsburg 1933-1945+ Erinnerungs- und Gedenkstätte +http://lobid.org/organisations/DE-MUS-145613#! DE-MUS-145613 Museum Achse, Rad und Wagen +http://lobid.org/organisations/DE-MUS-146918#! DE-MUS-146918 Städtisches Museum +http://lobid.org/organisations/DE-MUS-148112#! DE-MUS-148112 Regionalmuseum Wolfhager Land +http://lobid.org/organisations/DE-MUS-148414#! DE-MUS-148414 Städtische Galerie Wolfsburg +http://lobid.org/organisations/DE-MUS-148914#! DE-MUS-148914 Große Kunstschau +http://lobid.org/organisations/DE-MUS-150318#! DE-MUS-150318 Martin von Wagner Museum der Universität Würzburg +http://lobid.org/organisations/DE-MUS-150412#! DE-MUS-150412 Residenz Würzburg +http://lobid.org/organisations/DE-MUS-150912#! DE-MUS-150912 LVR-RömerMuseum +http://lobid.org/organisations/DE-MUS-151019#! DE-MUS-151019 StiftsMuseum, Archiv, Bibliothek Xanten +http://lobid.org/organisations/DE-MUS-151613#! DE-MUS-151613 Römerthermen Zülpich - Museum der Badekultur +http://lobid.org/organisations/DE-MUS-151717#! DE-MUS-151717 Waldmuseum Zwiesel +http://lobid.org/organisations/DE-MUS-152418#! DE-MUS-152418 Stadtmuseum Norderstedt +http://lobid.org/organisations/DE-MUS-153411#! DE-MUS-153411 Klaus-Groth-Museum +http://lobid.org/organisations/DE-MUS-154112#! DE-MUS-154112 Museumslandschaft Hessen Kassel+Museum Schloß Friedrichstein +http://lobid.org/organisations/DE-MUS-155813#! DE-MUS-155813 Heimatmuseum der Stadt Lampertheim +http://lobid.org/organisations/DE-MUS-156514#! DE-MUS-156514 Regionalmuseum Reichelsheim/ Odenwald +http://lobid.org/organisations/DE-MUS-156618#! DE-MUS-156618 Heimatmuseum Allendorf +http://lobid.org/organisations/DE-MUS-157517#! DE-MUS-157517 Geldmuseum der Deutschen Bundesbank +http://lobid.org/organisations/DE-MUS-157715#! DE-MUS-157715 Hessisches Puppen- und Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-158010#! DE-MUS-158010 Welterbe Kloster Lorsch +http://lobid.org/organisations/DE-MUS-158510#! DE-MUS-158510 Museum im Wettbergschen Adelshof +http://lobid.org/organisations/DE-MUS-158916#! DE-MUS-158916 Richard-Brandt-Heimatmuseum Wedemark +http://lobid.org/organisations/DE-MUS-159617#! DE-MUS-159617 Museum Burg Brome +http://lobid.org/organisations/DE-MUS-159815#! DE-MUS-159815 Wilhelm-Busch-Mühle +http://lobid.org/organisations/DE-MUS-161417#! DE-MUS-161417 Heimatmuseum Lamspringe +http://lobid.org/organisations/DE-MUS-165815#! DE-MUS-165815 Stefan-George-Gedenkstätte +http://lobid.org/organisations/DE-MUS-166318#! DE-MUS-166318 Museum im Stadtpalais +http://lobid.org/organisations/DE-MUS-168314#! DE-MUS-168314 Orgelmuseum Borgenteich +http://lobid.org/organisations/DE-MUS-170614#! DE-MUS-170614 Drilandmuseum +http://lobid.org/organisations/DE-MUS-170812#! DE-MUS-170812 Regionalmuseum Villa Wippermann +http://lobid.org/organisations/DE-MUS-171815#! DE-MUS-171815 Heimatmuseum Westerholt +http://lobid.org/organisations/DE-MUS-172110#! DE-MUS-172110 Heimathaus Bevergern +http://lobid.org/organisations/DE-MUS-172318#! DE-MUS-172318 Städtisches Museum - Haus Letmathe +http://lobid.org/organisations/DE-MUS-174418#! DE-MUS-174418 Museum Schloß Homburg, Außenstelle Haus Dahl +http://lobid.org/organisations/DE-MUS-174710#! DE-MUS-174710 LWL-Museum in der Kaiserpfalz +http://lobid.org/organisations/DE-MUS-175713#! DE-MUS-175713 Museum Burg Ramsdorf +http://lobid.org/organisations/DE-MUS-176310#! DE-MUS-176310 Museum für Frühindustrialisierung +http://lobid.org/organisations/DE-MUS-176414#! DE-MUS-176414 Museum auf der Hardt +http://lobid.org/organisations/DE-MUS-177219#! DE-MUS-177219 Marktmuseum Altmannstein +http://lobid.org/organisations/DE-MUS-179017#! DE-MUS-179017 Fränkisches Freilandmuseum +http://lobid.org/organisations/DE-MUS-179111#! DE-MUS-179111 Deutsches Knopfmuseum +http://lobid.org/organisations/DE-MUS-180814#! DE-MUS-180814 Neues Schloß Herrenchiemsee +http://lobid.org/organisations/DE-MUS-181317#! DE-MUS-181317 Mies-Pilsener-Heimatmuseum +http://lobid.org/organisations/DE-MUS-181515#! DE-MUS-181515 Heimatmuseum Ebern +http://lobid.org/organisations/DE-MUS-184118#! DE-MUS-184118 Schnupftabak- u. Stadtmuseum Grafenau +http://lobid.org/organisations/DE-MUS-184212#! DE-MUS-184212 Archäologie Museum Greding +http://lobid.org/organisations/DE-MUS-184514#! DE-MUS-184514 Bachgau-Museum +http://lobid.org/organisations/DE-MUS-185319#! DE-MUS-185319 Dorfmuseum im Greifenhaus +http://lobid.org/organisations/DE-MUS-185413#! DE-MUS-185413 Haushamer Bergbaumuseum +http://lobid.org/organisations/DE-MUS-185517#! DE-MUS-185517 Oberfränkisches Textilmuseum Helmbrechts +http://lobid.org/organisations/DE-MUS-185715#! DE-MUS-185715 Deutsches Hirtenmuseum +http://lobid.org/organisations/DE-MUS-186916#! DE-MUS-186916 Knauf-Museum Iphofen +http://lobid.org/organisations/DE-MUS-188714#! DE-MUS-188714 Heimatmuseum Kraiburg +http://lobid.org/organisations/DE-MUS-190618#! DE-MUS-190618 Rangau-Handwerkermuseum +http://lobid.org/organisations/DE-MUS-190816#! DE-MUS-190816 Egerland-Museum/Egerland-Kulturhaus-Stiftung +http://lobid.org/organisations/DE-MUS-191111#! DE-MUS-191111 Heimatmuseum Mering +http://lobid.org/organisations/DE-MUS-191913#! DE-MUS-191913 Geschichtszentrum und +Museum Mühldorf a. Inn +http://lobid.org/organisations/DE-MUS-192718#! DE-MUS-192718 Stadtmuseum ""Zehentstadl"" +http://lobid.org/organisations/DE-MUS-194714#! DE-MUS-194714 Staatsgalerie in der Benediktinerabtei +http://lobid.org/organisations/DE-MUS-195519#! DE-MUS-195519 Stadtmuseum Pleystein +http://lobid.org/organisations/DE-MUS-197911#! DE-MUS-197911 Mineralogisch-Geologisches Museum +http://lobid.org/organisations/DE-MUS-200111#! DE-MUS-200111 Stiftlandmuseum +http://lobid.org/organisations/DE-MUS-200611#! DE-MUS-200611 Tachauer Heimatmuseum +http://lobid.org/organisations/DE-MUS-202315#! DE-MUS-202315 Burgenmuseum Nideggen +http://lobid.org/organisations/DE-MUS-202711#! DE-MUS-202711 Museum Ehingen +http://lobid.org/organisations/DE-MUS-203818#! DE-MUS-203818 Ägyptologische Sammlung der Universität Heidelberg +http://lobid.org/organisations/DE-MUS-204217#! DE-MUS-204217 Museum für Geowissenschaften +http://lobid.org/organisations/DE-MUS-204415#! DE-MUS-204415 Völkerkundemuseum der+J. & E. von Portheim-Stiftung +http://lobid.org/organisations/DE-MUS-204717#! DE-MUS-204717 Städtische Museen Heilbronn, Deutschhof - Kunst, Archäologie und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-206213#! DE-MUS-206213 Museum am Markt +http://lobid.org/organisations/DE-MUS-206411#! DE-MUS-206411 Stadtmuseum Sinsheim +http://lobid.org/organisations/DE-MUS-207112#! DE-MUS-207112 Csavolyer Heimatstuben +http://lobid.org/organisations/DE-MUS-207310#! DE-MUS-207310 Feuerwehrmuseum Winnenden +http://lobid.org/organisations/DE-MUS-207716#! DE-MUS-207716 Heimatmuseum Waltrop +http://lobid.org/organisations/DE-MUS-207810#! DE-MUS-207810 Heimatmuseum Haiger +http://lobid.org/organisations/DE-MUS-211710#! DE-MUS-211710 Märklineum +http://lobid.org/organisations/DE-MUS-211918#! DE-MUS-211918 Bäuerliches Museum - Alter Schafstall Eutingen +http://lobid.org/organisations/DE-MUS-212817#! DE-MUS-212817 Museum Wimpelinhof +http://lobid.org/organisations/DE-MUS-214917#! DE-MUS-214917 Dorf-Museum Melchingen +http://lobid.org/organisations/DE-MUS-215712#! DE-MUS-215712 Ländliche Bildergalerie +http://lobid.org/organisations/DE-MUS-215910#! DE-MUS-215910 Nellinger Heimatmuseum +http://lobid.org/organisations/DE-MUS-216017#! DE-MUS-216017 Lebenslinien - Historische Persönlichkeiten in Herrlingen +http://lobid.org/organisations/DE-MUS-216319#! DE-MUS-216319 Heimatmuseum Jungingen +http://lobid.org/organisations/DE-MUS-216413#! DE-MUS-216413 Wilhelm-Hauff-Museum +http://lobid.org/organisations/DE-MUS-216517#! DE-MUS-216517 Heimatstube Ohmenhausen +http://lobid.org/organisations/DE-MUS-216611#! DE-MUS-216611 Weinbaumuseum +http://lobid.org/organisations/DE-MUS-217510#! DE-MUS-217510 Heimat- und Handwerksmuseum 'Bindhaus' +http://lobid.org/organisations/DE-MUS-219016#! DE-MUS-219016 Heimatmuseum Kirchstraße und Gasthaus Zum Alten Bären +http://lobid.org/organisations/DE-MUS-219412#! DE-MUS-219412 FilderStadtMuseum +http://lobid.org/organisations/DE-MUS-220417#! DE-MUS-220417 Urgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-221212#! DE-MUS-221212 Museum für Stadtgeschichte +http://lobid.org/organisations/DE-MUS-221410#! DE-MUS-221410 Berthold-Auerbach-Museum +http://lobid.org/organisations/DE-MUS-223114#! DE-MUS-223114 Museum im Alten Rathaus +http://lobid.org/organisations/DE-MUS-224315#! DE-MUS-224315 Heimatmuseum ""Vollmers Mühle"" +http://lobid.org/organisations/DE-MUS-224617#! DE-MUS-224617 Museum Rheinau +http://lobid.org/organisations/DE-MUS-224815#! DE-MUS-224815 Briefmarkenmuseum im Kloster Bardel +http://lobid.org/organisations/DE-MUS-227918#! DE-MUS-227918 Hexenturm - Museum der Stadt Lahnstein +http://lobid.org/organisations/DE-MUS-228619#! DE-MUS-228619 Gedenkstätte Plötzensee +http://lobid.org/organisations/DE-MUS-228911#! DE-MUS-228911 Schüttesäge-Museum +http://lobid.org/organisations/DE-MUS-229112#! DE-MUS-229112 Haus an der Redoute +http://lobid.org/organisations/DE-MUS-230919#! DE-MUS-230919 Historische Orte - Schill-Kasematte +http://lobid.org/organisations/DE-MUS-234911#! DE-MUS-234911 Bergsträßer Museum Seeheim-Jugenheim +http://lobid.org/organisations/DE-MUS-235112#! DE-MUS-235112 Heimatmuseum Melsungen +http://lobid.org/organisations/DE-MUS-235414#! DE-MUS-235414 Burgmuseum +http://lobid.org/organisations/DE-MUS-235716#! DE-MUS-235716 Museum im Wehener Schloß +http://lobid.org/organisations/DE-MUS-236115#! DE-MUS-236115 Heimatmuseum Mörfelden +http://lobid.org/organisations/DE-MUS-236917#! DE-MUS-236917 Stadt- und Festungsmuseum Germersheim +http://lobid.org/organisations/DE-MUS-237118#! DE-MUS-237118 Ortsmuseum Nackenheim +http://lobid.org/organisations/DE-MUS-238017#! DE-MUS-238017 Volkskundemuseum des Bezirks Unterfranken +http://lobid.org/organisations/DE-MUS-238819#! DE-MUS-238819 Kulturgeschichtliches Museum Osnabrück / Dreikronenhaus +http://lobid.org/organisations/DE-MUS-238913#! DE-MUS-238913 Kulturgeschichtliches Museum, Bocksturm +http://lobid.org/organisations/DE-MUS-239416#! DE-MUS-239416 Stadtmuseum - Haus Paschke +http://lobid.org/organisations/DE-MUS-239614#! DE-MUS-239614 Uhrenmuseum Bad Grund +http://lobid.org/organisations/DE-MUS-240119#! DE-MUS-240119 Niedersächsisches Kutschenmuseum +http://lobid.org/organisations/DE-MUS-240317#! DE-MUS-240317 Schloß Bürresheim +http://lobid.org/organisations/DE-MUS-240911#! DE-MUS-240911 Glockenschmiede +http://lobid.org/organisations/DE-MUS-241810#! DE-MUS-241810 Deutsches Architektur-Museum +http://lobid.org/organisations/DE-MUS-244111#! DE-MUS-244111 Heimatmuseum Obbornhofen e.V. +http://lobid.org/organisations/DE-MUS-245114#! DE-MUS-245114 Heimatmuseum Geschichtsverein +http://lobid.org/organisations/DE-MUS-245510#! DE-MUS-245510 Heimatmuseum Garbenheim +http://lobid.org/organisations/DE-MUS-246419#! DE-MUS-246419 Probstei-Museum +http://lobid.org/organisations/DE-MUS-246513#! DE-MUS-246513 Heimatmuseum Adenau +http://lobid.org/organisations/DE-MUS-246711#! DE-MUS-246711 Burg Trifels +http://lobid.org/organisations/DE-MUS-248113#! DE-MUS-248113 Fritz-von-Wille Museum +http://lobid.org/organisations/DE-MUS-248811#! DE-MUS-248811 Heimatmuseum Hüllhorst +http://lobid.org/organisations/DE-MUS-249012#! DE-MUS-249012 4Fachwerk+- Mittendrin-Museum +http://lobid.org/organisations/DE-MUS-249314#! DE-MUS-249314 Tüshaus-Mühle +http://lobid.org/organisations/DE-MUS-249418#! DE-MUS-249418 Motorrad Museum Ibbenbüren +http://lobid.org/organisations/DE-MUS-250715#! DE-MUS-250715 Heimatmuseum des Daadener Landes +http://lobid.org/organisations/DE-MUS-250819#! DE-MUS-250819 Kreisgalerie Dahn +http://lobid.org/organisations/DE-MUS-251218#! DE-MUS-251218 Historisches Kupferbergwerk Fischbach +http://lobid.org/organisations/DE-MUS-251812#! DE-MUS-251812 Edelsteinmine im Steinkaulenberg, Besucherbergwerk +http://lobid.org/organisations/DE-MUS-252815#! DE-MUS-252815 Schwäbisches Handwerkermuseum +http://lobid.org/organisations/DE-MUS-253714#! DE-MUS-253714 Museum für Neue Kunst +http://lobid.org/organisations/DE-MUS-253818#! DE-MUS-253818 Bonsai-Museum +http://lobid.org/organisations/DE-MUS-254019#! DE-MUS-254019 Bürgermuseum im Alten Kino +http://lobid.org/organisations/DE-MUS-254113#! DE-MUS-254113 Ödenburger Heimatmuseum +http://lobid.org/organisations/DE-MUS-254519#! DE-MUS-254519 Museum im Römerbad +http://lobid.org/organisations/DE-MUS-255918#! DE-MUS-255918 Stadtmuseum Quakenbrück +http://lobid.org/organisations/DE-MUS-256515#! DE-MUS-256515 Museum der Stadt Gronau (Leine) +http://lobid.org/organisations/DE-MUS-257310#! DE-MUS-257310 Glasmuseum Passau +http://lobid.org/organisations/DE-MUS-257414#! DE-MUS-257414 Städtische Galerie im Park Viersen +http://lobid.org/organisations/DE-MUS-257914#! DE-MUS-257914 Niedersächsisches Kleinbahn-Museum +http://lobid.org/organisations/DE-MUS-259712#! DE-MUS-259712 Fastnachtsmuseum Fasenickl +http://lobid.org/organisations/DE-MUS-260113#! DE-MUS-260113 Heimatmuseum Königsdorf +http://lobid.org/organisations/DE-MUS-261710#! DE-MUS-261710 DAS Klöppelmuseum +http://lobid.org/organisations/DE-MUS-262015#! DE-MUS-262015 Textilmuseum-Sandtnerstiftung +http://lobid.org/organisations/DE-MUS-264115#! DE-MUS-264115 Bayerisches Nationalmuseum / Museum Kloster Asbach +http://lobid.org/organisations/DE-MUS-264417#! DE-MUS-264417 Dommuseum +http://lobid.org/organisations/DE-MUS-266319#! DE-MUS-266319 Heimatmuseum Nieder-Roden +http://lobid.org/organisations/DE-MUS-266819#! DE-MUS-266819 Besucherbergwerk ""Grube Fortuna"" +http://lobid.org/organisations/DE-MUS-267114#! DE-MUS-267114 Kulturgeschichtliches Heimatmuseum und Burgschmiede +http://lobid.org/organisations/DE-MUS-267218#! DE-MUS-267218 Stadttormuseum +http://lobid.org/organisations/DE-MUS-268315#! DE-MUS-268315 Heimatmuseum Weissach +http://lobid.org/organisations/DE-MUS-269610#! DE-MUS-269610 Kreismuseum St. Blasien +http://lobid.org/organisations/DE-MUS-270417#! DE-MUS-270417 Alte Synagoge Essen +http://lobid.org/organisations/DE-MUS-270615#! DE-MUS-270615 Schatzkammer Emmerich +http://lobid.org/organisations/DE-MUS-270813#! DE-MUS-270813 Heimatmuseum Bergneustadt +http://lobid.org/organisations/DE-MUS-271118#! DE-MUS-271118 Heimatmuseum Stommeln +http://lobid.org/organisations/DE-MUS-271212#! DE-MUS-271212 Museum Insel Hombroich +http://lobid.org/organisations/DE-MUS-271410#! DE-MUS-271410 Schokoladenmuseum Köln GmbH +http://lobid.org/organisations/DE-MUS-273718#! DE-MUS-273718 Uhrenmuseum Bad Iburg +http://lobid.org/organisations/DE-MUS-274013#! DE-MUS-274013 Museums-Feuerschiff 'Amrumbank' +http://lobid.org/organisations/DE-MUS-274419#! DE-MUS-274419 Deutsches Panzermuseum Munster +http://lobid.org/organisations/DE-MUS-276019#! DE-MUS-276019 Stadtmuseum Oberwesel +http://lobid.org/organisations/DE-MUS-276519#! DE-MUS-276519 Heimatmuseum Sprendlingen +http://lobid.org/organisations/DE-MUS-277512#! DE-MUS-277512 LVR-Industriemuseum, Schauplatz Solingen +http://lobid.org/organisations/DE-MUS-277710#! DE-MUS-277710 Zisterziensermuseum Riddagshausen +http://lobid.org/organisations/DE-MUS-280117#! DE-MUS-280117 Daniel-Martin-Haus +http://lobid.org/organisations/DE-MUS-280919#! DE-MUS-280919 Barkenhoff-Stiftung Worpswede/Heinrich-Vogeler-Museum +http://lobid.org/organisations/DE-MUS-282019#! DE-MUS-282019 Heimatmuseum Ronnenberg +http://lobid.org/organisations/DE-MUS-282113#! DE-MUS-282113 Museum Rodenberg +http://lobid.org/organisations/DE-MUS-283814#! DE-MUS-283814 Neisser Haus - Heimatmuseum und Archiv +http://lobid.org/organisations/DE-MUS-285310#! DE-MUS-285310 Heimathof Emsbüren +http://lobid.org/organisations/DE-MUS-285612#! DE-MUS-285612 Dorfmuseum Delligsen +http://lobid.org/organisations/DE-MUS-287014#! DE-MUS-287014 Heimat-Museum Maintal e.V. +http://lobid.org/organisations/DE-MUS-288611#! DE-MUS-288611 Museum im Berchtholdshof +http://lobid.org/organisations/DE-MUS-288715#! DE-MUS-288715 Schulmuseum Nordwürttemberg +http://lobid.org/organisations/DE-MUS-289614#! DE-MUS-289614 Haller Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-289718#! DE-MUS-289718 Rössler-Museum +http://lobid.org/organisations/DE-MUS-290213#! DE-MUS-290213 Stiftung Historische Museen Hamburg, Museum der Arbeit +http://lobid.org/organisations/DE-MUS-292219#! DE-MUS-292219 Stadtmuseum Wadern im Oettinger Schlösschen +http://lobid.org/organisations/DE-MUS-292313#! DE-MUS-292313 Johann-Adams-Mühle Tholey +http://lobid.org/organisations/DE-MUS-292417#! DE-MUS-292417 Heimatmuseum Steinbach +http://lobid.org/organisations/DE-MUS-292719#! DE-MUS-292719 Heimatmuseum Rehlingen +http://lobid.org/organisations/DE-MUS-292813#! DE-MUS-292813 Saarländisches Uhren-Museum +http://lobid.org/organisations/DE-MUS-293618#! DE-MUS-293618 MEC Losheim +http://lobid.org/organisations/DE-MUS-294017#! DE-MUS-294017 Burgmuseum Felsberg +http://lobid.org/organisations/DE-MUS-295114#! DE-MUS-295114 Brauchtums- und Trachtenpuppenmuseum - Heimathaus der Banater Schwaben +http://lobid.org/organisations/DE-MUS-295510#! DE-MUS-295510 Förderverein Deutsches Pumpenmuseum e.V. +http://lobid.org/organisations/DE-MUS-297016#! DE-MUS-297016 Eisbrecher ""Stettin"" e.V. +http://lobid.org/organisations/DE-MUS-297318#! DE-MUS-297318 Römermuseum Osterburken +http://lobid.org/organisations/DE-MUS-297912#! DE-MUS-297912 Museum für bäuerliches Handwerk und Kultur +http://lobid.org/organisations/DE-MUS-299314#! DE-MUS-299314 Keltermuseum Unterjesingen +http://lobid.org/organisations/DE-MUS-301219#! DE-MUS-301219 Historische Geroldsecker Waffenschmiede +http://lobid.org/organisations/DE-MUS-301417#! DE-MUS-301417 Hohberger Bienenmuseum +http://lobid.org/organisations/DE-MUS-301813#! DE-MUS-301813 Museum für Stadtgeschichte und Stadtarchiv +http://lobid.org/organisations/DE-MUS-301917#! DE-MUS-301917 Dorfmuseum Pfaffenweiler +http://lobid.org/organisations/DE-MUS-302618#! DE-MUS-302618 Heimatmuseum Reilingen +http://lobid.org/organisations/DE-MUS-304218#! DE-MUS-304218 Heimatmuseum Bammental +http://lobid.org/organisations/DE-MUS-304916#! DE-MUS-304916 Heimatstube Bredenbeck +http://lobid.org/organisations/DE-MUS-306214#! DE-MUS-306214 Historische Spinnerei Gartetal +http://lobid.org/organisations/DE-MUS-306818#! DE-MUS-306818 Heimat- und Buddelmuseum Osten +http://lobid.org/organisations/DE-MUS-310114#! DE-MUS-310114 Museum ""Haus Mährisch Schönberg"" +http://lobid.org/organisations/DE-MUS-310614#! DE-MUS-310614 Puppenmuseum Bad Breisig +http://lobid.org/organisations/DE-MUS-310812#! DE-MUS-310812 Museum für Weinbau und Stadtgeschichte Edenkoben +http://lobid.org/organisations/DE-MUS-312714#! DE-MUS-312714 Hessisches Landgestüt, Kutschenmuseum +http://lobid.org/organisations/DE-MUS-313717#! DE-MUS-313717 Otto-Ditscher-Galerie/-Haus +http://lobid.org/organisations/DE-MUS-313811#! DE-MUS-313811 Abtei Rommersdorf +http://lobid.org/organisations/DE-MUS-314314#! DE-MUS-314314 Heimatmuseum Ockenheim +http://lobid.org/organisations/DE-MUS-315015#! DE-MUS-315015 Weinbaumuseum +http://lobid.org/organisations/DE-MUS-315619#! DE-MUS-315619 Eifeler Bauernhaus-Museum +http://lobid.org/organisations/DE-MUS-315713#! DE-MUS-315713 Jüdisches Museum München +http://lobid.org/organisations/DE-MUS-316414#! DE-MUS-316414 Polizeiausstellung 110 +http://lobid.org/organisations/DE-MUS-317917#! DE-MUS-317917 Einrichmuseum Katzenelnbogen +http://lobid.org/organisations/DE-MUS-318212#! DE-MUS-318212 Moor- und Fehnmuseum +http://lobid.org/organisations/DE-MUS-319215#! DE-MUS-319215 Apothekenmuseum - Stiftung Kohl""sche Einhorn Apotheke +http://lobid.org/organisations/DE-MUS-319319#! DE-MUS-319319 Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-321213#! DE-MUS-321213 Pfefferminzmuseum +http://lobid.org/organisations/DE-MUS-321515#! DE-MUS-321515 Museum Ostdeutsche Kulturgeschichte +http://lobid.org/organisations/DE-MUS-321911#! DE-MUS-321911 Hambacher Schloß +http://lobid.org/organisations/DE-MUS-322112#! DE-MUS-322112 Blaudruckerei im Kattrepel +http://lobid.org/organisations/DE-MUS-322310#! DE-MUS-322310 Wallfahrtsmuseum Wies +http://lobid.org/organisations/DE-MUS-322414#! DE-MUS-322414 Kali-Bergbaumuseum +http://lobid.org/organisations/DE-MUS-322810#! DE-MUS-322810 Stadtmuseum für Kunst und Geschichte Hüfingen +http://lobid.org/organisations/DE-MUS-323115#! DE-MUS-323115 Grabkapelle Rotenberg +http://lobid.org/organisations/DE-MUS-324712#! DE-MUS-324712 Holler Heimatmuseum +http://lobid.org/organisations/DE-MUS-325111#! DE-MUS-325111 Quellenmuseum Bad Wildungen +http://lobid.org/organisations/DE-MUS-325819#! DE-MUS-325819 Stiftung Domäne Dahlem - Landgut und Museum +http://lobid.org/organisations/DE-MUS-326718#! DE-MUS-326718 Museum Künstlerkolonie Darmstadt +http://lobid.org/organisations/DE-MUS-326916#! DE-MUS-326916 Prientalmuseum und Schloss Hohenaschau +http://lobid.org/organisations/DE-MUS-327419#! DE-MUS-327419 Philipp-Matthäus-Hahn-Museum im Kasten +http://lobid.org/organisations/DE-MUS-328610#! DE-MUS-328610 Städtische Galerie Bietigheim-Bissingen +http://lobid.org/organisations/DE-MUS-328818#! DE-MUS-328818 Kardinal Bea Museum +http://lobid.org/organisations/DE-MUS-328912#! DE-MUS-328912 Städtische Galerie Böblingen +http://lobid.org/organisations/DE-MUS-329019#! DE-MUS-329019 Bauernmuseum 'Pfarrscheuer' Bösingen +http://lobid.org/organisations/DE-MUS-329915#! DE-MUS-329915 Ölmühle Dörzbach +http://lobid.org/organisations/DE-MUS-330618#! DE-MUS-330618 Heimatstube Esslingen +http://lobid.org/organisations/DE-MUS-331215#! DE-MUS-331215 Sandmühle und Alte Schmiede +http://lobid.org/organisations/DE-MUS-331819#! DE-MUS-331819 Gestütsmuseum Offenhausen +http://lobid.org/organisations/DE-MUS-334912#! DE-MUS-334912 Heimatmuseum Klösterle +http://lobid.org/organisations/DE-MUS-335019#! DE-MUS-335019 Kloster Schöntal +http://lobid.org/organisations/DE-MUS-335613#! DE-MUS-335613 Ortsmuseum Untertürkheim/Rotenberg +http://lobid.org/organisations/DE-MUS-335811#! DE-MUS-335811 Heimatstube Wiesental +http://lobid.org/organisations/DE-MUS-336116#! DE-MUS-336116 Bauernhausmuseum Altburg +http://lobid.org/organisations/DE-MUS-336210#! DE-MUS-336210 Hermann Voith Galerie+Kunstmuseum Heidenheim+Picasso Plakate- u. Druckgraphiksammlung +http://lobid.org/organisations/DE-MUS-336512#! DE-MUS-336512 Heimatmuseum Harthausen +http://lobid.org/organisations/DE-MUS-336918#! DE-MUS-336918 Krippenmuseum Glattbach +http://lobid.org/organisations/DE-MUS-337515#! DE-MUS-337515 Heimatmuseum Klosterlangheim +http://lobid.org/organisations/DE-MUS-338518#! DE-MUS-338518 Heimatmuseum und Archiv Wandsbek +http://lobid.org/organisations/DE-MUS-341113#! DE-MUS-341113 Heimatmuseum Auetal +http://lobid.org/organisations/DE-MUS-342116#! DE-MUS-342116 Nationalpark-Haus+Museum Fedderwardersiel +http://lobid.org/organisations/DE-MUS-342210#! DE-MUS-342210 Celler Garnison-Museum e.V. +http://lobid.org/organisations/DE-MUS-343619#! DE-MUS-343619 Töpfereimuseum +http://lobid.org/organisations/DE-MUS-344216#! DE-MUS-344216 Max-Kommerell-Gedenkstätte +http://lobid.org/organisations/DE-MUS-344310#! DE-MUS-344310 Albert-Sammt-/Zeppelin-Museum +http://lobid.org/organisations/DE-MUS-345219#! DE-MUS-345219 Otto-König-von-Griechenland - Museum +http://lobid.org/organisations/DE-MUS-345813#! DE-MUS-345813 Heimatmuseum Erbenheim +http://lobid.org/organisations/DE-MUS-345917#! DE-MUS-345917 Gildehaus Bardowick +http://lobid.org/organisations/DE-MUS-346316#! DE-MUS-346316 Schweger Windmühle +http://lobid.org/organisations/DE-MUS-346816#! DE-MUS-346816 Schifffahrtsmuseum Haren +http://lobid.org/organisations/DE-MUS-347517#! DE-MUS-347517 Museum im Haus am Junkernhof +http://lobid.org/organisations/DE-MUS-348510#! DE-MUS-348510 Stiftung nds. Gedenkstätten+Gedenkstätte Bergen-Belsen +http://lobid.org/organisations/DE-MUS-348614#! DE-MUS-348614 Brauereimuseum im historischen Kronenbrauhaus zu Lüneburg +http://lobid.org/organisations/DE-MUS-349211#! DE-MUS-349211 Museumsküstenbahn Ostfriesland e.V. +http://lobid.org/organisations/DE-MUS-350112#! DE-MUS-350112 Historischer Verein Linderte e.V. +http://lobid.org/organisations/DE-MUS-350716#! DE-MUS-350716 Dorfmuseum Stelle +http://lobid.org/organisations/DE-MUS-351615#! DE-MUS-351615 Freilichtmuseum Tollhus up'n Wurnbarg +http://lobid.org/organisations/DE-MUS-353413#! DE-MUS-353413 Heimatmuseum Lütgendortmund 1988 e.V. +http://lobid.org/organisations/DE-MUS-353715#! DE-MUS-353715 Haniel Museum +http://lobid.org/organisations/DE-MUS-354812#! DE-MUS-354812 Museum im Bügeleisenhaus +http://lobid.org/organisations/DE-MUS-356016#! DE-MUS-356016 Lepra-Museum +http://lobid.org/organisations/DE-MUS-356610#! DE-MUS-356610 Heimatmuseum Schermbeck +http://lobid.org/organisations/DE-MUS-358710#! DE-MUS-358710 Freiligrath-Museum +http://lobid.org/organisations/DE-MUS-359015#! DE-MUS-359015 Burg Eltz +http://lobid.org/organisations/DE-MUS-359119#! DE-MUS-359119 Jüdisches Museum Raschi-Haus +http://lobid.org/organisations/DE-MUS-359317#! DE-MUS-359317 Geesthacht Museum +http://lobid.org/organisations/DE-MUS-359619#! DE-MUS-359619 Oldenburger Wallmuseum +http://lobid.org/organisations/DE-MUS-360614#! DE-MUS-360614 Informationszentrum Gerlas +http://lobid.org/organisations/DE-MUS-361617#! DE-MUS-361617 Museumsbahn 'Dampfbahn Fränkische Schweiz' +http://lobid.org/organisations/DE-MUS-361815#! DE-MUS-361815 Heimatmuseum Ergoldsbach +http://lobid.org/organisations/DE-MUS-362912#! DE-MUS-362912 Allgäuer Burgenmuseum +http://lobid.org/organisations/DE-MUS-365817#! DE-MUS-365817 Feuerwehrmuseum Mechenried +http://lobid.org/organisations/DE-MUS-365911#! DE-MUS-365911 Kristallmuseum Riedenburg +http://lobid.org/organisations/DE-MUS-366414#! DE-MUS-366414 Feuerwehrhaus - Abteilung Alte Geräte +http://lobid.org/organisations/DE-MUS-367511#! DE-MUS-367511 Heimatmuseum Stadtsteinach +http://lobid.org/organisations/DE-MUS-368712#! DE-MUS-368712 Privates Mineralienmuseum +http://lobid.org/organisations/DE-MUS-369017#! DE-MUS-369017 Glasmuseum Freizeithaus +http://lobid.org/organisations/DE-MUS-369517#! DE-MUS-369517 Die Riesengebirgsstube +http://lobid.org/organisations/DE-MUS-370418#! DE-MUS-370418 Mühlenensemble in Mitling-Mark +http://lobid.org/organisations/DE-MUS-370512#! DE-MUS-370512 Weserburg+Museum für Moderne Kunst +http://lobid.org/organisations/DE-MUS-371515#! DE-MUS-371515 Glasmuseum Hadamar +http://lobid.org/organisations/DE-MUS-373917#! DE-MUS-373917 Feuerwehrmuseum Salzbergen +http://lobid.org/organisations/DE-MUS-374514#! DE-MUS-374514 Lutherstiege bei St. Anna +http://lobid.org/organisations/DE-MUS-377211#! DE-MUS-377211 Handwebmuseum Rupperath +http://lobid.org/organisations/DE-MUS-378318#! DE-MUS-378318 Fischereimuseum Bergheim an der Sieg +http://lobid.org/organisations/DE-MUS-379519#! DE-MUS-379519 Baumberger-Sandstein-Museum +http://lobid.org/organisations/DE-MUS-379717#! DE-MUS-379717 Württembergische Trachten und Mühlen +http://lobid.org/organisations/DE-MUS-379811#! DE-MUS-379811 Stadtmuseum Isny +http://lobid.org/organisations/DE-MUS-380118#! DE-MUS-380118 Heimatmuseum Pfarrscheuer +http://lobid.org/organisations/DE-MUS-381111#! DE-MUS-381111 Heimatmuseum Baunach +http://lobid.org/organisations/DE-MUS-382218#! DE-MUS-382218 Carl-Orff Museum +http://lobid.org/organisations/DE-MUS-384610#! DE-MUS-384610 Heimat- und Hafner-Museum +http://lobid.org/organisations/DE-MUS-385019#! DE-MUS-385019 Heimatmuseum Holzkirchhausen +http://lobid.org/organisations/DE-MUS-386210#! DE-MUS-386210 Heimatmuseum im Hartmannhaus +http://lobid.org/organisations/DE-MUS-387119#! DE-MUS-387119 Museum Naila +http://lobid.org/organisations/DE-MUS-387317#! DE-MUS-387317 Hammerschmiede Naichen +http://lobid.org/organisations/DE-MUS-387411#! DE-MUS-387411 Stadtmuseum Neuötting +http://lobid.org/organisations/DE-MUS-387515#! DE-MUS-387515 Heimatmuseum Pfuhl +http://lobid.org/organisations/DE-MUS-388518#! DE-MUS-388518 Domschatz- und Diözesanmuseum +http://lobid.org/organisations/DE-MUS-388810#! DE-MUS-388810 Lebzelterei- u. Wachsziehereimuseum +http://lobid.org/organisations/DE-MUS-390016#! DE-MUS-390016 Bäuerliches Museum im ""Achentaler Heimathaus"" +http://lobid.org/organisations/DE-MUS-390818#! DE-MUS-390818 Kulturgeschichte im Gunnar-Westerhaus Sammlung Graf Luxburg +http://lobid.org/organisations/DE-MUS-392314#! DE-MUS-392314 Archäologisches Museum der Stadt Weißenhorn +http://lobid.org/organisations/DE-MUS-392918#! DE-MUS-392918 Johanna Stahl-Zentrum für jüdische Geschichte und Kultur in Unterfranken +http://lobid.org/organisations/DE-MUS-393119#! DE-MUS-393119 Rotkreuz-Museum Berlin +http://lobid.org/organisations/DE-MUS-394914#! DE-MUS-394914 Heimatmuseum Mittenaar-Bicken +http://lobid.org/organisations/DE-MUS-395219#! DE-MUS-395219 Industrie- und Heimatmuseum Solms +http://lobid.org/organisations/DE-MUS-395313#! DE-MUS-395313 Feld- und Grubenbahn-Museum +http://lobid.org/organisations/DE-MUS-395417#! DE-MUS-395417 Rohnstädter Heimatstube +http://lobid.org/organisations/DE-MUS-395511#! DE-MUS-395511 Heimatstuben +http://lobid.org/organisations/DE-MUS-397017#! DE-MUS-397017 Brennereimuseum Haselünne +http://lobid.org/organisations/DE-MUS-397715#! DE-MUS-397715 Heimatstube Altenau-Schulenberg +http://lobid.org/organisations/DE-MUS-399013#! DE-MUS-399013 Museum Moorseer Mühle +http://lobid.org/organisations/DE-MUS-400311#! DE-MUS-400311 Plakatmuseum am Niederrhein +http://lobid.org/organisations/DE-MUS-401116#! DE-MUS-401116 Praetorium Köln +http://lobid.org/organisations/DE-MUS-401418#! DE-MUS-401418 Weserrenaissance-Museum Schloss Brake +http://lobid.org/organisations/DE-MUS-401814#! DE-MUS-401814 LWL-Industriemuseum+Schiffshebewerk Henrichenburg +http://lobid.org/organisations/DE-MUS-403112#! DE-MUS-403112 Schulhausmuseum +http://lobid.org/organisations/DE-MUS-403716#! DE-MUS-403716 Heimatmuseum Wanderup +http://lobid.org/organisations/DE-MUS-404719#! DE-MUS-404719 Historische Ausstellung Krupp +http://lobid.org/organisations/DE-MUS-405618#! DE-MUS-405618 Heimatmuseum Merzenich +http://lobid.org/organisations/DE-MUS-406517#! DE-MUS-406517 Heimatmuseum Neukirchen +http://lobid.org/organisations/DE-MUS-407416#! DE-MUS-407416 Brückenmuseum Geislingen +http://lobid.org/organisations/DE-MUS-407916#! DE-MUS-407916 Kathree Häusle +http://lobid.org/organisations/DE-MUS-409016#! DE-MUS-409016 Museum 'Molerhiisli' +http://lobid.org/organisations/DE-MUS-409714#! DE-MUS-409714 Museum Würth mit Museum für Schrauben und Gewinde +http://lobid.org/organisations/DE-MUS-410511#! DE-MUS-410511 Museum für Volkskunst - Sammlung Hagenlocher +http://lobid.org/organisations/DE-MUS-410917#! DE-MUS-410917 Museum im Hirsch +http://lobid.org/organisations/DE-MUS-411316#! DE-MUS-411316 Erinnerungsstätte ""Männer von Brettheim"" +http://lobid.org/organisations/DE-MUS-411410#! DE-MUS-411410 Württembergisches Landesmuseum / Dominikanermuseum Rottweil +http://lobid.org/organisations/DE-MUS-411514#! DE-MUS-411514 Kloster-Museum St. Märgen +http://lobid.org/organisations/DE-MUS-411712#! DE-MUS-411712 Heimatstube Modosch +http://lobid.org/organisations/DE-MUS-412111#! DE-MUS-412111 Keramikmuseum Staufen - Außenstelle des Badischen Landesmuseums Karlsruhe +http://lobid.org/organisations/DE-MUS-412611#! DE-MUS-412611 Marhördter Sägmühlmuseum +http://lobid.org/organisations/DE-MUS-412819#! DE-MUS-412819 Historische Dampfzüge-Achertalbahn +http://lobid.org/organisations/DE-MUS-413718#! DE-MUS-413718 Internationales Luftfahrt-Museum Manfred Pflumm +http://lobid.org/organisations/DE-MUS-413916#! DE-MUS-413916 Radiomuseum +http://lobid.org/organisations/DE-MUS-414315#! DE-MUS-414315 Volkskundliches Gerätemuseum +http://lobid.org/organisations/DE-MUS-415818#! DE-MUS-415818 Schloß Britz +http://lobid.org/organisations/DE-MUS-416019#! DE-MUS-416019 Anna-Seghers-Museum +http://lobid.org/organisations/DE-MUS-418317#! DE-MUS-418317 Heimatstube Rinsdorf +http://lobid.org/organisations/DE-MUS-418411#! DE-MUS-418411 Stadtmuseum Bocholt +http://lobid.org/organisations/DE-MUS-418515#! DE-MUS-418515 Basaltpark Bad Marienberg +http://lobid.org/organisations/DE-MUS-419810#! DE-MUS-419810 Museum am Danewerk/Danevirke Museum +http://lobid.org/organisations/DE-MUS-421318#! DE-MUS-421318 Heimatmuseum Ingersleben +http://lobid.org/organisations/DE-MUS-421516#! DE-MUS-421516 Internationales Trachten- und Volkskunstmuseum Seebach +http://lobid.org/organisations/DE-MUS-421610#! DE-MUS-421610 Jüdisches Museum Westfalen +http://lobid.org/organisations/DE-MUS-422019#! DE-MUS-422019 Süchtelner Heimatmuseum Viersen +http://lobid.org/organisations/DE-MUS-422217#! DE-MUS-422217 Heimatstube Hohenhameln +http://lobid.org/organisations/DE-MUS-424213#! DE-MUS-424213 Stadt- und Schulmuseum Ronneburg +http://lobid.org/organisations/DE-MUS-424817#! DE-MUS-424817 KZ-Gedenkstätte Sandhofen +http://lobid.org/organisations/DE-MUS-425414#! DE-MUS-425414 Museum Schloss Neckarhausen +http://lobid.org/organisations/DE-MUS-426511#! DE-MUS-426511 Heimatmuseum Fürstenwerder +http://lobid.org/organisations/DE-MUS-428215#! DE-MUS-428215 Franz Liszt - Museum +http://lobid.org/organisations/DE-MUS-428319#! DE-MUS-428319 Bauernhausmuseum des Landkreises Erding +http://lobid.org/organisations/DE-MUS-428913#! DE-MUS-428913 Schloß Rosenau +http://lobid.org/organisations/DE-MUS-429218#! DE-MUS-429218 Haus der Wannsee-Konferenz +http://lobid.org/organisations/DE-MUS-429510#! DE-MUS-429510 SPSG / Schloß Babelsberg +http://lobid.org/organisations/DE-MUS-429614#! DE-MUS-429614 Schloss Freienwalde mit Walther-Rathenau Gedenkstätte +http://lobid.org/organisations/DE-MUS-430817#! DE-MUS-430817 Anatomische Sammlung +http://lobid.org/organisations/DE-MUS-431112#! DE-MUS-431112 Heimatstube des Harzklub-ZV Hahnenklee-Bockswiese mit Paul-Lincke-Ecke +http://lobid.org/organisations/DE-MUS-432313#! DE-MUS-432313 Stadtmuseum Euskirchen +http://lobid.org/organisations/DE-MUS-433712#! DE-MUS-433712 Heimat- und Kulturkreis Westrich e.V. +http://lobid.org/organisations/DE-MUS-434819#! DE-MUS-434819 Deutsches Kartoffelmuseum +http://lobid.org/organisations/DE-MUS-437412#! DE-MUS-437412 Westpfälzer Musikantenmuseum Mackenbach +http://lobid.org/organisations/DE-MUS-438019#! DE-MUS-438019 Gemäldeausstellung der Malerin Gerda Dürrbaum +http://lobid.org/organisations/DE-MUS-439116#! DE-MUS-439116 Haus der Ikonen +http://lobid.org/organisations/DE-MUS-439814#! DE-MUS-439814 Missionszentrale der Schönstätter Marienschwestern +http://lobid.org/organisations/DE-MUS-440017#! DE-MUS-440017 Galerie im Alten Rathaus +http://lobid.org/organisations/DE-MUS-440715#! DE-MUS-440715 Wenzel-Hablik-Stiftung Itzehoe +http://lobid.org/organisations/DE-MUS-440913#! DE-MUS-440913 Heimatmuseum Horchheim +http://lobid.org/organisations/DE-MUS-442711#! DE-MUS-442711 Johann Winter-Museum+Heilkundemuseum e.V. +http://lobid.org/organisations/DE-MUS-443818#! DE-MUS-443818 Heimatstube Kamern +http://lobid.org/organisations/DE-MUS-445418#! DE-MUS-445418 Heimatmuseum Groitzsch +http://lobid.org/organisations/DE-MUS-445814#! DE-MUS-445814 Landwirtschaftmuseum Bad Berleburg +http://lobid.org/organisations/DE-MUS-446515#! DE-MUS-446515 Stadtmuseum Medebach +http://lobid.org/organisations/DE-MUS-449816#! DE-MUS-449816 Museen des Altmarkkreises Salzwedel, Langobardenwerkstatt +http://lobid.org/organisations/DE-MUS-450915#! DE-MUS-450915 Sumelocenna - Römisches Stadtmuseum +http://lobid.org/organisations/DE-MUS-451116#! DE-MUS-451116 Osterei Museum +http://lobid.org/organisations/DE-MUS-451710#! DE-MUS-451710 Museum Wald und Umwelt +http://lobid.org/organisations/DE-MUS-452619#! DE-MUS-452619 Fürst-Pückler-Museum, Schloss+Marstall Branitz +http://lobid.org/organisations/DE-MUS-453112#! DE-MUS-453112 Aktives Museum der Handweberei +http://lobid.org/organisations/DE-MUS-453310#! DE-MUS-453310 Heimatstuben Hetzdorf +http://lobid.org/organisations/DE-MUS-453518#! DE-MUS-453518 Schlossmuseum Oranienburg +http://lobid.org/organisations/DE-MUS-454219#! DE-MUS-454219 Overbeck-Museum +http://lobid.org/organisations/DE-MUS-454813#! DE-MUS-454813 Museum Kronberger Malerkolonie +http://lobid.org/organisations/DE-MUS-456215#! DE-MUS-456215 Feuerwehrmuseum Hordorf +http://lobid.org/organisations/DE-MUS-456517#! DE-MUS-456517 Museum Heimatstube Assel +http://lobid.org/organisations/DE-MUS-457010#! DE-MUS-457010 Heimatstube Groß Lafferde +http://lobid.org/organisations/DE-MUS-460011#! DE-MUS-460011 Carl-Lohse-Galerie und Heimatmuseum +http://lobid.org/organisations/DE-MUS-460115#! DE-MUS-460115 Neue Sächsische Galerie +http://lobid.org/organisations/DE-MUS-461410#! DE-MUS-461410 Museum im Türmchen +http://lobid.org/organisations/DE-MUS-461910#! DE-MUS-461910 Mühlhäuser Museen+St. Marien +http://lobid.org/organisations/DE-MUS-462017#! DE-MUS-462017 Museum Gräfenhain-Nauendorf +http://lobid.org/organisations/DE-MUS-463114#! DE-MUS-463114 Berliner Torturm +http://lobid.org/organisations/DE-MUS-463218#! DE-MUS-463218 Heimatmuseum Teltow +http://lobid.org/organisations/DE-MUS-464617#! DE-MUS-464617 Historisches Museum 'Alte Münze' +http://lobid.org/organisations/DE-MUS-464815#! DE-MUS-464815 Dorfmuseum Görzig +http://lobid.org/organisations/DE-MUS-465610#! DE-MUS-465610 Käthe-Kruse-Puppen-Ausstellung +http://lobid.org/organisations/DE-MUS-466519#! DE-MUS-466519 Wolhynisches Umsiedler-Museum +http://lobid.org/organisations/DE-MUS-466613#! DE-MUS-466613 Westwall-Museum ""Katzenkopf"" +http://lobid.org/organisations/DE-MUS-467512#! DE-MUS-467512 Städtische Galerie Ostfildern +http://lobid.org/organisations/DE-MUS-468317#! DE-MUS-468317 Hammer- und Waffenschmiede-Museum Hexenagger +http://lobid.org/organisations/DE-MUS-468817#! DE-MUS-468817 Wallfahrtsmuseum Bruckmühl +http://lobid.org/organisations/DE-MUS-469414#! DE-MUS-469414 Burgenmuseum Eisenberg +http://lobid.org/organisations/DE-MUS-472613#! DE-MUS-472613 Sieblos-Museum Poppenhausen +http://lobid.org/organisations/DE-MUS-473314#! DE-MUS-473314 Deutsches Baumaschinenmodellmuseum +http://lobid.org/organisations/DE-MUS-474619#! DE-MUS-474619 Gedenkstätte Synagoge Dornum +http://lobid.org/organisations/DE-MUS-475310#! DE-MUS-475310 Muschelmuseum Hooksiel +http://lobid.org/organisations/DE-MUS-477410#! DE-MUS-477410 Gedenkstätte und NS-Dokumentationszentrum Bonn +http://lobid.org/organisations/DE-MUS-477816#! DE-MUS-477816 Miele-Museum +http://lobid.org/organisations/DE-MUS-480713#! DE-MUS-480713 Museum Castellum +http://lobid.org/organisations/DE-MUS-483118#! DE-MUS-483118 Schmiede- und Stellmachereimuseum Jevenstedt +http://lobid.org/organisations/DE-MUS-483618#! DE-MUS-483618 KZ-Gedenkstätte Husum-Schwesing +http://lobid.org/organisations/DE-MUS-483712#! DE-MUS-483712 Dauerausstellung ""Berkaer Badegeschichten"" +http://lobid.org/organisations/DE-MUS-485218#! DE-MUS-485218 Landwirtschaftsmuseum Reitscheid +http://lobid.org/organisations/DE-MUS-485312#! DE-MUS-485312 Zollmuseum Habkirchen +http://lobid.org/organisations/DE-MUS-485916#! DE-MUS-485916 Heimatmuseum Quierschied +http://lobid.org/organisations/DE-MUS-486315#! DE-MUS-486315 Residenz Kempten +http://lobid.org/organisations/DE-MUS-487110#! DE-MUS-487110 Kloster Hadmersleben +http://lobid.org/organisations/DE-MUS-488311#! DE-MUS-488311 Heimatstube des Fördervereins Domersleben e.V. +http://lobid.org/organisations/DE-MUS-488717#! DE-MUS-488717 Heimatmuseum +http://lobid.org/organisations/DE-MUS-489116#! DE-MUS-489116 Museumshof Meisdorf +http://lobid.org/organisations/DE-MUS-489210#! DE-MUS-489210 Heimatmuseum Mücheln +http://lobid.org/organisations/DE-MUS-490715#! DE-MUS-490715 Nähmaschinenmuseum Mey+Sammlung Albrecht Mey +http://lobid.org/organisations/DE-MUS-491510#! DE-MUS-491510 Gustav-Wolf-Kunstgalerie +http://lobid.org/organisations/DE-MUS-492919#! DE-MUS-492919 Heimatmuseum Ilvesheim +http://lobid.org/organisations/DE-MUS-493818#! DE-MUS-493818 Museum Kulturgeschichte der Hand +http://lobid.org/organisations/DE-MUS-494113#! DE-MUS-494113 Das Kartoffelmuseum +http://lobid.org/organisations/DE-MUS-494811#! DE-MUS-494811 Museum Baruther Glashütte +http://lobid.org/organisations/DE-MUS-495116#! DE-MUS-495116 Luftfahrtmuseum Finowfurt e.V. +http://lobid.org/organisations/DE-MUS-496119#! DE-MUS-496119 Das Bunkermuseum Emden +http://lobid.org/organisations/DE-MUS-497310#! DE-MUS-497310 Wasserschloß Neuenheerse - Intern. Museum f. Naturkunde u. Naturwissenschaften, Ethnografica u. Völkerkunde, Heimatmuseum +http://lobid.org/organisations/DE-MUS-498219#! DE-MUS-498219 LWL - Industriemuseum+Ziegelei Lage +http://lobid.org/organisations/DE-MUS-499212#! DE-MUS-499212 Haus für Kunst und Geschichte 'Altes Amtsgericht' +http://lobid.org/organisations/DE-MUS-616417#! DE-MUS-616417 Synagoge - Kultur und Tagungsstätte +http://lobid.org/organisations/DE-MUS-643310#! DE-MUS-643310 Galerie / Orangerie +http://lobid.org/organisations/DE-MUS-644115#! DE-MUS-644115 Akademie der Künste +http://lobid.org/organisations/DE-MUS-653614#! DE-MUS-653614 Kleinstes Haus +http://lobid.org/organisations/DE-MUS-658213#! DE-MUS-658213 Städtische Galerie Lehrte +http://lobid.org/organisations/DE-MUS-664317#! DE-MUS-664317 Stadthaus Ulm mit Ausstellung ""Archäologie u. Geschichte des Ulmer Münsterplatzes"" +http://lobid.org/organisations/DE-MUS-703917#! DE-MUS-703917 Kunstmuseum Hersbruck mit Skulpturengarten +http://lobid.org/organisations/DE-MUS-705111#! DE-MUS-705111 Oldtimer Museum Schloss Dennenlohe +http://lobid.org/organisations/DE-MUS-705715#! DE-MUS-705715 Museum Ritter - Sammlung Marli Hoppe-Ritter +http://lobid.org/organisations/DE-MUS-705913#! DE-MUS-705913 Stiftung Denkmal für die ermordeten Juden Europas - Ort der Information +http://lobid.org/organisations/DE-MUS-706416#! DE-MUS-706416 Wolf Kahlen Museum Bernau / Intermedia Arts Museum +http://lobid.org/organisations/DE-MUS-707815#! DE-MUS-707815 Oberlausitzer Forstmuseum +http://lobid.org/organisations/DE-MUS-708412#! DE-MUS-708412 Geschichtsort Villa ten Hompel +http://lobid.org/organisations/DE-MUS-709019#! DE-MUS-709019 Otto Dill-Museum +http://lobid.org/organisations/DE-MUS-710316#! DE-MUS-710316 Schloß Lichtenwalde - Schatzkammer +http://lobid.org/organisations/DE-MUS-711215#! DE-MUS-711215 Gartenkunst-Museum Schloß Fantaisie +http://lobid.org/organisations/DE-MUS-712010#! DE-MUS-712010 Sammlung volkskundlicher Granitsteine +http://lobid.org/organisations/DE-MUS-712812#! DE-MUS-712812 Forum Willy Brandt Berlin +http://lobid.org/organisations/DE-MUS-713513#! DE-MUS-713513 Donauschwäbisches Zentralmuseum +http://lobid.org/organisations/DE-MUS-713617#! DE-MUS-713617 Dokumentation Obersalzberg +http://lobid.org/organisations/DE-MUS-713815#! DE-MUS-713815 Kunstmuseum Pablo Picasso Münster +http://lobid.org/organisations/DE-MUS-714912#! DE-MUS-714912 Motorradmuseum Ducherow +http://lobid.org/organisations/DE-MUS-715811#! DE-MUS-715811 Museum Ostseebad Binz +http://lobid.org/organisations/DE-MUS-715915#! DE-MUS-715915 Historisches Uhren- und Musikgeräte-Museum zu Putbus +http://lobid.org/organisations/DE-MUS-719011#! DE-MUS-719011 Kunsthof Bad Salzelmen +http://lobid.org/organisations/DE-MUS-719115#! DE-MUS-719115 Bismarck-Museum Schönhausen +http://lobid.org/organisations/DE-MUS-719219#! DE-MUS-719219 Brikettfabrik ""Herrmannschacht"" Zeitz +http://lobid.org/organisations/DE-MUS-719313#! DE-MUS-719313 Sammlung Katharina II +http://lobid.org/organisations/DE-MUS-719417#! DE-MUS-719417 Deutsches Chemie-Museum Merseburg +http://lobid.org/organisations/DE-MUS-720110#! DE-MUS-720110 Jüdisches Museum Emmendingen +http://lobid.org/organisations/DE-MUS-721217#! DE-MUS-721217 Krippenmuseum Oberstadion mit Christoph-von-Schmid-Gedenkstätte +http://lobid.org/organisations/DE-MUS-721811#! DE-MUS-721811 Narrenmuseum der Narrenzunft Rheinfelden/Baden e.V. +http://lobid.org/organisations/DE-MUS-723515#! DE-MUS-723515 Druckereimuseum Hoya +http://lobid.org/organisations/DE-MUS-724112#! DE-MUS-724112 ErlebnisWald e.V. +http://lobid.org/organisations/DE-MUS-726212#! DE-MUS-726212 Feuerwehr Museum Sängerstadt +http://lobid.org/organisations/DE-MUS-726316#! DE-MUS-726316 Dorfmuseum Friedrichsaue +http://lobid.org/organisations/DE-MUS-726910#! DE-MUS-726910 Heimatstube Groß Kölzig +http://lobid.org/organisations/DE-MUS-728114#! DE-MUS-728114 Webhaus Kloster Zinna +http://lobid.org/organisations/DE-MUS-728218#! DE-MUS-728218 Dahmelandmuseum +http://lobid.org/organisations/DE-MUS-729013#! DE-MUS-729013 Prignitzer Kleinbahnmuseum Lindenberg +http://lobid.org/organisations/DE-MUS-729617#! DE-MUS-729617 Nebeliner Heimatstube +http://lobid.org/organisations/DE-MUS-730112#! DE-MUS-730112 Strohhaus Neuzelle - Museumshof ländlicher Alltagskultur +http://lobid.org/organisations/DE-MUS-731219#! DE-MUS-731219 Bauernmuseum Rühstädt +http://lobid.org/organisations/DE-MUS-732118#! DE-MUS-732118 Technisches Denkmal ""Holländermühle"" +http://lobid.org/organisations/DE-MUS-732618#! DE-MUS-732618 Herrenhaus Wall +http://lobid.org/organisations/DE-MUS-732910#! DE-MUS-732910 Schloßmuseum Wolfshagen +http://lobid.org/organisations/DE-MUS-734010#! DE-MUS-734010 Sorbische Webstube Drebkau +http://lobid.org/organisations/DE-MUS-734812#! DE-MUS-734812 KZ Gedenkstätte Neuengamme - Aussenstelle Bullenhuser Damm +http://lobid.org/organisations/DE-MUS-735013#! DE-MUS-735013 Schiffahrtsmuseum der oldenburgischen Unterweser e.V. +Haus Borgstede & Becker +http://lobid.org/organisations/DE-MUS-735513#! DE-MUS-735513 Kuh- oder Freiheitsturm +http://lobid.org/organisations/DE-MUS-736016#! DE-MUS-736016 Historische Glashütte mit Museum +http://lobid.org/organisations/DE-MUS-736412#! DE-MUS-736412 Neues Museum - Staatliches Museum für Kunst und Design in Nürnberg +http://lobid.org/organisations/DE-MUS-736714#! DE-MUS-736714 Daimler Contemporary +http://lobid.org/organisations/DE-MUS-736818#! DE-MUS-736818 Gedenkstätte Berliner Mauer - Bernauer Straße +http://lobid.org/organisations/DE-MUS-736912#! DE-MUS-736912 Erinnerungsstätte Notaufnahmelager Marienfelde +http://lobid.org/organisations/DE-MUS-738512#! DE-MUS-738512 Luisengedenkstätte+Schloß Hohenzieritz +http://lobid.org/organisations/DE-MUS-738616#! DE-MUS-738616 Pommersches Bettenmuseum +http://lobid.org/organisations/DE-MUS-739213#! DE-MUS-739213 Museums-Bauernhaus Neemann +http://lobid.org/organisations/DE-MUS-739911#! DE-MUS-739911 Kunsthalle Würth +http://lobid.org/organisations/DE-MUS-740312#! DE-MUS-740312 Lambertsmühle +http://lobid.org/organisations/DE-MUS-740510#! DE-MUS-740510 Museum für Gartenkunst +http://lobid.org/organisations/DE-MUS-740718#! DE-MUS-740718 Mineralien- und Bergbaumuseum Hückelhoven +http://lobid.org/organisations/DE-MUS-740812#! DE-MUS-740812 Haus des Bergmanns +http://lobid.org/organisations/DE-MUS-740916#! DE-MUS-740916 Weberhaus mit Heimatstube St. Hubert +http://lobid.org/organisations/DE-MUS-742412#! DE-MUS-742412 Brahmshaus +http://lobid.org/organisations/DE-MUS-742714#! DE-MUS-742714 Museumshafen Flensburg e.V. +http://lobid.org/organisations/DE-MUS-744314#! DE-MUS-744314 Volkskundliche Sammlung +http://lobid.org/organisations/DE-MUS-744616#! DE-MUS-744616 Jean-Paul-Museum +http://lobid.org/organisations/DE-MUS-745317#! DE-MUS-745317 Harzer-Roller-Kanarien-Museum +http://lobid.org/organisations/DE-MUS-746018#! DE-MUS-746018 1. Sächsisches Spirituosenmuseum +http://lobid.org/organisations/DE-MUS-746810#! DE-MUS-746810 Hörselbergmuseum +http://lobid.org/organisations/DE-MUS-747813#! DE-MUS-747813 Anne Frank Zentrum e.V. +http://lobid.org/organisations/DE-MUS-748514#! DE-MUS-748514 Rechnermuseum Hochschule Furtwangen University +http://lobid.org/organisations/DE-MUS-749215#! DE-MUS-749215 Erstes Deutsches Türmermuseum +http://lobid.org/organisations/DE-MUS-749819#! DE-MUS-749819 Museum für Grabkreuze +http://lobid.org/organisations/DE-MUS-749913#! DE-MUS-749913 Urgeschichtliches Felsenhäusl-Museum +http://lobid.org/organisations/DE-MUS-750314#! DE-MUS-750314 Fleißerhaus +http://lobid.org/organisations/DE-MUS-751015#! DE-MUS-751015 Felix-Müller-Museum +http://lobid.org/organisations/DE-MUS-751515#! DE-MUS-751515 Museum Georg Schäfer +http://lobid.org/organisations/DE-MUS-752414#! DE-MUS-752414 50er Jahre Museum +http://lobid.org/organisations/DE-MUS-752518#! DE-MUS-752518 Hessisches Landesmuseum Darmstadt, Aussenstelle Abt. Schriftguss, Satz und Drucktechnik +http://lobid.org/organisations/DE-MUS-754816#! DE-MUS-754816 Handarbeitsmuseum Gröbern +http://lobid.org/organisations/DE-MUS-756218#! DE-MUS-756218 Blaudruckwerkstatt - Museum +http://lobid.org/organisations/DE-MUS-756510#! DE-MUS-756510 Garnisonmuseum Nürnberg +http://lobid.org/organisations/DE-MUS-756614#! DE-MUS-756614 Friedensmuseum Nürnberg e.V. +http://lobid.org/organisations/DE-MUS-756718#! DE-MUS-756718 Nürnberger Weizenbierglasmuseum und Hausbrauerei +http://lobid.org/organisations/DE-MUS-757919#! DE-MUS-757919 Frenker Heimatstuben +http://lobid.org/organisations/DE-MUS-758516#! DE-MUS-758516 Malermuseum Friedrich Leefers +http://lobid.org/organisations/DE-MUS-758818#! DE-MUS-758818 Waffelmuseum +http://lobid.org/organisations/DE-MUS-760118#! DE-MUS-760118 Allgäuer Bergbauernmuseum +http://lobid.org/organisations/DE-MUS-760618#! DE-MUS-760618 Heimatstube Zeuthen +http://lobid.org/organisations/DE-MUS-761017#! DE-MUS-761017 Altenstädter Museum +http://lobid.org/organisations/DE-MUS-761215#! DE-MUS-761215 Gaudnek-Museum +http://lobid.org/organisations/DE-MUS-761517#! DE-MUS-761517 Fränkisches Spitalmuseum Aub +http://lobid.org/organisations/DE-MUS-763013#! DE-MUS-763013 Museumsstadl Pitzen +http://lobid.org/organisations/DE-MUS-763815#! DE-MUS-763815 Vilstaler Bauernmuseum +http://lobid.org/organisations/DE-MUS-764214#! DE-MUS-764214 Höhlenmuseum mit Dorfmuseum +http://lobid.org/organisations/DE-MUS-764516#! DE-MUS-764516 Archäologisches Museum +http://lobid.org/organisations/DE-MUS-765217#! DE-MUS-765217 Mikrokosmos Cronheim - ein Dorf, drei Religionen +http://lobid.org/organisations/DE-MUS-765717#! DE-MUS-765717 Rotkreuz-Museum im Goßmannsdorfer Tor +http://lobid.org/organisations/DE-MUS-765811#! DE-MUS-765811 Heimathaus Neuchl - Anwesen +http://lobid.org/organisations/DE-MUS-770610#! DE-MUS-770610 Dorfmuseum Roßhaupten +http://lobid.org/organisations/DE-MUS-770912#! DE-MUS-770912 Haus der Heimat - Ludwig-Doerfler-Stiftung +http://lobid.org/organisations/DE-MUS-772418#! DE-MUS-772418 Heimatmuseum Wertingen +http://lobid.org/organisations/DE-MUS-772616#! DE-MUS-772616 Heimatmuseum Wiggensbach +http://lobid.org/organisations/DE-MUS-773713#! DE-MUS-773713 Mühldorfer JagdMUSSeum +http://lobid.org/organisations/DE-MUS-775615#! DE-MUS-775615 Dokumentations- und Gedenkstätte Rostock (DuG) +http://lobid.org/organisations/DE-MUS-777611#! DE-MUS-777611 Deutsches Museum - Verkehrszentrum +http://lobid.org/organisations/DE-MUS-778312#! DE-MUS-778312 Burg Neustadt-Glewe +http://lobid.org/organisations/DE-MUS-778718#! DE-MUS-778718 Lehmmuseum Gnevsdorf +http://lobid.org/organisations/DE-MUS-779919#! DE-MUS-779919 Johannes-Gillhoff-Stuv Glaisin +http://lobid.org/organisations/DE-MUS-780414#! DE-MUS-780414 Heimatstube Lubmin u. Fossilienmuseum +http://lobid.org/organisations/DE-MUS-780810#! DE-MUS-780810 Heimatstube der 'Dorfrepublik' Rüterberg +http://lobid.org/organisations/DE-MUS-782014#! DE-MUS-782014 Heimat- u. Kirchenmuseum Alt Jabel +http://lobid.org/organisations/DE-MUS-783111#! DE-MUS-783111 Porzellaneum +http://lobid.org/organisations/DE-MUS-785419#! DE-MUS-785419 Bachritterburg Kanzach +http://lobid.org/organisations/DE-MUS-785919#! DE-MUS-785919 Kl!ck Kindermuseum +http://lobid.org/organisations/DE-MUS-787217#! DE-MUS-787217 Museum für Fotografie SMB +http://lobid.org/organisations/DE-MUS-788512#! DE-MUS-788512 Glasmuseum Lette +http://lobid.org/organisations/DE-MUS-788710#! DE-MUS-788710 Museum für Ur- und Frühgeschichte +http://lobid.org/organisations/DE-MUS-788814#! DE-MUS-788814 Mainzer Fastnachtsmuseum +http://lobid.org/organisations/DE-MUS-789411#! DE-MUS-789411 Haus der Geschichte Wittenberg +http://lobid.org/organisations/DE-MUS-790416#! DE-MUS-790416 Bauernmuseum ""Alte Burgschäferei"" +http://lobid.org/organisations/DE-MUS-791315#! DE-MUS-791315 Werner Weckwerth Museum +http://lobid.org/organisations/DE-MUS-791419#! DE-MUS-791419 Dobergmuseum Bünde +http://lobid.org/organisations/DE-MUS-791513#! DE-MUS-791513 Georg-Lechner-Biermuseum +http://lobid.org/organisations/DE-MUS-793113#! DE-MUS-793113 Zollstockmuseum +http://lobid.org/organisations/DE-MUS-793717#! DE-MUS-793717 Hemmoorium, erd- und frühgeschichtliches Museum Hemmoor +http://lobid.org/organisations/DE-MUS-793915#! DE-MUS-793915 Freilicht- und Erlebnismuseum Ostfalen +http://lobid.org/organisations/DE-MUS-794012#! DE-MUS-794012 Archäologisches Museum Oldendorf (Luhe) +http://lobid.org/organisations/DE-MUS-794710#! DE-MUS-794710 LWL-Industriemuseum+Zeche Hannover +http://lobid.org/organisations/DE-MUS-795015#! DE-MUS-795015 Kunst- und Wunderkammer+Burg Trausnitz +http://lobid.org/organisations/DE-MUS-798014#! DE-MUS-798014 Historische Messerschmiede Mössingen +http://lobid.org/organisations/DE-MUS-798118#! DE-MUS-798118 Oldtimermuseum Meßkirch +http://lobid.org/organisations/DE-MUS-798816#! DE-MUS-798816 Museum Mengeringhausen +http://lobid.org/organisations/DE-MUS-799319#! DE-MUS-799319 Mühle Laar +http://lobid.org/organisations/DE-MUS-799517#! DE-MUS-799517 STATT-Museum +http://lobid.org/organisations/DE-MUS-799715#! DE-MUS-799715 Heimat Museum Hemmersdorf +http://lobid.org/organisations/DE-MUS-800919#! DE-MUS-800919 Panorama Museum +http://lobid.org/organisations/DE-MUS-801110#! DE-MUS-801110 Regionalmuseum im Schloß +http://lobid.org/organisations/DE-MUS-802311#! DE-MUS-802311 Museum Burg Falkenstein +http://lobid.org/organisations/DE-MUS-803210#! DE-MUS-803210 Museen des Altmarkkreises Salzwedel/Freilichtmuseum Diesdorf +http://lobid.org/organisations/DE-MUS-805310#! DE-MUS-805310 Landesmuseum für Vorgeschichte Halle +http://lobid.org/organisations/DE-MUS-805914#! DE-MUS-805914 Techn. Halloren-u. Salinemuseum +http://lobid.org/organisations/DE-MUS-807212#! DE-MUS-807212 Stiftung Gedenkstätten Sachsen-Anhalt Gedenkstätte Langenstein-Zwieberge +http://lobid.org/organisations/DE-MUS-808913#! DE-MUS-808913 Lyonel-Feininger-Galerie Quedlinburg +http://lobid.org/organisations/DE-MUS-810317#! DE-MUS-810317 Heimatmuseum Stolberg / Museum ""Kleines Bürgerhaus"" +http://lobid.org/organisations/DE-MUS-810619#! DE-MUS-810619 Stadt- und Kulturgeschichtliches Museum Torgau, Kurfürstliche Kanzlei +http://lobid.org/organisations/DE-MUS-811310#! DE-MUS-811310 Mahn-und Gedenkstätte Wernigerode +http://lobid.org/organisations/DE-MUS-811518#! DE-MUS-811518 Schloß Wernigerode +http://lobid.org/organisations/DE-MUS-814517#! DE-MUS-814517 Museum für Islamische Kunst SMB +http://lobid.org/organisations/DE-MUS-815114#! DE-MUS-815114 Alte Nationalgalerie SMB +http://lobid.org/organisations/DE-MUS-815718#! DE-MUS-815718 Vorderasiatisches Museum SMB +http://lobid.org/organisations/DE-MUS-817714#! DE-MUS-817714 Präparate- und Demonstrationssammlung -Humboldt-Universität- +http://lobid.org/organisations/DE-MUS-819210#! DE-MUS-819210 Museum Treptow +http://lobid.org/organisations/DE-MUS-819710#! DE-MUS-819710 Oderlandmuseum Bad Freienwalde +http://lobid.org/organisations/DE-MUS-820319#! DE-MUS-820319 Regionalmuseum Burg Beeskow +http://lobid.org/organisations/DE-MUS-820517#! DE-MUS-820517 Museum Burg Eisenhardt +http://lobid.org/organisations/DE-MUS-820611#! DE-MUS-820611 Heimatmuseum Bernau - Steintor - Henkerhaus - +http://lobid.org/organisations/DE-MUS-820715#! DE-MUS-820715 Clara-Zetkin-Gedenkstätte Birkenwerder +http://lobid.org/organisations/DE-MUS-820819#! DE-MUS-820819 Bauernmuseum Blankensee +http://lobid.org/organisations/DE-MUS-821614#! DE-MUS-821614 Brandenburgische Landesmuseen f. mod. Kunst+dkw. Kunstmuseum Dieselkraftwerk Cottbus +http://lobid.org/organisations/DE-MUS-822013#! DE-MUS-822013 Weißgerbermuseum Doberlug-Kirchhain +http://lobid.org/organisations/DE-MUS-822315#! DE-MUS-822315 Städtisches Museum Eisenhüttenstadt / Abt. Städtisches Museum / Abt. Städtische Galerie +http://lobid.org/organisations/DE-MUS-823412#! DE-MUS-823412 Museum Fürstenwalde +http://lobid.org/organisations/DE-MUS-824311#! DE-MUS-824311 Niederlausitz-Museum Luckau +http://lobid.org/organisations/DE-MUS-825210#! DE-MUS-825210 Binnenschifffahrts-Museum Oderberg +http://lobid.org/organisations/DE-MUS-827310#! DE-MUS-827310 SPSG / Schloß Sanssouci +http://lobid.org/organisations/DE-MUS-827414#! DE-MUS-827414 SPSG / Bildergalerie +http://lobid.org/organisations/DE-MUS-827914#! DE-MUS-827914 Museumsfabrik Pritzwalk +http://lobid.org/organisations/DE-MUS-828011#! DE-MUS-828011 Optik Industrie Museum Rathenow +http://lobid.org/organisations/DE-MUS-829514#! DE-MUS-829514 Heimatmuseum Treuenbrietzen +http://lobid.org/organisations/DE-MUS-829618#! DE-MUS-829618 Heimatstube Uebigau +http://lobid.org/organisations/DE-MUS-830217#! DE-MUS-830217 Stadtmuseum 'Alte Burg' Wittenberge +http://lobid.org/organisations/DE-MUS-830415#! DE-MUS-830415 Ostprignitzmuseum Wittstock +http://lobid.org/organisations/DE-MUS-831012#! DE-MUS-831012 Agroneum Alt Schwerin +http://lobid.org/organisations/DE-MUS-832015#! DE-MUS-832015 Museum Burg Stargard +http://lobid.org/organisations/DE-MUS-832213#! DE-MUS-832213 Museum Festung Dömitz +http://lobid.org/organisations/DE-MUS-833112#! DE-MUS-833112 Heimatmuseum und Galerie Graal-Müritz +http://lobid.org/organisations/DE-MUS-833414#! DE-MUS-833414 Geologische Landessammlung +http://lobid.org/organisations/DE-MUS-833810#! DE-MUS-833810 Ernst Barlach Stiftung +http://lobid.org/organisations/DE-MUS-834917#! DE-MUS-834917 Friedrich-Ludwig-Jahn-Gedenkstätte Lanz +http://lobid.org/organisations/DE-MUS-835014#! DE-MUS-835014 Burgmuseum +http://lobid.org/organisations/DE-MUS-835910#! DE-MUS-835910 Museum der Stadt Neustrelitz +http://lobid.org/organisations/DE-MUS-836517#! DE-MUS-836517 Fritz-Reuter-Literaturmuseum +http://lobid.org/organisations/DE-MUS-837614#! DE-MUS-837614 Heimatstube Rothenklempenow +http://lobid.org/organisations/DE-MUS-838211#! DE-MUS-838211 Staatliche Schlösser, Gärten und Kunstsammlungen Mecklenburg- Vorpommern+Staatliches Museum Schwerin +http://lobid.org/organisations/DE-MUS-838617#! DE-MUS-838617 Mecklenburgisches Volkskundemuseum/ Freilichtmuseum Schwerin-Mueß +http://lobid.org/organisations/DE-MUS-839610#! DE-MUS-839610 Heimatstube Usedom +http://lobid.org/organisations/DE-MUS-839912#! DE-MUS-839912 SCHABBELL Stadtgeschichtliches Museum der Hansestadt Wismar +http://lobid.org/organisations/DE-MUS-840313#! DE-MUS-840313 Museum Wolgast +http://lobid.org/organisations/DE-MUS-840813#! DE-MUS-840813 Silberbergwerk +http://lobid.org/organisations/DE-MUS-841316#! DE-MUS-841316 Schlossmuseum+Museen im Schloss Augustusburg/Jagd- u. Schlossgeschichte u. Erzgebirgisches Jagdtier- u. Vogelkundemuseum +http://lobid.org/organisations/DE-MUS-842819#! DE-MUS-842819 Museum 'Huthaus Einigkeit' +http://lobid.org/organisations/DE-MUS-843510#! DE-MUS-843510 Textil- und Kunstgewerbe +http://lobid.org/organisations/DE-MUS-844315#! DE-MUS-844315 Lohgerber Stadt- und Kreismuseum +http://lobid.org/organisations/DE-MUS-844419#! DE-MUS-844419 Stadtmuseum /Kleine Galerie Döbeln +http://lobid.org/organisations/DE-MUS-844617#! DE-MUS-844617 Museum und Technisches Denkmal 'Eisenhammer' Dorfchemnitz +http://lobid.org/organisations/DE-MUS-844711#! DE-MUS-844711 Museum 'Knochenstampfe' Dorfchemnitz +http://lobid.org/organisations/DE-MUS-845110#! DE-MUS-845110 Staatliche Ethnographische Sammlungen Sachsen+Museum für Völkerkunde +http://lobid.org/organisations/DE-MUS-846311#! DE-MUS-846311 Buchmuseum der SLUB +http://lobid.org/organisations/DE-MUS-847012#! DE-MUS-847012 Technische Sammlungen Dresden +http://lobid.org/organisations/DE-MUS-848411#! DE-MUS-848411 Stadt- und Bergbaumuseum Freiberg +http://lobid.org/organisations/DE-MUS-848619#! DE-MUS-848619 Museum im Schloß Frohburg +http://lobid.org/organisations/DE-MUS-848713#! DE-MUS-848713 Technisches Museum 'Frohnauer Hammer' +http://lobid.org/organisations/DE-MUS-849414#! DE-MUS-849414 Senckenberg+Museum für Naturkunde Görlitz +http://lobid.org/organisations/DE-MUS-849612#! DE-MUS-849612 Kulturhistorisches Museum Görlitz / Barockhaus Neißstr. 30 +http://lobid.org/organisations/DE-MUS-850315#! DE-MUS-850315 Museum Alte Lateinschule Großenhain +http://lobid.org/organisations/DE-MUS-850513#! DE-MUS-850513 Deutsches Damast- und Frottiermuseum +http://lobid.org/organisations/DE-MUS-850711#! DE-MUS-850711 Museum Burg Stein +http://lobid.org/organisations/DE-MUS-851412#! DE-MUS-851412 Lindigtmühle +http://lobid.org/organisations/DE-MUS-852113#! DE-MUS-852113 Museen Kohren-Sahlis Töpfermuseum +http://lobid.org/organisations/DE-MUS-852613#! DE-MUS-852613 Osterzgebirgsmuseum Schloss Lauenstein +http://lobid.org/organisations/DE-MUS-853116#! DE-MUS-853116 Museum der bildenden Künste Leipzig +http://lobid.org/organisations/DE-MUS-854119#! DE-MUS-854119 Museen im Grassi/Museum für Völkerkunde zu Leipzig +http://lobid.org/organisations/DE-MUS-854817#! DE-MUS-854817 Stadtmuseum Lengenfeld +http://lobid.org/organisations/DE-MUS-855310#! DE-MUS-855310 Museum Sächs.-Böhm. Erzgeb. im Bergmagazin +http://lobid.org/organisations/DE-MUS-855716#! DE-MUS-855716 Heimatmuseum Meerane +http://lobid.org/organisations/DE-MUS-855914#! DE-MUS-855914 Staatliche Porzellan - Manufaktur Meissen GmbH - Erlebniswelt Haus Meissen +http://lobid.org/organisations/DE-MUS-857014#! DE-MUS-857014 Heimatmuseum Neukirch +http://lobid.org/organisations/DE-MUS-857118#! DE-MUS-857118 Felsenburg Neurathen +http://lobid.org/organisations/DE-MUS-857910#! DE-MUS-857910 Bergbaumuseum Oelsnitz+Kul(T)our Betrieb des Erzgebirgskreises +http://lobid.org/organisations/DE-MUS-858215#! DE-MUS-858215 Museum Saigerhütte-Grünthal +http://lobid.org/organisations/DE-MUS-859718#! DE-MUS-859718 Deutsches Stuhlbaumuseum Rabenau / Sachsen e.V. +http://lobid.org/organisations/DE-MUS-859812#! DE-MUS-859812 Schloßbergmuseum Chemnitz / Burg Rabenstein +http://lobid.org/organisations/DE-MUS-861216#! DE-MUS-861216 Museum Göltzsch Rodewisch +http://lobid.org/organisations/DE-MUS-861810#! DE-MUS-861810 Stadtmuseum Schkeuditz +http://lobid.org/organisations/DE-MUS-862011#! DE-MUS-862011 Museum für bergmännische Volkskunst Schneeberg (MfbgVk) +http://lobid.org/organisations/AT-AKW#! AT-AKW AT-AKW AK Bibliothek Wien für Sozialwissenschaften +http://lobid.org/organisations/AT-WHBIB#! AT-WHBIB AT-WHBIB Dr.-Wilfried-Haslauer-Bibliothek (Forschungsinstitut für Politisch-Historische Studien) +http://lobid.org/organisations/DE-1244#! DE-1244 1244 Stadtbücherei Grünstadt +http://lobid.org/organisations/DE-34-40#! DE-34-40 34/40 Universität Kassel, Standort Holländischer Platz, Geschlossenes Magazin +http://lobid.org/organisations/DE-W91#! DE-W91 W 91 Diözesanbibliothek Würzburg +http://lobid.org/organisations/DE-F225#! DE-F225 F 225 Archäologisches Museum Frankfurt, Bibliothek +http://lobid.org/organisations/DE-B11s#! DE-B11s B 11s Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Hamburger Bahnhof - Museum für Gegenwart, Bibliothek +http://lobid.org/organisations/DE-M123#! DE-M123 M 123 Bayerisches Staatsministerium für Familie, Arbeit und Soziales, Bibliothek +http://lobid.org/organisations/DE-Gp1#! DE-Gp1 Gp 1 Richard-Strauss-Institut, Bibliothek +http://lobid.org/organisations/DE-M25#! DE-M25 M 25 Bayerisches Staatsministerium des Innern, für Sport und Integration, Bibliothek +http://lobid.org/organisations/DE-M120#! DE-M120 M 120 Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten, Bibliothek +http://lobid.org/organisations/DE-M122#! DE-M122 M 122 Bayerisches Staatsministerium für Wirtschaft, Landesentwicklung und Energie / Bibliothek +http://lobid.org/organisations/DE-M17#! DE-M17 M 17 Bayerisches Nationalmuseum, Bibliothek +http://lobid.org/organisations/DE-294-68#! DE-294-68 294/68 Marienhospital Herne, Klinikum der Ruhr-Universität Bochum, Service-Center für Lehre und Forschung, Bibliothek +http://lobid.org/organisations/DE-M124#! DE-M124 M 124 Bundesfinanzhof, Bibliothek +http://lobid.org/organisations/DE-Air1#! DE-Air1 Air 1 Fortbildungsinstitut der Bayerischen Polizei, Bibliothek +http://lobid.org/organisations/DE-M336#! DE-M336 M 336 Internationale Jugendbibliothek +http://lobid.org/organisations/DE-M158#! DE-M158 M 158 Bayerisches Landesamt für Statistik, Bibliothek +http://lobid.org/organisations/DE-1247#! DE-1247 1247 Evangelische Öffentliche Ringbibliothek Nikolai +http://lobid.org/organisations/DE-Ste9#! DE-Ste9 Ste 9 Stadtarchiv Stendal +http://lobid.org/organisations/DE-82-009#! DE-82-009 82/009 ACCESS e.V. - Materials + Processes, Bibliothek +http://lobid.org/organisations/DE-16-153#! DE-16-153 16/153 Universitätsklinik, Akademie für Gesundheitsberufe Heidelberg gGmbH, Bibliothek +http://lobid.org/organisations/DE-188-920#! DE-188-920 188/920 Freie Universität Berlin, Fachbereich Philosophie und Geisteswissenschaften, Philologische Bibliothek +http://lobid.org/organisations/DE-1256#! DE-1256 1256 Mediathek Müllheim, Öffentliche Bibliothek +http://lobid.org/organisations/DE-Brt1#! DE-Brt1 Brt 1 Berufsakademie Sachsen, Staatliche Studienakademie Breitenbrunn, Bibliothek +http://lobid.org/organisations/AT-UBTUG-FBCH1#! AT-UBTUG-FBCH1 AT-UBTUG-FBCH1 Technische Universität Graz, Universitätsbibliothek, Fachbibliothek für Chemie I +http://lobid.org/organisations/DE-B1566#! DE-B1566 B 1566 Heinrich-Böll-Stiftung, Archiv Grünes Gedächtnis +http://lobid.org/organisations/DE-Hv136#! DE-Hv136 Hv 136 Dritte Welt Forum in Hannover e.V., Archiv und Bibliothek +http://lobid.org/organisations/DE-5-180#! DE-5-180 5/180 Universität Bonn, Institut für Deutsches, Europäisches und Internationales Familienrecht, Bibliothek +http://lobid.org/organisations/DE-1266#! DE-1266 1266 See-Campus-Bibliothek +http://lobid.org/organisations/DE-Mtw1#! DE-Mtw1 Mtw 1 Marktarchiv Mittenwald +http://lobid.org/organisations/DE-Mdf1#! DE-Mdf1 Mdf 1 Stadtarchiv Mühldorf a. Inn +http://lobid.org/organisations/DE-Nbu1#! DE-Nbu1 Nbu 1 Stadtarchiv Neuburg a.d.Donau +http://lobid.org/organisations/DE-Trn1#! DE-Trn1 Trn 1 Stadtarchiv Traunstein +http://lobid.org/organisations/DE-Aug9#! DE-Aug9 Aug 9 Stadtarchiv Augsburg +http://lobid.org/organisations/DE-Bob1#! DE-Bob1 Bob 1 Stadtarchiv Bobingen +http://lobid.org/organisations/DE-82-335#! DE-82-335 82/335 Lehrstuhl für Computergestützte Analyse Technischer Systeme, Bibliothek +http://lobid.org/organisations/DE-Kon9#! DE-Kon9 Kon 9 Städtische Museen Konstanz, Bibliothek +http://lobid.org/organisations/DE-Ims1#! DE-Ims1 Ims 1 Stadtarchiv Immenstadt +http://lobid.org/organisations/DE-Ke2#! DE-Ke2 Ke 2 Stadtarchiv Kempten +http://lobid.org/organisations/DE-F226#! DE-F226 F 226 Amt für Lehrerbildung (AfL) Frankfurt am Main, Bibliothek Erwin-Stein-Haus +http://lobid.org/organisations/DE-Krb1#! DE-Krb1 Krb 1 Stadtarchiv Krumbach +http://lobid.org/organisations/DE-Num1#! DE-Num1 Num 1 Stadtarchiv Neu-Ulm +http://lobid.org/organisations/DE-Nrd1#! DE-Nrd1 Nrd 1 Stadtarchiv Nördlingen +http://lobid.org/organisations/DE-MUS-108812#! DE-MUS-108812 Oet 1 Heimatmuseum Oettingen +http://lobid.org/organisations/DE-Hen1#! DE-Hen1 Hen 1 Hochschule der Deutschen Gesetzlichen Unfallversicherung (HGU), University of Applied Sciences, Bibliothek +http://lobid.org/organisations/DE-Ans1#! DE-Ans1 Ans 1 Stadtarchiv Ansbach +http://lobid.org/organisations/DE-Hzg1#! DE-Hzg1 Hzg 1 Stadtarchiv Herzogenaurach +http://lobid.org/organisations/DE-Hst1#! DE-Hst1 Hst 1 Stadtarchiv Höchstadt/A. +http://lobid.org/organisations/DE-Nsa1#! DE-Nsa1 Nsa 1 Stadtarchiv Neustadt/Aisch +http://lobid.org/organisations/DE-82-774#! DE-82-774 82/774 Notaufnahme, Bibliothek +http://lobid.org/organisations/DE-Wsb1#! DE-Wsb1 Wsb 1 Stadtarchiv Weißenburg i. Bay. +http://lobid.org/organisations/DE-Kon10#! DE-Kon10 Kon 10 Sozialwissenschaftliches Archiv Konstanz - Alfred-Schütz-Gedächtnis-Archiv +http://lobid.org/organisations/DE-Dau2#! DE-Dau2 Dau 2 KZ-Gedenkstätte Dachau, Archiv und Bibliothek +http://lobid.org/organisations/DE-Mil1#! DE-Mil1 Mil 1 Stadtarchiv Miltenberg +http://lobid.org/organisations/DE-Bh3#! DE-Bh3 Bh 3 Stadtarchiv Bayreuth +http://lobid.org/organisations/DE-Kla1#! DE-Kla1 Kla 1 Stadtarchiv Kirchenlamitz +http://lobid.org/organisations/DE-Stn1#! DE-Stn1 Stn 1 Stadtarchiv Stadtsteinach +http://lobid.org/organisations/DE-Dig1#! DE-Dig1 Dig 1 Stadtarchiv Dingolfing +http://lobid.org/organisations/DE-82-775#! DE-82-775 82/775 Institut für Neuroanatomie, Bibliothek +http://lobid.org/organisations/DE-Pfk1#! DE-Pfk1 Pfk 1 Stadtarchiv Pfarrkirchen +http://lobid.org/organisations/DE-Rdb1#! DE-Rdb1 Rdb 1 Stadtarchiv Riedenburg +http://lobid.org/organisations/DE-Str2#! DE-Str2 Str 2 Stadtarchiv Straubing +http://lobid.org/organisations/DE-Zwl1#! DE-Zwl1 Zwl 1 Stadtarchiv Zwiesel +http://lobid.org/organisations/DE-Amb1#! DE-Amb1 Amb 1 Stadtarchiv Amberg +http://lobid.org/organisations/DE-Blf1#! DE-Blf1 Blf 1 Stadtarchiv Burglengenfeld +http://lobid.org/organisations/DE-Dtf1#! DE-Dtf1 Dtf 1 Stadtarchiv Dietfurt +http://lobid.org/organisations/DE-Nsw1#! DE-Nsw1 Nsw 1 Stadtarchiv Neustadt a.d.Waldnaab +http://lobid.org/organisations/DE-Rch1#! DE-Rch1 Rch 1 Offensive Junger Christen e.V., OJC-Bibliothek +http://lobid.org/organisations/DE-Srb1#! DE-Srb1 Srb 1 Stadtarchiv Sulzbach-Rosenberg +http://lobid.org/organisations/DE-1278#! DE-1278 1278 IU Internationale Hochschule GmbH / Library and Information Services +http://lobid.org/organisations/DE-D209a#! DE-D209a D 209a Museen der Stadt Dresden, Bibliothek des Stadtmuseums +http://lobid.org/organisations/DE-4-450#! DE-4-450 4/450 Universität Marburg, Centrum für Nah- und Mittelost-Studien +http://lobid.org/organisations/DE-Si2#! DE-Si2 Si 2 Wissenschaftliche Bibliothek zur Regionalgeschichte im Stadtarchiv Siegen +http://lobid.org/organisations/DE-Wil6#! DE-Wil6 Wil 6 Fachinformationsstelle / Bibliothek der Bundeswehr Wilhelmshaven (FISt WHV) +http://lobid.org/organisations/DE-1285#! DE-1285 1285 Gemeindebibliothek Hude +http://lobid.org/organisations/DE-1318#! DE-1318 1318 Stadtbücherei Buchholz +http://lobid.org/organisations/DE-25-177#! DE-25-177 25/177 Service Center Studium - Career Services, Mediathek +http://lobid.org/organisations/DE-L326#! DE-L326 L 326 Bach-Archiv, Bibliothek +http://lobid.org/organisations/DE-B171-2#! DE-B171-2 B 171/2 Stiftung Stadtmuseum Berlin, Sammlung Varieté Zirkus Kabarett, Bibliothek +http://lobid.org/organisations/DE-Hb4#! DE-Hb4 Hb 4 Kleist-Archiv Sembdner +http://lobid.org/organisations/DE-185#! DE-185 185 Leibniz-Institut für Länderkunde, Geographische Zentralbibliothek +http://lobid.org/organisations/DE-1304#! DE-1304 1304 Stadtbibliothek Lohr a. Main +http://lobid.org/organisations/DE-294-69#! DE-294-69 294/69 Landesspracheninstitut in der Ruhr-Universität Bochum +http://lobid.org/organisations/DE-26-994#! DE-26-994 26/994 Universität Gießen, Bibliothekssystem e-books +http://lobid.org/organisations/DE-Str3#! DE-Str3 Str 3 Zeitungsgruppe Straubinger Tagblatt, Landshuter Zeitung, Verlagsarchiv +http://lobid.org/organisations/DE-1336#! DE-1336 1336 Gemeindebücherei Grenzach-Wyhlen +http://lobid.org/organisations/DE-Stg279#! DE-Stg279 Stg 279 Archiv Baumeister im Kunstmuseum Stuttgart +http://lobid.org/organisations/DE-Ffb2#! DE-Ffb2 Ffb 2 Zentrum für Luft- und Raumfahrtmedizin der Luftwaffe, Fachinformationsstelle +http://lobid.org/organisations/DE-11-10#! DE-11-10 11/10 Humboldt-Universität zu Berlin, Universitätsbibliothek, Elektronische Ressourcen +http://lobid.org/organisations/DE-WWW5-CELL#! DE-WWW5-CELL WWW 5/CELL Cell Press Online - Konsortium Baden-Württemberg +http://lobid.org/organisations/DE-1291#! DE-1291 1291 Stadtbücherei Erding +http://lobid.org/organisations/DE-1299#! DE-1299 1299 Gemeindebibliothek Grünwald +http://lobid.org/organisations/DE-1306#! DE-1306 1306 Gemeindebücherei im Kultur- und Tagungszentrum +http://lobid.org/organisations/DE-1308#! DE-1308 1308 Stadtbücherei Neuötting +http://lobid.org/organisations/DE-1309#! DE-1309 1309 Stadtbücherei Penzberg +http://lobid.org/organisations/DE-1312#! DE-1312 1312 Stadtbücherei Selb +http://lobid.org/organisations/DE-1313#! DE-1313 1313 Stadtbücherei Simbach a. Inn +http://lobid.org/organisations/DE-1314#! DE-1314 1314 Gemeindebücherei Tutzing +http://lobid.org/organisations/DE-1315#! DE-1315 1315 Gemeindebücherei Unterhaching +http://lobid.org/organisations/DE-1345#! DE-1345 1345 Stadtbibliothek Salzkotten +http://lobid.org/organisations/DE-M506#! DE-M506 M 506 Bayerischer Verwaltungsgerichtshof, Bibliothek +http://lobid.org/organisations/DE-Hil3-3#! DE-Hil3-3 Hil 3/3 HAWK Hochschule für angewandte Wissenschaft und Kunst Hildesheim/ Holzminden/ Göttingen, Bibliothek Management, Soziale Arbeit, Bauen +http://lobid.org/organisations/DE-Stg282#! DE-Stg282 Stg 282 Kommission für geschichtliche Landeskunde in Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-1350#! DE-1350 1350 Samtgemeindebücherei Tostedt +http://lobid.org/organisations/DE-1354#! DE-1354 1354 Stadtbibliothek Neustadt a.d. Orla +http://lobid.org/organisations/DE-1357#! DE-1357 1357 Stadtbibliothek Brotterode +http://lobid.org/organisations/DE-1413#! DE-1413 1413 Gemeindebücherei Friedenfels +http://lobid.org/organisations/DE-1418#! DE-1418 1418 Gemeindebücherei Grasbrunn +http://lobid.org/organisations/DE-1803#! DE-1803 1803 Stadtbücherei Riedenburg +http://lobid.org/organisations/DE-1428#! DE-1428 1428 Stadtbücherei Lindenberg i. Allg. +http://lobid.org/organisations/DE-1802#! DE-1802 1802 Gemeindebücherei Hallbergmoos +http://lobid.org/organisations/DE-1797#! DE-1797 1797 Stadt- und Pfarrbücherei Plattling +http://lobid.org/organisations/DE-1447#! DE-1447 1447 Gemeindebücherei Ustersbach +http://lobid.org/organisations/DE-1452#! DE-1452 1452 Stadtbibliothek Zeil am Main +http://lobid.org/organisations/DE-1456#! DE-1456 1456 Gemeindebücherei Eichenau +http://lobid.org/organisations/DE-1463#! DE-1463 1463 Gemeindebücherei Planegg +http://lobid.org/organisations/DE-1464#! DE-1464 1464 Gemeindebücherei Tacherting +http://lobid.org/organisations/DE-1467#! DE-1467 1467 Kreis- und Stadtbibliothek Dingolfing +http://lobid.org/organisations/DE-1787#! DE-1787 1787 Katholische Öffentliche Bücherei Oberpleichfeld +http://lobid.org/organisations/DE-1471#! DE-1471 1471 Gemeindebücherei Kümmersbruck +http://lobid.org/organisations/DE-1473#! DE-1473 1473 Stadtbücherei Oberviechtach +http://lobid.org/organisations/DE-1475#! DE-1475 1475 Stadtbücherei Neustadt b. Coburg +http://lobid.org/organisations/DE-1477#! DE-1477 1477 Gemeindebücherei Eckental +http://lobid.org/organisations/DE-1480#! DE-1480 1480 Stadtbücherei Höchstadt a. d. Aisch +http://lobid.org/organisations/DE-1481#! DE-1481 1481 Stadtbibliothek Leutershausen +http://lobid.org/organisations/DE-1492#! DE-1492 1492 Gemeindebücherei Kahl am Main +http://lobid.org/organisations/DE-1493#! DE-1493 1493 Stadtbibliothek Karlstadt in der Hohen Kemenate +http://lobid.org/organisations/DE-1504#! DE-1504 1504 Katholische Öffentliche Bücherei Ahrain +http://lobid.org/organisations/DE-1507#! DE-1507 1507 Gemeinde- und Schulbücherei Altdorf +http://lobid.org/organisations/DE-1510#! DE-1510 1510 St. Michaelsbund - kirchliche Büchereiarbeit der Diözese Augsburg +http://lobid.org/organisations/DE-1514#! DE-1514 1514 Gemeindebücherei Bernried-Birket +http://lobid.org/organisations/DE-1515#! DE-1515 1515 Katholische Öffentliche Bücherei Birkenfeld +http://lobid.org/organisations/DE-1786#! DE-1786 1786 Katholische Öffentliche Bücherei Ebenhausen +http://lobid.org/organisations/DE-1780#! DE-1780 1780 Katholische Öffentliche Bücherei Unterspiesheim +http://lobid.org/organisations/DE-1779#! DE-1779 1779 Katholische Öffentliche Bücherei Kirchheim +http://lobid.org/organisations/DE-1774#! DE-1774 1774 Katholische Öffentliche Bücherei Gelchsheim +http://lobid.org/organisations/DE-1773#! DE-1773 1773 Stadtbücherei Eibelstadt +http://lobid.org/organisations/DE-1765#! DE-1765 1765 Marktbücherei Pilsting +http://lobid.org/organisations/DE-1764#! DE-1764 1764 Gemeindebücherei Ergolding +http://lobid.org/organisations/DE-1755#! DE-1755 1755 Gemeindebücherei Perlesreut +http://lobid.org/organisations/DE-1750#! DE-1750 1750 Stadtbücherei Bad Griesbach +http://lobid.org/organisations/DE-1748#! DE-1748 1748 Pfarr- und Gemeindebücherei Wildsteig +http://lobid.org/organisations/DE-1747#! DE-1747 1747 Gemeindebücherei St. Martin Waging +http://lobid.org/organisations/DE-1738#! DE-1738 1738 Gemeindebücherei Kirchheim +http://lobid.org/organisations/DE-1735#! DE-1735 1735 Gemeindebücherei Grassau +http://lobid.org/organisations/DE-1722#! DE-1722 1722 Gemeindebücherei Bergkirchen +http://lobid.org/organisations/DE-82-779#! DE-82-779 82/779 AIXTRA - Aachener Interdisziplinäres Trainingszentrum für Medizinische Ausbildung, Bibliothek +http://lobid.org/organisations/DE-B1575#! DE-B1575 B 1575 Bauhaus-Archiv - Museum für Gestaltung, Bibliothek +http://lobid.org/organisations/DE-1706#! DE-1706 1706 Katholische Öffentliche Bücherei Weicht +http://lobid.org/organisations/DE-1704#! DE-1704 1704 Katholische Öffentliche Bücherei Haldenwang +http://lobid.org/organisations/DE-1701#! DE-1701 1701 Gemeindebücherei Buch +http://lobid.org/organisations/DE-1700#! DE-1700 1700 Katholische Öffentliche Bücherei St. Michael Stockheim +http://lobid.org/organisations/DE-1523#! DE-1523 1523 Stadtbücherei Freyung +http://lobid.org/organisations/DE-1694#! DE-1694 1694 Stadtbücherei Grafing +http://lobid.org/organisations/DE-1692#! DE-1692 1692 Stadtbücherei Waldkirchen +http://lobid.org/organisations/DE-1685#! DE-1685 1685 Stadtbücherei Berching +http://lobid.org/organisations/AT-FRSO#! AT-FRSO AT-FRSO Frauensolidarität - Bibliothek und Dokumentationsstelle Frauen und ""Dritte Welt"" +http://lobid.org/organisations/DE-1678#! DE-1678 1678 Katholische Öffentliche Bücherei St. Michael Hollstadt +http://lobid.org/organisations/DE-1527#! DE-1527 1527 Bibliothek im Kulturhaus Gemünden +http://lobid.org/organisations/DE-1674#! DE-1674 1674 Stadtbücherei Dorfen +http://lobid.org/organisations/DE-1672#! DE-1672 1672 Gemeindebücherei Übersee +http://lobid.org/organisations/DE-1667#! DE-1667 1667 Stadtbücherei Altötting +http://lobid.org/organisations/DE-1668#! DE-1668 1668 Gemeindebücherei Tegernheim +http://lobid.org/organisations/DE-1669#! DE-1669 1669 Gemeindebücherei Glonn +http://lobid.org/organisations/DE-1664#! DE-1664 1664 Gemeindebücherei Schnaittach +http://lobid.org/organisations/DE-1663#! DE-1663 1663 Gemeindebücherei Lam +http://lobid.org/organisations/DE-1660#! DE-1660 1660 Stadtbücherei Hemau +http://lobid.org/organisations/DE-1658#! DE-1658 1658 Gemeindebücherei Winhöring +http://lobid.org/organisations/DE-1654#! DE-1654 1654 Katholische Öffentliche Bücherei Glattbach +http://lobid.org/organisations/DE-1648#! DE-1648 1648 Gemeindebücherei St. Michael +http://lobid.org/organisations/DE-1640#! DE-1640 1640 Gemeindebücherei Kastl +http://lobid.org/organisations/DE-1636#! DE-1636 1636 Gemeindebücherei Schwabhausen +http://lobid.org/organisations/DE-1632#! DE-1632 1632 Katholische Volksbücherei Ruderting +http://lobid.org/organisations/DE-1627#! DE-1627 1627 Klinikum St. Marien Amberg, Wissenschaftliche Bibliothek / Patientenbibliothek +http://lobid.org/organisations/DE-1623#! DE-1623 1623 Gemeindebücherei Wilburgstetten +http://lobid.org/organisations/DE-1622#! DE-1622 1622 Gemeindebücherei Wiggensbach +http://lobid.org/organisations/DE-1615#! DE-1615 1615 Katholische Öffentliche Bücherei Waidhaus +http://lobid.org/organisations/DE-1612#! DE-1612 1612 Gemeindebücherei Untermeitingen +http://lobid.org/organisations/DE-1611#! DE-1611 1611 Stadtbücherei Uffenheim +http://lobid.org/organisations/DE-1603#! DE-1603 1603 Stadtbücherei Sonthofen +http://lobid.org/organisations/DE-1598#! DE-1598 1598 Marktbücherei Schierling +http://lobid.org/organisations/DE-1594#! DE-1594 1594 Gemeindebücherei Rottach-Egern +http://lobid.org/organisations/DE-1590#! DE-1590 1590 Stadtbücherei Roding +http://lobid.org/organisations/DE-1588#! DE-1588 1588 Katholische Öffentliche Bibliothek Maidbronn +http://lobid.org/organisations/DE-1566#! DE-1566 1566 Stadtbücherei Mitterteich +http://lobid.org/organisations/DE-1564#! DE-1564 1564 Stadtbücherei Miltenberg +http://lobid.org/organisations/DE-1563#! DE-1563 1563 Bücherei Mering +http://lobid.org/organisations/DE-1558#! DE-1558 1558 Gemeindebücherei Lenting +http://lobid.org/organisations/DE-1557#! DE-1557 1557 Katholische Öffentliche Bücherei Leinach +http://lobid.org/organisations/DE-1556#! DE-1556 1556 Stadtbücherei Laufen +http://lobid.org/organisations/DE-1553#! DE-1553 1553 Katholische Öffentliche Bücherei Langendorf +http://lobid.org/organisations/DE-1552#! DE-1552 1552 Katholische Öffentliche Bücherei Kürnach +http://lobid.org/organisations/DE-1529#! DE-1529 1529 Gemeindebücherei Gilching +http://lobid.org/organisations/DE-1530#! DE-1530 1530 Gemeindebücherei Graben +http://lobid.org/organisations/DE-1535#! DE-1535 1535 Katholische Öffentliche Bücherei Haag +http://lobid.org/organisations/DE-1581#! DE-1581 1581 St. Michaelsbund Passau. Diözesanstelle für das Büchereiwesen +http://lobid.org/organisations/DE-1359#! DE-1359 1359 Stadtbücherei Rödermark +http://lobid.org/organisations/DE-100-180#! DE-100-180 100/180 Institut für Ernährungsmedizin der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-1360#! DE-1360 1360 Stadtbücherei Wedel +http://lobid.org/organisations/DE-D274#! DE-D274 D 274 Offizierschule des Heeres, Bibliothek und Fachinformationsstelle +http://lobid.org/organisations/DE-Aft1#! DE-Aft1 Aft 1 Alanus Hochschule für Kunst und Gesellschaft, Bibliothek +http://lobid.org/organisations/DE-WWW6-WIL#! DE-WWW6-WIL WWW 6/WIL Elektronische Zeitschriften / WileyInterscience / Konsortium Sachsen +http://lobid.org/organisations/DE-Loer2-1#! DE-Loer2-1 Lör 2/1 Duale Hochschule Baden-Württemberg Lörrach, Zweigbibliothek +http://lobid.org/organisations/DE-Bre16#! DE-Bre16 Bre 16 Bremer Informationszentrum für Menschenrechte und Entwicklung, Biblothek +http://lobid.org/organisations/DE-Sg2#! DE-Sg2 Sg 2 Landesgymnasium für Hochbegabte Schwäbisch Gmünd, Bibliothek +http://lobid.org/organisations/DE-Mh39#! DE-Mh39 Mh 39 Leibniz-Institut für Deutsche Sprache (IDS), Bibliothek +http://lobid.org/organisations/DE-Nb2#! DE-Nb2 Nb 2 Polizeiakademie Niedersachsen, Bibliothek +http://lobid.org/organisations/DE-Ffb3#! DE-Ffb3 Ffb 3 Offizierschule der Luftwaffe, Bibliothek/Fachinformationsstelle +http://lobid.org/organisations/DE-Kau3#! DE-Kau3 Kau 3 Technisches Ausbildungszentrum der Luftwaffe Abt Süd, Bibliothek und Fachinformationsstelle +http://lobid.org/organisations/DE-L329#! DE-L329 L 329 Fraunhofer-Institut für Zelltherapie und Immunologie, Bibliothek +http://lobid.org/organisations/DE-1368#! DE-1368 1368 Stadtbibliothek Willich +http://lobid.org/organisations/DE-M510#! DE-M510 M 510 Bayerisches Verwaltungsgericht München, Bibliothek +http://lobid.org/organisations/DE-527-2#! DE-527-2 527/2 Hochschule Harz, Bibliothek, Standort Halberstadt +http://lobid.org/organisations/DE-614#! DE-614 614 Internet-Portal ""Westfälische Geschichte"" +http://lobid.org/organisations/DE-Nkg1#! DE-Nkg1 Nkg 1 Mediothek im SRH Berufsbildungswerk Neckargemünd +http://lobid.org/organisations/DE-1810#! DE-1810 1810 Gemeindebibliothek St. Bartholomäus +http://lobid.org/organisations/DE-1379#! DE-1379 1379 Schul- und Gemeindebibliothek Havixbeck +http://lobid.org/organisations/DE-Mar1#! DE-Mar1 Mar 1 Deutsches Literaturarchiv Marbach, Bibliothek +http://lobid.org/organisations/DE-Db8#! DE-Db8 Db 8 Salomon Ludwig Steinheim-Institut für deutsch-jüdische Geschichte an der Universität Duisburg-Essen, Bibliothek +http://lobid.org/organisations/DE-294-71#! DE-294-71 294/71 ICAMS, Interdisciplinary Centre for Advanced Materials Simulation, Institut an der Ruhr-Universität Bochum, Bibliothek +http://lobid.org/organisations/DE-Ans2#! DE-Ans2 Ans 2 Bayerisches Verwaltungsgericht Ansbach, Bibliothek +http://lobid.org/organisations/DE-755-1#! DE-755-1 755/1 Hochschule Emden/Leer, Teilbibliothek Seefahrt Leer +http://lobid.org/organisations/DE-Grf2#! DE-Grf2 Grf 2 Wissenschaftliche Fach- und Besucherbibliotheken der Nationalparkverwaltung Bayerischer Wald +http://lobid.org/organisations/DE-As6#! DE-As6 As 6 Stadtarchiv Aschersleben +http://lobid.org/organisations/DE-Bit5#! DE-Bit5 Bit 5 Kreisarchiv Anhalt-Bitterfeld +http://lobid.org/organisations/DE-MUS-801818#! DE-MUS-801818 Bit 6 Kreismuseum Bitterfeld +http://lobid.org/organisations/DE-Bit8#! DE-Bit8 Bit 8 Stadtarchiv Bitterfeld +http://lobid.org/organisations/DE-MUS-887718#! DE-MUS-887718 De 20 Museum für Stadtgeschichte Dessau - im Johannbau +http://lobid.org/organisations/DE-Cos1#! DE-Cos1 Cos 1 Stadtarchiv Coswig +http://lobid.org/organisations/DE-Gad2#! DE-Gad2 Gad 2 Stadtarchiv der Hansestadt Gardelegen +http://lobid.org/organisations/DE-MUS-804317#! DE-MUS-804317 Gen 5 Kreismuseum Jerichower Land +http://lobid.org/organisations/DE-Hal7#! DE-Hal7 Hal 7 Kreis- und Stadtarchiv Haldensleben +http://lobid.org/organisations/DE-MUS-805018#! DE-MUS-805018 Hal 8 Museum Haldensleben +http://lobid.org/organisations/DE-Kt8#! DE-Kt8 Kt 8 Stadtarchiv Köthen +http://lobid.org/organisations/DE-Mer13#! DE-Mer13 Mer 13 Kreisarchiv des Saalekreises +http://lobid.org/organisations/DE-Sw4#! DE-Sw4 Sw 4 Stadtarchiv Salzwedel +http://lobid.org/organisations/DE-San7#! DE-San7 San 7 Stadtarchiv Sangerhausen +http://lobid.org/organisations/DE-Stf4#! DE-Stf4 Stf 4 Oberbürgermeister, Stadtarchiv +http://lobid.org/organisations/DE-MUS-812115#! DE-MUS-812115 Wm 4 Kreismuseum Wolmirstedt +http://lobid.org/organisations/DE-Bs80#! DE-Bs80 Bs 80 Helmholtz-Zentrum für Infektionsforschung GmbH, Bibliothek +http://lobid.org/organisations/DE-1384#! DE-1384 1384 Stadtbibliothek Coswig +http://lobid.org/organisations/DE-Frei209#! DE-Frei209 Frei 209 Angell Akademie Freiburg, Bibliothek +http://lobid.org/organisations/DE-MUS-806719#! DE-MUS-806719 We 19 Hütten- und Technikmuseum Ilsenburg +http://lobid.org/organisations/DE-Man1#! DE-Man1 Man 1 Stadtarchiv Mansfeld +http://lobid.org/organisations/DE-Wi17FP#! DE-Wi17FP Wi 17FP DFF - Deutsches Filminstitut & Filmmuseum / filmportal.de +http://lobid.org/organisations/DE-Ko3#! DE-Ko3 Ko 3 Stadtarchiv Oebisfelde +http://lobid.org/organisations/DE-Ofd1#! DE-Ofd1 Ofd 1 Stadtarchiv Osterfeld +http://lobid.org/organisations/DE-MUS-808715#! DE-MUS-808715 Hs 9 Heimatmuseum Osterwieck +http://lobid.org/organisations/DE-Ha181#! DE-Ha181 Ha 181 Stadtarchiv Querfurt +http://lobid.org/organisations/DE-30-304#! DE-30-304 30/304 Universität Frankfurt, Institut für Arbeits-, Sozial- und Umweltmedizin, Bibliothek +http://lobid.org/organisations/DE-MUS-810817#! DE-MUS-810817 Umd 1 Börde-Museum Burg Ummendorf +http://lobid.org/organisations/DE-Fn1-TUT#! DE-Fn1-TUT Fn 1/TUT Hochschule Furtwangen University. Informatik, Technik, Wirtschaft, Medien. Campus Tuttlingen, Bibliothek +http://lobid.org/organisations/DE-1388#! DE-1388 1388 Stadtbibliothek Lugau +http://lobid.org/organisations/DE-B1583#! DE-B1583 B 1583 Zentrum für Historische Forschung Berlin der Polnischen Akademie der Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-Bs68#! DE-Bs68 Bs 68 Physikalisch-Technische Bundesanstalt, Bibliothek +http://lobid.org/organisations/DE-1394#! DE-1394 1394 Mediathek Oberkirch +http://lobid.org/organisations/DE-Bs91#! DE-Bs91 Bs 91 Staatliches Naturhistorisches Museum, Bibliothek +http://lobid.org/organisations/DE-Sa18a#! DE-Sa18a Sa 18a Max Planck Institute for Software Systems, Campusbibliothek für Informatik und Mathematik +http://lobid.org/organisations/DE-M512#! DE-M512 M 512 Bayerisches Musiker-Lexikon Online +http://lobid.org/organisations/DE-Anb1#! DE-Anb1 Anb 1 Landratsamt Erzgebirgskreis, Referat Liegenschaften und Zentrale Dienste, SG Kreisarchiv +http://lobid.org/organisations/DE-Nau2#! DE-Nau2 Nau 2 Stadtarchiv Bad Nauheim +http://lobid.org/organisations/DE-Bal2#! DE-Bal2 Bal 2 Stadtverwaltung Balingen, Stadtarchiv +http://lobid.org/organisations/DE-Bok1#! DE-Bok1 Bok 1 Kreisarchiv Borken +http://lobid.org/organisations/DE-1816#! DE-1816 1816 Stadtbibliothek Wismar +http://lobid.org/organisations/DE-Frt1#! DE-Frt1 Frt 1 Stadtarchiv Frankenthal +http://lobid.org/organisations/DE-Fdt1#! DE-Fdt1 Fdt 1 Stadtarchiv Friedrichstadt +http://lobid.org/organisations/DE-Gh4#! DE-Gh4 Gh 4 Stadtarchiv Glashütte +http://lobid.org/organisations/DE-Gre1#! DE-Gre1 Gre 1 Stadtarchiv Greven +http://lobid.org/organisations/DE-Frei211#! DE-Frei211 Frei 211 Landesverein für Badische Heimat e.V., Bibliothek +http://lobid.org/organisations/DE-1818#! DE-1818 1818 International School of Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Sie7#! DE-Sie7 Sie 7 Stadtarchiv Sankt Augustin +http://lobid.org/organisations/DE-Sie8#! DE-Sie8 Sie 8 Stadtarchiv Siegburg +http://lobid.org/organisations/DE-Soe4#! DE-Soe4 Sö 4 Landratsamt Sömmerda, Kreisarchiv +http://lobid.org/organisations/DE-A101#! DE-A101 A 101 Stadtarchiv Aachen +http://lobid.org/organisations/DE-Szf1#! DE-Szf1 Szf 1 Stadtarchiv Bad Salzuflen +http://lobid.org/organisations/DE-Bgd1#! DE-Bgd1 Bgd 1 Stadt Burgdorf, Kulturabteilung +http://lobid.org/organisations/DE-Co24#! DE-Co24 Co 24 Städtische Sammlungen Cottbus, Stadtarchiv +http://lobid.org/organisations/DE-Due75#! DE-Due75 Dü 75 Stadtarchiv Düsseldorf +http://lobid.org/organisations/DE-1822#! DE-1822 1822 Stadtbibliothek Hockenheim +http://lobid.org/organisations/DE-Fn2#! DE-Fn2 Fn 2 Geschichts- und Heimatverein Furtwangen +http://lobid.org/organisations/DE-Ges1#! DE-Ges1 Ges 1 Stadtarchiv Geseke +http://lobid.org/organisations/DE-Hmm1#! DE-Hmm1 Hmm 1 Stadtarchiv Hamm +http://lobid.org/organisations/DE-Heh1#! DE-Heh1 Heh 1 Stadtarchiv Hechingen +http://lobid.org/organisations/DE-Heg2#! DE-Heg2 Heg 2 Kreisarchiv Heinsberg +http://lobid.org/organisations/DE-Kam2#! DE-Kam2 Kam 2 Städtische Sammlungen, Stadtarchiv +http://lobid.org/organisations/DE-Ler1#! DE-Ler1 Ler 1 Stadtarchiv Leer +http://lobid.org/organisations/DE-L331#! DE-L331 L 331 Stadtarchiv Leipzig, Bibliothek +http://lobid.org/organisations/DE-Lsn1#! DE-Lsn1 Lsn 1 Stadtarchiv Leisnig +http://lobid.org/organisations/DE-Ltk1#! DE-Ltk1 Ltk 1 Stadtarchiv Leutkirch +http://lobid.org/organisations/DE-Le2#! DE-Le2 Le 2 Stadtarchiv Leverkusen +http://lobid.org/organisations/DE-Loe4#! DE-Loe4 Lö 4 Stadtarchiv Löbau +http://lobid.org/organisations/DE-Mab1#! DE-Mab1 Mab 1 Stadtarchiv Marienberg +http://lobid.org/organisations/DE-MUS-857618#! DE-MUS-857618 Ni 4 Museum Johann-Raschke-Haus Niesky +http://lobid.org/organisations/DE-No11#! DE-No11 No 11 Stadtarchiv Nordhausen +http://lobid.org/organisations/DE-Obl2#! DE-Obl2 Obl 2 Stadtarchiv Oberursel +http://lobid.org/organisations/DE-Oel2#! DE-Oel2 Oel 2 Historisches Archiv des Vogtlandkreises +http://lobid.org/organisations/DE-578-M#! DE-578-M 578/M Medizinische Bibliothek der Charité - Universitätsmedizin Berlin, Magazin +http://lobid.org/organisations/DE-Arb4#! DE-Arb4 Arb 4 Stadt- und Landständearchiv Arnsberg im Kloster Wedinghausen +http://lobid.org/organisations/DE-Rag2#! DE-Rag2 Rag 2 Stadtarchiv Ratingen +http://lobid.org/organisations/DE-M513#! DE-M513 M 513 NS-Dokumentationszentrum München, Bibliothek +http://lobid.org/organisations/DE-Rt7#! DE-Rt7 Rt 7 Kreisarchiv Reutlingen +http://lobid.org/organisations/DE-Rs7#! DE-Rs7 Rs 7 Stadtarchiv Riesa +http://lobid.org/organisations/DE-Shm6#! DE-Shm6 Shm 6 Stadt- und Kreisarchiv Schmalkalden +http://lobid.org/organisations/DE-Sta4#! DE-Sta4 Sta 4 Stadtarchiv Stade - Dienstbibliothek +http://lobid.org/organisations/DE-Tel1#! DE-Tel1 Tel 1 Stadtarchiv Telgte +http://lobid.org/organisations/DE-Tsn1#! DE-Tsn1 Tsn 1 Stadtarchiv Titisee-Neustadt +http://lobid.org/organisations/DE-Uel1#! DE-Uel1 Uel 1 Stadtarchiv Uelzen +http://lobid.org/organisations/DE-Vil5#! DE-Vil5 Vil 5 Stadtarchiv Villingen-Schwenningen +http://lobid.org/organisations/DE-Wet3#! DE-Wet3 Wet 3 Historisches Archiv Wetzlar +http://lobid.org/organisations/DE-Wlf1#! DE-Wlf1 Wlf 1 Stadtarchiv Wülfrath +http://lobid.org/organisations/DE-77-093#! DE-77-093 77/093 Universität Mainz, Zentralbibliothek, Ausgelagerte Zeitschriften Bereichsbibliothek Philosophicum +http://lobid.org/organisations/DE-1828#! DE-1828 1828 Gemeindebücherei Hiddenhausen +http://lobid.org/organisations/DE-1829#! DE-1829 1829 Samtgemeindebücherei Isenbüttel +http://lobid.org/organisations/DE-Kn195#! DE-Kn195 Kn 195 Oberlandesgericht Köln, Bibliothek +http://lobid.org/organisations/DE-Bi8#! DE-Bi8 Bi 8 Synodalbibliothek des Kirchenkreises Bielefeld +http://lobid.org/organisations/DE-Bm56#! DE-Bm56 Bm 56 Montanhistorisches Dokumentationszentrum +http://lobid.org/organisations/DE-836S#! DE-836S 836 S Fachhochschule Münster, Bereichsbibliothek Steinfurt +http://lobid.org/organisations/DE-Isy1#! DE-Isy1 Isy 1 Stadtarchiv Isny +http://lobid.org/organisations/DE-Ks18#! DE-Ks18 Ks 18 Bibliothek des Zentralinstituts und Museums für Sepulkralkultur +http://lobid.org/organisations/DE-Nit1#! DE-Nit1 Nit 1 Stadtarchiv Nittenau +http://lobid.org/organisations/DE-Tgn1#! DE-Tgn1 Tgn 1 Stadtarchiv Tegernsee +http://lobid.org/organisations/DE-Ufh1#! DE-Ufh1 Ufh 1 Stadtarchiv Uffenheim +http://lobid.org/organisations/DE-Frei212#! DE-Frei212 Frei 212 Finanzgericht Baden-Württemberg, Außensenate Freiburg, Bibliothek +http://lobid.org/organisations/DE-1833#! DE-1833 1833 Pfarr- und Gemeindebücherei Nesselwang +http://lobid.org/organisations/DE-Bbl1#! DE-Bbl1 Bbl 1 Kreisarchiv Böblingen, Historische Forstbibliothek +http://lobid.org/organisations/DE-30-319#! DE-30-319 30/319 Universitätsbibliothek J. C. Senckenberg, ZB, Korea-Studien +http://lobid.org/organisations/DE-Ka95#! DE-Ka95 Ka 95 Regierungspräsidium Karlsruhe, Referat 26 - Denkmalpflege, Bibliothek +http://lobid.org/organisations/DE-1839#! DE-1839 1839 Gemeindebibliothek Weyhe +http://lobid.org/organisations/DE-Goe172#! DE-Goe172 Gö 172 Akademie der Wissenschaften zu Göttingen, Germania Sacra +http://lobid.org/organisations/DE-Smb1#! DE-Smb1 Smb 1 Fraunhofer IME, Bibliothek +http://lobid.org/organisations/DE-7-911#! DE-7-911 7/911 Akademie der Wissenschaften zu Göttingen, Sanskrit-Wörterbuch, Bibliothek +http://lobid.org/organisations/DE-631#! DE-631 631 Landesbibliographie Baden-Württemberg, Zentralredaktion +http://lobid.org/organisations/DE-38-328#! DE-38-328 38/328 Institut für Medizinsoziologie, Versorgungsforschung und Rehabilitationswissenschaft, Bibliothek +http://lobid.org/organisations/DE-1847#! DE-1847 1847 Öffentliche Schulbibliothek Oberkrämer +http://lobid.org/organisations/DE-Bre18#! DE-Bre18 Bre 18 Klaus-Kuhnke-Institut für Populäre Musik (Hochschule für Künste Bremen) +http://lobid.org/organisations/DE-Sa29#! DE-Sa29 Sa 29 Institut d'Etudes Françaises, Bibliothèque +http://lobid.org/organisations/DE-Y3#! DE-Y3 Y 3 Kunsthistorisches Institut in Florenz, Max-Planck-Institut, Bibliothek +http://lobid.org/organisations/DE-Stg117#! DE-Stg117 Stg 117 Ev. Hochschul- und Zentralbibliothek Württemberg, Standort Stuttgart-Möhringen +http://lobid.org/organisations/DE-Stg262#! DE-Stg262 Stg 262 Verband Evangelische Kirchenmusik in Württemberg e.V., Bibliothek +http://lobid.org/organisations/DE-1865#! DE-1865 1865 Gemeindebücherei Auerbach +http://lobid.org/organisations/DE-1870#! DE-1870 1870 Gemeindebücherei Lenggries +http://lobid.org/organisations/DE-Wob1#! DE-Wob1 Wob 1 Kunstmuseum Wolfsburg, Bibliothek +http://lobid.org/organisations/DE-MUS-000213#! DE-MUS-000213 Couven-Museum +http://lobid.org/organisations/DE-MUS-000322#! DE-MUS-000322 Schloss Seehof mit Ferdinand-Tietz-Museum +http://lobid.org/organisations/DE-MUS-000713#! DE-MUS-000713 Suermondt-Ludwig-Museum +http://lobid.org/organisations/DE-MUS-000822#! DE-MUS-000822 Museum Johanniskapelle 'Kunst und Geist der Gotik' +http://lobid.org/organisations/DE-MUS-001429#! DE-MUS-001429 Phänomenta Peenemünde +http://lobid.org/organisations/DE-MUS-002026#! DE-MUS-002026 Museum Wäschefabrik +http://lobid.org/organisations/DE-MUS-002224#! DE-MUS-002224 Möbelmuseum Steinheim +http://lobid.org/organisations/DE-MUS-002313#! DE-MUS-002313 Stadtmuseum Alsfeld +http://lobid.org/organisations/DE-MUS-002417#! DE-MUS-002417 Museen Burg Altena:+Mus. d. Grafschaft Mark+Mus. d. Weltjugendherberge +http://lobid.org/organisations/DE-MUS-002422#! DE-MUS-002422 Historisches Museum Steinhagen e.V. +http://lobid.org/organisations/DE-MUS-002526#! DE-MUS-002526 Museum für Puppentheaterkultur +http://lobid.org/organisations/DE-MUS-002719#! DE-MUS-002719 Mennokate und Menno-Simons-Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-003029#! DE-MUS-003029 Heinz-Tetzner-Museum +http://lobid.org/organisations/DE-MUS-003123#! DE-MUS-003123 Hermann-Vogel-Haus +http://lobid.org/organisations/DE-MUS-003623#! DE-MUS-003623 Radsportmuseum Course de la Paix +http://lobid.org/organisations/DE-MUS-003712#! DE-MUS-003712 Residenz +http://lobid.org/organisations/DE-MUS-003727#! DE-MUS-003727 Hofmuseum Läufer +http://lobid.org/organisations/DE-MUS-004319#! DE-MUS-004319 Graf Luxburg-Museum des Bezirks Unterfranken +http://lobid.org/organisations/DE-MUS-004428#! DE-MUS-004428 Rheinland-Pfälzisches Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-004626#! DE-MUS-004626 Otto-Pfeiffer-Museum-Freusburg +http://lobid.org/organisations/DE-MUS-004928#! DE-MUS-004928 Jakob-Kneip-Museum +http://lobid.org/organisations/DE-MUS-005010#! DE-MUS-005010 Schloß und Park Schönbusch +http://lobid.org/organisations/DE-MUS-005025#! DE-MUS-005025 Alte Welt Museum +http://lobid.org/organisations/DE-MUS-006211#! DE-MUS-006211 Technikforum Backnang +http://lobid.org/organisations/DE-MUS-006815#! DE-MUS-006815 Museum Narrenschopf +http://lobid.org/organisations/DE-MUS-007927#! DE-MUS-007927 Willy-Brandt-Haus Lübeck +http://lobid.org/organisations/DE-MUS-008128#! DE-MUS-008128 Flößereimuseum Steinmauern +http://lobid.org/organisations/DE-MUS-008311#! DE-MUS-008311 Ottmar-Mergenthaler-Gedenkstätte +http://lobid.org/organisations/DE-MUS-008420#! DE-MUS-008420 Dorf-, Torf-, Schulmuseum +http://lobid.org/organisations/DE-MUS-008519#! DE-MUS-008519 Rosenmuseum Steinfurth e.V. +http://lobid.org/organisations/DE-MUS-008628#! DE-MUS-008628 Museum Römerhalle +http://lobid.org/organisations/DE-MUS-008920#! DE-MUS-008920 Kunstmuseum Dettelbach, Pilger und Wallfahrer +http://lobid.org/organisations/DE-MUS-010017#! DE-MUS-010017 Salzmuseum +http://lobid.org/organisations/DE-MUS-010522#! DE-MUS-010522 Heimatmuseum Fehrbellin +http://lobid.org/organisations/DE-MUS-010715#! DE-MUS-010715 Sebastian-Kneipp-Museum +http://lobid.org/organisations/DE-MUS-010824#! DE-MUS-010824 Roger Loewig Museum mit Gedenkstätte +http://lobid.org/organisations/DE-MUS-011114#! DE-MUS-011114 Deutsches Musikautomaten Museum +http://lobid.org/organisations/DE-MUS-011129#! DE-MUS-011129 Internationales Maritimes Museum Hamburg +http://lobid.org/organisations/DE-MUS-011421#! DE-MUS-011421 Saalbau-Museum +http://lobid.org/organisations/DE-MUS-011525#! DE-MUS-011525 Energie Museum Wölfersheim +http://lobid.org/organisations/DE-MUS-012122#! DE-MUS-012122 Bürgerhaus von 1752 +http://lobid.org/organisations/DE-MUS-012320#! DE-MUS-012320 Schlossmuseum Braunschweig +http://lobid.org/organisations/DE-MUS-012617#! DE-MUS-012617 Museum der Grafschaft Rantzau +http://lobid.org/organisations/DE-MUS-013021#! DE-MUS-013021 Q Galerie für Kunst Schorndorf +http://lobid.org/organisations/DE-MUS-013516#! DE-MUS-013516 Jean Paul Stube in der Rollwenzelei +http://lobid.org/organisations/DE-MUS-013610#! DE-MUS-013610 Historisches Museum +http://lobid.org/organisations/DE-MUS-013625#! DE-MUS-013625 Intarsienmuseum Mermuth +http://lobid.org/organisations/DE-MUS-014113#! DE-MUS-014113 Museum der Stadt Bensheim +http://lobid.org/organisations/DE-MUS-014524#! DE-MUS-014524 Christian Daniel Rauch Museum +http://lobid.org/organisations/DE-MUS-014717#! DE-MUS-014717 Königliches Schloss mit Schloss- und Rehmuseum +http://lobid.org/organisations/DE-MUS-014920#! DE-MUS-014920 Gedenkstätte Alte Pathologie Wehnen +http://lobid.org/organisations/DE-MUS-015027#! DE-MUS-015027 Focke Windkanal - Historisches Labor +http://lobid.org/organisations/DE-MUS-015423#! DE-MUS-015423 ZisterzienserMuseum Kloster Walkenried +http://lobid.org/organisations/DE-MUS-015527#! DE-MUS-015527 NSU-Motorrad- und Nostalgie-Museum +http://lobid.org/organisations/DE-MUS-015725#! DE-MUS-015725 Museen der Stadt Regensburg / document Schnupftabakfabrik +http://lobid.org/organisations/DE-MUS-016213#! DE-MUS-016213 Botanisches Museum Berlin +http://lobid.org/organisations/DE-MUS-016317#! DE-MUS-016317 Brücke-Museum +http://lobid.org/organisations/DE-MUS-017023#! DE-MUS-017023 Buchstabenmuseum +http://lobid.org/organisations/DE-MUS-017112#! DE-MUS-017112 Georg-Kolbe-Museum +http://lobid.org/organisations/DE-MUS-017414#! DE-MUS-017414 Museum Reinickendorf +http://lobid.org/organisations/DE-MUS-017721#! DE-MUS-017721 Schulmuseum Zossen +http://lobid.org/organisations/DE-MUS-017825#! DE-MUS-017825 Bürgermeister-Ringenhain-Haus +http://lobid.org/organisations/DE-MUS-017929#! DE-MUS-017929 Stiftung Haus Schminke +http://lobid.org/organisations/DE-MUS-019029#! DE-MUS-019029 Auerberg-Museum +http://lobid.org/organisations/DE-MUS-019321#! DE-MUS-019321 Kinderzech'-Zeughaus +http://lobid.org/organisations/DE-MUS-019910#! DE-MUS-019910 Bröhan-Museum +http://lobid.org/organisations/DE-MUS-020222#! DE-MUS-020222 Casino auf der Roseninsel +http://lobid.org/organisations/DE-MUS-020915#! DE-MUS-020915 Geburtshaus des Nikolaus von Kues +http://lobid.org/organisations/DE-MUS-021210#! DE-MUS-021210 Museum Biberach+Braith-Mali-Museum +http://lobid.org/organisations/DE-MUS-021314#! DE-MUS-021314 Wieland-Archiv und Wieland-Gartenhaus +http://lobid.org/organisations/DE-MUS-021329#! DE-MUS-021329 Zündholzmuseum +http://lobid.org/organisations/DE-MUS-021918#! DE-MUS-021918 Kunsthalle Bielefeld +http://lobid.org/organisations/DE-MUS-022015#! DE-MUS-022015 Naturkunde-Museum Bielefeld +http://lobid.org/organisations/DE-MUS-022515#! DE-MUS-022515 Heimatmuseum Bischofsheim +http://lobid.org/organisations/DE-MUS-022619#! DE-MUS-022619 Eifelmuseum Blankenheim +http://lobid.org/organisations/DE-MUS-022817#! DE-MUS-022817 Historische Hammerschmiede +http://lobid.org/organisations/DE-MUS-023018#! DE-MUS-023018 Heimatmuseum des Nordböhmischen Niederlandes +http://lobid.org/organisations/DE-MUS-023429#! DE-MUS-023429 Bergbau-Museum +http://lobid.org/organisations/DE-MUS-023716#! DE-MUS-023716 Münchhausen-Museum +http://lobid.org/organisations/DE-MUS-024422#! DE-MUS-024422 Jüdisches Museum Gailingen +http://lobid.org/organisations/DE-MUS-024719#! DE-MUS-024719 Kunstmuseum Bonn +http://lobid.org/organisations/DE-MUS-024724#! DE-MUS-024724 Römermuseum Güglingen +http://lobid.org/organisations/DE-MUS-025618#! DE-MUS-025618 Quadrat Bottrop +http://lobid.org/organisations/DE-MUS-025712#! DE-MUS-025712 Museum für Ur- und Ortsgeschichte +http://lobid.org/organisations/DE-MUS-025821#! DE-MUS-025821 Zündapp-Museum der Brauerei Zoller Hof +http://lobid.org/organisations/DE-MUS-026626#! DE-MUS-026626 Archäologischer Park Cambodunum (APC) +http://lobid.org/organisations/DE-MUS-027129#! DE-MUS-027129 Das Marientor +http://lobid.org/organisations/DE-MUS-027327#! DE-MUS-027327 Museum Humpis-Quartier +http://lobid.org/organisations/DE-MUS-027629#! DE-MUS-027629 Kunstsammlung Hochheim +http://lobid.org/organisations/DE-MUS-028424#! DE-MUS-028424 Windmühle Brink +http://lobid.org/organisations/DE-MUS-028528#! DE-MUS-028528 Zweiländermuseum Rodachtal +http://lobid.org/organisations/DE-MUS-028711#! DE-MUS-028711 Heimatmuseum Heidelsheim +http://lobid.org/organisations/DE-MUS-029016#! DE-MUS-029016 Museum Mensch und Jagd +http://lobid.org/organisations/DE-MUS-029521#! DE-MUS-029521 Stadt- und Museumshaus Waldheim +http://lobid.org/organisations/DE-MUS-030417#! DE-MUS-030417 Fehmarn-Museum Burg +http://lobid.org/organisations/DE-MUS-030917#! DE-MUS-030917 Stadtmuseum Burghausen +http://lobid.org/organisations/DE-MUS-031029#! DE-MUS-031029 Ausstellung 'Wir waren Nachbarn' +http://lobid.org/organisations/DE-MUS-031925#! DE-MUS-031925 Museumsbauernhof Wennerstorf +http://lobid.org/organisations/DE-MUS-032126#! DE-MUS-032126 Altes Bauernhaus +http://lobid.org/organisations/DE-MUS-032220#! DE-MUS-032220 Haus der Dorfgeschichte +http://lobid.org/organisations/DE-MUS-032913#! DE-MUS-032913 Krüge-Museum +http://lobid.org/organisations/DE-MUS-032928#! DE-MUS-032928 Flachsmuseum Schwalbach +http://lobid.org/organisations/DE-MUS-033312#! DE-MUS-033312 Museum im Waldemarturm +http://lobid.org/organisations/DE-MUS-033327#! DE-MUS-033327 Emilianusstollen +http://lobid.org/organisations/DE-MUS-033812#! DE-MUS-033812 Museum Jagdschloß Kranichstein+Stiftung Hessischer Jägerhof +http://lobid.org/organisations/DE-MUS-033916#! DE-MUS-033916 Schloßmuseum +http://lobid.org/organisations/DE-MUS-034122#! DE-MUS-034122 Dorfmuseum Ottenbüttel +http://lobid.org/organisations/DE-MUS-034419#! DE-MUS-034419 Stadtmuseum Deggendorf +http://lobid.org/organisations/DE-MUS-034924#! DE-MUS-034924 Museum Heiß-Kalt in der Pfarrscheuer +http://lobid.org/organisations/DE-MUS-035110#! DE-MUS-035110 Museum Schloss Fechenbach +http://lobid.org/organisations/DE-MUS-035125#! DE-MUS-035125 Victor-Schultze-Institut der Theologischen Fakultät +http://lobid.org/organisations/DE-MUS-036311#! DE-MUS-036311 Heimatmuseum auf der Insel Ried +http://lobid.org/organisations/DE-MUS-036519#! DE-MUS-036519 Museum-Schloß Lembeck +http://lobid.org/organisations/DE-MUS-037418#! DE-MUS-037418 Leopold-Hoesch-Museum Düren +http://lobid.org/organisations/DE-MUS-038911#! DE-MUS-038911 Heimatmuseum Ebermannstadt +http://lobid.org/organisations/DE-MUS-039112#! DE-MUS-039112 Stadtmuseum 'Alte Post' +http://lobid.org/organisations/DE-MUS-039216#! DE-MUS-039216 Jakob-Grünenwald-Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-040315#! DE-MUS-040315 Konrad-Struve-Haus der Ortsgeschichte +http://lobid.org/organisations/DE-MUS-040419#! DE-MUS-040419 Heimatkundliche Sammlung der Stadt +http://lobid.org/organisations/DE-MUS-041016#! DE-MUS-041016 Dorfmuseum +http://lobid.org/organisations/DE-MUS-041318#! DE-MUS-041318 Kaiserstühler Heimatmuseum +http://lobid.org/organisations/DE-MUS-041818#! DE-MUS-041818 Heimatstube Mühlbach +http://lobid.org/organisations/DE-MUS-042113#! DE-MUS-042113 Gräfliche Sammlungen +http://lobid.org/organisations/DE-MUS-042915#! DE-MUS-042915 Ur- und Frühgeschichtliche Sammlung der Universität Erlangen-Nürnberg +http://lobid.org/organisations/DE-MUS-043210#! DE-MUS-043210 Stadtmuseum Erlangen +http://lobid.org/organisations/DE-MUS-044411#! DE-MUS-044411 Museum Ettlingen +http://lobid.org/organisations/DE-MUS-044817#! DE-MUS-044817 StadtMuseum +http://lobid.org/organisations/DE-MUS-045112#! DE-MUS-045112 Museum Schloß Lichtenberg im Odenwald +http://lobid.org/organisations/DE-MUS-046417#! DE-MUS-046417 Freies Deutsches Hochstift / Frankfurter Goethe-Museum +http://lobid.org/organisations/DE-MUS-048913#! DE-MUS-048913 Diözesanmuseum +http://lobid.org/organisations/DE-MUS-049010#! DE-MUS-049010 Stadtmuseum Freising +http://lobid.org/organisations/DE-MUS-049510#! DE-MUS-049510 Wetterau-Museum +http://lobid.org/organisations/DE-MUS-049614#! DE-MUS-049614 Heimatmuseum Friedewald +http://lobid.org/organisations/DE-MUS-049718#! DE-MUS-049718 Europäisches Brotmuseum e.V. +http://lobid.org/organisations/DE-MUS-049916#! DE-MUS-049916 Philipp-Reis-Museum +http://lobid.org/organisations/DE-MUS-050713#! DE-MUS-050713 Dommuseum Fulda +http://lobid.org/organisations/DE-MUS-051216#! DE-MUS-051216 Landestormuseum - Drachenmuseum +http://lobid.org/organisations/DE-MUS-051716#! DE-MUS-051716 Theodor-Mommsen-Gedächtnis +http://lobid.org/organisations/DE-MUS-052011#! DE-MUS-052011 Südmährisches Landschaftsmuseum +http://lobid.org/organisations/DE-MUS-053118#! DE-MUS-053118 Deutsches Segelflugmuseum mit Modellflug +http://lobid.org/organisations/DE-MUS-053410#! DE-MUS-053410 Städtisches 'Hellweg-Museum' Geseke +http://lobid.org/organisations/DE-MUS-053712#! DE-MUS-053712 Abt. für Stadtgeschichte und Volkskunde +http://lobid.org/organisations/DE-MUS-053910#! DE-MUS-053910 Abt. für Vor- und Frühgeschichte und Völkerkunde +http://lobid.org/organisations/DE-7-016#! DE-7-016 7/016 Bibliothek der Fakultät für Geowissenschaften und Geographie +http://lobid.org/organisations/DE-7-060#! DE-7-060 7/060 Department für Nutzpflanzenwissenschaften, Bibliothek der Abteilungen Pflanzenbau, Pflanzenzüchtung, Graslandwissenschaft +http://lobid.org/organisations/DE-7-153#! DE-7-153 7/153 Department für Agrarökonomie und Rurale Entwicklung / Bibliothek für Rurale Entwicklung +http://lobid.org/organisations/DE-Bo59#! DE-Bo59 Bo 59 Beethoven-Haus Bonn, Bibliothek +http://lobid.org/organisations/DE-Ei5#! DE-Ei5 Ei 5 Stadtarchiv Eisenach, Bibliothek +http://lobid.org/organisations/DE-Bo56#! DE-Bo56 Bo 56 LVR-Klinik, Bibliothek +http://lobid.org/organisations/DE-5-225#! DE-5-225 5/225 Universität Bonn, Zentrum für Europäische Integrationsforschung / Zentrum für Entwicklungsforschung, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-82-767#! DE-82-767 82/767 Unfallchirurgie, Bibliothek +http://lobid.org/organisations/DE-294-57#! DE-294-57 294/57 Ruhr-Universität Bochum, Institut für Friedenssicherungsrecht und Humanitäres Völkerrecht, Bibliothek +http://lobid.org/organisations/DE-B1524#! DE-B1524 B 1524 Heimatmuseum Zehlendorf, Archiv +http://lobid.org/organisations/DE-27-151#! DE-27-151 27/151 Europäisches Dokumentationszentrum an der Rechtswissenschaftlichen Fakultät der Friedrich-Schiller-Universität Jena +http://lobid.org/organisations/DE-27-138#! DE-27-138 27/138 Thüringer Universitäts- und Landesbibliothek, Depositärbibliothek der Vereinten Nationen +http://lobid.org/organisations/DE-7-152#! DE-7-152 7/152 Zentrum Hygiene und Humangenetik, Abteilung Humangenetik, Bibliothek +http://lobid.org/organisations/DE-7-706#! DE-7-706 7/706 Zentrum Chirurgie, Abteilung Orthopädie, Bibliothek +http://lobid.org/organisations/DE-7-707#! DE-7-707 7/707 Zentrum Chirurgie, Abteilung Urologie, Bibliothek +http://lobid.org/organisations/DE-7-713#! DE-7-713 7/713 Zentrum Frauenheilkunde, Abteilung Klinische und Experimentelle Endokrinologie, Bibliothek +http://lobid.org/organisations/DE-7-722#! DE-7-722 7/722 Kontakt- und Beratungsstelle für Jugendliche und Junge Erwachsene, Bibliothek +http://lobid.org/organisations/DE-7-726#! DE-7-726 7/726 Zentrum Psychologische Medizin, Bibliothek +http://lobid.org/organisations/DE-7-728#! DE-7-728 7/728 Zentrum Psychologische Medizin, Abteilung Medizinische Soziologie, Bibliothek +http://lobid.org/organisations/DE-7-729#! DE-7-729 7/729 Medizinische Einrichtungen der Universität, Zentrum Anaesthesiologie, Rettungs- und Intensivmedizin, Bibliothek +http://lobid.org/organisations/DE-7-730#! DE-7-730 7/730 Zentrum Interdisziplinäre Einrichtungen, Abteilung Medizinische Informatik, Handbibliothek +http://lobid.org/organisations/DE-7-731#! DE-7-731 7/731 Zentrum Interdisziplinäre Einrichtungen, Abteilung Medizinische Statistik, Bibliothek +http://lobid.org/organisations/DE-7-154#! DE-7-154 7/154 Ethik und Geschichte der Medizin, Abteilung im Zentrum 16, Bibliothek +http://lobid.org/organisations/DE-Sa18#! DE-Sa18 Sa 18 Max-Planck-Institut für Informatik, Campusbibliothek für Informatik und Mathematik +http://lobid.org/organisations/DE-7-402#! DE-7-402 7/402 Erstes Physikalisches Institut, Tieftemperaturphysik, Bibliothek +http://lobid.org/organisations/DE-7-403#! DE-7-403 7/403 Zweites Physikalisches Institut, Kern- und Atomphysik, Bibliothek +http://lobid.org/organisations/DE-7-028#! DE-7-028 7/028 Universität Göttingen, Institut für Theoretische Physik, Bibliothek +http://lobid.org/organisations/DE-7-508#! DE-7-508 7/508 Institut für Holzbiologie und Holztechnologie, Bibliothek +http://lobid.org/organisations/DE-7-509#! DE-7-509 7/509 Institut für Forstliche Arbeitswissenschaft und Verfahrenstechnologie der Universität Göttingen, Bibliothek +http://lobid.org/organisations/DE-7-019#! DE-7-019 7/019 Institut für Agrikulturchemie, Bibliothek +http://lobid.org/organisations/DE-7-064#! DE-7-064 7/064 Institut für Tierphysiologie und Tierernährung, Bibliothek +http://lobid.org/organisations/DE-7-902#! DE-7-902 7/902 Zentrale Einrichtung für Sprachen und Schlüsselqualifikationen (ZESS) +http://lobid.org/organisations/DE-7-901#! DE-7-901 7/901 Isotopenlaboratorium für biologische und medizinische Forschung der Universität, Bibliothek +http://lobid.org/organisations/DE-7-905#! DE-7-905 7/905 Seminar für Deutsche Philologie / Abteilung Deutsch als Fremdsprache, Bibliothek +http://lobid.org/organisations/DE-7-712#! DE-7-712 7/712 Zentrum Radiologie, Abteilung Nuklearmedizin, Bibliothek +http://lobid.org/organisations/DE-4-144#! DE-4-144 4/144 Universität Marburg, Bibliothek Pharmazie, Institut für Pharmakologie und Klinische Pharmazie +http://lobid.org/organisations/DE-4-571#! DE-4-571 4/571 Forschungsstelle für Personalschriften an der Philipps-Universität Marburg, Bibliothek +http://lobid.org/organisations/DE-4-580#! DE-4-580 4/580 Fachbereich Außereuropäische Sprachen und Kulturen, Fachgebiet Sinologie, Bibliothek +http://lobid.org/organisations/DE-4-581#! DE-4-581 4/581 Zentralverwaltung, Bibliothek +http://lobid.org/organisations/DE-26-022#! DE-26-022 26/022 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 2, Unternehmensführung und Organisation +http://lobid.org/organisations/DE-26-023#! DE-26-023 26/023 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 3, Finanzierung und Banken +http://lobid.org/organisations/DE-26-024#! DE-26-024 26/024 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 4, Controlling und integrierte Rechnungslegung +http://lobid.org/organisations/DE-26-030#! DE-26-030 26/030 Universität Gießen, Zweigbibliothek im Philosophikum II +http://lobid.org/organisations/DE-26-209#! DE-26-209 26/209 Universität Gießen, Bibliothek Ländliches Genossenschaftswesen +http://lobid.org/organisations/DE-26-333#! DE-26-333 26/333 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 3, Internationale Wirtschaftsbeziehungen +http://lobid.org/organisations/DE-26-335#! DE-26-335 26/335 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 5, Monetäre Ökonomik +http://lobid.org/organisations/DE-26-341#! DE-26-341 26/341 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / Statistik und Ökonometrie +http://lobid.org/organisations/DE-Mz5#! DE-Mz5 Mz 5 Leibniz-Institut für Europäische Geschichte, Bibliothek +http://lobid.org/organisations/DE-18-15#! DE-18-15 18/15 Hamburger Sternwarte am Fachbereich Physik der Universität Hamburg, Fachbibliothek Astronomie und Astrophysik +http://lobid.org/organisations/DE-18-21#! DE-18-21 18/21 Universität Hamburg, Institut für Germanistik I, Bibliothek +http://lobid.org/organisations/DE-18-48#! DE-18-48 18/48 Fachbereich Chemie der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-18-156#! DE-18-156 18/156 Universität Hamburg, Fachbereichsbibliothek SLM, Teilbibliothek NdL +http://lobid.org/organisations/DE-18-263#! DE-18-263 18/263 Universität Hamburg, Bibliothek - Mathematik und Geschichte der Naturwissenschaften +http://lobid.org/organisations/DE-18-285#! DE-18-285 18/285 Hochschule für Angewandte Wissenschaften Hamburg, Hochschulinformations- und Bibliotheksservice (HIBS), Fachbibliothek Design Medien Information +http://lobid.org/organisations/DE-18-287#! DE-18-287 18/287 Hochschule für Angewandte Wissenschaften Hamburg, Hochschulinformations- und Bibliotheksservice , (HIBS), Fachbibliothek Soziale Arbeit und Pflege +http://lobid.org/organisations/DE-77-074#! DE-77-074 77/074 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Romanistik +http://lobid.org/organisations/DE-77-082#! DE-77-082 77/082 Universität Mainz, Fachbereich 07, Geschichts- und Kulturwissenschaften, Institut für Altertumswissenschaften - Ägyptologie und Altorientalistik +http://lobid.org/organisations/DE-77-086#! DE-77-086 77/086 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Alte Geschichte +http://lobid.org/organisations/DE-77-088#! DE-77-088 77/088 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Mittlere und Neuere Geschichte +http://lobid.org/organisations/DE-30-5#! DE-30-5 30/5 Universitätsklinikum Frankfurt, Zentrum der Hals- Nasen- und Ohrenheilkunde +http://lobid.org/organisations/DE-30-61#! DE-30-61 30/61 Institut für Musikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-30-94#! DE-30-94 30/94 Universitätsbibliothek J. C. Senckenberg, Bibliothek Sportwissenschaften +http://lobid.org/organisations/DE-30-95#! DE-30-95 30/95 Universitätsbibliothek J. C. Senckenberg, Mathematikbibliothek +http://lobid.org/organisations/DE-30-126#! DE-30-126 30/126 Carolinum Zahnärztliches Universitäts-Institut gGmbH, Bibliothek +http://lobid.org/organisations/DE-30-153#! DE-30-153 30/153 Universitätsbibliothek J. C. Senckenberg, Bibliothek Kunstgeschichte/Städelbibliothek und Islamische Studien +http://lobid.org/organisations/DE-30-219#! DE-30-219 30/219 Universitätsbibliothek J. C. Senckenberg, ZB, Südostasienwissenschaften +http://lobid.org/organisations/DE-30-320#! DE-30-320 30/320 Institut für Kunstpädagogik, Bibliothek +http://lobid.org/organisations/DE-Gr104#! DE-Gr104 Gr 104 Landesinstitut für Schule und Ausbildung, PRI Greifswald, Bibliothek +http://lobid.org/organisations/DE-93-212#! DE-93-212 93/212 Universität Stuttgart, Institut für Darstellen und Gestalten, ehemals Lehrstuhl 2, Bibliothek +http://lobid.org/organisations/DE-17-21#! DE-17-21 17/21 TU Darmstadt, Institut für Verkehr, Fachgebiete Bahnsysteme, Bahntechnik und Straßenwesen +http://lobid.org/organisations/DE-Ds97#! DE-Ds97 Ds 97 Evangelische Kirche in Hessen und Nassau, Zentralbibliothek +http://lobid.org/organisations/DE-Ds100#! DE-Ds100 Ds 100 Institut Wohnen und Umwelt GmbH, Bibliothek +http://lobid.org/organisations/DE-17-47#! DE-17-47 17/47 TU Darmstadt, Fachgebiet Reaktive Strömungen und Messtechnik +http://lobid.org/organisations/DE-17-48#! DE-17-48 17/48 TU Darmstadt, Institut für Geotechnik +http://lobid.org/organisations/DE-17-53#! DE-17-53 17/53 TU Darmstadt, Juristische Fachgebiete +http://lobid.org/organisations/DE-17-54#! DE-17-54 17/54 TU Darmstadt, Institut für Wasserbau und Wasserwirtschaft +http://lobid.org/organisations/DE-17-68#! DE-17-68 17/68 TU Darmstadt, Fachgebiet Druckmaschinen und Druckverfahren +http://lobid.org/organisations/DE-17-80#! DE-17-80 17/80 TU Darmstadt, Fachgebiet Mechatronik im Maschinenbau +http://lobid.org/organisations/DE-17-120#! DE-17-120 17/120 TU Darmstadt, Fachgebiet Produktionstechnik und Umformmaschinen, Bibliothek +http://lobid.org/organisations/DE-17-128#! DE-17-128 17/128 TU Darmstadt, Lehr- und Lernmittelsammlung des Sprachenzentrums +http://lobid.org/organisations/DE-7-605#! DE-7-605 7/605 Forschungs- und Studienzentrum Landwirtschaft und Umwelt, Bibliothek +http://lobid.org/organisations/DE-82-768#! DE-82-768 82/768 Orthopädische Rehabilitation, Bibliothek +http://lobid.org/organisations/DE-82-769#! DE-82-769 82/769 Institut für Arbeitsmedizin und Sozialmedizin, Bibliothek +http://lobid.org/organisations/DE-82-771#! DE-82-771 82/771 Interdisziplinäre Klinische Forschungsbereiche, Biomaterialien und Materialgewebsinteraktion, Bibliothek +http://lobid.org/organisations/DE-294-58#! DE-294-58 294/58 Ruhr-Universität Bochum, Fakultät für Philologie der Universität, Lotman-Institut für Russische und Sowjetische Kultur, Bibliothek +http://lobid.org/organisations/DE-Bal1#! DE-Bal1 Bal 1 Kreisarchiv Zollernalbkreis, Bibliothek +http://lobid.org/organisations/DE-B457#! DE-B457 B 457 Stadtbibliothek Pankow, Bezirkszentralbibliothek Heinrich-Böll-Bibliothek +http://lobid.org/organisations/DE-B458#! DE-B458 B 458 Bezirkszentralbibliothek Friedrichshain-Kreuzberg +http://lobid.org/organisations/DE-B460#! DE-B460 B 460 Amt für Weiterbildung und Kultur Berlin-Lichtenberg, Anton-Saefkow-Bibliothek +http://lobid.org/organisations/DE-B461#! DE-B461 B 461 Stadtbibliothek Pankow, Wolfdietrich-Schnurre-Bibliothek +http://lobid.org/organisations/DE-Ds114-3#! DE-Ds114-3 Ds 114/3 Bibliothek der Hochschule Darmstadt, Teilbibliothek Sozialpädagogik +http://lobid.org/organisations/DE-43-2#! DE-43-2 43/2 Hochschul- und Landesbibliothek RheinMain, Rüsselsheim +http://lobid.org/organisations/DE-38-311#! DE-38-311 38/311 Seminar für Theologie und ihre Didaktik, Bibliothek +http://lobid.org/organisations/DE-N32#! DE-N32 N 32 Universitätsbibliothek Erlangen-Nürnberg, Erziehungswissenschaftliche Zweigbibliothek Nürnberg +http://lobid.org/organisations/DE-B2138#! DE-B2138 B 2138 Leibniz-Zentrum Moderner Orient, Bibliothek, Geisteswissenschaftliche Zentren Berlin e.V. +http://lobid.org/organisations/DE-Due48#! DE-Due48 Dü 48 Fliedner Kulturstiftung, Bibliothek +http://lobid.org/organisations/DE-352-1#! DE-352-1 352/1 Universität Konstanz, Philosophisches Archiv, Bibliothek Paul Feyerabend +http://lobid.org/organisations/DE-421#! DE-421 421 Dorte-Hilleke-Bücherei +http://lobid.org/organisations/DE-480#! DE-480 480 Stadtbibliothek Stuttgart +http://lobid.org/organisations/DE-100-170#! DE-100-170 100/170 Institut für Lebensmittelchemie der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-82-306#! DE-82-306 82/306 Institut für Keramische Komponenten im Maschinenbau, Bibliothek +http://lobid.org/organisations/DE-82-501#! DE-82-501 82/501 Lehrstuhl für Bildverarbeitung, Bibliothek +http://lobid.org/organisations/DE-83-264#! DE-83-264 83/264 TU Berlin, Fakultät VI, Planen, Bauen, Umwelt, Studiengang Bühnenbild - Szenischer Raum, Bibliothek +http://lobid.org/organisations/DE-H144#! DE-H144 H 144 Behörde für Stadtentwicklung und Wohnen / Behörde für Umwelt und Energie - Bibliothek Stadtentwicklung, Umwelt und Geologie: Sondersammlung des Geologischen Landesamtes (GLA) +http://lobid.org/organisations/DE-21-200#! DE-21-200 21/200 Interdisziplinäres Tumorzentrum, Bibliothek +http://lobid.org/organisations/DE-1019#! DE-1019 1019 Hochschule für Polizei Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-H353#! DE-H353 H 353 Stiftung Historische Museen Hamburg, Museum der Arbeit, Bibliothek +http://lobid.org/organisations/DE-82-716#! DE-82-716 82/716 Medizinische Statistik, Bibliothek +http://lobid.org/organisations/DE-82-717#! DE-82-717 82/717 Humangenetik, Bibliothek +http://lobid.org/organisations/DE-Wol5#! DE-Wol5 Wol 5 Industrie- und Filmmuseum (ifm), Bibliothek +http://lobid.org/organisations/DE-Tue126#! DE-Tue126 Tü 126 Institut für donauschwäbische Geschichte und Landeskunde (idgl), Bibliothek +http://lobid.org/organisations/DE-Tue130#! DE-Tue130 Tü 130 Umweltzentrum, Bibliothek +http://lobid.org/organisations/DE-He209#! DE-He209 He 209 Netzwerk AlternsfoRschung (NAR), Bibliothek +http://lobid.org/organisations/DE-357#! DE-357 357 Ratsbibliothek beim Stadtarchiv +http://lobid.org/organisations/DE-25-169#! DE-25-169 25/169 Zentrum für Anthropologie und Gender Studies, Bibliothek +http://lobid.org/organisations/DE-Kn41-97#! DE-Kn41-97 Kn 41/97 Deutsche Sporthochschule Köln, Professur für Musik- und Tanzpädagogik, Bibliothek +http://lobid.org/organisations/DE-291-355#! DE-291-355 291/355 Arbeitsstelle für Österreichische Literatur und Kultur, Robert-Musil-Forschung, Bibliothek +http://lobid.org/organisations/DE-Lah1#! DE-Lah1 Lah 1 Stadtarchiv Lahr +http://lobid.org/organisations/DE-82-332#! DE-82-332 82/332 Lehrstuhl für Bioverfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-Ha33#! DE-Ha33 Ha 33 Franckesche Stiftungen, Studienzentrum August Hermann Francke, Archiv und Bibliothek +http://lobid.org/organisations/DE-We14#! DE-We14 We 14 Kloster Michaelstein, Musikakademie und Museum, Musikbibliothek +http://lobid.org/organisations/DE-17-132#! DE-17-132 17/132 TU Darmstadt, Lernzentrum Maschinenbau +http://lobid.org/organisations/DE-58#! DE-58 58 Fürstlich Schaumburg-Lippische Hofbibliothek +http://lobid.org/organisations/DE-73#! DE-73 73 Stadtbibliothek Magdeburg +http://lobid.org/organisations/DE-138#! DE-138 138 Eutiner Landesbibliothek +http://lobid.org/organisations/DE-159#! DE-159 159 Leopold Sophien Bibliothek +http://lobid.org/organisations/DE-175#! DE-175 175 Stadtbibliothek Goslar +http://lobid.org/organisations/DE-225#! DE-225 225 Volkshochschule (VHS) Emden e.V., Abteilung Stadtbücherei +http://lobid.org/organisations/DE-258#! DE-258 258 Stadtbücherei Mölln +http://lobid.org/organisations/DE-275#! DE-275 275 Stadtbibliothek Salzgitter +http://lobid.org/organisations/DE-298#! DE-298 298 Stadtbücherei Pirmasens +http://lobid.org/organisations/DE-351#! DE-351 351 Stadtbibliothek Wolfsburg +http://lobid.org/organisations/DE-353#! DE-353 353 Stadtbücherei Schwerte +http://lobid.org/organisations/DE-360#! DE-360 360 Stadtbücherei Korbach +http://lobid.org/organisations/DE-363#! DE-363 363 Stadtbibliothek Lingen +http://lobid.org/organisations/DE-365#! DE-365 365 Stadtbücherei Brühl +http://lobid.org/organisations/DE-370#! DE-370 370 Stadtbücherei Frechen +http://lobid.org/organisations/DE-372#! DE-372 372 Stadtbücherei Lage +http://lobid.org/organisations/DE-394#! DE-394 394 Katholische Öffentliche Bibliothek Sankt Maria Magdalena +http://lobid.org/organisations/DE-399#! DE-399 399 Stadtbücherei Bad Honnef +http://lobid.org/organisations/DE-406#! DE-406 406 Stadtbücherei Ibbenbüren +http://lobid.org/organisations/DE-415#! DE-415 415 Stadtbücherei Erkelenz +http://lobid.org/organisations/DE-432#! DE-432 432 Stadtbücherei Fröndenberg +http://lobid.org/organisations/DE-437#! DE-437 437 Stadtbibliothek Mettmann +http://lobid.org/organisations/DE-453#! DE-453 453 Stadtbibliothek Siegen +http://lobid.org/organisations/DE-456#! DE-456 456 Stadtbücherei im Kurzentrum +http://lobid.org/organisations/DE-463#! DE-463 463 Stadtbücherei Biberach +http://lobid.org/organisations/DE-493#! DE-493 493 Kreisarchiv, Bibliothek +http://lobid.org/organisations/DE-494#! DE-494 494 Landesarchiv, Dienstbibliothek +http://lobid.org/organisations/DE-495#! DE-495 495 Niedersächsisches Landesarchiv, Abteilung Stade, Dienstbibliothek +http://lobid.org/organisations/DE-502#! DE-502 502 Stadtbibliothek Zossen +http://lobid.org/organisations/DE-506#! DE-506 506 Kreismedienzentrum Teltow-Fläming +http://lobid.org/organisations/DE-509#! DE-509 509 Stadtbibliothek Bad Belzig +http://lobid.org/organisations/DE-514#! DE-514 514 Stadtbibliothek Rathenow +http://lobid.org/organisations/DE-515#! DE-515 515 Stadtbibliothek Köthen +http://lobid.org/organisations/DE-531#! DE-531 531 Stadtbibliothek Finsterwalde +http://lobid.org/organisations/DE-534#! DE-534 534 Heinrich-Mann-Bibliothek / Stadtbibliothek +http://lobid.org/organisations/DE-535#! DE-535 535 BONA Stadtbibliothek Perleberg +http://lobid.org/organisations/DE-537#! DE-537 537 Stadtbibliothek Zehdenick +http://lobid.org/organisations/DE-538#! DE-538 538 Stadtbibliothek Werdau +http://lobid.org/organisations/DE-552#! DE-552 552 Hochschule Magdeburg-Stendal, Standort Stendal, Bibliothek +http://lobid.org/organisations/DE-553#! DE-553 553 Stadtbibliothek Pasewalk +http://lobid.org/organisations/DE-559#! DE-559 559 Stadt- und Kreisbibliothek Saalfeld +http://lobid.org/organisations/DE-566#! DE-566 566 Bibliothek Thale +http://lobid.org/organisations/DE-569#! DE-569 569 Stadtbibliothek Jerichow +http://lobid.org/organisations/DE-701#! DE-701 701 Stadtbücherei Dreieich +http://lobid.org/organisations/DE-707#! DE-707 707 Stadtbücherei Xanten +http://lobid.org/organisations/DE-714#! DE-714 714 Stadtbibliothek Oelde +http://lobid.org/organisations/DE-716#! DE-716 716 Stadtbücherei Frankenthal +http://lobid.org/organisations/DE-719#! DE-719 719 Fahrbücherei Landkreis Celle +http://lobid.org/organisations/DE-729#! DE-729 729 Stadtbibliothek Springe +http://lobid.org/organisations/DE-730#! DE-730 730 Bücherei der Hansestadt Uelzen für Stadt und Landkreis Uelzen +http://lobid.org/organisations/DE-742#! DE-742 742 Katholische Öffentliche Bibliothek St. Andreas +http://lobid.org/organisations/DE-747-2#! DE-747-2 747/2 Staatliches Seminar für Schulpädagogik, Bibliothek +http://lobid.org/organisations/DE-763#! DE-763 763 Stadtbibliothek Bergkamen +http://lobid.org/organisations/DE-766#! DE-766 766 Stadtbücherei Bünde +http://lobid.org/organisations/DE-780#! DE-780 780 Stadtbücherei Herzogenrath +http://lobid.org/organisations/DE-786#! DE-786 786 Stadtbücherei Leichlingen +http://lobid.org/organisations/DE-787#! DE-787 787 Mediothek Lübbecke +http://lobid.org/organisations/DE-849#! DE-849 849 Regionalbibliothek Weiden +http://lobid.org/organisations/DE-851#! DE-851 851 Stadtbibliothek Cham +http://lobid.org/organisations/DE-866#! DE-866 866 Stadtbibliothek Neumarkt +http://lobid.org/organisations/DE-867#! DE-867 867 Stadtbücherei Herzogenaurach +http://lobid.org/organisations/DE-872#! DE-872 872 Kreisbücherei Neustadt/Aisch +http://lobid.org/organisations/DE-876#! DE-876 876 Stadtbibliothek Eggenfelden +http://lobid.org/organisations/DE-880#! DE-880 880 Stadtbibliothek Lebach +http://lobid.org/organisations/DE-882#! DE-882 882 Stadtbücherei Sankt Ingbert +http://lobid.org/organisations/DE-887#! DE-887 887 Stadtbücherei Homburg +http://lobid.org/organisations/DE-888#! DE-888 888 Stadtbibliothek Neunkirchen +http://lobid.org/organisations/DE-894#! DE-894 894 Stadtbibliothek Völklingen +http://lobid.org/organisations/DE-899#! DE-899 899 Kreisbibliothek Kronach +http://lobid.org/organisations/DE-901#! DE-901 901 Gemeinde- und Zentralbücherei Seevetal-Meckelfeld +http://lobid.org/organisations/DE-906#! DE-906 906 Stadtbücherei Ebern +http://lobid.org/organisations/DE-907#! DE-907 907 Stadtbücherei im Kornkasten +http://lobid.org/organisations/DE-908#! DE-908 908 Stadtbibliothek in der Aumühle +http://lobid.org/organisations/DE-910#! DE-910 910 Stadtbücherei Lindau/Bodensee +http://lobid.org/organisations/DE-922#! DE-922 922 Stadtbibliothek Rietberg +http://lobid.org/organisations/DE-932#! DE-932 932 Gemeindebücherei Quierschied +http://lobid.org/organisations/DE-941#! DE-941 941 Duale Hochschule Baden-Württemberg Mosbach, Bibliothek +http://lobid.org/organisations/DE-942#! DE-942 942 Bibliothek der Dr.-Hanns-Simon-Stiftung +http://lobid.org/organisations/DE-951#! DE-951 951 Hochschulbibliothek Pforzheim, Bereichsbibliothek Technik und Wirtschaft +http://lobid.org/organisations/DE-980#! DE-980 980 Stadtbibliothek im historischen Rathaus +http://lobid.org/organisations/DE-983#! DE-983 983 Stadtbücherei Traunreut +http://lobid.org/organisations/DE-994#! DE-994 994 Stadtbücherei Kamen +http://lobid.org/organisations/DE-1003#! DE-1003 1003 Mediathek Neckarsulm +http://lobid.org/organisations/DE-1005#! DE-1005 1005 Stadtbücherei Lauda - Königshofen +http://lobid.org/organisations/DE-1007#! DE-1007 1007 Mediathek Bad Friedrichshall +http://lobid.org/organisations/DE-1013#! DE-1013 1013 Stadtbibliothek Emsdetten +http://lobid.org/organisations/DE-1017#! DE-1017 1017 Gemeinde- und Schulbibliothek +http://lobid.org/organisations/DE-1056#! DE-1056 1056 Bücherei Bischofsheim +http://lobid.org/organisations/DE-1060#! DE-1060 1060 Stadtbücherei Friedrichsdorf +http://lobid.org/organisations/DE-1062#! DE-1062 1062 Stadtbücherei Lampertheim +http://lobid.org/organisations/DE-1065#! DE-1065 1065 Stadtbibliothek Neu-Isenburg, Forum für Medien- und Lesekultur +http://lobid.org/organisations/DE-1070#! DE-1070 1070 Bücherei Reppenstedt +http://lobid.org/organisations/DE-1078#! DE-1078 1078 Stadtbücherei Crailsheim +http://lobid.org/organisations/DE-1080#! DE-1080 1080 Stadtbücherei in der MAG +http://lobid.org/organisations/DE-1083#! DE-1083 1083 Bibliothek Lilienthal +http://lobid.org/organisations/DE-1085#! DE-1085 1085 Mediathek Lahr +http://lobid.org/organisations/DE-1090#! DE-1090 1090 Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen, Bibliothek Geislingen, +http://lobid.org/organisations/DE-Al4#! DE-Al4 Al 4 Lindenau-Museum Altenburg, Kunstbibliothek +http://lobid.org/organisations/DE-Am1#! DE-Am1 Am 1 Fürstlich Leiningensche Bibliothek +http://lobid.org/organisations/DE-Arb2#! DE-Arb2 Arb 2 Bezirksregierung Arnsberg, Bibliothek +http://lobid.org/organisations/DE-Au2#! DE-Au2 Au 2 Gymnasium Ulricianum, Bibliothek und Selbstlernzentrum +http://lobid.org/organisations/DE-B219#! DE-B219 B 219 Bundesamt für Naturschutz, Bibliothek +http://lobid.org/organisations/DE-B524#! DE-B524 B 524 DESY Zeuthen, Bibliothek +http://lobid.org/organisations/DE-B1529#! DE-B1529 B 1529 Japanisch-Deutsches Zentrum Berlin, Bibliothek +http://lobid.org/organisations/DE-B1552#! DE-B1552 B 1552 Bundeskartellamt, Bibliothek +http://lobid.org/organisations/DE-B1558#! DE-B1558 B 1558 Deutscher Verein für Versicherungswissenschaft e.V., Bibliothek +http://lobid.org/organisations/DE-B2225#! DE-B2225 B 2225 Max-Delbrück-Centrum für Molekulare Medizin, Bibliothek +http://lobid.org/organisations/DE-Bbg10#! DE-Bbg10 Bbg 10 Stadtbibliothek Bernburg +http://lobid.org/organisations/DE-Bg2#! DE-Bg2 Bg 2 Pfarrgemeinde St. Nikomedes Steinfurt-Borghorst, Bibliothek +http://lobid.org/organisations/DE-Bm1#! DE-Bm1 Bm 1 Technische Hochschule Georg Agricola, Hochschulbibliothek +http://lobid.org/organisations/DE-Bo147#! DE-Bo147 Bo 147 Bundespräsidialamt, Bibliothek +http://lobid.org/organisations/DE-Bo179#! DE-Bo179 Bo 179 Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung, Bibliothek und Informationszentrum +http://lobid.org/organisations/DE-Bo180#! DE-Bo180 Bo 180 Bundesministerium für Verkehr und digitale Infrastrukutr, Dienstsitz Bonn, Bibliothek +http://lobid.org/organisations/DE-Bo406#! DE-Bo406 Bo 406 Bundesnetzagentur, Bibliothek +http://lobid.org/organisations/DE-Bol1#! DE-Bol1 Bol 1 Evangelische Akademie Bad Boll, Bibliothek +http://lobid.org/organisations/DE-Bri2#! DE-Bri2 Bri 2 Propstei St. Petrus und Andreas, Propsteibibliothek +http://lobid.org/organisations/DE-Bs32#! DE-Bs32 Bs 32 Nordzucker AG, Produktentwicklung und Technischer Servicve, Bibliothek +http://lobid.org/organisations/DE-Cb1#! DE-Cb1 Cb 1 Kunstsammlungen der Veste Coburg, Bibliothek +http://lobid.org/organisations/DE-Ce7#! DE-Ce7 Ce 7 Niedersächsisches Landesamt für Verbraucherschutz und Lebensmittelsicherheit, Institut für Bienenkunde, Bibliothek +http://lobid.org/organisations/DE-Ch101#! DE-Ch101 Ch 101 Stadtbibliothek Schwarzenberg +http://lobid.org/organisations/DE-Cl45#! DE-Cl45 Cl 45 GDMB Gesellschaft für Bergbau, Metallurgie, Rohstoff- und Umwelttechnik e.V., Dokumentationsstelle, Bibliothek +http://lobid.org/organisations/DE-D206#! DE-D206 D 206 Max-Planck-Institut für Physik komplexer Systeme, Bibliothek +http://lobid.org/organisations/DE-De3#! DE-De3 De 3 BIOMEL GmbH Dessau, Technisch-Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Dm16#! DE-Dm16 Dm 16 Fritz-Hüser-Institut, Institut für Literatur und Kultur der Arbeitswelt, Bibliothek und Archiv +http://lobid.org/organisations/DE-Ds201#! DE-Ds201 Ds 201 Zentralarchiv der Evangelische Kirche in Hessen und Nassau, Bibliothek +http://lobid.org/organisations/DE-Due50#! DE-Due50 Dü 50 Henkel KGaA, Helmut-Sihler-InfoCenter +http://lobid.org/organisations/DE-Due63#! DE-Due63 Dü 63 Goethe-Museum, Düsseldorf, Anton-und-Katharina-Kippenberg-Stiftung, Bibliothek +http://lobid.org/organisations/DE-Due64#! DE-Due64 Dü 64 Ministerium für Wirtschaft, Energie, Industrie, Mittelstand und Handwerk des Landes Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-Due65#! DE-Due65 Dü 65 Evangelische Kirche im Rheinland, Landeskirchenamt, Bibliothek (Außenstelle der Hochschul- und Landeskirchenbibliothek Wuppertal) +http://lobid.org/organisations/DE-Ef11#! DE-Ef11 Ef 11 Thüringer Landesamt für Lebensmittelsicherheit und Verbraucherschutz, Bibliothek +http://lobid.org/organisations/DE-F80#! DE-F80 F 80 Deutsche Glastechnische Gesellschaft e.V., Bibliothek +http://lobid.org/organisations/DE-F219#! DE-F219 F 219 Deutsches Architekturmuseum, Bibliothek +http://lobid.org/organisations/DE-Fl3#! DE-Fl3 Fl 3 Zentrale Hochschulbibliothek Flensburg +http://lobid.org/organisations/DE-Fr11#! DE-Fr11 Fr 11 Industrie- und Handelskammer Ostbrandenburg, Bibliothek +http://lobid.org/organisations/DE-Ga20#! DE-Ga20 Ga 20 Duale Hochschule Gera-Eisenach, Bibliothek, Campus Gera +http://lobid.org/organisations/DE-Gha1#! DE-Gha1 Gha 1 Stadtbibliothek Geithain +http://lobid.org/organisations/DE-Goe121#! DE-Goe121 Gö 121 Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen, Bibliothek +http://lobid.org/organisations/DE-Goe169#! DE-Goe169 Gö 169 Göttinger Arbeitskreis, Bibliothek +http://lobid.org/organisations/DE-H188#! DE-H188 H 188 Gymnasium Christianeum, Bibliothek +http://lobid.org/organisations/DE-H224#! DE-H224 H 224 Bürgerschaft der Freien und Hansestadt Hamburg, Bürgerschaftskanzlei, Parlamentsbibliothek +http://lobid.org/organisations/DE-H279#! DE-H279 H 279 Agentur für Arbeit Hamburg, Berufsinformationszentrum der Berufsberatung (BIZ), Mediothek und Dokumentationsstelle +http://lobid.org/organisations/DE-Hal2#! DE-Hal2 Hal 2 Stadt- und Kreisbibliothek Haldensleben +http://lobid.org/organisations/DE-Hav1#! DE-Hav1 Hav 1 Diesterweg-Gymnasium Tangermünde-Havelberg, Standort Havelberg, Schülerbibliothek +http://lobid.org/organisations/DE-Hb2#! DE-Hb2 Hb 2 ATMEL Germany GmbH, Fachbücherei +http://lobid.org/organisations/DE-Her2#! DE-Her2 Her 2 Theologisches Seminar der Evangelischen Kirche in Hessen und Nassau, Bibliothek +http://lobid.org/organisations/DE-Het3#! DE-Het3 Het 3 Stadtbibliothek 'Gottfried August Bürger' +http://lobid.org/organisations/DE-Hoer1#! DE-Hoer1 Hör 1 Ehemaliges Zisterzienserinnenkloster Gravenhorst, Bibliothek +http://lobid.org/organisations/DE-Hoh1#! DE-Hoh1 Hoh 1 Theologische Bibliothek der evangelischen Gemeinden in Hohenlimburg +http://lobid.org/organisations/DE-Hoy5#! DE-Hoy5 Hoy 5 Brigitte-Reimann-Stadtbibliothek +http://lobid.org/organisations/DE-Hv3#! DE-Hv3 Hv 3 Historischer Verein für Niedersachsen, Bibliothek +http://lobid.org/organisations/DE-Hv4#! DE-Hv4 Hv 4 Niedersächsisches Landesarchiv, Standort Hannover, Dienstbibliothek +http://lobid.org/organisations/DE-Hv8#! DE-Hv8 Hv 8 Continental AG, Chemical Technical Information Center (CTIC) +http://lobid.org/organisations/DE-Hv111#! DE-Hv111 Hv 111 Evangelisch-Lutherisches Landeskirchenamt, Bibliothek +http://lobid.org/organisations/DE-Hv125#! DE-Hv125 Hv 125 Norddeutscher Rundfunk, Funkhaus Hannover, Bibliothek +http://lobid.org/organisations/DE-Hv126#! DE-Hv126 Hv 126 Niedersächsisches Ministerium für Inneres und Sport, Bibliothek +http://lobid.org/organisations/DE-Hv127#! DE-Hv127 Hv 127 Regionaldirektion Niedersachsen-Bremen der Bundesagentur für Arbeit, Bibliothek +http://lobid.org/organisations/DE-Hv128#! DE-Hv128 Hv 128 Niedersächsisches Ministerium für Soziales, Gesundheit und Gleichstellung, Bibliothek +http://lobid.org/organisations/DE-Hv130#! DE-Hv130 Hv 130 Historisches Museum am Hohen Ufer, Bibliothek +http://lobid.org/organisations/DE-Hw1#! DE-Hw1 Hw 1 Stadtbücherei Harsewinkel - St. Lucia +http://lobid.org/organisations/DE-Ka51#! DE-Ka51 Ka 51 Max Rubner-Institut, Bundesforschungsinstitut für Ernährung und Lebensmittel, Standort Karlsruhe, Bibliothek, Information und Dokumentation +http://lobid.org/organisations/DE-Kn39#! DE-Kn39 Kn 39 Kölnisches Stadtmuseum, Bibliothek +http://lobid.org/organisations/DE-Kn175#! DE-Kn175 Kn 175 Forschungsinstitut für Wirtschaftsverfassung und Wettbewerb e.V. (FIW), Bibliothek +http://lobid.org/organisations/DE-Kn177#! DE-Kn177 Kn 177 Stiftung Rheinisch-Westfälisches Wirtschaftsarchiv zu Köln, Bibliothek +http://lobid.org/organisations/DE-Ks10#! DE-Ks10 Ks 10 Hessischer Verwaltungsgerichtshof, Bücherei +http://lobid.org/organisations/DE-Ks11#! DE-Ks11 Ks 11 Deutsches Musikgeschichtliches Archiv, Bibliothek +http://lobid.org/organisations/DE-Ks12#! DE-Ks12 Ks 12 Landeskirchliche Bibliothek Kassel +http://lobid.org/organisations/DE-Kv1#! DE-Kv1 Kv 1 Oratorium Kevelariense, Bibliothek +http://lobid.org/organisations/DE-L228#! DE-L228 L 228 Staatliche Kunstsammlungen Dresden, Museum für Völkerkunde Leipzig, Bibliothek +http://lobid.org/organisations/DE-Li1#! DE-Li1 Li 1 Bibliothek Vinzenz Pallotti University gGmbH +http://lobid.org/organisations/DE-Lo1#! DE-Lo1 Lo 1 Klosterbibliothek Loccum +http://lobid.org/organisations/DE-Lue11#! DE-Lue11 Lü 11 Museen für Kunst und Kulturgeschichte der Hansestadt Lübeck, Fachbibliothek +http://lobid.org/organisations/DE-Luenen1#! DE-Luenen1 Lünen 1 Schloß Cappenberg, Freiherr-vom-Stein-Archiv, Bibliothek +http://lobid.org/organisations/DE-M42#! DE-M42 M 42 Bibliotheca Collegii Georgiani Monacensis +http://lobid.org/organisations/DE-M350#! DE-M350 M 350 Museum Fünf Kontinente, Bibliothek +http://lobid.org/organisations/DE-M445#! DE-M445 M 445 Gesellschaft für Anlagen- und Reaktorsicherheit (GRS) gGmbH, Bibliothek Garching +http://lobid.org/organisations/DE-M480#! DE-M480 M 480 Collegium Oecumenicum, Internationales Theologisches Studienkolleg, Bibliothek +http://lobid.org/organisations/DE-Ma54#! DE-Ma54 Ma 54 Max-Planck-Institut für Dynamik Komplexer Technischer Systeme, Bibliothek +http://lobid.org/organisations/DE-Mb74#! DE-Mb74 Mb 74 Deutsche Blinden-Bibliothek, Emil-Krückmann-Bücherei(EKB) +http://lobid.org/organisations/DE-Mel1#! DE-Mel1 Mel 1 B. Braun Melsungen AG, Information Services +http://lobid.org/organisations/DE-Mtl1#! DE-Mtl1 Mtl 1 Pfarrgemeinde St. Cornelius und Cyprianus, Bibliothek +http://lobid.org/organisations/DE-Mue196#! DE-Mue196 Mü 196 Apothekerkammer Westfalen-Lippe, Hausbücherei +http://lobid.org/organisations/DE-Mue201#! DE-Mue201 Mü 201 LWL-Archivamt für Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue206#! DE-Mue206 Mü 206 Sozialgericht, Bibliothek +http://lobid.org/organisations/DE-Mue301#! DE-Mue301 Mü 301 Kunstakademie Münster, Hochschule für Bildende Künste, Bibliothek +http://lobid.org/organisations/DE-N23#! DE-N23 N 23 Melanchthon-Gymnasium, Bibliothek +http://lobid.org/organisations/DE-Nbg21#! DE-Nbg21 Nbg 21 Hanse-Bibliothek Demmin e.V. +http://lobid.org/organisations/DE-Ob2#! DE-Ob2 Ob 2 Oxea Deutschland GmbH, Werk Ruhrchemie, Bibliothek +http://lobid.org/organisations/DE-Obl1#! DE-Obl1 Obl 1 Lutherische Theologische Hochschule, Bibliothek +http://lobid.org/organisations/DE-Osh1#! DE-Osh1 Osh 1 Stadtbibliothek Oschersleben +http://lobid.org/organisations/DE-Ost4#! DE-Ost4 Ost 4 Stadtbibliothek Seehausen +http://lobid.org/organisations/DE-Otb1#! DE-Otb1 Otb 1 Benediktiner-Abtei, Bibliothek +http://lobid.org/organisations/DE-Po72#! DE-Po72 Po 72 Stiftung Brandenburgische Gedenkstätten, Mahn- und Gedenkstätte Ravensbrück, Fachbibliothek +http://lobid.org/organisations/DE-Po78#! DE-Po78 Po 78 Land Brandenburg, Ministerium für Arbeit, Soziales, Gesundheit, Frauen und Familie, Bibliothek +http://lobid.org/organisations/DE-Ra1#! DE-Ra1 Ra 1 Lauenburgische Gelehrtenschule, Lehrerbücherei +http://lobid.org/organisations/DE-Re4#! DE-Re4 Re 4 Musikarchiv der Künstlergilde e.V. c/o Sudetendeutsches Musikinstitut +http://lobid.org/organisations/DE-Rs6#! DE-Rs6 Rs 6 Stadtbibliothek der FVG Riesa mbH +http://lobid.org/organisations/DE-Rz1#! DE-Rz1 Rz 1 Max-Planck-Institut für Ornithologie, Vogelwarte Radolfzell, Bibliothek +http://lobid.org/organisations/DE-Sie1#! DE-Sie1 Sie 1 Philosophisch-theologische Hochschulbibliothek SVD +http://lobid.org/organisations/DE-Sob11#! DE-Sob11 Sob 11 Stadtbibliothek Sonneberg +http://lobid.org/organisations/DE-Spr10#! DE-Spr10 Spr 10 Kreisbibliothek des Landkreises Spree-Neiße +http://lobid.org/organisations/DE-Sta3#! DE-Sta3 Sta 3 Gymnasium Athenaeum Stade, Schulbibliothek +http://lobid.org/organisations/DE-Ste3#! DE-Ste3 Ste 3 Stadtbibliothek ""Anna Seghers"" +http://lobid.org/organisations/DE-Ste4#! DE-Ste4 Ste 4 Altmärkisches Museum Stendal, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Stf3#! DE-Stf3 Stf 3 Stadt- und Regionalbibliothek 'G. E. Lessing' +http://lobid.org/organisations/DE-Stg12#! DE-Stg12 Stg 12 Statistisches Landesamt Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Stg91#! DE-Stg91 Stg 91 Rathausbibliothek +http://lobid.org/organisations/DE-Stg120#! DE-Stg120 Stg 120 Staatsgalerie Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Stg266#! DE-Stg266 Stg 266 Landesmuseum Württemberg, Bibliothek +http://lobid.org/organisations/DE-Te3#! DE-Te3 Te 3 Stadtbibliothek Templin +http://lobid.org/organisations/DE-Tr10#! DE-Tr10 Tr 10 Stadtverwaltung Trier, Zentrale Dienste, Personalverwaltung, Verwaltungsbücherei +http://lobid.org/organisations/DE-U6#! DE-U6 U 6 Evangelische Medienstelle Ulm / Neu Ulm +http://lobid.org/organisations/DE-Va1#! DE-Va1 Va 1 Universitätsbibliothek Vechta +http://lobid.org/organisations/DE-Ve1#! DE-Ve1 Ve 1 Deutsches Pferdemuseum, Hippologische Bibliothek +http://lobid.org/organisations/DE-W89#! DE-W89 W 89 Hochschule für Musik, Bibliothek +http://lobid.org/organisations/DE-Wb12#! DE-Wb12 Wb 12 Stiftung Leucorea Wittenberg, Bibliothek +http://lobid.org/organisations/DE-Wi1#! DE-Wi1 Wi 1 Hessisches Hauptstaatsarchiv, Bibliothek +http://lobid.org/organisations/DE-Wi6#! DE-Wi6 Wi 6 Hessisches Landesamt für Umwelt und Geologie, Bibliothek +http://lobid.org/organisations/DE-Wi14#! DE-Wi14 Wi 14 Bundeskriminalamt, KI 35, Bibliothek +http://lobid.org/organisations/DE-Wi17#! DE-Wi17 Wi 17 DFF - Deutsches Filminstitut & Filmmuseum, Bibliothek +http://lobid.org/organisations/DE-Wi18#! DE-Wi18 Wi 18 Hessisches Ministerium der Finanzen, Bibliothek +http://lobid.org/organisations/DE-Wi21#! DE-Wi21 Wi 21 Hessisches Kultusministerium, Bibliothek +http://lobid.org/organisations/DE-Wi22#! DE-Wi22 Wi 22 Gesellschaft für deutsche Sprache e. V., Bibliothek +http://lobid.org/organisations/DE-Wo1#! DE-Wo1 Wo 1 Niedersächsisches Landesarchiv, Standort Wolfenbüttel, Dienstbibliothek +http://lobid.org/organisations/DE-Wog1#! DE-Wog1 Wog 1 Bibliothek der Fürsten zu Waldburg-Wolfegg +http://lobid.org/organisations/DE-Wrf1#! DE-Wrf1 Wrf 1 Pfarrgemeinde St. Johannes in Milte, Bibliothek +http://lobid.org/organisations/DE-Ww4#! DE-Ww4 Ww 4 Stadtbibliothek Weißwasser +http://lobid.org/organisations/DE-Z4#! DE-Z4 Z 4 Stadtbibliothek 'Martin Luther' +http://lobid.org/organisations/DE-Ze2#! DE-Ze2 Ze 2 Stadtbibliothek Zerbst/Anhalt +http://lobid.org/organisations/DE-1108#! DE-1108 1108 Stadtbücherei Weener +http://lobid.org/organisations/DE-1111#! DE-1111 1111 Gemeindebücherei Hambühren +http://lobid.org/organisations/DE-M484#! DE-M484 M 484 Max-Planck-Institut für Quantenoptik, Bibliothek +http://lobid.org/organisations/DE-82-520#! DE-82-520 82/520 Lehrstuhl und Institut für Mensch-Maschine-Interaktion, Bibliothek +http://lobid.org/organisations/DE-573#! DE-573 573 Hochschulbibliothek Ingolstadt +http://lobid.org/organisations/DE-1112#! DE-1112 1112 Stadtbibliothek Gehrden +http://lobid.org/organisations/DE-829#! DE-829 829 Hochschule Niederrhein, Bibliothek +http://lobid.org/organisations/DE-Dm11#! DE-Dm11 Dm 11 Institut für Zeitungsforschung der Stadt Dortmund, Bibliothek +http://lobid.org/organisations/DE-82-719#! DE-82-719 82/719 IT-Direktion, Bibliothek +http://lobid.org/organisations/DE-B1534#! DE-B1534 B 1534 Deutsche Messebibliothek +http://lobid.org/organisations/DE-26-950#! DE-26-950 26/950 Universität Gießen, Aufsatzkatalogisierung +http://lobid.org/organisations/DE-1124#! DE-1124 1124 Gemeindebibliothek Sande +http://lobid.org/organisations/DE-Shw31#! DE-Shw31 Shw 31 Stadtarchiv Schwerin, Archivbibliothek +http://lobid.org/organisations/DE-1126#! DE-1126 1126 Hochschule Fresenius, Bibliothek +http://lobid.org/organisations/DE-Zwi2#! DE-Zwi2 Zwi 2 Westsächsische Hochschule Zwickau, Bibliothek +http://lobid.org/organisations/DE-186#! DE-186 186 Stadt- und Landesbibliothek im Bildungsforum Potsdam +http://lobid.org/organisations/DE-Bch1#! DE-Bch1 Bch 1 Bibliothek der Benediktinerabtei Plankstetten +http://lobid.org/organisations/DE-M36c#! DE-M36c M 36c Münchner Stadtbibliothek, Juristische Bibliothek +http://lobid.org/organisations/DE-Gel1#! DE-Gel1 Gel 1 Grimmelshausen-Gymnasium Gelnhausen, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-1132#! DE-1132 1132 Stadtbücherei Mechernich +http://lobid.org/organisations/DE-77-006#! DE-77-006 77/006 Universität Mainz, Bereichsbibliothek Mathematik, Informatik, Naturwissenschaften und Technik +http://lobid.org/organisations/DE-208#! DE-208 208 Bibliothek des Bundesgerichtshofs +http://lobid.org/organisations/DE-26-184#! DE-26-184 26/184 Universität Gießen, Bibliothek Kleintierklinik (Innere und Chirurgie) +http://lobid.org/organisations/DE-18-302#! DE-18-302 18/302 Hochschule für Angewandte Wissenschaften Hamburg, Hochschulinformations- und Bibliotheksservice (HIBS), Fachbibliothek Technik, Wirtschaft, Informatik +http://lobid.org/organisations/DE-Bo409#! DE-Bo409 Bo 409 Bundesamt für Bevölkerungsschutz und Katastrophenhilfe, Fachinformationsstelle +http://lobid.org/organisations/DE-Bre13#! DE-Bre13 Bre 13 belladonna, Bremer Frauenarchiv und Dokumentationszentrum +http://lobid.org/organisations/DE-Vil3#! DE-Vil3 Vil 3 Wissenschaftliche Spezialbibliothek Stadtarchiv und Museen Villingen-Schwenningen +http://lobid.org/organisations/DE-B11k#! DE-B11k B 11k Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Kupferstichkabinett - Sammlung der Zeichnungen und Druckgraphik, Bibliothek +http://lobid.org/organisations/DE-30-333#! DE-30-333 30/333 Universität Frankfurt, Mediothek der Fachbereiche Theologie +http://lobid.org/organisations/DE-H363#! DE-H363 H 363 Frauenbildungszentrum DENKtRÄUME, Bibliothek und Archiv +http://lobid.org/organisations/DE-38-460#! DE-38-460 38/460 Institut für Altertumskunde, Abteilung Byzantinistik und Neogräzistik, Bibliothek +http://lobid.org/organisations/DE-1139#! DE-1139 1139 Samtgemeindebücherei Horneburg +http://lobid.org/organisations/DE-Tue133#! DE-Tue133 Tü 133 Bildungszentrum und Archiv zur Frauengeschichte Baden-Württembergs BAF e.V. +http://lobid.org/organisations/DE-26-180#! DE-26-180 26/180 Universität Gießen, Tierschutz und Ethologie, Bibliothek +http://lobid.org/organisations/DE-1141#! DE-1141 1141 Zeppelin Universität gGmbH, Bibliothek +http://lobid.org/organisations/DE-Stg272#! DE-Stg272 Stg 272 Staatliches Seminar für Didaktik und Lehrerbildung Stuttgart (Gymnasium und Sonderpädagogik), Bibliothek +http://lobid.org/organisations/DE-1142#! DE-1142 1142 Stadtbibliothek Otterndorf +http://lobid.org/organisations/DE-1143#! DE-1143 1143 Kreisbücherei Edemissen +http://lobid.org/organisations/DE-1155#! DE-1155 1155 Stadtbücherei Königslutter am Elm +http://lobid.org/organisations/DE-B4-556#! DE-B4-556 B 4/556 Berlin, Berlin-Brandenburgische Akademie der Wissenschaften, Akademiebibliothek, Teilbibliothek Griechisch-römische Altertumskunde +http://lobid.org/organisations/DE-1159#! DE-1159 1159 Stadtbibliothek Heiligenstadt +http://lobid.org/organisations/DE-1160#! DE-1160 1160 Stadtbibliothek Artern +http://lobid.org/organisations/DE-1167#! DE-1167 1167 Öffentliche Bücherei St. Gudula +http://lobid.org/organisations/DE-1176#! DE-1176 1176 Stadtbücherei Westerstede +http://lobid.org/organisations/DE-1178#! DE-1178 1178 Stadtbibliothek Schmölln +http://lobid.org/organisations/DE-1179#! DE-1179 1179 Bibliothek im Griepe-Haus +http://lobid.org/organisations/DE-1181#! DE-1181 1181 Katholische öffentliche Bücherei St.-Vitus Löningen +http://lobid.org/organisations/DE-1200#! DE-1200 1200 Stadtbücherei Walsrode +http://lobid.org/organisations/DE-82-522#! DE-82-522 82/522 Lehrstuhl für Medizinische Informationstechnik, Bibliothek +http://lobid.org/organisations/DE-1202#! DE-1202 1202 Stadtbücherei Wittmund +http://lobid.org/organisations/DE-1204#! DE-1204 1204 Gemeindebücherei Bomlitz +http://lobid.org/organisations/DE-1206#! DE-1206 1206 Stadtbücherei Stockach +http://lobid.org/organisations/DE-1207#! DE-1207 1207 Samtgemeindebücherei Artland +http://lobid.org/organisations/DE-Bv3#! DE-Bv3 Bv 3 Deutsches Schifffahrtsmuseum, Bibliothek +http://lobid.org/organisations/DE-1213#! DE-1213 1213 Stadtbücherei Holzminden +http://lobid.org/organisations/DE-1216#! DE-1216 1216 Gemeindebücherei Neunkirchen +http://lobid.org/organisations/DE-82-334#! DE-82-334 82/334 Lehr- und Forschungsgebiet Konstruktion und Entwicklung von Mikrosystemen, Bibliothek +http://lobid.org/organisations/DE-Sp6#! DE-Sp6 Sp 6 Zentralarchiv der Evangelischen Kirche der Pfalz, Bibliothek +http://lobid.org/organisations/DE-Stg275#! DE-Stg275 Stg 275 Landesbibliothek für Pomologische Literatur +http://lobid.org/organisations/DE-17-136#! DE-17-136 17/136 TU Darmstadt, Zentralbibliothek Deutscher Werkbund e.V. +http://lobid.org/organisations/DE-Ka23#! DE-Ka23 Ka 23 Staatliche Kunsthalle, Bibliothek +http://lobid.org/organisations/DE-Os8#! DE-Os8 Os 8 Deutsche Bundesstiftung Umwelt, Bibliothek +http://lobid.org/organisations/DE-Tue134#! DE-Tue134 Tü 134 Terre des Femmes-Dokumentationsstelle +http://lobid.org/organisations/DE-1233#! DE-1233 1233 Stadtbücherei Arnsberg, Bücherei Hüsten +http://lobid.org/organisations/DE-Kn38-W#! DE-Kn38-W Kn 38/W Hochschule für Musik und Tanz Köln, Standort Wuppertal, Bibliothek +http://lobid.org/organisations/DE-Frei206#! DE-Frei206 Frei 206 Landesarbeitsgericht Baden-Württemberg, Kammern Freiburg; Arbeitsgericht Freiburg: gemeinsame Bibliothek +http://lobid.org/organisations/DE-Mh37#! DE-Mh37 Mh 37 Landesarbeitsgericht Baden-Württemberg, Kammern Mannheim; Arbeitsgericht Mannheim: gemeinsame Bibliothek +http://lobid.org/organisations/DE-Vil4#! DE-Vil4 Vil 4 Arbeitsgericht Freiburg - Kammern Villingen-Schwenningen, Bibliothek +http://lobid.org/organisations/DE-Rz3#! DE-Rz3 Rz 3 Arbeitsgericht Lörrach - Kammern Radolfzell, Bibliothek +http://lobid.org/organisations/DE-Ofb2#! DE-Ofb2 Ofb 2 Arbeitsgericht Freiburg - Kammern Offenburg, Bibliothek +http://lobid.org/organisations/DE-1240#! DE-1240 1240 Stadtbibliothek Bad Lobenstein +http://lobid.org/organisations/DE-294-67#! DE-294-67 294/67 Ruhr-Universität Bochum, Lehrstuhl für Öffentliches Recht, Rechtsphilosophie und Rechtsökonomik, Bibliothek +http://lobid.org/organisations/AT-UBI-HB#! AT-UBI-HB AT-UBI-HB Universität Innsbruck, Universitäts- und Landesbibliothek Tirol, Hauptbibliothek +http://lobid.org/organisations/AT-UBW-002#! AT-UBW-002 AT-UBW-002 Universität Wien, Hauptbibliothek +http://lobid.org/organisations/AT-GEOL#! AT-GEOL AT-GEOL Geologische Bundesanstalt, Bibliothek +http://lobid.org/organisations/DE-38-208#! DE-38-208 38/208 Gemeinschaftsbibliothek Internationales Recht +http://lobid.org/organisations/DE-38-211#! DE-38-211 38/211 Seminar für Staatsphilosophie und Rechtspolitik, Bibliothek +http://lobid.org/organisations/DE-38-214#! DE-38-214 38/214 Institut für Römisches Recht, Bibliothek +http://lobid.org/organisations/DE-38-218#! DE-38-218 38/218 Institut für Versicherungsrecht, Institut für Versicherungswissenschaft mit Abt. für Versicherungswirtschaft, Versicherungsrecht, Versicherungsmathematik, Seminar für Allgemeine Betriebswirtschaftslehre, Risikomanagement und Versicherungslehre, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-38-401#! DE-38-401 38/401 Universität Köln, Philosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-38-404#! DE-38-404 38/404 Institut für Altertumskunde, Abteilung Klassische Philologie, Alte Geschichte, Bibliothek +http://lobid.org/organisations/DE-38-409#! DE-38-409 38/409 Institut für Linguistik, Abt. Allgemeine Sprachwissenschaft, Abt. Historisch-Vergleichende Sprachwissenschaft, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-38-413#! DE-38-413 38/413 Portugiesisch-Brasilianisches Institut, Zentrum Portugiesischsprachige Welt, Bibliothek +http://lobid.org/organisations/DE-38-422#! DE-38-422 38/422 Historisches Institut, Abteilung für Nordamerikanische Geschichte, Bibliothek +http://lobid.org/organisations/DE-38-432#! DE-38-432 38/432 Thomas-Institut, Bibliothek +http://lobid.org/organisations/DE-38-501#! DE-38-501 38/501 Universität Köln, Mathematisches Institut, Bibliothek +http://lobid.org/organisations/DE-38-502#! DE-38-502 38/502 Bibliothek der Fachgruppe Physik +http://lobid.org/organisations/DE-Kn41-38#! DE-Kn41-38 Kn 41/38 Deutsche Sporthochschule Köln, Institut für Soziologie und Genderforschung, Abteilung Soziologie, Bibliothek +http://lobid.org/organisations/DE-Kn41-19#! DE-Kn41-19 Kn 41/19 Deutsche Sporthochschule Köln, Psychologisches Institut, Bibliothek +http://lobid.org/organisations/DE-Kn41-14#! DE-Kn41-14 Kn 41/14 Deutsche Sporthochschule Köln, Institut für Kreislaufforschung und Sportmedizin, Abt.1: Molekulare und zelluläre Sportmedizin, Bibliothek +http://lobid.org/organisations/DE-Kn41-9#! DE-Kn41-9 Kn 41/9 Deutsche Sporthochschule Köln, Institut für Kreislaufforschung und Sportmedizin, Abt.2: Präventive und rehabilitative Sport- und Leistungsmedizin, Bibliothek +http://lobid.org/organisations/DE-Kn41-20#! DE-Kn41-20 Kn 41/20 Deutsche Sporthochschule Köln, Institut für Bewegungstherapie und bewegungsorientierte Prävention und Rehabilitation, Bibliothek +http://lobid.org/organisations/DE-Kn41-29#! DE-Kn41-29 Kn 41/29 Deutsche Sporthochschule Köln, Institut für Trainingswissenschaft und Sportinformatik, Bibliothek +http://lobid.org/organisations/DE-Kn41-2#! DE-Kn41-2 Kn 41/2 Deutsche Sporthochschule Köln, Institut für Outdoor Sport und Umweltforschung +http://lobid.org/organisations/DE-Kn41-25#! DE-Kn41-25 Kn 41/25 Deutsche Sporthochschule Köln, Institut für Kognitions- und Sportspielforschung, Bibliothek +http://lobid.org/organisations/DE-Kn38#! DE-Kn38 Kn 38 Hochschule für Musik und Tanz Köln, Bibliothek +http://lobid.org/organisations/DE-82#! DE-82 82 Universitätsbibliothek der RWTH Aachen +http://lobid.org/organisations/DE-82-101#! DE-82-101 82/101 Gemeinsame Mathematische Bibliothek +http://lobid.org/organisations/DE-82-107#! DE-82-107 82/107 Lehrstuhl und Institut für Allgemeine Mechanik, Bibliothek +http://lobid.org/organisations/DE-82-203#! DE-82-203 82/203 Lehrstuhl für Baukonstruktion II, Bibliothek +http://lobid.org/organisations/DE-82-205#! DE-82-205 82/205 Lehrstuhl für Baukonstruktion III, Bibliothek +http://lobid.org/organisations/DE-82-216#! DE-82-216 82/216 Lehrstuhl für Baustatik und Baudynamik, Institut für Massivbau, Bibliothek +http://lobid.org/organisations/DE-82-224#! DE-82-224 82/224 Lehrstuhl für Geodäsie und Geodätisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-304#! DE-82-304 82/304 Lehrstuhl für Wärme- und Stoffübertragung, Bibliothek +http://lobid.org/organisations/DE-82-307#! DE-82-307 82/307 Institut für Luft- und Raumfahrt, Institut für Leichtbau, Bibliothek +http://lobid.org/organisations/DE-82-310#! DE-82-310 82/310 Institut für Strahlantriebe und Turboarbeitsmaschinen, Bibliothek +http://lobid.org/organisations/DE-82-320#! DE-82-320 82/320 Lehrstuhl und Institut für fluidtechnische Antriebe und Systeme, Bibliothek +http://lobid.org/organisations/DE-82-322#! DE-82-322 82/322 Lehrstuhl und Institut für Kraftfahrwesen, Bibliothek +http://lobid.org/organisations/DE-82-323#! DE-82-323 82/323 Lehrstuhl und Institut für Schienenfahrzeuge und Transportsysteme +http://lobid.org/organisations/DE-82-324#! DE-82-324 82/324 Lehrstuhl und Institut für Getriebetechnik und Maschinendynamik, Bibliothek +http://lobid.org/organisations/DE-82-326#! DE-82-326 82/326 Lehrstuhl für Thermische Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-82-402#! DE-82-402 82/402 Institute for Advanced Mining Technologies, Bibliothek +http://lobid.org/organisations/DE-82-414#! DE-82-414 82/414 Lehrstuhl für Gießereiwesen und Gießerei-Institut, Bibliothek +http://lobid.org/organisations/DE-82-418#! DE-82-418 82/418 Lehrstuhl für Werkstoffchemie, Bibliothek +http://lobid.org/organisations/DE-82-514#! DE-82-514 82/514 Lehrstuhl für Hochspannungstechnik und Institut für Hochspannungstechnik, Bibliothek +http://lobid.org/organisations/DE-82-612#! DE-82-612 82/612 Lehrstuhl und Institut für Soziologie, Bibliothek +http://lobid.org/organisations/DE-82-701#! DE-82-701 82/701 Anatomie, Bibliothek +http://lobid.org/organisations/DE-82-706#! DE-82-706 82/706 Apotheke, Bibliothek +http://lobid.org/organisations/DE-82-711#! DE-82-711 82/711 Medizinische Psychologie, Bibliothek +http://lobid.org/organisations/DE-82-735#! DE-82-735 82/735 Hals-, Nasen-, Ohrenheilkunde, Bibliothek +http://lobid.org/organisations/DE-82-736#! DE-82-736 82/736 Augenheilkunde, Bibliothek +http://lobid.org/organisations/DE-82-737#! DE-82-737 82/737 Klinik für Radiologische Diagnostik, Bibliothek +http://lobid.org/organisations/DE-82-738#! DE-82-738 82/738 Rheinisch-Westfälische TH, Institut für Pathologie, Bibliothek +http://lobid.org/organisations/DE-82-755#! DE-82-755 82/755 Lehranstalt für Physiotherapie, Bibliothek +http://lobid.org/organisations/DE-98#! DE-98 98 Deutsche Zentralbibliothek für Medizin - Informationszentrum Lebenswissenschaften, Bonn +http://lobid.org/organisations/DE-5-30#! DE-5-30 5/30 Universität Bonn, Physikalisches Institut, Fachbereichs-Bibliothek Physik +http://lobid.org/organisations/DE-5-51#! DE-5-51 5/51 Universität Bonn, Institut für Psychologie, Bibliothek +http://lobid.org/organisations/DE-5-82#! DE-5-82 5/82 Universität Bonn, Institut für Geodäsie und Geoinformation / Städtebau, Bodenordnung, Bibliothek +http://lobid.org/organisations/DE-5-141#! DE-5-141 5/141 Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek +http://lobid.org/organisations/DE-5-175#! DE-5-175 5/175 Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft / Abteilung für Interkulturelle Kommunikation und Mehrsprachigkeitsforschung mit Sprachlernzentrum, Bibliothek +http://lobid.org/organisations/DE-5-182#! DE-5-182 5/182 Universität Bonn, Kriminologisches Seminar, Bibliothek +http://lobid.org/organisations/DE-5-187#! DE-5-187 5/187 Universität Bonn, Institut für Strafrecht, Bibliothek +http://lobid.org/organisations/DE-Bo131#! DE-Bo131 Bo 131 Sanitätsakademie der Bundeswehr, Fachinformationsstelle und Virtuelle Bibliothek +http://lobid.org/organisations/DE-Bo125#! DE-Bo125 Bo 125 Verband der Deutschen Feuerfest-Industrie e.V., Bibliothek +http://lobid.org/organisations/DE-Bo127#! DE-Bo127 Bo 127 Zoologisches Forschungsmuseum Alexander Koenig, Bibliothek +http://lobid.org/organisations/DE-Bo171#! DE-Bo171 Bo 171 Collegium Albertinum, Bibliothek +http://lobid.org/organisations/DE-Tr5#! DE-Tr5 Tr 5 Hochschulbibliothek Trier +http://lobid.org/organisations/DE-468#! DE-468 468 Universitätsbibliothek Wuppertal +http://lobid.org/organisations/DE-62#! DE-62 62 Stadtbibliothek Wuppertal +http://lobid.org/organisations/DE-367#! DE-367 367 Bibliothek Witten +http://lobid.org/organisations/DE-F21#! DE-F21 F 21 Universitätsbibliothek J. C. Senckenberg, , Medizinische Hauptbibliothek (MedHB) +http://lobid.org/organisations/DE-26-010#! DE-26-010 26/010 Universität Gießen, Zweigbibliothek Recht und Wirtschaft +http://lobid.org/organisations/DE-26-154#! DE-26-154 26/154 Universität Gießen, Bibliothek Allgemeine und Spezielle Zoologie (Zoologie I) +http://lobid.org/organisations/DE-26-172#! DE-26-172 26/172 Universität Gießen, Bibliothek Milchwissenschaften +http://lobid.org/organisations/DE-26-175#! DE-26-175 26/175 Universität Gießen, Bibliothek Veterinärphysiologie +http://lobid.org/organisations/DE-26-233#! DE-26-233 26/233 Universität Gießen, Bibliothek Biochemie +http://lobid.org/organisations/DE-Mz19#! DE-Mz19 Mz 19 Universität Mainz, Bereichsbibliothek Translations-, Sprach- und Kulturwissenschaft +http://lobid.org/organisations/DE-77-081#! DE-77-081 77/081 Universität Mainz, Fachbereich 05, Philosophie und Philologie, Institut für Indologie +http://lobid.org/organisations/DE-291-102#! DE-291-102 291/102 Universität des Saarlandes, Deutsch-Europäisches Juridicum +http://lobid.org/organisations/DE-291-109#! DE-291-109 291/109 Universität des Saarlandes, Wirtschaftswissenschaftliche Seminarbibliothek, Volkswirtschaftliche Abteilung +http://lobid.org/organisations/DE-291-314#! DE-291-314 291/314 Universität des Saarlandes, Bereichsbibliothek Empirische Humanwissenschaften +http://lobid.org/organisations/DE-291-316#! DE-291-316 291/316 Universität des Saarlandes, Fachrichtung Altertumswissenschaft, Vor- und Frühgeschichte und Vorderasiatische Archäologie Bibliothek +http://lobid.org/organisations/DE-291-317#! DE-291-317 291/317 Universität des Saarlandes, Fachrichtung Kunst- und Kulturwissenschaft, Bibliothek +http://lobid.org/organisations/DE-291-318#! DE-291-318 291/318 Universität des Saarlandes, Fachrichtung für Musikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-291-424#! DE-291-424 291/424 Universität des Saarlandes, Fachrichtung Pharmazeutische Chemie, Bibliothek +http://lobid.org/organisations/DE-291-441#! DE-291-441 291/441 Universität des Saarlandes, Fachrichtung Experimentalphysik und Didaktik der Physik, Bibliothek +http://lobid.org/organisations/DE-Sa3#! DE-Sa3 Sa 3 Statistisches Landesamt Saarland, Bibliothek +http://lobid.org/organisations/DE-Mh27#! DE-Mh27 Mh 27 Pädagogische Zentralbibliothek Mannheim +http://lobid.org/organisations/DE-16-7#! DE-16-7 16/7 Universität Heidelberg, Bereichsbibliothek Mathematik und Informatik +http://lobid.org/organisations/DE-16-31#! DE-16-31 16/31 Bereichsbibliothek Altertumswissenschaften, Abteilung Archäologie +http://lobid.org/organisations/DE-16-33#! DE-16-33 16/33 Bereichsbibliothek Altertumswissenschaften, Abteilung Klassische Philologie +http://lobid.org/organisations/DE-16-46#! DE-16-46 16/46 Seminar für Übersetzen und Dolmetschen (SUED), Bibliothek +http://lobid.org/organisations/DE-16-54#! DE-16-54 16/54 Institut für Fränkisch-Pfälzische Geschichte und Landeskunde der Universität, Bibliothek +http://lobid.org/organisations/DE-16-92#! DE-16-92 16/92 Hygiene-Institut der Universität, Abteilung Tropenhygiene, Bibliothek +http://lobid.org/organisations/DE-16-300#! DE-16-300 16/300 Medizinische Fakultät Mannheim der Universität Heidelberg, Bibliothek +http://lobid.org/organisations/DE-16-142#! DE-16-142 16/142 Universitätsarchiv Heidelberg, Bibliothek +http://lobid.org/organisations/DE-16-143#! DE-16-143 16/143 Romanisches Seminar der Universität, Bibliothek +http://lobid.org/organisations/DE-16-145#! DE-16-145 16/145 Historisches Seminar, Schurman-Bibliothek für Amerikanische Geschichte +http://lobid.org/organisations/DE-16-147#! DE-16-147 16/147 Zentrales Sprachlabor, Sprechwissenschaft und Sprecherziehung, Bibliothek +http://lobid.org/organisations/DE-754#! DE-754 754 Stadtbücherei Heidelberg, Hauptstelle +http://lobid.org/organisations/DE-He43#! DE-He43 He 43 Max-Planck-Institut für medizinische Forschung, Bibliothek +http://lobid.org/organisations/DE-He79#! DE-He79 He 79 Forschungsstätte der Evangelischen Studiengemeinschaft, Bibliothek +http://lobid.org/organisations/DE-He203#! DE-He203 He 203 Deutsches Rechtswörterbuch, Bibliothek +http://lobid.org/organisations/DE-93-31#! DE-93-31 93/31 Universität Stuttgart, Institut für Physikalische Chemie, Bibliothek +http://lobid.org/organisations/DE-93-37#! DE-93-37 93/37 Universität Stuttgart, Institut für Nachrichtenübertragung, Bibliothek +http://lobid.org/organisations/DE-93-41#! DE-93-41 93/41 Universität Stuttgart, Geodätisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-45#! DE-93-45 93/45 Universität Stuttgart, Institut für Fahrzeugtechnik, Bibliothek +http://lobid.org/organisations/DE-93-66#! DE-93-66 93/66 Universität Stuttgart, Institut für Werkzeugmaschinen, Bibliothek +http://lobid.org/organisations/DE-93-86#! DE-93-86 93/86 Universität Stuttgart, Institut für Photovoltaik, Bibliothek +http://lobid.org/organisations/DE-93-95#! DE-93-95 93/95 Universität Stuttgart, Institut für Chemische Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-93-97#! DE-93-97 93/97 Universität Stuttgart, Institut für Grenzflächenverfahrenstechnik und Plasmatechnologie, Bibliothek +http://lobid.org/organisations/DE-93-98#! DE-93-98 93/98 Universität Stuttgart, Institut für Feuerungs- und Kraftwerkstechnik (IFK), Bibliothek +http://lobid.org/organisations/DE-93-103#! DE-93-103 93/103 Universität Stuttgart, Institut für Baustatik und Baudynamik, Bibliothek +http://lobid.org/organisations/DE-93-104#! DE-93-104 93/104 Universität Stuttgart, Betriebswirtschaftliches Institut, BWI-Bibliothek +http://lobid.org/organisations/DE-93-142#! DE-93-142 93/142 Universität Stuttgart, Institut für Technische Chemie, Bibliothek +http://lobid.org/organisations/DE-93-162#! DE-93-162 93/162 Universität Stuttgart, Institut für Luftfahrtantriebe, Bibliothek +http://lobid.org/organisations/DE-93-168#! DE-93-168 93/168 Universität Stuttgart, Physikalisches Institut, 2. Physikalisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-173#! DE-93-173 93/173 Universität Stuttgart, Institut für Mechanische Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-93-174#! DE-93-174 93/174 Universität Stuttgart, Institut für Systemdynamik, Bibliothek +http://lobid.org/organisations/DE-93-177#! DE-93-177 93/177 Universität Stuttgart, Institut für Kunststofftechnik +http://lobid.org/organisations/DE-93-178#! DE-93-178 93/178 IZUS / Technische Informations- und Kommunikationsdienste, Bibliothek +http://lobid.org/organisations/DE-93-195#! DE-93-195 93/195 Universität Stuttgart, Masterstudiengang Infrastructure Planning, Bibliothek +http://lobid.org/organisations/DE-100-130#! DE-100-130 100/130 Institut für Chemie der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-150#! DE-100-150 100/150 Institut für Lebensmittelwissenschaft und Biotechnologie der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-420#! DE-100-420 100/420 Institut für Agrarpolitik und Landwirtschaftliche Marktlehre der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-430#! DE-100-430 100/430 Institut für Sozialwissenschaften des Agrarbereichs der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-440#! DE-100-440 100/440 Institut für Agrartechnik der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-510#! DE-100-510 100/510 Institut für Financial Management der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-550#! DE-100-550 100/550 Institut für Rechtswissenschaften der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-Stg5#! DE-Stg5 Stg 5 Linden-Museum Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Stg181#! DE-Stg181 Stg 181 Deutsche Institute für Textil- und Faserforschung Stuttgart, Institut für Textilchemie und Chemiefasern, Bibliothek +http://lobid.org/organisations/DE-Stg252#! DE-Stg252 Stg 252 Deutsche Institute für Textil- und Faserforschung Stuttgart, Institut für Textil- und Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-Stg254#! DE-Stg254 Stg 254 Fraunhofer-Institut für Bauphysik, Bibliothek +http://lobid.org/organisations/DE-21-3#! DE-21-3 21/3 Pharmakologisches Institut und Institut für Toxikologie, Bibliothek +http://lobid.org/organisations/DE-21-4#! DE-21-4 21/4 Augenklinik, Bibliothek +http://lobid.org/organisations/DE-21-11#! DE-21-11 21/11 Universitätsbibliothek Tübingen, Bereichsbibliothek Schloss Nord für Ägyptologie, Altorientalistik und Archäologie des Mittelmeerraumes +http://lobid.org/organisations/DE-21-17#! DE-21-17 21/17 Universität Tübingen, Geographisches Institut, Bibliothek +http://lobid.org/organisations/DE-21-27#! DE-21-27 21/27 Institut für Anthropologie und Humangenetik, Bibliothek +http://lobid.org/organisations/DE-21-43#! DE-21-43 21/43 Bibliothek der Institute für Erziehungswissenschaft +http://lobid.org/organisations/DE-21-58#! DE-21-58 21/58 Institut für Politikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-63#! DE-21-63 21/63 Institut für Tropenmedizin, Bibliothek +http://lobid.org/organisations/DE-21-78#! DE-21-78 21/78 Institut für Medizinische Biometrie, Bibliothek +http://lobid.org/organisations/DE-21-106#! DE-21-106 21/106 Seminar für Zeitgeschichte, Bibliothek +http://lobid.org/organisations/DE-21-116#! DE-21-116 21/116 Zentrum für Molekularbiologie der Pflanzen, Bibliothek +http://lobid.org/organisations/DE-21-119#! DE-21-119 21/119 Wilhelm-Schickard-Institut für Informatik, Bibliothek +http://lobid.org/organisations/DE-Rt2#! DE-Rt2 Rt 2 Hochschulbibliothek Reutlingen (Lernzentrum) +http://lobid.org/organisations/DE-Tue69#! DE-Tue69 Tü 69 Evangelisches Stift, Bibliothek +http://lobid.org/organisations/DE-B107#! DE-B107 B 107 Max-Planck-Haus, Bibliothek +http://lobid.org/organisations/DE-Tue119#! DE-Tue119 Tü 119 Institut Culturel Franco-Allemand, Médiathèque +http://lobid.org/organisations/DE-Tue121#! DE-Tue121 Tü 121 Institut zur Erforschung des Urchristentums, Bibliothek +http://lobid.org/organisations/DE-Rot2#! DE-Rot2 Rot 2 Diözesanbibliothek Rottenburg +http://lobid.org/organisations/DE-90-18#! DE-90-18 90/18 KIT-Bibliothek, Bibliothek des Physikalischen Instituts +http://lobid.org/organisations/DE-90-30#! DE-90-30 90/30 KIT-Bibliothek, Bibliothek des Geophysikalischen Instituts +http://lobid.org/organisations/DE-90-35#! DE-90-35 90/35 KIT-Bibliothek, Bibliothek des Instituts für Physikalische Chemie +http://lobid.org/organisations/DE-90-71#! DE-90-71 90/71 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen, Kunst und Theorie, Fachgebiet Gebäudelehre +http://lobid.org/organisations/DE-90-74#! DE-90-74 90/74 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen und Bautechnik, Fachgebiet Tragwerksplanung u. Konstruktives Entwerfen +http://lobid.org/organisations/DE-90-76#! DE-90-76 90/76 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen und Bautechnik, Fachgebiet Entwerfen Konstruieren +http://lobid.org/organisations/DE-90-79#! DE-90-79 90/79 KIT-Bibliothek, Bibliothek des Instituts für Wasser und Gewässerentwicklung, Fachbereich Wasserbau und Wasserwirtschaft mit Theodor-Rehbock-Wasserbaulaboratorium +http://lobid.org/organisations/DE-90-82#! DE-90-82 90/82 KIT-Bibliothek, Bibliothek der Versuchsanstalt für Stahl, Holz und Steine, Abteilung Stahl- und Leichtmetallbau +http://lobid.org/organisations/DE-90-86#! DE-90-86 90/86 KIT-Bibliothek, Bibliothek des Instituts für Strassen- und Eisenbahnwesen, Abteilung Strassenwesen +http://lobid.org/organisations/DE-90-90#! DE-90-90 90/90 KIT-Bibliothek, Bibliothek des Instituts für Baustatik +http://lobid.org/organisations/DE-90-113#! DE-90-113 90/113 KIT-Bibliothek, Bibliothek des Instituts für Produktentwicklung +http://lobid.org/organisations/DE-90-119#! DE-90-119 90/119 KIT-Bibliothek, Bibliothek des Instituts für Mechanische Verfahrenstechnik und Mechanik +http://lobid.org/organisations/DE-90-129#! DE-90-129 90/129 KIT-Bibliothek, Bibliothek des Instituts für Theoretische Elektrotechnik und Systemoptimierung +http://lobid.org/organisations/DE-90-159#! DE-90-159 90/159 KIT-Bibliothek, Bibliothek des Instituts für Industrielle Informationstechnik +http://lobid.org/organisations/DE-90-170#! DE-90-170 90/170 KIT-Bibliothek, Bibliothek des Instituts für Arbeitswissenschaft und Betriebsorganisation +http://lobid.org/organisations/DE-90-179#! DE-90-179 90/179 KIT-Bibliothek, Bibliothek des Instituts für Telematik +http://lobid.org/organisations/DE-Ka13#! DE-Ka13 Ka 13 Landeskirchliche Bibliothek +http://lobid.org/organisations/DE-Ka83#! DE-Ka83 Ka 83 Staatliches Museum für Naturkunde, Bibliothek +http://lobid.org/organisations/DE-25-1#! DE-25-1 25/1 Pathologisches Institut, Bibliothek +http://lobid.org/organisations/DE-25-7#! DE-25-7 25/7 Klinik für Frauenheilkunde, Bibliothek +http://lobid.org/organisations/DE-25-11#! DE-25-11 25/11 Institut für Archäologische Wissenschaften, Abt. Klassische Archäologie, Bibliothek +http://lobid.org/organisations/DE-25-15#! DE-25-15 25/15 Fakultätsbibliothek Chemie und Pharmazie +http://lobid.org/organisations/DE-25-22#! DE-25-22 25/22 Klinik für Dermatologie und Venerologie / Hautklinik, Bibliothek +http://lobid.org/organisations/DE-25-24#! DE-25-24 25/24 Bibliothek im KG IV, Bereich Anglistik und Amerikanistik +http://lobid.org/organisations/DE-25-33#! DE-25-33 25/33 Fakultätsbibliothek Biologie 1 (Zoologie) +http://lobid.org/organisations/DE-25-38#! DE-25-38 25/38 Universität Freiburg, Institut für Ethik und Geschichte der Medizin, Bibliothek +http://lobid.org/organisations/DE-25-46#! DE-25-46 25/46 Universitätsklinik für Zahn-, Mund- und Kieferheilkunde, Bibliothek +http://lobid.org/organisations/DE-25-72#! DE-25-72 25/72 Bernstein Center Freiburg, Bibliothek +http://lobid.org/organisations/DE-25-83#! DE-25-83 25/83 Sprachwissenschaftliches Seminar, Seminar für Allgemeine Sprachwissenschaft, Bibliothek +http://lobid.org/organisations/DE-25-88#! DE-25-88 25/88 Waldbau-Institut, Bibliothek +http://lobid.org/organisations/DE-25-3e#! DE-25-3e 25/3e Mathematisches Institut, Bibliothek / Abteilung für Mathematische Stochastik +http://lobid.org/organisations/DE-25-30z#! DE-25-30z 25/30z Deutsches Seminar, Badisches Wörterbuch, Bibliothek +http://lobid.org/organisations/DE-25-31a#! DE-25-31a 25/31a Seminar für Alte Geschichte, Bibliothek +http://lobid.org/organisations/DE-Frei160#! DE-Frei160 Frei 160 Evangelische Hochschule Freiburg, Hochschulbibliothek +http://lobid.org/organisations/DE-Frei85#! DE-Frei85 Frei 85 Max-Planck-Institut zur Erforschung von Kriminalität, Sicherheit und Recht, Bibliothek +http://lobid.org/organisations/DE-Frei114#! DE-Frei114 Frei 114 Badischer Landesverein für Naturkunde und Naturschutz, Bibliothek +http://lobid.org/organisations/DE-Frei119#! DE-Frei119 Frei 119 Arnold-Bergstraesser-Institut für kulturwissenschaftliche Forschung, Bibliothek +http://lobid.org/organisations/DE-Frei141#! DE-Frei141 Frei 141 Badisches Landesmuseum Karlsruhe, Außenstelle Südbaden, Bibliothek +http://lobid.org/organisations/DE-Frei146#! DE-Frei146 Frei 146 Fraunhofer-Institut für Werkstoffmechanik, Bibliothek +http://lobid.org/organisations/DE-Frei147#! DE-Frei147 Frei 147 Centre Culturel Français Freiburg, Bibliothek +http://lobid.org/organisations/DE-Frei150#! DE-Frei150 Frei 150 TDK-Micronas GmbH, Bibliothek +http://lobid.org/organisations/DE-Frei166#! DE-Frei166 Frei 166 Archäologisches Museum Colombischlössle, Bibliothek +http://lobid.org/organisations/DE-747#! DE-747 747 Hochschulbibliothek Weingarten +http://lobid.org/organisations/DE-Fh1#! DE-Fh1 Fh 1 Bodenseebibliothek +http://lobid.org/organisations/DE-12#! DE-12 12 Bayerische Staatsbibliothek +http://lobid.org/organisations/DE-Et1#! DE-Et1 Et 1 Benediktinerabtei Ettal, Bibliothek +http://lobid.org/organisations/DE-154#! DE-154 154 Staatliche Bibliothek Passau +http://lobid.org/organisations/DE-898#! DE-898 898 OTH- Ostbayerische Technische Hochschule Regensburg, Hochschulbibliothek +http://lobid.org/organisations/DE-29#! DE-29 29 Universitätsbibliothek Erlangen-Nürnberg, Hauptbibliothek +http://lobid.org/organisations/DE-473#! DE-473 473 Universitätsbibliothek Bamberg +http://lobid.org/organisations/DE-299#! DE-299 299 Stadtbücherei Hof +http://lobid.org/organisations/DE-291-415#! DE-291-415 291/415 INM - Leibniz-Institut für Neue Materialien gGmbH, NTNM-Bibliothek +http://lobid.org/organisations/DE-16-149#! DE-16-149 16/149 Institut für Deutsches und Europäisches Verwaltungsrecht, Bibliothek +http://lobid.org/organisations/DE-11-88#! DE-11-88 11/88 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Klassische Archäologie +http://lobid.org/organisations/DE-11-105#! DE-11-105 11/105 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Germanistik/Skandinavistik +http://lobid.org/organisations/DE-11-128#! DE-11-128 11/128 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Musikwissenschaft +http://lobid.org/organisations/DE-B479#! DE-B479 B 479 Bibliothek des Bundesarchivs +http://lobid.org/organisations/DE-B2001#! DE-B2001 B 2001 Stiftung Haus der Geschichte der Bundesrepublik Deutschland, Sammlung Industrielle Gestaltung, Bibliothek +http://lobid.org/organisations/DE-B2096#! DE-B2096 B 2096 Länderinstitut für Bienenkunde Hohen Neuendorf e.V., Bibliothek +http://lobid.org/organisations/DE-Eb18#! DE-Eb18 Eb 18 Klinikum Barnim GmbH, Werner-Forßmann-Krankenhaus, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Hoy1#! DE-Hoy1 Hoy 1 Lausitzer Seenland Klinikum GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Po30#! DE-Po30 Po 30 Klinikum 'Ernst von Bergmann' gGmbH, Bibliothek +http://lobid.org/organisations/DE-120#! DE-120 120 Stadtbibliothek Stralsund +http://lobid.org/organisations/DE-Gr61#! DE-Gr61 Gr 61 Friedrich-Loeffler-Institut, Bundesforschungsinstitut für Tiergesundheit, Hauptbibliothek Insel Riems +http://lobid.org/organisations/DE-R72#! DE-R72 R 72 DRK-Blutspendedienst Mecklenburg-Vorpommern gGmbH, Institut für Transfusionsmedizin Rostock, Bibliothek +http://lobid.org/organisations/DE-R75#! DE-R75 R 75 Stadtarchiv Rostock +http://lobid.org/organisations/DE-3#! DE-3 3 Universitäts- und Landesbibliothek Sachsen-Anhalt / Zentrale +http://lobid.org/organisations/DE-111#! DE-111 111 Anhaltische Landesbücherei Dessau (Wissenschaftliche Bibliothek) +http://lobid.org/organisations/DE-196#! DE-196 196 Stadtbibliothek Halle +http://lobid.org/organisations/DE-Brg5#! DE-Brg5 Brg 5 HELIOS Klinik Jerichower Land, Zentralbibliothek +http://lobid.org/organisations/DE-3-26#! DE-3-26 3/26 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Klassische Altertumswissenschaften +http://lobid.org/organisations/DE-3-27#! DE-3-27 3/27 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-Ha93#! DE-Ha93 Ha 93 Leibniz-Institut für Pflanzenbiochemie, Bibliothek +http://lobid.org/organisations/DE-Ha115#! DE-Ha115 Ha 115 Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt, Bibliothek +http://lobid.org/organisations/DE-Ha119#! DE-Ha119 Ha 119 Landeshygieneinstitut Halle, Bibliothek +http://lobid.org/organisations/DE-Ha131#! DE-Ha131 Ha 131 envia Mitteldeutsche Energie AG, Immobilienmanagement/Services +http://lobid.org/organisations/DE-Ha139#! DE-Ha139 Ha 139 Landesamt für Geologie und Bergwesen Sachsen-Anhalt, Fachbibliothek +http://lobid.org/organisations/DE-3-150#! DE-3-150 3/150 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Universitätsklinikum +http://lobid.org/organisations/DE-Ma2#! DE-Ma2 Ma 2 Kunstmuseum Kloster Unser Lieben Frauen, Bibliothek +http://lobid.org/organisations/DE-Ma16#! DE-Ma16 Ma 16 ÖHMI Aktiengesellschaft, Pflanzenölbibliothek +http://lobid.org/organisations/DE-Wb1#! DE-Wb1 Wb 1 Reformationsgeschichtliche Forschungsbibliothek Wittenberg +http://lobid.org/organisations/DE-Wb5#! DE-Wb5 Wb 5 Paul Gerhardt Diakonie Krankenhaus u. Pflege GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-14-00#! DE-14-00 14/00 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden (ehem. Universitätsbibliothek Dresden und ZwB Geistes-, Sozial-, Sprach- u. Literaturwissenschaften) +http://lobid.org/organisations/DE-Ae1#! DE-Ae1 Ae 1 HELIOS Klinikum Aue GmbH, Bibliothek +http://lobid.org/organisations/DE-D15#! DE-D15 D 15 Stiftung Deutsches Hygiene-Museum, Bibliothek +http://lobid.org/organisations/DE-D163#! DE-D163 D 163 IPRO Dresden, Planungs- und Ingenieuraktiengesellschaft, Abteilung Qualitätsmanagement / Information +http://lobid.org/organisations/DE-Gl1#! DE-Gl1 Gl 1 Senckenberg Museum für Naturkunde Görlitz, Bibliothek +http://lobid.org/organisations/DE-Ch76#! DE-Ch76 Ch 76 IPROPLAN Planungsgesellschaft mbH, Technische Bibliothek +http://lobid.org/organisations/DE-Ch86#! DE-Ch86 Ch 86 Pleissental-Klinik GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-L27#! DE-L27 L 27 K. G. Saur Verlag GmbH & Co. KG, Redaktion 'Allgemeines Künstlerlexikon', Bibliothek +http://lobid.org/organisations/DE-L247#! DE-L247 L 247 Klinikum St. Georg gGmbH, Referat Bibliotheken, Fachbibliothek/Patientenbibliothek +http://lobid.org/organisations/DE-Ni2#! DE-Ni2 Ni 2 Stahl- und Brückenbau Niesky GmbH, Stahlhoch-, Brücken-, Anlagenbau, Abteilung Projektierung, Bibliothek +http://lobid.org/organisations/DE-14-21#! DE-14-21 14/21 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Zweigbibliothek Forstwesen +http://lobid.org/organisations/DE-194#! DE-194 194 Stadtbücherei Suhl +http://lobid.org/organisations/DE-Ef14#! DE-Ef14 Ef 14 Stiftung Deutsches Gartenbaumuseum Erfurt, Bibliothek +http://lobid.org/organisations/DE-Gz5#! DE-Gz5 Gz 5 Kreiskrankenhaus Greiz GmbH, Fachbibliothek +http://lobid.org/organisations/DE-27-22#! DE-27-22 27/22 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Altertumswissenschaften +http://lobid.org/organisations/DE-27-41#! DE-27-41 27/41 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Medizinische Studienbibliothek +http://lobid.org/organisations/DE-27-48#! DE-27-48 27/48 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Rechtsmedizin +http://lobid.org/organisations/DE-J82#! DE-J82 J 82 Jenakultur, Ernst-Abbe-Bücherei und Lesehalle +http://lobid.org/organisations/DE-27-117#! DE-27-117 27/117 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Arbeits-, Sozial- und Umweltmedizin +http://lobid.org/organisations/DE-Me1#! DE-Me1 Me 1 Thüringisches Staatsarchiv Meiningen, Bibliothek +http://lobid.org/organisations/DE-No4#! DE-No4 No 4 HGN Hydrogeologie GmbH, wissenschaftliche Fachbibliothek +http://lobid.org/organisations/DE-Shm1#! DE-Shm1 Shm 1 Museum Schloß Wilhelmsburg, Bibliothek +http://lobid.org/organisations/DE-Wim6#! DE-Wim6 Wim 6 Hauptstaatsarchiv Weimar, Bibliothek +http://lobid.org/organisations/DE-Gat1#! DE-Gat1 Gat 1 Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung (IPK), Wissenschaftliche Bibliothek / Dokumentation +http://lobid.org/organisations/DE-180-4-2#! DE-180-4-2 180/4-2 Mannheimer Zentrum für Europäische Sozialforschung, Bibliothek +http://lobid.org/organisations/DE-B768#! DE-B768 B 768 Berliner Hochschule für Technik, Hochschulbibliothek +http://lobid.org/organisations/DE-B749#! DE-B749 B 749 Institut für soziale Demokratie (August-Bebel-Institut), Bibliothek +http://lobid.org/organisations/DE-B774#! DE-B774 B 774 Berlin, Bezirksamt Tempelhof-Schöneberg, Verwaltungsbücherei +http://lobid.org/organisations/DE-B775#! DE-B775 B 775 Bezirksamt Charlottenburg-Wilmersdorf von Berlin, Verwaltungsinformationszentrum (VIZ) +http://lobid.org/organisations/DE-5N#! DE-5N 5 N Universitäts- und Landesbibliothek, Abteilungsbibliothek Medizin, Naturwissenschaften und Landbau +http://lobid.org/organisations/DE-Ell1#! DE-Ell1 Ell 1 Peutinger-Gymnasium, Lehrerbibliothek +http://lobid.org/organisations/DE-Kn41-22#! DE-Kn41-22 Kn 41/22 Deutsche Sporthochschule Köln, Institut für Bewegungs- und Neurowissenschaft, Abteilung 2 Bewegungstechnik und Bewegungslernen / Schwimmsport, Bibliothek +http://lobid.org/organisations/DE-Kn41-42#! DE-Kn41-42 Kn 41/42 Deutsche Sporthochschule Köln, Institut für Europäische Sportentwicklung und Freizeitforschung, Bereich Freizeitwissenschaft, Bibliothek +http://lobid.org/organisations/DE-Kn41-43#! DE-Kn41-43 Kn 41/43 Deutsche Sporthochschule Köln, Institut für Sportökonomie und Sportmanagement, Bibliothek +http://lobid.org/organisations/DE-82-765#! DE-82-765 82/765 Psychosomatik und Psychotherapeutische Medizin, Bibliothek +http://lobid.org/organisations/DE-93-202#! DE-93-202 93/202 Universität Stuttgart, Institut für Energiewirtschaft und Rationelle Energieanwendung, Bibliothek +http://lobid.org/organisations/DE-93-203#! DE-93-203 93/203 Universität Stuttgart, Institut für Zellbiologie und Immunologie, Bibliothek +http://lobid.org/organisations/DE-100-650#! DE-100-650 100/650 Deutsches Landwirtschaftsmuseum, Bibliothek +http://lobid.org/organisations/DE-90-184#! DE-90-184 90/184 KIT-Bibliothek, Bibliothek des Zentrums für digitale Barrierefreiheit und Assistive Technologien +http://lobid.org/organisations/DE-Hof1#! DE-Hof1 Hof 1 Evangelisches Studienseminar Hofgeismar, Bibliothek +http://lobid.org/organisations/DE-14-12#! DE-14-12 14/12 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ZwB Maschinenwesen, Teilbibliothek Energieumwandlung / Verfahrenstechnik) +http://lobid.org/organisations/DE-14-13#! DE-14-13 14/13 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Maschinenwesen, Teilbibliothek Grundlagen des Maschinenwesens) +http://lobid.org/organisations/DE-14-20#! DE-14-20 14/20 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. Zweigbibliothek Wasserwesen / Biologie) +http://lobid.org/organisations/DE-974-1#! DE-974-1 974/1 Technische Hochschule Mittelhessen, Hochschulbibliothek Friedberg +http://lobid.org/organisations/DE-90-186#! DE-90-186 90/186 KIT-Bibliothek, Zentrum für Angewandte Kulturwissenschaft und Studium Generale (ZAK) +http://lobid.org/organisations/DE-Stg255#! DE-Stg255 Stg 255 Homöopathie-Archiv des Instituts für Geschichte der Medizin der Robert Bosch Stiftung, Bibliothek +http://lobid.org/organisations/DE-Bha1#! DE-Bha1 Bha 1 Stadtarchiv Burghausen +http://lobid.org/organisations/DE-Kn41-44#! DE-Kn41-44 Kn 41/44 Deutsche Sporthochschule Köln, Carl und Liselott-Diem-Archiv, Bibliothek +http://lobid.org/organisations/DE-Ras1#! DE-Ras1 Ras 1 Historische Bibliothek der Stadt Rastatt im Ludwig-Wilhelm-Gymnasium +http://lobid.org/organisations/DE-977#! DE-977 977 Stadtbücherei Andernach +http://lobid.org/organisations/DE-27-132#! DE-27-132 27/132 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Limnologie +http://lobid.org/organisations/DE-7-155#! DE-7-155 7/155 Institut für Römisches Recht und Gemeines Recht, Bibliothek +http://lobid.org/organisations/DE-7-142#! DE-7-142 7/142 Seminar für Ägyptologie und Koptologie, Bibliothek +http://lobid.org/organisations/DE-7-054#! DE-7-054 7/054 Diplomatischer Apparat der Universität, Betriebseinheit, Bibliothek +http://lobid.org/organisations/DE-7-221#! DE-7-221 7/221 Institut für Historische Landesforschung, Bibliothek +http://lobid.org/organisations/DE-7-151#! DE-7-151 7/151 Universität Göttingen, Seminar für Klassische Philologie, Bibliothek +http://lobid.org/organisations/DE-7-223#! DE-7-223 7/223 Zentrum für Mittelalter und Frühneuzeitforschung, Bibliothek +http://lobid.org/organisations/DE-7-053#! DE-7-053 7/053 Seminar für Mittlere und Neuere Geschichte, Bibliothek +http://lobid.org/organisations/DE-7-032#! DE-7-032 7/032 Georg-August-Universität Göttingen, Philosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-138#! DE-7-138 7/138 Skandinavisches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-124#! DE-7-124 7/124 Zentrum Interdisziplinäre Einrichtungen, Abteilung Medizinische Physik und Biophysik, Bibliothek +http://lobid.org/organisations/DE-7-157#! DE-7-157 7/157 Universität Göttingen, Institut für Numerische und Angewandte Mathematik, Bibliothek +http://lobid.org/organisations/DE-83-728#! DE-83-728 83/728 TU Berlin, Institut für Geodäsie und Geoinformationstechnik, Bibliothek Geodäsie +http://lobid.org/organisations/DE-83-1070#! DE-83-1070 83/1070 TU Berlin, Institut für Strömungstechnik und technische Akustik, Fachgebiet Numerische Fluiddynamik, Bibliothek +http://lobid.org/organisations/DE-83-1095#! DE-83-1095 83/1095 TU Berlin, Institut für Hochfrequenz- und Halbleiter-Systemtechnologie, Fachgebiet Hochfrequenztechnik, Bibliothek +http://lobid.org/organisations/DE-83-1130#! DE-83-1130 83/1130 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Baustoffe und Baustoffprüfung, Bibliothek +http://lobid.org/organisations/DE-83-1147#! DE-83-1147 83/1147 TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Bahnbetrieb und Infrastruktur, Bibliothek +http://lobid.org/organisations/DE-83-1174#! DE-83-1174 83/1174 TU Berlin, Institut für Werkstoffwissenschaften und Technologien, Fachgebiet Metallische Werkstoffe, Bibliothek +http://lobid.org/organisations/DE-83-1215#! DE-83-1215 83/1215 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Bauinformatik, Bibliothek +http://lobid.org/organisations/DE-83-1221#! DE-83-1221 83/1221 TU Berlin, Institut für Land- und Seeverkehr, Verkehrswesen-Seminar, Bibliothek +http://lobid.org/organisations/DE-83-1250#! DE-83-1250 83/1250 TU Berlin, Institut für Entwerfen, Baukonstruktion und Gebäudekunde, Fachgebiet Entwerfen, Architektur und Stadtentwicklung im globalen Zusammenhang, Bibliothek +http://lobid.org/organisations/DE-188#! DE-188 188 Freie Universität Berlin, Universitätsbibliothek +http://lobid.org/organisations/DE-188-144#! DE-188-144 188/144 Freie Universität Berlin, Zentralinstitut John-F.-Kennedy-Institut für Nordamerikastudien, Bibliothek +http://lobid.org/organisations/DE-188-211#! DE-188-211 188/211 Freie Universität Berlin, Bibliothek für Sozialwissenschaften und Osteuropastudien +http://lobid.org/organisations/DE-B700#! DE-B700 B 700 Stadtbibliothek Neukölln, Hauptbibliothek Neukölln, Helene-Nathan-Bibliothek +http://lobid.org/organisations/DE-B66#! DE-B66 B 66 Gesellschaft für Erdkunde zu Berlin, Bibliothek +http://lobid.org/organisations/DE-H22#! DE-H22 H 22 Gerd Bucerius Bibliothek im Museum für Kunst und Gewerbe +http://lobid.org/organisations/DE-H221#! DE-H221 H 221 German Institute for Global and Area Studies, Bibliothek +http://lobid.org/organisations/DE-H223#! DE-H223 H 223 Deutsches Orient-Institut, Bibliothek und Archiv +http://lobid.org/organisations/DE-95#! DE-95 95 Stiftung Tierärztliche Hochschule Hannover, Bibliothek +http://lobid.org/organisations/DE-834#! DE-834 834 Hochschule für Bildende Künste Braunschweig, Bibliothek +http://lobid.org/organisations/DE-Cl40#! DE-Cl40 Cl 40 Landesamt für Bergbau, Energie und Geologie (LBEG), Bibliothek Clausthal +http://lobid.org/organisations/DE-Bs66#! DE-Bs66 Bs 66 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Informationszentrum und Bibliothek Braunschweig +http://lobid.org/organisations/DE-Bs84#! DE-Bs84 Bs 84 Stadt Braunschweig, Rechtsreferat, Verwaltungsbücherei +http://lobid.org/organisations/DE-7-006#! DE-7-006 7/006 Georg-Elias-Müller-Institut für Psychologie, Bibliothek +http://lobid.org/organisations/DE-7-023#! DE-7-023 7/023 Althistorisches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-037#! DE-7-037 7/037 Universität Göttingen, Zentralbibliotheken der Juristischen Fakultät +http://lobid.org/organisations/DE-7-040#! DE-7-040 7/040 Seminar für Slavische Philologie, Bibliothek +http://lobid.org/organisations/DE-7-061#! DE-7-061 7/061 Department für Agrarökonomie und Rurale Entwicklung / Bibliothek für Agrarökonomie +http://lobid.org/organisations/DE-4-038#! DE-4-038 4/038 Universität Marburg, Bibliothek Kunst und Kulturwissenschaften, Kunstgeschichte +http://lobid.org/organisations/DE-4-187#! DE-4-187 4/187 Institut für Physiologie und Pathophysiologie, Bibliothek +http://lobid.org/organisations/DE-4-331#! DE-4-331 4/331 Bibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-4-365#! DE-4-365 4/365 Universität Marburg, Bibliothek Kultur und Sozialanthropologie +http://lobid.org/organisations/DE-4-413#! DE-4-413 4/413 Universität Marburg, Bibliothek Fremdsprachliche Philologien, Klassische Philologie +http://lobid.org/organisations/DE-4-431#! DE-4-431 4/431 Universität Marburg, Bibliothek Kunst und Kulturwissenschaften, Musikwissenschaft +http://lobid.org/organisations/DE-4-510#! DE-4-510 4/510 Bibliothek Religionswissenschaft +http://lobid.org/organisations/DE-34-30#! DE-34-30 34/30 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Landesbibliothek und Murhardsche Bibliothek der Stadt Kassel +http://lobid.org/organisations/DE-34-35#! DE-34-35 34/35 Universitätsbibliothek Kassel, Fürstlich Waldecksche Hofbibliothek Arolsen +http://lobid.org/organisations/DE-34-50#! DE-34-50 34/50 Universitätsbibliothek Kassel, Standort Wilhelmshöher Allee +http://lobid.org/organisations/DE-34-80#! DE-34-80 34/80 Universitätsbibliothek Kassel, Standort Witzenhausen +http://lobid.org/organisations/DE-34-110#! DE-34-110 34/110 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-61#! DE-61 61 Universitäts- und Landesbibliothek Düsseldorf +http://lobid.org/organisations/DE-233#! DE-233 233 Stadtbücherei Hilden +http://lobid.org/organisations/DE-136#! DE-136 136 Stadtbibliothek Duisburg +http://lobid.org/organisations/DE-64#! DE-64 64 Stadtbibliothek Essen +http://lobid.org/organisations/DE-168#! DE-168 168 Stadtbibliothek im MedienHaus +http://lobid.org/organisations/DE-Mue80#! DE-Mue80 Mü 80 Deutsche Rentenversicherung Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue131#! DE-Mue131 Mü 131 Landschaftsverband Westfalen-Lippe, LWL-Bibliothek +http://lobid.org/organisations/DE-Mue204#! DE-Mue204 Mü 204 Oberverwaltungsgericht für das Land Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-294-7#! DE-294-7 294/7 Ruhr-Universität Bochum, Fakultät für Biologie und Biotechnologie, Bibliothek +http://lobid.org/organisations/DE-294-11#! DE-294-11 294/11 Ruhr-Universität Bochum, Fakultät für Geschichtswissenschaft, Historische Bibliothek +http://lobid.org/organisations/DE-294-26#! DE-294-26 294/26 Ruhr-Universität Bochum, Fakultät für Sportwissenschaft, Bibliothek +http://lobid.org/organisations/DE-294-28#! DE-294-28 294/28 Ruhr-Universität Bochum, Institut für Philosophie, Bibliothek +http://lobid.org/organisations/DE-294-42#! DE-294-42 294/42 Ruhr-Universität Bochum, Fakultät für Philologie, Seminar für Sprachlehrforschung, Bibliothek +http://lobid.org/organisations/DE-294-49#! DE-294-49 294/49 Ruhr-Universität Bochum, Institut für Konstruktionstechnik, Bibliothek +http://lobid.org/organisations/DE-294-51#! DE-294-51 294/51 Ruhr-Universität Bochum, Verbundbibliothek IC BU/MB +http://lobid.org/organisations/DE-Det2#! DE-Det2 Det 2 Max Rubner-Institut, Bundesforschungsinstitut für Ernährung und Lebensmittel, Bibliothek, Information und Dokumentation, Bibliothek Detmold +http://lobid.org/organisations/De-4115#! De-4115 Stadtbibliothek +http://lobid.org/organisations/DE-2546#! DE-2546 2546 Stadtbücherei Leinfelden-Echterdingen +http://lobid.org/organisations/DE-2548#! DE-2548 2548 Vinzenz von Paul Hospital gGmbH, Medizinische Bibliothek +http://lobid.org/organisations/DE-2553#! DE-2553 2553 iDAI.bibliography +http://lobid.org/organisations/DE-2554#! DE-2554 Bibliotheksverband Mittel- und Oberfranken e. V. +http://lobid.org/organisations/DE-2556#! DE-2556 Hessisches Landesarchiv - Staatsarchiv Darmstadt +http://lobid.org/organisations/DE-2558#! DE-2558 2558 Landesamt für Vermessung und Geoinformation, Bibliothek +http://lobid.org/organisations/DE-635#! DE-635 Borromäusverein e.V. +http://lobid.org/organisations/DE-2567#! DE-2567 2567 University of Europe for Applied Sciences GmbH, Campus Hamburg, Bibliothek +http://lobid.org/organisations/DE-MUS-113522#! DE-MUS-113522 Echter Nordhäuser Traditionsbrennerei +http://lobid.org/organisations/DE-MUS-044728#! DE-MUS-044728 Friedrich-Schiller-Universität / Alphons-Stübel-Sammlung früher Orientphotographie +http://lobid.org/organisations/DE-MUS-046526#! DE-MUS-046526 Friedrich-Schiller-Universität / Geologische Sammlung +http://lobid.org/organisations/DE-MUS-047029#! DE-MUS-047029 Friedrich-Schiller-Universität / Jenaer Medizinhistorische Sammlung Theodor Meyer-Steineg +http://lobid.org/organisations/DE-MUS-046224#! DE-MUS-046224 Friedrich-Schiller-Universität / Paläobotanische Sammlung +http://lobid.org/organisations/DE-MUS-045929#! DE-MUS-045929 Friedrich-Schiller-Universität / Samenbank Thüringischer Wildpflanzen +http://lobid.org/organisations/DE-MUS-045221#! DE-MUS-045221 Friedrich-Schiller-Universität / Sammlung Antiker Kleinkunst +http://lobid.org/organisations/DE-MUS-045627#! DE-MUS-045627 Friedrich-Schiller-Universität / Sammlung der Arbeitsgruppe Biologiedidaktik +http://lobid.org/organisations/DE-MUS-044926#! DE-MUS-044926 Friedrich-Schiller-Universität / Ur- und frühgeschichtliche Sammlung +http://lobid.org/organisations/DE-2580#! DE-2580 Offizialatsarchiv Vechta +http://lobid.org/organisations/DE-MUS-124329#! DE-MUS-124329 Sammlung antiker Münzen der Abteilung Alte Geschichte des Historischen Instituts der Universität Stuttgart +http://lobid.org/organisations/DE-2591#! DE-2591 2591 Bretzfelder Bücherei +http://lobid.org/organisations/DE-2598#! DE-2598 Stadtarchiv Trier +http://lobid.org/organisations/DE-77-127#! DE-77-127 77/127 Universität Mainz, Bereichsbibliothek Philosophicum, separierte Bestände +http://lobid.org/organisations/DE-2603#! DE-2603 2603 Mediathek der beruflichen Schule Hamburg-Harburg +http://lobid.org/organisations/DE-2607#! DE-2607 2607 Gemeindebibliothek Wenzenbach +http://lobid.org/organisations/DE-82-790#! DE-82-790 82/790 Institute for Computational Genomics, Bibliothek +http://lobid.org/organisations/DE-100-761#! DE-100-761 100/761 Geschäftsstelle Bioökonomie Hohenheim +http://lobid.org/organisations/DE-2620#! DE-2620 Sächsische Bibliografie +http://lobid.org/organisations/DE-2621#! DE-2621 2621 Stadtverwaltung Jena, Verwaltungsbibliothek +http://lobid.org/organisations/DE-2623#! DE-2623 2623 Gemeindebücherei March +http://lobid.org/organisations/DE-B1567#! DE-B1567 B 1567 Stiftung Wissenschaft und Politik (SWP), Bibliothek +http://lobid.org/organisations/DE-2491#! DE-2491 2491 Deutsches Historisches Institut in Rom, Bibliothek +http://lobid.org/organisations/DE-2625#! DE-2625 2625 Theologische Hochschule Ewersbach, Bibliothek +http://lobid.org/organisations/DE-2676#! DE-2676 2676 Gemeinde- und Kurbibliothek Bad Klosterlausnitz +http://lobid.org/organisations/DE-2701#! DE-2701 2701 Gemeindebücherei Niederfüllbach +http://lobid.org/organisations/DE-2705#! DE-2705 2705 Gemeindebücherei Putzbrunn +http://lobid.org/organisations/DE-2714#! DE-2714 2714 Gemeindebücherei Weidhausen +http://lobid.org/organisations/DE-630#! DE-630 GOKb - Global Open Knowledgebase +http://lobid.org/organisations/DE-2727#! DE-2727 2727 Stadtbücherei Rötz +http://lobid.org/organisations/DE-2742#! DE-2742 2742 Stadtbibliothek Waldheim +http://lobid.org/organisations/DE-2748#! DE-2748 2748 MSB Medical School Berlin - Hochschule für Gesundheit und Medizin - Bibliothek +http://lobid.org/organisations/DE-2752#! DE-2752 Universitätsarchiv Rostock +http://lobid.org/organisations/DE-2754#! DE-2754 2754 Marktbücherei Pöttmes +http://lobid.org/organisations/DE-2758#! DE-2758 2758 Staatliches Seminar für Didaktik und Lehrerbildung Heidelberg (Abt. Gymnasium), Bibliothek +http://lobid.org/organisations/DE-2765#! DE-2765 2765 Staatliche Schlösser, Burgen und Gärten Sachsen gGmbH, Präsenzbibliothek +http://lobid.org/organisations/DE-2767#! DE-2767 2767 Stadtbücherei Rosbach vor der Höhe +http://lobid.org/organisations/DE-2769#! DE-2769 Bistumsarchiv Hildesheim +http://lobid.org/organisations/DE-2770#! DE-2770 2770 Stadtbücherei Harburg +http://lobid.org/organisations/DE-2773#! DE-2773 Philipps-Universität Marburg, Institut für Neuere deutsche Literatur +http://lobid.org/organisations/DE-2777#! DE-2777 2777 Stadtbücherei Hechingen +http://lobid.org/organisations/DE-2781#! DE-2781 2781 Samtgemeindebücherei Schüttorf +http://lobid.org/organisations/DE-MUS-135720#! DE-MUS-135720 Kustodie/Kunstsammlung der Humboldt-Universität zu Berlin +http://lobid.org/organisations/DE-2787#! DE-2787 2787 Stadtbücherei Wolfenbüttel +http://lobid.org/organisations/AT-SAA#! AT-SAA AT-SAA Shared Archiving Austria +http://lobid.org/organisations/DE-2792#! DE-2792 2792 Helene-Weber-Schule Buchen, Bibliothek +http://lobid.org/organisations/DE-2800#! DE-2800 2800 Stadtarchiv Rendsburg +http://lobid.org/organisations/DE-2803#! DE-2803 Staatsarchiv Landshut +http://lobid.org/organisations/DE-Cb2#! DE-Cb2 Cb 2 Staatsarchiv Coburg, Bibliothek +http://lobid.org/organisations/DE-Lsh1#! DE-Lsh1 Lsh 1 Staatsarchiv Landshut, Bibliothek +http://lobid.org/organisations/DE-950-1#! DE-950-1 950/1 Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen, Fakultätsbibliothek Nürtingen-Braike +http://lobid.org/organisations/DE-2814#! DE-2814 2814 Stadtbibliothek Taucha +http://lobid.org/organisations/DE-638#! DE-638 Klassik Stiftung Weimar +http://lobid.org/organisations/DE-2817#! DE-2817 2817 Augustinerbibliothek Münnerstadt +http://lobid.org/organisations/DE-MUS-083525#! DE-MUS-083525 Henry van de Velde-Museum Haus Schulenburg +http://lobid.org/organisations/DE-2825#! DE-2825 2825 Dia-Archiv des Kunstgeschichtlichen Seminars der Universität Hamburg +http://lobid.org/organisations/DE-Hog1#! DE-Hog1 Hog 1 Stadtarchiv Bad Homburg vor der Höhe, Bibliothek +http://lobid.org/organisations/DE-2832#! DE-2832 Universitätsarchiv Clausthal +http://lobid.org/organisations/DE-2837#! DE-2837 2837 Bibliothek Gerstetten +http://lobid.org/organisations/DE-2838#! DE-2838 Kunstleihe Hamburg e.V. +http://lobid.org/organisations/DE-2841#! DE-2841 Evangelisches Landeskirchliches Archiv in Berlin +http://lobid.org/organisations/DE-2851#! DE-2851 2851 Bibliothek des Staatsinstituts für Schulqualität und Bildungsforschung +http://lobid.org/organisations/DE-639#! DE-639 Deutsche Digitale Bibliothek (DDB) +http://lobid.org/organisations/DE-2857#! DE-2857 2857 Stadtbibliothek Mügeln +http://lobid.org/organisations/DE-2861#! DE-2861 Deutsches Archäologisches Institut, Abteilung Istanbul, Archiv +http://lobid.org/organisations/DE-2863#! DE-2863 2863 Kirchenbibliothek Pegau +http://lobid.org/organisations/DE-2865#! DE-2865 2865 Bücherei Tarp +http://lobid.org/organisations/DE-2867#! DE-2867 Standard-Thesaurus Wirtschaft +http://lobid.org/organisations/DE-627-5#! DE-627-5 VD18-Datenbank: Das Verzeichnis Deutscher Drucke des 18. Jahrhunderts +http://lobid.org/organisations/DE-2871#! DE-2871 Herold, Verein für Heraldik, Genealogie und verwandte Wissenschaften, Archiv +http://lobid.org/organisations/DE-2872#! DE-2872 2872 Diakoneo Bibliothek Löhe23 +http://lobid.org/organisations/DE-2885#! DE-2885 Stiftung Deutsches Design Museum +http://lobid.org/organisations/DE-Pul2#! DE-Pul2 LVR-Archivberatungs- und Fortbildungszentrum, Archivberatung +http://lobid.org/organisations/DE-Pul3#! DE-Pul3 Vereinigte Adelsarchive im Rheinland e.V. +http://lobid.org/organisations/DE-840#! DE-840 840 Bibliothek LIV HN Sontheim +http://lobid.org/organisations/DE-82-791#! DE-82-791 82/791 Labordiagnostisches Zentrum, Bibliothek +http://lobid.org/organisations/DE-82-425#! DE-82-425 82/425 Cybernetics Lab IMA & IfU, Bibliothek +http://lobid.org/organisations/DE-2896#! DE-2896 2896 Stadtbücherei Griesheim +http://lobid.org/organisations/DE-2898#! DE-2898 2898 Siemens Bibliothek +http://lobid.org/organisations/DE-2901#! DE-2901 2901 Lesben- und Schwulenbibliothek Düsseldorf (LuSBD) +http://lobid.org/organisations/DE-2905#! DE-2905 Bayerische Künstlernachlässe e.V. +http://lobid.org/organisations/DE-2906#! DE-2906 Kreisarchiv des Oberbergischen Kreises +http://lobid.org/organisations/DE-2907#! DE-2907 Westfälische Hofes- und Familienarchive +http://lobid.org/organisations/DE-MUS-147624#! DE-MUS-147624 Museum Zentrum für verfolgte Künste +http://lobid.org/organisations/DE-2909#! DE-2909 2909 Mediothek Wutöschingen +http://lobid.org/organisations/DE-2914#! DE-2914 2914 Landeslabor Berlin Brandenburg, Bibliothek +http://lobid.org/organisations/DE-2915#! DE-2915 2915 MSH Medical School Hamburg, Bibliothek +http://lobid.org/organisations/DE-2922#! DE-2922 2922 LBZ-Bibliothek Berlin +http://lobid.org/organisations/DE-2924#! DE-2924 2924 Gemeindebücherei Schwanstetten +http://lobid.org/organisations/DE-Hef4#! DE-Hef4 Stadtarchiv Herford +http://lobid.org/organisations/DE-2928#! DE-2928 Umbruch Bildarchiv e.V. +http://lobid.org/organisations/DE-2937#! DE-2937 2937 Fraunhofer-Institut für Gießerei-, Composite- und Verarbeitungstechnik IGCV, Bibliothek +http://lobid.org/organisations/DE-2939#! DE-2939 2939 Sächsische Landesfachstelle für Bibliotheken +http://lobid.org/organisations/DE-2942#! DE-2942 2942 Stadtbücherei Kappeln +http://lobid.org/organisations/DE-2960#! DE-2960 Stadtarchiv Pforzheim - Institut für Stadtgeschichte +http://lobid.org/organisations/DE-2970#! DE-2970 Wilhelm-Vöge-Archiv +http://lobid.org/organisations/DE-2978#! DE-2978 2978 Fahrbücherei 8 im Kreis Rendsburg-Eckernförde +http://lobid.org/organisations/DE-2981#! DE-2981 2981 Fahrbücherei 11 im Kreis Storman +http://lobid.org/organisations/DE-2983#! DE-2983 2983 Fahrbücherei 13 im Kreis Dithmarschen +http://lobid.org/organisations/DE-2977#! DE-2977 2977 Fahrbücherei 7 im Kreis Schleswig-Flensburg +http://lobid.org/organisations/DE-MUS-738918#! DE-MUS-738918 Rudolf-Schäfer-Haus +http://lobid.org/organisations/DE-2987#! DE-2987 2987 Gemeindebücherei Heiningen +http://lobid.org/organisations/DE-2996#! DE-2996 2996 Stadtbücherei Schwentinental +http://lobid.org/organisations/DE-3003#! DE-3003 3003 Peter-Sodann-Bibliothek eG ""...wider dem vergehen"" +http://lobid.org/organisations/DE-3007#! DE-3007 Gemeindearchiv Planegg +http://lobid.org/organisations/DE-3016#! DE-3016 3016 Stadtbibliothek Großröhrsdorf +http://lobid.org/organisations/DE-3021#! DE-3021 3021 Zentralbibliothek Krostitz +http://lobid.org/organisations/DE-3022#! DE-3022 3022 Gemeinde Leukersdorf, Bibliothek +http://lobid.org/organisations/DE-3029#! DE-3029 3029 Stadtbibliothek Penig +http://lobid.org/organisations/DE-3034#! DE-3034 3034 Grenzlandbibliothek Seifhennersdorf +http://lobid.org/organisations/DE-3036#! DE-3036 3036 Stadt- und Schulbibliothek Treuen +http://lobid.org/organisations/DE-3037#! DE-3037 3037 Gemeindebibliothek Weinböhla +http://lobid.org/organisations/DE-3039#! DE-3039 3039 Stadtbibliothek Wolkenstein +http://lobid.org/organisations/DE-3041#! DE-3041 Landesverband Bildende Kunst Sachsen e.V. +http://lobid.org/organisations/DE-3043#! DE-3043 3043 Stadtbibliothek Eibenstock +http://lobid.org/organisations/DE-38-307#! DE-38-307 38/307 Humanwissenschaftliche Bibliothek: Gemeinsame Bibliothek der Humanwissenschaftlichen Fakultät und der USB +http://lobid.org/organisations/DE-3051#! DE-3051 3051 Gemeindebücherei Röthenbach +http://lobid.org/organisations/DE-3053#! DE-3053 3053 Gemeindebücherei Remels +http://lobid.org/organisations/DE-3059#! DE-3059 Stadtarchiv Löhne +http://lobid.org/organisations/DE-3061#! DE-3061 3061 Schulbibliothek der Philipp-Matthäus-Hahn-Schule Nürtingen +http://lobid.org/organisations/DE-3066#! DE-3066 Archiv Historische Bildpostkarten der Universität Osnabrück +http://lobid.org/organisations/DE-3067#! DE-3067 3067 Stadtbibliothek Markranstädt +http://lobid.org/organisations/DE-3069#! DE-3069 3069 Stadtbibliothek Heimsheim +http://lobid.org/organisations/DE-3070#! DE-3070 3070 Martha Cooper Library at URBAN NATION Museum Berlin +http://lobid.org/organisations/DE-3071#! DE-3071 3071 NBS Northern Business School, Bibliothek +http://lobid.org/organisations/DE-3073#! DE-3073 3073 Stadtarchiv Schopfheim +http://lobid.org/organisations/DE-82-792#! DE-82-792 82/792 Institut für Experimentelle Innere Medizin und Systembiologie, Bibliothek +http://lobid.org/organisations/DE-3082#! DE-3082 Stadtarchiv Völklingen +http://lobid.org/organisations/DE-3086#! DE-3086 3086 Kirchenbibliothek Annaberg-Buchholz +http://lobid.org/organisations/DE-3091#! DE-3091 3091 Stadtbücherei Schlitz +http://lobid.org/organisations/DE-3094#! DE-3094 Stadtarchiv Brilon +http://lobid.org/organisations/DE-4002#! DE-4002 Archiv der Alltagskultur des Ludwig-Uhland-Instituts für Empirische Kulturwissenschaft +http://lobid.org/organisations/DE-4004#! DE-4004 Land Schleswig-Holstein +http://lobid.org/organisations/DE-B99#! DE-B99 B 99 Deutsches Archäologisches Institut, Bibliothek der Zentrale Berlin +http://lobid.org/organisations/DE-MUS-150521#! DE-MUS-150521 Bauhüttenmuseum Freiburg +http://lobid.org/organisations/DE-4006#! DE-4006 Historisches Archiv der BGH Edelstahlwerke GmbH +http://lobid.org/organisations/DE-4011#! DE-4011 4011 Stadtbibliothek Belgern/Schildau +http://lobid.org/organisations/DE-4013#! DE-4013 4013 Kreisergänzungsbilbiothek Oschatz +http://lobid.org/organisations/DE-4015#! DE-4015 Stadtarchiv Kraichtal +http://lobid.org/organisations/DE-4016#! DE-4016 4016 ernst-may-gesellschaft e.V., Bibliothek +http://lobid.org/organisations/DE-4020#! DE-4020 4020 Bibliotheca Augustiniana - Forschungsbibliothek der Deutschen Augustiner +http://lobid.org/organisations/DE-4022#! DE-4022 Fotoarchiv der Gemeinde Merchweiler +http://lobid.org/organisations/DE-MUS-150729#! DE-MUS-150729 ZeitWerkStadt – Erlebnismuseum für Stadt- und Industriegeschichte +http://lobid.org/organisations/DE-Stg277#! DE-Stg277 Stg 277 Stadtarchiv Stuttgart, Bibliothek +http://lobid.org/organisations/DE-4027#! DE-4027 4027 Evangelische Zentralstelle für Weltanschauungsfragen Berlin (EZW), Bibliothek +http://lobid.org/organisations/DE-4028#! DE-4028 4028 Deutsches Institut für Urbanistik gGmbH, Bibliothek +http://lobid.org/organisations/DE-4032#! DE-4032 4032 BiB Bücherei im Bahnhof +http://lobid.org/organisations/DE-4037#! DE-4037 Bibliothek am Rathaus +http://lobid.org/organisations/DE-4039#! DE-4039 Schulbibliothek Blücherstr. +http://lobid.org/organisations/DE-4043#! DE-4043 4043 Stadt- und Schulbibliothek Landsberg +http://lobid.org/organisations/DE-4049#! DE-4049 4049 Zisterzienserinnen-Abtei Waldsassen, Bibliothek +http://lobid.org/organisations/DE-4053#! DE-4053 Stadtarchiv Verden (Aller) +http://lobid.org/organisations/DE-7-203#! DE-7-203 7/203 Deutsch-Chinesisches Institut für Rechtswissenschaft Göttingen, Bibliothek +http://lobid.org/organisations/DE-7-226#! DE-7-226 7/226 Centre for Modern Indian Studies, Bibliothek +http://lobid.org/organisations/DE-4057#! DE-4057 4057 Stadtbibliothek Bad Lausick +http://lobid.org/organisations/DE-7-703#! DE-7-703 7/703 Zentralabteilung Transfusionsmedizin, Bibliothek +http://lobid.org/organisations/DE-7-750#! DE-7-750 7/750 Zentrale Einrichtungen der Krankenversorgung, Apotheke, Bibliothek +http://lobid.org/organisations/DE-6068#! DE-6068 Stadtarchiv Coesfeld +http://lobid.org/organisations/DE-4069#! DE-4069 4069 Gemeindebibliothek Göda +http://lobid.org/organisations/DE-7-753#! DE-7-753 7/753 Giftinformationszentrum Nord, Bibliothek +http://lobid.org/organisations/DE-4073#! DE-4073 4073 Ludwig-Maximilians-Universität München, Institut für Vorderasiatische Archäologie der Fakultät für Kulturwissenschaften, Sammlung des Instituts für Vorderasiatische Archäologie +http://lobid.org/organisations/DE-4074#! DE-4074 Universitätsarchiv Paderborn +http://lobid.org/organisations/DE-4090#! DE-4090 4090 Stadtmuseum Düsseldorf / Bibliothek +http://lobid.org/organisations/DE-4097#! DE-4097 4097 Gesellschaft zur Beförderung gemeinnütziger Tätigkeit, Bibliothek +http://lobid.org/organisations/DE-4104#! DE-4104 Haus der Essener Geschichte/Stadtarchiv +http://lobid.org/organisations/DE-4108#! DE-4108 Stadtarchiv Warburg +http://lobid.org/organisations/DE-4112#! DE-4112 Kreisarchiv Ostalbkreis +http://lobid.org/organisations/DE-4115#! DE-4115 4115 Stadtbibliothek Rheinstetten +http://lobid.org/organisations/DE-4117#! DE-4117 4117 Gemeindebücherei Stockelsdorf +http://lobid.org/organisations/De-4118#! De-4118 Rheinisches Archiv für Künstlernachlässe +http://lobid.org/organisations/DE-4122#! DE-4122 4122 Stadtbibliothek Rötha +http://lobid.org/organisations/DE-4130#! DE-4130 4130 Stadtbibliothek Bad Dürrheim +http://lobid.org/organisations/DE-MUS-036628#! DE-MUS-036628 Museumswohnung WBS70 +http://lobid.org/organisations/DE-MUS-037225#! DE-MUS-037225 Odysseum Köln +http://lobid.org/organisations/DE-MUS-038124#! DE-MUS-038124 Traktoren- und Landmaschinenmuseum +http://lobid.org/organisations/DE-MUS-038426#! DE-MUS-038426 Städtische Museen Heilbronn, Kunsthalle Vogelmann +http://lobid.org/organisations/DE-MUS-040424#! DE-MUS-040424 Kunstmuseum Ahrenshoop e.V. +http://lobid.org/organisations/DE-MUS-040622#! DE-MUS-040622 Jagdschloss Letzlingen +http://lobid.org/organisations/DE-MUS-041021#! DE-MUS-041021 Heimatstube Launsbach +http://lobid.org/organisations/DE-MUS-041625#! DE-MUS-041625 Strommuseum +http://lobid.org/organisations/DE-MUS-042024#! DE-MUS-042024 Museum für deutsch-amerikanische Nachkriegsgeschichte +http://lobid.org/organisations/DE-MUS-043923#! DE-MUS-043923 Ausstellung ""Geologie der Region"" +http://lobid.org/organisations/DE-MUS-044228#! DE-MUS-044228 Alexej von Assaulenko-Kulturstiftung +http://lobid.org/organisations/DE-MUS-048126#! DE-MUS-048126 Phänomenta Lüdenscheid +http://lobid.org/organisations/DE-MUS-048928#! DE-MUS-048928 Staatliche Kunstsammlungen Dresden / Türckische Cammer +http://lobid.org/organisations/DE-MUS-049129#! DE-MUS-049129 Hindemith Kabinett im Kuhhirtenturm +http://lobid.org/organisations/DE-MUS-049327#! DE-MUS-049327 BORUSSEUM, das Borussia Dortmund-Museum +http://lobid.org/organisations/DE-MUS-049525#! DE-MUS-049525 Ausstellung Münchner Kaiserburg +http://lobid.org/organisations/DE-MUS-049921#! DE-MUS-049921 Henschel-Museum Kassel +http://lobid.org/organisations/DE-MUS-052120#! DE-MUS-052120 Heimatmuseum Großburschla +http://lobid.org/organisations/DE-MUS-054324#! DE-MUS-054324 Haus Am Horn +http://lobid.org/organisations/DE-MUS-055025#! DE-MUS-055025 IFA Museum Nordhausen +http://lobid.org/organisations/DE-MUS-055629#! DE-MUS-055629 Deutsches Hasenmuseum im Wasserturm +http://lobid.org/organisations/DE-MUS-056122#! DE-MUS-056122 Gedenkort SA-Gefängnis Papestraße und Schwerbelastungskörper +http://lobid.org/organisations/DE-MUS-057021#! DE-MUS-057021 Flipper- und Arcademuseum +http://lobid.org/organisations/DE-MUS-057729#! DE-MUS-057729 Geschichtsort Humberghaus Dingden +http://lobid.org/organisations/DE-MUS-057823#! DE-MUS-057823 Mitteldeutsches Eisenbahn- und Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-063427#! DE-MUS-063427 Siemens Healthineers MedMuseum +http://lobid.org/organisations/DE-MUS-063823#! DE-MUS-063823 Tchoban Foundation. Museum für Architekturzeichnungen +http://lobid.org/organisations/DE-MUS-064222#! DE-MUS-064222 Polizeimuseum Hamburg +http://lobid.org/organisations/DE-MUS-065423#! DE-MUS-065423 Harzhorn-Informationszentrum +http://lobid.org/organisations/DE-MUS-065621#! DE-MUS-065621 Kindermuseum Zinnober +http://lobid.org/organisations/DE-MUS-066124#! DE-MUS-066124 Museum St. Laurentius +http://lobid.org/organisations/DE-MUS-066322#! DE-MUS-066322 Archäologisches Museum Maifeld +http://lobid.org/organisations/DE-MUS-066624#! DE-MUS-066624 Lebendiges Museum - Weinbau in Klein-Winternheim +http://lobid.org/organisations/DE-MUS-066926#! DE-MUS-066926 Konrad-Wachsmann-Haus (Holzhausbau) +http://lobid.org/organisations/DE-MUS-067023#! DE-MUS-067023 Thüringer Postamt-Museum +http://lobid.org/organisations/DE-MUS-067627#! DE-MUS-067627 Fugger und Welser Erlebnismuseum +http://lobid.org/organisations/DE-MUS-071923#! DE-MUS-071923 Heimathaus Chieming +http://lobid.org/organisations/DE-MUS-073325#! DE-MUS-073325 Landwirtschaftsmuseum Waake +http://lobid.org/organisations/DE-MUS-073929#! DE-MUS-073929 Heimatscheune Dedensen +http://lobid.org/organisations/DE-MUS-074026#! DE-MUS-074026 Alte Dorfschule Bothmer +http://lobid.org/organisations/DE-MUS-074120#! DE-MUS-074120 Schulmuseum Schüttorf +http://lobid.org/organisations/DE-MUS-074328#! DE-MUS-074328 Seilerei Museum +http://lobid.org/organisations/DE-MUS-074620#! DE-MUS-074620 Museum am Diakonissen-Mutterhaus +http://lobid.org/organisations/DE-MUS-074724#! DE-MUS-074724 Heimathaus Aschendorf +http://lobid.org/organisations/DE-MUS-075727#! DE-MUS-075727 Museum der Lachendorfer Papiergeschichte +http://lobid.org/organisations/DE-MUS-075925#! DE-MUS-075925 Feuerwehrmuseum Jever +http://lobid.org/organisations/DE-MUS-076824#! DE-MUS-076824 WOK - World of Kitchen - das Küchenmuseum +http://lobid.org/organisations/DE-MUS-077327#! DE-MUS-077327 Heimatmuseum Esterwegen +http://lobid.org/organisations/DE-MUS-077525#! DE-MUS-077525 Heimatstube Edemissen +http://lobid.org/organisations/DE-MUS-078028#! DE-MUS-078028 Freilichtmuseum ""Jan vom Moor und Klappstau"" +http://lobid.org/organisations/DE-MUS-078424#! DE-MUS-078424 Bergbaumuseum - Schacht Weser +http://lobid.org/organisations/DE-MUS-079021#! DE-MUS-079021 Bahnhofsmuseum des Heimat- und Geschichtsvereins +http://lobid.org/organisations/DE-MUS-079427#! DE-MUS-079427 Osingmuseum Herbolzheim +http://lobid.org/organisations/DE-MUS-079625#! DE-MUS-079625 Fliegergeschichtliches Museum Jabo G34 +http://lobid.org/organisations/DE-MUS-080026#! DE-MUS-080026 Münchner Bank Museum +http://lobid.org/organisations/DE-MUS-080328#! DE-MUS-080328 NS-Dokumentationszentrum München +http://lobid.org/organisations/DE-MUS-081425#! DE-MUS-081425 Museum Sankt Johann Nepomuk +http://lobid.org/organisations/DE-MUS-081925#! DE-MUS-081925 Vorgeschichtsmuseum Urzeitbahnhof Hartmannshof +http://lobid.org/organisations/DE-MUS-082126#! DE-MUS-082126 Heimatmuseum Prittriching +http://lobid.org/organisations/DE-MUS-082428#! DE-MUS-082428 Karthaus Prüll, Museen des Bezirksklinikums Regensburg +http://lobid.org/organisations/DE-MUS-083223#! DE-MUS-083223 Hammerschmiede-Museum +http://lobid.org/organisations/DE-MUS-083629#! DE-MUS-083629 Dokumentationszentrum Walpersberg +http://lobid.org/organisations/DE-MUS-084028#! DE-MUS-084028 Museum Neues Schloss Rauenstein +http://lobid.org/organisations/DE-MUS-084226#! DE-MUS-084226 Opfermoor Vogtei +http://lobid.org/organisations/DE-MUS-084315#! DE-MUS-084315 Stadtarchiv Lauf, Städtische Sammlungen +http://lobid.org/organisations/DE-MUS-085323#! DE-MUS-085323 Museum ""Haus der Schützen"" +http://lobid.org/organisations/DE-MUS-085427#! DE-MUS-085427 Alte Schmiede Bennhausen +http://lobid.org/organisations/DE-MUS-085521#! DE-MUS-085521 Bundesbank - Bunker Cochem +http://lobid.org/organisations/DE-MUS-086722#! DE-MUS-086722 Moderne Keramik des 20. Jahrhundert - Sammlung Hinder/Reimers +http://lobid.org/organisations/DE-MUS-086826#! DE-MUS-086826 Clara-Viebig-Zentrum +http://lobid.org/organisations/DE-MUS-087027#! DE-MUS-087027 Naturparkzentrum Teufelsschlucht +http://lobid.org/organisations/DE-MUS-087329#! DE-MUS-087329 Ortsmuseum Flonheim +http://lobid.org/organisations/DE-MUS-087423#! DE-MUS-087423 Dorfmuseum Gebhardshain +http://lobid.org/organisations/DE-MUS-087725#! DE-MUS-087725 Papiermuseum im Kurpfälzischen Zehnthof +http://lobid.org/organisations/DE-MUS-088124#! DE-MUS-088124 Deutsches Drachenmuseum +http://lobid.org/organisations/DE-MUS-088322#! DE-MUS-088322 Tabakmuseum im Museumszentrum Lorsch +http://lobid.org/organisations/DE-MUS-089127#! DE-MUS-089127 Schulmuseum St. Georg Gymnasium +http://lobid.org/organisations/DE-MUS-089721#! DE-MUS-089721 Heimathaus Brackwede +http://lobid.org/organisations/DE-MUS-090320#! DE-MUS-090320 Beckumer Zement-Museum in Köttings-Mühle +http://lobid.org/organisations/DE-MUS-091521#! DE-MUS-091521 Heimathaus Diedenshausen +http://lobid.org/organisations/DE-MUS-091823#! DE-MUS-091823 Heimatkeller des Heimatvereins Augustdorf e.V. +http://lobid.org/organisations/DE-MUS-091927#! DE-MUS-091927 Zeughaus u. Museum der Schützengesellschaft Attendorn 1222 e.V. +http://lobid.org/organisations/DE-MUS-092222#! DE-MUS-092222 Spielzeugmuseum Kunsterbunt +http://lobid.org/organisations/DE-MUS-092420#! DE-MUS-092420 Heimatmuseum in der VG Heßheim +http://lobid.org/organisations/DE-MUS-094322#! DE-MUS-094322 Kleines Laubenheimer Museum +http://lobid.org/organisations/DE-MUS-095127#! DE-MUS-095127 Museum Otto Schäfer - Buchdruck, Grafik, Kunsthandwerk +http://lobid.org/organisations/DE-MUS-095221#! DE-MUS-095221 Heinrich Kirchner Galerie +http://lobid.org/organisations/DE-MUS-095523#! DE-MUS-095523 Heimatmuseum Stein in Mittelfranken +http://lobid.org/organisations/DE-MUS-096620#! DE-MUS-096620 Blaufärbermuseum +http://lobid.org/organisations/DE-MUS-096724#! DE-MUS-096724 Born in Schiefweg - Auswanderermuseum +http://lobid.org/organisations/DE-MUS-098928#! DE-MUS-098928 Heimatmuseum Haus Hund +http://lobid.org/organisations/DE-MUS-099525#! DE-MUS-099525 Allgäu-Schwäbisches Musikmuseum Eglofs +http://lobid.org/organisations/DE-MUS-099723#! DE-MUS-099723 Historische Kelter Kleinaspach +http://lobid.org/organisations/DE-MUS-101628#! DE-MUS-101628 Historische Kräuterkammer der Reichsstadt-Apotheke +http://lobid.org/organisations/DE-MUS-102829#! DE-MUS-102829 Küferei-Museum Eberbach +http://lobid.org/organisations/DE-MUS-103426#! DE-MUS-103426 Zunftstube im Torli +http://lobid.org/organisations/DE-MUS-103728#! DE-MUS-103728 Volkskulturmuseum Raußmühle +http://lobid.org/organisations/DE-MUS-104523#! DE-MUS-104523 Drachenhöhle Furth im Wald +http://lobid.org/organisations/DE-MUS-107126#! DE-MUS-107126 Radiomuseum der Nordpfalz +http://lobid.org/organisations/DE-MUS-107428#! DE-MUS-107428 Ehemalige Synagoge Odenbach +http://lobid.org/organisations/DE-MUS-108421#! DE-MUS-108421 Erstes Deutsches Ringermuseum +http://lobid.org/organisations/DE-MUS-109122#! DE-MUS-109122 Bildermuseum +http://lobid.org/organisations/DE-MUS-109726#! DE-MUS-109726 Devonium Waxweiler +http://lobid.org/organisations/DE-MUS-110825#! DE-MUS-110825 Gundelsheimer Oldtimermuseum +http://lobid.org/organisations/DE-MUS-111620#! DE-MUS-111620 Museum Gasthaus Arche +http://lobid.org/organisations/DE-MUS-112029#! DE-MUS-112029 Museum der Harmonie +http://lobid.org/organisations/DE-MUS-112727#! DE-MUS-112727 Tower MMK +http://lobid.org/organisations/DE-MUS-113126#! DE-MUS-113126 Dokumentationsstätte Goldbacher Stollen und KZ Aufkirch e.V. +http://lobid.org/organisations/DE-MUS-113220#! DE-MUS-113220 Dokumentations- und Kulturzentrum Deutsche Sinti und Roma +http://lobid.org/organisations/DE-MUS-113928#! DE-MUS-113928 Heimatstube in der Siebenbürger Begegnungsstätte +http://lobid.org/organisations/DE-MUS-115320#! DE-MUS-115320 Historische Sammlung. Museum zur Geschichte der Herrnhuter +http://lobid.org/organisations/DE-MUS-117628#! DE-MUS-117628 Dorfmuseum Nordhausen +http://lobid.org/organisations/DE-MUS-118621#! DE-MUS-118621 Dorfmuseum Fockbek +http://lobid.org/organisations/DE-MUS-118829#! DE-MUS-118829 Flandernbunker +http://lobid.org/organisations/DE-MUS-121226#! DE-MUS-121226 Fränkisches Fischereimuseum +http://lobid.org/organisations/DE-MUS-121424#! DE-MUS-121424 URBAN NATION MUSEUM FOR CONTEMPORARY ART +http://lobid.org/organisations/DE-MUS-121924#! DE-MUS-121924 Archäologisches Fenster Burg Spandau +http://lobid.org/organisations/DE-MUS-123326#! DE-MUS-123326 Heimatstube Erlenbach +http://lobid.org/organisations/DE-MUS-123628#! DE-MUS-123628 PAMINA-Museum für Siedlungsgeschichte +http://lobid.org/organisations/DE-MUS-123826#! DE-MUS-123826 Museum Riegel - Römer und Raketen +http://lobid.org/organisations/DE-MUS-124225#! DE-MUS-124225 Heimatmuseum der Trachtengruppe Leidringen +http://lobid.org/organisations/DE-MUS-126523#! DE-MUS-126523 Eisenbahnmuseum Schwarzwald +http://lobid.org/organisations/DE-MUS-126627#! DE-MUS-126627 ErfinderZeiten. Auto- und Uhrenmuseum +http://lobid.org/organisations/DE-MUS-127328#! DE-MUS-127328 Heimatmuseum Hoffenheim +http://lobid.org/organisations/DE-MUS-127620#! DE-MUS-127620 Sammlung Grässlin +http://lobid.org/organisations/DE-MUS-128227#! DE-MUS-128227 Bibliorama. Das Bibelmuseum Stuttgart +http://lobid.org/organisations/DE-MUS-128321#! DE-MUS-128321 Holzkanumuseum +http://lobid.org/organisations/DE-MUS-128821#! DE-MUS-128821 Elektronikmuseum Tettnang +http://lobid.org/organisations/DE-MUS-129126#! DE-MUS-129126 Galerie Fähnle +http://lobid.org/organisations/DE-MUS-129522#! DE-MUS-129522 Sammlung FER Collection im Ulmer Stadtregal +http://lobid.org/organisations/DE-MUS-129928#! DE-MUS-129928 Heimatstube Tannheim +http://lobid.org/organisations/DE-MUS-130121#! DE-MUS-130121 Alamannen Museum Vörstetten +http://lobid.org/organisations/DE-MUS-130527#! DE-MUS-130527 Textilmuseum Brennet +http://lobid.org/organisations/DE-MUS-131124#! DE-MUS-131124 Museum Schlösschen im Hofgarten +http://lobid.org/organisations/DE-MUS-132325#! DE-MUS-132325 Thorpe Heimatmuseum +http://lobid.org/organisations/DE-MUS-134029#! DE-MUS-134029 Bergbaumuseum BV-Kleinzeche +http://lobid.org/organisations/DE-MUS-134321#! DE-MUS-134321 Museum der Illusionen +http://lobid.org/organisations/DE-MUS-136629#! DE-MUS-136629 Heinrich-Schliemann-Institut für Altertumswissenschaften +http://lobid.org/organisations/DE-MUS-208615#! DE-MUS-208615 Museum Münstertal für Bergbau- und Forstgeschichte +http://lobid.org/organisations/DE-MUS-435510#! DE-MUS-435510 Töpferei Germscheid +http://lobid.org/organisations/DE-MUS-458013#! DE-MUS-458013 MUT - Museum unter Tage +http://lobid.org/organisations/DE-MUS-814111#! DE-MUS-814111 Antikensammlung SMB +http://lobid.org/organisations/DE-MUS-136827#! DE-MUS-136827 Heimatmuseum Grünewalde +http://lobid.org/organisations/DE-MUS-139524#! DE-MUS-139524 Ausstellungs- und Gedenkort Friedhof der Märzgefallenen +http://lobid.org/organisations/DE-MUS-139826#! DE-MUS-139826 Grenzdokumentationsstätte Schlutup +http://lobid.org/organisations/DE-MUS-140029#! DE-MUS-140029 Schreibmaschinen-Museum +http://lobid.org/organisations/DE-MUS-140821#! DE-MUS-140821 Heimatmuseum Marienfeld +http://lobid.org/organisations/DE-MUS-141324#! DE-MUS-141324 Zeche Scherlebeck +http://lobid.org/organisations/DE-MUS-141928#! DE-MUS-141928 Forum Jacob Pins +http://lobid.org/organisations/DE-MUS-142129#! DE-MUS-142129 Heimathaus Ibbenbüren +http://lobid.org/organisations/DE-MUS-143528#! DE-MUS-143528 Afrika-Museum-Vogt Olsberg +http://lobid.org/organisations/DE-MUS-143622#! DE-MUS-143622 Kutschenmuseum Kocks Kutschen und Karren +http://lobid.org/organisations/DE-MUS-146027#! DE-MUS-146027 Handwerkerhof +http://lobid.org/organisations/DE-MUS-146923#! DE-MUS-146923 Gondwana Praehistorium +http://lobid.org/organisations/DE-MUS-147426#! DE-MUS-147426 Treckerstube Wolfersweiler +http://lobid.org/organisations/DE-MUS-148023#! DE-MUS-148023 Haus der anderen Nachbarn +http://lobid.org/organisations/DE-MUS-148127#! DE-MUS-148127 Städtische Galerie +http://lobid.org/organisations/DE-MUS-148325#! DE-MUS-148325 Dorfmuseum Durach +http://lobid.org/organisations/DE-MUS-149328#! DE-MUS-149328 Münzsammlung am Institut für Altertumskunde der Universität zu Köln +http://lobid.org/organisations/DE-MUS-150021#! DE-MUS-150021 Stadtseemuseum Bad Waldsee +http://lobid.org/organisations/DE-MUS-150427#! DE-MUS-150427 Medizinhistorisch-anatomische Sammlung (Museum anatomicum) +http://lobid.org/organisations/DE-4134#! DE-4134 Stadtarchiv Kaarst +http://lobid.org/organisations/DE-4140#! DE-4140 filmdienst.de +http://lobid.org/organisations/DE-MUS-160523#! DE-MUS-160523 Kunstsammlung Pankow +http://lobid.org/organisations/DE-4144#! DE-4144 Kreisarchiv des Unstrut-Hainich-Kreises +http://lobid.org/organisations/DE-4147#! DE-4147 Stadtarchiv Zirndorf +http://lobid.org/organisations/DE-4150#! DE-4150 data4kulthura +http://lobid.org/organisations/DE-4151#! DE-4151 4151 Technische Hochschule Rosenheim am Campus Burghausen, Bibliothek +http://lobid.org/organisations/DE-4152#! DE-4152 4152 Stadtbücherei Vohenstrauß +http://lobid.org/organisations/DE-4156#! DE-4156 Archiv der Regensburgischen Botanischen Gesellschaft +http://lobid.org/organisations/DE-Ef29#! DE-Ef29 Ef 29 Bundesarbeitsgericht, Bibliothek +http://lobid.org/organisations/DE-4159#! DE-4159 Kreisarchiv Rastatt +http://lobid.org/organisations/DE-4164#! DE-4164 Stadtarchiv Brakel +http://lobid.org/organisations/DE-4166#! DE-4166 Stadtarchiv Lüdinghausen +http://lobid.org/organisations/DE-4170#! DE-4170 Stadtarchiv Gescher +http://lobid.org/organisations/DE-4175#! DE-4175 Universitätsarchiv Leipzig +http://lobid.org/organisations/DE-MUS-161224#! DE-MUS-161224 Bud Spencer Museum Berlin +http://lobid.org/organisations/DE-MUS-161526#! DE-MUS-161526 Museum im Robert Koch-Institut +http://lobid.org/organisations/DE-MUS-162029#! DE-MUS-162029 Johannitermuseum zu Mirow +http://lobid.org/organisations/DE-MUS-162821#! DE-MUS-162821 U-Boot Museum Sassnitz +http://lobid.org/organisations/DE-MUS-163022#! DE-MUS-163022 Dunkelkammer Rastow +http://lobid.org/organisations/DE-MUS-163928#! DE-MUS-163928 Erstes Deutsches Engelsmuseum +http://lobid.org/organisations/DE-MUS-165320#! DE-MUS-165320 Theres-Neumann-Museum +http://lobid.org/organisations/DE-MUS-164723#! DE-MUS-164723 Möller Technikon Wedel +http://lobid.org/organisations/DE-MUS-167326#! DE-MUS-167326 Kunstort Lehnin +http://lobid.org/organisations/DE-4191#! DE-4191 4191 Historischer Verein Wertheim e. V.; Bibliothek +http://lobid.org/organisations/DE-4192#! DE-4192 Stadtarchiv Bad Waldsee +http://lobid.org/organisations/DE-MUS-168621#! DE-MUS-168621 Museum Vinum Celticum +http://lobid.org/organisations/DE-MUS-168527#! DE-MUS-168527 Julius-Kardinal-Döpfner-Museum +http://lobid.org/organisations/DE-MUS-168829#! DE-MUS-168829 Industrie- und Kunstmuseum Schönebeck/Elbe +http://lobid.org/organisations/DE-4198#! DE-4198 4198 Hessische Bibliographie +http://lobid.org/organisations/DE-4199#! DE-4199 4199 Berliner Bildungscampus für Gesundheitsberufe +http://lobid.org/organisations/DE-4202#! DE-4202 Gemeinde Hille, Gemeindearchiv +http://lobid.org/organisations/DE-4205#! DE-4205 4205 Bibliothek der Kommission für Zeitgeschichte +http://lobid.org/organisations/DE-4206#! DE-4206 4206 Infanterieschule, Bibliothek +http://lobid.org/organisations/DE-4212#! DE-4212 Freiherr-vom-Stein Gymnasium Hamm +http://lobid.org/organisations/DE-3038#! DE-3038 3038 Stadtbibliothek Wilsdruff +http://lobid.org/organisations/DE-6-255#! DE-6-255 6/255 Universität Münster, Bibliotheken Romanisches Seminar und Institut für Slavistik +http://lobid.org/organisations/DE-4218#! DE-4218 Historisches Datenzentrum Sachsen-Anhalt +http://lobid.org/organisations/DE-6-318#! DE-6-318 6/318 Universität Münster, Leibniz-Forschungsstelle, Bibliothek +http://lobid.org/organisations/DE-Rs5#! DE-Rs5 Rs 5 Elblandkliniken Riesa-Großenhain GmbH, Elblandklinikum Riesa, Medizinisch-Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-MUS-284911#! DE-MUS-284911 Stadtmuseum Gehrden +http://lobid.org/organisations/DE-B1503#! DE-B1503 B 1503 German Institute of Development and Sustainability (IDOS), Bibliothek +http://lobid.org/organisations/DE-MUS-732014#! DE-MUS-732014 Ev. Klosterstift Marienfließ +http://lobid.org/organisations/DE-B557#! DE-B557 B 557 Leibniz-Zentrum für Literatur- und Kulturforschung, Bibliothek +http://lobid.org/organisations/DE-B1547#! DE-B1547 B 1547 Deutsches Institut für Menschenrechte, Bibliothek +http://lobid.org/organisations/DE-Ch77#! DE-Ch77 Ch 77 Klinikum Chemnitz, Medizinische Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Sam1#! DE-Sam1 Sam 1 Landratsamt Bodenseekreis, Kulturamt, Kreisbibliothek +http://lobid.org/organisations/DE-6-177#! DE-6-177 6/177 Universität Münster, Gemeinsame Bibliothek der Zivilrechtlichen Institute +http://lobid.org/organisations/DE-6-007#! DE-6-007 6/007 Universität Münster, Bibliothek Geowissenschaften I +http://lobid.org/organisations/DE-4229#! DE-4229 Nachlassverwaltung Carlo Cazals Udo Klein +http://lobid.org/organisations/DE-2809#! DE-2809 2809 Max Weber Stiftung - Deutsche Geisteswissenschaftliche Institute im Ausland, Digitale Bibliothek +http://lobid.org/organisations/DE-Hv131#! DE-Hv131 Hv 131 Niedersächsisches Ministerium für Ernährung, Landwirtschaft und Verbraucherschutz, Informations- und Bibliotheksdienste +http://lobid.org/organisations/DE-Ks17#! DE-Ks17 Ks 17 documenta archiv, Bibliothek +http://lobid.org/organisations/DE-MUS-109528#! DE-MUS-109528 Willy Brandt Forum Unkel +http://lobid.org/organisations/DE-4215#! DE-4215 Stadtbücherei Heide +http://lobid.org/organisations/DE-Ka84#! DE-Ka84 Ka 84 Hochschule für Musik Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-6-248#! DE-6-248 6/248 Universität Münster, Bibliotheken im Fürstenberghaus +http://lobid.org/organisations/DE-206#! DE-206 206 ZBW - Leibniz-Informationszentrum Wirtschaft, Standort Kiel +http://lobid.org/organisations/DE-455#! DE-455 455 Leihverkehrs- und Ergänzungsbibliothek +http://lobid.org/organisations/DE-4234#! DE-4234 Stadtbücherei Schenefeld +http://lobid.org/organisations/DE-Mh31#! DE-Mh31 Mh 31 Staatliche Hochschule für Musik und Darstellende Kunst Mannheim, Bibliothek +http://lobid.org/organisations/DE-M483#! DE-M483 M 483 Katholische Stiftungshochschule München, Bibliothek München +http://lobid.org/organisations/DE-6-M#! DE-6-M 6/M Universitäts- und Landesbibliothek Münster, Zweigbibliothek Medizin +http://lobid.org/organisations/DE-605#! DE-605 605 hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen +http://lobid.org/organisations/DE-MUS-478611#! DE-MUS-478611 LWL-Industriemuseum, Glashütte Gernheim +http://lobid.org/organisations/DE-W78S#! DE-W78S W 78 S Fraunhofer-Institut für Silicatforschung ISC, Bibliothek +http://lobid.org/organisations/DE-6-298#! DE-6-298 6/298 Universität Münster, Zentrum für Didaktik der Biologie (ZDB) Bibliothek +http://lobid.org/organisations/DE-6-Z#! DE-6-Z 6/Z Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv +http://lobid.org/organisations/DE-MUS-491218#! DE-MUS-491218 Burgdorfmuseum Neidenstein +http://lobid.org/organisations/DE-6-325#! DE-6-325 6/325 Universität Münster, Institut für Interdisziplinäre Zypern-Studien, Bibliothek +http://lobid.org/organisations/DE-Hed2#! DE-Hed2 Hed 2 Duale Hochschule Baden-Württemberg Heidenheim, Bibliothek +http://lobid.org/organisations/DE-MUS-169322#! DE-MUS-169322 Heimatmuseum Wolfersweiler +http://lobid.org/organisations/DE-4214#! DE-4214 4214 Generalzolldirektion - Bildungs- und Wissenschaftszentrum Leipzig, Bibliothek +http://lobid.org/organisations/DE-6-286#! DE-6-286 6/286 Universität Münster, Institut für Musikpädagogik, Bibliothek +http://lobid.org/organisations/DE-1161#! DE-1161 1161 Stadtbibliothek Mühlhausen +http://lobid.org/organisations/DE-4228#! DE-4228 Gemeindearchiv Altenbeken +http://lobid.org/organisations/DE-MUS-796018#! DE-MUS-796018 Zeittunnel Wülfrath +http://lobid.org/organisations/DE-82-233#! DE-82-233 82/233 Lehr- und Forschungsgebiet Fachdidaktik Bautechnik, Bibliothek +http://lobid.org/organisations/DE-2304#! DE-2304 2304 Bibliothek Großauheim +http://lobid.org/organisations/DE-2308#! DE-2308 2308 Stadtbibliothek Kurort Oberwiesenthal +http://lobid.org/organisations/DE-Aug11#! DE-Aug11 Aug 11 Diözesan- und Pastoralbibliothek +http://lobid.org/organisations/DE-2317#! DE-2317 2317 Priesterseminar der Diözese Augsburg, Bibliothek +http://lobid.org/organisations/DE-2318#! DE-2318 2318 Kapitelbibliotheken der Diözese Augsburg +http://lobid.org/organisations/DE-2319#! DE-2319 2319 Joseph Bernhart Bibliothek +http://lobid.org/organisations/DE-2321#! DE-2321 2321 Wilhelm-Röpke-Schule Ettlingen, Schulbibliothek +http://lobid.org/organisations/DE-2323#! DE-2323 2323 Archiv der Jugendkulturen e.V., Bibliothek und Archiv +http://lobid.org/organisations/DE-MUS-070524#! DE-MUS-070524 Wettermuseum, Museum für Meteorologie und Aerologie +http://lobid.org/organisations/DE-MUS-037725#! DE-MUS-037725 Uniseum Freiburg +http://lobid.org/organisations/DE-2327#! DE-2327 Archiv des Städtischen Musikvereins zu Düsseldorf e. V. gegr. 1818 +http://lobid.org/organisations/DE-MUS-710014#! DE-MUS-710014 Staatliche Museen zu Berlin +http://lobid.org/organisations/DE-MUS-069321#! DE-MUS-069321 Georg-August-Universität Göttingen / Herbarium Göttingen +http://lobid.org/organisations/DE-MUS-069821#! DE-MUS-069821 Georg-August-Universität: Diplomatischer Apparat +http://lobid.org/organisations/DE-MUS-070024#! DE-MUS-070024 Georg-August-Universität Göttingen / Alter Botanischer Garten +http://lobid.org/organisations/DE-2329#! DE-2329 Stadtarchiv Freiburg +http://lobid.org/organisations/DE-2330#! DE-2330 2330 Ortsbücherei Murr +http://lobid.org/organisations/DE-2332#! DE-2332 Archiv der Martin-Luther-Universität Halle-Wittenberg +http://lobid.org/organisations/DE-2334#! DE-2334 2334 AlliiertenMuseum, Bibliothek +http://lobid.org/organisations/DE-2338#! DE-2338 Diözesanarchiv Würzburg +http://lobid.org/organisations/DE-2344#! DE-2344 Archiv der Max-Planck-Gesellschaft +http://lobid.org/organisations/DE-2347#! DE-2347 2347 Mediathek Waldkirch +http://lobid.org/organisations/DE-2349#! DE-2349 2349 Hochschule für Bildende Künste Dresden, Archiv und Kustodie +http://lobid.org/organisations/DE-2350#! DE-2350 Günter Grass Stiftung Medienarchiv +http://lobid.org/organisations/DE-2353#! DE-2353 2353 Nordfriisk Instituut, Bibliothek und Archiv +http://lobid.org/organisations/DE-2355#! DE-2355 2355 Archiv der deutschen Jugendbewegung, Bibliothek +http://lobid.org/organisations/DE-2357#! DE-2357 2357 Hochschule Fresenius Heidelberg, Bibliothek +http://lobid.org/organisations/DE-2358#! DE-2358 2358 GIZ - Medien- und Informationszentrum der Akademie +http://lobid.org/organisations/DE-2359#! DE-2359 2359 Museum Heineanum, Bibliothek +http://lobid.org/organisations/DE-632#! DE-632 Ex Libris (Deutschland) GmbH +http://lobid.org/organisations/DE-2364#! DE-2364 Kreisarchiv Euskirchen +http://lobid.org/organisations/DE-34-36#! DE-34-36 34/36 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Bibliothek des Deutschen Alpenvereins, Sektion Kassel +http://lobid.org/organisations/DE-2372#! DE-2372 2372 Stadt- und Pfarrbücherei Greding +http://lobid.org/organisations/DE-2383#! DE-2383 2383 Gemeindebücherei Seeon-Seebruck +http://lobid.org/organisations/DE-MUS-104627#! DE-MUS-104627 Orientalische Münzsammlung der Deutschen Morgenländischen Gesellschaft +http://lobid.org/organisations/DE-2385#! DE-2385 Kreisarchiv Höxter +http://lobid.org/organisations/DE-1866-1#! DE-1866-1 1866/1 Hochschule für Gesundheit, Hochschulbibliothek, Zweigstelle Ambulanz +http://lobid.org/organisations/DE-2390#! DE-2390 Stadtarchiv Neukirchen-Vluyn +http://lobid.org/organisations/DE-2391#! DE-2391 2391 Karlsgymnasium Bad Reichenhall, Zentralbibliothek +http://lobid.org/organisations/DE-2400#! DE-2400 2400 LMSCloud GmbH +http://lobid.org/organisations/DE-2410#! DE-2410 2410 Kreisarchiv Stormarn +http://lobid.org/organisations/DE-2414#! DE-2414 Landeskirchliches Archiv Hannover +http://lobid.org/organisations/DE-2418#! DE-2418 Universität der Künste Berlin, Universitätsarchiv +http://lobid.org/organisations/DE-2423#! DE-2423 2423 Bibliothek von Amtsgericht und Landgericht Hildesheim +http://lobid.org/organisations/DE-2427#! DE-2427 2427 Kreisarchiv Rhein-Neckar-Kreis, Bibliothek +http://lobid.org/organisations/DE-2428#! DE-2428 Archiv der Hansestadt Lüneburg +http://lobid.org/organisations/DE-2431#! DE-2431 2431 Stadtbücherei Zwingenberg +http://lobid.org/organisations/DE-2434#! DE-2434 2434 Landessozialgericht Niedersachsen-Bremen, Bibliothek +http://lobid.org/organisations/DE-2436#! DE-2436 2436 digiCULT-Verbund eG +http://lobid.org/organisations/DE-2440#! DE-2440 2440 Gemeindebücherei Teningen +http://lobid.org/organisations/DE-2446#! DE-2446 Archiv der Stadt Erftstadt +http://lobid.org/organisations/DE-2448#! DE-2448 Archiv des Amtes Kisdorf +http://lobid.org/organisations/DE-MUS-106123#! DE-MUS-106123 Georg-August-Universität Göttingen / Forstzoologie +http://lobid.org/organisations/DE-82-638#! DE-82-638 82/638 Kompetenzzentrum für Gebärdensprache und Gestik, Bibliothek +http://lobid.org/organisations/CH-000009-3#! CH-000009-3 Kantonsbibliothek Vadiana St.Gallen +http://lobid.org/organisations/DE-2465#! DE-2465 Stadtarchiv Korschenbroich +http://lobid.org/organisations/DE-2471#! DE-2471 2471 Bücherei Aichwald +http://lobid.org/organisations/DE-2476#! DE-2476 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen +http://lobid.org/organisations/DE-MUS-101524#! DE-MUS-101524 Museum Arzney-Küche +http://lobid.org/organisations/DE-2482#! DE-2482 2482 Stadtbücherei Dietfurt a.d. Altmühl +http://lobid.org/organisations/DE-2484#! DE-2484 2484 LVR-Amt für Denkmalpflege im Rheinland, Bibliothek +http://lobid.org/organisations/DE-2485#! DE-2485 2485 LVR-Archivberatungs- und Fortbildungszentrum, Bibliothek +http://lobid.org/organisations/DE-2498#! DE-2498 Deutsches Literaturarchiv Marbach, Archiv +http://lobid.org/organisations/DE-2502#! DE-2502 2502 IB-Hochschule Berlin, Bibliothek +http://lobid.org/organisations/DE-2503#! DE-2503 2503 Stadtarchiv Wedel +http://lobid.org/organisations/DE-34-11#! DE-34-11 34/11 Universitätsbibliothek Kassel, Elektronische Ressourcen, E-Pflicht - Virtueller Standort +http://lobid.org/organisations/DE-2511#! DE-2511 Numismatische Sammlung der Abteilung II des Instituts für Archäologische Wissenschaften, Goethe Universität, Frankfurt am Main +http://lobid.org/organisations/DE-2515#! DE-2515 Archiv des Geistlichen Stifts St. Bartholomäi Zerbst +http://lobid.org/organisations/DE-2520#! DE-2520 archINFORM +http://lobid.org/organisations/DE-2528#! DE-2528 2528 IB-Hochschule Berlin, Studienzentrum Hamburg, Bibliothek +http://lobid.org/organisations/DE-2532#! DE-2532 2532 Archiv der Evangelischen Landeskirche Anhalts +http://lobid.org/organisations/DE-2533#! DE-2533 2533 Naturkundemuseum Potsdam, Bibliothek +http://lobid.org/organisations/DE-2544#! DE-2544 Archiv der Arbeiterjugendbewegung +http://lobid.org/organisations/DE-2545#! DE-2545 Stadtarchiv Spremberg +http://lobid.org/organisations/DE-2563#! DE-2563 2563 Bergbau- und Industriemuseum Ostbayern, Bibliothek +http://lobid.org/organisations/DE-2566#! DE-2566 2566 Stadtbibliothek St. Georgen +http://lobid.org/organisations/DE-30-154#! DE-30-154 30/154 Universitätsbibliothek J. C. Senckenberg, Bibliothek des Instituts für Afrikanistik +http://lobid.org/organisations/DE-2569#! DE-2569 2569 Marktbücherei Berchtesgaden +http://lobid.org/organisations/DE-MUS-036326#! DE-MUS-036326 Friedrich-Schiller-Universität / Dia- und Fotothek des Instituts für Klassische Archäologie +http://lobid.org/organisations/DE-MUS-045825#! DE-MUS-045825 Friedrich-Schiller-Universität / Herbarium Haussknecht JE +http://lobid.org/organisations/DE-MUS-045523#! DE-MUS-045523 Friedrich-Schiller-Universität / Jena Microbial Resource Collection +http://lobid.org/organisations/DE-MUS-045429#! DE-MUS-045429 Friedrich-Schiller-Universität / Kunsthistorisches Seminar mit Kustodie +http://lobid.org/organisations/DE-MUS-047321#! DE-MUS-047321 Friedrich-Schiller-Universität / Medizinhistorische Sammlung +http://lobid.org/organisations/DE-MUS-047425#! DE-MUS-047425 Friedrich-Schiller-Universität / Sammlung Glas und anorganische Werkstoffe +http://lobid.org/organisations/DE-MUS-046422#! DE-MUS-046422 Friedrich-Schiller-Universität / Sieberg-Archiv +http://lobid.org/organisations/DE-2577#! DE-2577 Römisch-Germanische Kommission +http://lobid.org/organisations/DE-629#! DE-629 629 Handschriftenportal +http://lobid.org/organisations/DE-2586#! DE-2586 2586 Gemeindebücherei Erndtebrück +http://lobid.org/organisations/DE-2588#! DE-2588 2588 Bücherei Wackersdorf +http://lobid.org/organisations/DE-2592#! DE-2592 2592 Gemeindebücherei Vilsheim +http://lobid.org/organisations/DE-2597#! DE-2597 2597 Avacon Netz GmbH, Museum für Energiegeschichte(n), Bibliothek +http://lobid.org/organisations/DE-17-139#! DE-17-139 17/139 TU Darmstadt, Bibliothek des Universitätsarchivs +http://lobid.org/organisations/DE-2612#! DE-2612 Institut für Kunst- und Bildgeschichte / Mediathek +http://lobid.org/organisations/DE-2613#! DE-2613 Stadtarchiv Werther (Westf.) +http://lobid.org/organisations/DE-MUS-052724#! DE-MUS-052724 Akademische Kunstsammlung der Ernst-Moritz-Arndt Universität Greifswald +http://lobid.org/organisations/DE-2627#! DE-2627 2627 Maecenata Bibliothek +http://lobid.org/organisations/DE-2674#! DE-2674 2674 ESCP Business School Berlin, Bibliothek +http://lobid.org/organisations/DE-2677#! DE-2677 2677 Marktbibliothek Nittendorf +http://lobid.org/organisations/DE-2680#! DE-2680 filmwerte GmbH +http://lobid.org/organisations/DE-2685#! DE-2685 2685 Gemeindebücherei Aßling +http://lobid.org/organisations/DE-2686#! DE-2686 2686 Gemeindebücherei Aying +http://lobid.org/organisations/DE-2692#! DE-2692 2692 Gemeindebücherei Forstern +http://lobid.org/organisations/DE-2694#! DE-2694 2694 Gemeindebücherei Kalchreuth +http://lobid.org/organisations/DE-2696#! DE-2696 2696 Gemeindebücherei Langweid a. Lech +http://lobid.org/organisations/DE-2711#! DE-2711 2711 Gemeindebücherei Tapfheim +http://lobid.org/organisations/DE-B183#! DE-B183 B 183 Herold, Verein für Heraldik, Genealogie und verwandte Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-2719#! DE-2719 2719 Deutsches Zentrum für Neurodegenerative Erkrankungen e.V. (DZNE), Digitale Bibliothek +http://lobid.org/organisations/DE-2721#! DE-2721 2721 Stadtverwaltung Gera, Verwaltungsbibliothek +http://lobid.org/organisations/DE-636#! DE-636 636 Speicherverbund Nord +http://lobid.org/organisations/DE-2723#! DE-2723 2723 Stadtbücherei Bamberg +http://lobid.org/organisations/DE-2725#! DE-2725 2725 Landkreis Oder-Spree, Archiv, Lese- und Medienzentrum +http://lobid.org/organisations/DE-2732#! DE-2732 Stadtarchiv Lörrach +http://lobid.org/organisations/DE-26-376#! DE-26-376 26/376 Universität Gießen, Didaktische Werkstatt Sprachen +http://lobid.org/organisations/DE-2734#! DE-2734 Heimatverein Willershausen e.V. +http://lobid.org/organisations/DE-2735#! DE-2735 2735 Stadtbücherei Ramstein-Miesenbach +http://lobid.org/organisations/DE-2736#! DE-2736 Archiv der Deutschen Akademie der Naturforscher - Nationale Akademie der Wissenschaften Leopoldina +http://lobid.org/organisations/DE-2737#! DE-2737 Thüringisches Landesamt für Denkmalpflege und Archäologie, Fachbereich Bau- und Kunstdenkmalpflege +http://lobid.org/organisations/DE-2738#! DE-2738 World University Service, Deutsches Komitee e.V. +http://lobid.org/organisations/DE-2743#! DE-2743 2743 Stiftung Europa-Universität Viadrina, Zentrum für Interdisziplinäre Polenstudien +http://lobid.org/organisations/DE-2749#! DE-2749 2749 Medienzentrale des Erzbistums Köln +http://lobid.org/organisations/DE-2776#! DE-2776 2776 Bibliothek Markt Stockstadt +http://lobid.org/organisations/DE-2778#! DE-2778 2778 Stadtbibliothek Schopfheim +http://lobid.org/organisations/DE-MUS-135824#! DE-MUS-135824 Heimatmuseum Nikolausberg +http://lobid.org/organisations/DE-MUS-135428#! DE-MUS-135428 Heimatstube ""Alte Schule"" +http://lobid.org/organisations/DE-637#! DE-637 637 Bibliotheksverbund der Landesbehörden NRW +http://lobid.org/organisations/DE-2783#! DE-2783 2783 Diözesanbibliothek Osnabrück +http://lobid.org/organisations/DE-2784#! DE-2784 Archiv Günther Enderlein +http://lobid.org/organisations/DE-MUS-135928#! DE-MUS-135928 MSV Museum +http://lobid.org/organisations/DE-2789#! DE-2789 2789 Hölty Schulbibliothek +http://lobid.org/organisations/DE-2794#! DE-2794 Archiv des Landeswohlfahrtsverbandes +http://lobid.org/organisations/DE-2796#! DE-2796 2796 Landesdirektion Sachsen, Behördenbibliothek +http://lobid.org/organisations/DE-2811#! DE-2811 Stadtarchiv Gummersbach +http://lobid.org/organisations/DE-2818#! DE-2818 2818 Stadtbücherei Heusenstamm +http://lobid.org/organisations/DE-2821#! DE-2821 2821 Marktbücherei Bruck i. d. Opf. +http://lobid.org/organisations/DE-2823#! DE-2823 Stadtarchiv Münster +http://lobid.org/organisations/DE-Mb106#! DE-Mb106 Mb 106 Archivschule Marburg, Bibliothek +http://lobid.org/organisations/DE-Mit1#! DE-Mit1 Mit 1 Hochschule Mittweida (FH), Hochschulbibliothek +http://lobid.org/organisations/DE-2830#! DE-2830 2830 Arnold und Friederike Isenberg Bibliothek +http://lobid.org/organisations/DE-2842#! DE-2842 Foto-Nachlass Bleicke Bleicken +http://lobid.org/organisations/DE-2843#! DE-2843 2843 Gemeindebücherei Kronshagen +http://lobid.org/organisations/DE-2852#! DE-2852 2852 Wieland-Forschungszentrum, Bibliothek +http://lobid.org/organisations/DE-2855#! DE-2855 Deutsches Archäologisches Institut, Abteilung Athen, Archiv +http://lobid.org/organisations/DE-2866#! DE-2866 2866 Leibniz-Zentrum Allgemeine Sprachwissenschaft, Bibliothek +http://lobid.org/organisations/DE-M36d#! DE-M36d M 36d Münchner Stadtbibliothek, Philatelistische Bibliothek +http://lobid.org/organisations/DE-2874#! DE-2874 2874 Stadtbibliothek ""Hans Clauert"" Trebbin +http://lobid.org/organisations/DE-2877#! DE-2877 Universität Paderborn, Musikwissenschaftliches Seminar Detmold/Paderborn +http://lobid.org/organisations/DE-2882#! DE-2882 2882 Landeszentrale für politische Bildung RLP, Bibliothek +http://lobid.org/organisations/DE-Neud3#! DE-Neud3 Neud 3 Mission EineWelt, Pazifik-Informationsstelle, Bibliothek +http://lobid.org/organisations/DE-2883#! DE-2883 2883 Ortsbücherei Weissach im Tal +http://lobid.org/organisations/DE-2884#! DE-2884 Geheimes Staatsarchiv Preußischer Kulturbesitz +http://lobid.org/organisations/DE-2886#! DE-2886 2886 Deutsche Akademie für Kinder- und Jugendliteratur e. V. +http://lobid.org/organisations/DE-840-3#! DE-840-3 840/3 Bibliothek LIV HN Bildungscampus +http://lobid.org/organisations/DE-Rav4a#! DE-Rav4a Rav 4a Stadtarchiv Ravensburg, Bibliothek +http://lobid.org/organisations/DE-Po87#! DE-Po87 Po 87 HMU - Health and Medical University Potsdam, Bibliothek Campus Potsdam +http://lobid.org/organisations/DE-Dm23#! DE-Dm23 Dm 23 Bibliothek des Evangelischen Kirchenkreises Dortmund +http://lobid.org/organisations/DE-2911#! DE-2911 2911 Forschungsbibliothek Mittelrhein +http://lobid.org/organisations/DE-Una2#! DE-Una2 Una 2 Internationale Komponistinnen-Bibliothek Unna +http://lobid.org/organisations/DE-Det4#! DE-Det4 Stadtarchiv Detmold +http://lobid.org/organisations/DE-2912#! DE-2912 Georg Thieme Verlag KG +http://lobid.org/organisations/DE-642#! DE-642 642 Campusbibliothek für Informatik und Mathematik +http://lobid.org/organisations/DE-2918#! DE-2918 2918 Instituto Cervantes Berlin - Bibliothek Mario Margas Llosa +http://lobid.org/organisations/DE-2923#! DE-2923 Geschwister-Scholl-Schule Tübingen +http://lobid.org/organisations/DE-2927#! DE-2927 Kreisarchiv Märkisch-Oderland +http://lobid.org/organisations/DE-WWW7#! DE-WWW7 WWW 7 Archive der Universität Konstanz +http://lobid.org/organisations/DE-Hef5#! DE-Hef5 Kreisarchiv Herford +http://lobid.org/organisations/DE-2932#! DE-2932 2932 Gemeindebibliothek Malterdingen +http://lobid.org/organisations/DE-2933#! DE-2933 2933 Stadtbibliothek Sandersdorf-Brehna +http://lobid.org/organisations/DE-100-309#! DE-100-309 100/309 Universität Hohenheim, Zentrum Ökologischer Landbau, Bibliothek +http://lobid.org/organisations/DE-2944#! DE-2944 Stadtarchiv Oberndorf am Neckar +http://lobid.org/organisations/DE-2945#! DE-2945 Forschungsstelle für fränkische Volksmusik +http://lobid.org/organisations/DE-2947#! DE-2947 Humboldt-Gymnasium Karlsruhe +http://lobid.org/organisations/DE-2948#! DE-2948 2948 Staatliche Graphische Sammlung München, Bibliothek +http://lobid.org/organisations/DE-2949#! DE-2949 2949 Stadtarchiv Stockach +http://lobid.org/organisations/DE-2956#! DE-2956 Geschichtswerkstatt Eppendorf +http://lobid.org/organisations/DE-2957#! DE-2957 2957 Institut für niederdeutsche Sprache e. V. +http://lobid.org/organisations/DE-2959#! DE-2959 2959 Westfälische Bibliothek der Landwirtschaft der Stiftung LV Münster +http://lobid.org/organisations/DE-2961#! DE-2961 2961 Landesdirektion Sachsen, Dienststelle Chemnitz, Behördenbibliothek +http://lobid.org/organisations/ZDB-ZA-100#! ZDB-ZA-100 Africa Open Institute for Music, Research and Innovation +http://lobid.org/organisations/DE-2963#! DE-2963 Historische Kommission bei der Bayerischen Akademie der Wissenschaften +http://lobid.org/organisations/DE-2965#! DE-2965 2965 Gemeindebücherei Büsum +http://lobid.org/organisations/DE-2971#! DE-2971 Universitätsarchiv Universität Duisburg-Essen +http://lobid.org/organisations/DE-2972#! DE-2972 2972 Fahrbücherei 2 im Kreis Rendsburg-Eckernförde +http://lobid.org/organisations/DE-2976#! DE-2976 2976 Fahrbücherei 6 im Kreis Kreis Schleswig-Flensburg +http://lobid.org/organisations/DE-2979#! DE-2979 2979 Fahrbücherei 9 im Kreis Plön +http://lobid.org/organisations/DE-2980#! DE-2980 2980 Fahrbücherei 10 im Kreis Plön +http://lobid.org/organisations/DE-2984#! DE-2984 2984 Fahrbücherei 14 Kreis Ostholstein +http://lobid.org/organisations/DE-2990#! DE-2990 Morgenland e.V. Geschichtswerkstatt Eimsbüttel +http://lobid.org/organisations/DE-2991#! DE-2991 2991 Praxisbibliothek Asmus-Timm +http://lobid.org/organisations/DE-2997#! DE-2997 Forum Kollau Verein für die Geschichte von Lokstedt, Niendorf und Schnelsen e.V. +http://lobid.org/organisations/DE-MUS-149422#! DE-MUS-149422 BASA-Museum +http://lobid.org/organisations/DE-2999#! DE-2999 Universitätsarchiv Würzburg +http://lobid.org/organisations/DE-3000#! DE-3000 3000 Gemeindebücherei Speichersdorf +http://lobid.org/organisations/DE-3001#! DE-3001 Museum am Rothenbaum - Kulturen und Künste der Welt, Archiv +http://lobid.org/organisations/DE-3008#! DE-3008 3008 Bad Schandauer Kur- und Tourismus GmbH, Bibliothek +http://lobid.org/organisations/DE-3020#! DE-3020 3020 Gemeindebibliothek Kreischa +http://lobid.org/organisations/DE-3023#! DE-3023 3023 Bibliothek im Zejler-Smoler-Haus +http://lobid.org/organisations/DE-3026#! DE-3026 3026 Stadtbibliothek Nossen +http://lobid.org/organisations/DE-3030#! DE-3030 3030 Stadtbibliothek Radeburg +http://lobid.org/organisations/DE-3032#! DE-3032 3032 Stadtbibliothek Schkeuditz +http://lobid.org/organisations/DE-3035#! DE-3035 3035 Stadtbibliothek Strehla +http://lobid.org/organisations/DE-3044#! DE-3044 3044 Stadtbibliothek Pulsnitz +http://lobid.org/organisations/DE-3052#! DE-3052 3052 Stadtbücherei Enger +http://lobid.org/organisations/DE-3058#! DE-3058 3058 Stadtbücherei Meldorf +http://lobid.org/organisations/DE-3062#! DE-3062 3062 Schulbibliothek im Beruflichen Schulzentrum +http://lobid.org/organisations/DE-3064#! DE-3064 3064 Stadtbücherei Tornesch +http://lobid.org/organisations/DE-3081#! DE-3081 Archiv des Katholischen Militärbischofs +http://lobid.org/organisations/DE-3088#! DE-3088 3088 MSH Medical School Hamburg, Campus Schwerin, Bibliothek +http://lobid.org/organisations/DE-3092#! DE-3092 Kultur- & Geschichtskontor +http://lobid.org/organisations/DE-3093#! DE-3093 Nordwestdeutsche Forstliche Versuchsanstalt +http://lobid.org/organisations/DE-4000#! DE-4000 Merian-Gemeinschaftsschule +http://lobid.org/organisations/DE-4001#! DE-4001 ABLI +http://lobid.org/organisations/DE-4003#! DE-4003 Tagebuch- und Erinnerungsarchiv (TEA) Berlin e.V. +http://lobid.org/organisations/DE-4005#! DE-4005 Erich Ohser - e.o.plauen Stiftung +http://lobid.org/organisations/DE-4009#! DE-4009 4009 Stadtbibliothek Brandis +http://lobid.org/organisations/DE-4023#! DE-4023 CineGraph - Hamburgisches Centrum für Filmforschung e.V. +http://lobid.org/organisations/DE-4024#! DE-4024 Stiftung Marpinger Kulturbesitz +http://lobid.org/organisations/DE-4031#! DE-4031 Franz Steiner Verlag GmbH +http://lobid.org/organisations/DE-4034#! DE-4034 Kreisarchiv Tübingen +http://lobid.org/organisations/DE-4040#! DE-4040 4040 Stadtbibliothek Giengen +http://lobid.org/organisations/DE-4044#! DE-4044 4044 Kreisarchiv Landkreis Diepholz +http://lobid.org/organisations/DE-4045#! DE-4045 Stadtarchiv Elsdorf +http://lobid.org/organisations/DE-4046#! DE-4046 Stadtarchiv Aalen +http://lobid.org/organisations/DE-4048#! DE-4048 4048 Gemeindebibliothek Machern +http://lobid.org/organisations/DE-4051#! DE-4051 DEFA-Stiftung +http://lobid.org/organisations/DE-7-416#! DE-7-416 7/416 Johann-Friedrich-Blumenbach-Institut für Zoologie und Anthropologie, Abteilung Soziobiologie / Anthropologie, Bibliothek +http://lobid.org/organisations/DE-4058#! DE-4058 Stiftung Bauhaus Dessau, Historische Sammlungen +http://lobid.org/organisations/DE-4059#! DE-4059 4059 Stiftung Bauhaus Dessau, Stiftungsarchiv +http://lobid.org/organisations/DE-4061#! DE-4061 4061 Bücherei im Münzhof +http://lobid.org/organisations/DE-4062#! DE-4062 Interkommunales Kreisarchiv Nordhessen +http://lobid.org/organisations/DE-7-748#! DE-7-748 7-748 Zentrale Einrichtungen der Krankenversorgung, Physiotherapie, Bibliothek +http://lobid.org/organisations/DE-4066#! DE-4066 4066 Institut für Vogelforschung ""Vogelwarte Helgoland"", Bibliothek +http://lobid.org/organisations/DE-4070#! DE-4070 Friedrich-Wilhelm-Murnau-Stiftung +http://lobid.org/organisations/DE-4072#! DE-4072 4072 Bibliothek Deutsche Homöopathie-Union (DHU) +http://lobid.org/organisations/AT-VLB-FMFA#! AT-VLB-FMFA Franz Michael Felder-Archiv +http://lobid.org/organisations/DE-4076#! DE-4076 4046 Markgrafen-Gymnasium +http://lobid.org/organisations/DE-4078#! DE-4078 4078 Thüringer Staatskanzlei, Bibliothek +http://lobid.org/organisations/DE-4083#! DE-4083 Volksbund Deutsche Kriegsgräberfürsorge e.V., VolksbundArchiv +http://lobid.org/organisations/DE-4089#! DE-4089 Archiv Demokratischer Sozialismus +http://lobid.org/organisations/DE-4095#! DE-4095 4095 Gemeindebücherei Walheim +http://lobid.org/organisations/DE-4103#! DE-4103 Israelitische Gemeindearchive in Bayern +http://lobid.org/organisations/DE-MUS-150927#! DE-MUS-150927 depot 5 I Nahverkehrsmuseum +http://lobid.org/organisations/DE-77-003#! DE-77-003 77/003 Universität Mainz, Zentralbibliothek, RVK-Aufstellung +http://lobid.org/organisations/DE-4109#! DE-4109 Gemeindearchiv Windeck +http://lobid.org/organisations/DE-4111#! DE-4111 Stadtarchiv Sondershausen +http://lobid.org/organisations/DE-4124#! DE-4124 Mottek Archiv +http://lobid.org/organisations/DE-4127#! DE-4127 4127 Gemeindebibliothek Bennewitz +http://lobid.org/organisations/DE-4129#! DE-4129 Kreisarchiv Hochsauerlandkreis +http://lobid.org/organisations/DE-MUS-160221#! DE-MUS-160221 Retro Station Recklinghausen +http://lobid.org/organisations/DE-MUS-476813#! DE-MUS-476813 Heimat-Haus Herbern +http://lobid.org/organisations/DE-MUS-477514#! DE-MUS-477514 Mühlenmuseum Hiesfeld +http://lobid.org/organisations/DE-MUS-478017#! DE-MUS-478017 Heimatmuseum Alte Bergschule Hünxe +http://lobid.org/organisations/DE-MUS-480817#! DE-MUS-480817 HeimatMuseum Kostheim +http://lobid.org/organisations/DE-MUS-483212#! DE-MUS-483212 Mühle ""ANNA"" Nübbel +http://lobid.org/organisations/DE-MUS-484215#! DE-MUS-484215 Grenzlandmuseum Eichsfeld e.V. +http://lobid.org/organisations/DE-MUS-484517#! DE-MUS-484517 Gedenkstätte Köpenicker Blutwoche im Juni 1933 +http://lobid.org/organisations/DE-MUS-484715#! DE-MUS-484715 Berta-Hummel-Museum im Hummelhaus +http://lobid.org/organisations/DE-MUS-485718#! DE-MUS-485718 Handwerks- und Industriemuseum Fellenbergmühle +http://lobid.org/organisations/DE-MUS-486013#! DE-MUS-486013 Besucherbergwerk Rischbachstollen e.V. +http://lobid.org/organisations/DE-MUS-486211#! DE-MUS-486211 Dorfmuseum, Museum für die Geschichte unseres Dorfes +http://lobid.org/organisations/DE-MUS-486419#! DE-MUS-486419 Sonderausstellungshalle Tiergarten SMB +http://lobid.org/organisations/DE-MUS-486513#! DE-MUS-486513 Historisches Zentrum Remscheid, Abt. 'Haus Cleff' +http://lobid.org/organisations/DE-MUS-487516#! DE-MUS-487516 Museum der Stadt Naumburg / Nietzsche-Haus und Nietzsche-Dokumentationszentrum +http://lobid.org/organisations/DE-MUS-487714#! DE-MUS-487714 Gedenkstätte Deutsche Teilung Marienborn +http://lobid.org/organisations/DE-MUS-489012#! DE-MUS-489012 Heimatmuseum Letzlingen +http://lobid.org/organisations/DE-MUS-489710#! DE-MUS-489710 Heimatstube 'Strengbachaue' e.V. +http://lobid.org/organisations/DE-MUS-490111#! DE-MUS-490111 Museumshof 'Ernst Koch' Silstedt +http://lobid.org/organisations/DE-MUS-490819#! DE-MUS-490819 Religiöse Kunst in der Bruderkirche +http://lobid.org/organisations/DE-MUS-491614#! DE-MUS-491614 Ölmühle Jäger +http://lobid.org/organisations/DE-MUS-492013#! DE-MUS-492013 Afrika-Haus Freiberg +http://lobid.org/organisations/DE-MUS-492617#! DE-MUS-492617 Museum Johannes Reuchlin MJR +http://lobid.org/organisations/DE-MUS-492815#! DE-MUS-492815 Schreiner- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-493412#! DE-MUS-493412 Heimatmuseum Mannheim Sandhofen +http://lobid.org/organisations/DE-MUS-494915#! DE-MUS-494915 Industriemuseum Brandenburg a.d. Havel +http://lobid.org/organisations/DE-MUS-495814#! DE-MUS-495814 Kehdinger Küstenschiffahrts-Museum +http://lobid.org/organisations/DE-MUS-497414#! DE-MUS-497414 Heimatstube Volmerdingsen +http://lobid.org/organisations/DE-MUS-497914#! DE-MUS-497914 Motorrad- und Traktorenmuseum +http://lobid.org/organisations/DE-MUS-499316#! DE-MUS-499316 Museum Kloster Bentlage +http://lobid.org/organisations/DE-MUS-602017#! DE-MUS-602017 Städtisches Museum, Zweigmuseum Altstadtrathaus +http://lobid.org/organisations/DE-MUS-663210#! DE-MUS-663210 Kinder-Akademie Fulda (KAF) +http://lobid.org/organisations/DE-MUS-703219#! DE-MUS-703219 H2 - Zentrum für Gegenwartskunst im Glaspalast +http://lobid.org/organisations/DE-MUS-704514#! DE-MUS-704514 Bier- und Oktoberfestmuseum +http://lobid.org/organisations/DE-MUS-704910#! DE-MUS-704910 Pumuckl-Museum +http://lobid.org/organisations/DE-MUS-705413#! DE-MUS-705413 Pfaffenroter Dorfmuseum ""Kantebuahaus"" +http://lobid.org/organisations/DE-MUS-706114#! DE-MUS-706114 Ramones Museum +http://lobid.org/organisations/DE-MUS-707315#! DE-MUS-707315 Waldensermuseum Oberweser-Gottstreu +http://lobid.org/organisations/DE-MUS-708016#! DE-MUS-708016 Natureum am Schloss Ludwigslust +http://lobid.org/organisations/DE-MUS-708110#! DE-MUS-708110 Museum in der Remise +http://lobid.org/organisations/DE-MUS-708214#! DE-MUS-708214 Camera Obscura mit dem Museum zur Vorgeschichte des Films +http://lobid.org/organisations/DE-MUS-708516#! DE-MUS-708516 Maschinenhalle Zweckel +http://lobid.org/organisations/DE-MUS-708818#! DE-MUS-708818 Gedenkstätte und Museum Trutzhain +http://lobid.org/organisations/DE-MUS-709811#! DE-MUS-709811 DB Museum Koblenz +http://lobid.org/organisations/DE-MUS-709915#! DE-MUS-709915 Herbert-Gerisch-Stiftung +http://lobid.org/organisations/DE-MUS-710212#! DE-MUS-710212 Burg Scharfenstein - Burgmuseum +http://lobid.org/organisations/DE-MUS-711715#! DE-MUS-711715 Schoolkat Langwedel +http://lobid.org/organisations/DE-MUS-712614#! DE-MUS-712614 Multimar Wattforum Tönning +http://lobid.org/organisations/DE-MUS-713211#! DE-MUS-713211 Kaiserburg Nürnberg / Tiefer Brunnen, Sinwellturm +http://lobid.org/organisations/DE-MUS-713315#! DE-MUS-713315 NAUTINEUM, Kleiner Dänholm +http://lobid.org/organisations/DE-MUS-713919#! DE-MUS-713919 Granitabbaumuseum Königshainer Berge +http://lobid.org/organisations/DE-MUS-714110#! DE-MUS-714110 Bunkermuseum Hamburg +http://lobid.org/organisations/DE-MUS-714516#! DE-MUS-714516 St. Pauli Museum e.V. +http://lobid.org/organisations/DE-MUS-714818#! DE-MUS-714818 Brandenburg-Preußen-Museum +http://lobid.org/organisations/DE-MUS-716314#! DE-MUS-716314 Museum 'Nostalgie der 50er Jahre' +http://lobid.org/organisations/DE-MUS-716512#! DE-MUS-716512 Grenzmuseum Philippsthal +http://lobid.org/organisations/DE-MUS-716918#! DE-MUS-716918 Museum Gesellschaft Schloss Colditz, Fluchtmuseum +http://lobid.org/organisations/DE-MUS-717015#! DE-MUS-717015 Deutsches Weihnachtsmuseum GmbH +http://lobid.org/organisations/DE-MUS-717213#! DE-MUS-717213 Klassik Stiftung Weimar / HAAB - Rokokosaal +http://lobid.org/organisations/DE-MUS-718018#! DE-MUS-718018 Archäologischer Park Ostkastell +http://lobid.org/organisations/DE-MUS-718112#! DE-MUS-718112 Höchster Porzellan-Museum im Kronberger Haus +http://lobid.org/organisations/DE-MUS-719615#! DE-MUS-719615 Museum für dörfliche Alltagskultur Rietenau +http://lobid.org/organisations/DE-MUS-721019#! DE-MUS-721019 Heimatstube Kappel +http://lobid.org/organisations/DE-MUS-721311#! DE-MUS-721311 Heimatmuseum Ofterdingen +http://lobid.org/organisations/DE-MUS-721915#! DE-MUS-721915 Besucherbergwerk ""Silbergründle"" +http://lobid.org/organisations/DE-MUS-723817#! DE-MUS-723817 Schiffahrts-Museum Nordhorn gGmbH +http://lobid.org/organisations/DE-MUS-724310#! DE-MUS-724310 Erinnerungsstätte an die Zwangsarbeit auf dem Gelände des VW-Werks +http://lobid.org/organisations/DE-MUS-725011#! DE-MUS-725011 Heidekrautbahn-Museum Basdorf +http://lobid.org/organisations/DE-MUS-725615#! DE-MUS-725615 Museumsbahn Buckower Kleinbahn +http://lobid.org/organisations/DE-MUS-726118#! DE-MUS-726118 Brandenburgisches Eisenbahnmuseum Falkenberg +http://lobid.org/organisations/DE-MUS-726514#! DE-MUS-726514 Verein Salvey Mühle e.V. +http://lobid.org/organisations/DE-MUS-726712#! DE-MUS-726712 Filmmuseum 'Kinder von Golzow' +http://lobid.org/organisations/DE-MUS-726816#! DE-MUS-726816 Heimatstube Groß Breese +http://lobid.org/organisations/DE-MUS-727215#! DE-MUS-727215 Stadt- und Industriemuseum Guben +http://lobid.org/organisations/DE-MUS-728312#! DE-MUS-728312 SPSG / Schloß Königs Wusterhausen +http://lobid.org/organisations/DE-MUS-729919#! DE-MUS-729919 Historisches Kutschenmuseum +http://lobid.org/organisations/DE-MUS-730414#! DE-MUS-730414 SPSG / Schloß Paretz +http://lobid.org/organisations/DE-MUS-731417#! DE-MUS-731417 Fontanehaus und Heimatstuben Schiffmühle +http://lobid.org/organisations/DE-MUS-731615#! DE-MUS-731615 Geschichtsausstellung der Stadt Schwarzheide +http://lobid.org/organisations/DE-MUS-732212#! DE-MUS-732212 Heimatstube Vierraden +http://lobid.org/organisations/DE-MUS-733017#! DE-MUS-733017 Heimatstube Woltersdorf +http://lobid.org/organisations/DE-MUS-733319#! DE-MUS-733319 Blaues Haus Museum Clenze +http://lobid.org/organisations/DE-MUS-733413#! DE-MUS-733413 Haus der Brandenburgisch-Preußischen Geschichte +http://lobid.org/organisations/DE-MUS-734614#! DE-MUS-734614 Geowissenschaftliche Sammlungen - Humboldt-Bau +http://lobid.org/organisations/DE-MUS-735617#! DE-MUS-735617 Hexenturm +http://lobid.org/organisations/DE-MUS-735815#! DE-MUS-735815 Schulmuseum mit Gedenkstätte Alexander von Homeyer +http://lobid.org/organisations/DE-MUS-735919#! DE-MUS-735919 Kartoffelmuseum +http://lobid.org/organisations/DE-MUS-736516#! DE-MUS-736516 Museum Blindenwerkstatt Otto Weidt +http://lobid.org/organisations/DE-MUS-736610#! DE-MUS-736610 Sammlung Hoffmann +http://lobid.org/organisations/DE-MUS-737217#! DE-MUS-737217 The Story of Berlin - Die Erlebnisausstellung der Hauptstadt +http://lobid.org/organisations/DE-MUS-737717#! DE-MUS-737717 Schloß Reckahn+Rochow-Museum mit Schulmuseum +http://lobid.org/organisations/DE-MUS-737811#! DE-MUS-737811 Mathematikum +http://lobid.org/organisations/DE-MUS-739619#! DE-MUS-739619 FLOHBURG / Das Nordhausen Museum +http://lobid.org/organisations/DE-MUS-740114#! DE-MUS-740114 Brühler KeramikMuseum +http://lobid.org/organisations/DE-MUS-742016#! DE-MUS-742016 Alamannenmuseum Ellwangen +http://lobid.org/organisations/DE-MUS-742818#! DE-MUS-742818 Museumswerft Flensburg gGmbH +http://lobid.org/organisations/DE-MUS-743019#! DE-MUS-743019 Hohner Dorfmuseum +http://lobid.org/organisations/DE-MUS-743519#! DE-MUS-743519 Feuerwehrmuseum Nübel +http://lobid.org/organisations/DE-MUS-744512#! DE-MUS-744512 Haus der Seidenkultur +http://lobid.org/organisations/DE-MUS-744814#! DE-MUS-744814 Seligenstädter Fastnachtsmuseum +http://lobid.org/organisations/DE-MUS-745213#! DE-MUS-745213 Johann-Heinrich-Voß-Museum+Literaturmuseum der Stadt Otterndorf +http://lobid.org/organisations/DE-MUS-745619#! DE-MUS-745619 Besucherbergwerk ""Markus Semmler"" +http://lobid.org/organisations/DE-MUS-745911#! DE-MUS-745911 Hist. Schauwerkstatt mit Buchdruck-, Buchbinderei-, Stempelmacher-Museum und Münzwerkstatt +http://lobid.org/organisations/DE-MUS-746216#! DE-MUS-746216 Eisenbahnmuseum Schwarzenberg +http://lobid.org/organisations/DE-MUS-747417#! DE-MUS-747417 Anneliese Deschauer Galerie mit Stadtmuseum Geisa +http://lobid.org/organisations/DE-MUS-747511#! DE-MUS-747511 Aktivmuseum Breitungen - Ländliches Brauchtum +http://lobid.org/organisations/DE-MUS-748316#! DE-MUS-748316 Kunstverein Kiss-Kunst im Schloss Untergröningen e.V. +http://lobid.org/organisations/DE-MUS-749319#! DE-MUS-749319 Stadtmuseum im Schlössle +http://lobid.org/organisations/DE-MUS-750710#! DE-MUS-750710 Museum Schloß Wolzogen +http://lobid.org/organisations/DE-MUS-750814#! DE-MUS-750814 Pinakothek der Moderne +http://lobid.org/organisations/DE-MUS-751317#! DE-MUS-751317 Museum im Gsotthaber Hof +http://lobid.org/organisations/DE-MUS-751619#! DE-MUS-751619 Museum Segeum Segnitz +http://lobid.org/organisations/DE-MUS-753115#! DE-MUS-753115 Upländer Milchmuhseum +http://lobid.org/organisations/DE-MUS-754118#! DE-MUS-754118 Dorfmarketing Laer e.V. +http://lobid.org/organisations/DE-MUS-754212#! DE-MUS-754212 Kunstmuseum Celle mit Sammlung Robert Simon +http://lobid.org/organisations/DE-MUS-754316#! DE-MUS-754316 Nationalpark-Haus 'Alte Schule Dangast' +http://lobid.org/organisations/DE-MUS-755017#! DE-MUS-755017 Daetz-Centrum Lichtenstein +http://lobid.org/organisations/DE-MUS-755413#! DE-MUS-755413 Museum für Gegenwartskunst Siegen +http://lobid.org/organisations/DE-MUS-755913#! DE-MUS-755913 Textilschauwerkstatt Greiz +http://lobid.org/organisations/DE-MUS-757711#! DE-MUS-757711 Averbecks Hof +http://lobid.org/organisations/DE-MUS-758714#! DE-MUS-758714 Wilhelm-Busch-Stätte Hattorf +http://lobid.org/organisations/DE-MUS-759915#! DE-MUS-759915 Slawenburg Raddusch +http://lobid.org/organisations/DE-MUS-760212#! DE-MUS-760212 Museum Stägehaus +http://lobid.org/organisations/DE-MUS-760316#! DE-MUS-760316 Fintelmannhaus +http://lobid.org/organisations/DE-MUS-760514#! DE-MUS-760514 Gut Zernikow +http://lobid.org/organisations/DE-MUS-761111#! DE-MUS-761111 Brauereimuseum Altomünster +http://lobid.org/organisations/DE-MUS-762718#! DE-MUS-762718 Johann Baptist Graser-Schulmuseum +http://lobid.org/organisations/DE-MUS-762812#! DE-MUS-762812 Museum 'wiegen & messen'+Sammlung Joh. Schlender +http://lobid.org/organisations/DE-MUS-763117#! DE-MUS-763117 Heimatmuseum Blindheim +http://lobid.org/organisations/DE-MUS-763919#! DE-MUS-763919 Tropfsteinhöhle Schulerloch +http://lobid.org/organisations/DE-MUS-764016#! DE-MUS-764016 Eisenbahnmuseum +http://lobid.org/organisations/DE-MUS-765113#! DE-MUS-765113 Museum Grundremmingen +http://lobid.org/organisations/DE-MUS-765519#! DE-MUS-765519 Spielzeugmuseum Hemau +http://lobid.org/organisations/DE-MUS-766116#! DE-MUS-766116 Museum im Blaahaus +http://lobid.org/organisations/DE-MUS-766710#! DE-MUS-766710 Historisches Schuhmuseum +http://lobid.org/organisations/DE-MUS-767515#! DE-MUS-767515 Weltkunstmuseum Schloß Altrandsberg +http://lobid.org/organisations/DE-MUS-768112#! DE-MUS-768112 Sammlung Goetz +http://lobid.org/organisations/DE-MUS-768914#! DE-MUS-768914 Heimatmuseum Oberpfälzer Wald Seebarn +http://lobid.org/organisations/DE-MUS-769115#! DE-MUS-769115 Museum der Stadt Neutraubling +http://lobid.org/organisations/DE-MUS-769417#! DE-MUS-769417 Erzgebirgischer Spielzeugwinkel +http://lobid.org/organisations/DE-MUS-769917#! DE-MUS-769917 Steinhauermuseum Randersacker +http://lobid.org/organisations/DE-MUS-770110#! DE-MUS-770110 Urweltmuseum +http://lobid.org/organisations/DE-MUS-771019#! DE-MUS-771019 Römervilla Schwangau +http://lobid.org/organisations/DE-MUS-772210#! DE-MUS-772210 Museum Kartause Astheim +http://lobid.org/organisations/DE-MUS-772710#! DE-MUS-772710 Domschatz +http://lobid.org/organisations/DE-MUS-774310#! DE-MUS-774310 Stadtmuseum Meißen / Franziskanerklosterkirche +http://lobid.org/organisations/DE-MUS-774518#! DE-MUS-774518 Korkenzieher Museum Kaiserstuhl +http://lobid.org/organisations/DE-MUS-774810#! DE-MUS-774810 Heimatmuseum Bad Überkingen +http://lobid.org/organisations/DE-MUS-774914#! DE-MUS-774914 Fotomuseum Hirsmüller +http://lobid.org/organisations/DE-MUS-775313#! DE-MUS-775313 Energie-Museum Berlin +http://lobid.org/organisations/DE-MUS-775417#! DE-MUS-775417 Oldtimer- und Technikmuseum Perleberg +http://lobid.org/organisations/DE-MUS-777819#! DE-MUS-777819 1. Deutsches Polizeioldtimer-Museum +http://lobid.org/organisations/DE-MUS-778614#! DE-MUS-778614 Steinzeitdorf Kussow e.V. +http://lobid.org/organisations/DE-MUS-780018#! DE-MUS-780018 Literaturzentrum Vorpommern Wolfgang-Koeppen-Haus (Greifswald) +http://lobid.org/organisations/DE-MUS-780112#! DE-MUS-780112 Brigitte Reimann Literaturhaus +http://lobid.org/organisations/DE-MUS-780716#! DE-MUS-780716 Heimatstube Lieper Winkel +http://lobid.org/organisations/DE-MUS-781011#! DE-MUS-781011 Erdölmuseum Reinkenhagen +http://lobid.org/organisations/DE-MUS-781115#! DE-MUS-781115 Heimatstube Sanitz +http://lobid.org/organisations/DE-MUS-781813#! DE-MUS-781813 Heimatstube Dabel +http://lobid.org/organisations/DE-MUS-782618#! DE-MUS-782618 Camera Obscura Hainichen +http://lobid.org/organisations/DE-MUS-783017#! DE-MUS-783017 Museum im Hinterschloss +http://lobid.org/organisations/DE-MUS-783215#! DE-MUS-783215 Museum im Pumpenhaus +http://lobid.org/organisations/DE-MUS-785117#! DE-MUS-785117 Museum im Gerberhaus +http://lobid.org/organisations/DE-MUS-787717#! DE-MUS-787717 Besucherbergwerk F60 gGmbH +http://lobid.org/organisations/DE-MUS-787915#! DE-MUS-787915 Museum Neukloster +http://lobid.org/organisations/DE-MUS-789317#! DE-MUS-789317 Museum in der Schlosskirche des Saarlandmuseums +http://lobid.org/organisations/DE-MUS-789911#! DE-MUS-789911 Frisörmuseum Eckernförde +http://lobid.org/organisations/DE-MUS-790218#! DE-MUS-790218 Schloss Hartenfels+Lapidarium +http://lobid.org/organisations/DE-MUS-790312#! DE-MUS-790312 DIZ Torgau/Stiftung Sächsische Gedenkstätten +http://lobid.org/organisations/DE-MUS-790510#! DE-MUS-790510 Eisenbahnmuseum Bayerischer Bahnhof zu Leipzig +http://lobid.org/organisations/DE-MUS-790718#! DE-MUS-790718 Kleinbauernmuseum Reitzendorf +http://lobid.org/organisations/DE-MUS-791117#! DE-MUS-791117 Maschinenmuseum Kiel-Wik +http://lobid.org/organisations/DE-MUS-792714#! DE-MUS-792714 Fußballmuseum ""Sportsammlung Saloga"" +http://lobid.org/organisations/DE-MUS-793613#! DE-MUS-793613 Museumsanlage Moorkate +http://lobid.org/organisations/DE-MUS-794918#! DE-MUS-794918 Stadtmuseum - Abt. Druckgeschichte +http://lobid.org/organisations/DE-MUS-796810#! DE-MUS-796810 Museen der Stadt Dresden+Städtische Galerie Dresden +http://lobid.org/organisations/DE-MUS-796914#! DE-MUS-796914 Archäologische Freilichtanlage Funkenburg Westgreußen +http://lobid.org/organisations/DE-MUS-797417#! DE-MUS-797417 1. Deutsches Bratwurstmuseum +http://lobid.org/organisations/DE-MUS-798410#! DE-MUS-798410 Unimog-Museum +http://lobid.org/organisations/DE-MUS-799413#! DE-MUS-799413 Dorfmuseum Oedelsheim +http://lobid.org/organisations/DE-MUS-801412#! DE-MUS-801412 Historische Kuranlagen und Goethe-Theater Bad Lauchstädt GmbH +http://lobid.org/organisations/DE-MUS-801912#! DE-MUS-801912 Burg und Festung Regenstein +http://lobid.org/organisations/DE-MUS-803710#! DE-MUS-803710 Stiftung Luthergedenkstätten / Sterbehaus +http://lobid.org/organisations/DE-MUS-804817#! DE-MUS-804817 Museum Heineanum +http://lobid.org/organisations/DE-MUS-805518#! DE-MUS-805518 Kunstmuseum Moritzburg Halle (Saale)+Kunstmuseum des Landes Sachsen-Anhalt +http://lobid.org/organisations/DE-MUS-806011#! DE-MUS-806011 Stadtmuseum Halle +Christian-Wolff-Haus +http://lobid.org/organisations/DE-MUS-806813#! DE-MUS-806813 Klostermuseum Jerichow +http://lobid.org/organisations/DE-MUS-807410#! DE-MUS-807410 Gustav-Adolf-Gedenkstätte Lützen +http://lobid.org/organisations/DE-MUS-807910#! DE-MUS-807910 Otto-von-Guericke-Museum Lukasklause +http://lobid.org/organisations/DE-MUS-808319#! DE-MUS-808319 Museum Naumburg ""Hohe Lilie"" +http://lobid.org/organisations/DE-MUS-810015#! DE-MUS-810015 Winckelmann-Museum Stendal +http://lobid.org/organisations/DE-MUS-810515#! DE-MUS-810515 Stadtgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-811612#! DE-MUS-811612 Städtische Sammlungen der Lutherstadt Wittenberg +http://lobid.org/organisations/DE-MUS-813316#! DE-MUS-813316 Stadtmuseum Berlin / Ephraimpalais +http://lobid.org/organisations/DE-MUS-813712#! DE-MUS-813712 Museum für Naturkunde +http://lobid.org/organisations/DE-MUS-814611#! DE-MUS-814611 Kunstgewerbemuseum SMB +http://lobid.org/organisations/DE-MUS-815312#! DE-MUS-815312 Nationalgalerie SMB. Friedrichswerdersche Kirche. Schinkelmuseum +http://lobid.org/organisations/DE-MUS-816211#! DE-MUS-816211 Friedenbibliothek Antikriegsmuseum +http://lobid.org/organisations/DE-MUS-816815#! DE-MUS-816815 Museum Lichtenberg +http://lobid.org/organisations/DE-MUS-818113#! DE-MUS-818113 Museum Schloss Friedrichsfelde +http://lobid.org/organisations/DE-MUS-821312#! DE-MUS-821312 Heimatmuseum Calau +http://lobid.org/organisations/DE-MUS-821510#! DE-MUS-821510 Technisches Denkmal Spreewehrmühle e.V. +http://lobid.org/organisations/DE-MUS-821718#! DE-MUS-821718 Heimatstube Cumlosen +http://lobid.org/organisations/DE-MUS-821916#! DE-MUS-821916 Heimatmuseum Dissen +http://lobid.org/organisations/DE-MUS-822711#! DE-MUS-822711 Flugsportmuseum Finsterwalde +http://lobid.org/organisations/DE-MUS-822919#! DE-MUS-822919 Brandenburgische Landesmuseen für moderne Kunst+Museum ""Junge Kunst"" im PackHof Gebäude +http://lobid.org/organisations/DE-MUS-823016#! DE-MUS-823016 Kleist-Museum +http://lobid.org/organisations/DE-MUS-823214#! DE-MUS-823214 Renaissance-Burg Freyenstein +http://lobid.org/organisations/DE-MUS-823318#! DE-MUS-823318 Mahn-und Gedenkstätte Ravensbrück +http://lobid.org/organisations/DE-MUS-824019#! DE-MUS-824019 Bockwindmühle Lebusa +http://lobid.org/organisations/DE-MUS-824519#! DE-MUS-824519 Heimatmuseum Luckenwalde +http://lobid.org/organisations/DE-MUS-824613#! DE-MUS-824613 Spreewald-Museum Lübbenau +http://lobid.org/organisations/DE-MUS-824811#! DE-MUS-824811 Museum ""Mühlberg 1547"" +http://lobid.org/organisations/DE-MUS-825512#! DE-MUS-825512 Stadtgeschichts- und Schradenmuseum Ortrand +http://lobid.org/organisations/DE-MUS-826713#! DE-MUS-826713 SPSG / Chinesisches Haus +http://lobid.org/organisations/DE-MUS-827112#! DE-MUS-827112 SPSG / Römische Bäder +http://lobid.org/organisations/DE-MUS-827716#! DE-MUS-827716 Museum Schloß Lichtenburg +http://lobid.org/organisations/DE-MUS-827810#! DE-MUS-827810 Heimathaus Prieros +http://lobid.org/organisations/DE-MUS-828917#! DE-MUS-828917 Niederlausitzer Heidemuseum +http://lobid.org/organisations/DE-MUS-829410#! DE-MUS-829410 Bockwindmühlenmuseum Trebbus +http://lobid.org/organisations/DE-MUS-829910#! DE-MUS-829910 BARNIM PANORAMA +http://lobid.org/organisations/DE-MUS-832317#! DE-MUS-832317 Kreisagrarmuseum +http://lobid.org/organisations/DE-MUS-833018#! DE-MUS-833018 Natur-Museum Goldberg +http://lobid.org/organisations/DE-MUS-834011#! DE-MUS-834011 Museum der Stadt Hagenow +http://lobid.org/organisations/DE-MUS-834813#! DE-MUS-834813 Jagdschloß Granitz +http://lobid.org/organisations/DE-MUS-835212#! DE-MUS-835212 Kunstsammlungen, Schlösser u. Gärten, Schloß Ludwigslust +http://lobid.org/organisations/DE-MUS-835410#! DE-MUS-835410 Stadtmuseum -Amtsturm Lübz +http://lobid.org/organisations/DE-MUS-835712#! DE-MUS-835712 Heinrich-Schliemann-Gedenkstätte Neubukow +http://lobid.org/organisations/DE-MUS-835816#! DE-MUS-835816 Heimatmuseum Amt Neuhaus 'Pforthaus' +http://lobid.org/organisations/DE-MUS-836017#! DE-MUS-836017 Museum der Stadt Parchim +http://lobid.org/organisations/DE-MUS-836215#! DE-MUS-836215 Darß-Museum Prerow +http://lobid.org/organisations/DE-MUS-836819#! DE-MUS-836819 Kunsthalle Rostock +http://lobid.org/organisations/DE-MUS-836913#! DE-MUS-836913 Schiffahrtsmuseum Rostock +http://lobid.org/organisations/DE-MUS-838815#! DE-MUS-838815 Meeresmuseum +http://lobid.org/organisations/DE-MUS-839818#! DE-MUS-839818 MÜRITZEUM+Naturhistorische Landessammlungen +http://lobid.org/organisations/DE-MUS-841118#! DE-MUS-841118 Museum der Stadt Aue +http://lobid.org/organisations/DE-MUS-841410#! DE-MUS-841410 Museen im Schloß Augustusburg/Lindenhaus, Schlosskirche, Brunnenhaus +http://lobid.org/organisations/DE-MUS-841514#! DE-MUS-841514 Museen im Schloß Augustusburg / Motorradmuseum +http://lobid.org/organisations/DE-MUS-841618#! DE-MUS-841618 Museen im Schloß Augustusburg / Kutschenmuseum +http://lobid.org/organisations/DE-MUS-842017#! DE-MUS-842017 Sorbisches Museum Bautzen +http://lobid.org/organisations/DE-MUS-842111#! DE-MUS-842111 Museum Bautzen +http://lobid.org/organisations/DE-MUS-842319#! DE-MUS-842319 Stadtmuseum Bautzen /'Alte Wasserkunst' +http://lobid.org/organisations/DE-MUS-842611#! DE-MUS-842611 Museum der Stadt Borna +http://lobid.org/organisations/DE-MUS-843416#! DE-MUS-843416 Kunstsammlungen am Theaterplatz +http://lobid.org/organisations/DE-MUS-844815#! DE-MUS-844815 Staatliche Kunstsammlungen Dresden / Münzkabinett +http://lobid.org/organisations/DE-MUS-845818#! DE-MUS-845818 Staatliche Kunstsammlungen Dresden / Kunstgewerbemuseum +http://lobid.org/organisations/DE-MUS-061827#! DE-MUS-061827 Staatliche Kunstsammlungen Dresden / Grünes Gewölbe +http://lobid.org/organisations/DE-MUS-846519#! DE-MUS-846519 Museen der Stadt Dresden+Stadtmuseum Dresden, Schillerhäuschen +http://lobid.org/organisations/DE-MUS-848213#! DE-MUS-848213 Gottfried-Silbermann-Museum Frauenstein +http://lobid.org/organisations/DE-MUS-849216#! DE-MUS-849216 Museum Burg Gnandstein +http://lobid.org/organisations/DE-MUS-850919#! DE-MUS-850919 Heimatmuseum Herrnhut +http://lobid.org/organisations/DE-MUS-851818#! DE-MUS-851818 Burgmuseum Kirschau +http://lobid.org/organisations/DE-MUS-851912#! DE-MUS-851912 Militärhistorisches Museum Dresden+Ständige Ausstellungen der Festung Königstein +http://lobid.org/organisations/DE-MUS-852519#! DE-MUS-852519 Vogtländisches Freilichtmuseum Landwüst +http://lobid.org/organisations/DE-MUS-852717#! DE-MUS-852717 Ägyptisches Museum +http://lobid.org/organisations/DE-MUS-853512#! DE-MUS-853512 Stadtgeschichtliches Museum Leipzig / FORUM 1813 +http://lobid.org/organisations/DE-MUS-853918#! DE-MUS-853918 Stadtgeschichtliches Museum Leipzig/Sammlungen Sportmuseum +http://lobid.org/organisations/DE-MUS-854015#! DE-MUS-854015 Stadtgeschichtliches Museum Leipzig Abt: Völkerschlachtdenkmal +http://lobid.org/organisations/DE-MUS-854213#! DE-MUS-854213 Museen im Grassi/Museum für Musikinstrumente der Universität Leipzig +http://lobid.org/organisations/DE-MUS-855414#! DE-MUS-855414 Musikinstrumenten-Museum Markneukirchen +http://lobid.org/organisations/DE-MUS-855518#! DE-MUS-855518 Heimatmuseum Markranstädt +http://lobid.org/organisations/DE-MUS-856511#! DE-MUS-856511 Heimatmuseum Mügeln +http://lobid.org/organisations/DE-MUS-857212#! DE-MUS-857212 Baudenkmal und Museum ""Reiterhaus"" Neusalza-Spremberg +http://lobid.org/organisations/DE-MUS-858413#! DE-MUS-858413 Technisches Museum Neumannmühle +http://lobid.org/organisations/DE-MUS-859312#! DE-MUS-859312 Technisches Museum Ölmühle Pockau +http://lobid.org/organisations/DE-MUS-859510#! DE-MUS-859510 Stadt- und Pfefferkuchenmuseum Pulsnitz +http://lobid.org/organisations/DE-MUS-859916#! DE-MUS-859916 Museum ""Schloß Klippenstein"" +http://lobid.org/organisations/DE-MUS-860213#! DE-MUS-860213 Heimatmuseum Radeburg +http://lobid.org/organisations/DE-MUS-860317#! DE-MUS-860317 Barockschloß Rammenau +http://lobid.org/organisations/DE-MUS-860411#! DE-MUS-860411 Museum Barockschloß Rammenau /Fichte- Gedenkstätte +http://lobid.org/organisations/DE-MUS-860911#! DE-MUS-860911 Sächsisches Schmalspurbahn-Museum Rittersgrün e.V. +http://lobid.org/organisations/DE-MUS-861112#! DE-MUS-861112 Museum Schloss Rochsburg +http://lobid.org/organisations/DE-MUS-861612#! DE-MUS-861612 Heimatmuseum Scharfenberg +http://lobid.org/organisations/DE-MUS-862219#! DE-MUS-862219 Museum Burg Schönfels +http://lobid.org/organisations/DE-MUS-863910#! DE-MUS-863910 Staatliche Schlösser, Burgen und Gärten Sachsen gGmbH+Schloß Weesenstein +http://lobid.org/organisations/DE-MUS-864611#! DE-MUS-864611 Heimatstube Wilthen +http://lobid.org/organisations/DE-MUS-865718#! DE-MUS-865718 Naturkundliches Museum - Mauritianum +http://lobid.org/organisations/DE-MUS-866117#! DE-MUS-866117 GlockenStadtMuseum Apolda +http://lobid.org/organisations/DE-MUS-868019#! DE-MUS-868019 Bachhaus Eisenach gGmbH +http://lobid.org/organisations/DE-MUS-868311#! DE-MUS-868311 Lutherhaus Eisenach +http://lobid.org/organisations/DE-MUS-869116#! DE-MUS-869116 Stadtmuseum Ellrich +http://lobid.org/organisations/DE-MUS-869314#! DE-MUS-869314 Burg Gleichen +http://lobid.org/organisations/DE-MUS-869418#! DE-MUS-869418 Angermuseum Erfurt +http://lobid.org/organisations/DE-MUS-869616#! DE-MUS-869616 Museum für Thüringer Volkskunde +http://lobid.org/organisations/DE-MUS-870111#! DE-MUS-870111 Angermuseum Erfurt - Barfüßerkirche +http://lobid.org/organisations/DE-MUS-870413#! DE-MUS-870413 Jagdhaus Gabelbach +http://lobid.org/organisations/DE-MUS-871312#! DE-MUS-871312 Stiftung Schloß Friedenstein Gotha / Schlossmuseum Gotha +http://lobid.org/organisations/DE-MUS-873610#! DE-MUS-873610 Stiftung Deutsches Optisches Museum +http://lobid.org/organisations/DE-MUS-874519#! DE-MUS-874519 Meininger Museen / Literaturmuseum Baumbachhaus +http://lobid.org/organisations/DE-MUS-875116#! DE-MUS-875116 Memorialmuseum 'Friedrich Fröbel' Oberweißbach +http://lobid.org/organisations/DE-MUS-875314#! DE-MUS-875314 Museum Burg Posterstein +http://lobid.org/organisations/DE-MUS-875616#! DE-MUS-875616 Brehms Welt - Tiere und Menschen +http://lobid.org/organisations/DE-MUS-876619#! DE-MUS-876619 Besucherbergwerk Finstertal +http://lobid.org/organisations/DE-MUS-876911#! DE-MUS-876911 Museum Leuchtenburg +http://lobid.org/organisations/DE-MUS-878011#! DE-MUS-878011 Museum der Salzmannschule Schnepfental +http://lobid.org/organisations/DE-MUS-878313#! DE-MUS-878313 Klassik Stiftung Weimar / Goethe-Nationalmuseum: Goethes Wohnhaus +http://lobid.org/organisations/DE-MUS-879014#! DE-MUS-879014 Kunsthalle 'Harry Graf Kessler' +http://lobid.org/organisations/DE-MUS-879316#! DE-MUS-879316 Klassik Stiftung Weimar / Schillers Wohnhaus mit Schiller-Museum +http://lobid.org/organisations/DE-MUS-879910#! DE-MUS-879910 Klassik Stiftung Weimar / Römisches Haus +http://lobid.org/organisations/DE-MUS-881418#! DE-MUS-881418 Felsendome +http://lobid.org/organisations/DE-MUS-882213#! DE-MUS-882213 Himmelfahrt-Fundgrube +http://lobid.org/organisations/DE-MUS-882713#! DE-MUS-882713 Friedenszimmer im Schloß Altranstädt +http://lobid.org/organisations/DE-MUS-883810#! DE-MUS-883810 Dorfmuseum Markersdorf +http://lobid.org/organisations/DE-MUS-884813#! DE-MUS-884813 Heimatmuseum Gerth-Turm +http://lobid.org/organisations/DE-MUS-884917#! DE-MUS-884917 Museum der Schildbürger und Gneisenau +http://lobid.org/organisations/DE-MUS-886017#! DE-MUS-886017 Heimatmuseum Börgerende +http://lobid.org/organisations/DE-MUS-888211#! DE-MUS-888211 Schraube Museum - Museum für bürgerliche Wohnkultur und Handwerk +http://lobid.org/organisations/DE-MUS-888711#! DE-MUS-888711 Heimatstube +http://lobid.org/organisations/DE-MUS-889714#! DE-MUS-889714 Universitätsmuseum Halle +http://lobid.org/organisations/DE-MUS-890417#! DE-MUS-890417 Burgmuseum Plau am See +http://lobid.org/organisations/DE-MUS-890511#! DE-MUS-890511 GoetheStadtMuseum Ilmenau +http://lobid.org/organisations/DE-MUS-890615#! DE-MUS-890615 Schloss 'Glücksburg' / Stadtmuseum Römhild +http://lobid.org/organisations/DE-MUS-890719#! DE-MUS-890719 Heimatmuseum Erkner e.V. +http://lobid.org/organisations/DE-MUS-891212#! DE-MUS-891212 Heimatstube Demnitz +http://lobid.org/organisations/DE-MUS-891910#! DE-MUS-891910 Museumspark Rüdersdorf +http://lobid.org/organisations/DE-MUS-893010#! DE-MUS-893010 SPSG / Museum Schloß Rheinsberg +http://lobid.org/organisations/DE-MUS-896415#! DE-MUS-896415 Wassermühle Kuchelmiß +http://lobid.org/organisations/DE-MUS-896811#! DE-MUS-896811 Volkskundemuseum Wyhra +http://lobid.org/organisations/DE-MUS-900014#! DE-MUS-900014 Ludwig-Leichhardt-Museum +http://lobid.org/organisations/DE-MUS-900212#! DE-MUS-900212 Stadtmuseum Grevesmühlen +http://lobid.org/organisations/DE-MUS-901017#! DE-MUS-901017 Heimatstube Gerswalde +http://lobid.org/organisations/DE-MUS-901215#! DE-MUS-901215 Brandenburgisches Museum für Klein- und Privatbahnen in Gramzow/Uckermark +http://lobid.org/organisations/DE-MUS-901517#! DE-MUS-901517 Jagdschloss Schorfheide +http://lobid.org/organisations/DE-MUS-901913#! DE-MUS-901913 Stadt- und Regionalmuseum Lübben +http://lobid.org/organisations/DE-MUS-902218#! DE-MUS-902218 Lilienthal-Centrum Stölln +http://lobid.org/organisations/DE-MUS-902812#! DE-MUS-902812 Brandenburgisches Apothekenmuseum +http://lobid.org/organisations/DE-MUS-903211#! DE-MUS-903211 Stiftung Käthe Kollwitz Haus Moritzburg +http://lobid.org/organisations/DE-MUS-903711#! DE-MUS-903711 Heimatmuseum der Stadt Kahla +http://lobid.org/organisations/DE-MUS-904110#! DE-MUS-904110 Heimatmuseum Alten +http://lobid.org/organisations/DE-MUS-904214#! DE-MUS-904214 Haus Wysburg +http://lobid.org/organisations/DE-MUS-904412#! DE-MUS-904412 Rabensteiner Stollen +http://lobid.org/organisations/DE-MUS-904610#! DE-MUS-904610 Mineralogische Sammlung der Friedrich-Schiller Universität Jena +http://lobid.org/organisations/DE-MUS-905019#! DE-MUS-905019 Mühlhäuser Museen - Museum Allerheiligenkirche +http://lobid.org/organisations/DE-MUS-905915#! DE-MUS-905915 Hanfmuseum +http://lobid.org/organisations/DE-MUS-906512#! DE-MUS-906512 Arthur Boskamp-Stiftung +http://lobid.org/organisations/DE-MUS-907213#! DE-MUS-907213 Schmiedemuseum +http://lobid.org/organisations/DE-MUS-907317#! DE-MUS-907317 Heimat- und Schmiedemuseum +http://lobid.org/organisations/DE-MUS-908310#! DE-MUS-908310 Schloß Dachau +http://lobid.org/organisations/DE-MUS-908612#! DE-MUS-908612 Heimatmuseum Friesenheim +http://lobid.org/organisations/DE-MUS-910016#! DE-MUS-910016 Schulmuseum Zell-Weierbach +http://lobid.org/organisations/DE-MUS-911519#! DE-MUS-911519 Besenmuseum +http://lobid.org/organisations/DE-MUS-912116#! DE-MUS-912116 Lettl - Museum für surreale Kunst +http://lobid.org/organisations/DE-MUS-912210#! DE-MUS-912210 Bernstein-Museum +http://lobid.org/organisations/DE-MUS-912616#! DE-MUS-912616 Naturkunde-Museum und Kinder-Erlebnis-Museum Lindenhof +http://lobid.org/organisations/DE-MUS-913713#! DE-MUS-913713 Museum Künstlerhaus Gasteiger +http://lobid.org/organisations/DE-MUS-913911#! DE-MUS-913911 Bayerisches Armeemuseum - ""1. Weltkrieg"" +http://lobid.org/organisations/DE-MUS-914518#! DE-MUS-914518 Pfingstritt-Museum Bad Kötzting +http://lobid.org/organisations/DE-MUS-915219#! DE-MUS-915219 Deutsches Tabakpfeifenmuseum Oberelsbach-Rhön +http://lobid.org/organisations/DE-MUS-916514#! DE-MUS-916514 Bajuwarenmuseum Waging am See +http://lobid.org/organisations/DE-MUS-917111#! DE-MUS-917111 Stiftung Gedenkstätte Berlin-Hohenschönhausen +http://lobid.org/organisations/DE-MUS-918010#! DE-MUS-918010 Speicherstadtmuseum +http://lobid.org/organisations/DE-2219#! DE-2219 Landesarchiv Schleswig-Holstein +http://lobid.org/organisations/DE-MUS-920914#! DE-MUS-920914 Museum Haus Lebuser Land +http://lobid.org/organisations/DE-MUS-921219#! DE-MUS-921219 Kinomuseum - Museum für Kinematografie +http://lobid.org/organisations/DE-MUS-921313#! DE-MUS-921313 Dorfmuseum Gahlenz +http://lobid.org/organisations/DE-MUS-921417#! DE-MUS-921417 Museum Kurhaus Kleve / Ewald Mataré Sammlung +http://lobid.org/organisations/DE-MUS-921511#! DE-MUS-921511 LVR-Industriemuseum, Schauplatz Oberhausen +http://lobid.org/organisations/DE-MUS-922212#! DE-MUS-922212 Gerichtsmuseum Bad Fredeburg +http://lobid.org/organisations/DE-MUS-923319#! DE-MUS-923319 Bienenmuseum +http://lobid.org/organisations/DE-MUS-923413#! DE-MUS-923413 Heimatstube Müncheberg +http://lobid.org/organisations/DE-MUS-923913#! DE-MUS-923913 Peter-Huchel-Haus +http://lobid.org/organisations/DE-MUS-924010#! DE-MUS-924010 Museum und Begegnungsstätte 'Alter Krug' +http://lobid.org/organisations/DE-MUS-924916#! DE-MUS-924916 Naturkundliches Freilicht Museum - Arche Warder +http://lobid.org/organisations/DE-MUS-925617#! DE-MUS-925617 Besucherbergwerk ""Klosterstollen"" +http://lobid.org/organisations/DE-MUS-927113#! DE-MUS-927113 Heimatstube Wendhausen +http://lobid.org/organisations/DE-MUS-927915#! DE-MUS-927915 Leprosenhaus mit Sepp-Mahler-Museum +http://lobid.org/organisations/DE-MUS-928012#! DE-MUS-928012 Heimatmuseum Haueneberstein +http://lobid.org/organisations/DE-MUS-928512#! DE-MUS-928512 Vorderösterreich-Museum +http://lobid.org/organisations/DE-MUS-928616#! DE-MUS-928616 Heimatmuseum Graben-Neudorf +http://lobid.org/organisations/DE-MUS-928918#! DE-MUS-928918 Deutsches Verpackungs-Museum +http://lobid.org/organisations/DE-MUS-929911#! DE-MUS-929911 Heimatmuseum Waltersweier +http://lobid.org/organisations/DE-MUS-930812#! DE-MUS-930812 Diamantschleifermuseum +http://lobid.org/organisations/DE-MUS-931513#! DE-MUS-931513 Museum Uhl'sches Haus +http://lobid.org/organisations/DE-MUS-932016#! DE-MUS-932016 Heimatmuseum Imsbach +http://lobid.org/organisations/DE-MUS-933217#! DE-MUS-933217 Westwall Museum +http://lobid.org/organisations/DE-MUS-933311#! DE-MUS-933311 Auswanderermuseum +http://lobid.org/organisations/DE-MUS-933415#! DE-MUS-933415 Queichtalmuseum +http://lobid.org/organisations/DE-MUS-934616#! DE-MUS-934616 Weinmuseum im historischen Zehnthaus +http://lobid.org/organisations/DE-MUS-934814#! DE-MUS-934814 Museum 'Kreis Kreuznacher Kleinbahnen' +http://lobid.org/organisations/DE-MUS-935119#! DE-MUS-935119 Dorfmuseum ""Alter Dreschschuppen"" +http://lobid.org/organisations/DE-MUS-935515#! DE-MUS-935515 Heimat- und Weinbaumuseum Guldental +http://lobid.org/organisations/DE-MUS-935619#! DE-MUS-935619 Museumsscheune Helmenzen +http://lobid.org/organisations/DE-MUS-935817#! DE-MUS-935817 Römermuseum am Limes +http://lobid.org/organisations/DE-MUS-936414#! DE-MUS-936414 Kleines Militärmuseum +http://lobid.org/organisations/DE-MUS-936914#! DE-MUS-936914 Weingalerie WAJOS +http://lobid.org/organisations/DE-MUS-937011#! DE-MUS-937011 Heimatmuseum Neustadt/Wied +http://lobid.org/organisations/DE-MUS-938712#! DE-MUS-938712 Westerwald-Museum für Motorrad Technik +http://lobid.org/organisations/DE-MUS-939111#! DE-MUS-939111 Ölmühle Waldbreitbach +http://lobid.org/organisations/DE-MUS-941911#! DE-MUS-941911 Eifel-Vulkanmuseum +http://lobid.org/organisations/DE-MUS-942216#! DE-MUS-942216 Museum Altdorf +http://lobid.org/organisations/DE-MUS-943115#! DE-MUS-943115 Conditorei-Museum Kitzingen +http://lobid.org/organisations/DE-MUS-943917#! DE-MUS-943917 Rundfunkmuseum der Stadt Fürth +http://lobid.org/organisations/DE-MUS-944212#! DE-MUS-944212 Archäologisches Museum +http://lobid.org/organisations/DE-MUS-944514#! DE-MUS-944514 Erzgebirgsschau und Weiperter Heimatstuben +http://lobid.org/organisations/DE-MUS-945111#! DE-MUS-945111 Schmiedemuseum Kirchlauter +http://lobid.org/organisations/DE-MUS-947013#! DE-MUS-947013 Kartäusermuseum Tückelhausen +http://lobid.org/organisations/DE-MUS-947617#! DE-MUS-947617 Heimatmuseum Rieneck +http://lobid.org/organisations/DE-MUS-948818#! DE-MUS-948818 Dorfmuseum Weckbach +http://lobid.org/organisations/DE-MUS-950212#! DE-MUS-950212 Archiv Bürgerbewegung Leipzig e.V. +http://lobid.org/organisations/DE-MUS-951517#! DE-MUS-951517 Stadtmuseum Neustadt in Sachsen +http://lobid.org/organisations/DE-MUS-952812#! DE-MUS-952812 Museum des Dreißigjährigen Krieges +http://lobid.org/organisations/DE-MUS-953315#! DE-MUS-953315 Wilhelm Wagenfeld Haus +http://lobid.org/organisations/DE-MUS-953419#! DE-MUS-953419 Fürstliche Schatzkammer Thurn und Taxis +http://lobid.org/organisations/DE-MUS-954912#! DE-MUS-954912 Borner Forst- und Jagdmuseum ""Ferdinand von Raesfeld"" +http://lobid.org/organisations/DE-MUS-955217#! DE-MUS-955217 Marie-Hager-Haus +http://lobid.org/organisations/DE-MUS-955519#! DE-MUS-955519 Museum Jagdschloß Gelbensande e.V. +http://lobid.org/organisations/DE-MUS-957119#! DE-MUS-957119 Rügener Puppen- und Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-957317#! DE-MUS-957317 Zoologische Sammlung der Universität Rostock +http://lobid.org/organisations/DE-MUS-960818#! DE-MUS-960818 Motorradveteranen- und Technik-Museum +http://lobid.org/organisations/DE-MUS-960912#! DE-MUS-960912 Gedenkausstellung E.G. Baumgarten und Dr. H. Wölfert +http://lobid.org/organisations/DE-MUS-961519#! DE-MUS-961519 Museumshäuschen Krebes +http://lobid.org/organisations/DE-MUS-963411#! DE-MUS-963411 Burg Scharfenstein - Erzgebirgisches Weihnachts- und Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-963817#! DE-MUS-963817 Dorfmuseum Schönbach +http://lobid.org/organisations/DE-MUS-964518#! DE-MUS-964518 Kulturlandschaftsmuseum Wermsdorfer Forst +http://lobid.org/organisations/DE-MUS-965719#! DE-MUS-965719 Wulfshäger Museumsscheune +http://lobid.org/organisations/DE-MUS-966910#! DE-MUS-966910 Parkburgen - Amalienburg, Badenburg, Pagodenburg, Magdalenenklause +http://lobid.org/organisations/DE-MUS-967111#! DE-MUS-967111 Schinkenmuseum/Schinkenräucherei Meyer +http://lobid.org/organisations/DE-MUS-967319#! DE-MUS-967319 Sandsteinmuseum Bad Bentheim +http://lobid.org/organisations/DE-MUS-968010#! DE-MUS-968010 Heimatmuseum Berne +http://lobid.org/organisations/DE-MUS-969211#! DE-MUS-969211 KASKADE - Infohaus Wasser +http://lobid.org/organisations/DE-MUS-972514#! DE-MUS-972514 Heimatstube Oberg +http://lobid.org/organisations/DE-MUS-973319#! DE-MUS-973319 Pult- und Federkielmuseum +http://lobid.org/organisations/DE-MUS-974010#! DE-MUS-974010 Museum Alte Ziegelei Westerholt +http://lobid.org/organisations/DE-MUS-974718#! DE-MUS-974718 Zwei-Siele-Museum +http://lobid.org/organisations/DE-MUS-974916#! DE-MUS-974916 Heimatstube Klein Escherde +http://lobid.org/organisations/DE-MUS-976714#! DE-MUS-976714 Stadtgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-977311#! DE-MUS-977311 Heimatmuseum Abstatt +http://lobid.org/organisations/DE-MUS-978814#! DE-MUS-978814 Museum Geiserschmiede +http://lobid.org/organisations/DE-MUS-979119#! DE-MUS-979119 Heimatmuseum Dettingen - Erms +http://lobid.org/organisations/DE-MUS-979213#! DE-MUS-979213 Gralglas-Museum Dürnau +http://lobid.org/organisations/DE-MUS-979817#! DE-MUS-979817 Paul-Jauch-Museum +http://lobid.org/organisations/DE-MUS-980218#! DE-MUS-980218 Gerbermuseum 'Zur Lohmühle' +http://lobid.org/organisations/DE-MUS-980312#! DE-MUS-980312 Wehrgeschichtliches Museum im Kinzigtorturm +http://lobid.org/organisations/DE-MUS-983519#! DE-MUS-983519 Remser Heimatstuben +http://lobid.org/organisations/DE-MUS-983915#! DE-MUS-983915 Industriemagazin - Sammlung Reutlinger Industriekultur +http://lobid.org/organisations/DE-MUS-984012#! DE-MUS-984012 Gedenkstätte Synagoge Baisingen +http://lobid.org/organisations/DE-MUS-984314#! DE-MUS-984314 Stadtmuseum Bad Saulgau +http://lobid.org/organisations/DE-MUS-986414#! DE-MUS-986414 Pfeiferstube+Ausstellung über Steinhauerhandwerk+Dorfchronik, ländl. Hausrat +http://lobid.org/organisations/DE-MUS-986716#! DE-MUS-986716 Glas- und Heimatmuseum im Bürgerhaus ""Altes Rathaus"" +http://lobid.org/organisations/DE-MUS-987313#! DE-MUS-987313 Museum der LVR-Klinik Bedburg-Hau +http://lobid.org/organisations/DE-MUS-988118#! DE-MUS-988118 ARITHMEUM - rechnen einst und heute +http://lobid.org/organisations/DE-MUS-990116#! DE-MUS-990116 His-Törchen+Kunst- und Heimatstube der Gemeinde Issum +http://lobid.org/organisations/DE-MUS-991119#! DE-MUS-991119 Museum für Puppengeschichte +http://lobid.org/organisations/DE-MUS-992112#! DE-MUS-992112 Brückenhofmuseum Königswinter +http://lobid.org/organisations/DE-MUS-992810#! DE-MUS-992810 Deutsches Glasmalerei-Museum Linnich +http://lobid.org/organisations/DE-MUS-993615#! DE-MUS-993615 Uhren Museum Hubben +http://lobid.org/organisations/DE-MUS-993917#! DE-MUS-993917 Johann Wülfing & Sohn-Museum +http://lobid.org/organisations/DE-MUS-994618#! DE-MUS-994618 Gommansche Mühle +http://lobid.org/organisations/DE-MUS-995819#! DE-MUS-995819 Öömrang Hüs +http://lobid.org/organisations/DE-MUS-996010#! DE-MUS-996010 Nationalparkhaus St Andreasberg +http://lobid.org/organisations/DE-MUS-997711#! DE-MUS-997711 Gedenkstätte Pirna-Sonnenstein +http://lobid.org/organisations/DE-MUS-997919#! DE-MUS-997919 Storchenschmiede Linum +http://lobid.org/organisations/DE-MUS-998110#! DE-MUS-998110 Die Plattenburg +http://lobid.org/organisations/DE-MUS-999019#! DE-MUS-999019 Ackerbürgermuseum Gartz (Oder) +http://lobid.org/organisations/DE-MUS-999811#! DE-MUS-999811 Museum 'Schau mal rein' +http://lobid.org/organisations/DE-Uhm1#! DE-Uhm1 Uhm 1 Pfahlbaumuseum, Bibliothek +http://lobid.org/organisations/DE-Bd7#! DE-Bd7 Bd 7 Städtisches Klinikum Brandenburg GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-1876#! DE-1876 1876 Universitätsbibliothek Erfurt / Forschungsbibliothek Gotha +http://lobid.org/organisations/DE-1877#! DE-1877 1877 Hochschule des Bundes für öffentliche Verwaltung, Bibliothek +http://lobid.org/organisations/AT-LMK#! AT-LMK AT-LMK Landesmuseum für Kärnten, Bibliothek +http://lobid.org/organisations/DE-1882#! DE-1882 1882 Bischöfliches St.-Josef-Gymnasium, Bibliothek +http://lobid.org/organisations/DE-Swf2#! DE-Swf2 Swf 2 Bibliothek Otto Schäfer +http://lobid.org/organisations/DE-1884#! DE-1884 1884 Gemeindebücherei Schwarzenbruck +http://lobid.org/organisations/DE-Rav5#! DE-Rav5 Rav 5 Munzinger-Archiv GmbH +http://lobid.org/organisations/DE-Ess8#! DE-Ess8 Ess 8 Historische Bibliothek des Georgii-Gymnasiums Esslingen am Neckar +http://lobid.org/organisations/DE-Jhn1#! DE-Jhn1 Jhn 1 Gemeindearchiv Jüchen, Bibliothek +http://lobid.org/organisations/DE-N39#! DE-N39 N 39 Institut für moderne Kunst Nürnberg, Archiv / Bibliothek +http://lobid.org/organisations/DE-1902#! DE-1902 1902 Arnold-Janssen-Gymnasium, Bibliothek +http://lobid.org/organisations/DE-Dud1#! DE-Dud1 Dud 1 Stadtarchiv Duderstadt +http://lobid.org/organisations/DE-Heh2#! DE-Heh2 Heh 2 Hohenzollerische Heimatbücherei Hechingen +http://lobid.org/organisations/DE-Hag4-2#! DE-Hag4-2 Hag 4/2 Fachhochschule Südwestfalen, Fachbibliothek Iserlohn +http://lobid.org/organisations/DE-Hag4-4#! DE-Hag4-4 Hag 4/4 Fachhochschule Südwestfalen, Fachbibliothek Soest +http://lobid.org/organisations/DE-1906#! DE-1906 1906 Stadtbibliothek Jessen +http://lobid.org/organisations/DE-77-125#! DE-77-125 77/125 Universität Mainz, Zentralbibliothek, Mikroformen aus Bereichsbibliotheken +http://lobid.org/organisations/DE-751#! DE-751 751 Hochschulbibliothek Karlsruhe (PH) +http://lobid.org/organisations/DE-Ms8#! DE-Ms8 Ms 8 Justizzentrum Mühlhausen, Bibliothek +http://lobid.org/organisations/DE-1912#! DE-1912 1912 Gemeindebücherei St. Wolfgang +http://lobid.org/organisations/DE-1917#! DE-1917 1917 St.-Pius-Gymnasium Coesfeld, Bibliothek +http://lobid.org/organisations/DE-1919#! DE-1919 1919 Kombinierte Öffentliche- und Schulbücherei Osthofen +http://lobid.org/organisations/DE-1920#! DE-1920 1920 Marienschule Bischöfliches Mädchengymnasium, Bibliothek +http://lobid.org/organisations/DE-1921#! DE-1921 1921 Stadtbücherei Kemnath +http://lobid.org/organisations/DE-Ks14a#! DE-Ks14a Ks 14a Museumslandschaft Hessen Kassel, Bibliothek, Königstor +http://lobid.org/organisations/DE-MUS-018313#! DE-MUS-018313 Kunstbibliothek SMB +http://lobid.org/organisations/DE-MUS-043027#! DE-MUS-043027 Stiftung Schloß Friedenstein Gotha / Herzogliches Museum +http://lobid.org/organisations/DE-1925#! DE-1925 1925 Stadtbibliothek Ebersbach-Neugersdorf +http://lobid.org/organisations/DE-1927#! DE-1927 Institut für Geschichtliche Landeskunde an der Universität Mainz e.V. / Projekt www.regionalgeschichte.net +http://lobid.org/organisations/DE-82-337#! DE-82-337 82/337 Lehrstuhl und Institut für Leichtbau, Bibliothek +http://lobid.org/organisations/DE-1935#! DE-1935 1935 Stadtbibliothek Bad Berka +http://lobid.org/organisations/DE-17-4#! DE-17-4 17/4 TU Darmstadt, Fachbereich Chemie +http://lobid.org/organisations/DE-1940#! DE-1940 1940 Stadtbibliothek Ellwangen +http://lobid.org/organisations/DE-B1505#! DE-B1505 B 1505 Helmholtz-Zentrum Berlin für Materialien und Energie GmbH +http://lobid.org/organisations/DE-1942#! DE-1942 1942 EBS Universität für Wirtschaft und Recht, Learning Center, Standort Oestrich-Winkel, Fachbibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-1943#! DE-1943 1943 Buddhistisches Kloster Bodhi Vihara, Bibliothek +http://lobid.org/organisations/DE-1946#! DE-1946 1946 Infoladen Leipzig, Bibliothek +http://lobid.org/organisations/DE-1948#! DE-1948 1948 Stadtbücherei Ahrensburg +http://lobid.org/organisations/DE-1958#! DE-1958 Bundesarchiv +http://lobid.org/organisations/DE-1959#! DE-1959 1959 Gerichte für Arbeitssachen, Bibliothek +http://lobid.org/organisations/DE-1961#! DE-1961 1961 Lessing-Gymnasium Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-1965#! DE-1965 Historisches Archiv des Bayerischen Rundfunks +http://lobid.org/organisations/DE-2070s#! DE-2070s 2070s Hochschule für Wirtschaft und Recht, Hochschulbibliothek, Campus Schöneberg +http://lobid.org/organisations/DE-1972#! DE-1972 1972 Robert Schumann Hochschule, Hochschulbibliothek +http://lobid.org/organisations/DE-1973#! DE-1973 1973 Staatliche Hochschule für Bildende Künste, Städelschule, Bibliothek +http://lobid.org/organisations/DE-1974#! DE-1974 1974 Stadtbücherei Quickborn +http://lobid.org/organisations/DE-960-3#! DE-960-3 960/3 Bibliothek im Kurt-Schwitters-Forum +http://lobid.org/organisations/DE-1988#! DE-1988 Herder-Institut für historische Ostmitteleuropaforschung, Dokumentesammlung +http://lobid.org/organisations/DE-1991#! DE-1991 1991 Fachinformationsdienst Asien (Schwerpunkt Südasien) +http://lobid.org/organisations/DE-1992#! DE-1992 Stadtarchiv München +http://lobid.org/organisations/DE-1995#! DE-1995 Theater der Klänge +http://lobid.org/organisations/AT-IMP#! AT-IMP AT-IMP Max Perutz Library +http://lobid.org/organisations/DE-1999#! DE-1999 1999 Mediathek Möckmühl +http://lobid.org/organisations/DE-2002#! DE-2002 2002 Stadtbücherei Münchingen +http://lobid.org/organisations/DE-2003#! DE-2003 2003 Stadtbücherei Gaildorf +http://lobid.org/organisations/DE-2007#! DE-2007 2007 Stadtbücherei Balingen +http://lobid.org/organisations/DE-2009#! DE-2009 2009 Stadtbücherei Markgröningen +http://lobid.org/organisations/DE-2010#! DE-2010 2010 Stadtbücherei Marbach am Neckar +http://lobid.org/organisations/DE-2013#! DE-2013 2013 Bibliothek Schwieberdingen +http://lobid.org/organisations/DE-2016#! DE-2016 2016 Stadtbücherei Backnang +http://lobid.org/organisations/DE-8-10#! DE-8-10 8/10 Universitätsbibliothek Kiel, Fachbibliothek Sozialwissenschaften +http://lobid.org/organisations/DE-8-52#! DE-8-52 8/52 Universitätsbibliothek Kiel, Fachbibliothek Germanistik (Sprache / Literatur / Medien) +http://lobid.org/organisations/DE-8-57#! DE-8-57 8/57 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Slavistik +http://lobid.org/organisations/DE-8-59#! DE-8-59 8/59 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Ur- und Frühgeschichte +http://lobid.org/organisations/DE-8-683#! DE-8-683 8/68c Universitätsbibliothek Kiel, Fachbibliothek am Zoologischen Museum +http://lobid.org/organisations/DE-8-72#! DE-8-72 8/72 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Pflanzenbau und –züchtung +http://lobid.org/organisations/DE-8-76#! DE-8-76 8/76 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Landwirtschaftliche Verfahrenstechnik +http://lobid.org/organisations/DE-2028#! DE-2028 2028 Ortsbücherei Gingen +http://lobid.org/organisations/DE-2029#! DE-2029 2029 Justizvollzugsanstalt Heidering, Gefangenenbibliothek +http://lobid.org/organisations/CH-000008-6#! CH-000008-6 Zentralbibliothek Zürich +http://lobid.org/organisations/CH-000033-9#! CH-000033-9 Staatsarchiv des Kantons Zürich +http://lobid.org/organisations/DE-2031#! DE-2031 2031 Stadtbücherei Isny +http://lobid.org/organisations/DE-2036#! DE-2036 2036 Stadtbücherei Leonberg +http://lobid.org/organisations/DE-2041#! DE-2041 2041 Bücherei Gemmingen +http://lobid.org/organisations/DE-2045#! DE-2045 Datenbank Bayerischer Verdienstorden +http://lobid.org/organisations/DE-2052#! DE-2052 Leibniz-Institut für Raumbezogene Sozialforschung (IRS), Wissenschaftliche Sammlungen +http://lobid.org/organisations/DE-2055#! DE-2055 2055 Stadtbücherei Großbottwar +http://lobid.org/organisations/DE-2064#! DE-2064 LVR-Zentrum für Medien und Bildung, Fotoarchiv +http://lobid.org/organisations/DE-1156a#! DE-1156a 1156a Folkwang Universität der Künste, Campus Bochum, Folkwang Theaterzentrum, Bibliothek +http://lobid.org/organisations/DE-2076#! DE-2076 2076 Fundibook! +http://lobid.org/organisations/DE-17-901#! DE-17-901 17/901 TU Darmstadt, Handapparate Stadtmitte +http://lobid.org/organisations/DE-2082#! DE-2082 2082 Ortsbücherei Magstadt +http://lobid.org/organisations/DE-Ful2c#! DE-Ful2c Ful 2c Bischöfliches Generalvikariat Fulda +http://lobid.org/organisations/DE-2104#! DE-2104 Stadtarchiv Osterode am Harz +http://lobid.org/organisations/DE-2119#! DE-2119 2119 Stadtbibliothek Herrenberg +http://lobid.org/organisations/DE-MUS-059121#! DE-MUS-059121 Kindergartenmuseum Nordrhein-Westfalen +http://lobid.org/organisations/DE-MUS-060720#! DE-MUS-060720 LVR-Kulturhaus Landsynagoge Rödingen - Jüdisches Leben im Rheinland +http://lobid.org/organisations/DE-MUS-060022#! DE-MUS-060022 Museum Forum Arenacum +http://lobid.org/organisations/DE-MUS-356318#! DE-MUS-356318 LVR-Industriemuseum, St. Antony-Hütte +http://lobid.org/organisations/DE-MUS-060928#! DE-MUS-060928 Museum und Heimathaus Eiskeller +http://lobid.org/organisations/DE-MUS-060522#! DE-MUS-060522 Erich Wilker Museum +http://lobid.org/organisations/DE-617#! DE-617 Transportzentrale BSB München +http://lobid.org/organisations/DE-2141#! DE-2141 Celesio-Konzernarchiv +http://lobid.org/organisations/DE-2144#! DE-2144 2144 Mediathek Bad Krozingen +http://lobid.org/organisations/DE-2154#! DE-2154 Stiftung Westfälisches Wirtschaftsarchiv +http://lobid.org/organisations/DE-2163#! DE-2163 2163 Archivverbund Stadtarchiv/Staatsfilialarchiv Bautzen +http://lobid.org/organisations/DE-2166#! DE-2166 2166 Archiv des Evangelischen Kirchenkreises Wittgenstein +http://lobid.org/organisations/DE-2172#! DE-2172 Universitätsarchiv Augsburg +http://lobid.org/organisations/DE-2181#! DE-2181 Gemeindearchiv Kranenburg +http://lobid.org/organisations/DE-34-77#! DE-34-77 34/77 Universitätsbibliothek Kassel, Standort Kunsthochschulbibliothek, Geschlossenes Magazin +http://lobid.org/organisations/DE-2182#! DE-2182 Gemeindearchiv Bedburg-Hau +http://lobid.org/organisations/DE-2198#! DE-2198 2198 Technische Universität Chemnitz, Universitätsarchiv +http://lobid.org/organisations/DE-2199#! DE-2199 Institut für sozialwissenschaftliche Forschung e.V. +http://lobid.org/organisations/DE-2201#! DE-2201 Technische Universität Berlin, Universitätsarchiv +http://lobid.org/organisations/DE-Mz1-4#! DE-Mz1-4 Mz 1/4 LEIZA - Leibniz-Zentrum für Archäologie, LEA / Labor für Experimentelle Archäologie, Bibliothek +http://lobid.org/organisations/DE-188-930#! DE-188-930 188/930 Freie Universität Berlin, Campusbibliothek Natur-, Kultur- und Bildungswissenschaften, Mathematik, Informatik und Psychologie +http://lobid.org/organisations/DE-2209#! DE-2209 2209 Gottfried-Keller-Gymnasium Berlin, Schulbibliothek +http://lobid.org/organisations/DE-2211#! DE-2211 Stadtarchiv Pulheim +http://lobid.org/organisations/DE-2213#! DE-2213 2213 Eine Welt Netzwerk Thüringen e. V., Bibliothek +http://lobid.org/organisations/DE-2217#! DE-2217 2217 Stadtbücherei Achern +http://lobid.org/organisations/DE-2218#! DE-2218 2218 Schulbibliothek Fritz-Ruoff- und Albert-Schäffle-Schule Nürtingen +http://lobid.org/organisations/DE-2227#! DE-2227 2227 Stadtbücherei Metzingen +http://lobid.org/organisations/DE-2229#! DE-2229 2229 Stadt- und Schulbibliothek Kelsterbach +http://lobid.org/organisations/DE-2235#! DE-2235 Stadtarchiv Plauen +http://lobid.org/organisations/DE-2239#! DE-2239 Technische Universität Dresden, Universitätsarchiv +http://lobid.org/organisations/DE-Bm3-4#! DE-Bm3-4 Bm 3/4 Bibliothek des Ruhrgebiets, Dokumentation Ruhrgebiet +http://lobid.org/organisations/DE-2252#! DE-2252 Bertha-von-Suttner-Schule Ettlingen - Hauswirtschaftliche Berufsschule +http://lobid.org/organisations/DE-2253#! DE-2253 2253 Owinger Bücherei +http://lobid.org/organisations/DE-2254#! DE-2254 2254 Gemeindebücherei Aldingen +http://lobid.org/organisations/DE-MUS-062528#! DE-MUS-062528 Archäologische Studiensammlung der Ernst-Moritz-Arndt-Universität Greifswald +http://lobid.org/organisations/DE-2262#! DE-2262 Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg / DIZ, Archiv +http://lobid.org/organisations/DE-25-180#! DE-25-180 25/180 Albert-Ludwigs-Universität Freiburg, University College, Bibliothek +http://lobid.org/organisations/DE-2265#! DE-2265 Universitätsarchiv Düsseldorf +http://lobid.org/organisations/DE-2270#! DE-2270 2270 Gemeindebücherei Winterlingen +http://lobid.org/organisations/DE-2278#! DE-2278 Stadt Wiehl, Der Bürgermeister, Archiv +http://lobid.org/organisations/AT-DBSBG#! AT-DBSBG AT-DBSBG Diözesanbibliothek Salzburg +http://lobid.org/organisations/DE-2280#! DE-2280 Stadtarchiv Stuttgart +http://lobid.org/organisations/DE-2281#! DE-2281 Archiv der sozialen Demokratie der Friedrich-Ebert-Stiftung +http://lobid.org/organisations/AT-OBV#! AT-OBV Österreichischer Bibliothekenverbund +http://lobid.org/organisations/DE-2291#! DE-2291 2291 Berlin International University of Applied Sciences, Hans-Dieter Klingemann Library +http://lobid.org/organisations/DE-Krh2#! DE-Krh2 Krh 2 Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein, Bücherei +http://lobid.org/organisations/DE-26-910#! DE-26-910 26/910 Universität Gießen, Universitätsbibliothek, Sammlung Schüling (Grafiksammlung) +http://lobid.org/organisations/DE-1082a#! DE-1082a 1082a Hochschule Kaiserslautern, Campus Pirmasens, Hochschulbibliothek +http://lobid.org/organisations/DE-He76#! DE-He76 He 76 Bibliothek der Pädagogischen Hochschule Heidelberg +http://lobid.org/organisations/DE-1845#! DE-1845 1845 Hochschule Meißen (FH) und Fortbildungszentrum, Bibliothek +http://lobid.org/organisations/DE-Gp3#! DE-Gp3 Gp 3 George C. Marshall European Center for Security Studies, Research Library +http://lobid.org/organisations/DE-H376#! DE-H376 H 376 Kühne Logistics University – KLU, Bibliothek +http://lobid.org/organisations/DE-L332#! DE-L332 L 332 Institut für Seelsorge und Gemeindepraxis Leipzig, Bibliothek +http://lobid.org/organisations/DE-B1593#! DE-B1593 B 1593 Quadriga Hochschule Berlin, Bibliothek +http://lobid.org/organisations/DE-Nus2#! DE-Nus2 Nus 2 Hochschule Neuss für Internationale Wirtschaft, Bibliothek +http://lobid.org/organisations/DE-1859#! DE-1859 1859 Pfarr- und Gemeindebücherei Waldthurn +http://lobid.org/organisations/DE-1863#! DE-1863 1863 Bibliothek für Schwäbische Mundartdichtung Weilheim an der Teck +http://lobid.org/organisations/DE-93-223#! DE-93-223 93/223 Universität Stuttgart, Institut für Großflächige Mikroelektronik, Bibliothek +http://lobid.org/organisations/DE-291-187#! DE-291-187 291/187 Universität des Saarlandes, Testothek der Fachrichtung Psychologie +http://lobid.org/organisations/DE-21-205#! DE-21-205 21/205 Zentrum für Islamische Theologie, Bibliothek +http://lobid.org/organisations/DE-Wi27#! DE-Wi27 Wi 27 divibib GmbH +http://lobid.org/organisations/DE-1871#! DE-1871 1871 Zentrum für Wissensmanagement, Bibliothek Hamm +http://lobid.org/organisations/DE-MUS-097014#! DE-MUS-097014 Bayerisches Nationalmuseum +http://lobid.org/organisations/DE-MUS-000426#! DE-MUS-000426 LIMESEUM +http://lobid.org/organisations/DE-MUS-001023#! DE-MUS-001023 Kirchenmuseum Kößlarn +http://lobid.org/organisations/DE-MUS-001627#! DE-MUS-001627 Nationalpark-Tor Heimbach +http://lobid.org/organisations/DE-MUS-002120#! DE-MUS-002120 Gerbereimuseum Enger +http://lobid.org/organisations/DE-MUS-002724#! DE-MUS-002724 Museum 'Alte Mühle' +http://lobid.org/organisations/DE-MUS-002828#! DE-MUS-002828 Rheinhessisches Fahrradmuseum +http://lobid.org/organisations/DE-MUS-003212#! DE-MUS-003212 Museum Amelinghausen +http://lobid.org/organisations/DE-MUS-003514#! DE-MUS-003514 Stadtmuseum Andernach +http://lobid.org/organisations/DE-MUS-003529#! DE-MUS-003529 Regionalmuseum Harkerode +http://lobid.org/organisations/DE-MUS-004111#! DE-MUS-004111 Museum Bad Arolsen+Chr. D. Rauch-Haus +http://lobid.org/organisations/DE-MUS-004126#! DE-MUS-004126 Feldbahnmuseum Guldental +http://lobid.org/organisations/DE-MUS-004324#! DE-MUS-004324 Ausstellung 'Mensch und Landschaft' +http://lobid.org/organisations/DE-MUS-004522#! DE-MUS-004522 Puppenstubenmuseum der 30er und 50er Jahre +http://lobid.org/organisations/DE-MUS-004611#! DE-MUS-004611 Schloßmuseum der Stadt Aschaffenburg +http://lobid.org/organisations/DE-MUS-004715#! DE-MUS-004715 Stiftsmuseum der Stadt Aschaffenburg +http://lobid.org/organisations/DE-MUS-004720#! DE-MUS-004720 Rheinisches Fastnachtsmuseum +http://lobid.org/organisations/DE-MUS-005114#! DE-MUS-005114 Südsauerlandmuseum +http://lobid.org/organisations/DE-MUS-005218#! DE-MUS-005218 MAN Museum +http://lobid.org/organisations/DE-MUS-005223#! DE-MUS-005223 Handwerker-Museum +http://lobid.org/organisations/DE-MUS-005327#! DE-MUS-005327 Museum in der Schule MU*SE +http://lobid.org/organisations/DE-MUS-005812#! DE-MUS-005812 Römerlager - Das Römische Augsburg in Kisten +http://lobid.org/organisations/DE-MUS-005916#! DE-MUS-005916 'Dat ole Hus' +http://lobid.org/organisations/DE-MUS-006013#! DE-MUS-006013 Ikonenmuseum Schloß Autenried +http://lobid.org/organisations/DE-MUS-006226#! DE-MUS-006226 'Neues Schloss' Bad Lobenstein +http://lobid.org/organisations/DE-MUS-006528#! DE-MUS-006528 Besucherbergwerk Kamsdorf +http://lobid.org/organisations/DE-MUS-006726#! DE-MUS-006726 Brauereimuseum Altenburg +http://lobid.org/organisations/DE-MUS-007412#! DE-MUS-007412 Städtisches historisches Museum/ Museum Gotisches Haus +http://lobid.org/organisations/DE-MUS-008717#! DE-MUS-008717 Agnes-Miegel-Haus +http://lobid.org/organisations/DE-MUS-008915#! DE-MUS-008915 Deutsches Märchen- und Wesersagenmuseum +http://lobid.org/organisations/DE-MUS-009012#! DE-MUS-009012 Museumshof +http://lobid.org/organisations/DE-MUS-009329#! DE-MUS-009329 Handwerksmuseum Remseck-Aldingen +http://lobid.org/organisations/DE-MUS-009418#! DE-MUS-009418 Stadtmuseum +http://lobid.org/organisations/DE-MUS-009423#! DE-MUS-009423 Städtische Galerie im Kulturforum +http://lobid.org/organisations/DE-MUS-009527#! DE-MUS-009527 Museum 'Vom Kloster zur Stadt' +http://lobid.org/organisations/DE-MUS-009710#! DE-MUS-009710 Oberschwäbisches Museumsdorf Kürnbach +http://lobid.org/organisations/DE-MUS-009829#! DE-MUS-009829 Grenzsteinmuseum - Freilichtanlage +http://lobid.org/organisations/DE-MUS-009918#! DE-MUS-009918 Stadtmuseum Bad Soden am Taunus +http://lobid.org/organisations/DE-MUS-010111#! DE-MUS-010111 Stadtmuseum Bad Tölz +http://lobid.org/organisations/DE-MUS-010126#! DE-MUS-010126 Haus Bastian - Zentrum für kulturelle Bildung +http://lobid.org/organisations/DE-MUS-010428#! DE-MUS-010428 Sammlung Boros +http://lobid.org/organisations/DE-MUS-011025#! DE-MUS-011025 Deutsches Zusatzstoffmuseum +http://lobid.org/organisations/DE-MUS-011510#! DE-MUS-011510 Heimatmuseum Balingen +http://lobid.org/organisations/DE-MUS-012528#! DE-MUS-012528 Museum DKM +http://lobid.org/organisations/DE-MUS-012815#! DE-MUS-012815 Deutsches Freimaurer-Museum +http://lobid.org/organisations/DE-MUS-012919#! DE-MUS-012919 Markgräfliches Opernhaus +http://lobid.org/organisations/DE-MUS-013016#! DE-MUS-013016 Deutsches Schreibmaschinenmuseum +http://lobid.org/organisations/DE-MUS-014519#! DE-MUS-014519 Museum Schloß Adelsheim +http://lobid.org/organisations/DE-MUS-014613#! DE-MUS-014613 Salzbergwerk Berchtesgaden +http://lobid.org/organisations/DE-MUS-014811#! DE-MUS-014811 Afrika-Museum +http://lobid.org/organisations/DE-MUS-014826#! DE-MUS-014826 HöhlenErlebnisZentrum +http://lobid.org/organisations/DE-MUS-015116#! DE-MUS-015116 Kunstmuseum Villa Zanders +http://lobid.org/organisations/DE-MUS-015121#! DE-MUS-015121 Industriemuseum Eisenhammer mit Heimatstube Exten +http://lobid.org/organisations/DE-MUS-015329#! DE-MUS-015329 Bronzezeithaus +http://lobid.org/organisations/DE-MUS-016322#! DE-MUS-016322 NS Zwangsarbeit Dokumentationszentrum +http://lobid.org/organisations/DE-MUS-016426#! DE-MUS-016426 Gedenkstätte Stille Helden +http://lobid.org/organisations/DE-MUS-016713#! DE-MUS-016713 Parlamentshistorische Ausstellung des Deutschen Bundestages +http://lobid.org/organisations/DE-MUS-017018#! DE-MUS-017018 Gemäldegalerie SMB +http://lobid.org/organisations/DE-MUS-017612#! DE-MUS-017612 Stadtgeschichtliches Museum Spandau +http://lobid.org/organisations/DE-MUS-018011#! DE-MUS-018011 Heimatmuseum Zehlendorf +http://lobid.org/organisations/DE-MUS-018615#! DE-MUS-018615 Deutsches Blinden-Museum +http://lobid.org/organisations/DE-MUS-018620#! DE-MUS-018620 Luftmuseum Amberg e.V. +http://lobid.org/organisations/DE-MUS-018828#! DE-MUS-018828 Deutsches Fahrradmuseum gGmbH +http://lobid.org/organisations/DE-MUS-019410#! DE-MUS-019410 Staatliches Institut für Musikforschung PK, Musikinstrumenten-Museum +http://lobid.org/organisations/DE-MUS-019425#! DE-MUS-019425 'Erlebnis Steinzeit' +http://lobid.org/organisations/DE-MUS-019821#! DE-MUS-019821 Museum der Geschichte Ebrachs +http://lobid.org/organisations/DE-MUS-019925#! DE-MUS-019925 Heimatmuseum Eitensheim +http://lobid.org/organisations/DE-MUS-020019#! DE-MUS-020019 SPSG / Schloß Charlottenburg, Mausoleum +http://lobid.org/organisations/DE-MUS-020024#! DE-MUS-020024 Kulturzentrum Ostpreußen +http://lobid.org/organisations/DE-MUS-020524#! DE-MUS-020524 Lokwelt Freilassing +http://lobid.org/organisations/DE-MUS-020717#! DE-MUS-020717 Hans-Thoma-Museum +http://lobid.org/organisations/DE-MUS-021423#! DE-MUS-021423 Bayerisches Moor- und Torfmuseum +http://lobid.org/organisations/DE-MUS-022119#! DE-MUS-022119 Bürgermeisteramt +http://lobid.org/organisations/DE-MUS-022228#! DE-MUS-022228 Heimatmuseum Karlsfeld +http://lobid.org/organisations/DE-MUS-022317#! DE-MUS-022317 Landesmuseum Birkenfeld +http://lobid.org/organisations/DE-MUS-022426#! DE-MUS-022426 Heimatmuseum +http://lobid.org/organisations/DE-MUS-022520#! DE-MUS-022520 Mühlenmuseum +http://lobid.org/organisations/DE-MUS-022728#! DE-MUS-022728 Walchensee-Museum +http://lobid.org/organisations/DE-MUS-023523#! DE-MUS-023523 Heimatkundliches Museum mit Mittelsteinzeit und Geschichten +http://lobid.org/organisations/DE-MUS-024026#! DE-MUS-024026 Rabbinatsmuseum Braunsbach +http://lobid.org/organisations/DE-MUS-024120#! DE-MUS-024120 Heimatmuseum Yach +http://lobid.org/organisations/DE-MUS-024328#! DE-MUS-024328 Kultur-Historisches Privatmuseum +http://lobid.org/organisations/DE-MUS-024615#! DE-MUS-024615 LVR LandesMuseum Bonn +http://lobid.org/organisations/DE-MUS-024917#! DE-MUS-024917 Museum im Seelhaus +http://lobid.org/organisations/DE-MUS-025014#! DE-MUS-025014 Heimatstube Trochtelfingen +http://lobid.org/organisations/DE-MUS-025816#! DE-MUS-025816 Heimatmuseum Boxberg +http://lobid.org/organisations/DE-MUS-025910#! DE-MUS-025910 Theodor Heuss Museum +http://lobid.org/organisations/DE-MUS-026022#! DE-MUS-026022 Römischer Keller in Sulz am Neckar +http://lobid.org/organisations/DE-MUS-026413#! DE-MUS-026413 Stadtmuseum Obermühle +http://lobid.org/organisations/DE-MUS-026715#! DE-MUS-026715 Braunschweigisches Landesmuseum +http://lobid.org/organisations/DE-MUS-026720#! DE-MUS-026720 Extraball Deutsches Flippermuseum +http://lobid.org/organisations/DE-MUS-027010#! DE-MUS-027010 Staatliches Naturhistorisches Museum +http://lobid.org/organisations/DE-MUS-027025#! DE-MUS-027025 Zoologisches Institut und Museum der Universität Greifswald +http://lobid.org/organisations/DE-MUS-027916#! DE-MUS-027916 Übersee-Museum mit Schaumagazin Übermaxx +http://lobid.org/organisations/DE-MUS-028211#! DE-MUS-028211 Historisches Museum Bremerhaven +http://lobid.org/organisations/DE-MUS-028815#! DE-MUS-028815 Schloss Bruchsal +http://lobid.org/organisations/DE-MUS-029214#! DE-MUS-029214 Heimatmuseum Brunsbüttel +http://lobid.org/organisations/DE-MUS-029318#! DE-MUS-029318 Bezirksmuseum Buchen +http://lobid.org/organisations/DE-MUS-029516#! DE-MUS-029516 Hubschraubermuseum +http://lobid.org/organisations/DE-MUS-029927#! DE-MUS-029927 SCHAUWERK Sindelfingen +http://lobid.org/organisations/DE-MUS-030313#! DE-MUS-030313 Kreisheimatmuseum 'Striediecks Hof' +http://lobid.org/organisations/DE-MUS-030422#! DE-MUS-030422 Hagnauer Museum +http://lobid.org/organisations/DE-MUS-031123#! DE-MUS-031123 Berlin Story Museum +http://lobid.org/organisations/DE-MUS-031410#! DE-MUS-031410 Kloster Hirsau mit Museum +http://lobid.org/organisations/DE-MUS-031529#! DE-MUS-031529 John Heartfield Haus Waldsieversdorf +http://lobid.org/organisations/DE-MUS-032022#! DE-MUS-032022 Jean-Lurcat-Museum Eppelborn +http://lobid.org/organisations/DE-MUS-032215#! DE-MUS-032215 Museumsdorf Cloppenburg - Niedersächsisches Freilichtmuseum +http://lobid.org/organisations/DE-MUS-032428#! DE-MUS-032428 Museum für Mode & Tracht +http://lobid.org/organisations/DE-MUS-032819#! DE-MUS-032819 Feuerwehrmuseum Schloss Waldmannshofen +http://lobid.org/organisations/DE-MUS-032824#! DE-MUS-032824 Heimatmuseum St. Arnual +http://lobid.org/organisations/DE-MUS-033129#! DE-MUS-033129 Lothringer Bauernhausmuseum Haus Saargau +http://lobid.org/organisations/DE-MUS-033510#! DE-MUS-033510 Eisenbahnmuseum Darmstadt-Kranichstein +http://lobid.org/organisations/DE-MUS-033614#! DE-MUS-033614 Großherzogliche Porzellansammlung +http://lobid.org/organisations/DE-MUS-033629#! DE-MUS-033629 Heimatmuseum Neipel +http://lobid.org/organisations/DE-MUS-033723#! DE-MUS-033723 Heimatmuseum Spiesen - Haus Lion +http://lobid.org/organisations/DE-MUS-034617#! DE-MUS-034617 Erich-Mäder-Glasmuseum +http://lobid.org/organisations/DE-MUS-034815#! DE-MUS-034815 Fürstliches Residenzschloß Detmold +http://lobid.org/organisations/DE-MUS-035229#! DE-MUS-035229 Gustaf-Dalman-Institut für Biblische Landes- und Altertumskunde +http://lobid.org/organisations/DE-MUS-035714#! DE-MUS-035714 Museum Dingolfing +http://lobid.org/organisations/DE-MUS-035823#! DE-MUS-035823 Universität Greifswald, Institut für Ethik und Geschichte der Medizin, Medizinhistorische Sammlung +http://lobid.org/organisations/DE-MUS-036613#! DE-MUS-036613 Museum Ostwall im Dortmunder U +http://lobid.org/organisations/DE-MUS-037012#! DE-MUS-037012 Heimatmuseum Duderstadt +http://lobid.org/organisations/DE-MUS-037512#! DE-MUS-037512 Rahmen-Museum und Sammlung Alt-Düsseldorf +http://lobid.org/organisations/DE-MUS-037616#! DE-MUS-037616 Theatermuseum der Landeshauptstadt Düsseldorf +http://lobid.org/organisations/DE-MUS-037918#! DE-MUS-037918 DE-MUS-037918 Hetjens-Museum, Deutsches Keramikmuseum +http://lobid.org/organisations/DE-MUS-039414#! DE-MUS-039414 Römermuseum in der Schule +http://lobid.org/organisations/DE-MUS-039612#! DE-MUS-039612 Museum für Ur- u. Frühgeschichte Museum a.d. Willibaldsburg +http://lobid.org/organisations/DE-MUS-039810#! DE-MUS-039810 Jura-Museum +http://lobid.org/organisations/DE-MUS-039914#! DE-MUS-039914 Museum Bergér +http://lobid.org/organisations/DE-MUS-040711#! DE-MUS-040711 Museen im Markgrafenschloß +http://lobid.org/organisations/DE-MUS-042311#! DE-MUS-042311 Museum Erding +http://lobid.org/organisations/DE-MUS-044713#! DE-MUS-044713 Schloß Eutin +http://lobid.org/organisations/DE-MUS-045216#! DE-MUS-045216 Rhön-Museum +http://lobid.org/organisations/DE-MUS-046511#! DE-MUS-046511 Heimatmuseum Bergen-Enkheim +http://lobid.org/organisations/DE-MUS-047618#! DE-MUS-047618 Museum der Weltkulturen +http://lobid.org/organisations/DE-MUS-047712#! DE-MUS-047712 Archäologisches Museum Frankfurt +http://lobid.org/organisations/DE-MUS-048017#! DE-MUS-048017 Städel Museum +http://lobid.org/organisations/DE-MUS-048215#! DE-MUS-048215 Verkehrsmuseum Frankfurt am Main +http://lobid.org/organisations/DE-MUS-048715#! DE-MUS-048715 Museum Natur und Mensch +http://lobid.org/organisations/DE-MUS-049312#! DE-MUS-049312 Museum Oberes Donautal - Heimatmuseum Fridingen +http://lobid.org/organisations/DE-MUS-050411#! DE-MUS-050411 Domschatz und Museum des St. Petri-Domes Fritzlar +http://lobid.org/organisations/DE-MUS-050619#! DE-MUS-050619 Deutsches Feuerwehr-Museum +http://lobid.org/organisations/DE-MUS-051612#! DE-MUS-051612 Schloß Neuschwanstein +http://lobid.org/organisations/DE-MUS-052511#! DE-MUS-052511 Museum der Stadt Geretsried +http://lobid.org/organisations/DE-MUS-052917#! DE-MUS-052917 Stadtmuseum Gerolzhofen +http://lobid.org/organisations/DE-MUS-053816#! DE-MUS-053816 Liebig-Museum +http://lobid.org/organisations/DE-MUS-056117#! DE-MUS-056117 Städtisches Museum Göttingen +http://lobid.org/organisations/DE-MUS-056617#! DE-MUS-056617 Museum der Stadt Grafing +http://lobid.org/organisations/DE-MUS-056711#! DE-MUS-056711 Ackerbürgermuseum der+Stadt Grebenstein+'Haus Leck' und+'Alte Meierei' +http://lobid.org/organisations/DE-MUS-057214#! DE-MUS-057214 Wald- und Moormuseum Berumerfehn +http://lobid.org/organisations/DE-MUS-057318#! DE-MUS-057318 Museum Großkrotzenburg +http://lobid.org/organisations/DE-MUS-058113#! DE-MUS-058113 Landschaftsmuseum Westerwald +http://lobid.org/organisations/DE-MUS-059418#! DE-MUS-059418 Archäologisches Museum Hamburg+Stadtmuseum Harburg / Helms-Museum +http://lobid.org/organisations/DE-MUS-059512#! DE-MUS-059512 Stiftung Historische Museen Hamburg/ Jenisch Haus +http://lobid.org/organisations/DE-MUS-059918#! DE-MUS-059918 Museum für Kunst und Gewerbe +http://lobid.org/organisations/DE-MUS-060819#! DE-MUS-060819 Residenzschloß +http://lobid.org/organisations/DE-MUS-066411#! DE-MUS-066411 Otto-Schwabe-Museum +http://lobid.org/organisations/DE-MUS-067018#! DE-MUS-067018 Heimatmuseum Hohenwestedt +http://lobid.org/organisations/DE-MUS-067310#! DE-MUS-067310 'Stormarnsches Dorfmuseum' +http://lobid.org/organisations/DE-MUS-067518#! DE-MUS-067518 Urwelt-Museum Hauff +http://lobid.org/organisations/DE-MUS-068417#! DE-MUS-068417 Konrad-Zuse-Museum mit Stadt- und Kreisgeschichte +http://lobid.org/organisations/DE-MUS-069014#! DE-MUS-069014 Deutsches Mineralienmuseum +http://lobid.org/organisations/DE-MUS-069118#! DE-MUS-069118 Idstedt-Halle +http://lobid.org/organisations/DE-MUS-069316#! DE-MUS-069316 Schwäbisches Bauernhofmuseum mit Haus zur Schützenkultur +http://lobid.org/organisations/DE-MUS-069910#! DE-MUS-069910 Stadtmuseum Ingolstadt +http://lobid.org/organisations/DE-MUS-070415#! DE-MUS-070415 Wassertor-Museum +http://lobid.org/organisations/DE-MUS-070811#! DE-MUS-070811 Kreismuseum Prinzeßhof +http://lobid.org/organisations/DE-MUS-071012#! DE-MUS-071012 Schloß Jever +http://lobid.org/organisations/DE-MUS-071616#! DE-MUS-071616 Städtisches Museum Kalkar +http://lobid.org/organisations/DE-MUS-071814#! DE-MUS-071814 Schloß Bürgeln +http://lobid.org/organisations/DE-MUS-072317#! DE-MUS-072317 Museum für Literatur am Oberrhein +http://lobid.org/organisations/DE-MUS-072515#! DE-MUS-072515 Staatliche Kunsthalle Karlsruhe +http://lobid.org/organisations/DE-MUS-074417#! DE-MUS-074417 Hanauer Museum Kehl +http://lobid.org/organisations/DE-MUS-075316#! DE-MUS-075316 Niederrheinisches Museum für Volkskunde und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-077010#! DE-MUS-077010 Heimatmuseum Kirchheim +http://lobid.org/organisations/DE-MUS-077218#! DE-MUS-077218 Neues Schloss Kißlegg +http://lobid.org/organisations/DE-MUS-077312#! DE-MUS-077312 Deutsches Fastnachtmuseum Kitzingen +http://lobid.org/organisations/DE-MUS-077416#! DE-MUS-077416 Städtisches Museum Kitzingen +http://lobid.org/organisations/DE-MUS-078013#! DE-MUS-078013 Hohe Domkirche - Schatzkammer +http://lobid.org/organisations/DE-MUS-078617#! DE-MUS-078617 Museum für Angewandte Kunst - MAKK +http://lobid.org/organisations/DE-MUS-079912#! DE-MUS-079912 Rosgartenmuseum Konstanz +http://lobid.org/organisations/DE-MUS-081712#! DE-MUS-081712 Ostfriesisches Freilichtmuseum, Abt. II: Burgenmuseum +http://lobid.org/organisations/DE-MUS-082017#! DE-MUS-082017 Stadtmuseum Künzelsau +http://lobid.org/organisations/DE-MUS-082111#! DE-MUS-082111 Marine-Ehrenmal in Laboe - Technisches Museum U995 +http://lobid.org/organisations/DE-MUS-082819#! DE-MUS-082819 Heimatmuseum Landau an der Isar +http://lobid.org/organisations/DE-MUS-083218#! DE-MUS-083218 Burg Trausnitz +http://lobid.org/organisations/DE-MUS-083416#! DE-MUS-083416 Stadtresidenz Landshut +http://lobid.org/organisations/DE-MUS-083510#! DE-MUS-083510 Museum Langenargen-Bodensee +http://lobid.org/organisations/DE-MUS-085318#! DE-MUS-085318 Dümmer-Museum Lembruch +http://lobid.org/organisations/DE-MUS-086019#! DE-MUS-086019 Schloß Lichtenstein +http://lobid.org/organisations/DE-MUS-086811#! DE-MUS-086811 Stadtmuseum Lippstadt +http://lobid.org/organisations/DE-MUS-088119#! DE-MUS-088119 Museum Holstentor +http://lobid.org/organisations/DE-MUS-088317#! DE-MUS-088317 Museum für Natur und Umwelt +http://lobid.org/organisations/DE-MUS-090117#! DE-MUS-090117 Pahl-Museum +http://lobid.org/organisations/DE-MUS-090315#! DE-MUS-090315 Gutenberg-Museum Mainz +http://lobid.org/organisations/DE-MUS-091110#! DE-MUS-091110 Kunsthalle Mannheim +http://lobid.org/organisations/DE-MUS-092217#! DE-MUS-092217 Heimatmuseum Marner Skatklub von 1873 +http://lobid.org/organisations/DE-MUS-092415#! DE-MUS-092415 Freilichtmuseum Massing +http://lobid.org/organisations/DE-MUS-092519#! DE-MUS-092519 Fossilien- und Steindruck-Museum +http://lobid.org/organisations/DE-MUS-092613#! DE-MUS-092613 Eifelmuseum Mayen +http://lobid.org/organisations/DE-MUS-094015#! DE-MUS-094015 Alte Posthalterei - Stadtmuseum Mengen +http://lobid.org/organisations/DE-MUS-094619#! DE-MUS-094619 Landesrabbiner Dr. I.E. Lichtigfeld-Museum +http://lobid.org/organisations/DE-MUS-095716#! DE-MUS-095716 Städtisches Museum Abteiberg +http://lobid.org/organisations/DE-MUS-095914#! DE-MUS-095914 Rotes Haus-Stiftung Scheibler-Museum +http://lobid.org/organisations/DE-MUS-096011#! DE-MUS-096011 Stadtmuseum - Hospital +http://lobid.org/organisations/DE-MUS-096511#! DE-MUS-096511 Altes Residenztheater (Cuvilliés-Theater) +http://lobid.org/organisations/DE-MUS-098017#! DE-MUS-098017 Münchner Stadtmuseum +http://lobid.org/organisations/DE-MUS-098611#! DE-MUS-098611 Sammlung Schack +http://lobid.org/organisations/DE-MUS-098715#! DE-MUS-098715 Schatzkammer der Residenz +http://lobid.org/organisations/DE-MUS-099312#! DE-MUS-099312 Museum fünf Kontinente +http://lobid.org/organisations/DE-MUS-101311#! DE-MUS-101311 Städtische Kunstsammlung Murrhardt +http://lobid.org/organisations/DE-MUS-101613#! DE-MUS-101613 Amrumer Heimatmuseum +http://lobid.org/organisations/DE-MUS-102314#! DE-MUS-102314 Mineralien-Museum +http://lobid.org/organisations/DE-MUS-102710#! DE-MUS-102710 Buddelschiffmuseum +http://lobid.org/organisations/DE-MUS-104716#! DE-MUS-104716 Friesisches Heimatmuseum +http://lobid.org/organisations/DE-MUS-107017#! DE-MUS-107017 Museum Tucherschloss mit Hirsvogelsaal +http://lobid.org/organisations/DE-MUS-107611#! DE-MUS-107611 Keramikmuseum Schloß Obernzell +http://lobid.org/organisations/DE-MUS-108114#! DE-MUS-108114 Neues Schloß Schleißheim bei München +http://lobid.org/organisations/DE-MUS-108614#! DE-MUS-108614 Doktor Eisenbarth und Stadtmuseum +http://lobid.org/organisations/DE-MUS-109013#! DE-MUS-109013 Klingspor-Museum +http://lobid.org/organisations/DE-MUS-109117#! DE-MUS-109117 Haus der Stadtgeschichte +http://lobid.org/organisations/DE-MUS-110112#! DE-MUS-110112 Kulturgeschichtliches Museum/Stadt- und Regionalgeschichte +http://lobid.org/organisations/DE-MUS-110310#! DE-MUS-110310 Museumsanlage +http://lobid.org/organisations/DE-MUS-111511#! DE-MUS-111511 Schloß Marienburg +http://lobid.org/organisations/DE-MUS-111917#! DE-MUS-111917 Museum im Alten Rathaus +http://lobid.org/organisations/DE-MUS-113017#! DE-MUS-113017 Heimatmuseum ""Haus der Heimat"" +http://lobid.org/organisations/DE-MUS-114416#! DE-MUS-114416 Ernst-Barlach-Museum +http://lobid.org/organisations/DE-MUS-114614#! DE-MUS-114614 Heimatmuseum Raunheim +http://lobid.org/organisations/DE-MUS-114718#! DE-MUS-114718 Heimatmuseum Rauschenberg +http://lobid.org/organisations/DE-MUS-115013#! DE-MUS-115013 Museen der Stadt Recklinghausen/Städtische Kunsthalle +http://lobid.org/organisations/DE-MUS-117613#! DE-MUS-117613 Ronneburg-Museum +http://lobid.org/organisations/DE-MUS-118314#! DE-MUS-118314 RothenburgMuseum +http://lobid.org/organisations/DE-MUS-118418#! DE-MUS-118418 Diözesanmuseum +http://lobid.org/organisations/DE-MUS-118616#! DE-MUS-118616 Kunstsammlung Lorenzkapelle +http://lobid.org/organisations/DE-MUS-119317#! DE-MUS-119317 Burgmuseum +http://lobid.org/organisations/DE-MUS-120010#! DE-MUS-120010 Schloss und Münster Salem +http://lobid.org/organisations/DE-MUS-120916#! DE-MUS-120916 Heimathaus - Freilichtmuseum Scheeßel +http://lobid.org/organisations/DE-MUS-121815#! DE-MUS-121815 Heimatmuseum Schöningen +http://lobid.org/organisations/DE-MUS-122214#! DE-MUS-122214 Vogelsberger Heimatmuseum Schotten +http://lobid.org/organisations/DE-MUS-122412#! DE-MUS-122412 Museum im Pflegschloss+Geschichte, Kunst, Kultur +http://lobid.org/organisations/DE-MUS-123113#! DE-MUS-123113 Museum im Prediger +http://lobid.org/organisations/DE-MUS-123311#! DE-MUS-123311 Museum und Galerie der Stadt Schwabmünchen +http://lobid.org/organisations/DE-MUS-124210#! DE-MUS-124210 Ehemaliges Benediktinerkloster +http://lobid.org/organisations/DE-MUS-124918#! DE-MUS-124918 Heimatmuseum Simbach am Inn +http://lobid.org/organisations/DE-MUS-125213#! DE-MUS-125213 Stadtmuseum +http://lobid.org/organisations/DE-MUS-125619#! DE-MUS-125619 Museum Wilhelm Morgner +http://lobid.org/organisations/DE-MUS-125911#! DE-MUS-125911 Bergisches Museum Schloß Burg an der Wupper +http://lobid.org/organisations/DE-MUS-126216#! DE-MUS-126216 Heimatmuseum Schloß Brenz +http://lobid.org/organisations/DE-MUS-126612#! DE-MUS-126612 Heimatmuseum Spangenberg +http://lobid.org/organisations/DE-MUS-126810#! DE-MUS-126810 Historisches Museum der Pfalz Speyer +http://lobid.org/organisations/DE-MUS-127219#! DE-MUS-127219 Museum Amtspforte Stadthagen +http://lobid.org/organisations/DE-MUS-129111#! DE-MUS-129111 Heimatmuseum der Deutschen aus Bessarabien und der Dobrudscha +http://lobid.org/organisations/DE-MUS-129715#! DE-MUS-129715 Schloß Solitude +http://lobid.org/organisations/DE-MUS-130012#! DE-MUS-130012 Städtisches Lapidarium +http://lobid.org/organisations/DE-MUS-130116#! DE-MUS-130116 Museum zur Geschichte Hohenheims +http://lobid.org/organisations/DE-MUS-130616#! DE-MUS-130616 Kreismuseum Syke +http://lobid.org/organisations/DE-MUS-131119#! DE-MUS-131119 Puppenmuseum Tecklenburg +http://lobid.org/organisations/DE-MUS-132810#! DE-MUS-132810 Domschatzkammer +http://lobid.org/organisations/DE-MUS-133417#! DE-MUS-133417 Stadtmuseum Trostberg +http://lobid.org/organisations/DE-MUS-134118#! DE-MUS-134118 Stadtmuseum Tübingen +http://lobid.org/organisations/DE-MUS-135215#! DE-MUS-135215 Pfahlbau Museum Unteruhldingen +http://lobid.org/organisations/DE-MUS-135413#! DE-MUS-135413 Naturkundliches Bildungszentrum +http://lobid.org/organisations/DE-MUS-136312#! DE-MUS-136312 Museum Usingen im Kavaliershaus +http://lobid.org/organisations/DE-MUS-136718#! DE-MUS-136718 Deutsches Schloß- und Beschlägemuseum +http://lobid.org/organisations/DE-MUS-138516#! DE-MUS-138516 Haus der Stadtgeschichte +http://lobid.org/organisations/DE-MUS-138818#! DE-MUS-138818 Stadtmuseum Neumarkt +http://lobid.org/organisations/DE-MUS-140014#! DE-MUS-140014 Museum im Astorhaus +http://lobid.org/organisations/DE-MUS-140618#! DE-MUS-140618 Deutsches Eichendorff-Museum +http://lobid.org/organisations/DE-MUS-141111#! DE-MUS-141111 Städtisches Museum ""Haus Kupferhammer"" +http://lobid.org/organisations/DE-MUS-141517#! DE-MUS-141517 Heimatmuseum Rheiderland +http://lobid.org/organisations/DE-MUS-141913#! DE-MUS-141913 Museum am Lindenplatz +http://lobid.org/organisations/DE-MUS-142218#! DE-MUS-142218 Bergbau- und Stadtmuseum +http://lobid.org/organisations/DE-MUS-143211#! DE-MUS-143211 Justinus-Kerner-Haus Weinsberg +http://lobid.org/organisations/DE-MUS-144016#! DE-MUS-144016 Weissenhorner Heimatmuseum +http://lobid.org/organisations/DE-MUS-145519#! DE-MUS-145519 Wilhelm-Busch-Geburtshaus +http://lobid.org/organisations/DE-MUS-147119#! DE-MUS-147119 Dorf- und Heimatmuseum Winterbach +http://lobid.org/organisations/DE-MUS-150214#! DE-MUS-150214 Mineralogisches Museum der Universität +http://lobid.org/organisations/DE-MUS-150714#! DE-MUS-150714 Dr. Carl Häberlin-Friesen-Museum +http://lobid.org/organisations/DE-MUS-150818#! DE-MUS-150818 LVR-Archäologischer Park Xanten +http://lobid.org/organisations/DE-MUS-151113#! DE-MUS-151113 Heimatmuseum am Storchenturm +http://lobid.org/organisations/DE-MUS-151415#! DE-MUS-151415 Heimatmuseum 'Rauchkate' +http://lobid.org/organisations/DE-MUS-151519#! DE-MUS-151519 Museum Zons +http://lobid.org/organisations/DE-MUS-152210#! DE-MUS-152210 Museum Behnhaus Drägerhaus +http://lobid.org/organisations/DE-MUS-152710#! DE-MUS-152710 Altes Rathaus Wilster +http://lobid.org/organisations/DE-MUS-152918#! DE-MUS-152918 Königspesel +http://lobid.org/organisations/DE-MUS-153713#! DE-MUS-153713 Museum Amöneburg +http://lobid.org/organisations/DE-MUS-153817#! DE-MUS-153817 Schreibersches Haus +http://lobid.org/organisations/DE-MUS-154018#! DE-MUS-154018 Heimatmuseum Bad König +http://lobid.org/organisations/DE-MUS-156212#! DE-MUS-156212 Mineralogisches Museum +http://lobid.org/organisations/DE-MUS-156316#! DE-MUS-156316 Ethnographische Sammlung der Universität Marburg +http://lobid.org/organisations/DE-MUS-156410#! DE-MUS-156410 Heimatmuseum Walldorf +http://lobid.org/organisations/DE-MUS-157017#! DE-MUS-157017 Robert-Struppmann-Museum+Kunst- und Heimatmuseum der Stadt Lorch am Rhein +http://lobid.org/organisations/DE-MUS-157319#! DE-MUS-157319 Dorfstube-Münchholzhausen +http://lobid.org/organisations/DE-MUS-157819#! DE-MUS-157819 Museum Schloss Steinheim+Museum für Regionale Vor- und Frühgeschichte +http://lobid.org/organisations/DE-MUS-160414#! DE-MUS-160414 Freilicht- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-160914#! DE-MUS-160914 Museumsdorf Hösseringen +http://lobid.org/organisations/DE-MUS-162118#! DE-MUS-162118 Inselmuseum Spiekeroog-Museum +http://lobid.org/organisations/DE-MUS-162410#! DE-MUS-162410 Waldmuseum Wingst-Wassermühle +http://lobid.org/organisations/DE-MUS-162712#! DE-MUS-162712 Geosammlung der Technischen Universität Clausthal +http://lobid.org/organisations/DE-MUS-163819#! DE-MUS-163819 Museum für Kulturgeschichte+Museum August Kestner +http://lobid.org/organisations/DE-MUS-165711#! DE-MUS-165711 Geologisch-Paläontologisches Museum (Geomatikum) der Universität Hamburg +http://lobid.org/organisations/DE-MUS-167415#! DE-MUS-167415 Friedrich-Wilhelm-Weber-Museum +http://lobid.org/organisations/DE-MUS-167717#! DE-MUS-167717 Museen des Märkischen Kreises+-Luisenhütte Wocklum- +http://lobid.org/organisations/DE-MUS-167811#! DE-MUS-167811 Museum für Vor- und Frühgeschichte +http://lobid.org/organisations/DE-MUS-168710#! DE-MUS-168710 Burgturm Davensberg +http://lobid.org/organisations/DE-MUS-169713#! DE-MUS-169713 SchifffahrtMuseum +http://lobid.org/organisations/DE-MUS-171013#! DE-MUS-171013 Stadtmuseum Hattingen +http://lobid.org/organisations/DE-MUS-171513#! DE-MUS-171513 Turmmuseum Stadt Blankenberg +http://lobid.org/organisations/DE-MUS-172912#! DE-MUS-172912 Heimatmuseum Lügde +http://lobid.org/organisations/DE-MUS-174012#! DE-MUS-174012 Westpreussisches Landesmuseum +http://lobid.org/organisations/DE-MUS-174210#! DE-MUS-174210 Museum des Freien Grundes +http://lobid.org/organisations/DE-MUS-175515#! DE-MUS-175515 Schatzkammer der St. Servatiuskirche +http://lobid.org/organisations/DE-MUS-177115#! DE-MUS-177115 Heimatmuseum des Landkreises Regensburg +http://lobid.org/organisations/DE-MUS-178316#! DE-MUS-178316 Heimatmuseum Stadt und Landkreis Neudek +http://lobid.org/organisations/DE-MUS-178910#! DE-MUS-178910 Alte Saline mit Salzmuseum Bad Reichenhall +http://lobid.org/organisations/DE-MUS-179215#! DE-MUS-179215 Gärtner- und Häckermuseum Bamberg +http://lobid.org/organisations/DE-MUS-179413#! DE-MUS-179413 Jean-Paul-Museum +http://lobid.org/organisations/DE-MUS-179611#! DE-MUS-179611 Felsengarten Sanspareil und Burg Zwernitz bei Bayreuth +http://lobid.org/organisations/DE-MUS-179715#! DE-MUS-179715 Staatsgalerie im Neuen Schloß +http://lobid.org/organisations/DE-MUS-179819#! DE-MUS-179819 Heimatmuseum mit Ritter-von-Gluck-Archiv +http://lobid.org/organisations/DE-MUS-180616#! DE-MUS-180616 Kartause Buxheim +http://lobid.org/organisations/DE-MUS-181015#! DE-MUS-181015 Gemäldegalerie +http://lobid.org/organisations/DE-MUS-182914#! DE-MUS-182914 Hermann-Oberth-Raumfahrt-Museum +http://lobid.org/organisations/DE-MUS-183011#! DE-MUS-183011 Handwerkerstuben Feuchtwangen +http://lobid.org/organisations/DE-MUS-183115#! DE-MUS-183115 Silbereisenbergwerk Gleißinger Fels +http://lobid.org/organisations/DE-MUS-183615#! DE-MUS-183615 Museum für Vor- und Frühgeschichte - Archäologische Sammlung an der Mittleren Alz +http://lobid.org/organisations/DE-MUS-183917#! DE-MUS-183917 Heimatkundliche Sammlung Gößweinstein +http://lobid.org/organisations/DE-MUS-184910#! DE-MUS-184910 Museum Herrenmühle +http://lobid.org/organisations/DE-MUS-185017#! DE-MUS-185017 Burg Harburg +http://lobid.org/organisations/DE-MUS-186114#! DE-MUS-186114 Heimatmuseum Hörgertshausen +http://lobid.org/organisations/DE-MUS-187315#! DE-MUS-187315 Heimatmuseum Karlstein +http://lobid.org/organisations/DE-MUS-189717#! DE-MUS-189717 Mineraliensammlung +http://lobid.org/organisations/DE-MUS-190118#! DE-MUS-190118 Stadtmuseum +http://lobid.org/organisations/DE-MUS-190514#! DE-MUS-190514 Museum KulturLand Ries +http://lobid.org/organisations/DE-MUS-191017#! DE-MUS-191017 Heimatmuseum Freudenthal-Altvater +http://lobid.org/organisations/DE-MUS-192614#! DE-MUS-192614 Museum für Abgüsse Klassischer Bildwerke +http://lobid.org/organisations/DE-MUS-193013#! DE-MUS-193013 Ausstellung Mission EineWelt +http://lobid.org/organisations/DE-MUS-194214#! DE-MUS-194214 Bauernhausmuseum ""Huimatle"" +http://lobid.org/organisations/DE-MUS-195113#! DE-MUS-195113 Römermuseum Kastell Boiotro +http://lobid.org/organisations/DE-MUS-195811#! DE-MUS-195811 Diözesanmuseum St. Ulrich +http://lobid.org/organisations/DE-MUS-196314#! DE-MUS-196314 Heimatmuseum Bad Rodach +http://lobid.org/organisations/DE-MUS-196710#! DE-MUS-196710 Städtische Galerie +http://lobid.org/organisations/DE-MUS-196814#! DE-MUS-196814 Archäologisches Museum Hamburg / Stadtmuseum Harburg +http://lobid.org/organisations/DE-MUS-197213#! DE-MUS-197213 Heimatmuseum - ""Altes Weberhaus Neudorf"" +http://lobid.org/organisations/DE-MUS-197411#! DE-MUS-197411 Historische Ochsentretanlage im Brunnenhausmuseum +http://lobid.org/organisations/DE-MUS-197619#! DE-MUS-197619 Heimatmuseum Schnaittach +http://lobid.org/organisations/DE-MUS-197713#! DE-MUS-197713 Stadtmuseum Schongau +http://lobid.org/organisations/DE-MUS-198914#! DE-MUS-198914 Heimat- und Trachtenmuseum +http://lobid.org/organisations/DE-MUS-199417#! DE-MUS-199417 Ortssammlung Wettelsheim +http://lobid.org/organisations/DE-MUS-201510#! DE-MUS-201510 Oberfränkisches Bauernhofmuseum +http://lobid.org/organisations/DE-MUS-202117#! DE-MUS-202117 Geologisches Museum im Schwanenturm +http://lobid.org/organisations/DE-MUS-203110#! DE-MUS-203110 Heinrich Hansjakob-Museum +http://lobid.org/organisations/DE-MUS-203412#! DE-MUS-203412 Sensen Handwerk Stadtmuseum +http://lobid.org/organisations/DE-MUS-205012#! DE-MUS-205012 Heimatmuseum Münchingen +http://lobid.org/organisations/DE-MUS-205116#! DE-MUS-205116 Erstes Deutsches Historic-Actien-Museum +http://lobid.org/organisations/DE-MUS-206817#! DE-MUS-206817 Mineralogische Schau- und Lehrsammlung der Universität Tübingen +http://lobid.org/organisations/DE-MUS-207914#! DE-MUS-207914 Museum Grossauheim +http://lobid.org/organisations/DE-MUS-208115#! DE-MUS-208115 Deutsches Goldschmiedehaus +http://lobid.org/organisations/DE-MUS-208813#! DE-MUS-208813 Kaiserstühler Weinbaumuseum +http://lobid.org/organisations/DE-MUS-209514#! DE-MUS-209514 Karl Wagenplast-Museum +http://lobid.org/organisations/DE-MUS-209618#! DE-MUS-209618 Mörike-Museum Cleversulzbach +http://lobid.org/organisations/DE-MUS-210113#! DE-MUS-210113 Heimatmuseum Reubach +http://lobid.org/organisations/DE-MUS-210311#! DE-MUS-210311 Hohenloher Freilandmuseum e.V. +http://lobid.org/organisations/DE-MUS-210613#! DE-MUS-210613 Heimatstube Eisenbach +http://lobid.org/organisations/DE-MUS-211814#! DE-MUS-211814 Technisches Museum der Stadt Pforzheim +http://lobid.org/organisations/DE-MUS-212619#! DE-MUS-212619 Heimatmuseum und Archiv Jauernig +http://lobid.org/organisations/DE-MUS-215014#! DE-MUS-215014 Römisches Freilichtmuseum Hechingen +http://lobid.org/organisations/DE-MUS-216111#! DE-MUS-216111 Heimatmuseum +http://lobid.org/organisations/DE-MUS-216215#! DE-MUS-216215 Atom - Museum Haigerloch +http://lobid.org/organisations/DE-MUS-216913#! DE-MUS-216913 Steiff Museum +http://lobid.org/organisations/DE-MUS-217218#! DE-MUS-217218 Heuneburg-Museum +http://lobid.org/organisations/DE-MUS-217416#! DE-MUS-217416 Strübhaus (Haus der Malkunst) +http://lobid.org/organisations/DE-MUS-217718#! DE-MUS-217718 Kleines Stuckmuseum +http://lobid.org/organisations/DE-MUS-217812#! DE-MUS-217812 Zunfthaus und Narrenschau der Breisgauer Narrenzunft e.V. +http://lobid.org/organisations/DE-MUS-218315#! DE-MUS-218315 Schloß Wilflingen +http://lobid.org/organisations/DE-MUS-219318#! DE-MUS-219318 Freilichtmuseum Beuren +http://lobid.org/organisations/DE-MUS-219714#! DE-MUS-219714 Stadtmuseum +http://lobid.org/organisations/DE-MUS-220615#! DE-MUS-220615 Friedrich der Große-Museum +http://lobid.org/organisations/DE-MUS-220813#! DE-MUS-220813 Heimatmuseum im Rathaus +http://lobid.org/organisations/DE-MUS-221014#! DE-MUS-221014 Deutsches Fleischermuseum +http://lobid.org/organisations/DE-MUS-221514#! DE-MUS-221514 Heimatmuseum mit Heimatstube der Miletitscher +http://lobid.org/organisations/DE-MUS-221618#! DE-MUS-221618 Archäologisches Museum Rennigen +http://lobid.org/organisations/DE-MUS-222517#! DE-MUS-222517 Örtliche Sammlungen Neckarelz +http://lobid.org/organisations/DE-MUS-222819#! DE-MUS-222819 Odenwälder Freilandmuseum +http://lobid.org/organisations/DE-MUS-223218#! DE-MUS-223218 Museum im Alten Schloß +http://lobid.org/organisations/DE-MUS-223916#! DE-MUS-223916 Heimat- und Grimmelshausenmuseum Oberkirch +http://lobid.org/organisations/DE-MUS-224419#! DE-MUS-224419 Römermuseum Stettfeld +http://lobid.org/organisations/DE-MUS-224919#! DE-MUS-224919 Brasilienmuseum im Kloster Bardel +http://lobid.org/organisations/DE-MUS-225318#! DE-MUS-225318 Computermuseum der Fachhochschule Kiel +http://lobid.org/organisations/DE-MUS-226811#! DE-MUS-226811 Deutsches Sport & Olympia Museum +http://lobid.org/organisations/DE-MUS-227210#! DE-MUS-227210 Rheinisches Eisenkunstguss Museum +http://lobid.org/organisations/DE-MUS-227314#! DE-MUS-227314 Besucherbergwerk +http://lobid.org/organisations/DE-MUS-228515#! DE-MUS-228515 Museum Winningen +http://lobid.org/organisations/DE-MUS-229216#! DE-MUS-229216 Mühle Oberneuland +http://lobid.org/organisations/DE-MUS-229612#! DE-MUS-229612 Museum Haus Esters +http://lobid.org/organisations/DE-MUS-230419#! DE-MUS-230419 Kunsthalle Osnabrück +http://lobid.org/organisations/DE-MUS-231610#! DE-MUS-231610 Lessinghaus +http://lobid.org/organisations/DE-MUS-232217#! DE-MUS-232217 Anti-Kriegs-Museum e.V. +http://lobid.org/organisations/DE-MUS-232311#! DE-MUS-232311 Museum Charlottenburg-Wilmersdorf +http://lobid.org/organisations/DE-MUS-232415#! DE-MUS-232415 Mitte Museum +http://lobid.org/organisations/DE-MUS-232915#! DE-MUS-232915 Werner Egk- Begegnungsstätte +http://lobid.org/organisations/DE-MUS-233918#! DE-MUS-233918 Museum unterm Trifels +http://lobid.org/organisations/DE-MUS-234713#! DE-MUS-234713 Fossilien- und Heimatmuseum Messel +http://lobid.org/organisations/DE-MUS-235518#! DE-MUS-235518 Malerstübchen Willingshausen +http://lobid.org/organisations/DE-MUS-236313#! DE-MUS-236313 Donnersbergmuseum +http://lobid.org/organisations/DE-MUS-237316#! DE-MUS-237316 Deutsches Weinbaumuseum +http://lobid.org/organisations/DE-MUS-239218#! DE-MUS-239218 Stadtmuseum - Hospital-Scheune +http://lobid.org/organisations/DE-MUS-239510#! DE-MUS-239510 Fränkische Galerie Kronach +http://lobid.org/organisations/DE-MUS-239718#! DE-MUS-239718 Museum Burg Bederkesa +http://lobid.org/organisations/DE-MUS-239916#! DE-MUS-239916 Windstärke 10. Wrack- und Fischereimuseum Cuxhaven +http://lobid.org/organisations/DE-MUS-240015#! DE-MUS-240015 Wehrtechn. Studiensammlung +http://lobid.org/organisations/DE-MUS-240411#! DE-MUS-240411 Heimatmuseum Selsingen +http://lobid.org/organisations/DE-MUS-240619#! DE-MUS-240619 Baumhaus-Museum +http://lobid.org/organisations/DE-MUS-240817#! DE-MUS-240817 SPSG Berlin-Brandenburg/ Schloß Charlottenburg, Neuer Flügel +http://lobid.org/organisations/DE-MUS-241018#! DE-MUS-241018 Porzellanikon - Staatliches Museum für Porzellan Hohenberg a.d. Eger +http://lobid.org/organisations/DE-MUS-241716#! DE-MUS-241716 Winser Museumshof +http://lobid.org/organisations/DE-MUS-242011#! DE-MUS-242011 Ungarndeutsches Heimatmuseum +http://lobid.org/organisations/DE-MUS-242115#! DE-MUS-242115 Deichmuseum Land Wursten +http://lobid.org/organisations/DE-MUS-242313#! DE-MUS-242313 Wikinger Museum Haithabu +http://lobid.org/organisations/DE-MUS-243014#! DE-MUS-243014 Bremer Rundfunkmuseum +http://lobid.org/organisations/DE-MUS-243316#! DE-MUS-243316 Keramik-Museum Mettlach +http://lobid.org/organisations/DE-MUS-243514#! DE-MUS-243514 Jüdisches Museum +http://lobid.org/organisations/DE-MUS-244215#! DE-MUS-244215 Glasmuseum Immenhausen +http://lobid.org/organisations/DE-MUS-244819#! DE-MUS-244819 Niddaer Heimatmuseum e.V. +http://lobid.org/organisations/DE-MUS-244913#! DE-MUS-244913 Georg-Büchner-Museum +http://lobid.org/organisations/DE-MUS-245718#! DE-MUS-245718 Dorfmuseum ""Alter Forsthof"" +http://lobid.org/organisations/DE-MUS-245916#! DE-MUS-245916 Schiffahrtsmuseum Flensburg +http://lobid.org/organisations/DE-MUS-246117#! DE-MUS-246117 Kloster Cismar +http://lobid.org/organisations/DE-MUS-246919#! DE-MUS-246919 Museum der Stadt Bad Bergzabern +http://lobid.org/organisations/DE-MUS-249116#! DE-MUS-249116 Wiedenbrücker Schule Museum +http://lobid.org/organisations/DE-MUS-249512#! DE-MUS-249512 Wald- und Forstmuseum Kalletal +http://lobid.org/organisations/DE-MUS-249710#! DE-MUS-249710 Besucherbergwerk Kilianstollen +http://lobid.org/organisations/DE-MUS-250319#! DE-MUS-250319 Heimatmuseum Böhl-Iggelheim +http://lobid.org/organisations/DE-MUS-251312#! DE-MUS-251312 Weinmuseum Weingut Schales +http://lobid.org/organisations/DE-MUS-251510#! DE-MUS-251510 Hochwaldmuseum Hermeskeil +http://lobid.org/organisations/DE-MUS-252315#! DE-MUS-252315 Automobil- und Motorrad-Museum +http://lobid.org/organisations/DE-MUS-252513#! DE-MUS-252513 Museum der Stadt Alzenau im Schlösschen Michelbach +http://lobid.org/organisations/DE-MUS-253318#! DE-MUS-253318 Museum der Stadt Burgau +http://lobid.org/organisations/DE-MUS-254415#! DE-MUS-254415 Schwäbisches Bauern- und Technikmuseum +http://lobid.org/organisations/DE-MUS-255210#! DE-MUS-255210 Bauernmuseum Bamberger Land +http://lobid.org/organisations/DE-MUS-255814#! DE-MUS-255814 Museum gegenstandsfreier Kunst +http://lobid.org/organisations/DE-MUS-256015#! DE-MUS-256015 Hermann-Allmers-Gesellschaft e. V. +http://lobid.org/organisations/DE-MUS-256119#! DE-MUS-256119 Moormuseum Moordorf +http://lobid.org/organisations/DE-MUS-256817#! DE-MUS-256817 Historisches Museum Aurich +http://lobid.org/organisations/DE-MUS-258615#! DE-MUS-258615 Centrum für Naturkunde+Zoologisches Museum +http://lobid.org/organisations/DE-MUS-259618#! DE-MUS-259618 Heimat- und Handfeuerwaffenmuseum +http://lobid.org/organisations/DE-MUS-260613#! DE-MUS-260613 Industriemuseum Lauf +http://lobid.org/organisations/DE-MUS-262119#! DE-MUS-262119 Deutsches Skimuseum +http://lobid.org/organisations/DE-MUS-263716#! DE-MUS-263716 Wittelsbachermuseum Aichach +http://lobid.org/organisations/DE-MUS-263810#! DE-MUS-263810 Archäologie-Museum im Fränkischen Freilandmuseum +http://lobid.org/organisations/DE-MUS-264615#! DE-MUS-264615 Museum Alsbach-Hähnlein +http://lobid.org/organisations/DE-MUS-265118#! DE-MUS-265118 Heimatmuseum Freigericht +http://lobid.org/organisations/DE-MUS-265618#! DE-MUS-265618 Fastnachtsmuseum Herbstein +http://lobid.org/organisations/DE-MUS-266715#! DE-MUS-266715 Heimatmuseum Siegbach +http://lobid.org/organisations/DE-MUS-267510#! DE-MUS-267510 Heimatmuseum Wißmar +http://lobid.org/organisations/DE-MUS-267812#! DE-MUS-267812 Dotzheimer Museum +http://lobid.org/organisations/DE-MUS-267916#! DE-MUS-267916 frauen museum wiesbaden +http://lobid.org/organisations/DE-MUS-268513#! DE-MUS-268513 Heimatmuseum Neuweiler +http://lobid.org/organisations/DE-MUS-268815#! DE-MUS-268815 Heimatmuseum Leutenbach +http://lobid.org/organisations/DE-MUS-269214#! DE-MUS-269214 Flachsbrechhüttenmuseum +http://lobid.org/organisations/DE-MUS-269714#! DE-MUS-269714 Schlossmuseum Bebenhausen +http://lobid.org/organisations/DE-MUS-271816#! DE-MUS-271816 Museum in der Torburg+Heimat- und Handwerksmuseum +http://lobid.org/organisations/DE-MUS-271910#! DE-MUS-271910 Bauernmuseum Lammersdorf +http://lobid.org/organisations/DE-MUS-272715#! DE-MUS-272715 Städtische Galerie Schwalenberg +http://lobid.org/organisations/DE-MUS-273510#! DE-MUS-273510 Heimatmuseum Bevern +http://lobid.org/organisations/DE-MUS-274617#! DE-MUS-274617 Zentrum für Biodokumentation +http://lobid.org/organisations/DE-MUS-274919#! DE-MUS-274919 Deutsches Maler- und Lackierermuseum +http://lobid.org/organisations/DE-MUS-275412#! DE-MUS-275412 Werkbundarchiv - Museum der Dinge +http://lobid.org/organisations/DE-MUS-276311#! DE-MUS-276311 Terra-Sigillata-Museum +http://lobid.org/organisations/DE-MUS-276915#! DE-MUS-276915 Roter Haubarg +http://lobid.org/organisations/DE-MUS-278015#! DE-MUS-278015 Museum ""Altes Bergamt"" +http://lobid.org/organisations/DE-MUS-278713#! DE-MUS-278713 Internationale Krippensammlung und Heimatmuseum Großenlüder +http://lobid.org/organisations/DE-MUS-281818#! DE-MUS-281818 Heimatmuseum Varel +http://lobid.org/organisations/DE-MUS-282613#! DE-MUS-282613 Berg- und Stadtmuseum +http://lobid.org/organisations/DE-MUS-282717#! DE-MUS-282717 Heimatmuseum Obernfeld +http://lobid.org/organisations/DE-MUS-282915#! DE-MUS-282915 Heimatmuseum Moringen +http://lobid.org/organisations/DE-MUS-285018#! DE-MUS-285018 Alt-Freden-Sammlung +http://lobid.org/organisations/DE-MUS-285518#! DE-MUS-285518 Töpfermuseum Duingen +http://lobid.org/organisations/DE-MUS-285914#! DE-MUS-285914 Heimatmuseum Bodenfelde +http://lobid.org/organisations/DE-MUS-286219#! DE-MUS-286219 Heimatmuseum Algermissen +http://lobid.org/organisations/DE-MUS-287910#! DE-MUS-287910 Heimatmuseum Magstadt +http://lobid.org/organisations/DE-MUS-288111#! DE-MUS-288111 Stadtmuseum +http://lobid.org/organisations/DE-MUS-291216#! DE-MUS-291216 Museumshafen Oevelgönne +http://lobid.org/organisations/DE-MUS-291518#! DE-MUS-291518 Heimatmuseum im Eidelstedter Bürgerhaus +http://lobid.org/organisations/DE-MUS-292011#! DE-MUS-292011 Heimatmuseum der ev. Kirchengemeinde +http://lobid.org/organisations/DE-MUS-293212#! DE-MUS-293212 Dorfmuseum Niederlinxweiler +http://lobid.org/organisations/DE-MUS-293712#! DE-MUS-293712 Heimat- und Burgmuseum Kirkel +http://lobid.org/organisations/DE-MUS-294611#! DE-MUS-294611 Abgußsammlung antiker Plastik +http://lobid.org/organisations/DE-MUS-296013#! DE-MUS-296013 Rheinisches Feuerwehrmuseum Erkelenz-Lövenich +http://lobid.org/organisations/DE-MUS-296513#! DE-MUS-296513 Heimatmuseum ""Windmühle Reken"" +http://lobid.org/organisations/DE-MUS-296617#! DE-MUS-296617 Historisches Centrum Hagen +http://lobid.org/organisations/DE-MUS-296919#! DE-MUS-296919 Ernst-Barlach-Geburtshaus +http://lobid.org/organisations/DE-MUS-297110#! DE-MUS-297110 Schloß Mannheim +http://lobid.org/organisations/DE-MUS-299116#! DE-MUS-299116 Museum im Kräuterkasten +http://lobid.org/organisations/DE-MUS-299418#! DE-MUS-299418 Museum Rechenmacherhaus +http://lobid.org/organisations/DE-MUS-299814#! DE-MUS-299814 Bauernhausmuseum Hohenstein +http://lobid.org/organisations/DE-MUS-302118#! DE-MUS-302118 Puppen-Spielzeugmuseum mit Zinnfigurenkabinett +http://lobid.org/organisations/DE-MUS-303111#! DE-MUS-303111 Automuseum Dr. Carl Benz e.V. +http://lobid.org/organisations/DE-MUS-303715#! DE-MUS-303715 Pfahlheimer Bauernstube +http://lobid.org/organisations/DE-MUS-304010#! DE-MUS-304010 Heimatmuseum Appeleshof +http://lobid.org/organisations/DE-MUS-305013#! DE-MUS-305013 Eltzer Heimatmuseum +http://lobid.org/organisations/DE-MUS-306110#! DE-MUS-306110 Heimatstube Gittelde +http://lobid.org/organisations/DE-MUS-306714#! DE-MUS-306714 Ostfriesisches Teemuseum Norden +http://lobid.org/organisations/DE-MUS-307811#! DE-MUS-307811 Heimatgeschichtliche Sammlung der Gemeinde Oldenswort +http://lobid.org/organisations/DE-MUS-310416#! DE-MUS-310416 Burg Arras +http://lobid.org/organisations/DE-MUS-311013#! DE-MUS-311013 Bajasseum I Zirkusmuseum +http://lobid.org/organisations/DE-MUS-311513#! DE-MUS-311513 Peter-Zirbes-Haus +http://lobid.org/organisations/DE-MUS-312318#! DE-MUS-312318 Haus der Badisch-Pfälzischen Fasnacht +http://lobid.org/organisations/DE-MUS-312610#! DE-MUS-312610 Raiffeisen-Museum +http://lobid.org/organisations/DE-MUS-313415#! DE-MUS-313415 Heimatmuseum Hanerau-Hademarschen mit ostdeutschen Stuben u. Theodor Storm Zimmer +http://lobid.org/organisations/DE-MUS-313613#! DE-MUS-313613 Ofenmuseum +http://lobid.org/organisations/DE-MUS-314210#! DE-MUS-314210 Heimatmuseum Ober-Flörsheim +http://lobid.org/organisations/DE-MUS-314616#! DE-MUS-314616 Kahnweiler-Haus +http://lobid.org/organisations/DE-MUS-314710#! DE-MUS-314710 Museum für Zeit +http://lobid.org/organisations/DE-MUS-315515#! DE-MUS-315515 Heimatmuseum Zerf im Bürgerhaus +http://lobid.org/organisations/DE-MUS-317615#! DE-MUS-317615 Missionsmuseum Würzburg +http://lobid.org/organisations/DE-MUS-317813#! DE-MUS-317813 Strafvollzugsmuseum Ludwigsburg +http://lobid.org/organisations/DE-MUS-318014#! DE-MUS-318014 Feuerwehrmuseum Zeven +http://lobid.org/organisations/DE-MUS-318118#! DE-MUS-318118 Museum Thonet +http://lobid.org/organisations/DE-MUS-319715#! DE-MUS-319715 Schwäbisches Krippenmuseum +http://lobid.org/organisations/DE-MUS-319819#! DE-MUS-319819 Bergbaumuseum des Kreises Altenkirchen +http://lobid.org/organisations/DE-MUS-320814#! DE-MUS-320814 Archäologische Sammlung und Abgußsammlung der Universität +http://lobid.org/organisations/DE-MUS-322216#! DE-MUS-322216 Bibelgalerie Meersburg gGmbH +http://lobid.org/organisations/DE-MUS-322612#! DE-MUS-322612 Deutsches Kaltwalzmuseum +http://lobid.org/organisations/DE-MUS-324514#! DE-MUS-324514 Naturpfad Vogelkoje Kampen +http://lobid.org/organisations/DE-MUS-325413#! DE-MUS-325413 Wilhelm-Fabry-Museum +http://lobid.org/organisations/DE-MUS-325517#! DE-MUS-325517 Biol. Stat. Zwillbrock +http://lobid.org/organisations/DE-MUS-326510#! DE-MUS-326510 Brentano-Haus +http://lobid.org/organisations/DE-MUS-326614#! DE-MUS-326614 Rothmühler Heimatmuseum +http://lobid.org/organisations/DE-MUS-328412#! DE-MUS-328412 Museum im Adler +http://lobid.org/organisations/DE-MUS-328516#! DE-MUS-328516 Heimatstube Bernstadt +http://lobid.org/organisations/DE-MUS-330014#! DE-MUS-330014 Fossilienmuseum im Werkforum +http://lobid.org/organisations/DE-MUS-332010#! DE-MUS-332010 Das kleine Museum - Puppen, Puppenstuben und Spielzeug aus zwei Jahrhunderten +http://lobid.org/organisations/DE-MUS-332614#! DE-MUS-332614 Schloßmuseum Kirchentellinsfurt +http://lobid.org/organisations/DE-MUS-333919#! DE-MUS-333919 ""Frischglück""-Besucherbergwerk +http://lobid.org/organisations/DE-MUS-334610#! DE-MUS-334610 Oelmuehle Michelau +http://lobid.org/organisations/DE-MUS-335415#! DE-MUS-335415 Heimatstube der ehemaligen Pomazer Deutschen (Ungarn) +http://lobid.org/organisations/DE-MUS-337317#! DE-MUS-337317 Heimatmuseum Kastl +http://lobid.org/organisations/DE-MUS-337411#! DE-MUS-337411 Alpinmuseum Kempten +http://lobid.org/organisations/DE-MUS-340818#! DE-MUS-340818 Südhessisches Handwerksmuseum Roßdorf +http://lobid.org/organisations/DE-MUS-341311#! DE-MUS-341311 Kloster Medingen +http://lobid.org/organisations/DE-MUS-343015#! DE-MUS-343015 Museum für Landtechnik und Landarbeit Börry +http://lobid.org/organisations/DE-MUS-344414#! DE-MUS-344414 Historische Schmiede Neckargröningen +http://lobid.org/organisations/DE-MUS-344612#! DE-MUS-344612 Weilimdorfer Heimatstube +http://lobid.org/organisations/DE-MUS-346118#! DE-MUS-346118 Burgmuseum Bad Bodenteich +http://lobid.org/organisations/DE-MUS-346410#! DE-MUS-346410 Freilichtmuseum 'Frelsdorfer Brink' +http://lobid.org/organisations/DE-MUS-347215#! DE-MUS-347215 Museumshof Emmerstedt +http://lobid.org/organisations/DE-MUS-347715#! DE-MUS-347715 Heimatmuseum Borgloh +http://lobid.org/organisations/DE-MUS-348718#! DE-MUS-348718 Feuerwehrmuseum Marxen +http://lobid.org/organisations/DE-MUS-349419#! DE-MUS-349419 Museumseisenbahn 'Jan Harpstedt' +http://lobid.org/organisations/DE-MUS-349513#! DE-MUS-349513 Kulturgeschichtliches Museum Osnabrück / Villa Schlikker +http://lobid.org/organisations/DE-MUS-350216#! DE-MUS-350216 Heimatmuseum Rhüden +http://lobid.org/organisations/DE-MUS-351813#! DE-MUS-351813 Fischer- und Webermuseum+Spielzeugmuseum Steinhude +http://lobid.org/organisations/DE-MUS-353215#! DE-MUS-353215 Stadtmuseum Breckerfeld e.V. +http://lobid.org/organisations/DE-MUS-353913#! DE-MUS-353913 Museum für Kaffeetechnik +http://lobid.org/organisations/DE-MUS-355013#! DE-MUS-355013 Automuseum ""Geschichte auf Rädern"" +http://lobid.org/organisations/DE-MUS-355617#! DE-MUS-355617 Heimatmuseum Löhne +http://lobid.org/organisations/DE-MUS-358012#! DE-MUS-358012 Burg Lahneck +http://lobid.org/organisations/DE-MUS-358616#! DE-MUS-358616 Arp Museum+Bahnhof Rolandseck +http://lobid.org/organisations/DE-MUS-361211#! DE-MUS-361211 Burgauer Tiermuseum +http://lobid.org/organisations/DE-MUS-361315#! DE-MUS-361315 Schustermuseum +http://lobid.org/organisations/DE-MUS-362318#! DE-MUS-362318 Goldbergbaumuseum Goldkronach +http://lobid.org/organisations/DE-MUS-363519#! DE-MUS-363519 Städtisches Schulmuseum Lohr am Main +http://lobid.org/organisations/DE-MUS-363717#! DE-MUS-363717 Schützenscheiben-Sammlung der kgl. priv. Schützengesellschaft +http://lobid.org/organisations/DE-MUS-364418#! DE-MUS-364418 Wallfahrtsmuseum +http://lobid.org/organisations/DE-MUS-365213#! DE-MUS-365213 Triasmuseum +http://lobid.org/organisations/DE-MUS-367417#! DE-MUS-367417 Brauhausmuseum +http://lobid.org/organisations/DE-MUS-368514#! DE-MUS-368514 Orgelmuseum Altes Schloß Valley +http://lobid.org/organisations/DE-MUS-369215#! DE-MUS-369215 Naturkundliches Museum des Umweltzentrums Schloss Wiesenfelden +http://lobid.org/organisations/DE-MUS-369715#! DE-MUS-369715 Röntgen-Gedächtnisstätte Würzburg +http://lobid.org/organisations/DE-MUS-370210#! DE-MUS-370210 Kloster Ebstorf +http://lobid.org/organisations/DE-MUS-370616#! DE-MUS-370616 Initiative Alte Synagoge +http://lobid.org/organisations/DE-MUS-370710#! DE-MUS-370710 Museum für Wattenfischerei Wremen +http://lobid.org/organisations/DE-MUS-371713#! DE-MUS-371713 Gewerbemuseum Spaichingen +http://lobid.org/organisations/DE-MUS-372414#! DE-MUS-372414 Heimatmuseum Harsum +http://lobid.org/organisations/DE-MUS-372612#! DE-MUS-372612 Schulmuseum Steinhorst +http://lobid.org/organisations/DE-MUS-373115#! DE-MUS-373115 Heimatstube des BdV - Ortsgruppe Weinsberg +http://lobid.org/organisations/DE-MUS-374212#! DE-MUS-374212 Museum Neuss - Haus Rottels +http://lobid.org/organisations/DE-MUS-374618#! DE-MUS-374618 Bauernmuseum Ostdorf +http://lobid.org/organisations/DE-MUS-374910#! DE-MUS-374910 Samlandmuseum +http://lobid.org/organisations/DE-MUS-376312#! DE-MUS-376312 Naturzentrum Eifel +http://lobid.org/organisations/DE-MUS-377919#! DE-MUS-377919 Städtische Fossiliensammlung +http://lobid.org/organisations/DE-MUS-379113#! DE-MUS-379113 Heimatmuseum Feudingen +http://lobid.org/organisations/DE-MUS-380014#! DE-MUS-380014 Kelter- u. Weinbaumuseum +http://lobid.org/organisations/DE-MUS-380410#! DE-MUS-380410 Heimatmuseum Schwieberdingen +http://lobid.org/organisations/DE-MUS-381819#! DE-MUS-381819 Museum SPUR Cham +http://lobid.org/organisations/DE-MUS-382916#! DE-MUS-382916 Heimatmuseum Emskirchen +http://lobid.org/organisations/DE-MUS-383013#! DE-MUS-383013 Waldschmidt-Ausstellung +http://lobid.org/organisations/DE-MUS-384110#! DE-MUS-384110 Museum Klaushäusl - Salz und Moor +http://lobid.org/organisations/DE-MUS-384516#! DE-MUS-384516 Heimatkundliche Sammlung im Rathaus +http://lobid.org/organisations/DE-MUS-385613#! DE-MUS-385613 Dorfmuseum Kienberg +http://lobid.org/organisations/DE-MUS-385717#! DE-MUS-385717 Gerätesammlung Koch Königsberg +http://lobid.org/organisations/DE-MUS-386616#! DE-MUS-386616 Heimatmuseum Merkendorf +http://lobid.org/organisations/DE-MUS-387713#! DE-MUS-387713 Historisches Straßenbahndepot St. Peter +http://lobid.org/organisations/DE-MUS-387817#! DE-MUS-387817 Memorium Nürnberger Prozesse +http://lobid.org/organisations/DE-MUS-389511#! DE-MUS-389511 Kunstsammlungen der Veste Coburg - Europäisches Museum für Modernes Glas +http://lobid.org/organisations/DE-MUS-389615#! DE-MUS-389615 Heimatmuseum Röhrnbach-Kaltenbach +http://lobid.org/organisations/DE-MUS-390214#! DE-MUS-390214 Saazer Heimatmuseum +http://lobid.org/organisations/DE-MUS-391113#! DE-MUS-391113 ""Fundreich Thalmässing"" - Archäologisches Museum +http://lobid.org/organisations/DE-MUS-396212#! DE-MUS-396212 Heimathaus Ense-Bremen +http://lobid.org/organisations/DE-MUS-396316#! DE-MUS-396316 Nautisch-Technisches-Museumsschiff ""Feuerschiff Elbe 1"" +http://lobid.org/organisations/DE-MUS-396618#! DE-MUS-396618 Heimatmuseum Garbsen +http://lobid.org/organisations/DE-MUS-396816#! DE-MUS-396816 Mühlenmuseum Haren +http://lobid.org/organisations/DE-MUS-397111#! DE-MUS-397111 Stiftung Kunststätte Johann u. Jutta Bossard +http://lobid.org/organisations/DE-MUS-397819#! DE-MUS-397819 Stadthistorisches Museum+Salz- u. Kali-Bergbaumuseum +http://lobid.org/organisations/DE-MUS-398218#! DE-MUS-398218 Museumsmühle Hasbergen +http://lobid.org/organisations/DE-MUS-401314#! DE-MUS-401314 NS-Dokumentationszentrum der Stadt Köln +http://lobid.org/organisations/DE-MUS-402817#! DE-MUS-402817 Dorfmuseum Brodersby +http://lobid.org/organisations/DE-MUS-403310#! DE-MUS-403310 Preetzer Holzschuhmuseum +http://lobid.org/organisations/DE-MUS-403810#! DE-MUS-403810 Stadtmuseum Wedel +http://lobid.org/organisations/DE-MUS-404115#! DE-MUS-404115 Radio-Museum +http://lobid.org/organisations/DE-MUS-405410#! DE-MUS-405410 Heimatmuseum Oedt +http://lobid.org/organisations/DE-MUS-406017#! DE-MUS-406017 Heimatstube Drabenderhöhe +http://lobid.org/organisations/DE-MUS-407010#! DE-MUS-407010 Deutsche Kinemathek - Museum für Film und Fernsehen +http://lobid.org/organisations/DE-MUS-408013#! DE-MUS-408013 Wein- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-410219#! DE-MUS-410219 Heimatmuseum Leingarten ""Altes Rathaus Schluchtern"" +http://lobid.org/organisations/DE-MUS-410313#! DE-MUS-410313 Heimatmuseum March +http://lobid.org/organisations/DE-MUS-412319#! DE-MUS-412319 Heimat- und Kleinbrennermuseum +http://lobid.org/organisations/DE-MUS-412913#! DE-MUS-412913 Feuerwehrmuseum Ravensburg +http://lobid.org/organisations/DE-MUS-414117#! DE-MUS-414117 Studentenkarzer +http://lobid.org/organisations/DE-MUS-414711#! DE-MUS-414711 Hutter-Museum Großberghofen +http://lobid.org/organisations/DE-MUS-414919#! DE-MUS-414919 Museum für Konkrete Kunst +http://lobid.org/organisations/DE-MUS-415016#! DE-MUS-415016 Niederbayerisches Archäologiemuseum Landau a. d. Isar +http://lobid.org/organisations/DE-MUS-415214#! DE-MUS-415214 Heimatmuseum Markt Weiltingen +http://lobid.org/organisations/DE-MUS-415318#! DE-MUS-415318 Heimat- und Schulmuseum +http://lobid.org/organisations/DE-MUS-415412#! DE-MUS-415412 Zeiselmair-Haus +http://lobid.org/organisations/DE-MUS-419716#! DE-MUS-419716 Priesterkate Büchen +http://lobid.org/organisations/DE-MUS-420711#! DE-MUS-420711 Hans-Kock-Stiftung +http://lobid.org/organisations/DE-MUS-422811#! DE-MUS-422811 Stiftung Nds. Gedenkstätten+Gedenkstätte in der JVA +http://lobid.org/organisations/DE-MUS-424317#! DE-MUS-424317 Schulhistorisches Kabinett +http://lobid.org/organisations/DE-MUS-425716#! DE-MUS-425716 Kreismuseum Wewelsburg+Historisches Museum des Hochstifts Paderborn +http://lobid.org/organisations/DE-MUS-426011#! DE-MUS-426011 Technisches Denkmal Tobiashammer +http://lobid.org/organisations/DE-MUS-426417#! DE-MUS-426417 Eigenbetrieb Kloster Chorin +http://lobid.org/organisations/DE-MUS-426917#! DE-MUS-426917 Hardtmuseum +http://lobid.org/organisations/DE-MUS-427712#! DE-MUS-427712 Templerhaus +http://lobid.org/organisations/DE-MUS-428017#! DE-MUS-428017 Museum Obere Saline mit Bismarck-Museum und Spielzeugwelt +http://lobid.org/organisations/DE-MUS-429010#! DE-MUS-429010 Grenzland- u. Trenckmuseum +http://lobid.org/organisations/DE-MUS-430119#! DE-MUS-430119 Hamburger Schulmuseum +http://lobid.org/organisations/DE-MUS-430713#! DE-MUS-430713 Schulmuseum und Hallenhaus +http://lobid.org/organisations/DE-MUS-431216#! DE-MUS-431216 HarzWaldHaus +http://lobid.org/organisations/DE-MUS-433014#! DE-MUS-433014 Gedenkhalle Schloß Oberhausen +http://lobid.org/organisations/DE-MUS-433514#! DE-MUS-433514 Künstlerbahnhof Ebernburg e.V. +http://lobid.org/organisations/DE-MUS-433910#! DE-MUS-433910 Feckweiler Ölmühle +http://lobid.org/organisations/DE-MUS-434913#! DE-MUS-434913 Besucherbergwerk Grube Bindweide +http://lobid.org/organisations/DE-MUS-435218#! DE-MUS-435218 Burgmuseum Montfort +http://lobid.org/organisations/DE-MUS-435916#! DE-MUS-435916 Museum der Stadt Kirchen +http://lobid.org/organisations/DE-MUS-436513#! DE-MUS-436513 Heimatmuseum Kuhardt +http://lobid.org/organisations/DE-MUS-436711#! DE-MUS-436711 Stadtmauerhäuschen, Außenstelle des Museums im Hexenturm +http://lobid.org/organisations/DE-MUS-437016#! DE-MUS-437016 Altes Rathaus, Außenstelle des Museums im Hexenturm +http://lobid.org/organisations/DE-MUS-437714#! DE-MUS-437714 Museum für Ortsgeschichte im Historischen Rathaus +http://lobid.org/organisations/DE-MUS-438613#! DE-MUS-438613 Naturparkzentrum Prümer Land +http://lobid.org/organisations/DE-MUS-438811#! DE-MUS-438811 Museum Glockengießerei Mabilon +http://lobid.org/organisations/DE-MUS-439012#! DE-MUS-439012 Museum Speicher +http://lobid.org/organisations/DE-MUS-439710#! DE-MUS-439710 Venninger Heimatmuseum +http://lobid.org/organisations/DE-MUS-441010#! DE-MUS-441010 Fachmuseum für gußeiserne Öfen +http://lobid.org/organisations/DE-MUS-441218#! DE-MUS-441218 Schulmuseum Neumark +http://lobid.org/organisations/DE-MUS-441718#! DE-MUS-441718 Stadtgalerie im Elbeforum Brunsbüttel +http://lobid.org/organisations/DE-MUS-442513#! DE-MUS-442513 Grenzmuseum 'Schifflersgrund' +http://lobid.org/organisations/DE-MUS-444811#! DE-MUS-444811 Traditionsbahnbetriebswerk Staßfurt +http://lobid.org/organisations/DE-MUS-447018#! DE-MUS-447018 Volkskundliches Museum Wilnsdorf +http://lobid.org/organisations/DE-MUS-447716#! DE-MUS-447716 Keramik-Museum Berlin +http://lobid.org/organisations/DE-MUS-448115#! DE-MUS-448115 Industrie- und Filmmuseum Wolfen (IFM) +http://lobid.org/organisations/DE-MUS-448813#! DE-MUS-448813 Heimatstube Darlingerode +http://lobid.org/organisations/DE-MUS-449212#! DE-MUS-449212 Technikmuseum 'Hugo Junkers' Dessau +http://lobid.org/organisations/DE-MUS-449514#! DE-MUS-449514 Grube Glasebach +http://lobid.org/organisations/DE-MUS-450519#! DE-MUS-450519 Museum in der Majolika-Manufaktur +http://lobid.org/organisations/DE-MUS-452411#! DE-MUS-452411 SPSG / Flatowturm +http://lobid.org/organisations/DE-MUS-452817#! DE-MUS-452817 Museum Utopie & Alltag. Alltagskultur und Kunst aus der DDR +http://lobid.org/organisations/DE-MUS-453414#! DE-MUS-453414 Heimatstube Lauchhammer-Mitte +http://lobid.org/organisations/DE-MUS-454011#! DE-MUS-454011 Alliierten Museum Outpost +http://lobid.org/organisations/DE-MUS-454615#! DE-MUS-454615 Museum Judengasse +http://lobid.org/organisations/DE-MUS-455014#! DE-MUS-455014 Heimatmuseum Rodenbach +http://lobid.org/organisations/DE-MUS-455410#! DE-MUS-455410 Museum Industriekultur Osnabrück +http://lobid.org/organisations/DE-MUS-456413#! DE-MUS-456413 Heimathof Hüll +http://lobid.org/organisations/DE-MUS-456819#! DE-MUS-456819 Heimatstube Münstedt +http://lobid.org/organisations/DE-MUS-457114#! DE-MUS-457114 Heimatstube Adenstedt +http://lobid.org/organisations/DE-MUS-457812#! DE-MUS-457812 Historisches Museum Bielefeld +http://lobid.org/organisations/DE-MUS-458117#! DE-MUS-458117 Windmühle Breberen +http://lobid.org/organisations/DE-MUS-458419#! DE-MUS-458419 Museum Zitadelle +http://lobid.org/organisations/DE-MUS-459412#! DE-MUS-459412 Historische Mühle Allenbach +http://lobid.org/organisations/DE-MUS-459818#! DE-MUS-459818 Heimatmuseum Meuselwitz +http://lobid.org/organisations/DE-MUS-461514#! DE-MUS-461514 Museum+Stiftung Automobile Welt Eisenach +http://lobid.org/organisations/DE-MUS-462611#! DE-MUS-462611 Klassik Stiftung Weimar / Schloß Belvedere +http://lobid.org/organisations/DE-MUS-463510#! DE-MUS-463510 ""Phänomenta"" - Naturwissenschaftliches Lernzentrum +http://lobid.org/organisations/DE-MUS-464211#! DE-MUS-464211 Heinrich-Lübke-Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-466811#! DE-MUS-466811 Museum Währungsreform 1948 +http://lobid.org/organisations/DE-MUS-466915#! DE-MUS-466915 Südschwäbisches Archäologie Museum +http://lobid.org/organisations/DE-MUS-467116#! DE-MUS-467116 Friedrich Eckenfelder-Galerie +http://lobid.org/organisations/DE-MUS-467210#! DE-MUS-467210 Wentzingerhaus+Museum für Stadtgeschichte +http://lobid.org/organisations/DE-MUS-469914#! DE-MUS-469914 Besucherzentrum Hans Eisenmann Haus +http://lobid.org/organisations/DE-MUS-470117#! DE-MUS-470117 Hans-Böckler-Geburtshaus +http://lobid.org/organisations/DE-MUS-471516#! DE-MUS-471516 Museum Kloster Hasungen +http://lobid.org/organisations/DE-MUS-471610#! DE-MUS-471610 Heimatstube Obermeiser +http://lobid.org/organisations/DE-MUS-472415#! DE-MUS-472415 Heimatmuseum Hüttenberg, Goethehaus Volpertshausen +http://lobid.org/organisations/DE-MUS-472519#! DE-MUS-472519 Museum im alten Brauhaus Homberg +http://lobid.org/organisations/DE-MUS-475112#! DE-MUS-475112 Burg Hagen +http://lobid.org/organisations/DE-MUS-475612#! DE-MUS-475612 Dorfmuseum Langlingen +http://lobid.org/organisations/DE-D209#! DE-D209 D 209 Museen der Stadt Dresden, Bibliothek der Technischen Sammlungen +http://lobid.org/organisations/DE-D221#! DE-D221 D 221 ESGO GmbH Energietechnik und Schaltgeräte Oppach, Zentrale Informationsstelle / Wissenschaftlich-Technische Bibliothek +http://lobid.org/organisations/DE-Db7#! DE-Db7 Db 7 Fraunhofer-Institut für Mikroelektronische Schaltungen und Systeme, Bibliothek +http://lobid.org/organisations/DE-Due5#! DE-Due5 Dü 5 Oberlandesgericht Düsseldorf, Bücherei +http://lobid.org/organisations/DE-Due19#! DE-Due19 Dü 19 Rheinische Kliniken Düsseldorf, Kliniken der Heinrich-Heine-Universität Düsseldorf, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Due57#! DE-Due57 Dü 57 Max-Planck-Institut für Eisenforschung GmbH, Bibliothek +http://lobid.org/organisations/DE-Due71#! DE-Due71 Dü 71 Theatermuseum der Landeshauptstadt Düsseldorf, Dumont-Lindemann-Archiv +http://lobid.org/organisations/DE-E3#! DE-E3 E 3 Industrie- und Handelskammer für Essen, Mülheim an der Ruhr und Oberhausen zu Essen, Bibliothek und Registratur +http://lobid.org/organisations/DE-Eb21#! DE-Eb21 Eb 21 Stadtbibliothek Eberswalde +http://lobid.org/organisations/DE-Ef27#! DE-Ef27 Ef 27 Bibliothek des Evangelischen Ministeriums im Augustinerkloster Erfurt +http://lobid.org/organisations/DE-Eh2#! DE-Eh2 Eh 2 Städtisches Krankenhaus Eisenhüttenstadt GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ei6#! DE-Ei6 Ei 6 Duale Hochschule Gera-Eisenach, Bibliothek, Campus Eisenach +http://lobid.org/organisations/DE-Em2#! DE-Em2 Em 2 Johannes a Lasco Bibliothek Große Kirche Emden +http://lobid.org/organisations/DE-F130#! DE-F130 F 130 Theologische Hochschule Reutlingen, Bibliothek +http://lobid.org/organisations/DE-F218#! DE-F218 F 218 Deutscher Turner-Bund, Archiv / Bibliothek +http://lobid.org/organisations/DE-Fb4#! DE-Fb4 Fb 4 FNE Forschungsinstitut für Nichteisen-Metalle GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Fli1#! DE-Fli1 Fli 1 Landesamt für Landwirtschaft, Umwelt und ländliche Räume des Landes Schleswig-Holstein, Bibliothek +http://lobid.org/organisations/DE-Frey1#! DE-Frey1 Frey 1 Stadtbibliothek Freyburg +http://lobid.org/organisations/DE-Gai1#! DE-Gai1 Gai 1 Stadtbibliothek Gräfenhainichen +http://lobid.org/organisations/DE-2083#! DE-2083 2083 Hochschule Geisenheim, Bibliothek +http://lobid.org/organisations/DE-Goe145#! DE-Goe145 Gö 145 Institut für Zuckerrübenforschung, Bibliothek +http://lobid.org/organisations/DE-H10#! DE-H10 H 10 Bücherhallen Hamburg, Zentralbibliothek +http://lobid.org/organisations/DE-H49#! DE-H49 H 49 Gelehrtenschule des Johanneums, Bibliotheca Johannei +http://lobid.org/organisations/DE-H199#! DE-H199 H 199 Museum für Bergedorf und die Vierlande, Bibliothek +http://lobid.org/organisations/DE-H256#! DE-H256 H 256 Führungsakademie der Bundeswehr, Fachinformationsstelle Bibliothek +http://lobid.org/organisations/DE-Ha95#! DE-Ha95 Ha 95 Landesamt für Umweltschutz Sachsen-Anhalt, Bibliothek +http://lobid.org/organisations/DE-Hag5#! DE-Hag5 Hag 5 Karl Ernst Osthaus-Museum, Bibliothek +http://lobid.org/organisations/DE-He130#! DE-He130 He 130 Hochschule für Kirchenmusik der Evangelischen Landeskirche in Baden, Bibliothek +http://lobid.org/organisations/DE-Hl1#! DE-Hl1 Hl 1 Historischer Verein für Württembergisch-Franken beim Stadtarchiv, Bibliothek +http://lobid.org/organisations/DE-Hv110#! DE-Hv110 Hv 110 Niedersächsische Staatskanzlei, Bibliothek +http://lobid.org/organisations/DE-Hv115#! DE-Hv115 Hv 115 Institut für Entwicklungsplanung und Strukturforschung GmbH an der Universität Hannover, Bibliothek +http://lobid.org/organisations/DE-Hv129#! DE-Hv129 Hv 129 ARL - Akademie für Raumentwicklung in der Leibniz-Gemeinschaft, Bibliothek +http://lobid.org/organisations/DE-J153#! DE-J153 J 153 Justizzentrum Jena, Bibliothek +http://lobid.org/organisations/DE-Ka86#! DE-Ka86 Ka 86 Dr. Willmar Schwabe GmbH & Co KG, Bibliothek +http://lobid.org/organisations/DE-Ki20#! DE-Ki20 Ki 20 Stiftung Schleswig-Holsteinische Landesmuseen Schloß Gottorf, Landesmuseum für Kunst- und Kulturgeschichte, Bibliothek +http://lobid.org/organisations/DE-Ki57#! DE-Ki57 Ki 57 Stiftung Schleswig-Holsteinische Landesmuseen Schloß Gottorf, Archäologisches Landesmuseum, Bibliothek +http://lobid.org/organisations/DE-Ki128#! DE-Ki128 Ki 128 IPN - Leibniz-Institut für die Pädagogik der Naturwissenschaften und Mathematik an der Universität Kiel, Bibliothek +http://lobid.org/organisations/DE-Kn55#! DE-Kn55 Kn 55 AGP-Fachbücherei der Arbeitsgemeinschaft Partnerschaft in der Wirtschaft e.V. +http://lobid.org/organisations/DE-Kn176#! DE-Kn176 Kn 176 Deutsche Welle, radio und tv international, Archive, Bibliothek, Dokumentation +http://lobid.org/organisations/DE-Ko1#! DE-Ko1 Ko 1 Stadt- und Kreisbibliothek Klötze +http://lobid.org/organisations/DE-Kob6#! DE-Kob6 Kob 6 Zentrum Innere Führung, Bibliothek und Fachinformationsstelle +http://lobid.org/organisations/DE-Kow1#! DE-Kow1 Kow 1 Bibliothek Heimatverein Siebengebirge e.V. +http://lobid.org/organisations/DE-L297#! DE-L297 L 297 Burg Mildenstein, Museum, Bibliothek +http://lobid.org/organisations/DE-L302#! DE-L302 L 302 Schaudt Mikrosa GmbH, Bibliothek +http://lobid.org/organisations/DE-Lbn3#! DE-Lbn3 Lbn 3 Stadtbibliothek Lübben +http://lobid.org/organisations/DE-Li2#! DE-Li2 Li 2 Diözesanbibliothek Limburg +http://lobid.org/organisations/DE-Loe3#! DE-Loe3 Lö 3 Bibliothek Löbau +http://lobid.org/organisations/DE-Lue12#! DE-Lue12 Lü 12 Musikhochschule Lübeck, Bibliothek +http://lobid.org/organisations/DE-Lue13#! DE-Lue13 Lü 13 Archiv der Hansestadt Lübeck, Handbibliothek +http://lobid.org/organisations/DE-Luen2#! DE-Luen2 Lün 2 Naturwissenschaftlicher Verein für das Fürstentum Lüneburg von 1851 e.V., Bibliothek +http://lobid.org/organisations/DE-M21#! DE-M21 M 21 Staatliche Münzsammlung, Bibliothek +http://lobid.org/organisations/DE-M26#! DE-M26 M 26 Bayerisches Landessozialgericht, Bibliothek +http://lobid.org/organisations/DE-M32#! DE-M32 M 32 Förderzentrum Förderschwerpunkt Hören, Lehrerbibliothek +http://lobid.org/organisations/DE-M111#! DE-M111 M 111 Metropolitankapitel München und Archiv des Erzbistums München und Freising (AEM), Bibliothek +http://lobid.org/organisations/DE-M136#! DE-M136 M 136 Deutsche Esperanto-Bibliothek +http://lobid.org/organisations/DE-M154#! DE-M154 M 154 Bayerisches Landesamt für Steuern, Dienststelle München, Bücherei-Land +http://lobid.org/organisations/DE-M465#! DE-M465 M 465 A D A C Bibliothek, Allgemeiner Deutscher Automobil-Club e.V., Zentrale +http://lobid.org/organisations/DE-Mei13#! DE-Mei13 Mei 13 Stadtbibliothek Meißen +http://lobid.org/organisations/DE-Mer12#! DE-Mer12 Mer 12 Stadtbibliothek 'Walter Bauer' +http://lobid.org/organisations/DE-Met1#! DE-Met1 Met 1 Benediktinerabtei Metten, Bibliothek +http://lobid.org/organisations/DE-Mst1#! DE-Mst1 Mst 1 Bibliothek der Abtei Münsterschwarzach +http://lobid.org/organisations/DE-Mue200#! DE-Mue200 Mü 200 Historische Kommission für Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue300#! DE-Mue300 Mü 300 Comenius-Institut, Evangelische Arbeitsstätte für Erziehungswissenschaft e.V., Bibliothek +http://lobid.org/organisations/DE-Mue302#! DE-Mue302 Mü 302 Historischer Verein für Ermland e.V., Bibliothek +http://lobid.org/organisations/DE-N31#! DE-N31 N 31 Deutsche Bahn Stiftung gGmbH, DB Museum, Bibliothek +http://lobid.org/organisations/DE-N36#! DE-N36 N 36 Naturhistorische Gesellschaft Nürnberg e.V., Bibliothek +http://lobid.org/organisations/DE-Net1#! DE-Net1 Net 1 Bibliothek des ehemaligen Birgittenklosters Kaldenkirchen +http://lobid.org/organisations/DE-Of2#! DE-Of2 Of 2 Klingspor-Museum, Bibliothek und Archiv +http://lobid.org/organisations/DE-Old2#! DE-Old2 Old 2 Stadtbibliothek Oldenburg +http://lobid.org/organisations/DE-Os2#! DE-Os2 Os 2 Niedersächsisches Landesarchiv, Standort Osnabrück, Dienstbibliothek +http://lobid.org/organisations/DE-Q9#! DE-Q9 Q 9 Städtische Museen Quedlinburg, Historische Bibliothek +http://lobid.org/organisations/DE-727#! DE-727 727 Kreisergänzungsbücherei im Gymnasium Rinteln +http://lobid.org/organisations/DE-Rt3#! DE-Rt3 Rt 3 Ev. Hochschul- und Zentralbibliothek Württemberg, Standort Ludwigsburg +http://lobid.org/organisations/DE-Sal2#! DE-Sal2 Sal 2 Bundesamt für Strahlenschutz, Zentralbibliothek +http://lobid.org/organisations/DE-Schl2#! DE-Schl2 Schl 2 Schleswig-Holsteinisches Oberlandesgericht, Bibliothek +http://lobid.org/organisations/DE-Sho3#! DE-Sho3 Sho 3 Stadtbibliothek Schönebeck +http://lobid.org/organisations/DE-Sta1#! DE-Sta1 Sta 1 Stader Geschichts- und Heimatverein, Bibliothek +http://lobid.org/organisations/DE-Stg90#! DE-Stg90 Stg 90 Landesarchiv Baden-Württemberg - Hauptstaatsarchiv Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Stg259#! DE-Stg259 Stg 259 Duale Hochschule Baden-Württemberg Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Tar1#! DE-Tar1 Tar 1 Schul- und Samtgemeindebücherei +http://lobid.org/organisations/DE-Tr13#! DE-Tr13 Tr 13 Zentrale Landgerichtsbibliothek +http://lobid.org/organisations/DE-Ver1#! DE-Ver1 Ver 1 Bibliothek Verl +http://lobid.org/organisations/DE-Vln1#! DE-Vln1 Vln 1 Bibliothek Landsberg-Velen +http://lobid.org/organisations/DE-Vol1#! DE-Vol1 Vol 1 Max-Planck-Institut für Pflanzenzüchtungsforschung, Bibliothek +http://lobid.org/organisations/DE-Wg2#! DE-Wg2 Wg 2 Gymnasium Philippinum, Bibliothek +http://lobid.org/organisations/DE-Wit1#! DE-Wit1 Wit 1 Verein für Orts- und Heimatkunde in der Grafschaft Mark, Bibliothek +http://lobid.org/organisations/DE-Wm1#! DE-Wm1 Wm 1 Stadtbibliothek Wolmirstedt +http://lobid.org/organisations/DE-Wol4#! DE-Wol4 Wol 4 Stadtbibliothek Bitterfeld-Wolfen +http://lobid.org/organisations/DE-Wrl1#! DE-Wrl1 Wrl 1 Probstei St. Walburga, Probsteibibliothek und Sammlung Heese +http://lobid.org/organisations/DE-Wur3#! DE-Wur3 Wur 3 Stadtbibliothek Wurzen +http://lobid.org/organisations/DE-Ww3#! DE-Ww3 Ww 3 Kreiskrankenhaus Weißwasser, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Zsp1#! DE-Zsp1 Zsp 1 Stadtbibliothek ""Jacob Georg Bodemer"" +http://lobid.org/organisations/DE-L322#! DE-L322 L 322 Max-Planck-Institut für Kognitions- und Neurowissenschaften, Bibliothek +http://lobid.org/organisations/DE-18-300#! DE-18-300 18/300 Fachhochschule für Öffentliche Verwaltung, Fachbereich Finanzen und Landesfinanzschule Hamburg, Bibliothek +http://lobid.org/organisations/DE-N26#! DE-N26 N 26 Landeskirchliches Archiv der Evangelisch-Lutherischen Kirche in Bayern, Bibliothek +http://lobid.org/organisations/DE-17-1#! DE-17-1 17/1 TU Darmstadt, Universitäts- und Landesbibliothek - Schloss +http://lobid.org/organisations/DE-82-333#! DE-82-333 82/333 Lehr- und Forschungsgebiet Laser-Messverfahren in der Thermofluiddynamik, Bibliothek +http://lobid.org/organisations/DE-L323#! DE-L323 L 323 Max-Planck-Institut für Mathematik in den Naturwissenschaften, Bibliothek +http://lobid.org/organisations/DE-Jor1#! DE-Jor1 Jor 1 ESTEBURG - Obstbauzentrum Jork, Obstbau-Bibliothek Dr. Tiemann +http://lobid.org/organisations/DE-1052#! DE-1052 1052 Evangelische Hochschule Nürnberg, Bibliothek +http://lobid.org/organisations/DE-578-2#! DE-578-2 578/2 Charité - Universitätsmedizin Berlin, Medizinische Bibliothek, Campus Charité Mitte (CCM) +http://lobid.org/organisations/DE-Bi10#! DE-Bi10 Bi 10 Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek +http://lobid.org/organisations/DE-743#! DE-743 743 Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien +http://lobid.org/organisations/DE-578-3#! DE-578-3 578/3 Charité - Universitätsmedizin Berlin, Medizinische Bibliothek, Campus Virchow-Klinikum +http://lobid.org/organisations/DE-1114#! DE-1114 1114 Ökumenische Stadtbücherei Betzdorf +http://lobid.org/organisations/DE-1115#! DE-1115 1115 Stadtbibliothek 'Alter Bahnhof' +http://lobid.org/organisations/DE-Kon7#! DE-Kon7 Kon 7 Dr.-Erich-Bloch-und-Lebenheim-Bibliothek (Judaica) der Israelitischen Kultusgemeinde Konstanz +http://lobid.org/organisations/DE-1121#! DE-1121 1121 Gemeindebücherei Ganderkesee +http://lobid.org/organisations/DE-1122#! DE-1122 1122 Mediathek Ingelheim +http://lobid.org/organisations/DE-Sa21#! DE-Sa21 Sa 21 Saarländischer Rundfunk, Bibliothek +http://lobid.org/organisations/DE-1117#! DE-1117 1117 Hochschule Worms, Hochschulbibliothek +http://lobid.org/organisations/DE-Sa22#! DE-Sa22 Sa 22 Stadtarchiv Saarbrücken +http://lobid.org/organisations/DE-51#! DE-51 51 Lippische Landesbibliothek - Theologische Bibliothek und Mediothek +http://lobid.org/organisations/DE-M36b#! DE-M36b M 36b Münchner Stadtbibliothek, Musikbibliothek +http://lobid.org/organisations/DE-H361#! DE-H361 H 361 Philatelistische Bibliothek Hamburg e.V. +http://lobid.org/organisations/DE-Neud2#! DE-Neud2 Neud 2 Mission EineWelt, Referat Mission Interkulturell, Bibliothek +http://lobid.org/organisations/DE-Sie5#! DE-Sie5 Sie 5 Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises +http://lobid.org/organisations/DE-Ess4#! DE-Ess4 Ess 4 Stadtarchiv Esslingen, Bibliothek +http://lobid.org/organisations/DE-Stg270#! DE-Stg270 Stg 270 Arbeitsgericht Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Bo408#! DE-Bo408 Bo 408 Max-Planck-Institut für Neurobiologie des Verhaltens – caesar, Bibliothek +http://lobid.org/organisations/DE-1136#! DE-1136 1136 Gemeindebibliothek Hoppegarten +http://lobid.org/organisations/DE-576#! DE-576 576 Bibliotheksservice-Zentrum Baden-Württemberg (BSZ) +http://lobid.org/organisations/DE-Reck1#! DE-Reck1 Reck 1 Gymnasium Petrinum, Alte Lehrerbibliothek +http://lobid.org/organisations/DE-B1543#! DE-B1543 B 1543 Wissenschaftszentrum Berlin für Sozialforschung, Wissenschaftliche Information - Bibliothek +http://lobid.org/organisations/DE-Bm55#! DE-Bm55 Bm 55 ausZeiten - Bildung, Information, Forschung und Kommunikation für Frauen e.V., Bibliothek +http://lobid.org/organisations/DE-B196#! DE-B196 B 196 Bundesanstalt für Finanzdienstleistungsaufsicht (BaFin), Bibliothek +http://lobid.org/organisations/DE-B1509#! DE-B1509 B 1509 Bundesinstitut für Berufsbildung, Bibliothek +http://lobid.org/organisations/DE-B1544#! DE-B1544 B 1544 Spinnboden - Lesbenarchiv und Bibliothek +http://lobid.org/organisations/DE-26-138#! DE-26-138 26/138 Universität Gießen, Zweigbibliothek Natur- und Lebenswissenschaften / Strahlenschutz +http://lobid.org/organisations/DE-Mue303#! DE-Mue303 Mü 303 D.I.W.A. Frauenforschungsstelle Münster e. V., Bibliothek +http://lobid.org/organisations/DE-Haar1#! DE-Haar1 Haar 1 Isar-Amper-Klinikum, Klinikum München-Ost, Bibliothek +http://lobid.org/organisations/DE-82-521#! DE-82-521 82/521 Integrierte Systeme der Signalverarbeitung, Bibliothek +http://lobid.org/organisations/DE-Veh1#! DE-Veh1 Veh 1 Bayerische Landesanstalt für Weinbau und Gartenbau (LWG), Bibliothek +http://lobid.org/organisations/DE-17-134#! DE-17-134 17/134 TU Darmstadt, Europäisches Dokumentationszentrum (EDZ) +http://lobid.org/organisations/DE-576-1#! DE-576-1 576/1 Bibliotheksservice-Zentrum Baden-Württemberg, Standort Stuttgart, Zentralkatalog +http://lobid.org/organisations/DE-Loer3#! DE-Loer3 Lör 3 Dreiländermuseum - Musée des Trois Pays, Bibliothek +http://lobid.org/organisations/DE-82-721#! DE-82-721 82/721 Palliativmedizin, Bibliothek +http://lobid.org/organisations/DE-82-704a#! DE-82-704a 82/704a Medizinische Immunologie, Bibliothek +http://lobid.org/organisations/DE-82-735a#! DE-82-735a 82/735a Phoniatrie und Pädaudiologie, Bibliothek +http://lobid.org/organisations/DE-1146#! DE-1146 1146 Öffentliche Bücherei St. Martinus Stommeln +http://lobid.org/organisations/DE-1149#! DE-1149 1149 Stadtbibliothek Hückeswagen +http://lobid.org/organisations/DE-Ki130#! DE-Ki130 Ki 130 Helmholtz-Zentrum für Ozeanforschung Kiel (GEOMAR), Bibliothek Ostufer +http://lobid.org/organisations/DE-1049#! DE-1049 1049 Hochschule für angewandte Wissenschaften Neu-Ulm, Hochschulbibliothek +http://lobid.org/organisations/DE-1150#! DE-1150 1150 Stadtbücherei Bergneustadt +http://lobid.org/organisations/DE-1152#! DE-1152 1152 Stadtbücherei Rottweil +http://lobid.org/organisations/DE-38-503#! DE-38-503 38/503 Gemeinsame Fachbibliothek Biologie +http://lobid.org/organisations/DE-B1549#! DE-B1549 B 1549 Stiftung Topographie des Terrors, Bibliothek +http://lobid.org/organisations/DE-1158#! DE-1158 1158 Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern, Bibliothek +http://lobid.org/organisations/DE-Rem5#! DE-Rem5 Rem 5 Deutsches Röntgenmuseum, Bibliothek +http://lobid.org/organisations/DE-579#! DE-579 579 Jacobs University Bremen gGmbH, IRC-Library +http://lobid.org/organisations/DE-1170#! DE-1170 1170 Stadtbücherei Sulingen +http://lobid.org/organisations/DE-1184#! DE-1184 1184 Stadtbücherei Schneverdingen +http://lobid.org/organisations/DE-1189#! DE-1189 1189 Gemeindebücherei Drochtersen +http://lobid.org/organisations/DE-1190#! DE-1190 1190 Schulzentrum Barsinghausen, Bibliothek +http://lobid.org/organisations/DE-1194#! DE-1194 1194 Gemeindebücherei Delligsen +http://lobid.org/organisations/DE-1196#! DE-1196 1196 Nicolas Born Bibliothek +http://lobid.org/organisations/DE-1199#! DE-1199 1199 Stadtbibliothek Norden Im Vossenhus +http://lobid.org/organisations/DE-1205#! DE-1205 1205 Stadtbücherei Barsinghausen +http://lobid.org/organisations/DE-1208#! DE-1208 1208 Stadtbibliothek Bad Sachsa +http://lobid.org/organisations/DE-1209#! DE-1209 1209 Gemeindebücherei Bad Essen +http://lobid.org/organisations/DE-1210#! DE-1210 1210 Stadtbibliothek Schulzentrum Sieglar +http://lobid.org/organisations/DE-Rtw2#! DE-Rtw2 Rtw 2 Seminar für Ausbildung und Fortbildung der Lehrkräfte Rottweil (Gymnasium), Bibliothek +http://lobid.org/organisations/DE-1214#! DE-1214 1214 Stadtbücherei Tönisvorst +http://lobid.org/organisations/DE-B1564#! DE-B1564 B 1564 Institut Kirche und Judentum, Bibliothek +http://lobid.org/organisations/DE-1221#! DE-1221 1221 Stadtbibliothek Ronneburg +http://lobid.org/organisations/DE-Bb24#! DE-Bb24 Bb 24 Metropolitankapitel Bamberg, Bibliothek +http://lobid.org/organisations/DE-1224#! DE-1224 1224 Stadtbücherei Alfeld +http://lobid.org/organisations/DE-M411#! DE-M411 M 411 Bibliothek der Max-Planck-Institute Martinsried +http://lobid.org/organisations/DE-1227#! DE-1227 1227 Stadt- und Gymnasialbibliothek Ruhla +http://lobid.org/organisations/DE-1229#! DE-1229 1229 Stadtbibliothek Weil am Rhein +http://lobid.org/organisations/DE-1231#! DE-1231 1231 Stadtbücherei Trossingen +http://lobid.org/organisations/DE-Hb3#! DE-Hb3 Hb 3 Arbeitsgericht Heilbronn, Bibliothek +http://lobid.org/organisations/DE-1237#! DE-1237 1237 Bibliothek der Stadt Ilmenau +http://lobid.org/organisations/DE-26-028#! DE-26-028 26/028 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 8, Personalmanagement +http://lobid.org/organisations/AT-PARL#! AT-PARL AT-PARL Parlamentsdirektion, Parlamentsbibliothek +http://lobid.org/organisations/AT-HGMW#! AT-HGMW AT-HGMW Heeresgeschichtliches Museum, Bibliothek +http://lobid.org/organisations/AT-OeNB#! AT-OeNB AT-ÖNB Österreichische Nationalbibliothek +http://lobid.org/organisations/AT-OOeLB#! AT-OOeLB AT-OÖLB Oberösterreichische Landesbibliothek +http://lobid.org/organisations/AT-UBS-HB#! AT-UBS-HB AT-UBS-HB Universität Salzburg, Hauptbibliothek +http://lobid.org/organisations/AT-UBG-HB#! AT-UBG-HB AT-UBG-HB Universität Graz, Hauptbibliothek +http://lobid.org/organisations/AT-UBTUG-HB#! AT-UBTUG-HB AT-UBTUG-HB Technische Universität Graz, Hauptbibliothek +http://lobid.org/organisations/AT-UBMG-HB#! AT-UBMG-HB AT-UBMG-HB Universität für Musik und darstellende Kunst Graz, Universitätsbibliothek +http://lobid.org/organisations/AT-NMW-Z#! AT-NMW-Z AT-NMW-Z Naturhistorisches Museum Wien, Zoologische Hauptbibliothek +http://lobid.org/organisations/AT-OeAW-BA#! AT-OeAW-BA AT-ÖAW Österreichische Akademie der Wissenschaften, Bibliothek, Archiv, Sammlungen: Information & Service (BAS:IS) +http://lobid.org/organisations/AT-LMO-BIB#! AT-LMO-BIB AT-LMO Oberösterreichische Landesmuseen, Bibliothek +http://lobid.org/organisations/AT-LAT#! AT-LAT AT-LAT Tiroler Landesarchiv +http://lobid.org/organisations/AT-IHS#! AT-IHS AT-IHS Institut für Höhere Studien - Institute for Advanced Studies (IHS), Bibliothek +http://lobid.org/organisations/AT-GDAeW#! AT-GDAeW AT-GDÄW Gesellschaft der Ärzte in Wien, Bibliothek +http://lobid.org/organisations/DE-B11h#! DE-B11h B 11h Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Gemäldegalerie, Bibliothek +http://lobid.org/organisations/DE-Aug7#! DE-Aug7 Aug 7 Bayerisches Landesamt für Umwelt, Bibliothek Augsburg +http://lobid.org/organisations/DE-Bb22#! DE-Bb22 Bb 22 Oberlandesgericht Bamberg, Bibliothek +http://lobid.org/organisations/DE-M56#! DE-M56 M 56 Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat, Bibliothek +http://lobid.org/organisations/DE-M113#! DE-M113 M 113 Deutsches Theatermuseum, früher Clara-Ziegler-Stiftung, Theaterbibliothek +http://lobid.org/organisations/DE-M468#! DE-M468 M 468 Hochschule für Philosophie, Bibliothek +http://lobid.org/organisations/DE-M491#! DE-M491 M 491 Deutsches Archäologisches Institut, Kommission für Alte Geschichte und Epigraphik, Bibliothek +http://lobid.org/organisations/DE-M7#! DE-M7 M 7 Bayerische Botanische Gesellschaft, Bibliothek +http://lobid.org/organisations/DE-M341#! DE-M341 M 341 Bayerische Staatsgemäldesammlungen, Bibliothek +http://lobid.org/organisations/DE-30-3#! DE-30-3 30/3 Universitätsbibliothek J. C. Senckenberg, Bibliothek Naturwissenschaften (BNat) +http://lobid.org/organisations/DE-Ful3#! DE-Ful3 Ful 3 Bistumsarchiv Fulda +http://lobid.org/organisations/DE-1248#! DE-1248 1248 Stadtbibliothek Leisnig +http://lobid.org/organisations/DE-1254#! DE-1254 1254 Stadtbibliothek Nidda +http://lobid.org/organisations/DE-1255#! DE-1255 1255 Stadtbibliothek Oelsnitz/Erzgebirge +http://lobid.org/organisations/DE-Sa26#! DE-Sa26 Sa 26 Landesinstitut für Pädagogik und Medien, Bibliothek +http://lobid.org/organisations/DE-Re7#! DE-Re7 Re 7 Kunstforum Ostdeutsche Galerie Regensburg, Bibliothek +http://lobid.org/organisations/DE-Re9#! DE-Re9 Re 9 Historischer Verein für Oberpfalz und Regensburg, Bibliothek +http://lobid.org/organisations/DE-Re10#! DE-Re10 Re 10 Museen der Stadt Regensburg, Bibliothek +http://lobid.org/organisations/AT-UBTUG-FBGM#! AT-UBTUG-FBGM AT-UBTUG-FBGM Technische Universität Graz, Universitätsbibliothek, Fachbibliothek für Geodäsie und Mathematik +http://lobid.org/organisations/DE-582#! DE-582 582 Vogtländische Fachhochschule Plauen, Bibliothek +http://lobid.org/organisations/DE-H368#! DE-H368 H 368 Buko-Archiv +http://lobid.org/organisations/DE-Kon8#! DE-Kon8 Kon 8 Kemnik GmbH, Kemnik-Archiv +http://lobid.org/organisations/DE-Goe170#! DE-Goe170 Gö 170 Institut für angewandte Kulturforschung e.V., Bibliothek +http://lobid.org/organisations/DE-Wup2#! DE-Wup2 Wup 2 Informationsbüro Nicaragua e.V., Archiv +http://lobid.org/organisations/DE-1262#! DE-1262 1262 Stadtbibliothek Heidenau +http://lobid.org/organisations/DE-M502#! DE-M502 M 502 Bezirk Oberbayern, Bezirksverwaltung, Bibliothek +http://lobid.org/organisations/DE-1270#! DE-1270 1270 Stadtbibliothek ""Ulrich Plenzdorf"" Seelow +http://lobid.org/organisations/DE-1271#! DE-1271 1271 Bibliothek Neuenhagen +http://lobid.org/organisations/DE-Eg1#! DE-Eg1 Eg 1 Stadtarchiv Ebersberg +http://lobid.org/organisations/DE-Es4#! DE-Es4 Es 4 Diözesanarchiv Eichstätt, Bibliothek +http://lobid.org/organisations/DE-Gp2#! DE-Gp2 Gp 2 Marktarchiv Garmisch-Partenkirchen +http://lobid.org/organisations/DE-Mos1#! DE-Mos1 Mos 1 Stadtarchiv Moosburg a.d.Isar +http://lobid.org/organisations/DE-Nmv1#! DE-Nmv1 Nmv 1 Stadtarchiv Neumarkt-St. Veit +http://lobid.org/organisations/DE-Ntg1#! DE-Ntg1 Ntg 1 Stadtarchiv Neuötting +http://lobid.org/organisations/DE-Pbg1#! DE-Pbg1 Pbg 1 Marktarchiv Peißenberg +http://lobid.org/organisations/DE-Wel1#! DE-Wel1 Wel 1 Stadtarchiv Weilheim +http://lobid.org/organisations/DE-Ai1#! DE-Ai1 Ai 1 Stadtarchiv Aichach +http://lobid.org/organisations/DE-Ai2#! DE-Ai2 Ai 2 Mayer & Söhne Druck- und Mediengruppe GmbH & Co. KG +http://lobid.org/organisations/DE-Hch1#! DE-Hch1 Hch 1 Stadtarchiv Höchstädt a.d.Donau +http://lobid.org/organisations/DE-Ich1#! DE-Ich1 Ich 1 Stadtarchiv Ichenhausen +http://lobid.org/organisations/DE-Ilt1#! DE-Ilt1 Ilt 1 Stadtarchiv Illertissen +http://lobid.org/organisations/DE-Lgn1#! DE-Lgn1 Lgn 1 Stadtarchiv Lauingen +http://lobid.org/organisations/DE-Mad1#! DE-Mad1 Mad 1 Stadtarchiv Marktoberdorf +http://lobid.org/organisations/DE-Pfr1#! DE-Pfr1 Pfr 1 Gemeindearchiv Pfronten +http://lobid.org/organisations/DE-Ptm2#! DE-Ptm2 Ptm 2 Druckerei Schlaegel +http://lobid.org/organisations/DE-Whn1#! DE-Whn1 Whn 1 Stadtarchiv Weißenhorn +http://lobid.org/organisations/DE-Wrs1#! DE-Wrs1 Wrs 1 Stadtarchiv Bad Wörishofen +http://lobid.org/organisations/DE-Guz1#! DE-Guz1 Guz 1 Stadtarchiv Gunzenhausen +http://lobid.org/organisations/DE-1272#! DE-1272 1272 Stadtbibliothek Germersheim +http://lobid.org/organisations/DE-Ka23a#! DE-Ka23a Ka 23a Badisches Landesmuseum, Bibliothek +http://lobid.org/organisations/DE-Rob1#! DE-Rob1 Rob 1 Stadtarchiv Rothenburg o.d.T. +http://lobid.org/organisations/DE-Schb1#! DE-Schb1 Schb 1 Stadtarchiv Schwabach +http://lobid.org/organisations/DE-Wid1#! DE-Wid1 Wid 1 Stadtarchiv Bad Windsheim +http://lobid.org/organisations/DE-Abt1#! DE-Abt1 Abt 1 Marktarchiv Abtswind +http://lobid.org/organisations/DE-Am2#! DE-Am2 Am 2 Stadtarchiv Amorbach +http://lobid.org/organisations/DE-R134#! DE-R134 R 134 Marinekommando / Fachinformations- und Vorschriftenstelle (Bibliothek) +http://lobid.org/organisations/DE-Mak1#! DE-Mak1 Mak 1 Stadtarchiv Marktbreit +http://lobid.org/organisations/DE-Maf1#! DE-Maf1 Maf 1 Stadtarchiv Marktheidenfeld +http://lobid.org/organisations/DE-W92#! DE-W92 W 92 Stadtarchiv Würzburg, Bibliothek +http://lobid.org/organisations/DE-Ebm1#! DE-Ebm1 Ebm 1 Stadtarchiv Ebermannstadt +http://lobid.org/organisations/DE-Fhm1#! DE-Fhm1 Fhm 1 Stadtarchiv Forchheim +http://lobid.org/organisations/DE-Ku2#! DE-Ku2 Ku 2 Stadtarchiv Kulmbach +http://lobid.org/organisations/DE-Bog1#! DE-Bog1 Bog 1 Stadtarchiv Bogen +http://lobid.org/organisations/DE-Deg1#! DE-Deg1 Deg 1 Stadtarchiv Deggendorf +http://lobid.org/organisations/DE-Gsh1#! DE-Gsh1 Gsh 1 Stadtarchiv Geiselhöring +http://lobid.org/organisations/DE-Mpf1#! DE-Mpf1 Mpf 1 Marktarchiv Mallersdorf-Pfaffenberg +http://lobid.org/organisations/DE-Nsc1#! DE-Nsc1 Nsc 1 Stadtarchiv Neustadt +http://lobid.org/organisations/DE-Vlb2#! DE-Vlb2 Vlb 2 Archiv des Heimatvereins Vilsbiburg +http://lobid.org/organisations/DE-Wlk1#! DE-Wlk1 Wlk 1 Stadtarchiv Waldkirchen +http://lobid.org/organisations/DE-Ktz1#! DE-Ktz1 Ktz 1 Stadtarchiv Kötzting +http://lobid.org/organisations/DE-Veb1#! DE-Veb1 Veb 1 Stadtarchiv Velburg +http://lobid.org/organisations/DE-M349#! DE-M349 M 349 Handwerkskammer für München und Oberbayern, Bibliothek +http://lobid.org/organisations/DE-Sa27#! DE-Sa27 Sa 27 Stiftung Saarländischer Kulturbesitz, Bibliothek +http://lobid.org/organisations/DE-1284#! DE-1284 1284 Gemeindebibliothek Mutterstadt +http://lobid.org/organisations/DE-Brl1#! DE-Brl1 Brl 1 Max-Ernst-Gymnasium der Stadt Brühl (MEG), Bibliothek im Selbstlernzentrum +http://lobid.org/organisations/DE-M382#! DE-M382 M 382 Max-Planck-Institut für Innovation und Wettbewerb / Max-Planck-Institut für Steuerrecht und Öffentliche Finanzen, Bibliothek +http://lobid.org/organisations/DE-18-307#! DE-18-307 18/307 Martha-Muchow-Bibliothek, Fachbibliothek für Erziehungswissenschaft, Psychologie und Bewegungswissenschaft der Universität Hamburg +http://lobid.org/organisations/DE-1322#! DE-1322 1322 AMD - Akademie Mode und Design, staatlich anerkannte private Hochschule, Bibliothek +http://lobid.org/organisations/DE-1325#! DE-1325 1325 Stadtbibliothek Mittweida +http://lobid.org/organisations/DE-1327#! DE-1327 1327 Gemeindebücherei Jockgrim +http://lobid.org/organisations/DE-1328#! DE-1328 1328 Gemeindebücherei Neustadt (Wied) +http://lobid.org/organisations/DE-Stg280#! DE-Stg280 Stg 280 Akademie für gesprochenes Wort, Bibliothek +http://lobid.org/organisations/DE-B1574#! DE-B1574 B 1574 Bundeswehrkrankenhaus Berlin, Fachinformationsstelle +http://lobid.org/organisations/DE-1296#! DE-1296 1296 Kreisbibliothek Freyung +http://lobid.org/organisations/DE-1300#! DE-1300 1300 Stadtbücherei Günzburg +http://lobid.org/organisations/DE-1310#! DE-1310 1310 Bücherei Prien +http://lobid.org/organisations/DE-1316#! DE-1316 1316 Kreis- und Stadtbibliothek am Maximilian-von-Montgelas-Gymnasium Vilsbiburg +http://lobid.org/organisations/DE-1317#! DE-1317 1317 Stadtbücherei Weißenhorn +http://lobid.org/organisations/DE-100-670#! DE-100-670 100/670 Zentrale Einrichtung für Biologische und Biomedizinische Forschung mit Tierhaltung der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-82-778#! DE-82-778 82/778 Lehr- und Forschungsgebiet Zell- und Molekularbiologie an Grenzflächen, Bibliothek +http://lobid.org/organisations/DE-610#! DE-610 610 EROMM +http://lobid.org/organisations/DE-Rav1-a#! DE-Rav1-a Rav 1/a Duale Hochschule Baden-Württemberg Ravensburg, Campus Friedrichshafen, Bibliothek +http://lobid.org/organisations/DE-Stg281#! DE-Stg281 Stg 281 Württembergischer Geschichts- und Altertumsverein, Bibliothek +http://lobid.org/organisations/DE-Kn38-A#! DE-Kn38-A Kn 38/A Hochschule für Musik und Tanz Köln, Standort Aachen, Bibliothek +http://lobid.org/organisations/DE-1352#! DE-1352 1352 Stadtbibliothek Steinbach-Hallenberg +http://lobid.org/organisations/DE-1358#! DE-1358 1358 Bibliothek Gerstungen +http://lobid.org/organisations/DE-1401#! DE-1401 1401 Kreis- und Heimatbücherei Aichach +http://lobid.org/organisations/DE-1406#! DE-1406 1406 Stadtbücherei Buchloe +http://lobid.org/organisations/DE-1408#! DE-1408 1408 Stadtbücherei Dillingen/Donau +http://lobid.org/organisations/DE-1409#! DE-1409 1409 Gemeindebücherei Emmering +http://lobid.org/organisations/DE-1421#! DE-1421 1421 Gemeindebibliothek Ismaning +http://lobid.org/organisations/DE-1430#! DE-1430 1430 Gemeinde- und Schulbibliothek Oberhaching +http://lobid.org/organisations/DE-1431#! DE-1431 1431 Stadtbücherei Ochsenfurt +http://lobid.org/organisations/DE-1445#! DE-1445 1445 Stadtbücherei Tirschenreuth +http://lobid.org/organisations/DE-1454#! DE-1454 1454 Landschulheim Schloss Ising, Bibliothek +http://lobid.org/organisations/DE-1455#! DE-1455 1455 Gemeindebücherei Eggstätt +http://lobid.org/organisations/DE-93-222#! DE-93-222 93/222 Institut für Systemtheorie und Regelungstechnik, Bibliothek +http://lobid.org/organisations/DE-1462#! DE-1462 1462 Stadtbücherei Pfaffenhofen a.d. Ilm +http://lobid.org/organisations/DE-1792#! DE-1792 1792 Katholische Öffentliche Bücherei Zeuzleben Werneck +http://lobid.org/organisations/DE-1791#! DE-1791 1791 Katholische Öffentliche Bücherei Unterpleichfeld +http://lobid.org/organisations/DE-1790#! DE-1790 1790 Bücherei im Gemeinde- und Pfarrzentrum Stockheim +http://lobid.org/organisations/DE-1788#! DE-1788 1788 Katholische Öffentliche Bücherei Sailauf +http://lobid.org/organisations/DE-1470#! DE-1470 1470 Stadtbücherei Bad Kötzting +http://lobid.org/organisations/DE-1479#! DE-1479 1479 Stadtbücherei Heilsbronn +http://lobid.org/organisations/DE-1482#! DE-1482 1482 Gemeindebücherei Neuendettelsau +http://lobid.org/organisations/DE-1485#! DE-1485 1485 Kreisbücherei Scheinfeld +http://lobid.org/organisations/DE-1486#! DE-1486 1486 Stadtbücherei Stein +http://lobid.org/organisations/DE-1488#! DE-1488 1488 Stadtbücherei Bad Kissingen +http://lobid.org/organisations/DE-1489#! DE-1489 1489 Gemeindebücherei Grafenrheinfeld +http://lobid.org/organisations/DE-1496#! DE-1496 1496 Gemeindebücherei Niederwerrn +http://lobid.org/organisations/DE-1501#! DE-1501 1501 Jugendbücherei Nersingen +http://lobid.org/organisations/DE-1508#! DE-1508 1508 Gemeindebücherei Altmannstein +http://lobid.org/organisations/DE-1784#! DE-1784 1784 Stadtbücherei Obernburg +http://lobid.org/organisations/DE-1782#! DE-1782 1782 Katholische Öffentliche Bücherei Hessenthal +http://lobid.org/organisations/DE-1777#! DE-1777 1777 Katholische Öffentliche Bücherei Wolfsmünster +http://lobid.org/organisations/DE-1775#! DE-1775 1775 Katholische Öffentliche Bücherei Gochsheim +http://lobid.org/organisations/DE-1771#! DE-1771 1771 Katholische Öffentliche Bücherei Dörrmorsbach +http://lobid.org/organisations/DE-1759#! DE-1759 1759 Gemeindebücherei Schöllnach +http://lobid.org/organisations/DE-1758#! DE-1758 1758 Gemeindebücherei Simbach +http://lobid.org/organisations/DE-1751#! DE-1751 1751 Gemeindebücherei Lalling +http://lobid.org/organisations/DE-1739#! DE-1739 1739 Gemeindebücherei Markt Indersdorf +http://lobid.org/organisations/DE-1737#! DE-1737 1737 Katholische Öffentliche Bücherei Kirchanschoering +http://lobid.org/organisations/DE-1732#! DE-1732 1732 Gemeindebücherei Gars +http://lobid.org/organisations/DE-1727#! DE-1727 1727 Katholische Öffentliche Bücherei Fridolfing +http://lobid.org/organisations/DE-1720#! DE-1720 1720 Stadtbücherei Bad Reichenhall, St. Nikolaus +http://lobid.org/organisations/DE-1717#! DE-1717 1717 Öffentliche Bücherei Gaimersheim +http://lobid.org/organisations/DE-1716#! DE-1716 1716 Gemeinde- und Pfarrbücherei Memmelsdorf +http://lobid.org/organisations/DE-1703#! DE-1703 1703 Stadtbücherei Friedberg +http://lobid.org/organisations/DE-1698#! DE-1698 1698 Gemeindebücherei Dinkelscherben +http://lobid.org/organisations/DE-1519#! DE-1519 1519 Gemeindebücherei Donaustauf +http://lobid.org/organisations/DE-1560#! DE-1560 1560 Patientenbibliothek am Klinikum Main-Spessart +http://lobid.org/organisations/DE-1680#! DE-1680 1680 Stadtbücherei Regen +http://lobid.org/organisations/DE-1675#! DE-1675 1675 Katholische Öffentliche Bücherei Haselbach - St. Stefan +http://lobid.org/organisations/DE-1528#! DE-1528 1528 Bücherei im alten Rathaus +http://lobid.org/organisations/DE-Kis2#! DE-Kis2 Kis 2 Kissinger Verlagsgesellschaft +http://lobid.org/organisations/DE-1540#! DE-1540 1540 Gemeindebücherei Herrsching +http://lobid.org/organisations/DE-1656#! DE-1656 1656 Katholische Öffentliche Bücherei Markt Oberthulba +http://lobid.org/organisations/DE-1652#! DE-1652 1652 Katholische Öffentliche Bücherei Unterroth +http://lobid.org/organisations/DE-1650#! DE-1650 1650 Katholische Öffentliche Bücherei Steindorf +http://lobid.org/organisations/DE-1649#! DE-1649 1649 Öffentliche Bücherei Obergünzburg +http://lobid.org/organisations/DE-1646#! DE-1646 1646 Gemeindebücherei Diedorf +http://lobid.org/organisations/DE-1645#! DE-1645 1645 Katholische Öffentliche Bücherei Don Bosco +http://lobid.org/organisations/DE-1635#! DE-1635 1635 Gemeindebücherei Marquartstein +http://lobid.org/organisations/DE-1631#! DE-1631 1631 Diözesanbücherei Passau +http://lobid.org/organisations/DE-1629#! DE-1629 1629 Katholische Öffentliche Bücherei Kersbach +http://lobid.org/organisations/DE-1624#! DE-1624 1624 Liborius-Wagner-Bücherei +http://lobid.org/organisations/DE-1583#! DE-1583 1583 Katholische Öffentliche Bücherei Pflaumheim +http://lobid.org/organisations/DE-Opf1#! DE-Opf1 Opf 1 Priesterseminar Sankt Petrus, Bibliothek +http://lobid.org/organisations/DE-1606#! DE-1606 1606 Gemeindebücherei Taufkirchen +http://lobid.org/organisations/DE-1601#! DE-1601 1601 Gemeindebücherei Schwebheim +http://lobid.org/organisations/DE-1599#! DE-1599 1599 Gemeindebücherei Schirmitz +http://lobid.org/organisations/DE-1592#! DE-1592 1592 Gemeindebücherei Roßbach +http://lobid.org/organisations/DE-1584#! DE-1584 1584 Gemeindebücherei Pfronten +http://lobid.org/organisations/DE-1579#! DE-1579 1579 Stadtbibliothek Oettingen i. Bay. +http://lobid.org/organisations/DE-1576#! DE-1576 1576 Gemeindebücherei Oberammergau +http://lobid.org/organisations/DE-1570#! DE-1570 1570 St. Michaelsbund - Diözesanstelle für das Büchereiwesen im Erzbistum München und Freising +http://lobid.org/organisations/DE-1561#! DE-1561 1561 Bücherei Meitingen +http://lobid.org/organisations/DE-1554#! DE-1554 1554 Gemeindebücherei Langquaid +http://lobid.org/organisations/DE-1550#! DE-1550 1550 Gemeindebibliothek Krailling +http://lobid.org/organisations/DE-1549#! DE-1549 1549 Kreisbibliothek im Benedikt-Stattler-Gymnasium Bad Kötzting +http://lobid.org/organisations/DE-1543#! DE-1543 1543 Katholische Öffentliche Bücherei Hohenroth +http://lobid.org/organisations/DE-Bo413#! DE-Bo413 Bo 413 gymel.com - Thomas Berger +http://lobid.org/organisations/DE-Mh38#! DE-Mh38 Mh 38 Bildungszentrum der Bundeswehr, Bundesakademie, Bibliothek +http://lobid.org/organisations/DE-613#! DE-613 613 Virtueller Katalog Theologie und Kirche +http://lobid.org/organisations/DE-L328#! DE-L328 L 328 HALLE 14 - Kunstbibliothek +http://lobid.org/organisations/DE-WWW6-SPR#! DE-WWW6-SPR WWW 6/SPR Elektronische Zeitschriften / SpringerLink / Konsortium Sachsen +http://lobid.org/organisations/DE-B1577#! DE-B1577 B 1577 Museum für Kommunikation Berlin, Bibliothek +http://lobid.org/organisations/DE-Kn191#! DE-Kn191 Kn 191 Luftwaffenunterstützungsgruppe WAHN, Bibliothek und Fachinformationsstelle +http://lobid.org/organisations/DE-26-116#! DE-26-116 26/116 Universität Gießen, Universitätsbibliothek, Slavistik, Mediathek +http://lobid.org/organisations/DE-599#! DE-599 599 Arbeitsgemeinschaft der Verbundsysteme +http://lobid.org/organisations/DE-M509#! DE-M509 M 509 Studienbibliothek des Fachbereichs Archiv- und Bibliothekswesen der HföD +http://lobid.org/organisations/DE-Stg283#! DE-Stg283 Stg 283 Kunstmuseum Stuttgart, Bibliothek +http://lobid.org/organisations/DE-H372#! DE-H372 H 372 Körber-Stiftung, Archiv +http://lobid.org/organisations/DE-588#! DE-588 588 Gemeinsame Normdatei +http://lobid.org/organisations/DE-Kn41-48#! DE-Kn41-48 Kn 41/48 Deutsche Sporthochschule Köln, Unfall- und Sporttraumatologische Ambulanz, Bibliothek +http://lobid.org/organisations/DE-100-502#! DE-100-502 100/502 Forschungsstelle Glücksspiel der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-936#! DE-936 936 Katholische Stiftungshochschule München, Bibliothek München / Religionspädagogischer Bestand +http://lobid.org/organisations/DE-1376#! DE-1376 1376 Bibliothek am Markt +http://lobid.org/organisations/DE-Mb107#! DE-Mb107 Mb 107 Hessisches Landesamt für geschichtliche Landeskunde, Landesgeschichtliches Informationssystem Hessen +http://lobid.org/organisations/DE-Ake1#! DE-Ake1 Ake 1 Stadtarchiv Aken +http://lobid.org/organisations/DE-MUS-800315#! DE-MUS-800315 Are 1 Heimatmuseum Arendsee +http://lobid.org/organisations/DE-Lst1#! DE-Lst1 Lst 1 Stadtarchiv Bad Lauchstädt +http://lobid.org/organisations/DE-Bbg13#! DE-Bbg13 Bbg 13 Salzlandkreis, Kreisarchiv, Außenstelle Aschersleben +http://lobid.org/organisations/DE-D174a#! DE-D174a D 174a Institut für Sächsische Geschichte und Volkskunde, Projekt ""Sächsische Biografie"" +http://lobid.org/organisations/DE-MUS-803314#! DE-MUS-803314 Egn 1 Museum Egeln +http://lobid.org/organisations/DE-MUS-804213#! DE-MUS-804213 Gad 3 Stadtmuseum Gardelegen +http://lobid.org/organisations/DE-E15#! DE-E15 E 15 Regionalverband Ruhr, Bibliothek +http://lobid.org/organisations/DE-Het5#! DE-Het5 Het 5 Stadtarchiv Hettstedt +http://lobid.org/organisations/DE-Mer15#! DE-Mer15 Mer 15 Historisches Stadtarchiv +http://lobid.org/organisations/DE-Osh2#! DE-Osh2 Osh 2 Landkreis Börde, Kreisarchiv +http://lobid.org/organisations/DE-Ost6#! DE-Ost6 Ost 6 Stadtarchiv Osterburg +http://lobid.org/organisations/DE-Q10#! DE-Q10 Q 10 Stadtarchiv Quedlinburg +http://lobid.org/organisations/DE-Wan3#! DE-Wan3 Wan 3 Stadtarchiv Wanzleben - Börde +http://lobid.org/organisations/DE-We16#! DE-We16 We 16 Kreisarchiv Wernigerode +http://lobid.org/organisations/DE-We17#! DE-We17 We 17 Landesarchiv Sachsen-Anhalt, Abteilung Magdeburg, Standort Wernigerode +http://lobid.org/organisations/DE-MUS-812313#! DE-MUS-812313 Ze 5 Museum der Stadt Zerbst/Anhalt +http://lobid.org/organisations/DE-Gst1#! DE-Gst1 Gst 1 Heimatverein Ränzelstecher +http://lobid.org/organisations/DE-Hge1#! DE-Hge1 Hge 1 Kultur- und Heimatbund e. V. +http://lobid.org/organisations/DE-Hge2#! DE-Hge2 Hge 2 Stadtarchiv Harzgerode +http://lobid.org/organisations/DE-Co23#! DE-Co23 Co 23 Kreisarchiv Elbe-Elster +http://lobid.org/organisations/DE-MUS-888513#! DE-MUS-888513 Het 6 Mansfeld-Museum im Humboldt-Schloss +http://lobid.org/organisations/DE-Jes1#! DE-Jes1 Jes 1 Stadtarchiv Jessen +http://lobid.org/organisations/DE-Dne2#! DE-Dne2 Dne 2 Donaueschinger Bibliothek des Vereins für Geschichte und Naturgeschichte der Baar +http://lobid.org/organisations/DE-Sad1#! DE-Sad1 Sad 1 Stadtarchiv Sandau +http://lobid.org/organisations/DE-Ste10#! DE-Ste10 Ste 10 Stadtarchiv Tangermünde +http://lobid.org/organisations/DE-91S#! DE-91S 91 S Technische Universität München, Universitätsbibliothek, Teilbibliothek Straubing +http://lobid.org/organisations/DE-34-33#! DE-34-33 34/33 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Bestand Grimm-Sammlung +http://lobid.org/organisations/DE-609#! DE-609 609 Verbund der Öffentlichen Bibliotheken Berlins - VÖBB +http://lobid.org/organisations/DE-1811-WO#! DE-1811-WO 1811-WO Niedersächsisches Landesarchiv, Standort Wolfenbüttel +http://lobid.org/organisations/DE-B1585#! DE-B1585 B 1585 Senatsverwaltung für Bildung, Jugend und Familie (SenBJF), Medienforum +http://lobid.org/organisations/DE-1814#! DE-1814 1814 Stadtbücherei Herbrechtingen +http://lobid.org/organisations/DE-Ka93#! DE-Ka93 Ka 93 Karlsruher Institut für Technologie, KIT-Archiv +http://lobid.org/organisations/DE-Bba1#! DE-Bba1 Bba 1 Stadtarchiv Baden-Baden +http://lobid.org/organisations/DE-Be2#! DE-Be2 Be 2 Stadtarchiv Bensheim +http://lobid.org/organisations/DE-Bgl1#! DE-Bgl1 Bgl 1 Stadtarchiv Bergisch Gladbach +http://lobid.org/organisations/DE-Btb1#! DE-Btb1 Btb 1 Stadtarchiv Bietigheim-Bissingen +http://lobid.org/organisations/DE-Bw2#! DE-Bw2 Bw 2 Stadtverwaltung, Stadtarchiv Bischofwerda +http://lobid.org/organisations/DE-Bop1#! DE-Bop1 Bop 1 Stadtarchiv Bottrop +http://lobid.org/organisations/DE-Bs92#! DE-Bs92 Bs 92 Stadtarchiv Braunschweig +http://lobid.org/organisations/DE-Dns1#! DE-Dns1 Dns 1 Stadtarchiv Dinslaken +http://lobid.org/organisations/GB-LO/N38#! GB-LO/N38 GB-LO/N38 British Library Newspapers +http://lobid.org/organisations/DE-Dot1#! DE-Dot1 Dot 1 Stadtarchiv Dorsten +http://lobid.org/organisations/DE-Db9#! DE-Db9 Db 9 Stadtarchiv Duisburg +http://lobid.org/organisations/DE-Ef31#! DE-Ef31 Ef 31 Stadtarchiv Erfurt +http://lobid.org/organisations/DE-Ful4#! DE-Ful4 Ful 4 Stadtarchiv Fulda +http://lobid.org/organisations/DE-Ga21#! DE-Ga21 Ga 21 Stadtarchiv Gera +http://lobid.org/organisations/DE-Hrt1#! DE-Hrt1 Hrt 1 Stadtarchiv Herten +http://lobid.org/organisations/DE-Mei14#! DE-Mei14 Mei 14 Stadtarchiv Meißen +http://lobid.org/organisations/DE-1819#! DE-1819 1819 Stadtbücherei Waiblingen +http://lobid.org/organisations/DE-Ob3#! DE-Ob3 Ob 3 Stadtarchiv Oberhausen +http://lobid.org/organisations/DE-Of3#! DE-Of3 Of 3 Stadtarchiv Offenbach +http://lobid.org/organisations/DE-1821#! DE-1821 1821 Stadtbücherei Bergen +http://lobid.org/organisations/DE-Nra2#! DE-Nra2 Nra 2 Stadtarchiv Bad Neuenahr-Ahrweiler +http://lobid.org/organisations/DE-Onh1#! DE-Onh1 Onh 1 Stadtarchiv Bad Oeynhausen +http://lobid.org/organisations/DE-Mz118#! DE-Mz118 Mz 118 Karmeliterbibliothek +http://lobid.org/organisations/DE-Cri1#! DE-Cri1 Cri 1 Stadtverwaltung Crimmitschau, Stadtarchiv +http://lobid.org/organisations/DE-Ged2#! DE-Ged2 Ged 2 Stadtarchiv Geldern +http://lobid.org/organisations/DE-Wit2#! DE-Wit2 Wit 2 Stadtarchiv Witten +http://lobid.org/organisations/DE-Ghn1#! DE-Ghn1 Ghn 1 Stadtarchiv Großenhain +http://lobid.org/organisations/DE-Hid1#! DE-Hid1 Hid 1 Stadtarchiv Hilden +http://lobid.org/organisations/DE-Kah1#! DE-Kah1 Kah 1 Stadtarchiv Kahla +http://lobid.org/organisations/DE-Kam3#! DE-Kam3 Kam 3 Statistisches Landesamt des Freistaates Sachsen, Referat 14 Informationsdienste +http://lobid.org/organisations/DE-Koen2#! DE-Koen2 Kön 2 Stadtarchiv und Stadtbibliothek Königsbrück +http://lobid.org/organisations/DE-Mit2#! DE-Mit2 Mit 2 Stadtarchiv Mittweida +http://lobid.org/organisations/DE-Mb111#! DE-Mb111 Mb 111 DFG-Projekt Thenom (Thesaurus Nominum Auctorum et Mortuorum) an der Philipps-Universität Marburg, FB 06, Sozial- u. Wirtschaftsgeschichte +http://lobid.org/organisations/DE-Necu2#! DE-Necu2 Necu 2 Stadtarchiv Neckarsulm +http://lobid.org/organisations/DE-Ner2#! DE-Ner2 Ner 2 Landkreis Ostprignitz-Ruppin, Amt für Finanzen und Personal, Kreisarchiv +http://lobid.org/organisations/DE-Ots1#! DE-Ots1 Ots 1 Kreisarchiv Osterholz-Scharmbeck +http://lobid.org/organisations/DE-R135#! DE-R135 R 135 Landkreis Rostock, Kreisarchiv +http://lobid.org/organisations/DE-Bg4#! DE-Bg4 Bg 4 Kreisarchiv Steinfurt +http://lobid.org/organisations/DE-Ras2#! DE-Ras2 Ras 2 Stadtarchiv Rastatt +http://lobid.org/organisations/DE-Rhd1#! DE-Rhd1 Rhd 1 Stadtarchiv Rhede +http://lobid.org/organisations/DE-Say1#! DE-Say1 Say 1 Stadtarchiv Sayda +http://lobid.org/organisations/DE-Sph1#! DE-Sph1 Sph 1 Stadtarchiv Sprockhövel +http://lobid.org/organisations/DE-Wim24#! DE-Wim24 Wim 24 Stadtarchiv Weimar +http://lobid.org/organisations/DE-Wil7#! DE-Wil7 Wil 7 Stadtarchiv Wilhelmshaven +http://lobid.org/organisations/DE-MUS-864819#! DE-MUS-864819 Wur 4 Kulturhistorisches Museum / Ringelnatz-Sammlung +http://lobid.org/organisations/DE-Zi7#! DE-Zi7 Zi 7 Stadtarchiv Zittau +http://lobid.org/organisations/DE-Zwi18#! DE-Zwi18 Zwi 18 Stadtarchiv Zwickau +http://lobid.org/organisations/DE-Fth3#! DE-Fth3 Fth 3 Jüdisches Museum Franken, Bibliothek +http://lobid.org/organisations/DE-1827#! DE-1827 1827 Marktbücherei St. Georg Tüßling +http://lobid.org/organisations/DE-Ch106#! DE-Ch106 Ch 106 Kunstsammlungen Chemnitz, Bibliothek +http://lobid.org/organisations/DE-Nbw1#! DE-Nbw1 Nbw 1 Stadtarchiv Neunburg v.W. +http://lobid.org/organisations/DE-1834s#! DE-1834s 1834s Macromedia Library Stuttgart +http://lobid.org/organisations/DE-1834b#! DE-1834b 1834b Macromedia Library Berlin +http://lobid.org/organisations/DE-Srb3#! DE-Srb3 Srb 3 Fraunhofer UMSICHT, Institutsteil Sulzbach-Rosenberg, Bibliothek +http://lobid.org/organisations/DE-522#! DE-522 522 Technische Hochschule Brandenburg, Hochschulbibliothek +http://lobid.org/organisations/DE-1838#! DE-1838 1838 Stadtbibliothek Eschenbach +http://lobid.org/organisations/DE-1840#! DE-1840 1840 Deutsche Hochschule der Polizei, Hochschulbibliothek +http://lobid.org/organisations/DE-1841#! DE-1841 1841 Hochschule für den öffentlichen Dienst in Bayern, Fachbereich Polizei, Bibliothek +http://lobid.org/organisations/DE-25-162#! DE-25-162 25/162 Radiologische Diagnostik und Therapie, Bibliothek +http://lobid.org/organisations/DE-25-3f#! DE-25-3f 25/3f Mathematisches Institut, Bibliothek / Abteilung für Didaktik der Mathematik +http://lobid.org/organisations/DE-25-30c#! DE-25-30c 25/30c Skandinavisches Seminar, Bibliothek +http://lobid.org/organisations/DE-Frei50#! DE-Frei50 Frei 50 Hochschule für Musik Freiburg, Bibliothek +http://lobid.org/organisations/DE-Frei95#! DE-Frei95 Frei 95 Chemisches und Veterinäruntersuchungsamt Freiburg, Dienstgebäude Tierhygiene, Bibliothek +http://lobid.org/organisations/DE-25-99#! DE-25-99 25/99 Zentrum für Populäre Kultur und Musik, Bibliothek +http://lobid.org/organisations/DE-Frei112#! DE-Frei112 Frei 112 Fraunhofer-Institut für Angewandte Festkörperphysik, Bibliothek +http://lobid.org/organisations/DE-Frei131#! DE-Frei131 Frei 131 Institut für Volkskunde der Deutschen des östlichen Europa, Freiburg (IVDE), Bibliothek +http://lobid.org/organisations/DE-Frei144#! DE-Frei144 Frei 144 Rumänisches Institut, Rumänische Bibliothek, Freiburg e.V. +http://lobid.org/organisations/DE-Frei164#! DE-Frei164 Frei 164 Erzbischöfliche Bibliothek Freiburg +http://lobid.org/organisations/DE-M38#! DE-M38 M 38 Botanische Staatssammlung, Bibliothek +http://lobid.org/organisations/DE-472#! DE-472 472 Stadtbücherei Ingolstadt +http://lobid.org/organisations/DE-M4#! DE-M4 M 4 Franziskanerkloster St. Anna, Bibliothek +http://lobid.org/organisations/DE-M338#! DE-M338 M 338 Bayerischer Landesverein für Heimatpflege e.V., Präsenzbibliothek +http://lobid.org/organisations/DE-M352#! DE-M352 M 352 Institut für Zeitgeschichte München-Berlin, Bibliothek +http://lobid.org/organisations/DE-76#! DE-76 76 Fürst Thurn und Taxis Hofbibliothek +http://lobid.org/organisations/DE-W88#! DE-W88 W 88 Ostkirchliches Institut der deutschen Augustiner an der Universität Würzburg, Bibliothek +http://lobid.org/organisations/DE-384#! DE-384 384 Universitätsbibliothek Augsburg +http://lobid.org/organisations/DE-924#! DE-924 924 Wissenschaftliche Regionalbibliothek Lörrach +http://lobid.org/organisations/DE-736#! DE-736 736 Stadtbibliothek Paderborn +http://lobid.org/organisations/DE-11-97#! DE-11-97 11/97 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Campus Nord +http://lobid.org/organisations/DE-11-131#! DE-11-131 11/131 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Fremdsprachliche Philologien / Teilbibliothek Großbritannien-Zentrum +http://lobid.org/organisations/DE-B433#! DE-B433 B 433 Kunsthochschule Berlin-Weißensee, Bibliothek +http://lobid.org/organisations/DE-B531#! DE-B531 B 531 Wissenschaftliche Spezialbibliothek Physik, Paul-Drude-Institut für Festkörperelektronik (PDI) im Forschungsverbund Berlin e.V. +http://lobid.org/organisations/DE-B559#! DE-B559 B 559 Forschungszentrum Europäische Aufklärung e.V., Bibliothek +http://lobid.org/organisations/DE-B567#! DE-B567 B 567 Leibniz-Institut für Raumbezogene Sozialforschung e.V. (IRS), Bibliothek +http://lobid.org/organisations/DE-11-103#! DE-11-103 11/103 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Asien-/Afrikawissenschaften und Islamische Theologie +http://lobid.org/organisations/DE-B33#! DE-B33 B 33 Leibniz-Institut für Astrophysik Potsdam (AIP), Bibliothek +http://lobid.org/organisations/DE-B2031#! DE-B2031 B 2031 Oberhavel Kliniken GmbH / Bibliothek +http://lobid.org/organisations/DE-B2081#! DE-B2081 B 2081 IHP GmbH for High Performance Microelectronics / Leibniz-Institut für innovative Mikroelektronik, Bibliothek +http://lobid.org/organisations/DE-Gu2#! DE-Gu2 Gu 2 Naemi-Wilke-Stift, Bibliothek +http://lobid.org/organisations/DE-Mun1#! DE-Mun1 Mun 1 Leibniz-Zentrum für Agrarlandschaftsforschung (ZALF) e. V., Zentralbibliothek +http://lobid.org/organisations/DE-Or2#! DE-Or2 Or 2 Asklepios-Klinik, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Po24#! DE-Po24 Po 24 Brandenburgisches Landeshauptarchiv, Bibliothek +http://lobid.org/organisations/DE-Po66#! DE-Po66 Po 66 Klinik Ernst von Bergmann Bad Belzig gGmbH, Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-198#! DE-198 198 Regionalbibliothek Neubrandenburg +http://lobid.org/organisations/DE-Nbg3#! DE-Nbg3 Nbg 3 Asklepios Klinik Pasewalk, Medizinische Fachbibliothek und Patientenbibliothek +http://lobid.org/organisations/DE-R48#! DE-R48 R 48 Forschungsinstitut für Nutztierbiologie, Bibliothek +http://lobid.org/organisations/DE-Shw1#! DE-Shw1 Shw 1 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern, Landesarchäologie, Fachbibliothek +http://lobid.org/organisations/DE-Wa1#! DE-Wa1 Wa 1 Leibniz-Institut für Ostseeforschung Warnemünde, Bibliothek +http://lobid.org/organisations/DE-Wis2#! DE-Wis2 Wis 2 Stadtarchiv Wismar, Rats- und Museumsbibliothek +http://lobid.org/organisations/DE-Bbg8#! DE-Bbg8 Bbg 8 SALUS gGMBH, Fachklinikum, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Ha2#! DE-Ha2 Ha 2 Deutsche Akademie der Naturforscher Leopoldina, Bibliothek +http://lobid.org/organisations/DE-3-6#! DE-3-6 3/6 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Medizin-Campus +http://lobid.org/organisations/DE-3-10#! DE-3-10 3/10 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Franckeplatz +http://lobid.org/organisations/DE-Ha32#! DE-Ha32 Ha 32 Marienbibliothek +http://lobid.org/organisations/DE-Ha94#! DE-Ha94 Ha 94 Max-Planck-Institut für Mikrostrukturphysik, Bibliothek +http://lobid.org/organisations/DE-Ha101#! DE-Ha101 Ha 101 Stiftung Händel-Haus, Bibliothek +http://lobid.org/organisations/DE-Hal1#! DE-Hal1 Hal 1 AMEOS Klinikum Haldensleben, Bereich Psychiatrie, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Hal4#! DE-Hal4 Hal 4 Fachschule für Landwirtschaft Haldensleben, Bibliothek +http://lobid.org/organisations/DE-Hal6#! DE-Hal6 Hal 6 Sana Ohre-Klinikum, Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Hs7#! DE-Hs7 Hs 7 AMEOS Klinikum St. Salvator Halberstadt, Bibliothek +http://lobid.org/organisations/DE-Ma25#! DE-Ma25 Ma 25 Landesarchiv Sachsen-Anhalt +http://lobid.org/organisations/DE-Ma38#! DE-Ma38 Ma 38 Lungenklinik Lostau gGmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ma44#! DE-Ma44 Ma 44 Landesamt für Verbraucherschutz, Fachbereich 2 Hygiene, Fachbibliothek +http://lobid.org/organisations/DE-Ma45#! DE-Ma45 Ma 45 Leibniz-Institut für Neurobiologie, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ze3#! DE-Ze3 Ze 3 Helios Klinik Zerbst/Anhalt, Bibliothek +http://lobid.org/organisations/DE-14#! DE-14 14 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden +http://lobid.org/organisations/DE-106#! DE-106 106 Städtische Bibliotheken Dresden +http://lobid.org/organisations/DE-D5#! DE-D5 D 5 Senckenberg Naturhistorische Sammlungen Dresden, Fachbibliothek Zoologie +http://lobid.org/organisations/DE-D26#! DE-D26 D 26 Institut für Holztechnologie Dresden gGmbH, Bibliothek +http://lobid.org/organisations/DE-14-30#! DE-14-30 14/30 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Bauingenieurwesen / Verkehrswissenschaften +http://lobid.org/organisations/DE-D122#! DE-D122 D 122 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin, Außenstelle Dresden, Bibliothek +http://lobid.org/organisations/DE-D140#! DE-D140 D 140 Leibniz-Institut für Polymerforschung Dresden e.V., Bibliothek +http://lobid.org/organisations/DE-D143#! DE-D143 D 143 Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme IVI, Bibliothek +http://lobid.org/organisations/DE-D145#! DE-D145 D 145 Linde Engineering Dresden GmbH, Bibliothek +http://lobid.org/organisations/DE-D167#! DE-D167 D 167 Stadtarchiv Dresden, Bibliothek +http://lobid.org/organisations/DE-D170#! DE-D170 D 170 Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie, Bibliothek Klotzsche +http://lobid.org/organisations/DE-D262#! DE-D262 D 262 Stadtbibliothek Freital +http://lobid.org/organisations/DE-L229#! DE-L229 L 229 Berufsakademie Sachsen, Staatliche Studienakademie Leipzig, Bibliothek +http://lobid.org/organisations/DE-Mei1#! DE-Mei1 Mei 1 KI Keramik-Institut GmbH +http://lobid.org/organisations/DE-Ro3#! DE-Ro3 Ro 3 Klinikum Obergöltzsch Rodewisch, Medizinische Fachbibliothek/Patientenbibliothek +http://lobid.org/organisations/DE-Zwi8#! DE-Zwi8 Zwi 8 Heinrich-Braun-Klinikum Zwickau gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-27#! DE-27 27 Thüringer Universitäts- und Landesbibliothek +http://lobid.org/organisations/DE-32#! DE-32 32 Klassik Stiftung Weimar / Herzogin Anna Amalia Bibliothek +http://lobid.org/organisations/DE-Ef21#! DE-Ef21 Ef 21 Landgericht Erfurt, Bibliothek +http://lobid.org/organisations/DE-Ga7#! DE-Ga7 Ga 7 Evangelisch-methodistische Kirche OJK, Bibliothek +http://lobid.org/organisations/DE-Hol1#! DE-Hol1 Hol 1 Museum Reichenfels, Bibliothek +http://lobid.org/organisations/DE-Hr1#! DE-Hr1 Hr 1 Staatliches Berufsschulzentrum, Bibliothek +http://lobid.org/organisations/DE-Ilm1#! DE-Ilm1 Ilm 1 Universitätsbibliothek Ilmenau +http://lobid.org/organisations/DE-27-14#! DE-27-14 27/14 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Chemie +http://lobid.org/organisations/DE-27-20#! DE-27-20 27/20 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Geowissenschaften +http://lobid.org/organisations/DE-27-29#! DE-27-29 27/29 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Augenheilkunde +http://lobid.org/organisations/DE-27-30#! DE-27-30 27/30 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Philosophie +http://lobid.org/organisations/DE-27-33#! DE-27-33 27/33 Thüringer Universitäts- und Landesbibliothek, Teilbibliothek Rechtswissenschaft / Wirtschaftswissenschaften (Rechtswissenschaft) +http://lobid.org/organisations/DE-27-37#! DE-27-37 27/37 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Psychologie +http://lobid.org/organisations/DE-27-40#! DE-27-40 27/40 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Frauenheilkunde und Geburtshilfe +http://lobid.org/organisations/DE-27-47#! DE-27-47 27/47 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Geschichte der Medizin, Naturwissenschaften und Technik +http://lobid.org/organisations/DE-27-49#! DE-27-49 27/49 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Theologie +http://lobid.org/organisations/DE-27-53#! DE-27-53 27/53 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Germanistik +http://lobid.org/organisations/DE-J59#! DE-J59 J 59 Ernst-Abbe-Hochschule Jena, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-27-73#! DE-27-73 27/73 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Kinder- und Jugendmedizin 'Jussuf Ibrahim' +http://lobid.org/organisations/DE-27-76#! DE-27-76 27/76 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Medizinisch-Theoretische Institute +http://lobid.org/organisations/DE-J83#! DE-J83 J 83 Institut für Photonische Technologien e.V., Bibliothek +http://lobid.org/organisations/DE-J123#! DE-J123 J 123 Thüringer Landesamt für Landwirtschaft und Ländlichen Raum, Bibliothek +http://lobid.org/organisations/DE-J128#! DE-J128 J 128 JenaKultur Stadtmuseum, Bibliothek +http://lobid.org/organisations/DE-Shm2#! DE-Shm2 Shm 2 Hochschule Schmalkalden, Cellarius Bibliothek +http://lobid.org/organisations/DE-Sle1#! DE-Sle1 Sle 1 Naturhistorisches Museum Schloß Bertholdsburg, Bibliothek +http://lobid.org/organisations/DE-634#! DE-634 634 Brandenburgische Technische Universität Cottbus - Senftenberg, Universitätsbibliothek +http://lobid.org/organisations/DE-B11m#! DE-B11m B 11m Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Museum für Asiatische Kunst, Kunstsammlung Süd-, Südost- und Zentralasien, Bibliothek +http://lobid.org/organisations/DE-B108#! DE-B108 B 108 Physikalisch-Technische Bundesanstalt, Institut Berlin, Bibliothek +http://lobid.org/organisations/DE-830#! DE-830 830 Technische Universität Hamburg, Universitätsbibliothek +http://lobid.org/organisations/DE-B725#! DE-B725 B 725 Amt für Statistik Berlin-Brandenburg, Bibliothek +http://lobid.org/organisations/DE-291-407#! DE-291-407 291/407 Universität des Saarlandes, Campusbibliothek für Informatik und Mathematik, Fachrichtung 6.2 Informatik +http://lobid.org/organisations/DE-B2023#! DE-B2023 B 2023 Consistorium der Französischen Kirche, Hugenottenbibliothek +http://lobid.org/organisations/DE-Mh34#! DE-Mh34 Mh 34 TECHNOSEUM Landesmuseum für Technik und Arbeit, Bibliothek +http://lobid.org/organisations/DE-Kn41-8#! DE-Kn41-8 Kn 41/8 Deutsche Sporthochschule Köln, Institut für Natursport und Ökologie, Abteilung Kampfsport, Bibliothek +http://lobid.org/organisations/DE-14-14#! DE-14-14 14/14 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ZwB Maschinenwesen, Teilbibliothek Produktionstechnik und Werkzeugmaschinen) +http://lobid.org/organisations/DE-14-15#! DE-14-15 14/15 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Maschinenwesen, Teilbibliothek Papier- und Holztechnik +http://lobid.org/organisations/DE-982#! DE-982 982 Schloss Dagstuhl - Leibniz-Zentrum für Informatik, Bibliothek +http://lobid.org/organisations/DE-Kon5#! DE-Kon5 Kon 5 Heinrich-Suso-Gymnasium, Bibliothek +http://lobid.org/organisations/DE-38-623#! DE-38-623 38/623 Institut für Evangelische Theologie, Dienststelle Wilhelm-Backhaus-Straße, Bibliothek +http://lobid.org/organisations/DE-Vel1#! DE-Vel1 Vel 1 Stadtarchiv Velbert, Bibliothek +http://lobid.org/organisations/DE-Lap1#! DE-Lap1 Lap 1 Stadtarchiv Laupheim +http://lobid.org/organisations/DE-Hag6#! DE-Hag6 Hag 6 Stadtarchiv Hagen +http://lobid.org/organisations/DE-Kn41-45#! DE-Kn41-45 Kn 41/45 Deutsche Sporthochschule Köln, Institut für Sportorthopädie, Sporttraumatologie, Bibliothek +http://lobid.org/organisations/DE-Dm19#! DE-Dm19 Dm 19 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin, Bibliothek +http://lobid.org/organisations/DE-7-021#! DE-7-021 7/021 Archäologisches Institut und Sammlung der Gipsabgüsse, Bibliothek +http://lobid.org/organisations/DE-7-150#! DE-7-150 7/150 Seminar für Turkologie und Zentralasienkunde, Bibliothek +http://lobid.org/organisations/DE-7-027#! DE-7-027 7/027 Institut für Mathematische Stochastik, Bibliothek +http://lobid.org/organisations/DE-7-038#! DE-7-038 7/038 Institut für Tierzucht und Haustiergenetik, Bibliothek +http://lobid.org/organisations/DE-6-311#! DE-6-311 6/311 Universität Münster, Universitätsarchiv, Bibliothek +http://lobid.org/organisations/DE-Mh36#! DE-Mh36 Mh 36 ZEW - Leibniz-Zentrum für Europäische Wirtschaftsforschung GmbH, Mannheim / Spezialbibliothek +http://lobid.org/organisations/DE-Pau1#! DE-Pau1 Pau 1 Landesamt für Verbraucherschutz, Landwirtschaft und Flurneuordnung, Referat 43, Ackerbau und Grünland, Bibliothek +http://lobid.org/organisations/DE-B2136#! DE-B2136 B 2136 Kirchenbibliotheken Sankt Marien - Sankt Nicolai +http://lobid.org/organisations/DE-82-207#! DE-82-207 82/207 Lehr- und Forschungsgebiet Bau- und Raumgestaltung, Bibliothek +http://lobid.org/organisations/DE-82-315#! DE-82-315 82/315 Lehrstuhl für Kunststoffverarbeitung, Bibliothek +http://lobid.org/organisations/DE-7-011#! DE-7-011 7/011 Zentrum Physiologie und Pathophysiologie, Zentrum Biochemie und Molekulare Zellbiologie, Bibliothek +http://lobid.org/organisations/DE-7-014#! DE-7-014 7/014 Zentrum Pathologie, Bibliothek +http://lobid.org/organisations/DE-7-008#! DE-7-008 7/008 Zentrum Augenheilkunde und Hals-Nasen-Ohrenheilkunde, Abteilung Augenheilkunde / Abteilung Strobologie und Neuroophthalmologie, Bibliothek +http://lobid.org/organisations/DE-7-720#! DE-7-720 7/720 Zentrum Psychologische Medizin, Abteilung Psychiatrie, Schwerpunktprofessur Psychopathologie, Bibliothek +http://lobid.org/organisations/DE-7-723#! DE-7-723 7/723 Zentrum Psychologische Medizin, Abteilung Psychosomatik und Psychotherapie, Bibliothek +http://lobid.org/organisations/DE-7-724#! DE-7-724 7/724 Zentrum Psychologische Medizin, Abteilung Psychosomatik und Psychotherapie, Schwerpunkt Familientherapie, Bibliothek +http://lobid.org/organisations/DE-7-025#! DE-7-025 7/025 Sprachwissenschaftliches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-734#! DE-7-734 7/734 Betriebseinheiten Medien in der Medizin, Bibliothek +http://lobid.org/organisations/DE-7-739#! DE-7-739 7/739 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, Logopädenlehranstalt, Bibliothek/Sekretariat +http://lobid.org/organisations/DE-7-097#! DE-7-097 7/097 Institut für Materialphysik , Bibliothek +http://lobid.org/organisations/DE-953#! DE-953 953 Hochschule Mannheim, Hochschulbibliothek +http://lobid.org/organisations/DE-7-030#! DE-7-030 7/030 Johann-Friedrich-Blumenbach-Institut für Zoologie und Anthropologie, Bibliothek +http://lobid.org/organisations/DE-7-501#! DE-7-501 7/501 Institut für Bodenkunde und Waldernährung, Bibliothek +http://lobid.org/organisations/DE-7-502#! DE-7-502 7/502 Institut für Forstzoologie, Bibliothek +http://lobid.org/organisations/DE-7-503#! DE-7-503 7/503 Institut für Forstbotanik, Bibliothek +http://lobid.org/organisations/DE-7-143#! DE-7-143 7/143 Institut für Pflanzenpathologie und Pflanzenschutz, Bibliothek +http://lobid.org/organisations/DE-7-603#! DE-7-603 7/603 Göttingen, Forschungs- und Studienzentrum der Agrar- und Forstwissenschaften der Tropen und Subtropen (Tropenzentrum), Bibliothek +http://lobid.org/organisations/DE-Goe168#! DE-Goe168 Gö 168 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen (GWDG), Bibliothek +http://lobid.org/organisations/DE-4-211#! DE-4-211 4/211 Zentrum für Methodenwissenschaften und Gesundheitsforschung, Institut für Versorgungsforschung und klinische Epidemiologie, Bibliothek +http://lobid.org/organisations/DE-4-338#! DE-4-338 4/338 Institut für Genossenschaftswesen, Bibliothek +http://lobid.org/organisations/DE-4-550#! DE-4-550 4/550 Institut für Kirchenbau und kirchliche Kunst der Gegenwart, Bibliothek +http://lobid.org/organisations/DE-4-572#! DE-4-572 4/572 Katholisch Theologisches Seminar an der Philipps-Universität Marburg, Bibliothek +http://lobid.org/organisations/DE-26-021#! DE-26-021 26/021 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 1, Marketing +http://lobid.org/organisations/DE-26-027#! DE-26-027 26/027 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 7, Internationales Management, Rechnungslegung und Wirtschaftsprüfung +http://lobid.org/organisations/DE-26-055#! DE-26-055 26/055 Universität Gießen, Zweigbibliothek im Phil. II / Musikwissenschaft und Musikpädagogik / Mediothek +http://lobid.org/organisations/DE-26-112#! DE-26-112 26/112 Universität Gießen, Fachbibliothek Romanistik +http://lobid.org/organisations/DE-26-205#! DE-26-205 26/205 Universität Gießen, Bibliothek Wirtschaftslehre des Haushalts und Verbrauchsforschung +http://lobid.org/organisations/DE-26-211#! DE-26-211 26/211 Institut für Veterinär-Physiologie, Arbeitsgruppe Biomathematik und Datenverarbeitung , Bibliothek +http://lobid.org/organisations/DE-26-238#! DE-26-238 26/238 Universität Gießen, Bibliothek Rechtsmedizin +http://lobid.org/organisations/DE-26-336#! DE-26-336 26/336 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 6, Verhaltens- und Institutionenökonomik +http://lobid.org/organisations/DE-26-342#! DE-26-342 26/342 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 9, Wirtschaftsinformatik +http://lobid.org/organisations/DE-77-016#! DE-77-016 77/016 Universität Mainz, Bereichsbibliothek Katholische Theologie und Evangelische Theologie +http://lobid.org/organisations/DE-77-018#! DE-77-018 77/018 Universität Mainz, Bereichsbibliothek Rechts- und Wirtschaftswissenschaften +http://lobid.org/organisations/DE-77-020#! DE-77-020 77/020 Universität Mainz, Bereichsbibliothek Rechts- und Wirtschaftswissenschaften, Lehrstühle +http://lobid.org/organisations/DE-77-035#! DE-77-035 77/035 Universität Mainz, Bereichsbibliothek Universitätsmedizin, Institut für Rechtsmedizin +http://lobid.org/organisations/DE-18-19#! DE-18-19 18/19 Universität Hamburg, Fachbereichsbibliothek Biologie, Standort Grindel +http://lobid.org/organisations/DE-18-47#! DE-18-47 18/47 Universität Hamburg, Physikalische Institute Jungiusstraße, Bibliothek +http://lobid.org/organisations/DE-18-269#! DE-18-269 18/269 Universität Hamburg, Physikalische Institute Bahrenfeld, Bibliothek +http://lobid.org/organisations/DE-18-284#! DE-18-284 18/284 Hochschule für Angewandte Wissenschaften Hamburg, Hochschulinformations- und Bibliotheksservice (HIBS), Fachbibliothek Life Sciences +http://lobid.org/organisations/DE-77-066#! DE-77-066 77/066 Universität Mainz, Bereichsbibliothek Rechts- und Wirtschaftswissenschaften / Ethnologie und Afrikastudien +http://lobid.org/organisations/DE-77-085#! DE-77-085 77/085 Universität Mainz, Fachbereich 07, Geschichts- und Kulturwissenschaften, Institut für Altertumswissenschaften - Vor- und Frühgeschichtliche Archäologie +http://lobid.org/organisations/DE-77-091#! DE-77-091 77/091 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Musikwissenschaft +http://lobid.org/organisations/DE-30-60#! DE-30-60 30/60 Universität Frankfurt, Dr. Senckenbergisches Institut für Geschichte und Ethik der Medizin, Bibliothek +http://lobid.org/organisations/DE-30-220#! DE-30-220 30/220 Universitätsbibliothek J. C. Senckenberg, ZB, Japanologie +http://lobid.org/organisations/DE-Ki95-2#! DE-Ki95-2 Ki 95/2 Fachhochschule Kiel, Fachbereich Agrarwirtschaft, Bibliothek +http://lobid.org/organisations/DE-Sra5#! DE-Sra5 Sra 5 Hochschule Stralsund, Hochschulbibliothek +http://lobid.org/organisations/DE-17-5#! DE-17-5 17/5 TU Darmstadt, Fachbereich Biologie +http://lobid.org/organisations/DE-17-8#! DE-17-8 17/8 TU Darmstadt, Institut für Geodäsie +http://lobid.org/organisations/DE-17-14#! DE-17-14 17/14 TU Darmstadt, Institut für Psychologie +http://lobid.org/organisations/DE-17-22#! DE-17-22 17/22 Technische Universität Darmstadt, Institut für Stromrichtertechnik und Antriebsregelung, Bibliothek +http://lobid.org/organisations/DE-17-25#! DE-17-25 17/25 TU Darmstadt, Institute Politik/Geschichte +http://lobid.org/organisations/DE-135#! DE-135 135 Stadtbibliothek Darmstadt +http://lobid.org/organisations/DE-17-26#! DE-17-26 17/26 TU Darmstadt, Fachgebiet Konstruktiver Leichtbau und Bauweisen +http://lobid.org/organisations/DE-17-31#! DE-17-31 17/31 TU Darmstadt, Fachgebiet Systemzuverlässigkeit und Maschinenakustik +http://lobid.org/organisations/DE-17-42#! DE-17-42 17/42 TU Darmstadt, Fachgebiet Fluidsystemtechnik, Bibliothek +http://lobid.org/organisations/DE-17-65#! DE-17-65 17/65 TU Darmstadt, Institut IWAR +http://lobid.org/organisations/DE-17-79#! DE-17-79 17/79 TU Darmstadt, Fachgebiet Produktentwicklung und Maschinenelemente +http://lobid.org/organisations/DE-17-83#! DE-17-83 17/83 TU Darmstadt, Fachgebiet Numerische Berechnungsverfahren im Maschinenbau +http://lobid.org/organisations/DE-17-87#! DE-17-87 17/87 TU Darmstadt, Fachgebiet Elektrische Energieversorgung unter Einsatz Erneuerbarer Energien +http://lobid.org/organisations/DE-17-112#! DE-17-112 17/112 TU Darmstadt, Fachgebiet Energiesysteme und Energietechnik +http://lobid.org/organisations/DE-7-410#! DE-7-410 7/410 Forschungseinrichtung Röntgenphysik, Bibliothek +http://lobid.org/organisations/DE-B103#! DE-B103 B 103 Bibliothek des Wissenschaftsparks Albert Einstein +http://lobid.org/organisations/DE-89-18#! DE-89-18 89/18 Technische Informationsbibliothek (TIB) Standort Conti-Campus Wirtschaftswissenschaften +http://lobid.org/organisations/DE-89-19#! DE-89-19 89/19 Technische Informationsbibliothek (TIB) Standort Sozialwissenschaften +http://lobid.org/organisations/DE-Mz116#! DE-Mz116 Mz 116 Max-Planck-Institut für Polymerforschung, Bibliothek +http://lobid.org/organisations/DE-B462#! DE-B462 B 462 Stadtbibliothek Pankow, Mittelpunktbibliothek Janusz-Korczak-Bibliothek +http://lobid.org/organisations/DE-90-198#! DE-90-198 90/198 KIT-Bibliothek, Bibliothek des Archivs für Architektur und Ingenieurbau +http://lobid.org/organisations/DE-Dm13#! DE-Dm13 Dm 13 Fachhochschule Dortmund, Hochschulbibliothek +http://lobid.org/organisations/DE-38-303#! DE-38-303 38/303 Vergleichende Erziehungswissenschaft, Bibliothek +http://lobid.org/organisations/DE-38-312#! DE-38-312 38/312 Seminar für Deutsche Sprache und ihre Didaktik, Bibliothek +http://lobid.org/organisations/DE-38-313#! DE-38-313 38/313 Englische Seminar II, Bibliothek +http://lobid.org/organisations/DE-38-317#! DE-38-317 38/317 Institut für Chemiedidaktik, Bibliothek +http://lobid.org/organisations/DE-127#! DE-127 127 Staatliche Bibliothek, Schloßbibliothek +http://lobid.org/organisations/DE-Stg261#! DE-Stg261 Stg 261 Internationale Bachakademie Stuttgart, Bibliothek +http://lobid.org/organisations/DE-27-89#! DE-27-89 27/89 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Kliniksapotheke +http://lobid.org/organisations/DE-477#! DE-477 477 Stadt- und Stiftsarchiv Aschaffenburg, Landeskundliche Bibliothek +http://lobid.org/organisations/DE-82-318#! DE-82-318 82/318 Lehrstuhl für Lasertechnik, Bibliothek +http://lobid.org/organisations/DE-82-004#! DE-82-004 82/004 Hochschularchiv, Bibliothek +http://lobid.org/organisations/DE-83-1034a#! DE-83-1034a 83/1034a TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Schienenfahrzeuge, Bibliothek +http://lobid.org/organisations/DE-H27#! DE-H27 H 27 Freie und Hansestadt Hamburg, Behörde für Gesundheit und Verbraucherschutz, Institut für Hygiene und Umwelt, Bibliothek +http://lobid.org/organisations/DE-Goep3#! DE-Goep3 Göp 3 Stadtarchiv Göppingen +http://lobid.org/organisations/DE-82-715#! DE-82-715 82/715 Kinder- und Jugendpsychiatrie, Bibliothek +http://lobid.org/organisations/DE-H155#! DE-H155 H 155 Hamburger Lehrerbibliothek, Bibliothek des Landesinstituts für Lehrerbildung und Schulentwicklung +http://lobid.org/organisations/DE-Mau1#! DE-Mau1 Mau 1 Evangelisch-theologisches Seminar Maulbronn, Seminarbibliothek +http://lobid.org/organisations/DE-82-423#! DE-82-423 82/423 Lehr- und Forschungsgebiet Berg- und Umweltrecht, Bibliothek +http://lobid.org/organisations/DE-Wh1#! DE-Wh1 Wh 1 Landesarchiv Baden-Württemberg Abt. Staatsarchiv Wertheim +http://lobid.org/organisations/DE-Rem4#! DE-Rem4 Rem 4 Historisches Zentrum Remscheid, Archiv und Archivbibliothek +http://lobid.org/organisations/DE-34-32#! DE-34-32 34/32 Universitätsbibliothek Kassel, Standort Holländischer Platz, Bestand Hessisches Landesamt für Bodenforschung +http://lobid.org/organisations/DE-Lan2#! DE-Lan2 Lan 2 Stadtarchiv Landau, Bibliothek +http://lobid.org/organisations/DE-18-297#! DE-18-297 18/297 Zentrum für Molekulare Neurobiologie der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-294-63#! DE-294-63 294/63 Berufsgenossenschaftliche Kliniken Bergmannsheil Bochum, Universitätsklinik, Medizinische Zentralbibliothek +http://lobid.org/organisations/DE-27-162#! DE-27-162 27/162 Studienzentrum Erfurt an der Friedrich-Schiller-Universität Jena, Bibliothek +http://lobid.org/organisations/DE-26-009#! DE-26-009 26/009 Universität Gießen, Zweigbibliothek der UB im Philosophikum II +http://lobid.org/organisations/DE-27-TZK#! DE-27-TZK 27/TZK Thüringer Universitäts- und Landesbibliothek, Leihverkehrszentrale Thüringen +http://lobid.org/organisations/DE-17-131#! DE-17-131 17/131 TU Darmstadt, Fachgebiet Datenverarbeitung in der Konstruktion +http://lobid.org/organisations/DE-46a#! DE-46a 46a Staats- und Universitätsbibliothek Bremen, Teilbibliothek an der Hochschule Bremerhaven +http://lobid.org/organisations/DE-50#! DE-50 50 Fürstlich Fürstenbergische Hofbibliothek +http://lobid.org/organisations/DE-74#! DE-74 74 Stadt- und Kreisbibliothek ""Anna Seghers"" Meiningen +http://lobid.org/organisations/DE-124#! DE-124 124 Christian-Weise-Bibliothek +http://lobid.org/organisations/DE-149#! DE-149 149 Stadtbibliothek Memmingen +http://lobid.org/organisations/DE-152#! DE-152 152 Stadtbibliothek Nördlingen +http://lobid.org/organisations/DE-158#! DE-158 158 Stadtverwaltung Sondershausen, Stadtbibliothek ""Johann Karl Wezel"" +http://lobid.org/organisations/DE-182#! DE-182 182 Stadt- und Kreisbibliothek Arnstadt +http://lobid.org/organisations/DE-192#! DE-192 192 Fürstin-Pauline-Bibliothek +http://lobid.org/organisations/DE-234#! DE-234 234 Stadtbücherei Homberg +http://lobid.org/organisations/DE-269#! DE-269 269 Stadtbücherei Ravensburg +http://lobid.org/organisations/DE-279#! DE-279 279 Stadtbibliothek Ludwigsburg +http://lobid.org/organisations/DE-286#! DE-286 286 Stadtbibliothek Rostock +http://lobid.org/organisations/DE-288#! DE-288 288 Stadtbibliothek Freiberg +http://lobid.org/organisations/DE-356#! DE-356 356 Stadtbibliothek Bad Kreuznach +http://lobid.org/organisations/DE-359#! DE-359 359 Stadtbücherei Bad Sooden-Allendorf +http://lobid.org/organisations/DE-377#! DE-377 377 Stadtbücherei Neustadt in Holstein +http://lobid.org/organisations/DE-379#! DE-379 379 Stadtbibliothek im Zentrum für Information und Bildung +http://lobid.org/organisations/DE-388#! DE-388 388 Stadtbücherei Bad Salzuflen +http://lobid.org/organisations/DE-409#! DE-409 409 Stadtbibliothek Dinslaken +http://lobid.org/organisations/DE-412#! DE-412 412 Stadtbücherei Datteln +http://lobid.org/organisations/DE-413#! DE-413 413 Stadtbibliothek Dorsten +http://lobid.org/organisations/DE-417#! DE-417 417 Stadtbücherei Heiligenhaus +http://lobid.org/organisations/DE-418#! DE-418 418 Stadtbücherei Hemer +http://lobid.org/organisations/DE-428#! DE-428 428 Stadtbibliothek Ahaus +http://lobid.org/organisations/DE-435#! DE-435 435 Stadtbücherei Hürth +http://lobid.org/organisations/DE-440#! DE-440 440 Stadtbücherei Kaufbeuren +http://lobid.org/organisations/DE-442#! DE-442 442 Katholische Öffentliche Bibliothek +http://lobid.org/organisations/DE-448#! DE-448 448 Stadtbücherei Olpe +http://lobid.org/organisations/DE-469#! DE-469 469 Stadtbücherei im Kulturzentrum +http://lobid.org/organisations/DE-478#! DE-478 478 Stadtbibliothek Bremen, Zentralbibliothek +http://lobid.org/organisations/DE-482#! DE-482 482 Stadtbibliothek Bad Oldesloe +http://lobid.org/organisations/DE-492#! DE-492 492 Stadtbücherei Pinneberg +http://lobid.org/organisations/DE-508#! DE-508 508 Stadtbibliothek Oranienburg +http://lobid.org/organisations/DE-510#! DE-510 510 Bibliothek im Kontor Wittstock +http://lobid.org/organisations/DE-512#! DE-512 512 Stadtbibliothek Gransee +http://lobid.org/organisations/DE-513#! DE-513 513 Stadtbibliothek Neuruppin +http://lobid.org/organisations/DE-539#! DE-539 539 Stadtbibliothek Annaberg-Buchholz +http://lobid.org/organisations/DE-558#! DE-558 558 Stadtbibliothek Schwerin +http://lobid.org/organisations/DE-563#! DE-563 563 Hochschule für Musik und Theater Rostock, Bibliothek +http://lobid.org/organisations/DE-564#! DE-564 564 Hochschule Nordhausen, Hochschulbibliothek +http://lobid.org/organisations/DE-712#! DE-712 712 Stadtbibliothek Euskirchen +http://lobid.org/organisations/DE-717#! DE-717 717 Stadtbibliothek Bad Pyrmont +http://lobid.org/organisations/DE-720#! DE-720 720 Mediothek Diepholz +http://lobid.org/organisations/DE-728#! DE-728 728 Bibliothek Waldmühle +http://lobid.org/organisations/DE-734#! DE-734 734 Stadtbücherei Lemgo +http://lobid.org/organisations/DE-749#! DE-749 749 Stadtbibliothek Offenburg +http://lobid.org/organisations/DE-762#! DE-762 762 Stadtbibliothek Bergheim +http://lobid.org/organisations/DE-767#! DE-767 767 Kreisfahrbücherei Paderborn +http://lobid.org/organisations/DE-770#! DE-770 770 Gemeindebibliothek Eitorf +http://lobid.org/organisations/DE-778#! DE-778 778 Stadtbücherei Grevenbroich +http://lobid.org/organisations/DE-781#! DE-781 781 Katholische Öffentliche Bibliothek St. Nicolai Kalkar +http://lobid.org/organisations/DE-788#! DE-788 788 Stadtbücherei St. Felizitas +http://lobid.org/organisations/DE-794#! DE-794 794 Bücherei St. Lamberti Ochtrup +http://lobid.org/organisations/DE-795#! DE-795 795 Medienzentrum im Erzbistum Paderborn, Bibliothek +http://lobid.org/organisations/DE-804#! DE-804 804 Stadtbibliothek Sundern +http://lobid.org/organisations/DE-805#! DE-805 805 Stadtbücherei Tecklenburg +http://lobid.org/organisations/DE-814#! DE-814 814 Stadtbücherei Wesseling +http://lobid.org/organisations/DE-818#! DE-818 818 Öffentliche Bücherei Marsberg +http://lobid.org/organisations/DE-819#! DE-819 819 Stadtbibliothek Elsdorf +http://lobid.org/organisations/DE-820#! DE-820 820 Stadtbücherei Bad Segeberg +http://lobid.org/organisations/DE-825#! DE-825 825 Stadtbibliothek Kassel +http://lobid.org/organisations/DE-835#! DE-835 835 Stadtbücherei Geilenkirchen +http://lobid.org/organisations/DE-842#! DE-842 842 Stadtbibliothek Tuttlingen +http://lobid.org/organisations/DE-843#! DE-843 843 Stadtbibliothek und Stadtarchiv Bad Brückenau +http://lobid.org/organisations/DE-844#! DE-844 844 Stadtbibliothek Deggendorf +http://lobid.org/organisations/DE-846#! DE-846 846 Bibliotheks- und Informationszentrum Haßfurt +http://lobid.org/organisations/DE-856#! DE-856 856 Bibliotheks- und Informationszentrum des Landkreises in Hösbach (Schulzentrum) +http://lobid.org/organisations/DE-857#! DE-857 857 Stadtbücherei Miesbach +http://lobid.org/organisations/DE-869#! DE-869 869 Stadtbücherei im Haus des Buches +http://lobid.org/organisations/DE-873#! DE-873 873 Kreisbücherei Bad Windsheim +http://lobid.org/organisations/DE-874#! DE-874 874 Stadtbibliothek Sulzbach-Rosenberg +http://lobid.org/organisations/DE-877#! DE-877 877 Bibliothek Wasserburg/Inn +http://lobid.org/organisations/DE-883#! DE-883 883 Stadt- und Kreisbibliothek St. Wendel +http://lobid.org/organisations/DE-885#! DE-885 885 Stadtbibliothek Saarlouis +http://lobid.org/organisations/DE-886#! DE-886 886 Stadtbibliothek Dillingen +http://lobid.org/organisations/DE-889#! DE-889 889 Stadtbücherei Baesweiler +http://lobid.org/organisations/DE-890#! DE-890 890 Stadtbibliothek Kierspe +http://lobid.org/organisations/DE-902#! DE-902 902 Stadtbücherei Halle (Westf.) +http://lobid.org/organisations/DE-909#! DE-909 909 Stadtbücherei Lauf +http://lobid.org/organisations/DE-921#! DE-921 921 Stadtbücherei Wermelskirchen +http://lobid.org/organisations/DE-933#! DE-933 933 Stadtbücherei Hückelhoven +http://lobid.org/organisations/DE-939#! DE-939 939 Stadtbücherei Wittlich +http://lobid.org/organisations/DE-948#! DE-948 948 Stadtbücherei Olsberg +http://lobid.org/organisations/DE-959#! DE-959 959 Hochschule Osnabrück, Bibliothek Campus Westerberg +http://lobid.org/organisations/DE-973#! DE-973 973 Stadtbibliothek Hammelburg +http://lobid.org/organisations/DE-981#! DE-981 981 Hochschule Pforzheim / Fakultät Gestaltung, Bibliothek +http://lobid.org/organisations/DE-1021#! DE-1021 1021 Kreis- und Stadtbücherei Weilburg +http://lobid.org/organisations/DE-1024#! DE-1024 1024 Stadtbibliothek der Stadt Langenhagen +http://lobid.org/organisations/DE-1025#! DE-1025 1025 Bücherei am Rathausplatz +http://lobid.org/organisations/DE-1031#! DE-1031 1031 Stadtbibliothek Versmold +http://lobid.org/organisations/DE-1035#! DE-1035 1035 Stadtbücherei Heinsberg +http://lobid.org/organisations/DE-1039#! DE-1039 1039 Stadtbibliothek Wunstorf +http://lobid.org/organisations/DE-1057#! DE-1057 1057 Fürstlich Ysenburg- und Büdingensche Bibliothek +http://lobid.org/organisations/DE-1058#! DE-1058 1058 Stadtbücherei Dillenburg +http://lobid.org/organisations/DE-1061#! DE-1061 1061 Grimmelshausen-Bibliothek +http://lobid.org/organisations/DE-1084#! DE-1084 1084 Hochschule Kaiserslautern, Hochschulbibliothek, Standortbibliothek Kaiserslautern +http://lobid.org/organisations/DE-1092#! DE-1092 1092 Stadtbücherei Nürtingen +http://lobid.org/organisations/DE-1094#! DE-1094 1094 Bibliothek Stadt Monheim am Rhein +http://lobid.org/organisations/DE-1095#! DE-1095 1095 Bücherei Großburgwedel +http://lobid.org/organisations/DE-1103#! DE-1103 1103 Stadtbibliothek Laupheim +http://lobid.org/organisations/DE-Ae2#! DE-Ae2 Ae 2 Stadtbibliothek Aue +http://lobid.org/organisations/DE-Alz1#! DE-Alz1 Alz 1 Fachhochschule für Verwaltung und Dienstleistung, Bibliothek +http://lobid.org/organisations/DE-As4#! DE-As4 As 4 Kreisbibliothek Aschersleben +http://lobid.org/organisations/DE-As5#! DE-As5 As 5 Fachhochschule Polizei Sachsen-Anhalt, Bibliothek +http://lobid.org/organisations/DE-B161#! DE-B161 B 161 Max-Planck-Institut für Physik, Werner-Heisenberg-Institut, Bibliothek +http://lobid.org/organisations/DE-B746#! DE-B746 B 746 Amtsgericht Schöneberg, Bibliothek +http://lobid.org/organisations/DE-B1526#! DE-B1526 B 1526 Polizeipräsident in Berlin, Polizeibibliothek +http://lobid.org/organisations/DE-B1554#! DE-B1554 B 1554 Senatsverwaltung für Stadtentwicklung, Bibliothek +http://lobid.org/organisations/DE-B2222#! DE-B2222 B 2222 Ferdinand-Braun-Institut, Leibniz-Institut für Höchstfrequenztechnik, Bibliothek +http://lobid.org/organisations/DE-B2224#! DE-B2224 B 2224 Katholische Hochschule für Sozialwesen Berlin, Bibliothek +http://lobid.org/organisations/DE-Bm2#! DE-Bm2 Bm 2 Deutsche Rentenversicherung Knappschaft-Bahn-See, Zentralbibliothek +http://lobid.org/organisations/DE-Bo124#! DE-Bo124 Bo 124 Stadt Bonn, Amt für Umwelt, Verbraucherschutz und Lokale Agenda, Bibliothek +http://lobid.org/organisations/DE-Bo148#! DE-Bo148 Bo 148 Europäische Kommission, Vertretung in der Bundesrepublik Deutschland, Dokumentation +http://lobid.org/organisations/DE-Bo176#! DE-Bo176 Bo 176 Bundeskanzleramt, Bibliothek +http://lobid.org/organisations/DE-Bo407#! DE-Bo407 Bo 407 Max-Planck-Institut zur Erforschung von Gemeinschaftsgütern, Bibliothek +http://lobid.org/organisations/DE-Bor4#! DE-Bor4 Bor 4 Mediothek Borna +http://lobid.org/organisations/DE-Bre2#! DE-Bre2 Bre 2 Institut für Seeverkehrswirtschaft und Logistik, ISL InfoCenter/Bibliothek +http://lobid.org/organisations/DE-Bre3#! DE-Bre3 Bre 3 Übersee-Museum, Bibliothek +http://lobid.org/organisations/DE-Bs71#! DE-Bs71 Bs 71 Referat Stadtentwicklung und Statistik +http://lobid.org/organisations/DE-Buer1#! DE-Buer1 Bür 1 Lehrerbücherei des Mauritius-Gymnasiums +http://lobid.org/organisations/DE-Ce8#! DE-Ce8 Ce 8 Bibliothek des Predigerseminars Celle +http://lobid.org/organisations/DE-Ch100#! DE-Ch100 Ch 100 Stadtbibliothek Limbach-Oberfrohna +http://lobid.org/organisations/DE-Ch102#! DE-Ch102 Ch 102 Bibliothek Rochlitz ""Alte Lateinschule"" +http://lobid.org/organisations/DE-D28#! DE-D28 D 28 GlaxoSmithKline Biologicals, NL der SmithKline Beecham Pharma GmbH & Co. KG, Firmenbibliothek +http://lobid.org/organisations/DE-D208#! DE-D208 D 208 Stadtbibliothek Radebeul +http://lobid.org/organisations/DE-83-123#! DE-83-123 83/123 TU Berlin, Institut für Ökologie, Fachgebiete Pflanzenökologie, Klimatologie und Planungsbezogene Tierökologie +http://lobid.org/organisations/DE-83-748#! DE-83-748 83/748 TU Berlin, Institut für Landschaftsarchitektur und Umweltplanung, Fachgebiet Vegetationstechnik und Pflanzenverwendung, Bibliothek +http://lobid.org/organisations/DE-83-1016#! DE-83-1016 83/1016 TU Berlin, Fachgebiet Bau- und Stadtbaugeschichte, Bibliothek +http://lobid.org/organisations/DE-83-1022#! DE-83-1022 83/1022 TU Berlin, Universitätsbibliothek, Bereichsbibliothek Physik +http://lobid.org/organisations/DE-83-1030#! DE-83-1030 83/1030 TU Berlin, Institut für Bauingenieurwesen, FG Bauwirtschaft und Baubetrieb, Bibliothek +http://lobid.org/organisations/DE-83-1061#! DE-83-1061 83/1061 TU Berlin, Institut für Werkzeugmaschinen und Fabrikbetrieb (IWF), FG Werkzeugmaschinen und Fertigungstechnik, Bibliothek +http://lobid.org/organisations/DE-83-1066#! DE-83-1066 83/1066 TU Berlin, Institut für Architektur, FG Tragwerksentwurf und -konstruktion, Bibliothek +http://lobid.org/organisations/DE-83-1080#! DE-83-1080 83/1080 TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Fahrzeugantriebe, Bibliothek +http://lobid.org/organisations/DE-83-1101#! DE-83-1101 83/1101 TU Berlin, Institut für Energietechnik, Fachgebiet Energietechnik und Umweltschutz, Bibliothek +http://lobid.org/organisations/DE-83-1157#! DE-83-1157 83/1157 TU Berlin, Institut für Energie- und Automatisierungstechnik, Fachgebiet Elektronische Systeme der Medizintechnik, Bibliothek +http://lobid.org/organisations/DE-83-1163#! DE-83-1163 83/1163 TU Berlin, Institut für Mechanik, Fachgebiet Kontinuumsmechanik und Materialtheorie, Bibliothek +http://lobid.org/organisations/DE-83-1199#! DE-83-1199 83/1199 TU Berlin, Institut für Sprache und Kommunikation, Fachgebiet Audiokommunikation, Bibliothek +http://lobid.org/organisations/DE-83-1201#! DE-83-1201 83/1201 TU Berlin, Institut für Architektur, Fachgebiet Entwerfen und Konstruieren, Wohnungsbau und Kulturbauten, Bibliothek +http://lobid.org/organisations/DE-B770#! DE-B770 B 770 Theaterhistorische Sammlung Walter Unruh, FB Philosophie und Geisteswissenschaften, FU Berlin, Bibliothek und Archiv +http://lobid.org/organisations/DE-188-832#! DE-188-832 188/832 Freie Universität Berlin, Fachbereich Geowissenschaften, Institut für Meteorologie, Fachrichtung Meteorologie, Bibliothek +http://lobid.org/organisations/DE-188-835#! DE-188-835 188/835 Freie Universität Berlin, Fachbereich Geowissenschaften, Geowissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B11n#! DE-B11n B 11n Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Museum für Islamische Kunst, Bibliothek +http://lobid.org/organisations/DE-B11o#! DE-B11o B 11o Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Museum für Asiatische Kunst, Ostasiatische Kunstsammlung, Bibliothek +http://lobid.org/organisations/DE-B30#! DE-B30 B 30 Axel Simon Bibliothek des Instituts für Gärungsgewerbe und Biotechnologie +http://lobid.org/organisations/DE-B11b#! DE-B11b B 11b Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Ethnologisches Museum, Bibliothek +http://lobid.org/organisations/DE-B249#! DE-B249 B 249 Deutsches Zentralinstitut für Soziale Fragen (DZI), Bibliothek +http://lobid.org/organisations/DE-B772#! DE-B772 B 772 Canisius-Kolleg, Bibliothek +http://lobid.org/organisations/DE-18#! DE-18 18 Staats- und Universitätsbibliothek Hamburg Carl von Ossietzky +http://lobid.org/organisations/DE-18-219#! DE-18-219 18/219 Universität Hamburg, Institut für Finno-Ugristik / Uralistik, Bibliothek +http://lobid.org/organisations/DE-H105#! DE-H105 H 105 Thünen-Institut, Zentrum für Informationsmanagement, Bibliothek Wald +http://lobid.org/organisations/DE-205#! DE-205 205 Commerzbibliothek der Handelskammer Hamburg +http://lobid.org/organisations/DE-H253#! DE-H253 H 253 Deutsches Elektronen-Synchrotron DESY, Bibliothek und Dokumentation +http://lobid.org/organisations/DK-700400#! DK-700400 DK-700400 Dansk Centralbibliotek for Sydslesvig, Flensborg e.V +http://lobid.org/organisations/DE-Bre4#! DE-Bre4 Bre 4 Landeskirchliche Bibliothek Bremen +http://lobid.org/organisations/DE-Hv123#! DE-Hv123 Hv 123 Niedersächsische Landesgalerie, Bibliothek +http://lobid.org/organisations/DE-Ce4#! DE-Ce4 Ce 4 Friedrich-Loeffler-Institut, Bundesforschungsinstitut für Tiergesundheit, Institut für Tierschutz und Tierhaltung, Bibliothek +http://lobid.org/organisations/DE-Bs81#! DE-Bs81 Bs 81 Fraunhofer-Institut für Holzforschung, Wilhelm-Klauditz-Institut (WKI), Bibliothek +http://lobid.org/organisations/DE-Bs85#! DE-Bs85 Bs 85 Verwaltungsgericht, Bibliothek +http://lobid.org/organisations/DE-253#! DE-253 253 Thünen-Institut, Zentrum für Informationsmanagement, Bibliothek Ländliche Räume +http://lobid.org/organisations/DE-7#! DE-7 7 Niedersächsische Staats- und Universitätsbibliothek Göttingen +http://lobid.org/organisations/DE-7-050#! DE-7-050 7/050 Universität Göttingen, Pädagogisches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-059#! DE-7-059 7/059 Universität Göttingen, Institut für Physikalische Chemie, Bibliothek +http://lobid.org/organisations/DE-7-067#! DE-7-067 7/067 Albrecht-von-Haller-Institut für Pflanzenwissenschaften, Bibliothek +http://lobid.org/organisations/DE-Goe134#! DE-Goe134 Gö 134 Max-Planck-Institut für experimentelle Medizin, Karl-Thomas-Bibliothek +http://lobid.org/organisations/DE-4-110#! DE-4-110 4/110 Bibliothek Physik +http://lobid.org/organisations/DE-4-142#! DE-4-142 4/142 Universität Marburg, Bibliothek Pharmazie, Institut für Pharmazeutische Biologie +http://lobid.org/organisations/DE-4-181#! DE-4-181 4/181 Institut für Anatomie und Zellbiologie, Bibliothek +http://lobid.org/organisations/DE-4-205#! DE-4-205 4/205 Universität Marburg, Klinik für Psychiatrie und Psychotherapie, Bibliothek +http://lobid.org/organisations/DE-4-351#! DE-4-351 4/351 Bibliothek Erziehungswissenschaft, Institut für Erziehungswissenschaften +http://lobid.org/organisations/DE-4-353#! DE-4-353 4/353 Bibliothek Erziehungswissenschaft, Institut für Sportwissenschaften und Motologie +http://lobid.org/organisations/DE-4-401#! DE-4-401 4/401 Universität Marburg, Bibliothek Geschichtswissenschaften, Alte Geschichte +http://lobid.org/organisations/DE-4-402#! DE-4-402 4/402 Bibliothek Geschichtswissenschaften, Abt. Mittelalterliche Geschichte und Historische Hilfswissenschaften +http://lobid.org/organisations/DE-4-405#! DE-4-405 4/405 Universität Marburg, Bibliothek Geschichtswissenschaften, Abt. Sozial- und Wirtschaftsgeschichte +http://lobid.org/organisations/DE-4-411#! DE-4-411 4/411 Universität Marburg, Bibliothek Vor- und Frühgeschichte +http://lobid.org/organisations/DE-4-455#! DE-4-455 4/455 Universität Marburg, Bibliothek Fremdsprachliche Philologien, Vergleichende Sprachwissenschaft +http://lobid.org/organisations/DE-34#! DE-34 34 Universitätsbibliothek Kassel, Landesbibliothek und Murhardsche Bibliothek der Stadt Kassel +http://lobid.org/organisations/DE-Ks9#! DE-Ks9 Ks 9 Bundessozialgericht, Bibliothek +http://lobid.org/organisations/DE-Mue66#! DE-Mue66 Mü 66 Oberfinanzdirektion NRW Dienstsitz Münster, Bibliothek +http://lobid.org/organisations/DE-Mue73#! DE-Mue73 Mü 73 Diözesanbibliothek Münster +http://lobid.org/organisations/DE-Mue109#! DE-Mue109 Mü 109 LWL-Amt für Denkmalpflege, Landschafts- und Baukultur in Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue144#! DE-Mue144 Mü 144 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Informationszentrum und Bibliothek Münster +http://lobid.org/organisations/DE-294-16#! DE-294-16 294/16 Ruhr-Universität Bochum, Fakultät für Physik und Astronomie, Bibliothek +http://lobid.org/organisations/DE-294-24#! DE-294-24 294/24 Ruhr-Universität Bochum, Hegel-Archiv, Bibliothek +http://lobid.org/organisations/DE-294-25#! DE-294-25 294/25 Ruhr-Universität Bochum, Institut für Entwicklungsforschung und Entwicklungspolitik, Bibliothek +http://lobid.org/organisations/DE-294-43#! DE-294-43 294/43 Ruhr-Universität Bochum, Astronomisches Institut, Handbibliothek +http://lobid.org/organisations/DE-Dm9#! DE-Dm9 Dm 9 Bücherei der Bezirksregierung Arnsberg am Standort Dortmund +http://lobid.org/organisations/DE-38-125#! DE-38-125 38/125 Forschungsinstitut für Politische Wissenschaft und Europäische Fragen, Seminar für Politische Wissenschaft, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-38-132#! DE-38-132 38/132 Gemeinsame Fachbibliothek Soziologie +http://lobid.org/organisations/DE-38-216#! DE-38-216 38/216 Institut für Neuere Privatrechtsgeschichte, Deutsche und Rheinische Rechtsgeschichte, Bibliothek +http://lobid.org/organisations/DE-38-421#! DE-38-421 38/421 Historisches Institut, Arbeitsstelle für Geschichte der Publizistik, Bibliothek +http://lobid.org/organisations/DE-38-430#! DE-38-430 38/430 Musikwissenschaftliches Institut, Abteilung Historische Musikwissenschaft, Systematische Musikwissenschaft, Musikethnologie,, Collgium musicum, Bibliothek +http://lobid.org/organisations/DE-38-431#! DE-38-431 38/431 Universität Köln, Institut für Ethnologie, Bibliothek +http://lobid.org/organisations/DE-38-444#! DE-38-444 38/444 Institut für Skandinavistik / Fennistik, Abteilung Fennistik, Bibliothek +http://lobid.org/organisations/DE-38-445#! DE-38-445 38/445 Kunsthistorisches Institut, Abteilung Architekturgeschichte, Bibliothek +http://lobid.org/organisations/DE-38-459#! DE-38-459 38/459 Gemeinsame Fachbibliothek Asien / Japanologie +http://lobid.org/organisations/DE-38-514#! DE-38-514 38/514 Department Geowissenschaften, GeoBibliothek +http://lobid.org/organisations/DE-Kn41-39#! DE-Kn41-39 Kn 41/39 Deutsche Sporthochschule Köln, Institut für Biochemie, Bibliothek +http://lobid.org/organisations/DE-Kn41-3#! DE-Kn41-3 Kn 41/3 Deutsche Sporthochschule Köln, Institut für Biomechanik und Orthopädie, Bibliothek +http://lobid.org/organisations/DE-Kn41-18#! DE-Kn41-18 Kn 41/18 Deutsche Sporthochschule Köln, Institut für Physiologie und Anatomie, Bibliothek +http://lobid.org/organisations/DE-Kn41-27#! DE-Kn41-27 Kn 41/27 Deutsche Sporthochschule Köln, Institut für Sportdidaktik und Schulsport, Bibliothek +http://lobid.org/organisations/DE-82-212#! DE-82-212 82/212 Lehrstuhl für Architekturgeschichte, Bibliothek Arch.geschichte +http://lobid.org/organisations/DE-82-217#! DE-82-217 82/217 Lehrstuhl für Stahlbau, Bibliothek +http://lobid.org/organisations/DE-82-305#! DE-82-305 82/305 Lehrstuhl für Strömungslehre und Aerodynamisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-309#! DE-82-309 82/309 Lehrstuhl für Reaktorsicherheit und -technik, Bibliothek +http://lobid.org/organisations/DE-82-313#! DE-82-313 82/313 Lehrstuhl und Institut für Arbeitswissenschaft, Bibliothek +http://lobid.org/organisations/DE-82-407#! DE-82-407 82/407 Lehrstuhl für Geologie und Paläontologie und Geologisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-416#! DE-82-416 82/416 Lehrstuhl für Hochtemperaturtechnik und Institut für Industrieofenbau und Wärmetechnik im Hüttenwesen, Bibliothek +http://lobid.org/organisations/DE-82-417#! DE-82-417 82/417 Lehrstuhl für Allgemeine Metallkunde und Metallphysik und Institut für Metallkunde und Metallphysik, Bibliothek +http://lobid.org/organisations/DE-82-503#! DE-82-503 82/503 Lehrstuhl und Institut für Theoretische Elektrotechnik, Erasmus-Erpel-Bibliothek +http://lobid.org/organisations/DE-82-509#! DE-82-509 82/509 Institut für Kommunikationssysteme, Bibliothek +http://lobid.org/organisations/DE-82-510#! DE-82-510 82/510 Lehrstuhl und Institut für Technische Akustik, Bibliothek +http://lobid.org/organisations/DE-82-511#! DE-82-511 82/511 Lehrstuhl und Institut für Hochfrequenztechnik, Bibliothek +http://lobid.org/organisations/DE-82-608#! DE-82-608 82/608 Rheinisch-Westfälische TH, Geographisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-609#! DE-82-609 82/609 Germanistisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-613#! DE-82-613 82/613 Lehrstuhl und Institut für Politische Wissenschaft, Bibliothek +http://lobid.org/organisations/DE-82-622#! DE-82-622 82/622 Lehrstuhl für Romanische Philologie I und Institut für Romanische Philologie, Bibliothek +http://lobid.org/organisations/DE-82-704#! DE-82-704 82/704 Medizinische Mikrobiologie, Bibliothek +http://lobid.org/organisations/DE-82-705#! DE-82-705 82/705 Pharmakologie, Bibliothek +http://lobid.org/organisations/DE-82-726#! DE-82-726 82/726 Medizinische Klinik II, Bibliothek +http://lobid.org/organisations/DE-82-729#! DE-82-729 82/729 Urologie, Bibliothek +http://lobid.org/organisations/DE-82-732#! DE-82-732 82/732 Kinderheilkunde, Bibliothek +http://lobid.org/organisations/DE-82-734#! DE-82-734 82/734 Neurologie, Bibliothek +http://lobid.org/organisations/DE-82-739#! DE-82-739 82/739 Zahn-, Mund-, Kiefer- und Plastische Gesichtschirurgie, Bibliothek +http://lobid.org/organisations/DE-82-754#! DE-82-754 82/754 Strahlentherapie, Bibliothek +http://lobid.org/organisations/DE-52#! DE-52 52 Stadtbibliothek Aachen +http://lobid.org/organisations/DE-5-7#! DE-5-7 5/7 Universität Bonn, Kunsthistorisches Institut, Bibliothek +http://lobid.org/organisations/DE-5-12#! DE-5-12 5/12 Universität Bonn, Institut für Geowissenschaften und Meteorologie, Bereich Geologie, Bibliothek +http://lobid.org/organisations/DE-5-22#! DE-5-22 5/22 Universität Bonn, Institut für Klassische und Romanische Philologie, Abteilung für Romanische Philologie, Bibliothek +http://lobid.org/organisations/DE-5-26#! DE-5-26 5/26 Universität Bonn, Institut für Völkerrecht, Bibliothek +http://lobid.org/organisations/DE-5-52#! DE-5-52 5/52 Universität Bonn, Pharmazeutisches Institut, Bibliothek +http://lobid.org/organisations/DE-5-73#! DE-5-73 5/73 Universität Bonn, Institut für Nutzpflanzenwissenschaften und Ressourcenschutz (INRES) / Bodenwissenschaften, Bibliothek +http://lobid.org/organisations/DE-5-79#! DE-5-79 5/79 Universität Bonn, Kirchenrechtliches Institut, Bibliothek +http://lobid.org/organisations/DE-5-142#! DE-5-142 5/142 Universität Bonn, Institut für Internationales Privatrecht und Rechtsvergleichung, Bibliothek +http://lobid.org/organisations/DE-5-161#! DE-5-161 5/161 Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Osteuropäische Geschichte, Bibliothek +http://lobid.org/organisations/DE-5-181#! DE-5-181 5/181 Universität Bonn, Institut für Arbeitsrecht und Recht der Sozialen Sicherheit, Bibliothek +http://lobid.org/organisations/DE-5-185#! DE-5-185 5/185 Universität Bonn, Rechtsphilosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-5-205#! DE-5-205 5/205 Universität Bonn, Archiv der Universität, Bibliothek +http://lobid.org/organisations/DE-281#! DE-281 281 Deutscher Bundestag, Bibliothek +http://lobid.org/organisations/DE-Bo101#! DE-Bo101 Bo 101 Bundesamt für Justiz, Bibliothek +http://lobid.org/organisations/DE-Bo196#! DE-Bo196 Bo 196 Institut Francais Bonn, Bibliothek +http://lobid.org/organisations/DE-Mch1#! DE-Mch1 Mch 1 Benediktinerabtei Maria Laach, Bibliothek +http://lobid.org/organisations/DE-Tr16#! DE-Tr16 Tr 16 Deutsches Liturgisches Institut, Bibliothek +http://lobid.org/organisations/DE-157#! DE-157 157 Stadtbibliothek Solingen +http://lobid.org/organisations/DE-17-52#! DE-17-52 17/52 TU Darmstadt, Institut für Kernphysik +http://lobid.org/organisations/DE-26#! DE-26 26 Universitätsbibliothek Gießen +http://lobid.org/organisations/DE-26-179#! DE-26-179 26/179 Universität Gießen / Bibliothek Hygiene und Infektionskrankheiten der Tiere +http://lobid.org/organisations/DE-26-234#! DE-26-234 26/234 Universität Gießen, Bibliothek Pathologie +http://lobid.org/organisations/DE-Lb1#! DE-Lb1 Lb 1 Gräflich Solms-Laubach'sche Bibliothek +http://lobid.org/organisations/DE-66-0#! DE-66-0 66/0 Hochschul- und Landesbibliothek Fulda, Standort Campus +http://lobid.org/organisations/DE-291-307#! DE-291-307 291/307 Universität des Saarlandes, Fachrichtung Romanistik, Bibliothek +http://lobid.org/organisations/DE-291-315#! DE-291-315 291/315 Universität des Saarlandes, Institut für Klassische Archäologie, Bibliothek +http://lobid.org/organisations/DE-291-349#! DE-291-349 291/349 Universität des Saarlandes, Fachrichtung Evangelische Theologie, Bibliothek +http://lobid.org/organisations/DE-291-406#! DE-291-406 291/406 Universität des Saarlandes, Campusbibliothek für Informatik und Mathematik, Fachrichtung 6.1 Mathematik +http://lobid.org/organisations/DE-291-418#! DE-291-418 291/418 Universität des Saarlandes, Campusbibliothek für Informatik und Mathematik, Fachrichtung 6.1 Mathematik [inaktiv] +http://lobid.org/organisations/DE-178#! DE-178 178 Stadtbibliothek Saarbrücken +http://lobid.org/organisations/DE-107#! DE-107 107 Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek +http://lobid.org/organisations/DE-16-12#! DE-16-12 16/12 Universität Heidelberg, Philosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-16-24#! DE-16-24 16/24 Anglistisches Seminar der Universität, Bibliothek +http://lobid.org/organisations/DE-16-25#! DE-16-25 16/25 Institut für Geowissenschaften der Universität, Bibliothek +http://lobid.org/organisations/DE-16-28#! DE-16-28 16/28 Musikwissenschaftliches Seminar der Universität, Bibliothek +http://lobid.org/organisations/DE-16-37#! DE-16-37 16/37 Bereichsbibliothek Altertumswissenschaften, Abteilung Ägyptologie +http://lobid.org/organisations/DE-16-51#! DE-16-51 16/51 Radiologische Universitätsklinik, Bibliothek +http://lobid.org/organisations/DE-16-86#! DE-16-86 16/86 Institut für Geschichte und Ethik der Medizin, Bibliothek +http://lobid.org/organisations/DE-16-106#! DE-16-106 16/106 Institut für Papyrologie, Bibliothek +http://lobid.org/organisations/DE-16-127#! DE-16-127 16/127 Institut für Europäische Kunstgeschichte der Universität, Bibliothek für Iberische und Ibero-amerikanische Kunst- und Kulturgeschichte +http://lobid.org/organisations/DE-16-144#! DE-16-144 16/144 Institut für Gerontologie, Bibliothek +http://lobid.org/organisations/DE-He116#! DE-He116 He 116 Hochschule für Jüdische Studien, Bibliothek Albert Einstein +http://lobid.org/organisations/DE-He81#! DE-He81 He 81 Max-Planck-Institut für Astronomie, Bibliothek +http://lobid.org/organisations/DE-He115#! DE-He115 He 115 Deutsch-Amerikanisches Institut Heidelberg, Bibliothek +http://lobid.org/organisations/DE-He202#! DE-He202 He 202 Dokumentations- und Kulturzentrum Deutscher Sinti und Roma, Bibliothek +http://lobid.org/organisations/DE-475#! DE-475 475 Stadtarchiv, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-93-32#! DE-93-32 93/32 Universität Stuttgart, Institut für Eisenbahn- und Verkehrswesen, Bibliothek +http://lobid.org/organisations/DE-93-34#! DE-93-34 93/34 Universität Stuttgart, Institut für Automatisierungstechnik und Softwaresysteme, Bibliothek +http://lobid.org/organisations/DE-93-48#! DE-93-48 93/48 Universität Stuttgart, Institut für Maschinenelemente, Bibliothek +http://lobid.org/organisations/DE-93-59#! DE-93-59 93/59 Universität Stuttgart, Institut für Raumordnung und Entwicklungsplanung, Bibliothek +http://lobid.org/organisations/DE-93-60#! DE-93-60 93/60 Universität Stuttgart, Institut für Tragkonstruktionen und Konstruktives Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-69#! DE-93-69 93/69 Universität Stuttgart, Institut für Mikrointegration, Bibliothek +http://lobid.org/organisations/DE-93-102#! DE-93-102 93/102 Universität Stuttgart, Institut für Siedlungswasserbau, Wassergüte- und Abfallwirtschaft, Bibliothek +http://lobid.org/organisations/DE-93-137#! DE-93-137 93/137 Universität Stuttgart, Institut für Konstruktion und Entwurf, Bibliothek +http://lobid.org/organisations/DE-93-141#! DE-93-141 93/141 Universität Stuttgart, Institut für Polymerchemie, Lehrstuhl für Makromolekulare Stoffe und Faserchemie, Bibliothek +http://lobid.org/organisations/DE-93-150#! DE-93-150 93/150 Universität Stuttgart, Institut für Gebäudeenergetik, Thermotechnik und Energiespeicherung (IGTE), Bibliothek Pfaffenwaldring 35 +http://lobid.org/organisations/DE-93-154#! DE-93-154 93/154 Universität Stuttgart, Institut für Konstruktionstechnik und Technisches Design, Bibliothek +http://lobid.org/organisations/DE-93-171#! DE-93-171 93/171 Universität Stuttgart, Institut für Halbleiteroptik und Funktionelle Grenzflächen, Bibliothek +http://lobid.org/organisations/DE-93-188#! DE-93-188 93/188 Universität Stuttgart, Institut für Raumkonzeptionen und Grundlagen des Entwerfens , Bibliothek +http://lobid.org/organisations/DE-93-197#! DE-93-197 93/197 Universität Stuttgart, Institut für Statik und Dynamik der Luft- und Raumfahrtkonstruktionen, Bibliothek +http://lobid.org/organisations/DE-93-199#! DE-93-199 93/199 Universität Stuttgart, Institut für Mikrobiologie, Bibliothek +http://lobid.org/organisations/DE-100-140#! DE-100-140 100/140 Institut für Ernährungswissenschaften der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-310#! DE-100-310 100/310 Institut für Bodenkunde und Standortslehre der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-340#! DE-100-340 100/340 Institut für Kulturpflanzenwissenschaften der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-460#! DE-100-460 100/460 Institut für Nutztierwissenschaften der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-520#! DE-100-520 100/520 Institut für Volkswirtschaftslehre der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-570#! DE-100-570 100/570 Institut für Marketing & Management der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-720#! DE-100-720 100/720 Landessaatzuchtanstalt, Bibliothek +http://lobid.org/organisations/DE-100-730#! DE-100-730 100/730 Landesanstalt für Bienenkunde, Bibliothek +http://lobid.org/organisations/DE-Beu1#! DE-Beu1 Beu 1 Erzabtei St. Martin zu Beuron, Bibliothek +http://lobid.org/organisations/DE-Rtw1#! DE-Rtw1 Rtw 1 Albertus-Magnus-Gymnasium, Alte Gymnasialbibliothek +http://lobid.org/organisations/DE-21-10#! DE-21-10 21/10 Universitätsbibliothek Tübingen, Bereichsbibliothek Geowissenschaften +http://lobid.org/organisations/DE-21-18#! DE-21-18 21/18 Hautklinik, Bibliothek +http://lobid.org/organisations/DE-21-21#! DE-21-21 21/21 Universitätsklinikum Tübingen, Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde, Bibliothek +http://lobid.org/organisations/DE-21-25#! DE-21-25 21/25 Musikwissenschaftliches Institut, Bibliothek +http://lobid.org/organisations/DE-21-28#! DE-21-28 21/28 Institut für Astronomie und Astrophysik, Abteilung Astronomie, Bibliothek +http://lobid.org/organisations/DE-21-32c#! DE-21-32c 21/32c Historisches Seminar, Abteilung für Neuere Geschichte, Bibliothek +http://lobid.org/organisations/DE-21-37#! DE-21-37 21/37 Institut für Sportwissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-52#! DE-21-52 21/52 Ludwig-Uhland-Institut für Empirische Kulturwissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-85#! DE-21-85 21/85 Universität Tübingen, Institut für Soziologie, Bibliothek +http://lobid.org/organisations/DE-21-86#! DE-21-86 21/86 Zentrum für Datenverarbeitung, Bibliothek +http://lobid.org/organisations/DE-21-89#! DE-21-89 21/89 Institut für Arbeits- und Sozialmedizin, Bibliothek +http://lobid.org/organisations/DE-21-98#! DE-21-98 21/98 Fachbibliothek Mathematik und Physik / Bereich Physik - Universität Tübingen +http://lobid.org/organisations/DE-21-109#! DE-21-109 21/109 Asien-Orient-Institut, Abteilung für Sinologie und Koreanistik, Koreanistik Bibliothek +http://lobid.org/organisations/DE-21-110#! DE-21-110 21/110 Universität Tübingen, Institut für Kriminologie, Bibliothek +http://lobid.org/organisations/DE-21-120#! DE-21-120 21/120 Asien-Orient-Institut, Abteilung für Japanologie, Bibliothek +http://lobid.org/organisations/DE-21-123#! DE-21-123 21/123 Medizinbibliothek Tübingen +http://lobid.org/organisations/DE-293#! DE-293 293 Stadtbibliothek Reutlingen +http://lobid.org/organisations/DE-156#! DE-156 156 Fürstlich Hohenzollernsche Sammlungen und Hofbibliothek +http://lobid.org/organisations/DE-31#! DE-31 31 Badische Landesbibliothek +http://lobid.org/organisations/DE-90#! DE-90 90 Karlsruher Institut für Technologie, KIT-Bibliothek +http://lobid.org/organisations/DE-90-5#! DE-90-5 90/5 KIT-Bibliothek, Fachbibliothek Mathematik +http://lobid.org/organisations/DE-90-7#! DE-90-7 90/7 KIT-Bibliothek, Bibliothek des Instituts für Analysis / IANA2 +http://lobid.org/organisations/DE-90-67#! DE-90-67 90/67 KIT-Bibliothek, Bibliothek des Instituts für Kunst- und Baugeschichte, Fachgebiet Bau- und Architekturgeschichte +http://lobid.org/organisations/DE-90-83#! DE-90-83 90/83 KIT-Bibliothek, Bibliothek der Versuchsanstalt für Stahl, Holz und Steine, Abteilung Holzbau und Baukonstruktionen +http://lobid.org/organisations/DE-90-85#! DE-90-85 90/85 KIT-Bibliothek, Bibliothek des Instituts für Technologie und Management im Baubetrieb +http://lobid.org/organisations/DE-90-88#! DE-90-88 90/88 KIT-Bibliothek, Bibliothek des Institut für Massivbau und Baustofftechnologie, MPA Karlsruhe +http://lobid.org/organisations/DE-90-95#! DE-90-95 90/95 KIT-Bibliothek, Studiengangsbibliothek Geodäsie und Geoinformatik +http://lobid.org/organisations/DE-90-99#! DE-90-99 90/99 KIT-Bibliothek, Bibliothek des Instituts für Mess- und Regelungstechnik mit Maschinenlaboratorium +http://lobid.org/organisations/DE-90-108#! DE-90-108 90/108 KIT-Bibliothek, Bibliothek des Instituts für Strömungsmechanik +http://lobid.org/organisations/DE-90-111#! DE-90-111 90/111 KIT-Bibliothek, Bibliothek des Instituts für Thermische Strömungsmaschinen +http://lobid.org/organisations/DE-90-132#! DE-90-132 90/132 KIT-Bibliothek, Bibliothek des Instituts für Biomedizinische Technik +http://lobid.org/organisations/DE-90-133#! DE-90-133 90/133 KIT-Bibliothek, Bibliothek des Elektrotechnischen Instituts +http://lobid.org/organisations/DE-90-134#! DE-90-134 90/134 KIT-Bibliothek, Bibliothek des Instituts für Elektroenergiesysteme und Hochspannungstechnik +http://lobid.org/organisations/DE-90-148#! DE-90-148 90/148 KIT-Bibliothek, Bibliothek der Fakultät für Informatik +http://lobid.org/organisations/DE-Ka85#! DE-Ka85 Ka 85 Karlsruher Institut für Technologie, KIT-Bibliothek / Zentralbibliothek Nord +http://lobid.org/organisations/DE-Ka81#! DE-Ka81 Ka 81 Landesarchiv Baden-Württemberg, Abteilung Generallandesarchiv Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-Bret1#! DE-Bret1 Bret 1 Melanchthonhaus, Bibliothek +http://lobid.org/organisations/DE-25-21#! DE-25-21 25/21 Klinik für Augenheilkunde, Bibliothek +http://lobid.org/organisations/DE-25-23#! DE-25-23 25/23 Universität Freiburg, Romanisches Seminar, Bibliothek +http://lobid.org/organisations/DE-25-34#! DE-25-34 25/34 Bibliothek für Physik +http://lobid.org/organisations/DE-25-36#! DE-25-36 25/36 Universität Freiburg, Physiologisches Institut, Bibliothek +http://lobid.org/organisations/DE-25-57#! DE-25-57 25/57 Institut für Forst- und Umweltpolitik, Arbeitsbereich Forstgeschichte, Bibliothek +http://lobid.org/organisations/DE-25-58#! DE-25-58 25/58 Institut für Waldwachstum, Abteilung für Waldwachstum, Bibliothek +http://lobid.org/organisations/DE-25-67#! DE-25-67 25/67 Institut für Sport und Sportwissenschaft, Bibliothek +http://lobid.org/organisations/DE-25-74#! DE-25-74 25/74 Institut für Pharmazeutische Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-25-81#! DE-25-81 25/81 Institut für Rechtsgeschichte und Geschichtliche Rechtsvergleichung, Bibliothek +http://lobid.org/organisations/DE-25-104#! DE-25-104 25/104 Institut für Humangenetik und Anthropologie, Bibliothek +http://lobid.org/organisations/DE-25-124#! DE-25-124 25/124 Slavisches Seminar, Bibliothek +http://lobid.org/organisations/DE-LUEN3#! DE-LUEN3 Niedersächsisches Oberverwaltungsgericht. Bibliothek +http://lobid.org/organisations/DE-MUS-025227#! DE-MUS-025227 Autoren-Archiv Dillenburger +http://lobid.org/organisations/DE-MUS-034211#! DE-MUS-034211 Städtisches Heimatmuseum ""Grafschaft Dassel"" +http://lobid.org/organisations/DE-MUS-038020#! DE-MUS-038020 Museum Priesterhäuser +http://lobid.org/organisations/DE-MUS-039127#! DE-MUS-039127 Aussichts- und Museumsturm Bismarckhöhe mit Christian Morgenstern Literatur-Museum +http://lobid.org/organisations/DE-MUS-039627#! DE-MUS-039627 Museum Malchin +http://lobid.org/organisations/DE-MUS-039721#! DE-MUS-039721 Comic Museum Neubrandenburg +http://lobid.org/organisations/DE-MUS-040028#! DE-MUS-040028 Erinnerungs- und Begegnungsstätte Grenzkontrollpunkt Drewitz-Dreilinden +http://lobid.org/organisations/DE-MUS-040820#! DE-MUS-040820 Schloss Leitzkau +http://lobid.org/organisations/DE-MUS-041323#! DE-MUS-041323 Erwin Hymer Museum +http://lobid.org/organisations/DE-MUS-041521#! DE-MUS-041521 Pflegemuseum Kaiserswerth +http://lobid.org/organisations/DE-MUS-044426#! DE-MUS-044426 Sammlung Heinz Kirchoff +http://lobid.org/organisations/DE-MUS-046328#! DE-MUS-046328 Friedrich-Schiller-Universität / Seismogramm-Archiv +http://lobid.org/organisations/DE-MUS-048433#! DE-MUS-048433 Städtische Museen+Stadt Freiburg im Breisgau +http://lobid.org/organisations/DE-MUS-049827#! DE-MUS-049827 Historisches Museum im Schloss Broich +http://lobid.org/organisations/DE-MUS-050124#! DE-MUS-050124 Automuseum Prototyp +http://lobid.org/organisations/DE-MUS-050322#! DE-MUS-050322 Turmhügelburg Lütjenburg +http://lobid.org/organisations/DE-MUS-050822#! DE-MUS-050822 Kloster Alpirsbach mit Museum +http://lobid.org/organisations/DE-MUS-051627#! DE-MUS-051627 document niedermünster +http://lobid.org/organisations/DE-MUS-051721#! DE-MUS-051721 Museum Ravensburger +http://lobid.org/organisations/DE-MUS-052422#! DE-MUS-052422 Museum Burg Miltenberg +http://lobid.org/organisations/DE-MUS-052526#! DE-MUS-052526 Hefterbau mit Barocksaal +http://lobid.org/organisations/DE-MUS-053029#! DE-MUS-053029 Sächsisches Apothekenmuseum Leipzig +http://lobid.org/organisations/DE-MUS-053227#! DE-MUS-053227 Unikatum Kindermuseum +http://lobid.org/organisations/DE-MUS-053425#! DE-MUS-053425 Automuseum Lemgo +http://lobid.org/organisations/DE-MUS-053821#! DE-MUS-053821 Taberna archaeologica +http://lobid.org/organisations/DE-MUS-054522#! DE-MUS-054522 Straßenbahnverein der Stadt Trier 1924 e.V. +http://lobid.org/organisations/DE-MUS-054720#! DE-MUS-054720 Gedenk- und Begegnungsstätte Leistikow Potsdam +http://lobid.org/organisations/DE-MUS-054824#! DE-MUS-054824 Porzellanmuseum Münster +http://lobid.org/organisations/DE-MUS-055723#! DE-MUS-055723 Wirtschaftsmuseum Ravensburg +http://lobid.org/organisations/DE-MUS-055921#! DE-MUS-055921 Club-Museum +http://lobid.org/organisations/DE-MUS-056226#! DE-MUS-056226 Mendelssohn-Remise +http://lobid.org/organisations/DE-MUS-056320#! DE-MUS-056320 Schul- und Stadtteilmuseum Berlin-Friedenau +http://lobid.org/organisations/DE-MUS-056726#! DE-MUS-056726 Mahnmal St. Nikolai +http://lobid.org/organisations/DE-MUS-057323#! DE-MUS-057323 Museum Specken +http://lobid.org/organisations/DE-MUS-058420#! DE-MUS-058420 Kunstsammlung im Rektoratsgebäude +http://lobid.org/organisations/DE-MUS-062320#! DE-MUS-062320 Kloster Marienwerder +http://lobid.org/organisations/DE-MUS-062726#! DE-MUS-062726 Historisches Archiv +http://lobid.org/organisations/DE-MUS-063323#! DE-MUS-063323 MAC-Museum Art & Cars +http://lobid.org/organisations/DE-MUS-063729#! DE-MUS-063729 BlackBox Kalter Krieg +http://lobid.org/organisations/DE-MUS-064628#! DE-MUS-064628 Kaiserpfalz Werla Archäologischer Park +http://lobid.org/organisations/DE-MUS-064920#! DE-MUS-064920 Dokumentationsstätte Gnadenkirche Tidofeld +http://lobid.org/organisations/DE-MUS-066426#! DE-MUS-066426 Heimat- und Erlebnismuseum +http://lobid.org/organisations/DE-MUS-067825#! DE-MUS-067825 Museum für zeitgenössische Kunst - Dieter Kunerth +http://lobid.org/organisations/DE-MUS-070628#! DE-MUS-070628 Stiftungen der Sparkasse Holstein, Sparkassen-Kulturstiftung Stormarn +http://lobid.org/organisations/DE-MUS-071027#! DE-MUS-071027 Knopfmacher- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-071829#! DE-MUS-071829 Elektromuseum im Kraftwerk Marienberg +http://lobid.org/organisations/DE-MUS-072520#! DE-MUS-072520 Trachtenkulturmuseum +http://lobid.org/organisations/DE-MUS-072926#! DE-MUS-072926 Museum für Archäologie und Gemeindegeschichte +http://lobid.org/organisations/DE-MUS-073429#! DE-MUS-073429 Heimatmuseum neben der Kirche +http://lobid.org/organisations/DE-MUS-074224#! DE-MUS-074224 Olympiamuseum +http://lobid.org/organisations/DE-MUS-075321#! DE-MUS-075321 Schlachtereimuseum Vörden +http://lobid.org/organisations/DE-MUS-075529#! DE-MUS-075529 Heimatmuseum Döhren +http://lobid.org/organisations/DE-MUS-076022#! DE-MUS-076022 Museumsscheune Jesteburg +http://lobid.org/organisations/DE-MUS-077025#! DE-MUS-077025 Museum für Hamelner Automobilgeschichte +http://lobid.org/organisations/DE-MUS-077129#! DE-MUS-077129 Die bewegliche Letter +http://lobid.org/organisations/DE-MUS-077421#! DE-MUS-077421 Feuerwehrmuseum Hameln-Pyrmont +http://lobid.org/organisations/DE-MUS-077723#! DE-MUS-077723 Heimatstube Deiken-Wöhler-Hof +http://lobid.org/organisations/DE-MUS-077827#! DE-MUS-077827 Fürstliche Hofreitschule Bückeburg +http://lobid.org/organisations/DE-MUS-078226#! DE-MUS-078226 Waldarbeiter Museum Becklinger Holz +http://lobid.org/organisations/DE-MUS-078528#! DE-MUS-078528 Heimatmuseum Bakede und Handwerksmuseum +http://lobid.org/organisations/DE-MUS-078726#! DE-MUS-078726 Worpsweder Kunsthalle +http://lobid.org/organisations/DE-MUS-079927#! DE-MUS-079927 FC Bayern Erlebniswelt +http://lobid.org/organisations/DE-MUS-080120#! DE-MUS-080120 Münchner Rotkreuzmuseum +http://lobid.org/organisations/DE-MUS-080224#! DE-MUS-080224 Museum der Marianischen Männerkongregation in der Bürgersaalkirche +http://lobid.org/organisations/DE-MUS-080422#! DE-MUS-080422 Walther Collection +http://lobid.org/organisations/DE-MUS-080922#! DE-MUS-080922 Museum im Wächterhaus +http://lobid.org/organisations/DE-MUS-081029#! DE-MUS-081029 Tertiärwelt Aubenham +http://lobid.org/organisations/DE-MUS-082022#! DE-MUS-082022 Fleischmichlhaus Pavelsbach +http://lobid.org/organisations/DE-MUS-082220#! DE-MUS-082220 Kulturhaus der Otto-Hellmeier Stiftung +http://lobid.org/organisations/DE-MUS-082720#! DE-MUS-082720 Dorfmuseum Rott +http://lobid.org/organisations/DE-MUS-082928#! DE-MUS-082928 Weinmuseum +http://lobid.org/organisations/DE-MUS-084424#! DE-MUS-084424 Klassik Stiftung Weimar/ Kassengewölbe +http://lobid.org/organisations/DE-MUS-085229#! DE-MUS-085229 Fondation Kubach - Wilmsen Skulpturenmuseum +http://lobid.org/organisations/DE-MUS-085625#! DE-MUS-085625 Geologisches Freimuseum Bettendorf +http://lobid.org/organisations/DE-MUS-085927#! DE-MUS-085927 Mühle vor dem Obertor - Bauernmuseum Braubach +http://lobid.org/organisations/DE-MUS-086128#! DE-MUS-086128 Email-Museum in der Ritter von Böhl-Stiftung +http://lobid.org/organisations/DE-MUS-087121#! DE-MUS-087121 Besucherbergwerk Barbara-Hoffnung Fell +http://lobid.org/organisations/DE-MUS-087527#! DE-MUS-087527 Ziegeleimuseum Sondernheim +http://lobid.org/organisations/DE-MUS-087621#! DE-MUS-087621 Stiftung Simonshof +http://lobid.org/organisations/DE-MUS-088520#! DE-MUS-088520 Keltenwelt am Glauberg +http://lobid.org/organisations/DE-MUS-090226#! DE-MUS-090226 Bauernhofmuseum auf dem Erlenhof +http://lobid.org/organisations/DE-MUS-091229#! DE-MUS-091229 Senne Informationszentrum/ NABU-Infozentrum +http://lobid.org/organisations/DE-MUS-091427#! DE-MUS-091427 Industriemuseum Trafostation ""Amalienhütte"" +http://lobid.org/organisations/DE-MUS-092326#! DE-MUS-092326 Deutz Thomas kleines Motoren Museum +http://lobid.org/organisations/DE-MUS-092722#! DE-MUS-092722 Heimatmuseum Kaisersesch +http://lobid.org/organisations/DE-MUS-092920#! DE-MUS-092920 1. FC Kaiserslautern Museum +http://lobid.org/organisations/DE-MUS-093329#! DE-MUS-093329 Infozentrum Schloßgarten im Kelterhaus +http://lobid.org/organisations/DE-MUS-093527#! DE-MUS-093527 Historisches Weinmmuseum +http://lobid.org/organisations/DE-MUS-094124#! DE-MUS-094124 Garnisonsmuseum +http://lobid.org/organisations/DE-MUS-094228#! DE-MUS-094228 Sammlungen der Johannes Gutenberg-Universität Mainz +http://lobid.org/organisations/DE-MUS-094728#! DE-MUS-094728 Historische Wassermühle ""Dickendorfer Mühle"" +http://lobid.org/organisations/DE-MUS-095023#! DE-MUS-095023 Erstes Rundfunkmuseum Rheinland-Pfalz +http://lobid.org/organisations/DE-MUS-095429#! DE-MUS-095429 Nähmaschinenmuseum +http://lobid.org/organisations/DE-MUS-095627#! DE-MUS-095627 Heimatmuseum Sünching +http://lobid.org/organisations/DE-MUS-095825#! DE-MUS-095825 Europäisches Flakon-Glasmuseum +http://lobid.org/organisations/DE-MUS-095929#! DE-MUS-095929 Michael-Kirschner-Kulturmuseum +http://lobid.org/organisations/DE-MUS-097623#! DE-MUS-097623 Das kleine Museum - Kultur auf der Peunt +http://lobid.org/organisations/DE-MUS-098522#! DE-MUS-098522 Stiftung Schloss Fachsenfeld +http://lobid.org/organisations/DE-MUS-098824#! DE-MUS-098824 Heimat- und Bauernmuseum Mösbach +http://lobid.org/organisations/DE-MUS-099025#! DE-MUS-099025 Heimatmuseum Affalterbach +http://lobid.org/organisations/DE-MUS-099223#! DE-MUS-099223 Mühlenwegmuseum +http://lobid.org/organisations/DE-MUS-099921#! DE-MUS-099921 Schmiede Kübler +http://lobid.org/organisations/DE-MUS-100323#! DE-MUS-100323 Mineralienmuseum in der Villa Berberich +http://lobid.org/organisations/DE-MUS-100823#! DE-MUS-100823 Museum im Neunerbeck, Kardelmuseum und Zunftmuseum +http://lobid.org/organisations/DE-MUS-101222#! DE-MUS-101222 Nistkasten- und Vogelschutzmuseum +http://lobid.org/organisations/DE-MUS-101826#! DE-MUS-101826 Museum Schönrainmühle +http://lobid.org/organisations/DE-MUS-102621#! DE-MUS-102621 Zunft-Museum Narrenzunft Frohsinn +http://lobid.org/organisations/DE-MUS-102923#! DE-MUS-102923 Museum Nussdorf +http://lobid.org/organisations/DE-MUS-103228#! DE-MUS-103228 Sieger Köder Museum Ellwangen - Bild und Bibel +http://lobid.org/organisations/DE-MUS-105120#! DE-MUS-105120 C.P.E. Bach-Museum +http://lobid.org/organisations/DE-MUS-105422#! DE-MUS-105422 Gedenkstätte KZ-Lichtenburg Prettin +http://lobid.org/organisations/DE-MUS-107022#! DE-MUS-107022 Aartalmuseum Oberneisen +http://lobid.org/organisations/DE-MUS-107928#! DE-MUS-107928 Vulkanpark +http://lobid.org/organisations/DE-MUS-109226#! DE-MUS-109226 Privatmuseum M & M Sendelbach +http://lobid.org/organisations/DE-MUS-109320#! DE-MUS-109320 Buddha-Museum Traben-Trarbach +http://lobid.org/organisations/DE-MUS-109424#! DE-MUS-109424 Nostalgikum Uersfeld +http://lobid.org/organisations/DE-MUS-110221#! DE-MUS-110221 Museum für Fotografie und Fotografenhandwerk +http://lobid.org/organisations/DE-MUS-110929#! DE-MUS-110929 Museum Hasemann-Liebich +http://lobid.org/organisations/DE-MUS-112123#! DE-MUS-112123 Eisenbahnmuseum +http://lobid.org/organisations/DE-MUS-112227#! DE-MUS-112227 Museum Frieder Burda/ Salon Berlin +http://lobid.org/organisations/DE-MUS-112321#! DE-MUS-112321 The Wall Museum +http://lobid.org/organisations/DE-MUS-112529#! DE-MUS-112529 Sammlung_Museum für Humor und Satire +http://lobid.org/organisations/DE-MUS-112623#! DE-MUS-112623 Heimatmuseum Bad Bodendorf +http://lobid.org/organisations/DE-MUS-114629#! DE-MUS-114629 Heimatmuseum Igersheim +http://lobid.org/organisations/DE-MUS-114723#! DE-MUS-114723 Heimatmuseum Immendingen +http://lobid.org/organisations/DE-MUS-114921#! DE-MUS-114921 Handwerksmuseum Kehl-Kork +http://lobid.org/organisations/DE-MUS-115028#! DE-MUS-115028 Hammerschmiede im Muckental +http://lobid.org/organisations/DE-MUS-115424#! DE-MUS-115424 Albert-Schweitzer-Haus +http://lobid.org/organisations/DE-MUS-116125#! DE-MUS-116125 Bundesarchiv - Außenstelle Ludwigsburg +http://lobid.org/organisations/DE-MUS-116229#! DE-MUS-116229 literaturforum Schillerhaus +http://lobid.org/organisations/DE-MUS-116427#! DE-MUS-116427 Zeitgeschichtliches Museum Mannheim +http://lobid.org/organisations/DE-MUS-116729#! DE-MUS-116729 Steinhauerstube. Das Dorfmuseum in Schmie +http://lobid.org/organisations/DE-MUS-117128#! DE-MUS-117128 Museum Truppenübungsplatz Münsingen +http://lobid.org/organisations/DE-MUS-117722#! DE-MUS-117722 Fritz und Hildegard Ruoff-Stiftung +http://lobid.org/organisations/DE-MUS-117920#! DE-MUS-117920 Museum im Waldenserhäusle +http://lobid.org/organisations/DE-MUS-118027#! DE-MUS-118027 Frenssen-Haus +http://lobid.org/organisations/DE-MUS-118329#! DE-MUS-118329 Galileo Fehmarn +http://lobid.org/organisations/DE-MUS-118923#! DE-MUS-118923 Provinzial Kunstsammlung +http://lobid.org/organisations/DE-MUS-119322#! DE-MUS-119322 Museumsstellwerk +http://lobid.org/organisations/DE-MUS-120025#! DE-MUS-120025 Heimatstube Achenbach +http://lobid.org/organisations/DE-MUS-120129#! DE-MUS-120129 Werburg-Museum +http://lobid.org/organisations/DE-MUS-121122#! DE-MUS-121122 NaturparkWelten - Grenzbahnhof Eisenstein +http://lobid.org/organisations/DE-MUS-121528#! DE-MUS-121528 Erstes Berliner DDR-Motorradmuseum +http://lobid.org/organisations/DE-MUS-122323#! DE-MUS-122323 Museums-Berwerk Schauinsland +http://lobid.org/organisations/DE-MUS-122625#! DE-MUS-122625 Öchsle-Museumsschmalspurbahn +http://lobid.org/organisations/DE-MUS-122729#! DE-MUS-122729 Küfermuseum +http://lobid.org/organisations/DE-MUS-123024#! DE-MUS-123024 Geologisch-Paläontologisches Museum im GTO +http://lobid.org/organisations/DE-MUS-123128#! DE-MUS-123128 Museum zur Geschichte Ottenhöfens +http://lobid.org/organisations/DE-MUS-123722#! DE-MUS-123722 Energiemuseum Rickenbach +http://lobid.org/organisations/DE-MUS-125228#! DE-MUS-125228 Leiningerland Museum an der Münze +http://lobid.org/organisations/DE-MUS-125624#! DE-MUS-125624 GilardiAusstellung +http://lobid.org/organisations/DE-MUS-126127#! DE-MUS-126127 Weißes Schloss +http://lobid.org/organisations/DE-MUS-126721#! DE-MUS-126721 Schulmuseum im Klösterle +http://lobid.org/organisations/DE-MUS-127526#! DE-MUS-127526 Glasmuseum Spiegelberg +http://lobid.org/organisations/DE-MUS-128029#! DE-MUS-128029 Bauernhausmuseum Schneiderhof +http://lobid.org/organisations/DE-MUS-128623#! DE-MUS-128623 Feuerwehr-Helm-Museum +http://lobid.org/organisations/DE-MUS-128727#! DE-MUS-128727 Rebay-Haus +http://lobid.org/organisations/DE-MUS-129626#! DE-MUS-129626 Museum in der Klostermühle +http://lobid.org/organisations/DE-MUS-131228#! DE-MUS-131228 Waldenser-Museumsstüble +http://lobid.org/organisations/DE-MUS-131728#! DE-MUS-131728 Heimathues Kittken +http://lobid.org/organisations/DE-MUS-132627#! DE-MUS-132627 Museum ""Dorfgeschichte"" +http://lobid.org/organisations/DE-MUS-133120#! DE-MUS-133120 Heimatstube Gilsbach +http://lobid.org/organisations/DE-MUS-133422#! DE-MUS-133422 Heimatstube Niederdresselndorf +http://lobid.org/organisations/DE-MUS-133724#! DE-MUS-133724 Heimatmuseum Ostenland +http://lobid.org/organisations/DE-MUS-134425#! DE-MUS-134425 Dommuseum Ottonianum Magdeburg +http://lobid.org/organisations/DE-MUS-135022#! DE-MUS-135022 Schloss Mirow +http://lobid.org/organisations/DE-MUS-135324#! DE-MUS-135324 Kleinbahnmuseum Enger +http://lobid.org/organisations/DE-MUS-162514#! DE-MUS-162514 Herzog August Bibliothek +http://lobid.org/organisations/DE-MUS-233210#! DE-MUS-233210 Landesarchiv Berlin +http://lobid.org/organisations/DE-MUS-308418#! DE-MUS-308418 Bibelmuseum +http://lobid.org/organisations/DE-MUS-367917#! DE-MUS-367917 Literaturarchiv Sulzbach-Rosenberg e.V. - Literaturhaus Oberpfalz +http://lobid.org/organisations/DE-MUS-616313#! DE-MUS-616313 Kunsthalle Wilhelmshaven +http://lobid.org/organisations/DE-MUS-655214#! DE-MUS-655214 Gotisches Haus. Bauen und Wohnen in der Spandauer Altstadt +http://lobid.org/organisations/DE-MUS-659716#! DE-MUS-659716 Begegnungsstätte Alte Synagoge Wuppertal +http://lobid.org/organisations/DE-MUS-677610#! DE-MUS-677610 Raufutterspeicher +http://lobid.org/organisations/DE-MUS-825418#! DE-MUS-825418 Kreismuseum Oranienburg +http://lobid.org/organisations/DE-MUS-846217#! DE-MUS-846217 Staatliche Kunstsammlungen Dresden / Neues Grünes Gewölbe +http://lobid.org/organisations/DE-MUS-929317#! DE-MUS-929317 Deutsches Schilder- und Leuchtreklamemuseum Lahr +http://lobid.org/organisations/DE-MUS-137924#! DE-MUS-137924 Museumsstellmacherei Langenrehm +http://lobid.org/organisations/DE-MUS-138323#! DE-MUS-138323 experimenta +http://lobid.org/organisations/DE-MUS-140227#! DE-MUS-140227 Chamisso Museum im Kunersdorfer Musenhof +http://lobid.org/organisations/DE-MUS-140321#! DE-MUS-140321 Dichterhaus Brückner-Kühner +http://lobid.org/organisations/DE-MUS-142025#! DE-MUS-142025 Fahrzeug- und Technikmuseum +http://lobid.org/organisations/DE-MUS-144021#! DE-MUS-144021 Radio- und Telefonmuseum +http://lobid.org/organisations/DE-MUS-146121#! DE-MUS-146121 Museum im Lothringer Bauernhaus +http://lobid.org/organisations/DE-MUS-146725#! DE-MUS-146725 Maschinenbau Herzog +http://lobid.org/organisations/DE-MUS-147124#! DE-MUS-147124 Museum für Kalligrafie und Handschrift +http://lobid.org/organisations/DE-MUS-146829#! DE-MUS-146829 Blieskasteler Uhrenmuseum La Pendule +http://lobid.org/organisations/DE-MUS-149724#! DE-MUS-149724 HausBoden +http://lobid.org/organisations/DE-MUS-150229#! DE-MUS-150229 Pharmakognostische Sammlung der Philipps-Universität Marburg +http://lobid.org/organisations/DE-MUS-150323#! DE-MUS-150323 Zoologische Sammlung der Philipps-Universität Marburg +http://lobid.org/organisations/DE-4136#! DE-4136 4136 Stadtbücherei Weinsberg +http://lobid.org/organisations/DE-4143#! DE-4143 Magnus-Hirschfeld-Gesellschaft e.V. +http://lobid.org/organisations/DE-4148#! DE-4148 Kreisarchiv Mittelsachsen +http://lobid.org/organisations/DE-4153#! DE-4153 Akademie der Wissenschaften und der Literatur | Mainz +http://lobid.org/organisations/DE-4155#! DE-4155 LithoCollect +http://lobid.org/organisations/DE-D13#! DE-D13 D 13 Staatliche Kunstsammlungen Dresden, Kunstbibliothek +http://lobid.org/organisations/DE-4157#! DE-4157 4157 Gemeindebücherei Schacht-Audorf +http://lobid.org/organisations/DE-MUS-145524#! DE-MUS-145524 Erinnerungsort BADEHAUS +http://lobid.org/organisations/DE-4165#! DE-4165 4165 NI-LastCopies - Kooperative Archivierung von Printmedien in niedersächsischen Bibliotheken +http://lobid.org/organisations/DE-4168#! DE-4168 Stadtarchiv Ahaus +http://lobid.org/organisations/DE-4171#! DE-4171 Artothek Charlottenburg-Wilmersdorf +http://lobid.org/organisations/DE-4173#! DE-4173 Stadtarchiv Delmenhorst +http://lobid.org/organisations/DE-MUS-161328#! DE-MUS-161328 Julia Stoschek Collection Berlin +http://lobid.org/organisations/DE-MUS-161828#! DE-MUS-161828 Kindermuseum unterm Dach +http://lobid.org/organisations/DE-MUS-162227#! DE-MUS-162227 Kreidemuseum Rügen +http://lobid.org/organisations/DE-MUS-163720#! DE-MUS-163720 Militärgeschichtliche Sammlung Einsatzführungsbereich 2 - Bunkermuseum "Bunker Erich" +http://lobid.org/organisations/DE-MUS-163824#! DE-MUS-163824 Heimatmuseum Erndtebrück +http://lobid.org/organisations/DE-MUS-164129#! DE-MUS-164129 Julia Stoschek Collection Düsseldorf +http://lobid.org/organisations/DE-4179#! DE-4179 4179 Gemeindebücherei Trappenkamp +http://lobid.org/organisations/DE-4180#! DE-4180 Landesarchäologie Bremen +http://lobid.org/organisations/DE-MUS-165122#! DE-MUS-165122 Bibel Museum Bayern +http://lobid.org/organisations/DE-4184#! DE-4184 4184 Museum August Kestner, Bibliothek +http://lobid.org/organisations/DE-MUS-164223#! DE-MUS-164223 Burgmuseum Wachtenburg +http://lobid.org/organisations/DE-MUS-163626#! DE-MUS-163626 Rudolf Balds historischer Fahrzeugschau +http://lobid.org/organisations/DE-4187#! DE-4187 Digitales Deutsches Frauenarchiv +http://lobid.org/organisations/DE-4189#! DE-4189 4189 Landesamt für Schule und Bildung - Standort Leipzig, Bibliothek der Lehrerausbildungsstätte +http://lobid.org/organisations/DE-4196#! DE-4196 4196 Robert-Bosch-Gymnasium Gerlingen, Bibliothek +http://lobid.org/organisations/DE-MUS-168923#! DE-MUS-168923 Historische Nagelschmiede Sitzerath +http://lobid.org/organisations/DE-4204#! DE-4204 4204 Bibliothek des Instituts für Staatskirchenrecht der Diözesen Deutschlands +http://lobid.org/organisations/DE-4207#! DE-4207 4207 Gemeindebibliothek Neukirchen/Erzgeb. +http://lobid.org/organisations/DE-4213#! DE-4213 Kulturstiftung Meiningen-Eisenach, GB Meininger Museen, Sammlung Musikgeschichte/Max-Reger-Archiv +http://lobid.org/organisations/DE-93-205#! DE-93-205 93/205 Universität Stuttgart, Institut für Biomedizinische Genetik, Bibliothek +http://lobid.org/organisations/DE-MUS-196527#! DE-MUS-196527 Luftfahrtmuseum Wernigerode +http://lobid.org/organisations/DE-D275#! DE-D275 D 275 Evangelische Hochschule Dresden, Bibliothek +http://lobid.org/organisations/DE-4231#! DE-4231 Stadtarchiv Albstadt +http://lobid.org/organisations/DE-6-190#! DE-6-190 6/190 Universität Münster, Institut für Byzantinistik und Neogräzistik, Bibliothek +http://lobid.org/organisations/DE-Bb23#! DE-Bb23 Bb 23 Priesterseminar Bamberg, Bibliothek +http://lobid.org/organisations/DE-567#! DE-567 567 Bücherei Teutschenthal +http://lobid.org/organisations/DE-6-026#! DE-6-026 6/026 Universität Münster, Geobibliothek +http://lobid.org/organisations/DE-6-N#! DE-6-N 6/N Universitäts- und Landesbibliothek Münster, Haus der Niederlande, Fachinformationsdienst Benelux / Low Countries Studies, Bibliothek +http://lobid.org/organisations/DE-4220#! DE-4220 Stiftung Historische Museen Hamburg, Deutsches Hafenmuseum (im Aufbau) +http://lobid.org/organisations/DE-6-191#! DE-6-191 6/191 Universität Münster, Institut für Skandinavistik, Bibliothek +http://lobid.org/organisations/DE-Hed2-3#! DE-Hed2-3 Hed 2/3 Duale Hochschule Baden-Württemberg Heidenheim, Zweigbibliothek Wiblingen +http://lobid.org/organisations/DE-655#! DE-655 655 hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone +http://lobid.org/organisations/DE-MUS-785513#! DE-MUS-785513 Hafenmuseum Speicher XI +http://lobid.org/organisations/DE-B710#! DE-B710 B 710 Stadtbibliothek Charlottenburg-Wilmersdorf, Bezirkszentralbibliothek Heinrich-Schulz-Bibliothek mit Musikabteilung +http://lobid.org/organisations/DE-M498#! DE-M498 M 498 Bayerische Verwaltung der staatlichen Schlösser, Gärten und Seen (BSV), Museumsabteilung, Bibliothek +http://lobid.org/organisations/DE-MUS-169124#! DE-MUS-169124 Museum Rotes Schulhaus +http://lobid.org/organisations/DE-MUS-837916#! DE-MUS-837916 Freilichtanlage 'Bechelsdorfer Schulzenhof' +http://lobid.org/organisations/DE-Ch99#! DE-Ch99 Ch 99 Stadtbibliothek Klingenthal +http://lobid.org/organisations/DE-MUS-073810#! DE-MUS-073810 Hessen Kassel Heritage - Schloßmuseum Wilhelmshöhe +http://lobid.org/organisations/DE-1901#! DE-1901 1901 Stadtbücherei Kolbermoor +http://lobid.org/organisations/DE-F59#! DE-F59 F 59 Deutsche Bundesbank, Bibliothek +http://lobid.org/organisations/DE-MUS-106529#! DE-MUS-106529 Alfred-Ahner-Stiftung Weimar +http://lobid.org/organisations/DE-101d#! DE-101d 101d Deutsche Nationalbibliothek, Deutsches Buch- und Schriftmuseum +http://lobid.org/organisations/DE-1051#! DE-1051 1051 Hochschule für Angewandte Wissenschaften Hof - Hochschule Hof, Bibliothek +http://lobid.org/organisations/DE-MUS-224513#! DE-MUS-224513 Heimatmuseum Leopoldshafen +http://lobid.org/organisations/DE-386#! DE-386 386 Universitätsbibliothek der RPTU in Kaiserslautern +http://lobid.org/organisations/DE-Mb29#! DE-Mb29 Mb 29 Hessisches Staatsarchiv Marburg, Dienstbibliothek +http://lobid.org/organisations/DE-6-057#! DE-6-057 6/057 Universität Münster, PharmaCampus, Bibliothek +http://lobid.org/organisations/DE-MUS-126310#! DE-MUS-126310 AlpenStadtMuseum Sonthofen +http://lobid.org/organisations/DE-752#! DE-752 752 Pädagogische Hochschule, Bibliothek +http://lobid.org/organisations/DE-6-338#! DE-6-338 6/338 Universität Münster, Career Service, Bibliothek +http://lobid.org/organisations/DE-Er95#! DE-Er95 Er 95 Stadtarchiv Erlangen, Bibliothek +http://lobid.org/organisations/DE-MUS-912418#! DE-MUS-912418 Grafikmuseum Stiftung Schreiner +http://lobid.org/organisations/DE-26-187#! DE-26-187 26/187 Universität Gießen, Bibliothek Tierklinik für Reproduktionsmedizin und Neugeborenenkunde +http://lobid.org/organisations/DE-4230#! DE-4230 Stadtarchiv Königswinter +http://lobid.org/organisations/DE-MUS-169228#! DE-MUS-169228 Römischer Vicus Wareswald +http://lobid.org/organisations/DE-6-192#! DE-6-192 6/192 Universität Münster, Seminar für Lateinische Philologie des Mittelalters und der Neuzeit, Bibliothek +http://lobid.org/organisations/DE-MUS-011921#! DE-MUS-011921 Ozeaneum +http://lobid.org/organisations/DE-MUS-073414#! DE-MUS-073414 Hessen Kassel Heritage - Museum Löwenburg +http://lobid.org/organisations/DE-6-056#! DE-6-056 6/056 Universität Münster, Bibliothek für Theoretische und Teilchenphysik +http://lobid.org/organisations/DE-2126#! DE-2126 Forschungsstelle für Zeitgeschichte in Hamburg (FZH), Archiv +http://lobid.org/organisations/DE-MUS-038228#! DE-MUS-038228 Jüdisches Museum mit Ritualbad +http://lobid.org/organisations/DE-38-219#! DE-38-219 38/219 Akademie für europäischen Menschenrechtsschutz, Bibliothek +http://lobid.org/organisations/DE-MUS-997617#! DE-MUS-997617 Gedenkstätte Ehrenhain Zeithain +http://lobid.org/organisations/DE-MUS-998818#! DE-MUS-998818 Dorfmuseum Ringenwalde +http://lobid.org/organisations/DE-1875#! DE-1875 1875 Hochschule für Angewandte Sprachen, Bibliothek +http://lobid.org/organisations/DE-Sp7#! DE-Sp7 Sp 7 Stadtarchiv Speyer +http://lobid.org/organisations/DE-Sta5#! DE-Sta5 Sta 5 Landschaftsverband der ehemaligen Herzogtümer Bremen und Verden, Bibliothek +http://lobid.org/organisations/DE-90-300#! DE-90-300 90/300 KIT-Bibliothek, Bibliothek des Instituts für Technikfolgenabschätzung und Systemanalyse +http://lobid.org/organisations/DE-1888#! DE-1888 1888 Stadtbibliothek Werther (Westf.) +http://lobid.org/organisations/DE-1889#! DE-1889 1889 Malchower Bibliothek ""Leseratten"" e. V. +http://lobid.org/organisations/DE-Ef32#! DE-Ef32 Ef 32 Thüringer Finanzministerium, Bibliothek +http://lobid.org/organisations/DE-1897#! DE-1897 1897 Stadtbiblothek Coswig +http://lobid.org/organisations/DE-1900#! DE-1900 1900 Stadtbibliothek Leuna +http://lobid.org/organisations/DE-MUS-043329#! DE-MUS-043329 Sammlung Philippi +http://lobid.org/organisations/DE-Mue305#! DE-Mue305 Mü 305 Westfälisches Literaturarchiv im LWL-Archivamt für Westfalen +http://lobid.org/organisations/DE-17-3#! DE-17-3 17/3 TU Darmstadt, Universitäts- und Landesbibliothek - Stadtmitte +http://lobid.org/organisations/DE-Stg285#! DE-Stg285 Stg 285 Landesarchiv Baden-Württemberg - Abteilungen 1 und 2, Bibliothek +http://lobid.org/organisations/DE-Goe173#! DE-Goe173 Gö 173 Institut für Historische Landesforschung der Universität Göttingen, Bibliothek +http://lobid.org/organisations/DE-Ka26#! DE-Ka26 Ka 26 Bundesverfassungsgericht, Bibliothek +http://lobid.org/organisations/DE-523#! DE-523 523 Hochschule für Technik und Wirtschaft Berlin, Hochschulbibliothek +http://lobid.org/organisations/DE-Co2#! DE-Co2 Co 2 Carl-Thiem-Klinikum Cottbus gGmbH, Wissenskompetenzzentrum +http://lobid.org/organisations/DE-Bpd1#! DE-Bpd1 Bpd 1 Evangelische Archivstelle Boppard +http://lobid.org/organisations/DE-615#! DE-615 615 Fachinformationsverbund Internationale Beziehungen und Länderkunde +http://lobid.org/organisations/DE-MUS-015418#! DE-MUS-015418 Ägyptisches Museum und Papyrussammlung SMB +http://lobid.org/organisations/DE-MUS-047727#! DE-MUS-047727 Saarländisches Bäckereimuseum +http://lobid.org/organisations/DE-MUS-700052#! DE-MUS-700052 Institut für Museumsforschung, Staatliche Museen zu Berlin +http://lobid.org/organisations/DE-1922#! DE-1922 1922 Deutsches Tagebucharchiv +http://lobid.org/organisations/DE-D277#! DE-D277 D 277 HELLERAU - Europäisches Zentrum der Künste Dresden +http://lobid.org/organisations/DE-30-303#! DE-30-303 30/303 U3L, Fachbibliothek zur Sozialen Gerontologie +http://lobid.org/organisations/DE-He214#! DE-He214 He 214 Werkstatt Ökonomie, Bibliothek +http://lobid.org/organisations/DE-Swr2#! DE-Swr2 Swr 2 Medienzentrum Haus Villigst +http://lobid.org/organisations/DE-540#! DE-540 540 Hochschule für Bildende Künste Dresden, Bibliothek +http://lobid.org/organisations/DE-B1525#! DE-B1525 B 1525 Haus der Wannsee-Konferenz, Joseph-Wulf-Mediothek +http://lobid.org/organisations/DE-Kob7#! DE-Kob7 Kob 7 Universitätsbibliothek Koblenz +http://lobid.org/organisations/DE-1926#! DE-1926 1926 Zentrum für Wissensmanagement, Bibliothek Lippstadt +http://lobid.org/organisations/DE-1928#! DE-1928 1928 Burg-Bücherei Wettin +http://lobid.org/organisations/DE-Hv138#! DE-Hv138 Filminstitut Hannover, Dokumentations- und Forschungsstelle Medien +http://lobid.org/organisations/DE-2070e#! DE-2070e 2070e Hochschule für Wirtschaft und Recht Berlin, Hochschulbibliothek, E-Medien +http://lobid.org/organisations/DE-1939#! DE-1939 1939 Norddeutsches Nah- und Schienenverkehrsarchiv +http://lobid.org/organisations/DE-918#! DE-918 918 Konrad-Adenauer-Stiftung e.V., Bibliothek +http://lobid.org/organisations/DE-1944#! DE-1944 1944 Katholische Hochschule Mainz, Bibliothek +http://lobid.org/organisations/DE-Hil3-9#! DE-Hil3-9 Hil 3/9 HAWK Hochschule für angewandte Wissenschaft und Kunst, Campus-Bibliothek +http://lobid.org/organisations/DE-1953#! DE-1953 1953 Mediathek Kehl +http://lobid.org/organisations/DE-77-001#! DE-77-001 77/001 Universität Mainz, Elektronische Ressourcen +http://lobid.org/organisations/DE-1979#! DE-1979 1979 Jüdisches Museum der Stadt Frankfurt am Main, Bibliothek +http://lobid.org/organisations/DE-960-7#! DE-960-7 960/7 Bibliothek der Hochschule Hannover, Teilbibliothek Diakonie, Gesundheit und Soziales +http://lobid.org/organisations/DE-1985#! DE-1985 Universitätsarchiv Mainz +http://lobid.org/organisations/DE-1986#! DE-1986 Landeskirchliches Archiv Stuttgart +http://lobid.org/organisations/DE-2001#! DE-2001 2001 Stadtbücherei Korntal-Münchingen +http://lobid.org/organisations/DE-2008#! DE-2008 2008 Stadtbücherei Weilheim a.d.T. +http://lobid.org/organisations/DE-2011#! DE-2011 2011 Kreisergänzungsbücherei Ludwigsburg +http://lobid.org/organisations/DE-8-710#! DE-8-710 8/7a Universitätsbibliothek Kiel, Fachbibliothek am Institut für Internationales Privat- und Verfahrensrecht +http://lobid.org/organisations/DE-8-9#! DE-8-9 8/9 Universitätsbibliothek Kiel, Fachbibliothek für Wirtschaftswissenschaften +http://lobid.org/organisations/DE-8-15#! DE-8-15 8/15 Universitätsbibliothek Kiel, Fachbibliothek an der Medizin- und Pharmaziehistorischen Sammlung Kiel +http://lobid.org/organisations/DE-2018#! DE-2018 2018 Stadtbücherei Laichingen +http://lobid.org/organisations/DE-8-45#! DE-8-45 8/45 Universitätsbibliothek Kiel, Fachbibliothek an der Kunsthalle +http://lobid.org/organisations/DE-8-56#! DE-8-56 8/56 Universitätsbibliothek Kiel, Fachbibliothek am Romanischen Seminar +http://lobid.org/organisations/DE-2023#! DE-2023 2023 Bibliothek Remshalden +http://lobid.org/organisations/DE-8-60#! DE-8-60 8/60 Universitätsbibliothek Kiel, Fachbibliothek Mathematik/Informatik/Rechenzentrum (Bereich Mathematik) +http://lobid.org/organisations/DE-8-67#! DE-8-67 8/67 Universitätsbibliothek Kiel, Fachbibliothek am Pharmazeutischen Institut, Abteilung Pharmazeutische Biologie +http://lobid.org/organisations/DE-8-73#! DE-8-73 8/73 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Phytopathologie +http://lobid.org/organisations/DE-8-82#! DE-8-82 8/82 Universitätsbibliothek Kiel, Handapparat Variationsstatistik +http://lobid.org/organisations/DE-8-102#! DE-8-102 8/102 Universität Kiel, Bibliothek des Lorenz-von-Stein-Instituts für Verwaltungswissenschaften +http://lobid.org/organisations/DE-8-601#! DE-8-601 8/60a Universitätsbibliothek Kiel, Fachbibliothek Mathematik/Informatik/Rechenzentrum (Bereich Informatik) +http://lobid.org/organisations/CH-000004-7#! CH-000004-7 Universitätsbibliothek Basel +http://lobid.org/organisations/CH-000027-1#! CH-000027-1 Staatsarchiv Kanton Basel-Stadt +http://lobid.org/organisations/DK-810010#! DK-810010 DK 1 Det Kongelige Bibliotek - Nationalbibliotek og Københavns Universitetsbibliotek +http://lobid.org/organisations/DE-2034#! DE-2034 2034 Stadtbücherei Bad Mergentheim +http://lobid.org/organisations/DE-2047#! DE-2047 Staatsarchiv Nürnberg +http://lobid.org/organisations/DE-2048#! DE-2048 Staatsarchiv Amberg +http://lobid.org/organisations/DE-2050#! DE-2050 Bayerisches Hauptstaatsarchiv +http://lobid.org/organisations/DE-2054#! DE-2054 2054 Stadtbücherei Sachsenheim +http://lobid.org/organisations/DE-2056#! DE-2056 2056 Bibliothek im Bildungszentrum Weissacher Tal +http://lobid.org/organisations/DE-2061#! DE-2061 2061 Stadtbücherei Weinstadt +http://lobid.org/organisations/DE-2079#! DE-2079 2079 Zentrum für Geoinformationswesen der Bundeswehr, Fachinformationsstelle und Bibliothek +http://lobid.org/organisations/US-NjRV#! US-NjRV Rutgers University Libraries, Special Collections and University Archives +http://lobid.org/organisations/US-CStmoGRI#! US-CStmoGRI Getty Research Institute, Research Library +http://lobid.org/organisations/US-DLC-M#! US-DLC-M Library of Congress, Music Division +http://lobid.org/organisations/DE-2093#! DE-2093 2093 Zentralstelle für Personen- und Familiengeschichte - Institut für Genealogie -, Bibliothek +http://lobid.org/organisations/DE-2095#! DE-2095 2095 Gemeindebibliothek Georgenthal +http://lobid.org/organisations/DE-2098#! DE-2098 2098 Stadtbücherei Gammertingen +http://lobid.org/organisations/DE-2109#! DE-2109 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern, Landesarchiv +http://lobid.org/organisations/DE-2111#! DE-2111 Bundesarchiv, Stasi-Unterlagen-Archiv +http://lobid.org/organisations/DE-2115#! DE-2115 Kreisarchiv Soest +http://lobid.org/organisations/DE-2118#! DE-2118 2118 Stadtbücherei Lorch +http://lobid.org/organisations/DE-2123#! DE-2123 2123 Stadtarchiv Rottweil +http://lobid.org/organisations/DE-2125#! DE-2125 2125 Institut für Zeitgeschichte München - Berlin, Archiv +http://lobid.org/organisations/DE-MUS-059027#! DE-MUS-059027 Museum Puppen und Spielzeug +http://lobid.org/organisations/DE-MUS-059329#! DE-MUS-059329 Radio Museum Duisburg +http://lobid.org/organisations/DE-MUS-059423#! DE-MUS-059423 Rheinhauser Bergbausammlung e.V. +http://lobid.org/organisations/DE-2127#! DE-2127 HAWK Hochschule für Angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen, Hornemann Institut +http://lobid.org/organisations/DE-MUS-061223#! DE-MUS-061223 SiegfriedMuseum Xanten +http://lobid.org/organisations/DE-MUS-060428#! DE-MUS-060428 Geschichtshäuschen am Düfelsarsch +http://lobid.org/organisations/DE-30-26#! DE-30-26 30/26 Universitätsbibliothek J. C. Senckenberg, BSP, Bibliothek für Klinische Psychologie und Psychotherapie +http://lobid.org/organisations/DE-619#! DE-619 Universitätsbibliothek Regensburg, Poststelle +http://lobid.org/organisations/DE-2145#! DE-2145 Bistumsarchiv Essen +http://lobid.org/organisations/DE-2150#! DE-2150 2150 Landeskirchliches Archiv der Evangelischen Kirche von Westfalen +http://lobid.org/organisations/DE-2156#! DE-2156 2156 Landratsamt Rottweil, Stabsbereich Archiv, Kultur, Tourismus +http://lobid.org/organisations/DE-2160#! DE-2160 Bayerisches Staatsministerium für Unterricht und Kultus, Wissenschaft und Kunst / Haus der Bayerischen Geschichte +http://lobid.org/organisations/DE-2164#! DE-2164 Kreisarchiv Gießen +http://lobid.org/organisations/DE-2171#! DE-2171 Stadtarchiv Lohmar +http://lobid.org/organisations/DE-2174#! DE-2174 2174 Landesamt für Digitalisierung, Breitband und Vermessung, Bibliothek +http://lobid.org/organisations/DE-2175#! DE-2175 2175 Institut für Suchtforschung Frankfurt am Main, Bibliothek +http://lobid.org/organisations/DE-2176#! DE-2176 Stadtarchiv Barth +http://lobid.org/organisations/DE-2178#! DE-2178 Büchereizentrale Schleswig-Holstein +http://lobid.org/organisations/DE-2179#! DE-2179 Stadtarchiv Verl +http://lobid.org/organisations/DE-2186#! DE-2186 2186 Stadtarchiv der Hansestadt Stralsund +http://lobid.org/organisations/DE-MUS-061525#! DE-MUS-061525 Stiftung Stadtmuseum Berlin +http://lobid.org/organisations/DE-2197#! DE-2197 Bayerisches Landesamt für Denkmalpflege +http://lobid.org/organisations/DE-2200#! DE-2200 2200 International School of Management, Bibliothek +http://lobid.org/organisations/DE-2203#! DE-2203 2203 Alexander-Haas-Bibliothek der Gesellschaft für Christlich-Jüdische Zusammenarbeit in Darmstadt +http://lobid.org/organisations/DE-2207#! DE-2207 2207 Stadtbücherei Regensburg +http://lobid.org/organisations/DE-2215#! DE-2215 Institut für Stadtgeschichte Frankfurt +http://lobid.org/organisations/DE-2224#! DE-2224 2224 Archiv für Christlich-Soziale Politik (ACSP) +http://lobid.org/organisations/DE-2226#! DE-2226 Stiftung Deutsches Technikmuseum Berlin, Historisches Archiv +http://lobid.org/organisations/DE-473-TB4#! DE-473-TB4 473/TB4 Universitätsbibliothek Bamberg, Teilbibliothek 4 (Sprach- und Literaturwissenschaften) +http://lobid.org/organisations/DE-473-TB5#! DE-473-TB5 473/TB5 Universitätsbibliothek Bamberg, Teilbibliothek 5 (Geschichts- und Geowissenschaften) +http://lobid.org/organisations/DE-2237#! DE-2237 2237 Stadtarchiv Dresden +http://lobid.org/organisations/DE-2238#! DE-2238 2238 Kreisarchiv Warendorf +http://lobid.org/organisations/DE-100-772#! DE-100-772 100/772 Universität Hohenheim, Hohenheimer Gärten, Bibliothek +http://lobid.org/organisations/DE-2248#! DE-2248 Stiftung Rheinisch-Westfälisches Wirtschaftsarchiv zu Köln +http://lobid.org/organisations/DE-2251#! DE-2251 Stadtarchiv Mülheim an der Ruhr +http://lobid.org/organisations/DE-2258#! DE-2258 Erzbischöfliches Archiv München +http://lobid.org/organisations/DE-MUS-058024#! DE-MUS-058024 Museum Neuhaus am Rennweg +http://lobid.org/organisations/CH-001499-7#! CH-001499-7 Historisches Lexikon der Schweiz (HLS), Zentralredaktion +http://lobid.org/organisations/CH-000728-7#! CH-000728-7 CH-Sh 5 Eisenbibliothek - Stiftung der Georg Fischer AG +http://lobid.org/organisations/DE-2272#! DE-2272 Stadtarchiv Hennef +http://lobid.org/organisations/DE-34-34#! DE-34-34 34/34 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Altbestand der Bibliothek des Predigerseminars Hofgeismar +http://lobid.org/organisations/DE-2273#! DE-2273 2273 Moses Mendelssohn Zentrum für europäisch-jüdische Studien, Bibliothek +http://lobid.org/organisations/DE-F137#! DE-F137 F 137 Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie, Bibliothek +http://lobid.org/organisations/DE-66-900#! DE-66-900 66/900 Hochschul- und Landesbibliothek Fulda, Elektronische Ressourcen +http://lobid.org/organisations/DE-MUS-062820#! DE-MUS-062820 Alfred Ehrhardt Stiftung +http://lobid.org/organisations/DE-2279#! DE-2279 2279 Hochschule für Gestaltung, Bibliothek +http://lobid.org/organisations/DE-2283#! DE-2283 2283 Klosterbibliothek Weltenburg +http://lobid.org/organisations/DE-2285#! DE-2285 2285 Stadtbücherei Eppingen +http://lobid.org/organisations/DE-2289#! DE-2289 Archiv der Gemeinde Swisttal +http://lobid.org/organisations/DE-2296#! DE-2296 2296 Palucca-Hochschule für Tanz Dresden, Bibliothek +http://lobid.org/organisations/DE-2298#! DE-2298 2298 Fachinformationsdienst Pharmazie +http://lobid.org/organisations/DE-2301#! DE-2301 Kreisarchiv Landkreis Dahme-Spreewald +http://lobid.org/organisations/DE-2312#! DE-2312 2312 Mediothek Güglingen +http://lobid.org/organisations/DE-2328#! DE-2328 2328 Bibliothek der Hochschule der Wirtschaft für Management +http://lobid.org/organisations/DE-MUS-069029#! DE-MUS-069029 Georg-August-Universität Göttingen / Sammlungen der Palynologie und Klimadynamik +http://lobid.org/organisations/DE-MUS-069123#! DE-MUS-069123 Georg-August-Universität: Göttinger Sammlung mathematischer Modelle und Instrumente +http://lobid.org/organisations/DE-MUS-069227#! DE-MUS-069227 Georg-August-Universität: Humanembryologische Sammlung +http://lobid.org/organisations/DE-MUS-070326#! DE-MUS-070326 Georg-August-Universität: Anthropologische Sammlung +http://lobid.org/organisations/DE-MUS-070420#! DE-MUS-070420 Georg-August-Universität Göttingen / Sammlung von Algenkulturen Göttingen (SAG) +http://lobid.org/organisations/DE-2339#! DE-2339 2339 Kriminologisches Forschungsinstitut Niedersachsen e.V., Bibliothek +http://lobid.org/organisations/DE-2342#! DE-2342 Kommunalarchiv Minden - Archiv der Stadt Minden und des Kreises Minden-Lübbecke +http://lobid.org/organisations/DE-1050-1#! DE-1050-1 1050/1 THD - Technische Hochschule Deggendorf, Hochschulbibliothek, Teilbibliothek European Campus Rottal-Inn +http://lobid.org/organisations/DE-2346#! DE-2346 2346 Städtische Volksbücherei +http://lobid.org/organisations/DE-MUS-070920#! DE-MUS-070920 Gedenkstätte Andreasstrasse - Stiftung Ettersberg +http://lobid.org/organisations/DE-2351#! DE-2351 2351 Stadtbibliothek Roßwein +http://lobid.org/organisations/DE-93-224#! DE-93-224 93/224 Universität Stuttgart, Institut für Energieeffizienz in der Produktion, Bibliothek +http://lobid.org/organisations/DE-2366#! DE-2366 2366 Landesstelle für Volkskunde Stuttgart, Bibliothek +http://lobid.org/organisations/DE-2369#! DE-2369 2369 Arbeitsgemeinschaft ostdeutscher Familienforscher e.V. (AGoFF), Bibliothek +http://lobid.org/organisations/DE-2370#! DE-2370 Arbeitsgemeinschaft ostdeutscher Familienforscher e.V. (AGoFF), Archiv +http://lobid.org/organisations/DE-2374#! DE-2374 DFF - Deutsches Filminstitut & Filmmuseum, Sammlungen und Nachlässe +http://lobid.org/organisations/DE-2375#! DE-2375 2375 Stadtbibliothek Dingelstädt +http://lobid.org/organisations/DE-2380#! DE-2380 2380 Bibliothek und Archiv im Lette Verein Berlin +http://lobid.org/organisations/DE-2384#! DE-2384 2384 Archiv der Ursula Mattheuer-Neustädt und Wolfgang Mattheuer Stiftung, Bibliothek +http://lobid.org/organisations/DE-2388#! DE-2388 Stadtarchiv Stolberg +http://lobid.org/organisations/DE-626#! DE-626 CBDZ-Konsortium +http://lobid.org/organisations/DE-2393#! DE-2393 2393 Bibliothek der Heimatpflege des Bezirks Schwaben +http://lobid.org/organisations/DE-2396#! DE-2396 2396 Deutsche Fotothek +http://lobid.org/organisations/DE-2403#! DE-2403 2403 Schulbibliothek der Elisabeth-Selbert-Gesamtschule +http://lobid.org/organisations/DE-2407#! DE-2407 Numismatische Kommission der Länder in der Bundesrepublik Deutschland +http://lobid.org/organisations/DE-2416#! DE-2416 Technische Universität Dresden, Institut für Geometrie +http://lobid.org/organisations/DE-2419#! DE-2419 2419 Institut Papst Benedikt XVI., Bibliothek +http://lobid.org/organisations/AT-GSA#! AT-GSA AT-GSA Albertina Bibliothek +http://lobid.org/organisations/DE-2420#! DE-2420 2420 Schader-Stiftung, Bibliothek +http://lobid.org/organisations/DE-2425#! DE-2425 Münzsammlung des Seminars für Alte Geschichte der Albert-Ludwigs-Universität +http://lobid.org/organisations/DE-MUS-063521#! DE-MUS-063521 Erika-Fuchs-Haus - Museum für Comic und Sprachkunst +http://lobid.org/organisations/DE-F43#! DE-F43 F 43 DIPF | Leibniz-Institut für Bildungsforschung und Bildungsinformation, Bibliothek +http://lobid.org/organisations/DE-2437#! DE-2437 2437 Stadtbücherei Pfullendorf +http://lobid.org/organisations/DE-MUS-105922#! DE-MUS-105922 Hochschule für Technik und Wirtschaft (HTW) Berlin +http://lobid.org/organisations/DE-2442#! DE-2442 Liebenstein-Gesellschaft e.V. +http://lobid.org/organisations/DE-2453#! DE-2453 2453 Gemeindebücherei Aschau a. Inn +http://lobid.org/organisations/DE-2454#! DE-2454 2454 Stadtbücherei St. Andreas, Trostberg +http://lobid.org/organisations/DE-996-1#! DE-996-1 996/1 Hochschule für Musik, Theater und Medien Hannover / Europäisches Zentrum für Jüdische Musik, Bibliothek +http://lobid.org/organisations/DE-2457#! DE-2457 Universitätsarchiv Hamburg +http://lobid.org/organisations/DE-2458#! DE-2458 Archiv der Berlin-Brandenburgischen Akademie der Wissenschaften +http://lobid.org/organisations/DE-2459#! DE-2459 Kreisarchiv Lippe +http://lobid.org/organisations/CH-000924-9#! CH-000924-9 Gosteli-Stiftung - Archiv zur Geschichte der schweizerischen Frauenbewegung +http://lobid.org/organisations/CH-000133-4#! CH-000133-4 UB Wirtschaft - Schweizerisches Wirtschaftsarchiv (SWA) +http://lobid.org/organisations/CH-000093-7#! CH-000093-7 Stiftsbibliothek St. Gallen +http://lobid.org/organisations/DE-2468#! DE-2468 2468 Stadtarchiv Mühlhausen +http://lobid.org/organisations/DE-2472#! DE-2472 2472 Oberstdorf Bibliothek +http://lobid.org/organisations/DE-MUS-104721#! DE-MUS-104721 Europäisches Hansemuseum Lübeck gGmbH +http://lobid.org/organisations/DE-2474#! DE-2474 2474 Hochschulbibliothek der Fachhochschule Clara Hoffbauer Potsdam +http://lobid.org/organisations/DE-2477#! DE-2477 2477 Gymnasium Schloss Hagerhof, Lehrmittelbücherei +http://lobid.org/organisations/DE-2486#! DE-2486 2486 Stadtbücherei Vöhringen +http://lobid.org/organisations/DE-2494#! DE-2494 Münzsammlung des Lehrstuhls für Alte Geschichte der Universität Augsburg +http://lobid.org/organisations/DE-2495#! DE-2495 2495 Stadtbücherei Blaubeuren +http://lobid.org/organisations/DE-2499#! DE-2499 2499 Institut für Qualitätssicherung und Transparenz im Gesundheitswesen - Bibliothek +http://lobid.org/organisations/LI-001929-X#! LI-001929-X li-ubf Universität Liechtenstein, Bibliothek +http://lobid.org/organisations/DE-2512#! DE-2512 2512 Gemeindebücherei Bechhofen +http://lobid.org/organisations/DE-2516#! DE-2516 Superintendenturarchiv Zerbst +http://lobid.org/organisations/DE-2521#! DE-2521 Internationales Theaterinstitut Zentrum Deutschland, Mediathek +http://lobid.org/organisations/DE-2526#! DE-2526 2526 DZ BANK Kunstsammlung, Bibliothek +http://lobid.org/organisations/DE-2534#! DE-2534 Universitätsarchiv Ilmenau +http://lobid.org/organisations/DE-2536#! DE-2536 2536 Gymnasium Höhenkirchen-Siegertsbrunn, Bibliothek +http://lobid.org/organisations/DE-2539#! DE-2539 Stadtschreiberarchiv Bergen-Enkheim +http://lobid.org/organisations/DE-Po75#! DE-Po75 Po 75 Filmuniversität Babelsberg KONRAD WOLF, Universitätsbibliothek +http://lobid.org/organisations/DE-2551#! DE-2551 Hessisches Staatsarchiv Marburg +http://lobid.org/organisations/DE-2564#! DE-2564 2564 Ausbildungszentrum Technik Landsysteme, Fachinformationsstelle +http://lobid.org/organisations/DE-2565#! DE-2565 2565 Jüdische Gemeinde zu Berlin, Bibliothek +http://lobid.org/organisations/DE-MUS-113428#! DE-MUS-113428 Numismatische Sammlung der Alten Geschichte +http://lobid.org/organisations/DE-MUS-113626#! DE-MUS-113626 1910 - Museum für den FC St. Pauli e.V. +http://lobid.org/organisations/DE-MUS-113720#! DE-MUS-113720 Staatliche Kunstsammlungen Dresden / Archiv der Avantgarden - Egidio Marzona +http://lobid.org/organisations/DE-2575#! DE-2575 2575 Leibniz-Institut für Agrarentwicklung in Transformationsökonomien, Bibliothek +http://lobid.org/organisations/DE-MUS-045127#! DE-MUS-045127 Friedrich-Schiller-Universität / Akademisches Münzkabinett +http://lobid.org/organisations/DE-MUS-045721#! DE-MUS-045721 Friedrich-Schiller-Universität / Botanischer Garten +http://lobid.org/organisations/DE-2578#! DE-2578 2578 Each One Teach One (EOTO) e.V., Bibliothek +http://lobid.org/organisations/DE-2583#! DE-2583 2583 Bücherei Aspach +http://lobid.org/organisations/DE-2584#! DE-2584 2584 Gemeindebücherei Kressbronn a. B. +http://lobid.org/organisations/DE-2585#! DE-2585 Archiv des Erzbistums Bamberg +http://lobid.org/organisations/DE-2593#! DE-2593 2593 Diözesanstelle für Büchereiarbeit +http://lobid.org/organisations/DE-2594#! DE-2594 2594 Stadtbücherei Wörth a. d. Donau +http://lobid.org/organisations/DE-2595#! DE-2595 2595 Mediathek Oberteuringen +http://lobid.org/organisations/DE-2602#! DE-2602 Historisches Archiv der Sächsischen Staatstheater Dresden +http://lobid.org/organisations/DE-2606#! DE-2606 2606 Martinus-Bibliothek, Fachbereichsbibliothek Religionspädagogik +http://lobid.org/organisations/DE-WC11#! DE-WC11 WC 11 Testbibliothek für den Webcat +http://lobid.org/organisations/DE-MUS-124829#! DE-MUS-124829 Sammlung des Heimatkundlichen Vereins Köllertal e.V. +http://lobid.org/organisations/DE-MUS-124923#! DE-MUS-124923 Antikensammlung und Skulpturensaal der Goethe-Universität +http://lobid.org/organisations/DE-2616#! DE-2616 2616 Gesamtschule der Stadt Mechernich, Lernmittelverwaltung +http://lobid.org/organisations/DE-2617#! DE-2617 2617 Ortsbücherei Erdmannhausen +http://lobid.org/organisations/IL-SHOK#! IL-SHOK Schocken Institute for Jewish Research, library +http://lobid.org/organisations/DE-B1576#! DE-B1576 B 1576 Bibliothek der Freien. Anarchistische Bibliothek im Haus der Demokratie +http://lobid.org/organisations/DE-Juel1#! DE-Juel1 Jül 1 Forschungszentrum Jülich GmbH, Zentralbibliothek +http://lobid.org/organisations/DE-2679#! DE-2679 SCHRIFT-BILDER gGmbH +http://lobid.org/organisations/DE-2681#! DE-2681 2681 Bibliothek der Gemeinde Kall +http://lobid.org/organisations/DE-2682#! DE-2682 2682 Gemeindebücherei Ampfing +http://lobid.org/organisations/DE-2688#! DE-2688 2688 Gemeindebücherei Brunnthal +http://lobid.org/organisations/DE-2690#! DE-2690 2690 Gemeindebücherei Cadolzburg +http://lobid.org/organisations/DE-2693#! DE-2693 2693 Gemeindebücherei Großenseebach +http://lobid.org/organisations/DE-2698#! DE-2698 2698 Gemeindebücherei Markt Schwaben +http://lobid.org/organisations/DE-2699#! DE-2699 2699 Gemeindebücherei Neuried +http://lobid.org/organisations/DE-2710#! DE-2710 2710 Gemeindebücherei Schwanfeld +http://lobid.org/organisations/DE-2713#! DE-2713 2713 Gemeindebücherei Uttenreuth +http://lobid.org/organisations/DE-2720#! DE-2720 Elektronische Bibliothek ImWerden.de +http://lobid.org/organisations/DE-2722#! DE-2722 2722 Gemeindebücherei Reichshof +http://lobid.org/organisations/DE-2729#! DE-2729 2729 Stadtbibliothek Bargteheide +http://lobid.org/organisations/DE-2730#! DE-2730 2730 Deutsches Forum für Figurentheater und Puppenspielkunst e.V., Bibliothek +http://lobid.org/organisations/DE-26-375#! DE-26-375 26/375 Universität Gießen, Zweigbibliothek im Philosophikum II, Lernwerkstatt IFIB +http://lobid.org/organisations/DE-2739#! DE-2739 2739 Gemeindebücherei Finsing +http://lobid.org/organisations/DE-MUS-125426#! DE-MUS-125426 Museum Torfwerk Ainring +http://lobid.org/organisations/DE-2745#! DE-2745 Münzsammlung des Mannheimer Lehrstuhls für Alte Geschichte +http://lobid.org/organisations/DE-2746#! DE-2746 2746 Stadtbibliothek Ladenburg +http://lobid.org/organisations/DE-2750#! DE-2750 2750 Edith-Stein-Archiv +http://lobid.org/organisations/DE-2753#! DE-2753 2753 Bibliothek des Aus- und Fortbildungszentrums des Landes Brandenburg +http://lobid.org/organisations/DE-2759#! DE-2759 Münzforschungssammlung der Braunschweigischen Landessparkasse in der Braunschweigischen Sparkassenstiftung +http://lobid.org/organisations/DE-2761#! DE-2761 2761 Südosteuropäisch-bulgarisches Kulturinstitut, Bibliothek +http://lobid.org/organisations/DE-2763#! DE-2763 Stadtarchiv Vreden +http://lobid.org/organisations/DE-2766#! DE-2766 2766 Stadtbücherei Mengen +http://lobid.org/organisations/DE-2768#! DE-2768 DFF - Deutsches Filminstitut & Filmmuseum +http://lobid.org/organisations/DE-2780#! DE-2780 Archiv des Bistums Speyer +http://lobid.org/organisations/DE-MUS-105328#! DE-MUS-105328 imai - inter media art institute +http://lobid.org/organisations/DE-2790#! DE-2790 2790 Mediothek Pliezhausen +http://lobid.org/organisations/DE-2791#! DE-2791 Lehmanns Media GmbH +http://lobid.org/organisations/DE-2797#! DE-2797 2797 Gemeindebücherei und -mediothek Henstedt-Ulzburg +http://lobid.org/organisations/DE-2798#! DE-2798 2798 Bibliothek der Prämonstratenserabtei Windberg +http://lobid.org/organisations/DE-2801#! DE-2801 Staatsarchiv Augsburg +http://lobid.org/organisations/DE-150#! DE-150 150 Staatliche Bibliothek Neuburg/Donau +http://lobid.org/organisations/DE-N27#! DE-N27 N 27 Staatsarchiv Nürnberg, Bibliothek +http://lobid.org/organisations/DE-481#! DE-481 481 Staatsarchiv Würzburg, Bibliothek +http://lobid.org/organisations/DE-2804#! DE-2804 2804 Europabücherei der Stadt Passau +http://lobid.org/organisations/DE-MUS-700067#! DE-MUS-700067 Klassik Stiftung Weimar / Direktion Museen +http://lobid.org/organisations/DE-30-337#! DE-30-337 30/337 Universität Frankfurt, Sammlungen, Comic-Archiv +http://lobid.org/organisations/DE-2822#! DE-2822 2822 Stadtbibliothek Pfungstadt +http://lobid.org/organisations/DE-2824#! DE-2824 Landeskirchenarchiv der EKM +http://lobid.org/organisations/DE-2826#! DE-2826 2826 Stadtbücherei Hamminkeln +http://lobid.org/organisations/DE-Frei3c#! DE-Frei3c Frei 3c Mathematisches Forschungsinstitut Oberwolfach gGmbH, Bibliothek +http://lobid.org/organisations/DE-123#! DE-123 123 Stadtbibliothek Worms +http://lobid.org/organisations/DE-2831#! DE-2831 2831 Bibliothek der Fachakademie für Gemeindepastoral im Bistum Magdeburg +http://lobid.org/organisations/DE-2835#! DE-2835 Forschungs- und Kompetenzzentrum Digitalisierung Berlin +http://lobid.org/organisations/DE-MUS-274513#! DE-MUS-274513 Städtisches Museum Saarlouis +http://lobid.org/organisations/DE-MUS-275016#! DE-MUS-275016 Alstertalmuseum +http://lobid.org/organisations/DE-MUS-279216#! DE-MUS-279216 Heimatmuseum Blankenau +http://lobid.org/organisations/DE-MUS-279716#! DE-MUS-279716 Ländliches Heimatmuseum +http://lobid.org/organisations/DE-MUS-279914#! DE-MUS-279914 Besucherbergwerk ""Grube Gustav"" +http://lobid.org/organisations/DE-MUS-280211#! DE-MUS-280211 Museum Reichenau e.V. +http://lobid.org/organisations/DE-MUS-280711#! DE-MUS-280711 Museum Kloster Zeven +http://lobid.org/organisations/DE-MUS-281412#! DE-MUS-281412 Heimatmuseum Wennigsen +http://lobid.org/organisations/DE-MUS-281516#! DE-MUS-281516 Heeseberg-Museum +http://lobid.org/organisations/DE-MUS-281912#! DE-MUS-281912 Torfschiffmuseum +http://lobid.org/organisations/DE-MUS-282311#! DE-MUS-282311 HANDWEKSMUSEUM OVELGÖNNE +http://lobid.org/organisations/DE-MUS-282811#! DE-MUS-282811 Museum Nordenham +http://lobid.org/organisations/DE-MUS-283012#! DE-MUS-283012 Kirchenmuseum +http://lobid.org/organisations/DE-MUS-283116#! DE-MUS-283116 Deutsches Salzmuseum - Industriedenkmal Saline Lüneburg +http://lobid.org/organisations/DE-MUS-283210#! DE-MUS-283210 Heimatmuseum Lauenau +http://lobid.org/organisations/DE-MUS-283512#! DE-MUS-283512 Heimatstuben +http://lobid.org/organisations/DE-MUS-283918#! DE-MUS-283918 Museum Schloss Herzberg +http://lobid.org/organisations/DE-MUS-284515#! DE-MUS-284515 Heimatmuseum Ahlem +http://lobid.org/organisations/DE-MUS-286115#! DE-MUS-286115 Heimatstube Bad Eilsen +http://lobid.org/organisations/DE-MUS-286417#! DE-MUS-286417 Dorfmuseum Ahrbergen +http://lobid.org/organisations/DE-MUS-287410#! DE-MUS-287410 Langsdorfer Heimatmuseum +http://lobid.org/organisations/DE-MUS-287618#! DE-MUS-287618 Heimatmuseum im neuen Spielhaus +http://lobid.org/organisations/DE-MUS-287712#! DE-MUS-287712 Michel-Buck-Gedenkstätte +http://lobid.org/organisations/DE-MUS-289312#! DE-MUS-289312 Muschelkalkmuseum +http://lobid.org/organisations/DE-MUS-289812#! DE-MUS-289812 Gedenkstätte für die Juden der Region Franken +http://lobid.org/organisations/DE-MUS-290015#! DE-MUS-290015 Mörike-Stube +http://lobid.org/organisations/DE-MUS-290515#! DE-MUS-290515 Stadtteilarchiv Ottensen e.V. +http://lobid.org/organisations/DE-MUS-293316#! DE-MUS-293316 Städtische Galerie Neunkirchen +http://lobid.org/organisations/DE-MUS-294319#! DE-MUS-294319 Heimatmuseum Dörrenbach +http://lobid.org/organisations/DE-MUS-295010#! DE-MUS-295010 Puppentheatermuseum Kaufbeuren +http://lobid.org/organisations/DE-MUS-295614#! DE-MUS-295614 Museum Prüm +http://lobid.org/organisations/DE-MUS-297610#! DE-MUS-297610 Museum für Kutschen, Chaisen, Karren +http://lobid.org/organisations/DE-MUS-297818#! DE-MUS-297818 Bauernmuseum Inzigkofen +http://lobid.org/organisations/DE-MUS-298019#! DE-MUS-298019 Benedikt Nimser Haus +http://lobid.org/organisations/DE-MUS-298311#! DE-MUS-298311 Reibeisenmühle +http://lobid.org/organisations/DE-MUS-298613#! DE-MUS-298613 Rathaus-Galerie Ailingen +http://lobid.org/organisations/DE-MUS-298915#! DE-MUS-298915 Klostermuseum Bad Schussenried +http://lobid.org/organisations/DE-MUS-300518#! DE-MUS-300518 Kutschen- und Fahrzeugmuseum Eigeltingen +http://lobid.org/organisations/DE-MUS-301615#! DE-MUS-301615 Narrenmuseum Niggelturm +http://lobid.org/organisations/DE-MUS-302212#! DE-MUS-302212 Museum im Alten Schloss +http://lobid.org/organisations/DE-MUS-302816#! DE-MUS-302816 Heimatmuseum im Fünfeckigen Turm +http://lobid.org/organisations/DE-MUS-303413#! DE-MUS-303413 Heimatmuseum Friedrichstal+Hugenotten- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-304416#! DE-MUS-304416 Museum für sakrale Kunst und Liturgie +http://lobid.org/organisations/DE-MUS-304510#! DE-MUS-304510 Industrie Museum Lohne e.V. +http://lobid.org/organisations/DE-MUS-304812#! DE-MUS-304812 Weltkulturerbe Erzbergwerk Rammelsberg Goslar GmbH +http://lobid.org/organisations/DE-MUS-305315#! DE-MUS-305315 Heimatstube Bissendorf +http://lobid.org/organisations/DE-MUS-305617#! DE-MUS-305617 Museum für Wegwerfkultur +http://lobid.org/organisations/DE-MUS-305919#! DE-MUS-305919 Heimat- und Schulmuseum Himmelpforten e.V. +http://lobid.org/organisations/DE-MUS-306318#! DE-MUS-306318 Siemens-Familien-Stammhaus +http://lobid.org/organisations/DE-MUS-307915#! DE-MUS-307915 Deutsches Sielhafenmuseum in Carolinensiel +http://lobid.org/organisations/DE-MUS-308616#! DE-MUS-308616 Universitätsbibliothek Ausstellungen +http://lobid.org/organisations/DE-MUS-309411#! DE-MUS-309411 Heimatmuseum Schwanfeld +http://lobid.org/organisations/DE-MUS-309713#! DE-MUS-309713 Brechthaus +http://lobid.org/organisations/DE-MUS-310718#! DE-MUS-310718 Museum für Weinkultur +http://lobid.org/organisations/DE-MUS-311117#! DE-MUS-311117 Museum der VG-Eich im Gimbsheimer Storchenschulhaus Gimbsheim +http://lobid.org/organisations/DE-MUS-312214#! DE-MUS-312214 Heimatmuseum Bermel +http://lobid.org/organisations/DE-MUS-312412#! DE-MUS-312412 Dorfmuseum +http://lobid.org/organisations/DE-MUS-312912#! DE-MUS-312912 Nationalparkschiff, Feuerschiff Borkumriff +http://lobid.org/organisations/DE-MUS-313019#! DE-MUS-313019 Heimatmuseum Aschen +http://lobid.org/organisations/DE-MUS-315317#! DE-MUS-315317 Reinhard-Blauth-Museum +http://lobid.org/organisations/DE-MUS-316810#! DE-MUS-316810 Geologisches Museum Kamp-Lintfort +http://lobid.org/organisations/DE-MUS-316914#! DE-MUS-316914 Sammlung zur Heimatgeschichte +http://lobid.org/organisations/DE-MUS-317011#! DE-MUS-317011 Beatles Museum +http://lobid.org/organisations/DE-MUS-317115#! DE-MUS-317115 Frauen Museum +http://lobid.org/organisations/DE-MUS-318410#! DE-MUS-318410 Reichspräsident-Friedrich-Ebert Gedenkstätte +http://lobid.org/organisations/DE-MUS-318910#! DE-MUS-318910 MiMa Museum für Mineralien und Mathematik +http://lobid.org/organisations/DE-MUS-319611#! DE-MUS-319611 Haus der Geschichte der Bundesrepublik Deutschland +http://lobid.org/organisations/DE-MUS-320116#! DE-MUS-320116 Kunstmuseum Reutlingen - Spendhaus +http://lobid.org/organisations/DE-MUS-320918#! DE-MUS-320918 Württemberg-Haus Beutelsbach+Museum Bauernkrieg +http://lobid.org/organisations/DE-MUS-321619#! DE-MUS-321619 Orthop. Geschichts- und Forschungsmuseum e.V. +http://lobid.org/organisations/DE-MUS-321713#! DE-MUS-321713 Gebrüder-Lachner-Museum Rain +http://lobid.org/organisations/DE-MUS-322018#! DE-MUS-322018 Freilichtmuseum ""De Theeshof"" +http://lobid.org/organisations/DE-MUS-322518#! DE-MUS-322518 HESSE MUSEUM GAIENHOFEN +http://lobid.org/organisations/DE-MUS-323011#! DE-MUS-323011 Holzknechtmuseum Ruhpolding +http://lobid.org/organisations/DE-MUS-323417#! DE-MUS-323417 Bördenheimatmuseum +http://lobid.org/organisations/DE-MUS-323615#! DE-MUS-323615 Freilichtmuseum Neuhausen ob Eck +http://lobid.org/organisations/DE-MUS-323813#! DE-MUS-323813 Weibertreu-Museum der Stadt Weinsberg +http://lobid.org/organisations/DE-MUS-324316#! DE-MUS-324316 Druckereimuseum mit Musikinstrumentenwerkstatt +http://lobid.org/organisations/DE-MUS-324618#! DE-MUS-324618 Buchholzer Heimatmuseum und Sniers Hus +http://lobid.org/organisations/DE-MUS-324910#! DE-MUS-324910 Fabrikmuseum der Leonischen Industrie +http://lobid.org/organisations/DE-MUS-326114#! DE-MUS-326114 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-327013#! DE-MUS-327013 Historische Kornbrennerei +http://lobid.org/organisations/DE-MUS-327211#! DE-MUS-327211 Ostdeutsche Heimatstube +http://lobid.org/organisations/DE-MUS-327711#! DE-MUS-327711 Rundfunk Museum 'Manfred von Ardenne' +http://lobid.org/organisations/DE-MUS-328214#! DE-MUS-328214 Kirchenhistorisches Museum in der Pfalzkapelle +http://lobid.org/organisations/DE-MUS-329415#! DE-MUS-329415 Museum ""Vom Kloster zum Dorf"" +http://lobid.org/organisations/DE-MUS-329811#! DE-MUS-329811 Wilhelm-Zimmermann Gedenkstätte +http://lobid.org/organisations/DE-MUS-330816#! DE-MUS-330816 Ostdeutsche Heimatstube +http://lobid.org/organisations/DE-MUS-331715#! DE-MUS-331715 Ausstellung landwirtschaftlicher Geräte +http://lobid.org/organisations/DE-MUS-332218#! DE-MUS-332218 Wehrtechnisches Museum im Ringmauerturm +http://lobid.org/organisations/DE-MUS-332312#! DE-MUS-332312 Heimatmuseum Haus Montfort +http://lobid.org/organisations/DE-MUS-332718#! DE-MUS-332718 Heimatmuseum Batsch-Brestowatz +http://lobid.org/organisations/DE-MUS-333013#! DE-MUS-333013 Carl Julius Weber Gedenkstube +http://lobid.org/organisations/DE-MUS-333117#! DE-MUS-333117 Leinfelder Haus +http://lobid.org/organisations/DE-MUS-333513#! DE-MUS-333513 Korallen- und Heimatmuseum Nattheim +http://lobid.org/organisations/DE-MUS-334214#! DE-MUS-334214 Museum-Haus der Landsmannschaften +http://lobid.org/organisations/DE-MUS-334318#! DE-MUS-334318 Museum ""Altes Schulhaus"" +http://lobid.org/organisations/DE-MUS-334412#! DE-MUS-334412 Das Simplicissimus-Haus +http://lobid.org/organisations/DE-MUS-336814#! DE-MUS-336814 Erstes Allgäu-Schwäbisches Dorfschulmuseum +http://lobid.org/organisations/DE-MUS-338018#! DE-MUS-338018 Stadtmuseum Waldkraiburg +http://lobid.org/organisations/DE-MUS-338310#! DE-MUS-338310 Krankenhaus-Museum +http://lobid.org/organisations/DE-MUS-338414#! DE-MUS-338414 Cap San Diego +http://lobid.org/organisations/DE-MUS-338810#! DE-MUS-338810 Heimatmuseum Dachtel +http://lobid.org/organisations/DE-MUS-340714#! DE-MUS-340714 Brüder-Grimm-Haus und Museum Steinau ...das Museum an der Straße +http://lobid.org/organisations/DE-MUS-341019#! DE-MUS-341019 Heimatmuseum Steinfischbach +http://lobid.org/organisations/DE-MUS-341217#! DE-MUS-341217 Stift Bassum +http://lobid.org/organisations/DE-MUS-341519#! DE-MUS-341519 Wintersport- und Heimatmuseum Bad Sachsa +http://lobid.org/organisations/DE-MUS-341717#! DE-MUS-341717 Landtechnikmuseum Braunschweig Gut Steinhof +http://lobid.org/organisations/DE-MUS-341915#! DE-MUS-341915 Museum für Photographie +http://lobid.org/organisations/DE-MUS-342012#! DE-MUS-342012 Heimatmuseum Büddenstedt +http://lobid.org/organisations/DE-MUS-342314#! DE-MUS-342314 Museum in der Burg Coppenbrügge +http://lobid.org/organisations/DE-MUS-342814#! DE-MUS-342814 Deutsches Polizeimuseum e.V. +http://lobid.org/organisations/DE-MUS-343119#! DE-MUS-343119 Heimatkundliches Museum +http://lobid.org/organisations/DE-MUS-344112#! DE-MUS-344112 Museum Haus Cajeth - Primitive Malerei des 20. Jahrhunderts +http://lobid.org/organisations/DE-MUS-344716#! DE-MUS-344716 Graphische Sammlung am kunsthistorischen Institut +http://lobid.org/organisations/DE-MUS-345417#! DE-MUS-345417 Steinhausen-Museum +http://lobid.org/organisations/DE-MUS-347111#! DE-MUS-347111 Heimat- und Schifffahrtsmuseum Heinsen +http://lobid.org/organisations/DE-MUS-348218#! DE-MUS-348218 Schiffahrtsmuseum Nordseeheilbad Langeoog +http://lobid.org/organisations/DE-MUS-349013#! DE-MUS-349013 Kloster Mariensee +http://lobid.org/organisations/DE-MUS-349117#! DE-MUS-349117 Hufschmiede Museum Frehrking +http://lobid.org/organisations/DE-MUS-349815#! DE-MUS-349815 Von-Velen-Museum Papenburg +http://lobid.org/organisations/DE-MUS-349919#! DE-MUS-349919 Museum Rehburg +http://lobid.org/organisations/DE-MUS-351115#! DE-MUS-351115 Ostfriesisches Schulmuseum Folmhusen +http://lobid.org/organisations/DE-MUS-352410#! DE-MUS-352410 Attendorner Feuerwehr-Museum e.V. +http://lobid.org/organisations/DE-MUS-353111#! DE-MUS-353111 Schumannhaus +http://lobid.org/organisations/DE-MUS-353319#! DE-MUS-353319 Max Ernst Museum Brühl des LVR +http://lobid.org/organisations/DE-MUS-354010#! DE-MUS-354010 Museumslandschaft Deilbachtal +http://lobid.org/organisations/DE-MUS-356412#! DE-MUS-356412 Heimat- und Heringsfängermuseum Heimsen +http://lobid.org/organisations/DE-MUS-357811#! DE-MUS-357811 Agrarhistorisches Museum Emmelshausen +http://lobid.org/organisations/DE-MUS-359515#! DE-MUS-359515 Feuerwehrmuseum Schleswig-Holstein +http://lobid.org/organisations/DE-MUS-360114#! DE-MUS-360114 Bergbaumuseum Achthal +http://lobid.org/organisations/DE-MUS-360718#! DE-MUS-360718 Heimatverein Drakenburg e.V. 'Ole Schüne' +http://lobid.org/organisations/DE-MUS-361117#! DE-MUS-361117 Ausstellung ""Vision Bubenreutheum"" +http://lobid.org/organisations/DE-MUS-362214#! DE-MUS-362214 Hallertauer Hopfen- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-363217#! DE-MUS-363217 Weinbau- und Heimatmuseum Klingenberg +http://lobid.org/organisations/DE-MUS-364314#! DE-MUS-364314 Brauereimuseum +http://lobid.org/organisations/DE-MUS-365317#! DE-MUS-365317 Museum Moderner Kunst+Wörlen gemeinnützige GmbH +http://lobid.org/organisations/DE-MUS-365411#! DE-MUS-365411 Museum Polling +http://lobid.org/organisations/DE-MUS-366018#! DE-MUS-366018 Riedenburger Bauernhofmuseum +http://lobid.org/organisations/DE-MUS-366716#! DE-MUS-366716 Südostbayerisches Naturkunde- und Mammut-Museum +http://lobid.org/organisations/DE-MUS-367313#! DE-MUS-367313 Museum im Schloß Spielberg +http://lobid.org/organisations/DE-MUS-368212#! DE-MUS-368212 Aurnhammer-Sammlung - Posamentenmuseum im Stadtschloss Treuchtlingen +http://lobid.org/organisations/DE-MUS-368410#! DE-MUS-368410 Exter Kunsthaus +http://lobid.org/organisations/DE-MUS-368618#! DE-MUS-368618 Jüdisches Kulturmuseum und Synagoge Veitshöchheim +http://lobid.org/organisations/DE-MUS-368816#! DE-MUS-368816 Vogelmuseum +http://lobid.org/organisations/DE-MUS-369413#! DE-MUS-369413 Deutsches Hopfenmuseum +http://lobid.org/organisations/DE-MUS-372716#! DE-MUS-372716 Heimatmuseum Alte Kelter +http://lobid.org/organisations/DE-MUS-374712#! DE-MUS-374712 Teufelsturm Menden +http://lobid.org/organisations/DE-MUS-375215#! DE-MUS-375215 KZ-Gedenkstätte Neuengamme- Aussenstelle Gedenkstätte KZ Fuhlsbüttel +http://lobid.org/organisations/DE-MUS-375413#! DE-MUS-375413 Stadtmuseum im Knochenhaueramtshaus +http://lobid.org/organisations/DE-MUS-376510#! DE-MUS-376510 LVR-Industriemuseum Textilfabrik Cromford +http://lobid.org/organisations/DE-MUS-376614#! DE-MUS-376614 Heimatkundliche Sammlung Heiligenhaus +http://lobid.org/organisations/DE-MUS-377117#! DE-MUS-377117 ENERGETICON gGmbH +http://lobid.org/organisations/DE-MUS-377513#! DE-MUS-377513 LVR Freilichtmuseum Lindlar +http://lobid.org/organisations/DE-MUS-378610#! DE-MUS-378610 Zinnfigurenmuseum Goslar +http://lobid.org/organisations/DE-MUS-378912#! DE-MUS-378912 Stadtmuseum Werdohl +http://lobid.org/organisations/DE-MUS-379019#! DE-MUS-379019 Heimathaus Verl +http://lobid.org/organisations/DE-MUS-379217#! DE-MUS-379217 Schmiedemuseum Arfeld +http://lobid.org/organisations/DE-MUS-379311#! DE-MUS-379311 Heimathaus Welver +http://lobid.org/organisations/DE-MUS-379415#! DE-MUS-379415 Museum Leben und Arbeiten in Burbach +http://lobid.org/organisations/DE-MUS-381017#! DE-MUS-381017 Gentil-Haus +http://lobid.org/organisations/DE-MUS-383919#! DE-MUS-383919 Römermuseum Multerer +http://lobid.org/organisations/DE-MUS-385113#! DE-MUS-385113 Kulturhistorische Sammlung Iphofen +http://lobid.org/organisations/DE-MUS-385311#! DE-MUS-385311 Schloßmuseum Ismaning +http://lobid.org/organisations/DE-MUS-385415#! DE-MUS-385415 Bayerisches Strafvollzugsmuseum +http://lobid.org/organisations/DE-MUS-386314#! DE-MUS-386314 Heimatmuseum Maßbach +http://lobid.org/organisations/DE-MUS-386710#! DE-MUS-386710 Carl-Hirnbein-Museum +http://lobid.org/organisations/DE-MUS-388018#! DE-MUS-388018 Audorfer Museum im Burgtor +http://lobid.org/organisations/DE-MUS-388112#! DE-MUS-388112 Heimatstube Gutenberg +http://lobid.org/organisations/DE-MUS-388414#! DE-MUS-388414 Volkskundliches Museum Ahler Kråm / Volkskundliche Sammlung +http://lobid.org/organisations/DE-MUS-388612#! DE-MUS-388612 Museum Herz'sche Heimatstiftung +http://lobid.org/organisations/DE-MUS-388716#! DE-MUS-388716 Heimatmuseum Pfaffenhausen +http://lobid.org/organisations/DE-MUS-389011#! DE-MUS-389011 Heimatmuseum Postbauer-Heng +http://lobid.org/organisations/DE-MUS-390110#! DE-MUS-390110 Museumshof Roßtal +http://lobid.org/organisations/DE-MUS-390412#! DE-MUS-390412 Heimatmuseum der Gemeinde Sauerlach im Troadkasten in Arget +http://lobid.org/organisations/DE-MUS-390610#! DE-MUS-390610 Stadtmuseum +http://lobid.org/organisations/DE-MUS-391613#! DE-MUS-391613 Afrikamuseum +http://lobid.org/organisations/DE-MUS-391915#! DE-MUS-391915 Freilandmuseum Grassemann +http://lobid.org/organisations/DE-MUS-393411#! DE-MUS-393411 Heine-Haus Hamburg +http://lobid.org/organisations/DE-MUS-394310#! DE-MUS-394310 Regionalmuseum Eschenburg e.V. +http://lobid.org/organisations/DE-MUS-394612#! DE-MUS-394612 Stadtmuseum Leun +http://lobid.org/organisations/DE-MUS-396910#! DE-MUS-396910 Museumseisenbahn Hasetal +http://lobid.org/organisations/DE-MUS-397215#! DE-MUS-397215 Museum Altes Land +http://lobid.org/organisations/DE-MUS-398312#! DE-MUS-398312 Museum im Zwinger +http://lobid.org/organisations/DE-MUS-399211#! DE-MUS-399211 Besucherbergwerk ""Hüttenstollen"" Osterwald +http://lobid.org/organisations/DE-MUS-400019#! DE-MUS-400019 Schloß Höllinghofen +http://lobid.org/organisations/DE-MUS-400811#! DE-MUS-400811 Kölner Karnevalsmuseum +http://lobid.org/organisations/DE-MUS-401012#! DE-MUS-401012 Ubier-Monument +http://lobid.org/organisations/DE-MUS-402119#! DE-MUS-402119 Technik Museum +http://lobid.org/organisations/DE-MUS-404219#! DE-MUS-404219 Bergbaumuseum Auerbach-Pegnitz+Maffeischächte +http://lobid.org/organisations/DE-MUS-404313#! DE-MUS-404313 Rotkreuz-Landesmuseum Baden-Württemberg +http://lobid.org/organisations/DE-MUS-404615#! DE-MUS-404615 Müllmuseum Wallbach +http://lobid.org/organisations/DE-MUS-404813#! DE-MUS-404813 Oberpfälzer Künstlerhaus +http://lobid.org/organisations/DE-MUS-405816#! DE-MUS-405816 Tuchmuseum Lennep +http://lobid.org/organisations/DE-MUS-406215#! DE-MUS-406215 Schulhistorische Sammlung der Stadt Wuppertal +http://lobid.org/organisations/DE-MUS-406413#! DE-MUS-406413 Hessisches Braunkohle Bergbaumuseum+Abt. Bergbaugeschichte / Besucherbergwerk +http://lobid.org/organisations/DE-MUS-406715#! DE-MUS-406715 Heimatstube Arenborn +http://lobid.org/organisations/DE-MUS-407218#! DE-MUS-407218 Klostervilla Adelberg +http://lobid.org/organisations/DE-MUS-408117#! DE-MUS-408117 Museum in der 'Alten Schule' +http://lobid.org/organisations/DE-MUS-408815#! DE-MUS-408815 Dorfmuseum Gütenbach +http://lobid.org/organisations/DE-MUS-409110#! DE-MUS-409110 Museum im Herrenhaus +http://lobid.org/organisations/DE-MUS-409412#! DE-MUS-409412 Cafe-Museum ""Zum Puppenhaus"" +http://lobid.org/organisations/DE-MUS-409516#! DE-MUS-409516 Archäologisches Landesmuseum Baden-Württemberg, Konstanz +http://lobid.org/organisations/DE-MUS-409610#! DE-MUS-409610 Hirschwirtscheuer-Museum für die Künstlerfamilie Sommer +http://lobid.org/organisations/DE-MUS-410115#! DE-MUS-410115 Mühlenmuseum ""Mäulesmühle"" +http://lobid.org/organisations/DE-MUS-411118#! DE-MUS-411118 Heimatstube Reicheneck +http://lobid.org/organisations/DE-MUS-411910#! DE-MUS-411910 Haus der Ortsgeschichte +http://lobid.org/organisations/DE-MUS-412017#! DE-MUS-412017 Städtisches Kunstmuseum Singen +http://lobid.org/organisations/DE-MUS-413416#! DE-MUS-413416 Deutsches Harmonikamuseum +http://lobid.org/organisations/DE-MUS-414419#! DE-MUS-414419 Museum Burgthann +http://lobid.org/organisations/DE-MUS-415110#! DE-MUS-415110 Heimatmuseum 'Unterer Torturm' +http://lobid.org/organisations/DE-MUS-416311#! DE-MUS-416311 Burg Eisenhardt, Turm +http://lobid.org/organisations/DE-MUS-416717#! DE-MUS-416717 Psychiatriemuseum Haina +http://lobid.org/organisations/DE-MUS-417512#! DE-MUS-417512 Museum August Macke Haus +http://lobid.org/organisations/DE-MUS-418619#! DE-MUS-418619 Strieffler-Haus - Museum und Galerie (am Stadion) +http://lobid.org/organisations/DE-MUS-418911#! DE-MUS-418911 Industriemuseum Chemnitz +http://lobid.org/organisations/DE-MUS-419914#! DE-MUS-419914 Landschaftsmuseum Angeln / Unewatt +http://lobid.org/organisations/DE-MUS-420013#! DE-MUS-420013 Dorfmuseum Handewitt +http://lobid.org/organisations/DE-MUS-420315#! DE-MUS-420315 Industriemuseum Geschichtswerkstatt Herrenwyk +http://lobid.org/organisations/DE-MUS-420919#! DE-MUS-420919 Stadtgeschichtliche Ausstellung / Historisches Packhaus +http://lobid.org/organisations/DE-MUS-421214#! DE-MUS-421214 Literaturmuseum Theodor Storm +http://lobid.org/organisations/DE-MUS-421412#! DE-MUS-421412 ""Hüttels"" Musikwerke-Ausstellung +http://lobid.org/organisations/DE-MUS-422613#! DE-MUS-422613 Rechnermuseum der GWDG +http://lobid.org/organisations/DE-MUS-425112#! DE-MUS-425112 Ostfriesisches Landwirtschaftsmuseum Campen +http://lobid.org/organisations/DE-MUS-425612#! DE-MUS-425612 Museum HAUS HANSESTADT DANZIG +http://lobid.org/organisations/DE-MUS-425810#! DE-MUS-425810 Deutsches Technikmuseum, Science Center Spectrum +http://lobid.org/organisations/DE-MUS-426115#! DE-MUS-426115 Klostermühle Boitzenburg +http://lobid.org/organisations/DE-MUS-427212#! DE-MUS-427212 Museum Sammlung Prinzhorn +http://lobid.org/organisations/DE-MUS-429114#! DE-MUS-429114 Stiftung Topographie des Terrors +http://lobid.org/organisations/DE-MUS-429812#! DE-MUS-429812 Gedenkstätte gegen Polit. Gewalt +http://lobid.org/organisations/DE-MUS-430515#! DE-MUS-430515 Museum für Heimatgeschichte und Erdgeschichte +http://lobid.org/organisations/DE-MUS-431018#! DE-MUS-431018 Besucherbergwerk 19-Lachter-Stollen +http://lobid.org/organisations/DE-MUS-431310#! DE-MUS-431310 Grenzlandmuseum Bad Sachsa e.V. +http://lobid.org/organisations/DE-MUS-431518#! DE-MUS-431518 Heimatmuseum Hohegeiß +http://lobid.org/organisations/DE-MUS-432719#! DE-MUS-432719 FEUER.WEHRK - Das Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-433816#! DE-MUS-433816 Heimatmuseum Graacher Tor +http://lobid.org/organisations/DE-MUS-434319#! DE-MUS-434319 Deutsches Film- und Fototechnik Museum +http://lobid.org/organisations/DE-MUS-435010#! DE-MUS-435010 Deutsches Straßenmuseum e.V. +http://lobid.org/organisations/DE-MUS-435312#! DE-MUS-435312 Heimatmuseum Heltersberg +http://lobid.org/organisations/DE-MUS-435416#! DE-MUS-435416 Heimatmuseum - Archiv Karl Blum Hettenleidelheim e.V. +http://lobid.org/organisations/DE-MUS-435718#! DE-MUS-435718 Eisenmuseum Jünkerath +http://lobid.org/organisations/DE-MUS-436315#! DE-MUS-436315 Heimatkundliche Sammlung Kleinich +http://lobid.org/organisations/DE-MUS-437110#! DE-MUS-437110 Museum der Sickingenstadt Landstuhl+Zehntenscheune +http://lobid.org/organisations/DE-MUS-437214#! DE-MUS-437214 Heimatmuseum Barbaramühle +http://lobid.org/organisations/DE-MUS-437818#! DE-MUS-437818 Stadtmuseum Mülheim-Kärlich +http://lobid.org/organisations/DE-MUS-438113#! DE-MUS-438113 Schifffahrtsmuseum Neuburg e.V. +http://lobid.org/organisations/DE-MUS-441812#! DE-MUS-441812 Buddenbrookhaus +http://lobid.org/organisations/DE-MUS-442013#! DE-MUS-442013 Prof. Bertlein Schulmuseum Worms-Pfeddersheim +http://lobid.org/organisations/DE-MUS-442815#! DE-MUS-442815 Heimat- und Korbmuseum Alte Ruthemühle +http://lobid.org/organisations/DE-MUS-444613#! DE-MUS-444613 Leonhardi-Museum +http://lobid.org/organisations/DE-MUS-445512#! DE-MUS-445512 Heimatmuseum Großzschepa +http://lobid.org/organisations/DE-MUS-445918#! DE-MUS-445918 Kindermuseum Adlerturm - Dortmund im Mittelalter - Außenstelle des MKK +http://lobid.org/organisations/DE-MUS-446119#! DE-MUS-446119 Heimatmuseum Herzebrock +http://lobid.org/organisations/DE-MUS-446317#! DE-MUS-446317 Ölmühle und Mühlenmuseum Lemgo +http://lobid.org/organisations/DE-MUS-448313#! DE-MUS-448313 Schachmuseum Ströbeck +http://lobid.org/organisations/DE-MUS-448719#! DE-MUS-448719 Dorfmuseum Großkörschen +http://lobid.org/organisations/DE-MUS-449910#! DE-MUS-449910 Stadt- und Bergbaumuseum in Staßfurt +http://lobid.org/organisations/DE-MUS-450019#! DE-MUS-450019 Bauernmuseum Zahna +http://lobid.org/organisations/DE-MUS-450113#! DE-MUS-450113 Stadtmuseum Ditzingen +http://lobid.org/organisations/DE-MUS-450311#! DE-MUS-450311 Jüdisches Museum Göppingen +http://lobid.org/organisations/DE-MUS-450613#! DE-MUS-450613 Museum beim Markt +http://lobid.org/organisations/DE-MUS-455118#! DE-MUS-455118 Stadt- und Industriemuseum +http://lobid.org/organisations/DE-MUS-455316#! DE-MUS-455316 Dorfmuseum Stove +http://lobid.org/organisations/DE-MUS-455816#! DE-MUS-455816 Heimatstube Bienrode +http://lobid.org/organisations/DE-MUS-456017#! DE-MUS-456017 Kirchboden-Museum Weddel +http://lobid.org/organisations/DE-MUS-457718#! DE-MUS-457718 Kunstmuseum Wolfsburg +http://lobid.org/organisations/DE-MUS-457916#! DE-MUS-457916 Kunstmuseum Ahlen +http://lobid.org/organisations/DE-MUS-458617#! DE-MUS-458617 Stadtmuseum / Stadtarchiv +http://lobid.org/organisations/DE-MUS-458919#! DE-MUS-458919 Traktoren-Museum +http://lobid.org/organisations/DE-MUS-459110#! DE-MUS-459110 Flachsmuseum Wegberg-Beeck +http://lobid.org/organisations/DE-MUS-459318#! DE-MUS-459318 Emser Bergbaumuseum +http://lobid.org/organisations/DE-MUS-459714#! DE-MUS-459714 Museum im Westrich +http://lobid.org/organisations/DE-MUS-460719#! DE-MUS-460719 Glasmuseum Weißwasser +http://lobid.org/organisations/DE-MUS-462111#! DE-MUS-462111 Museum für Stadtgeschichte +http://lobid.org/organisations/DE-MUS-462215#! DE-MUS-462215 Deutsches Schiefermuseum +http://lobid.org/organisations/DE-MUS-462319#! DE-MUS-462319 Fahrzeugmuseum Suhl +http://lobid.org/organisations/DE-MUS-462517#! DE-MUS-462517 Erlebnis Bergwerk Merkers +http://lobid.org/organisations/DE-MUS-463916#! DE-MUS-463916 Anna-Katharina-Emmerick-Gedenkstätte +http://lobid.org/organisations/DE-MUS-467012#! DE-MUS-467012 Heimatmuseum Zehntscheuer Dietingen +http://lobid.org/organisations/DE-MUS-468015#! DE-MUS-468015 Kubiner Heimatstube +http://lobid.org/organisations/DE-MUS-469612#! DE-MUS-469612 Heimatkundliche Sammlung Heroldsbach +http://lobid.org/organisations/DE-MUS-470815#! DE-MUS-470815 Museum des Teltow +http://lobid.org/organisations/DE-MUS-470919#! DE-MUS-470919 Garnisonsmuseum +http://lobid.org/organisations/DE-MUS-471214#! DE-MUS-471214 Heimatmuseum Laisa +http://lobid.org/organisations/DE-MUS-473814#! DE-MUS-473814 UNESCO-Welterbe Fagus-Werk +http://lobid.org/organisations/DE-MUS-474911#! DE-MUS-474911 Erinnerungsstätte Luftbrücke Berlin +http://lobid.org/organisations/DE-MUS-475216#! DE-MUS-475216 Naturkundliches Museum Handeloh +http://lobid.org/organisations/DE-MUS-478319#! DE-MUS-478319 Haus Ruhrnatur +http://lobid.org/organisations/DE-MUS-480317#! DE-MUS-480317 Kettenschmiede-Museum +http://lobid.org/organisations/DE-MUS-481018#! DE-MUS-481018 Schulze-Delitzsch-Haus+Deutsches Genossenschaftsmuseum +http://lobid.org/organisations/DE-MUS-481414#! DE-MUS-481414 Barockschloß Oberlichtenau +http://lobid.org/organisations/DE-MUS-483514#! DE-MUS-483514 Freimaurermuseum der Großen Landesloge +http://lobid.org/organisations/DE-MUS-484319#! DE-MUS-484319 Heimatmuseum Treffurt +http://lobid.org/organisations/DE-MUS-484611#! DE-MUS-484611 Stiftung Thüringischer Schieferpark / Technisches Denkmal +http://lobid.org/organisations/DE-MUS-486117#! DE-MUS-486117 Weltkulturerbe Völklinger Hütte - Europ. Zentrum für Kunst und Industriekultur +http://lobid.org/organisations/DE-MUS-486617#! DE-MUS-486617 Museum für Naturkunde Magdeburg +http://lobid.org/organisations/DE-MUS-486919#! DE-MUS-486919 Förderkreis Konradsburg e.V. +http://lobid.org/organisations/DE-MUS-487412#! DE-MUS-487412 Bach-Gedenkstätte Schloß Köthen +http://lobid.org/organisations/DE-MUS-487610#! DE-MUS-487610 Gedenkstätte ""ROTER OCHSE"" +http://lobid.org/organisations/DE-MUS-487818#! DE-MUS-487818 Eisenbahn Club Aschersleben e.V. +http://lobid.org/organisations/DE-MUS-488415#! DE-MUS-488415 Heimatverein Droyßig e.V. +http://lobid.org/organisations/DE-MUS-488915#! DE-MUS-488915 Heimatstube Könnern +http://lobid.org/organisations/DE-MUS-489418#! DE-MUS-489418 Heimat- und Mühlenverein Parey+Paltrockmühle +http://lobid.org/organisations/DE-MUS-489814#! DE-MUS-489814 Heimatstube Steckby +http://lobid.org/organisations/DE-MUS-490017#! DE-MUS-490017 Schulmuseum Benzingerode +http://lobid.org/organisations/DE-MUS-490413#! DE-MUS-490413 Diorama der Schlacht bei Roßbach mit Gedenkstätte +http://lobid.org/organisations/DE-MUS-492513#! DE-MUS-492513 Weißensteiner Bahnhof +http://lobid.org/organisations/DE-MUS-493516#! DE-MUS-493516 Deutsches Peitschenmuseum +http://lobid.org/organisations/DE-MUS-494019#! DE-MUS-494019 Antoniter-Museum, Strigel-Museum +http://lobid.org/organisations/DE-MUS-494415#! DE-MUS-494415 Dorfmuseum Dennewitz +http://lobid.org/organisations/DE-MUS-494519#! DE-MUS-494519 Storchenmuseum Wriezen +http://lobid.org/organisations/DE-MUS-494717#! DE-MUS-494717 Sächsisches Industriemuseum+Energiefabrik Knappenrode +http://lobid.org/organisations/DE-MUS-495512#! DE-MUS-495512 Ziegeleipark Mildenberg +http://lobid.org/organisations/DE-MUS-496317#! DE-MUS-496317 Museum 'Hürtgenwald 1944 und im Frieden' +http://lobid.org/organisations/DE-MUS-496411#! DE-MUS-496411 Kunstmuseum Solingen +http://lobid.org/organisations/DE-MUS-496515#! DE-MUS-496515 Museum Zinkhütter Hof +http://lobid.org/organisations/DE-MUS-498511#! DE-MUS-498511 Leineweber-Museum +http://lobid.org/organisations/DE-MUS-498813#! DE-MUS-498813 Mineralienmuseum +http://lobid.org/organisations/DE-MUS-499014#! DE-MUS-499014 Puppenmuseum +http://lobid.org/organisations/DE-MUS-499118#! DE-MUS-499118 Bibelausstellung im Bibelzentrum des Ev. Bibelwerks im Rheinland +http://lobid.org/organisations/DE-MUS-499816#! DE-MUS-499816 Stadtmuseum Lichtenstein +http://lobid.org/organisations/DE-MUS-499910#! DE-MUS-499910 Stiftung Kunstgußmuseum Lauchhammer +http://lobid.org/organisations/DE-MUS-604419#! DE-MUS-604419 red dot design zentrum +http://lobid.org/organisations/DE-MUS-640717#! DE-MUS-640717 Ausstellung Bernhard Müller-Feyen am Buttermarkt +http://lobid.org/organisations/DE-MUS-644011#! DE-MUS-644011 Mies-van-der-Rohe-Haus +http://lobid.org/organisations/DE-MUS-652111#! DE-MUS-652111 Haus der Begegnung +http://lobid.org/organisations/DE-MUS-654315#! DE-MUS-654315 Galerie e.o.plauen im Erich-Ohser-Haus +http://lobid.org/organisations/DE-MUS-667410#! DE-MUS-667410 Universum Science Center Bremen +http://lobid.org/organisations/DE-MUS-704014#! DE-MUS-704014 Gemeindemuseum Hurlach +http://lobid.org/organisations/DE-MUS-704618#! DE-MUS-704618 Museum für Stadt- und Familiengeschichte+Mit Rathausturm +http://lobid.org/organisations/DE-MUS-704816#! DE-MUS-704816 Kolonialwarenmuseum Maul +http://lobid.org/organisations/DE-MUS-705819#! DE-MUS-705819 Museum im Rathaus Biengen +http://lobid.org/organisations/DE-MUS-706614#! DE-MUS-706614 Dokumentationsstätte Gefangenenhaus Ostertorwache +http://lobid.org/organisations/DE-MUS-706812#! DE-MUS-706812 Dieter Roth Museum +http://lobid.org/organisations/DE-MUS-707513#! DE-MUS-707513 Musikinstrumentenmuseum Lißberg +http://lobid.org/organisations/DE-MUS-707919#! DE-MUS-707919 Waldkabinett am Forstamt Neu Pudagla +http://lobid.org/organisations/DE-MUS-708318#! DE-MUS-708318 Leder- und Gerbermuseum Mülheim an der Ruhr +http://lobid.org/organisations/DE-MUS-708912#! DE-MUS-708912 Beatles Museum Remember +http://lobid.org/organisations/DE-MUS-709113#! DE-MUS-709113 Gedenkstätte ehemaliges SS-Sonderlager/KZ-Hinzert +http://lobid.org/organisations/DE-MUS-709519#! DE-MUS-709519 Stiftung Industriedenkmal Jakob Bengel +http://lobid.org/organisations/DE-MUS-709717#! DE-MUS-709717 Museum Winnweiler+Jüdisches Museum der Nordpfalz +http://lobid.org/organisations/DE-MUS-711413#! DE-MUS-711413 Ausstellung des Michael-Otto-Instituts im NABU +http://lobid.org/organisations/DE-MUS-713711#! DE-MUS-713711 Römer und Bajuwaren Museum Kipfenberg +http://lobid.org/organisations/DE-MUS-715519#! DE-MUS-715519 Sammlung historischer Maschinen und Geräte +http://lobid.org/organisations/DE-MUS-715613#! DE-MUS-715613 Internationales Feuerwehrmuseum Schwerin e.V. +http://lobid.org/organisations/DE-MUS-716210#! DE-MUS-716210 Museum für Bildende Kunst +http://lobid.org/organisations/DE-MUS-716418#! DE-MUS-716418 Freiland-Grenzmuseum Sorge +http://lobid.org/organisations/DE-MUS-716710#! DE-MUS-716710 Gedenkstätte Point Alpha +http://lobid.org/organisations/DE-MUS-717619#! DE-MUS-717619 Stiftung Wasserkunst Elbinsel Kaltehofe +http://lobid.org/organisations/DE-MUS-718518#! DE-MUS-718518 Horst-Janssen-Museum +http://lobid.org/organisations/DE-MUS-718716#! DE-MUS-718716 Feuerzeug-Museum Köln +http://lobid.org/organisations/DE-MUS-720610#! DE-MUS-720610 Stadtmuseum Hornberg +http://lobid.org/organisations/DE-MUS-721613#! DE-MUS-721613 Heimatmuseum Neu-Pasua +http://lobid.org/organisations/DE-MUS-721717#! DE-MUS-721717 Museum im Haus Salmegg +http://lobid.org/organisations/DE-MUS-722814#! DE-MUS-722814 Bonbon-Museum +http://lobid.org/organisations/DE-MUS-723119#! DE-MUS-723119 Schnarch Museum - Alfeld +http://lobid.org/organisations/DE-MUS-723619#! DE-MUS-723619 Bünting Tee-Museum +http://lobid.org/organisations/DE-MUS-724216#! DE-MUS-724216 Kloster Wennigsen +http://lobid.org/organisations/DE-MUS-724914#! DE-MUS-724914 Heimatstube 'Festes Haus' +http://lobid.org/organisations/DE-MUS-725115#! DE-MUS-725115 Kurt Mühlenhaupt Museum +http://lobid.org/organisations/DE-MUS-725417#! DE-MUS-725417 E. Strittmatter - Gedenkstätte+""Der Laden"" +http://lobid.org/organisations/DE-MUS-726618#! DE-MUS-726618 Heimatmuseum Glindow e.V. +http://lobid.org/organisations/DE-MUS-727111#! DE-MUS-727111 Groß Schacksdorfer Heimatstuben +http://lobid.org/organisations/DE-MUS-728416#! DE-MUS-728416 Freilichtmuseum Höllberghof Langengrassau +http://lobid.org/organisations/DE-MUS-729419#! DE-MUS-729419 Oscar-Barnack-Museum +http://lobid.org/organisations/DE-MUS-731719#! DE-MUS-731719 Schwerzkoer Mühle +http://lobid.org/organisations/DE-MUS-733111#! DE-MUS-733111 Wassermühle Worin +http://lobid.org/organisations/DE-MUS-734218#! DE-MUS-734218 Dorfmuseum ""Alte Schule"" +http://lobid.org/organisations/DE-MUS-734510#! DE-MUS-734510 Historische Weiherschleife +http://lobid.org/organisations/DE-MUS-738314#! DE-MUS-738314 Museumshafen Greifswald +http://lobid.org/organisations/DE-MUS-738710#! DE-MUS-738710 BLM - Hinter Aegidien +http://lobid.org/organisations/DE-MUS-739119#! DE-MUS-739119 Belvedere Pfingstberg +http://lobid.org/organisations/DE-MUS-739817#! DE-MUS-739817 kiek in un wunner di +http://lobid.org/organisations/DE-MUS-741013#! DE-MUS-741013 Stadtgeschichtshaus Mettmann +http://lobid.org/organisations/DE-MUS-742516#! DE-MUS-742516 Gerichtshistorische Sammlung des Landgerichts Flensburg +http://lobid.org/organisations/DE-MUS-743217#! DE-MUS-743217 Mühle Hoffnung +http://lobid.org/organisations/DE-MUS-745015#! DE-MUS-745015 Historische Ziegelei Pape Bevern +http://lobid.org/organisations/DE-MUS-745119#! DE-MUS-745119 Heimatmuseum Müden +http://lobid.org/organisations/DE-MUS-745515#! DE-MUS-745515 Käseglocke - Museum für Worpsweder Kunsthandwerk +http://lobid.org/organisations/DE-MUS-745713#! DE-MUS-745713 Schaubergwerk ""St. Anna am Freudenstein"" Zschorlau e.V. 1989 +http://lobid.org/organisations/DE-MUS-746112#! DE-MUS-746112 Museumsbahn Steinbach-Jöhstadt +http://lobid.org/organisations/DE-MUS-746310#! DE-MUS-746310 ZCOM Zuse-Computer-Museum +http://lobid.org/organisations/DE-MUS-746414#! DE-MUS-746414 Internationales Museum für Nummernschilder, Verkehrs- und Zulassungsgeschichte +http://lobid.org/organisations/DE-MUS-747219#! DE-MUS-747219 Heimatmuseum Schalkau +http://lobid.org/organisations/DE-MUS-747615#! DE-MUS-747615 Thüringer Wald- und Kreativmuseum mit 1. Deutschen Kloßpressmuseum +http://lobid.org/organisations/DE-MUS-748014#! DE-MUS-748014 Berend-Lehmann-Museum +http://lobid.org/organisations/DE-MUS-748410#! DE-MUS-748410 Mode Museum Feigel +http://lobid.org/organisations/DE-MUS-748618#! DE-MUS-748618 Museum Haus Kast - Wasser Holz Leben +http://lobid.org/organisations/DE-MUS-748816#! DE-MUS-748816 Erinnerungsstätte Ständehaus +http://lobid.org/organisations/DE-MUS-749111#! DE-MUS-749111 KZ-Gedenkstätte Vaihingen/Enz +http://lobid.org/organisations/DE-MUS-750512#! DE-MUS-750512 Audi museum mobile +http://lobid.org/organisations/DE-MUS-750616#! DE-MUS-750616 Heimatmuseum Markt Schwaben +http://lobid.org/organisations/DE-MUS-751119#! DE-MUS-751119 Historisches Weihnachtsmuseum +http://lobid.org/organisations/DE-MUS-751713#! DE-MUS-751713 Museum im Tuchmacherhaus +http://lobid.org/organisations/DE-MUS-751817#! DE-MUS-751817 Ludwig-Gebhard-Museum +http://lobid.org/organisations/DE-MUS-751911#! DE-MUS-751911 Museum ehemalige Klöppelschule Tiefenbach +http://lobid.org/organisations/DE-MUS-752310#! DE-MUS-752310 Straßenbahnmuseum Brandenburg an der Havel +http://lobid.org/organisations/DE-MUS-752612#! DE-MUS-752612 Erlebniswelt Blockflöte +http://lobid.org/organisations/DE-MUS-753313#! DE-MUS-753313 Malchower Stadtmühle +http://lobid.org/organisations/DE-MUS-753615#! DE-MUS-753615 Küstenfischer Museum +http://lobid.org/organisations/DE-MUS-753719#! DE-MUS-753719 Mönchguter Museumshof +http://lobid.org/organisations/DE-MUS-753813#! DE-MUS-753813 Museumsschiff 'Luise' +http://lobid.org/organisations/DE-MUS-754410#! DE-MUS-754410 Ernst-Bloch-Zentrum der Stadt Ludwigshafen am Rhein +http://lobid.org/organisations/DE-MUS-755611#! DE-MUS-755611 Museum für europäische Volkstrachten in Wegberg +http://lobid.org/organisations/DE-MUS-755819#! DE-MUS-755819 Bunkermuseum Oberhausen im Bürgerzentrum Alte Heid +http://lobid.org/organisations/DE-MUS-756312#! DE-MUS-756312 Halloren Schokoladen Museum +http://lobid.org/organisations/DE-MUS-756916#! DE-MUS-756916 Henry van de Velde Museum +http://lobid.org/organisations/DE-MUS-757211#! DE-MUS-757211 Jahrtausendturm +http://lobid.org/organisations/DE-MUS-757617#! DE-MUS-757617 Teddy Bär Haus +http://lobid.org/organisations/DE-MUS-758318#! DE-MUS-758318 Sammlung zur Geschichte der Geburtshilfe +http://lobid.org/organisations/DE-MUS-758610#! DE-MUS-758610 Museum der Archäologischen Arbeitsgemeinschaft e.V. Soltau-Fallingbostel +http://lobid.org/organisations/DE-MUS-759113#! DE-MUS-759113 Museum auf der Klosterinsel, Gewölbekeller +http://lobid.org/organisations/DE-MUS-762010#! DE-MUS-762010 Vogteimuseum und Blumenauer Heimatstube +http://lobid.org/organisations/DE-MUS-762312#! DE-MUS-762312 Leonhardi-Museum Aigen +http://lobid.org/organisations/DE-MUS-763617#! DE-MUS-763617 Baierweinmuseum Bach a.d.Donau +http://lobid.org/organisations/DE-MUS-764318#! DE-MUS-764318 Stadtmuseum Freilassung +http://lobid.org/organisations/DE-MUS-765311#! DE-MUS-765311 Werberger-Stube +http://lobid.org/organisations/DE-MUS-766418#! DE-MUS-766418 Badhaus Museum und Galerie +http://lobid.org/organisations/DE-MUS-766918#! DE-MUS-766918 Christophs Friseur-Museum +http://lobid.org/organisations/DE-MUS-769011#! DE-MUS-769011 Brauereikulturmuseum +http://lobid.org/organisations/DE-MUS-769813#! DE-MUS-769813 Heimatmuseum Alter Pfarrhof +http://lobid.org/organisations/DE-MUS-770318#! DE-MUS-770318 Museen Schloss Rimpar +http://lobid.org/organisations/DE-MUS-770714#! DE-MUS-770714 Pflanzenkundliche Schausammlung Weiler +http://lobid.org/organisations/DE-MUS-771519#! DE-MUS-771519 Heimatmuseum Steinwiesen +http://lobid.org/organisations/DE-MUS-771613#! DE-MUS-771613 Teichmühle Museum +http://lobid.org/organisations/DE-MUS-771717#! DE-MUS-771717 Burgmuseum Sulzberg +http://lobid.org/organisations/DE-MUS-773213#! DE-MUS-773213 Fuhrmann- und Schneidermuseum +http://lobid.org/organisations/DE-MUS-773817#! DE-MUS-773817 Kleinhäuslermuseum Pförring +http://lobid.org/organisations/DE-MUS-773911#! DE-MUS-773911 Museumsstüble im Alten Pfarrhof +http://lobid.org/organisations/DE-MUS-774612#! DE-MUS-774612 Mineralienmuseum Gottesehre +http://lobid.org/organisations/DE-MUS-775011#! DE-MUS-775011 Psychiatrie-Museum Emmendingen +http://lobid.org/organisations/DE-MUS-777017#! DE-MUS-777017 Altstadt-Kult-Museum der SpVgg Bayreuth +http://lobid.org/organisations/DE-MUS-777319#! DE-MUS-777319 KUNSTMUSEUM WALTER +http://lobid.org/organisations/DE-MUS-777913#! DE-MUS-777913 Niederdeutsches Bibelzentrum Barth +http://lobid.org/organisations/DE-MUS-778218#! DE-MUS-778218 Marinehistorisches- und Heimatmuseum Dranske/Bug +http://lobid.org/organisations/DE-MUS-779419#! DE-MUS-779419 Museum 'Lassaner Mühle' +http://lobid.org/organisations/DE-MUS-780310#! DE-MUS-780310 Heimatstube Kölpinsee +http://lobid.org/organisations/DE-MUS-781313#! DE-MUS-781313 Heimatstube Lüblow +http://lobid.org/organisations/DE-MUS-781917#! DE-MUS-781917 Heimatmuseum Börgerende +http://lobid.org/organisations/DE-MUS-782514#! DE-MUS-782514 Informations- und Dokumentationszentrum der BSTU +http://lobid.org/organisations/DE-MUS-782910#! DE-MUS-782910 ""Eike-von-Repgow""-Museum +http://lobid.org/organisations/DE-MUS-783319#! DE-MUS-783319 Stasi-Unterlagenarchiv/ BSTU - Außenstelle Erfurt +http://lobid.org/organisations/DE-MUS-783715#! DE-MUS-783715 Markmanns Spielzeugstuben +http://lobid.org/organisations/DE-MUS-783913#! DE-MUS-783913 Heimatmuseum Nienhagen +http://lobid.org/organisations/DE-MUS-784510#! DE-MUS-784510 Stadtmuseum im Litschgihaus +http://lobid.org/organisations/DE-MUS-784718#! DE-MUS-784718 Museumshaus, Außenstelle des Stralsund Museums +http://lobid.org/organisations/DE-MUS-786016#! DE-MUS-786016 HSV - Museum +http://lobid.org/organisations/DE-MUS-786110#! DE-MUS-786110 Hessisches Holz und Technik Museum +http://lobid.org/organisations/DE-MUS-788012#! DE-MUS-788012 Gedenkstätte Lager Sandbostel +http://lobid.org/organisations/DE-MUS-788616#! DE-MUS-788616 rock 'n popmuseum GmbH +http://lobid.org/organisations/DE-MUS-790010#! DE-MUS-790010 Heimatmuseum Maxen +http://lobid.org/organisations/DE-MUS-790614#! DE-MUS-790614 Die Welt der DDR +http://lobid.org/organisations/DE-MUS-792110#! DE-MUS-792110 Paulinerkirche - Historisches Gebäude der Niedersächsischen Staats- und Universitätsbibliothek +http://lobid.org/organisations/DE-MUS-792214#! DE-MUS-792214 AntiKriegshaus Sievershausen +http://lobid.org/organisations/DE-MUS-792912#! DE-MUS-792912 Außenstelle Schafstall +http://lobid.org/organisations/DE-MUS-795411#! DE-MUS-795411 Museum Alexandrowka +http://lobid.org/organisations/DE-MUS-795713#! DE-MUS-795713 Museum Herxheim +http://lobid.org/organisations/DE-MUS-796112#! DE-MUS-796112 Rheinaue-Museum Neuburg +http://lobid.org/organisations/DE-MUS-796518#! DE-MUS-796518 Technisches Museum 'Alte Stuhlfabrik' +http://lobid.org/organisations/DE-MUS-797011#! DE-MUS-797011 Museum 642 - Pößnecker Stadtgeschichte +http://lobid.org/organisations/DE-MUS-797219#! DE-MUS-797219 Thermometermuseum Geraberg +http://lobid.org/organisations/DE-MUS-797511#! DE-MUS-797511 Historisch-Technisches Museum Sömmerda, Dreyse-Haus +http://lobid.org/organisations/DE-MUS-797813#! DE-MUS-797813 Heimatmuseum Pflaster 14 +http://lobid.org/organisations/DE-MUS-797917#! DE-MUS-797917 Städtische Galerie 'Kunst in der Badestube' +http://lobid.org/organisations/DE-MUS-799111#! DE-MUS-799111 Bibelhaus - Erlebnismuseum +http://lobid.org/organisations/DE-MUS-800419#! DE-MUS-800419 Heimatmuseum Arneburg +http://lobid.org/organisations/DE-MUS-800513#! DE-MUS-800513 Städtisches Museum Aschersleben +http://lobid.org/organisations/DE-MUS-801516#! DE-MUS-801516 Stadtmuseum Wilhelm von Kügelgen +http://lobid.org/organisations/DE-MUS-802019#! DE-MUS-802019 Herbergsmuseum +http://lobid.org/organisations/DE-MUS-802519#! DE-MUS-802519 Museum Barockschloß Delitzsch +http://lobid.org/organisations/DE-MUS-802915#! DE-MUS-802915 Stiftung Bauhaus - Dessau +http://lobid.org/organisations/DE-MUS-804411#! DE-MUS-804411 Museum Synagoge Gröbzig +http://lobid.org/organisations/DE-MUS-804515#! DE-MUS-804515 Städtisches Museum Halberstadt +http://lobid.org/organisations/DE-MUS-804619#! DE-MUS-804619 Dom und Domschatz Halberstadt +http://lobid.org/organisations/DE-MUS-804713#! DE-MUS-804713 Gleimhaus+Museum der deutschen Aufklärung +http://lobid.org/organisations/DE-MUS-804911#! DE-MUS-804911 Städtisches Museum Halberstadt, Ausstellung Architektur und Fachwerkbau Liebfrauenkirche +http://lobid.org/organisations/DE-MUS-805414#! DE-MUS-805414 Archäologisches Museum der Martin-Luther-Universität Halle-Wittenberg +http://lobid.org/organisations/DE-MUS-807316#! DE-MUS-807316 Glockenmuseum Laucha +http://lobid.org/organisations/DE-MUS-808017#! DE-MUS-808017 Magdeburger Museen / Kulturhistorisches Museum +http://lobid.org/organisations/DE-MUS-809218#! DE-MUS-809218 Städtische Museen Quedlinburg / Schloßmuseum +http://lobid.org/organisations/DE-MUS-809718#! DE-MUS-809718 Museen des Altmarkkreises Salzwedel, J.F.Danneil-Museum +http://lobid.org/organisations/DE-MUS-809916#! DE-MUS-809916 Salzlandmuseum des Landkreises +http://lobid.org/organisations/DE-MUS-810119#! DE-MUS-810119 Altmärkisches Museum Stendal +http://lobid.org/organisations/DE-MUS-811018#! DE-MUS-811018 Heinrich-Schütz-Haus +http://lobid.org/organisations/DE-MUS-811112#! DE-MUS-811112 Museum im Schloß +http://lobid.org/organisations/DE-MUS-811216#! DE-MUS-811216 ELBTOR Werben +http://lobid.org/organisations/DE-MUS-811716#! DE-MUS-811716 Stiftung Luthergedenkstätten / Lutherhaus +http://lobid.org/organisations/DE-MUS-812813#! DE-MUS-812813 Hugenottenmuseum +http://lobid.org/organisations/DE-MUS-813910#! DE-MUS-813910 Museum für Kommunikation +http://lobid.org/organisations/DE-MUS-815812#! DE-MUS-815812 Museum im Wasserwerk +http://lobid.org/organisations/DE-MUS-816117#! DE-MUS-816117 Stadtmuseum Berlin / Museum Knoblauchhaus +http://lobid.org/organisations/DE-MUS-816711#! DE-MUS-816711 Museum Köpenick +http://lobid.org/organisations/DE-MUS-817016#! DE-MUS-817016 Museum Pankow - Heynstraße +http://lobid.org/organisations/DE-MUS-817110#! DE-MUS-817110 Museum Pankow - Prenzlauer Allee +http://lobid.org/organisations/DE-MUS-817318#! DE-MUS-817318 Altes Museum SMB +http://lobid.org/organisations/DE-MUS-817610#! DE-MUS-817610 Berliner Medizinhistorisches Museum der Charité +http://lobid.org/organisations/DE-MUS-817912#! DE-MUS-817912 Sammlung von Mißbildungen aus dem Bereich der Veterinärmedizin +http://lobid.org/organisations/DE-MUS-818019#! DE-MUS-818019 Historische Instrumentensammlung +http://lobid.org/organisations/DE-MUS-818811#! DE-MUS-818811 Bezirksmuseum Marzahn-Hellersdorf +http://lobid.org/organisations/DE-MUS-819314#! DE-MUS-819314 Stiftung Neue Synagoge Berlin-Centrum Judaicum +http://lobid.org/organisations/DE-MUS-819512#! DE-MUS-819512 Museum Angermünde +http://lobid.org/organisations/DE-MUS-819918#! DE-MUS-819918 Bad Liebenwerda / Lubwartturm +http://lobid.org/organisations/DE-MUS-821010#! DE-MUS-821010 Museum im Frey-Haus +http://lobid.org/organisations/DE-MUS-821812#! DE-MUS-821812 Heimatmuseum Dahme +http://lobid.org/organisations/DE-MUS-822211#! DE-MUS-822211 Museum Eberswalde +http://lobid.org/organisations/DE-MUS-823110#! DE-MUS-823110 Museum Viadrina im Junkerhaus +http://lobid.org/organisations/DE-MUS-823516#! DE-MUS-823516 Heimatmuseum Gransee +http://lobid.org/organisations/DE-MUS-825314#! DE-MUS-825314 Gedenkstätte und Museum Sachsenhausen +http://lobid.org/organisations/DE-MUS-828115#! DE-MUS-828115 Njepila-Hof Rohne+Mit der Sorbenstube ""serbska spa"" +http://lobid.org/organisations/DE-MUS-828219#! DE-MUS-828219 Heimatmuseum Ruhland +http://lobid.org/organisations/DE-MUS-828313#! DE-MUS-828313 Agrarhistorisches Museum Schlepzig +http://lobid.org/organisations/DE-MUS-828813#! DE-MUS-828813 Heimatstube Sperenberg +http://lobid.org/organisations/DE-MUS-829212#! DE-MUS-829212 Museum für Stadtgeschichte Templin +http://lobid.org/organisations/DE-MUS-830613#! DE-MUS-830613 Wegemuseum Wusterhausen / Dosse +http://lobid.org/organisations/DE-MUS-831116#! DE-MUS-831116 Heinrich-Schliemann-Museum Ankershagen +http://lobid.org/organisations/DE-MUS-831314#! DE-MUS-831314 Ehm-Welk-Haus Bad Doberan +http://lobid.org/organisations/DE-MUS-831418#! DE-MUS-831418 Stadt- und Bädermuseum Bad Doberan +http://lobid.org/organisations/DE-MUS-831616#! DE-MUS-831616 Heimatmuseum Boizenburg +http://lobid.org/organisations/DE-MUS-831918#! DE-MUS-831918 Krummes Haus /+Heimatmuseum Bützow +http://lobid.org/organisations/DE-MUS-832619#! DE-MUS-832619 Ernst-Moritz-Arndt-Museum Garz +http://lobid.org/organisations/DE-MUS-833612#! DE-MUS-833612 LA für Kultur und Denkmalpflege Mecklenburg-Vorpommern+Archäol. Freilichtmuseum +http://lobid.org/organisations/DE-MUS-834417#! DE-MUS-834417 Freilichtmuseum Klockenhagen +http://lobid.org/organisations/DE-MUS-834511#! DE-MUS-834511 Gerhart-Hauptmann-Haus +http://lobid.org/organisations/DE-MUS-834615#! DE-MUS-834615 Heimatmuseum Hiddensee +http://lobid.org/organisations/DE-MUS-836111#! DE-MUS-836111 Penzlin Museum +http://lobid.org/organisations/DE-MUS-836611#! DE-MUS-836611 Deutsches Bernsteinmuseum Ribnitz-Damgarten +http://lobid.org/organisations/DE-MUS-836715#! DE-MUS-836715 Heimatstube Röckwitz +http://lobid.org/organisations/DE-MUS-838315#! DE-MUS-838315 phanTECHNIKUM +http://lobid.org/organisations/DE-MUS-838513#! DE-MUS-838513 Schleifmühle Schwerin +http://lobid.org/organisations/DE-MUS-840417#! DE-MUS-840417 Museum Zingst +http://lobid.org/organisations/DE-MUS-840917#! DE-MUS-840917 Adam-Ries-Museum +http://lobid.org/organisations/DE-MUS-841910#! DE-MUS-841910 Museum Bad Schandau +http://lobid.org/organisations/DE-MUS-843312#! DE-MUS-843312 Schlossbergmuseum +http://lobid.org/organisations/DE-MUS-844211#! DE-MUS-844211 Heimatmuseum Dahlen +http://lobid.org/organisations/DE-MUS-844919#! DE-MUS-844919 Militärhistorisches Museum der Bundeswehr +http://lobid.org/organisations/DE-MUS-845016#! DE-MUS-845016 smac Staatliches Museum für Archäologie Chemnitz +http://lobid.org/organisations/DE-MUS-845318#! DE-MUS-845318 Staatliche Kunstsammlungen Dresden / Gemäldegalerie Alte Meister +http://lobid.org/organisations/DE-MUS-845412#! DE-MUS-845412 SKD - Albertinum (Gemäldegalerie Neue Meister, +http://lobid.org/organisations/DE-MUS-845516#! DE-MUS-845516 Staatliche Kunstsammlungen Dresden / Kupferstich-Kabinett +http://lobid.org/organisations/DE-MUS-845610#! DE-MUS-845610 Skulpturensammlung) +http://lobid.org/organisations/DE-MUS-845912#! DE-MUS-845912 Staatliche Kunstsammlungen Dresden / Museum für Sächsische Volkskunst mit Puppentheatersammlung +http://lobid.org/organisations/DE-MUS-846811#! DE-MUS-846811 Senckenberg Naturhistorische Sammlungen Dresden +http://lobid.org/organisations/DE-MUS-846915#! DE-MUS-846915 Staatliche Kunstsammlungen Dresden / Mathematisch-Physikalischer Salon +http://lobid.org/organisations/DE-MUS-847116#! DE-MUS-847116 Verkehrsmuseum Dresden gGmbH +http://lobid.org/organisations/DE-MUS-847418#! DE-MUS-847418 Museen der Stadt Dresden+Stadtmuseum Dresden/Kraszewski-Museum +http://lobid.org/organisations/DE-MUS-847616#! DE-MUS-847616 Heimatmuseum Ebersbach-Neugersdorf +http://lobid.org/organisations/DE-MUS-848015#! DE-MUS-848015 Heimatmuseum Falkenstein +http://lobid.org/organisations/DE-MUS-849018#! DE-MUS-849018 Heimatmuseum im Wachtturm +http://lobid.org/organisations/DE-MUS-849112#! DE-MUS-849112 Museum und Kunstsammlung Schloss Hinterglauchau +http://lobid.org/organisations/DE-MUS-849810#! DE-MUS-849810 Richard-Wagner-Stätten Graupa +http://lobid.org/organisations/DE-MUS-850211#! DE-MUS-850211 Museum Göschenhaus -+Seume-Gedenkstätte +http://lobid.org/organisations/DE-MUS-851110#! DE-MUS-851110 Museum Wassermühle Höfgen +http://lobid.org/organisations/DE-MUS-851318#! DE-MUS-851318 Museum Burg Hohnstein +http://lobid.org/organisations/DE-MUS-852915#! DE-MUS-852915 Schulmuseum - Werkstatt für Schulgeschichte Leipzig +http://lobid.org/organisations/DE-MUS-853210#! DE-MUS-853210 Museen im Grassi/Museum für Angewandte Kunst +http://lobid.org/organisations/DE-MUS-854411#! DE-MUS-854411 Antikenmuseum der Universität Leipzig +http://lobid.org/organisations/DE-MUS-856313#! DE-MUS-856313 Schloß Moritzburg +http://lobid.org/organisations/DE-MUS-856719#! DE-MUS-856719 Museum Burg Mylau +http://lobid.org/organisations/DE-MUS-857316#! DE-MUS-857316 Museum ""Alte Weberstube"" Niedercunnersdorf +http://lobid.org/organisations/DE-MUS-858111#! DE-MUS-858111 Museum Olbernhau +http://lobid.org/organisations/DE-MUS-858319#! DE-MUS-858319 Stadt- und Waagenmuseum +http://lobid.org/organisations/DE-MUS-858517#! DE-MUS-858517 Freilichtmuseum Burg- und Kloster Oybin +http://lobid.org/organisations/DE-MUS-858819#! DE-MUS-858819 Stadtmuseum Pirna +http://lobid.org/organisations/DE-MUS-860015#! DE-MUS-860015 Karl-May-Museum Radebeul +http://lobid.org/organisations/DE-MUS-860619#! DE-MUS-860619 Heimatmuseum Reichenau +http://lobid.org/organisations/DE-MUS-861716#! DE-MUS-861716 Heimatmuseum 'Carl Swoboda' +http://lobid.org/organisations/DE-MUS-862313#! DE-MUS-862313 PERLA CASTRUM - Ein Schloss voller Geschichte +http://lobid.org/organisations/DE-MUS-863118#! DE-MUS-863118 Burg Stolpen +http://lobid.org/organisations/DE-MUS-863618#! DE-MUS-863618 Museum-Naturalienkabinett Waldenburg +http://lobid.org/organisations/DE-MUS-865010#! DE-MUS-865010 Städtische Museen Zittau+Kulturhistorisches Museum +http://lobid.org/organisations/DE-MUS-865312#! DE-MUS-865312 Galerie am Domhof +http://lobid.org/organisations/DE-MUS-865916#! DE-MUS-865916 Lindenau-Museum Altenburg +http://lobid.org/organisations/DE-MUS-866013#! DE-MUS-866013 Dorfmuseum Altkirchen +http://lobid.org/organisations/DE-MUS-866315#! DE-MUS-866315 Bachausstellung im Schloss Arnstadt +http://lobid.org/organisations/DE-MUS-866711#! DE-MUS-866711 Forschungs- u. Gedenkstätte ""Heinrich-Schütz-Haus"" +http://lobid.org/organisations/DE-MUS-867016#! DE-MUS-867016 Klassik Stiftung Weimar/Schiller-Museum Bauerbach +http://lobid.org/organisations/DE-MUS-867110#! DE-MUS-867110 Heimatmuseum Bleicherode +http://lobid.org/organisations/DE-MUS-868113#! DE-MUS-868113 Thüringer Museum Eisenach /Schloß am Markt +http://lobid.org/organisations/DE-MUS-868415#! DE-MUS-868415 Palas und Museum Wartburg +http://lobid.org/organisations/DE-MUS-868519#! DE-MUS-868519 Thüringer Museum Eisenach / Reuter-Wagner-Museum +http://lobid.org/organisations/DE-MUS-868717#! DE-MUS-868717 Thüringer Museum Eisenach/Teezimmer im Kartausgarten +http://lobid.org/organisations/DE-MUS-869210#! DE-MUS-869210 Volkssternwarte Erfurt +http://lobid.org/organisations/DE-MUS-870611#! DE-MUS-870611 Kunstsammlung Gera - Orangerie +http://lobid.org/organisations/DE-MUS-870819#! DE-MUS-870819 Museum für Naturkunde Gera - Schreibersches Haus +http://lobid.org/organisations/DE-MUS-871812#! DE-MUS-871812 Staatliche Bücher- und Kupferstichsammlung +http://lobid.org/organisations/DE-MUS-871916#! DE-MUS-871916 Museum im Unteren Schloss +http://lobid.org/organisations/DE-MUS-872117#! DE-MUS-872117 Heimatmuseum Großengottern +http://lobid.org/organisations/DE-MUS-872617#! DE-MUS-872617 Thüringer Freilichtmuseum Hohenfelden +http://lobid.org/organisations/DE-MUS-873516#! DE-MUS-873516 Friedrich-Schiller-Universität / Ernst-Haeckel-Haus +http://lobid.org/organisations/DE-MUS-874311#! DE-MUS-874311 BAD LOBENSTEIN - Regionalmuseum +http://lobid.org/organisations/DE-MUS-874717#! DE-MUS-874717 Mühlhäuser Museen - Bauernkriegsmuseum Kornmarktkirche +http://lobid.org/organisations/DE-MUS-875418#! DE-MUS-875418 Museum Burg Ranis +http://lobid.org/organisations/DE-MUS-875512#! DE-MUS-875512 Volkskundemuseum Drognitz +http://lobid.org/organisations/DE-MUS-877112#! DE-MUS-877112 Deutsches Spielzeugmuseum Sonneberg +http://lobid.org/organisations/DE-MUS-878115#! DE-MUS-878115 Museum in der Osterburg +http://lobid.org/organisations/DE-MUS-878219#! DE-MUS-878219 Stiftung Albert-Schweitzer-Begegnungsstätte Weimar +http://lobid.org/organisations/DE-MUS-879618#! DE-MUS-879618 Klassik Stiftung Weimar / Kirms-Krackow-Haus +http://lobid.org/organisations/DE-MUS-879712#! DE-MUS-879712 Klassik Stiftung Weimar / Fürstengruft +http://lobid.org/organisations/DE-MUS-880915#! DE-MUS-880915 Heimatstube Ansprung +http://lobid.org/organisations/DE-MUS-881012#! DE-MUS-881012 Heimatmuseum Bad Brambach +http://lobid.org/organisations/DE-MUS-881116#! DE-MUS-881116 Stadtmuseum +http://lobid.org/organisations/DE-MUS-882015#! DE-MUS-882015 Stadtmuseum Eilenburg mit Sorbenturm +http://lobid.org/organisations/DE-MUS-882317#! DE-MUS-882317 Heimatmuseum Geithain +http://lobid.org/organisations/DE-MUS-883612#! DE-MUS-883612 Zinnfigurenausstellung Torhaus Dölitz +http://lobid.org/organisations/DE-MUS-884115#! DE-MUS-884115 Deutsches Fotomuseum +http://lobid.org/organisations/DE-MUS-884615#! DE-MUS-884615 Wiesenthaler K3 +http://lobid.org/organisations/DE-MUS-885514#! DE-MUS-885514 Bauernmuseum Zabeltitz +http://lobid.org/organisations/DE-MUS-886819#! DE-MUS-886819 Heimatverein Tessin und Umland e.V.+Mühlenhaus +http://lobid.org/organisations/DE-MUS-887614#! DE-MUS-887614 Kloster Michaelstein+Musikakademie und Museum +http://lobid.org/organisations/DE-MUS-887916#! DE-MUS-887916 Schaubergwerk Büchenberg +http://lobid.org/organisations/DE-MUS-888013#! DE-MUS-888013 Heimatmuseum Kroppenstedt +http://lobid.org/organisations/DE-MUS-888919#! DE-MUS-888919 Heimatstube Tanne +http://lobid.org/organisations/DE-MUS-889610#! DE-MUS-889610 Heimatmuseum Wippra +http://lobid.org/organisations/DE-MUS-890313#! DE-MUS-890313 Heimatmuseum der Stadt Grimmen +http://lobid.org/organisations/DE-MUS-892517#! DE-MUS-892517 Städtische Sammlungen Cottbus+- Stadtmuseum - +http://lobid.org/organisations/DE-MUS-892611#! DE-MUS-892611 Grünauer Wassersportmuseum +http://lobid.org/organisations/DE-MUS-893114#! DE-MUS-893114 Museum Rolf Werner +http://lobid.org/organisations/DE-MUS-896113#! DE-MUS-896113 Forst- und Köhlerhof +http://lobid.org/organisations/DE-MUS-900618#! DE-MUS-900618 Städtisches Museum / Abt. Feuerwehr- und Technikmuseum +http://lobid.org/organisations/DE-MUS-901819#! DE-MUS-901819 Tourist-Information und Museum +http://lobid.org/organisations/DE-MUS-902718#! DE-MUS-902718 Museum in der Kulturbrauerei+Alltag in der DDR +http://lobid.org/organisations/DE-MUS-903315#! DE-MUS-903315 Historische Arztpraxis +http://lobid.org/organisations/DE-MUS-904016#! DE-MUS-904016 Elbeseitenradschleppdampfer Württemberg +http://lobid.org/organisations/DE-MUS-904318#! DE-MUS-904318 Technisches Denkmal Krell""sche Schmiede +http://lobid.org/organisations/DE-MUS-905717#! DE-MUS-905717 Städtische Museen Jena, Historische Schlosserei Pelzer +http://lobid.org/organisations/DE-MUS-906116#! DE-MUS-906116 Hamburger Bahnhof SMB+Museum für Gegenwart +http://lobid.org/organisations/DE-MUS-907411#! DE-MUS-907411 Bauspar-Museum +http://lobid.org/organisations/DE-MUS-908914#! DE-MUS-908914 Hollenberg-Galerie +http://lobid.org/organisations/DE-MUS-909917#! DE-MUS-909917 Schulmuseum +http://lobid.org/organisations/DE-MUS-910412#! DE-MUS-910412 Graevenitz-Museum +http://lobid.org/organisations/DE-MUS-912918#! DE-MUS-912918 Levi-Strauss-Museum +http://lobid.org/organisations/DE-MUS-913411#! DE-MUS-913411 Spital mit Kunstsammlung Ostbayern +http://lobid.org/organisations/DE-MUS-914716#! DE-MUS-914716 Museum Malerwinkelhaus Marktbreit +http://lobid.org/organisations/DE-MUS-915615#! DE-MUS-915615 Museum im Klösterle +http://lobid.org/organisations/DE-MUS-916014#! DE-MUS-916014 Hofmarkmuseum Schloß Eggersberg +http://lobid.org/organisations/DE-MUS-917319#! DE-MUS-917319 Museum brandenburg-preußische Geschichte / Zinnfigurenmuseum +http://lobid.org/organisations/DE-MUS-917819#! DE-MUS-917819 Deutsches Schweinemuseum +http://lobid.org/organisations/DE-MUS-918916#! DE-MUS-918916 Museum Pachen - Deutsche Kunst des 20. Jh. +http://lobid.org/organisations/DE-MUS-919117#! DE-MUS-919117 Stiftung Werkstattmuseum für Druckkunst +http://lobid.org/organisations/DE-MUS-919315#! DE-MUS-919315 Siebenschlehener Pochwerk (SPW) +http://lobid.org/organisations/DE-MUS-919617#! DE-MUS-919617 Betrieb & Zeitgeschehen Museum +http://lobid.org/organisations/DE-MUS-920310#! DE-MUS-920310 Historischer Kaufmannsladen, 1820 der Familie Peters +http://lobid.org/organisations/DE-MUS-920810#! DE-MUS-920810 Technikmuseum Kratzmühle +http://lobid.org/organisations/DE-MUS-923715#! DE-MUS-923715 Bücker-Luftfahrt- und Europäisches Eissegel-Museum +http://lobid.org/organisations/DE-MUS-924416#! DE-MUS-924416 Historisches Sägewerk an der Windmühle Amanda +http://lobid.org/organisations/DE-MUS-925013#! DE-MUS-925013 Museum des Handwerks Bad Bederkesa e.V. +http://lobid.org/organisations/DE-MUS-925315#! DE-MUS-925315 Otto-Pankok-Kunstmuseum +http://lobid.org/organisations/DE-MUS-925919#! DE-MUS-925919 Blindenmuseum Hannover +http://lobid.org/organisations/DE-MUS-926110#! DE-MUS-926110 Archäologisches Zentrum Hitzacker +http://lobid.org/organisations/DE-MUS-926214#! DE-MUS-926214 Handwerksmuseum +http://lobid.org/organisations/DE-MUS-926318#! DE-MUS-926318 Schlickmuseum Riepe +http://lobid.org/organisations/DE-MUS-927613#! DE-MUS-927613 Technisches Denkmal Brikettfabrik 'Louise' +http://lobid.org/organisations/DE-MUS-927811#! DE-MUS-927811 Heimat- und Flößermuseum Bad Wildbad +http://lobid.org/organisations/DE-MUS-928116#! DE-MUS-928116 Budaörser Heimatmuseum +http://lobid.org/organisations/DE-MUS-928418#! DE-MUS-928418 Heimat- und Dorfschmiedemuseum +http://lobid.org/organisations/DE-MUS-929411#! DE-MUS-929411 Hammerschmiede Reichenbach +http://lobid.org/organisations/DE-MUS-929515#! DE-MUS-929515 Heimatmuseum Neckargerach +http://lobid.org/organisations/DE-MUS-929817#! DE-MUS-929817 Heimatmuseum Oberkochen +http://lobid.org/organisations/DE-MUS-930114#! DE-MUS-930114 Kunstmuseum Ravensburg +http://lobid.org/organisations/DE-MUS-930416#! DE-MUS-930416 Stadtmuseum Wehr +http://lobid.org/organisations/DE-MUS-932110#! DE-MUS-932110 Ziegeleimuseum Jockgrim +http://lobid.org/organisations/DE-MUS-932714#! DE-MUS-932714 Heimatmuseum Neupotz +http://lobid.org/organisations/DE-MUS-936112#! DE-MUS-936112 Haus der regionalen Geschichte - Unterburg Kastellaun +http://lobid.org/organisations/DE-MUS-936518#! DE-MUS-936518 Leutesdorfer Dorfmuseum +http://lobid.org/organisations/DE-MUS-936810#! DE-MUS-936810 Regionalmuseum Leben und Arbeiten im Blauen Ländchen +http://lobid.org/organisations/DE-MUS-937813#! DE-MUS-937813 Heimatmuseum +http://lobid.org/organisations/DE-MUS-938514#! DE-MUS-938514 Loreley-Museum im historischen Stadtturm +http://lobid.org/organisations/DE-MUS-939715#! DE-MUS-939715 Naturkundemuseum Gerolstein +http://lobid.org/organisations/DE-MUS-940814#! DE-MUS-940814 Alte Dorfmühle mit heimatkundlicher Sammlung Monzelfeld +http://lobid.org/organisations/DE-MUS-941015#! DE-MUS-941015 Hackenberger Mühle +http://lobid.org/organisations/DE-MUS-941515#! DE-MUS-941515 Weindorfmuseum Horrweiler +http://lobid.org/organisations/DE-MUS-942112#! DE-MUS-942112 Gustav-Adolf-Museum +http://lobid.org/organisations/DE-MUS-942518#! DE-MUS-942518 Jägerndorfer Heimatstuben +http://lobid.org/organisations/DE-MUS-942810#! DE-MUS-942810 Heimatmuseum Buchenberg +http://lobid.org/organisations/DE-MUS-943417#! DE-MUS-943417 Erstes Bayerisches Rundfunkmuseum +http://lobid.org/organisations/DE-MUS-943719#! DE-MUS-943719 KZ-Gedenkstätte Flossenbürg +http://lobid.org/organisations/DE-MUS-943813#! DE-MUS-943813 Furthmühle Egenhofen +http://lobid.org/organisations/DE-MUS-944014#! DE-MUS-944014 Jüdisches Museum Franken +http://lobid.org/organisations/DE-MUS-944410#! DE-MUS-944410 Schatzkammer Grafenrheinfeld +http://lobid.org/organisations/DE-MUS-945319#! DE-MUS-945319 Bayerisches Brauerei- und Bäckereimuseum Kulmbach +http://lobid.org/organisations/DE-MUS-945611#! DE-MUS-945611 Profanierte Marienkapelle +http://lobid.org/organisations/DE-MUS-945913#! DE-MUS-945913 Archäologische Ausstellung in der Schule +http://lobid.org/organisations/DE-MUS-946218#! DE-MUS-946218 Fränkisches Hopfenmuseum +http://lobid.org/organisations/DE-MUS-946416#! DE-MUS-946416 Heimatmuseum Niederaichbach +http://lobid.org/organisations/DE-MUS-946510#! DE-MUS-946510 Museum im Koffer e.V.+Kinder- u. Jugendmuseum Nürnberg +http://lobid.org/organisations/DE-MUS-947117#! DE-MUS-947117 Hermann-Köhl-Museum +http://lobid.org/organisations/DE-MUS-948412#! DE-MUS-948412 Klostermühlenmuseum +http://lobid.org/organisations/DE-MUS-948610#! DE-MUS-948610 Heimatmuseum Unterschleißheim +http://lobid.org/organisations/DE-MUS-949717#! DE-MUS-949717 Dorfschule +http://lobid.org/organisations/DE-MUS-953513#! DE-MUS-953513 Gotisches Haus +http://lobid.org/organisations/DE-MUS-953711#! DE-MUS-953711 Erich Maria Remarque-Friedenszentrum Osnabrück +http://lobid.org/organisations/DE-MUS-954818#! DE-MUS-954818 Historische Ziegelei Benzin, Technisches Denkmal und Museum der Lehm- und Backsteinstraße +http://lobid.org/organisations/DE-MUS-955311#! DE-MUS-955311 Uns lütt Museum +http://lobid.org/organisations/DE-MUS-957619#! DE-MUS-957619 Saßnitzer Fischerei- und Hafenmuseum +http://lobid.org/organisations/DE-MUS-958716#! DE-MUS-958716 Urweltmuseum Geoskop +http://lobid.org/organisations/DE-MUS-959011#! DE-MUS-959011 Technisches Museum +http://lobid.org/organisations/DE-MUS-959115#! DE-MUS-959115 Stadtmuseum Delmenhorst +http://lobid.org/organisations/DE-MUS-959917#! DE-MUS-959917 Festung Dresden +http://lobid.org/organisations/DE-MUS-960714#! DE-MUS-960714 Besucherbergwerk Annaberg-Buchholz +http://lobid.org/organisations/DE-MUS-961019#! DE-MUS-961019 Erzgebirgische Volkskunst +http://lobid.org/organisations/DE-MUS-961217#! DE-MUS-961217 Nadlerhaus Hundshübel +http://lobid.org/organisations/DE-MUS-961415#! DE-MUS-961415 Musik- und Wintersportmuseum +http://lobid.org/organisations/DE-MUS-962314#! DE-MUS-962314 Sächsisches Gold- und Silberschmiedemuseum Mülsen +http://lobid.org/organisations/DE-MUS-962710#! DE-MUS-962710 Erstes Nußknackermuseum Europas +http://lobid.org/organisations/DE-MUS-962814#! DE-MUS-962814 Feuerwehrmuseum Niederwiesa +http://lobid.org/organisations/DE-MUS-963213#! DE-MUS-963213 Technisches Museum Weigel +http://lobid.org/organisations/DE-MUS-963911#! DE-MUS-963911 Besucherbergwerk ""Alte Hoffnung Erbstolln"" +http://lobid.org/organisations/DE-MUS-964414#! DE-MUS-964414 Harmonika-Museum +http://lobid.org/organisations/DE-MUS-964716#! DE-MUS-964716 Museum am Modersohn-Haus +http://lobid.org/organisations/DE-MUS-965511#! DE-MUS-965511 LVR-Niederrheinmuseum Wesel +http://lobid.org/organisations/DE-MUS-967017#! DE-MUS-967017 Förderverein Historisches Kaufhaus J.H. Büsing Sohn +http://lobid.org/organisations/DE-MUS-967819#! DE-MUS-967819 Arno-Schmidt-Museum +http://lobid.org/organisations/DE-MUS-970018#! DE-MUS-970018 EMMA Museumswohnung im Kavalierhaus Gifhorn +http://lobid.org/organisations/DE-MUS-970914#! DE-MUS-970914 Das kleine Dorfmuseum - Henstedt, wie es früher war +http://lobid.org/organisations/DE-MUS-971115#! DE-MUS-971115 Museum für feldspurige Industriebahnen Osnabrück-Piesberg +http://lobid.org/organisations/DE-MUS-971511#! DE-MUS-971511 Heimatmuseum Seemannshus +http://lobid.org/organisations/DE-MUS-971917#! DE-MUS-971917 Museum im Dorf Lüben +http://lobid.org/organisations/DE-MUS-973413#! DE-MUS-973413 Museum auf dem Hölscherhof +http://lobid.org/organisations/DE-MUS-974114#! DE-MUS-974114 Heimatmuseum Wiefelstede +http://lobid.org/organisations/DE-MUS-974218#! DE-MUS-974218 Torf- und Siedlungsmuseum +http://lobid.org/organisations/DE-MUS-974416#! DE-MUS-974416 Keramik-um Fredelsloh +http://lobid.org/organisations/DE-MUS-974510#! DE-MUS-974510 Insects-World am Steinhuder Meer +http://lobid.org/organisations/DE-MUS-975815#! DE-MUS-975815 Museum im Kloster Stift zum Heiligengrabe +http://lobid.org/organisations/DE-MUS-975919#! DE-MUS-975919 Jüdisches Museum Berlin +http://lobid.org/organisations/DE-MUS-976516#! DE-MUS-976516 Montblanc-Museum +http://lobid.org/organisations/DE-MUS-977613#! DE-MUS-977613 Ebinger Heimatmuseum +http://lobid.org/organisations/DE-MUS-978314#! DE-MUS-978314 Hauffs Märchen Museum +http://lobid.org/organisations/DE-MUS-980510#! DE-MUS-980510 Gomaringer Schloß- und Gustav Schwab Museum +http://lobid.org/organisations/DE-MUS-981919#! DE-MUS-981919 Heimatmuseum Lichtenau +http://lobid.org/organisations/DE-MUS-982610#! DE-MUS-982610 Museum Anton Geiselhart +http://lobid.org/organisations/DE-MUS-982714#! DE-MUS-982714 Schloß Neuenbürg+Museum +http://lobid.org/organisations/DE-MUS-982818#! DE-MUS-982818 Turmuhrenmuseum Neulussheim +http://lobid.org/organisations/DE-MUS-983113#! DE-MUS-983113 Museum ""Werkstatt Pflaumer"" +http://lobid.org/organisations/DE-MUS-983613#! DE-MUS-983613 Museum für Alt-Meissner Porzellan +http://lobid.org/organisations/DE-MUS-983811#! DE-MUS-983811 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-984710#! DE-MUS-984710 Museum Seitingen-Oberflacht +http://lobid.org/organisations/DE-MUS-984918#! DE-MUS-984918 St. Georgener Museen - Kobisenmühle +http://lobid.org/organisations/DE-MUS-985015#! DE-MUS-985015 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-985411#! DE-MUS-985411 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-987417#! DE-MUS-987417 Rosengart-Museum +http://lobid.org/organisations/DE-MUS-987917#! DE-MUS-987917 Bürgermeister-Stroof-Haus +http://lobid.org/organisations/DE-MUS-988014#! DE-MUS-988014 Haus der Natur - Waldinformationszentrum +http://lobid.org/organisations/DE-MUS-989319#! DE-MUS-989319 EisenbahnMuseum Dieringhausen gGmbH +http://lobid.org/organisations/DE-MUS-989517#! DE-MUS-989517 Wasserkraftwerk Heimbach +http://lobid.org/organisations/DE-MUS-989611#! DE-MUS-989611 Internationale Krippenausstellung KRIPPANA +http://lobid.org/organisations/DE-MUS-989913#! DE-MUS-989913 Ortsgeschichtliches Museum Inden +http://lobid.org/organisations/DE-MUS-990314#! DE-MUS-990314 Tuppenhof - Museum für bäuerl. Geschichte u. Kultur +http://lobid.org/organisations/DE-MUS-990418#! DE-MUS-990418 Heimatmuseum Grieth +http://lobid.org/organisations/DE-MUS-990616#! DE-MUS-990616 Heimatstube Aldekerk +http://lobid.org/organisations/DE-MUS-993011#! DE-MUS-993011 Archäologisches Museum im Wasserturm +http://lobid.org/organisations/DE-MUS-993813#! DE-MUS-993813 Kulturhistorisches Karnevalsmuseum des Regionalverbands Düren +http://lobid.org/organisations/DE-MUS-994212#! DE-MUS-994212 Heimatstube Schaephuysen +http://lobid.org/organisations/DE-MUS-994316#! DE-MUS-994316 Gedenkausstellung Kriegsgefangenenlager ""Hoffnungsthal"" +http://lobid.org/organisations/DE-MUS-994410#! DE-MUS-994410 Nationalpark-Tor Gemünd +http://lobid.org/organisations/DE-MUS-994514#! DE-MUS-994514 Bauernmuseum Selfkant +http://lobid.org/organisations/DE-MUS-994712#! DE-MUS-994712 Hohe Mühle +http://lobid.org/organisations/DE-MUS-994816#! DE-MUS-994816 Museum der Narrenakademie Dülken +http://lobid.org/organisations/DE-MUS-994910#! DE-MUS-994910 Heimatmuseum WaldFeucht +http://lobid.org/organisations/DE-MUS-995111#! DE-MUS-995111 Gedenkstätte 'Landjuden an der Sieg' +http://lobid.org/organisations/DE-MUS-995913#! DE-MUS-995913 Klassik Stiftung Weimar / Museum Neues Weimar +http://lobid.org/organisations/DE-MUS-996218#! DE-MUS-996218 Technisches Museum der Bandweberei +http://lobid.org/organisations/DE-MUS-996312#! DE-MUS-996312 SPSG / Dampfmaschinenhaus +http://lobid.org/organisations/DE-MUS-996718#! DE-MUS-996718 Besucherstollen Fridolin am Zigeuner +http://lobid.org/organisations/DE-E8#! DE-E8 E 8 Landesamt für Natur, Umwelt und Verbraucherschutz NRW, Bibliothek Essen +http://lobid.org/organisations/DE-E13#! DE-E13 E 13 BKK Dachverband e.V., Bibliothek +http://lobid.org/organisations/DE-E14#! DE-E14 E 14 Bibliothek Adveniat +http://lobid.org/organisations/DE-Eis4#! DE-Eis4 Eis 4 Stadtbibliothek Eisleben +http://lobid.org/organisations/DE-Eus2#! DE-Eus2 Eus 2 Historische Kreisbibliothek Euskirchen +http://lobid.org/organisations/DE-F145#! DE-F145 F 145 Hessisches Landesarbeitsgericht, Bibliothek +http://lobid.org/organisations/DE-F207#! DE-F207 F 207 Historisches Museum, Bibliothek +http://lobid.org/organisations/DE-Fh2#! DE-Fh2 Fh 2 ZF Friedrichshafen AG, Fachbücherei +http://lobid.org/organisations/DE-Fur5#! DE-Fur5 Fur 5 Stadtbibliothek Fürstenwalde +http://lobid.org/organisations/DE-G16#! DE-G16 G 16 Stiftung Schloss Friedenstein Gotha, Bibliothek +http://lobid.org/organisations/DE-Gad1#! DE-Gad1 Gad 1 Stadt-, Kreis- und Gymnasialbibliothek Gardelegen +http://lobid.org/organisations/DE-Gar1#! DE-Gar1 Gar 1 Bibliothek der Redemptoristen +http://lobid.org/organisations/DE-Gen2#! DE-Gen2 Gen 2 Stadt- und Kreisbibliothek ""Edlef Köppen"" +http://lobid.org/organisations/DE-Goe122#! DE-Goe122 Gö 122 Oberfinanzdirektion Niedersachsen, Landesweite Bezüge- und Versorgungsstelle (LBV), Bibliothek +http://lobid.org/organisations/DE-Gs5#! DE-Gs5 Gs 5 Uwe Johnson-Bibliothek +http://lobid.org/organisations/DE-Gt1#! DE-Gt1 Gt 1 Helmholtz-Zentrum hereon GmbH, Bibliothek +http://lobid.org/organisations/DE-H5#! DE-H5 H 5 Statistisches Amt für Hamburg und Schleswig-Holstein, Standort Hamburg, Informationszentrum +http://lobid.org/organisations/DE-H30#! DE-H30 H 30 Verein für Hamburgische Geschichte, Bibliothek +http://lobid.org/organisations/DE-H46#! DE-H46 H 46 Staatsarchiv Hamburg, Bibliothek +http://lobid.org/organisations/DE-H50#! DE-H50 H 50 Hanseatisches Oberlandesgericht, Bibliothek +http://lobid.org/organisations/DE-H90#! DE-H90 H 90 Stiftung Centralbibliothek für Blinde +http://lobid.org/organisations/DE-H200#! DE-H200 H 200 Mennoniten-Gemeinde zu Hamburg und Altona, Bibliothek +http://lobid.org/organisations/DE-H205#! DE-H205 H 205 Amerikazentrum Hamburg e.V., Bibliothek +http://lobid.org/organisations/DE-18-301#! DE-18-301 18/301 Akademie der Polizei Hamburg, Bibliothek +http://lobid.org/organisations/DE-H260#! DE-H260 H 260 Wolfgang-Schweitzer-Bibliothek, Homöopathische Bibliothek Hamburg +http://lobid.org/organisations/DE-H354#! DE-H354 H 354 Gesellschaft für Erfahrungswissenschaftliche Sozialforschung - Archiv (GEWIS), Bibliothek +http://lobid.org/organisations/DE-H360#! DE-H360 H 360 Bucerius Law School, Hochschule für Rechtswissenschaft, ""Hengeler Mueller""-Bibliothek +http://lobid.org/organisations/DE-Ha52#! DE-Ha52 Ha 52 Schweißtechnische Lehr- und Versuchsanstalt SLV Halle GmbH, Arbeitsgruppe 06, IVS, Bibliothek +http://lobid.org/organisations/DE-Hb1#! DE-Hb1 Hb 1 Stadtarchiv Heilbronn, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Hef1#! DE-Hef1 Hef 1 Friedrichs-Gymnasium, Lehrerbücherei +http://lobid.org/organisations/DE-Heg1#! DE-Heg1 Heg 1 Kreisgymnasium, Oberstufenbibliothek +http://lobid.org/organisations/DE-Hel1#! DE-Hel1 Hel 1 Ehemalige Universitätsbibliothek +http://lobid.org/organisations/DE-Het4#! DE-Het4 Het 4 Regionales Medienzentrum (RMZ) +http://lobid.org/organisations/DE-Hgn1#! DE-Hgn1 Hgn 1 Stadtbibliothek Hagenow +http://lobid.org/organisations/DE-Hil1#! DE-Hil1 Hil 1 Roemer- und Pelizaeus-Museum, Bibliothek +http://lobid.org/organisations/DE-Hil3-1#! DE-Hil3-1 Hil 3/1 HAWK Hochschule für angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen, Bibliothek Ingenieurwissenschaften und Gesundheit +http://lobid.org/organisations/DE-Hil3-2#! DE-Hil3-2 Hil 3/2 HAWK Hochschule für angewandte Wissenschaft und Kunst, Hildesheim/Holzminden/Göttingen, Bibliothek Ressourcenmanagement +http://lobid.org/organisations/DE-J126#! DE-J126 J 126 Max-Planck-Institut für Chemische Ökologie und Max-Planck-Institut für Biogeochemie, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Kai1#! DE-Kai1 Kai 1 Pfalzbibliothek +http://lobid.org/organisations/DE-Kam1#! DE-Kam1 Kam 1 Stadtbibliothek G. E. Lessing Kamenz +http://lobid.org/organisations/DE-Kn29#! DE-Kn29 Kn 29 Albertus-Magnus-Institut, Bibliothek +http://lobid.org/organisations/DE-Kn166#! DE-Kn166 Kn 166 Institut der deutschen Wirtschaft Köln, Bibliothek +http://lobid.org/organisations/DE-Kn171#! DE-Kn171 Kn 171 Deutscher Städtetag, Bibliothek +http://lobid.org/organisations/DE-Kn183#! DE-Kn183 Kn 183 Gesellschaft für Anlagen- und Reaktorsicherheit (GRS) mbH, Bibliothek Köln +http://lobid.org/organisations/DE-Ko2#! DE-Ko2 Ko 2 Stadtbibliothek Oebisfelde +http://lobid.org/organisations/DE-Kob4#! DE-Kob4 Kob 4 Mittelrhein-Museum, Bibliothek +http://lobid.org/organisations/DE-Ks16#! DE-Ks16 Ks 16 Archiv der deutschen Frauenbewegung, Bibliothek +http://lobid.org/organisations/DE-L282#! DE-L282 L 282 Umweltbibliothek Leipzig +http://lobid.org/organisations/DE-Len1#! DE-Len1 Len 1 Gymnasium der Stadt Lennestadt, Bibliothek +http://lobid.org/organisations/DE-Lud1#! DE-Lud1 Lud 1 Stadt Ludwigslust, Bibliothek +http://lobid.org/organisations/DE-M28#! DE-M28 M 28 Landeshauptstadt München, Statistisches Amt, Amtsbibliothek +http://lobid.org/organisations/DE-M68#! DE-M68 M 68 Max-Planck-Institut für Psychiatrie, Deutsche Forschungsanstalt für Psychiatrie, Bibliothek +http://lobid.org/organisations/DE-M107a#! DE-M107a M 107a Ludwig-Maximilians-Universität München, Klinik für Vögel, Reptilien, Amphibien und Zierfische +http://lobid.org/organisations/DE-M308#! DE-M308 M 308 Deutsche Forschungsanstalt für Lebensmittelchemie, Bibliothek +http://lobid.org/organisations/DE-M359#! DE-M359 M 359 Max-Planck-Institut für Plasmaphysik, Bibliothek +http://lobid.org/organisations/DE-M461#! DE-M461 M 461 Institut für Städtebau der Deutschen Akademie für Städtebau und Landesplanung, Bibliothek +http://lobid.org/organisations/DE-M482#! DE-M482 M 482 Wissenschaft der Spiritualität e.V., Esoterikbibliothek +http://lobid.org/organisations/DE-Ma53#! DE-Ma53 Ma 53 Zentrum für Telemann-Pflege und -Forschung, Bibliothek +http://lobid.org/organisations/DE-Mas1#! DE-Mas1 Mas 1 Schulbibliothek Marienstatt +http://lobid.org/organisations/DE-Mdt1#! DE-Mdt1 Mdt 1 Kreisergänzungsbibliothek am Johann-Philipp-von-Schönborn-Gymnasium +http://lobid.org/organisations/DE-Mg2#! DE-Mg2 Mg 2 Bibliothek Wissenschaft und Weisheit +http://lobid.org/organisations/DE-Mh28#! DE-Mh28 Mh 28 Reiss-Engelhorn-Museen mit Curt-Engelhorn-Zentrum, Bibliothek +http://lobid.org/organisations/DE-Ml1#! DE-Ml1 Ml 1 St. Michael-Gymnasium, Schüler-Lehrer-Bibliotheken +http://lobid.org/organisations/DE-Mm1#! DE-Mm1 Mm 1 Max-Planck-Institut für Kohlenforschung, Bibliothek +http://lobid.org/organisations/DE-Mm1a#! DE-Mm1a Mm 1a Max-Planck-Institut für Chemische Energiekonversion, Bibliothek +http://lobid.org/organisations/DE-6-139b#! DE-6-139b 6/139b Kommission für Mundart- und Namenforschung Westfalens, Bibliothek +http://lobid.org/organisations/DE-Mue198#! DE-Mue198 Mü 198 Westfälischer Heimatbund e.V., Bibliothek +http://lobid.org/organisations/DE-N25#! DE-N25 N 25 Stadt Nürnberg, Rechtsamt, Verwaltungsbibliothek +http://lobid.org/organisations/DE-Nau1#! DE-Nau1 Nau 1 Max-Planck-Institut für Herz- und Lungenforschung, W. G. Kerckhoff-Institut, Bibliothek +http://lobid.org/organisations/DE-Nbg2#! DE-Nbg2 Nbg 2 Christophorus-Diakoniewerk gGmbH, Medizinische Fachbibliothek und Patientenbibliothek +http://lobid.org/organisations/DE-Ni3#! DE-Ni3 Ni 3 Stadtbibliothek Niesky +http://lobid.org/organisations/DE-No10#! DE-No10 No 10 Stadtbibliothek ""Rudolf Hagelstange"" +http://lobid.org/organisations/DE-Nst1#! DE-Nst1 Nst 1 Struktur- und Genehmigungsdirektion Süd, Bücherei +http://lobid.org/organisations/DE-Obr1#! DE-Obr1 Obr 1 Südzucker AG Mannheim / Ochsenfurt (ZAFES), Bibliothek +http://lobid.org/organisations/DE-Os1#! DE-Os1 Os 1 Verein für Geschichte und Landeskunde von Osnabrück e.V., Bibliothek +http://lobid.org/organisations/DE-Ost2#! DE-Ost2 Ost 2 Kreisheimatmuseum, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ost3#! DE-Ost3 Ost 3 Stadt- und Kreisbibliothek Osterburg-Stendal +http://lobid.org/organisations/DE-Ott1#! DE-Ott1 Ott 1 Erzabtei St. Ottilien, Bibliothek +http://lobid.org/organisations/DE-Pir8#! DE-Pir8 Pir 8 Stadtbibliothek Pirna +http://lobid.org/organisations/DE-Pyr1#! DE-Pyr1 Pyr 1 Humboldt-Gymnasium, Schulbücherei +http://lobid.org/organisations/DE-R129#! DE-R129 R 129 Stadtbibliothek Bad Doberan +http://lobid.org/organisations/DE-R130#! DE-R130 R 130 Stadtbibliothek Wolgast +http://lobid.org/organisations/DE-Rod1#! DE-Rod1 Rod 1 Deutsche Hydrierwerke GmbH Rodleben, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-San4#! DE-San4 San 4 Stadtbibliothek Sangerhausen +http://lobid.org/organisations/DE-Sen5#! DE-Sen5 Sen 5 Stadtbibliothek Senftenberg +http://lobid.org/organisations/DE-Shw29#! DE-Shw29 Shw 29 Stadtbibliothek Bützow +http://lobid.org/organisations/DE-Sie4#! DE-Sie4 Sie 4 Anthropos-Bibliothek +http://lobid.org/organisations/DE-Sp1#! DE-Sp1 Sp 1 Gymnasium am Kaiserdom, Bibliothek +http://lobid.org/organisations/DE-Sp4#! DE-Sp4 Sp 4 Gymnasium Weierhof am Donnersberg, Zentralbibliothek +http://lobid.org/organisations/DE-Sp5#! DE-Sp5 Sp 5 Evangelische Kirche der Pfalz, Bibliothek und Medienzentrale +http://lobid.org/organisations/DE-Sra6#! DE-Sra6 Sra 6 Deutsches Meeresmuseum, Bibliothek +http://lobid.org/organisations/DE-Ste2#! DE-Ste2 Ste 2 Stadtbibliothek Tangermünde +http://lobid.org/organisations/DE-Stg15#! DE-Stg15 Stg 15 Robert Bosch GmbH Information Center +http://lobid.org/organisations/DE-Stg92#! DE-Stg92 Stg 92 Katholisches Bibelwerk e.V., Bibliothek +http://lobid.org/organisations/DE-Stg251#! DE-Stg251 Stg 251 Ministerium für Wissenschaft, Forschung und Kunst Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Stg267#! DE-Stg267 Stg 267 Stiftung Bundespräsident-Theodor-Heuss-Haus, Bibliothek +http://lobid.org/organisations/DE-Su13#! DE-Su13 Su 13 Klinikum gGmbH, Medizinische Fachbibliothek/Patientenbibliothek +http://lobid.org/organisations/DE-Tr9#! DE-Tr9 Tr 9 Stadtbücherei Trier +http://lobid.org/organisations/DE-Tr12#! DE-Tr12 Tr 12 Aufsichts- und Dienstleistungsdirektion, Bibliothek +http://lobid.org/organisations/DE-W78#! DE-W78 W 78 Institut für Hochschulkunde an der Universität Würzburg, Bibliothek +http://lobid.org/organisations/DE-Wil5#! DE-Wil5 Wil 5 Carl von Ossietzky Universität Oldenburg, ICBM - Institut für Chemie und Biologie des Meeres, Bibliothek +http://lobid.org/organisations/DE-Ws6#! DE-Ws6 Ws 6 Stadtbibliothek Weißenfels +http://lobid.org/organisations/DE-Ws7#! DE-Ws7 Ws 7 Stadtbibliothek Hohenmölsen +http://lobid.org/organisations/DE-Ze1#! DE-Ze1 Ze 1 Francisceumsbibliothek +http://lobid.org/organisations/DE-Zm4#! DE-Zm4 Zm 4 Stadt- und Kreisbibliothek Zella-Mehlis +http://lobid.org/organisations/DE-959-1#! DE-959-1 959/1 Hochschule Osnabrück, Bibliothek Campus Haste +http://lobid.org/organisations/DE-Tp1#! DE-Tp1 Tp 1 ASKLEPIOS Fachklinikum Teupitz, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B1531#! DE-B1531 B 1531 Deutsches Rheuma-Forschungszentrum, Bibliothek +http://lobid.org/organisations/DE-Pl11#! DE-Pl11 Pl 11 Berufsakademie Sachsen, Staatliche Studienakademie Plauen, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B1532#! DE-B1532 B 1532 Max-Planck-Institut für Bildungsforschung, Bibliothek und wissenschaftliche Information +http://lobid.org/organisations/DE-Ma56#! DE-Ma56 Ma 56 Landeshauptstadt Magdeburg, Verwaltungsbibliothek +http://lobid.org/organisations/DE-572#! DE-572 572 Muthesius-Kunsthochschule, Zentrale Hochschulbibliothek +http://lobid.org/organisations/DE-1113#! DE-1113 1113 Stadtbücherei Groß-Gerau +http://lobid.org/organisations/DE-1010#! DE-1010 1010 Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek +http://lobid.org/organisations/DE-Dm20#! DE-Dm20 Dm 20 Westfälisches Industriemuseum, Bibliothek +http://lobid.org/organisations/DE-Po81#! DE-Po81 Po 81 Max-Planck-Institut für Kolloid- und Grenzflächenforschung, Bibliothek +http://lobid.org/organisations/DE-Ka90#! DE-Ka90 Ka 90 Berufsakademie Karlsruhe, Staatliche Studienakademie, Bibliothek +http://lobid.org/organisations/DE-25-171#! DE-25-171 25/171 Klinik für Psychiatrie, Psychotherapie und Psychosomatik im Kindes- und Jugendalter (Department für Psychische Erkrankungen), Bibliothek +http://lobid.org/organisations/DE-B1550#! DE-B1550 B 1550 Stiftung Deutsches Technikmuseum Berlin, Bibliothek +http://lobid.org/organisations/DE-1120#! DE-1120 1120 Gemeindebücherei Niestetal +http://lobid.org/organisations/DE-B1536#! DE-B1536 B 1536 Zuse Institute Berlin (ZIB), Bibliothek +http://lobid.org/organisations/DE-1125#! DE-1125 1125 Samtgemeindebibliothek Harpstedt +http://lobid.org/organisations/DE-Kob9#! DE-Kob9 Kob 9 Neues Justizzentrum Koblenz, Bibliothek +http://lobid.org/organisations/DE-1127#! DE-1127 1127 Samtgemeindebücherei Schwarmstedt +http://lobid.org/organisations/DE-38-230#! DE-38-230 38/230 Institut für Gewerblichen Rechtsschutz und Urheberrecht, Bibliothek +http://lobid.org/organisations/DE-1128#! DE-1128 1128 Dombibliothek, Öffentliche Bibliothek für die Stadt Limburg +http://lobid.org/organisations/DE-Sa23#! DE-Sa23 Sa 23 Landtag des Saarlandes, Archiv +http://lobid.org/organisations/DE-26-290#! DE-26-290 26/290 Universität Gießen, Bibliothek des Universitätsarchivs +http://lobid.org/organisations/DE-26-015#! DE-26-015 26/015 Europäisches Dokumentationszentrum Gießen +http://lobid.org/organisations/DE-575#! DE-575 575 Hochschule für Musik Detmold, Bibliothek +http://lobid.org/organisations/DE-90-212#! DE-90-212 90/212 KIT-Bibliothek, Bibliothek des Instituts für Angewandte Materialien / Zuverlässigkeit und Mikrostruktur +http://lobid.org/organisations/DE-Ha163#! DE-Ha163 Ha 163 Max-Planck-Institut für ethnologische Forschung, Bibliothek +http://lobid.org/organisations/DE-1131#! DE-1131 1131 Stadtbibliothek Montabaur +http://lobid.org/organisations/DE-77-005#! DE-77-005 77/005 Universität Mainz, Bereichsbibliothek Universitätsmedizin +http://lobid.org/organisations/DE-Mz117#! DE-Mz117 Mz 117 Landesamt für Geologie und Bergbau Rheinland-Pfalz, Bibliothek +http://lobid.org/organisations/DE-Hom1#! DE-Hom1 Hom 1 Stadtarchiv Homburg +http://lobid.org/organisations/DE-1133#! DE-1133 1133 Arbeiterwohlfahrt KV Nordsachsen e.V. Bibliothek +http://lobid.org/organisations/DE-B1538#! DE-B1538 B 1538 DATADIWAN, Bibliothek für Naturheilkunde, Ganzheitsmedizin und Grenzgebiete der Wissenschaft +http://lobid.org/organisations/DE-1134#! DE-1134 1134 Gemeindebücherei Hesel +http://lobid.org/organisations/DE-83-1054a#! DE-83-1054a 83/1054a TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Straßenplanung und Straßenbetrieb, Bibliothek +http://lobid.org/organisations/AT-STICHWORT#! AT-STICHWORT AT-STICHWORT STICHWORT - Archiv der Frauen- und Lesbenbewegung, Bibliothek - Dokumentation - Multimedia +http://lobid.org/organisations/DE-1137#! DE-1137 1137 Mediathek der Stadt Wehr +http://lobid.org/organisations/DE-B1512#! DE-B1512 B 1512 Bundesinstitut für Arzneimittel und Medizinprodukte (BfArM), Bibliothek +http://lobid.org/organisations/DE-B11w#! DE-B11w B 11w Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Rathgen-Forschungslabor, Bibliothek +http://lobid.org/organisations/DE-Schu1#! DE-Schu1 Schu 1 Mundartbibliothek, Zentrales Württembergisches Mundartarchiv +http://lobid.org/organisations/DE-Stg271#! DE-Stg271 Stg 271 Deutsch-Amerikanisches Zentrum / James-F.-Byrnes-Institut e.V., Bibliothek +http://lobid.org/organisations/DE-Stau1#! DE-Stau1 Stau 1 Goethe-Sammlung Staufen, Bibliothek +http://lobid.org/organisations/DE-38-461#! DE-38-461 38/461 Institut für Altertumskunde, Abteilung Mittel- und Neulatein, Bibliothek +http://lobid.org/organisations/DE-B1545#! DE-B1545 B 1545 Bundesamt für zentrale Dienste und offene Vermögensfragen, Bibliothek +http://lobid.org/organisations/DE-Kgst2#! DE-Kgst2 Kgst 2 Siegfried Vögele Institut, Internationale Gesellschaft für Dialogmarketing mbH, Bibliothek +http://lobid.org/organisations/DE-Dm21#! DE-Dm21 Dm 21 Leibniz-Institut für Arbeitsforschung an der TU Dortmund, Bibliothek +http://lobid.org/organisations/DE-82-739a#! DE-82-739a 82/739a Zahnärztliche Prothetik, Zahnärztliche Werkstoffkunde, Bibliothek +http://lobid.org/organisations/DE-294-66#! DE-294-66 294/66 Ruhr-Universität Bochum, Fakultät für Philologie der Universität, Bibliothek, Institut für Theaterwissenschaft +http://lobid.org/organisations/DE-26-190#! DE-26-190 26/190 Universität Gießen, Pharmakologie und Toxikologie (Vet.med.), Bibliothek +http://lobid.org/organisations/DE-Ess5#! DE-Ess5 Ess 5 Regierungspräsidium Stuttgart, Landesamt für Denkmalpflege, Bibliothek +http://lobid.org/organisations/DE-1147#! DE-1147 1147 Hochschule für öffentliche Verwaltung und Finanzen Ludwigsburg, Bibliothek +http://lobid.org/organisations/DE-1148#! DE-1148 1148 Öffentliche Bücherei St. Matthäus +http://lobid.org/organisations/DE-2070l#! DE-2070l 2070l Hochschule für Wirtschaft und Recht, Hochschulbibliothek, Campus Lichtenberg +http://lobid.org/organisations/DE-1153#! DE-1153 1153 Öffentliche Bücherei Balve +http://lobid.org/organisations/DE-18-303#! DE-18-303 18/303 Asien-Afrika-Institut der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-Re5#! DE-Re5 Re 5 Bischöfliche Zentralbibliothek +http://lobid.org/organisations/DE-Ham1#! DE-Ham1 Ham 1 Bayerische Musikakademie Hammelburg, Bibliothek +http://lobid.org/organisations/DE-L245#! DE-L245 L 245 Samuel-Heinicke-Schule, Bibliothek Hör- und Sprachgeschädigtenwesen Leipzig +http://lobid.org/organisations/DE-D270#! DE-D270 D 270 Fraunhofer-Institut für Integrierte Schaltungen (IIS), Institutsteil Entwurfsautomatisierung, Bibliothek +http://lobid.org/organisations/DE-Stg274#! DE-Stg274 Stg 274 Seminar für Seelsorgefortbildung (KSA), Bibliothek +http://lobid.org/organisations/DE-B1562#! DE-B1562 B 1562 Deutsches Zentrum für Altersfragen e.V. (DZA), Bibliothek +http://lobid.org/organisations/DE-Kn41-47#! DE-Kn41-47 Kn 41/47 Deutsche Sporthochschule Köln, Sportlehrer/innen-Ausbildungs-Zentrum (SpAZ), Bibliothek +http://lobid.org/organisations/DE-1168#! DE-1168 1168 Stadtbücherei Bremervörde +http://lobid.org/organisations/DE-1169#! DE-1169 1169 Stadt- und Schulbücherei Braunlage +http://lobid.org/organisations/DE-B1563#! DE-B1563 B 1563 Polnisches Institut Berlin, Bibliothek +http://lobid.org/organisations/DE-1186#! DE-1186 1186 Fahrbücherei Landkreis Cuxhaven +http://lobid.org/organisations/DE-1192#! DE-1192 1192 Stadtbücherei Twistringen +http://lobid.org/organisations/DE-1198#! DE-1198 1198 Stadtbücherei Geestland +http://lobid.org/organisations/DE-Mz1-1#! DE-Mz1-1 Mz 1/1 Römisch-Germanisches Zentralmuseum, Forschungsbereich Antike Schiffahrt, Bibliothek +http://lobid.org/organisations/DE-Mz1-3#! DE-Mz1-3 Mz 1/3 LEIZA - Leibniz-Zentrum für Archäologie, Forschungsbereich Altsteinzeit, Bibliothek +http://lobid.org/organisations/DE-1201#! DE-1201 1201 Samtgemeindebücherei Ebstorf +http://lobid.org/organisations/DE-1203#! DE-1203 1203 Gemeindebücherei Westoverledingen +http://lobid.org/organisations/DE-90-215#! DE-90-215 90/215 KIT-Bibliothek, Bibliothek des Sprachenzentrums +http://lobid.org/organisations/DE-1215#! DE-1215 1215 Stadt- und Kreisbibliothek Sömmerda +http://lobid.org/organisations/DE-16-152#! DE-16-152 16/152 Institut für Religionswissenschaft der Universität, Bibliothek +http://lobid.org/organisations/DE-L325#! DE-L325 L 325 Simon-Dubnow-Institut für jüdische Geschichte und Kultur e.V. an der Universität Leipzig, Bibliothek +http://lobid.org/organisations/DE-18-304#! DE-18-304 18/304 Universität Hamburg, Zentralbibliothek Recht +http://lobid.org/organisations/DE-Rt4#! DE-Rt4 Rt 4 Arbeitsgericht Reutlingen, Bibliothek +http://lobid.org/organisations/DE-1234#! DE-1234 1234 Bibliothek im Medienforum Bersenbrück +http://lobid.org/organisations/DE-1235#! DE-1235 1235 Stadtbibliothek Apolda +http://lobid.org/organisations/DE-580#! DE-580 580 Landesfachstelle für öffentliche Bibliotheken in Thüringen +http://lobid.org/organisations/DE-1243#! DE-1243 1243 Stadtbibliothek Einbeck +http://lobid.org/organisations/AT-UBTUW-HB#! AT-UBTUW-HB AT-UBTUW-HB Technische Universität Wien, Universitätsbibliothek, Hauptbibliothek +http://lobid.org/organisations/AT-UBABW#! AT-UBABW AT-UBABW Akademie der bildenden Künste Wien, Universitätsbibliothek +http://lobid.org/organisations/AT-VKW#! AT-VKW AT-VKW Österreichisches Museum für Volkskunde, Bibliothek +http://lobid.org/organisations/AT-TMW-BIB#! AT-TMW-BIB AT-TMW-BIB Technisches Museum Wien, Bibliothek +http://lobid.org/organisations/AT-LAO#! AT-LAO AT-LAO Oberösterreichisches Landesarchiv, Bibliothek +http://lobid.org/organisations/AT-LAST#! AT-LAST AT-LAST Steiermärkisches Landesarchiv, Bibliothek +http://lobid.org/organisations/AT-WHK#! AT-WHK AT-WHK Wirtschaftskammer Wien, Bibliothek +http://lobid.org/organisations/AT-STPET#! AT-STPET AT-STPET Benediktiner Erzabtei St. Peter in Salzburg, Bibliothek, Archiv und Musikalienarchiv +http://lobid.org/organisations/DE-25-174#! DE-25-174 25/174 Universitätsklinikum Freiburg, Akademie für Medizinische Berufe, Bibliothek +http://lobid.org/organisations/DE-B11p#! DE-B11p B 11p Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Münzkabinett, Bibliothek +http://lobid.org/organisations/DE-B11u#! DE-B11u B 11u Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Skulpturensammlung und Museum für Byzantinische Kunst, Bibliothek Museum für Byzantinische Kunst +http://lobid.org/organisations/DE-M489#! DE-M489 M 489 Bayerisches Staatsministerium für Umwelt und Verbraucherschutz, Bibliothek +http://lobid.org/organisations/DE-M500#! DE-M500 M 500 Wilhelmsgymnasium München, Bibliothek +http://lobid.org/organisations/DE-1245#! DE-1245 1245 Stadtbibliothek Blumberg +http://lobid.org/organisations/DE-M29#! DE-M29 M 29 Hochschule für Musik und Theater München, Bibliothek +http://lobid.org/organisations/DE-M157#! DE-M157 M 157 Bayerisches Landesamt für Denkmalpflege, Bibliothek +http://lobid.org/organisations/DE-861#! DE-861 861 Technische Hochschulbibliothek Rosenheim +http://lobid.org/organisations/DE-W90#! DE-W90 W 90 Landgericht Würzburg, Bibliothek +http://lobid.org/organisations/DE-H367#! DE-H367 H 367 Justizbehörde Hamburg, Bibliothek +http://lobid.org/organisations/DE-1246#! DE-1246 1246 Bibliothek der IGS und Samtgemeinde Fürstenau +http://lobid.org/organisations/DE-B1565#! DE-B1565 B 1565 Bundesamt für Verbraucherschutz und Lebensmittelsicherheit (BVL), Bibliothek +http://lobid.org/organisations/DE-Meg1#! DE-Meg1 Meg 1 Duale Hochschule Baden Württemberg Mosbach, Campus Bad Mergentheim Bibliothek +http://lobid.org/organisations/DE-Ren1#! DE-Ren1 Ren 1 Zentrum für Psychiatrie Reichenau, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-D271#! DE-D271 D 271 Sächsisches Staatsarchiv +http://lobid.org/organisations/AT-UBMUG#! AT-UBMUG AT-UBMUG Medizinische Universität Graz, Bibliothek +http://lobid.org/organisations/DE-30-58#! DE-30-58 30/58 Universitätsbibliothek J. C. Senckenberg, BzG, Biblioteca Catalana +http://lobid.org/organisations/DE-82-780#! DE-82-780 82/780 Operative Intensivmedizin Erwachsene, Bibliothek +http://lobid.org/organisations/DE-B208#! DE-B208 B 208 Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht, Bibliothek +http://lobid.org/organisations/DE-D120#! DE-D120 D 120 Helmholtz-Zentrum Dresden - Rossendorf e.V., Bibliothek +http://lobid.org/organisations/DE-Mz450#! DE-Mz450 Mz 450 Zentrum Gesellschaftliche Verantwortung der Evangelischen Kirche in Hessen und Nassau, Bibliothek +http://lobid.org/organisations/DE-D272#! DE-D272 D 272 Deutsches Institut für Sachunmittelbare Demokratie an der TU Dresden (DISUD an der TUD) e.V., Bibliothek +http://lobid.org/organisations/DE-Re8#! DE-Re8 Re 8 Stadtarchiv Regensburg +http://lobid.org/organisations/DE-82-785#! DE-82-785 82/785 Klinik für Gefäßchirurgie, Bibliothek +http://lobid.org/organisations/DE-1261#! DE-1261 1261 Stadtbücherei Bornheim +http://lobid.org/organisations/DE-B2228#! DE-B2228 B 2228 Stadtbibliothek Marzahn-Hellersdorf, Bezirkszentralbibliothek ""Mark Twain"" +http://lobid.org/organisations/DE-82-010#! DE-82-010 82/010 Filmstudio an der RWTH Aachen e.V., Bibliothek +http://lobid.org/organisations/DE-1264#! DE-1264 1264 Gemeindebibliothek Glienicke/Nordbahn +http://lobid.org/organisations/DE-1269#! DE-1269 1269 Stadtbibliothek Pritzwalk +http://lobid.org/organisations/DE-Ffb1#! DE-Ffb1 Ffb 1 Stadtarchiv Fürstenfeldbruck +http://lobid.org/organisations/DE-Lag2#! DE-Lag2 Lag 2 Stadtarchiv Landsberg am Lech +http://lobid.org/organisations/DE-Lfn2#! DE-Lfn2 Lfn 2 Stadtarchiv Laufen +http://lobid.org/organisations/DE-Schr1#! DE-Schr1 Schr 1 Stadtarchiv Schrobenhausen +http://lobid.org/organisations/DE-Wof1#! DE-Wof1 Wof 1 Stadtarchiv Wolfratshausen +http://lobid.org/organisations/DE-34-39#! DE-34-39 34/39 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Freiherrlich-Riedesel'sche Privatbibliothek Altenburg +http://lobid.org/organisations/DE-Nes1#! DE-Nes1 Nes 1 Stadtarchiv Neusäß +http://lobid.org/organisations/DE-Ptm1#! DE-Ptm1 Ptm 1 Schloßarchiv Pöttmes der Freiherren von Gumppenberg +http://lobid.org/organisations/DE-Sie6#! DE-Sie6 Sie 6 Deutsche Gesetzliche Unfallversicherung (DGUV), Bibliothek +http://lobid.org/organisations/DE-Wem1#! DE-Wem1 Wem 1 Stadtarchiv Wemding +http://lobid.org/organisations/DE-Leu1#! DE-Leu1 Leu 1 Stadtarchiv Leutershausen +http://lobid.org/organisations/DE-B212#! DE-B212 B 212 Max-Planck-Institut für ausländisches und internationales Privatrecht, Bibliothek +http://lobid.org/organisations/DE-1273#! DE-1273 1273 Stadtbücherei Höhr-Grenzhausen +http://lobid.org/organisations/DE-Spa1#! DE-Spa1 Spa 1 Stadtarchiv Spalt +http://lobid.org/organisations/DE-1275#! DE-1275 1275 Mediathek Römerberg +http://lobid.org/organisations/DE-583#! DE-583 583 SRH Hochschule für Logistik und Wirtschaft Hamm, Bibliothek +http://lobid.org/organisations/DE-Koeh1#! DE-Koeh1 Köh 1 Stadtarchiv Bad Königshofen +http://lobid.org/organisations/DE-1276#! DE-1276 1276 Kreisbücherei Vechelde +http://lobid.org/organisations/DE-Obn1#! DE-Obn1 Obn 1 Stadtarchiv Obernburg +http://lobid.org/organisations/DE-Oth1#! DE-Oth1 Oth 1 Stadtarchiv Ostheim +http://lobid.org/organisations/DE-Cb3#! DE-Cb3 Cb 3 Stadtarchiv Coburg, Stadtarchivbibliothek 'Coburgica' +http://lobid.org/organisations/DE-Schh1#! DE-Schh1 Schh 1 Stadtarchiv Schwarzenbach a.d.Saale +http://lobid.org/organisations/DE-Abg2#! DE-Abg2 Abg 2 Stadtarchiv Abensberg +http://lobid.org/organisations/DE-1277#! DE-1277 1277 Gemeindebücherei Bobenheim-Roxheim +http://lobid.org/organisations/DE-Nsd1#! DE-Nsd1 Nsd 1 Stadtarchiv Neustadt a.d.Donau +http://lobid.org/organisations/DE-Pla1#! DE-Pla1 Pla 1 Stadtarchiv Plattling +http://lobid.org/organisations/DE-584#! DE-584 584 Gemeinsame Bibliothek des Aus- und Fortbildungszentrums, der Verwaltungsschule und der Hochschule für Öffentliche Verwaltung +http://lobid.org/organisations/DE-Vlb1#! DE-Vlb1 Vlb 1 Stadtarchiv Vilsbiburg +http://lobid.org/organisations/DE-Cha1#! DE-Cha1 Cha 1 Stadtarchiv Cham +http://lobid.org/organisations/DE-16-156#! DE-16-156 16/156 Zentrum für Psychosoziale Medizin der Universität, Bibliothek +http://lobid.org/organisations/DE-Pfm1#! DE-Pfm1 Pfm 1 Stadtarchiv Pfreimd +http://lobid.org/organisations/DE-Schd1#! DE-Schd1 Schd 1 Stadtarchiv Schwandorf +http://lobid.org/organisations/DE-Tir1#! DE-Tir1 Tir 1 Stadtarchiv Tirschenreuth +http://lobid.org/organisations/DE-Wam1#! DE-Wam1 Wam 1 Stadtarchiv Waldmünchen +http://lobid.org/organisations/DE-B1572#! DE-B1572 B 1572 Fraunhofer Institut für Offene Kommunikationssysteme FOKUS, Bibliothek +http://lobid.org/organisations/DE-Apn1#! DE-Apn1 Apn 1 Unteroffizierschule der Luftwaffe, Ausbildungsunterstützungsgruppe, Bibliothek und Fachinformationsstelle +http://lobid.org/organisations/DE-Marl2#! DE-Marl2 Marl 2 Bibliothek des Grimme-Instituts +http://lobid.org/organisations/DE-H370#! DE-H370 H 370 Evangelische Mission Weltweit, Bibliothek +http://lobid.org/organisations/DE-946-1#! DE-946-1 946/1 Historische Sondersammlung Soziale Arbeit und Pflege der Bibliothek der Frankfurt University of Applied Sciences +http://lobid.org/organisations/DE-26-117#! DE-26-117 26/117 Universität Gießen, Universitätsbibliothek, Angewandte Theaterwissenschaften, Mediathek +http://lobid.org/organisations/DE-Kt5#! DE-Kt5 Kt 5 Europäische Bibliothek für Homöopathie +http://lobid.org/organisations/DE-18-308#! DE-18-308 18/308 Universität Hamburg, Fakultät Geisteswissenschaften, Fachbereichsbibliothek Kulturwissenschaften +http://lobid.org/organisations/DE-M504#! DE-M504 M 504 Goethe-Institut e. V. Zentrale, Bibliothek +http://lobid.org/organisations/DE-1329#! DE-1329 1329 Stadtbücherei Kirchheim unter Teck +http://lobid.org/organisations/DE-Bo177#! DE-Bo177 Bo 177 Bundesministerium für Gesundheit, Bibliothek +http://lobid.org/organisations/DE-991a#! DE-991a 991a Hochschule Albstadt-Sigmaringen, Bibliothek Albstadt +http://lobid.org/organisations/DE-506a#! DE-506a 506a Stadtbibliothek Luckenwalde +http://lobid.org/organisations/DE-21-204#! DE-21-204 21/204 Forum Scientiarum +http://lobid.org/organisations/DE-1330#! DE-1330 1330 Gemeindebücherei Lingenfeld +http://lobid.org/organisations/DE-18-309#! DE-18-309 18/309 Universität Hamburg, Zentralbibliothek Philosophie, Geschichte und Klassische Philologie +http://lobid.org/organisations/DE-601#! DE-601 601 Verbundzentrale des GBV (VZG) +http://lobid.org/organisations/DE-1338#! DE-1338 1338 Bibliothek Neunkirchen +http://lobid.org/organisations/DE-WWW5-SPR#! DE-WWW5-SPR WWW 5/SPR Elektronische Zeitschriften in SpringerLink - Konsortium Baden-Württemberg +http://lobid.org/organisations/DE-1287#! DE-1287 1287 Stadtbibliothek Alzenau +http://lobid.org/organisations/DE-1340#! DE-1340 1340 Gemeindebücherei Altrip +http://lobid.org/organisations/DE-1305#! DE-1305 1305 Stadtbibliothek Mainburg +http://lobid.org/organisations/DE-1307#! DE-1307 1307 Stadtbibliothek Naila +http://lobid.org/organisations/DE-1311#! DE-1311 1311 Stadtbücherei Roth +http://lobid.org/organisations/DE-1341#! DE-1341 1341 Integrierte Gesamtschule IGS Peine, Bücherei +http://lobid.org/organisations/DE-1343#! DE-1343 1343 Gemeindebücherei Offenbach +http://lobid.org/organisations/DE-602#! DE-602 602 Kooperativer Bibliotheksverbund Berlin-Brandenburg +http://lobid.org/organisations/DE-611#! DE-611 611 Staatsbibliothek zu Berlin - Preußischer Kulturbesitz, Kalliope-Verbund +http://lobid.org/organisations/DE-1347#! DE-1347 1347 Stadtbücherei Schwabmünchen +http://lobid.org/organisations/DE-Frei208#! DE-Frei208 Frei 208 RüstungsInformationsBüro e.V., Bibliothek +http://lobid.org/organisations/DE-1353#! DE-1353 1353 Stadtbibliothek Bad Blankenburg +http://lobid.org/organisations/DE-B791#! DE-B791 B 791 Bundesverwaltungsgericht, Bibliothek +http://lobid.org/organisations/DE-B220#! DE-B220 B 220 Monumenta Germaniae Historica, Deutsches Institut für Erforschung des Mittelalters, Bibliothek +http://lobid.org/organisations/DE-1417#! DE-1417 1417 Gemeindebücherei Gräfelfing +http://lobid.org/organisations/DE-1419#! DE-1419 1419 Gemeindebücherei Gröbenzell +http://lobid.org/organisations/DE-1420#! DE-1420 1420 Stadtbücherei Hersbruck +http://lobid.org/organisations/DE-1424#! DE-1424 1424 Stadtbücherei Kelheim +http://lobid.org/organisations/DE-1429#! DE-1429 1429 Stadtbücherei Neuburg an der Donau +http://lobid.org/organisations/DE-1432#! DE-1432 1432 Bücherei Peißenberg +http://lobid.org/organisations/DE-1434#! DE-1434 1434 Gemeindebücherei Pöcking +http://lobid.org/organisations/DE-1435#! DE-1435 1435 Gemeindebücherei Poing +http://lobid.org/organisations/DE-1438#! DE-1438 1438 Marktbücherei Schönberg +http://lobid.org/organisations/DE-1800#! DE-1800 1800 Verbandsbücherei Odelzhausen +http://lobid.org/organisations/DE-1453#! DE-1453 1453 Stadtbücherei Zirndorf +http://lobid.org/organisations/DE-1458#! DE-1458 1458 Stadtbücherei Moosburg a.d. Isar +http://lobid.org/organisations/DE-1459#! DE-1459 1459 Gemeindebücherei Neufahrn +http://lobid.org/organisations/DE-1796#! DE-1796 1796 Stadtbücherei St. Nikolaus Ebermannstadt +http://lobid.org/organisations/DE-1794#! DE-1794 1794 Stadtbücherei Aichach +http://lobid.org/organisations/DE-1469#! DE-1469 1469 Stadtbücherei Neustadt a. d. Donau +http://lobid.org/organisations/DE-1472#! DE-1472 1472 Stadtbücherei Nittenau +http://lobid.org/organisations/DE-1476#! DE-1476 1476 Stadtbücherei Rehau +http://lobid.org/organisations/DE-1478#! DE-1478 1478 Büchereistadl Georgensgmünd - Haus des Gastes +http://lobid.org/organisations/DE-Wtg2#! DE-Wtg2 Wtg 2 Krauß und Söhne Druckerei und Verlag GmbH +http://lobid.org/organisations/DE-1494#! DE-1494 1494 Gemeindebücherei Kleinwallstadt +http://lobid.org/organisations/DE-1497#! DE-1497 1497 Stadtbücherei Ostheim v.d. Rhön +http://lobid.org/organisations/DE-1499#! DE-1499 1499 Stadtbibliothek Gersthofen +http://lobid.org/organisations/DE-1500#! DE-1500 1500 Gemeindebücherei Marxheim +http://lobid.org/organisations/DE-1509#! DE-1509 1509 Gemeindebücherei Asbach-Bäumenheim +http://lobid.org/organisations/DE-26-005#! DE-26-005 26/005 Universität Gießen, Zeughausbibliothek +http://lobid.org/organisations/DE-1781#! DE-1781 1781 Öffentliche Bücherei Mainaschaff +http://lobid.org/organisations/DE-1772#! DE-1772 1772 Katholische Öffentliche Bücherei Donnersdorf +http://lobid.org/organisations/DE-1770#! DE-1770 1770 Katholische Öffentliche Bücherei Bergtheim +http://lobid.org/organisations/DE-1749#! DE-1749 1749 Katholische Volksbücherei Aigen am Inn +http://lobid.org/organisations/DE-1746#! DE-1746 1746 Katholische Öffentliche Bücherei Haslach Traunstein +http://lobid.org/organisations/DE-1743#! DE-1743 1743 Gemeindebücherei Raubling +http://lobid.org/organisations/DE-1741#! DE-1741 1741 Gemeindebücherei Petting +http://lobid.org/organisations/DE-1731#! DE-1731 1731 Katholische Öffentliche Bibliothek St. Michael Burgrain +http://lobid.org/organisations/DE-1730#! DE-1730 1730 Partenkirchner Bücherei +http://lobid.org/organisations/DE-1725#! DE-1725 1725 Gemeindebücherei Erdweg +http://lobid.org/organisations/DE-1724#! DE-1724 1724 Katholische Volksbücherei Engelsberg +http://lobid.org/organisations/DE-Hen2#! DE-Hen2 Hen 2 Stadtarchiv Hennef, Bibliothek +http://lobid.org/organisations/DE-1718#! DE-1718 1718 Stadtbücherei Hilpoltstein +http://lobid.org/organisations/DE-Sar1#! DE-Sar1 Sar 1 Stadtarchiv Saarlouis +http://lobid.org/organisations/DE-1710#! DE-1710 1710 Gemeindebücherei Pfarrheim Ottobeuren +http://lobid.org/organisations/DE-1709#! DE-1709 1709 Katholische Öffentliche Bücherei Oberschöneberg +http://lobid.org/organisations/DE-1708#! DE-1708 1708 Katholische Öffentliche Bücherei Neuburg/Donau +http://lobid.org/organisations/DE-1707#! DE-1707 1707 Markt- und Pfarrbücherei Jettingen-Scheppach +http://lobid.org/organisations/DE-1697#! DE-1697 1697 Gemeindebücherei Bürgstadt +http://lobid.org/organisations/DE-1691#! DE-1691 1691 Gemeindebücherei Massing +http://lobid.org/organisations/DE-1689#! DE-1689 1689 Katholische Öffentliche Bücherei Trennfeld +http://lobid.org/organisations/DE-1538#! DE-1538 1538 Katholische Öffentliche Bücherei Heidenfeld +http://lobid.org/organisations/DE-1683#! DE-1683 1683 Gemeindebücherei Reit im Winkl +http://lobid.org/organisations/DE-1525#! DE-1525 1525 Stadt- und Pfarrbücherei Geiselhöring +http://lobid.org/organisations/DE-1541#! DE-1541 1541 Stadtbücherei Höchstädt +http://lobid.org/organisations/DE-1671#! DE-1671 1671 Gemeindebücherei St. Laurentius Petershausen +http://lobid.org/organisations/DE-1670#! DE-1670 1670 Gemeindebücherei Feldkirchen-Westerham +http://lobid.org/organisations/DE-1666#! DE-1666 1666 Katholische Öffentliche Bücherei Elfershausen +http://lobid.org/organisations/DE-1662#! DE-1662 1662 Katholische Öffentliche Bücherei Weyer +http://lobid.org/organisations/DE-1659#! DE-1659 1659 Gemeindebücherei Steinach +http://lobid.org/organisations/DE-1655#! DE-1655 1655 Katholische Öffentliche Bücherei Birnfeld +http://lobid.org/organisations/DE-1651#! DE-1651 1651 Gemeindebücherei St. Peter und Paul +http://lobid.org/organisations/DE-1639#! DE-1639 1639 Katholische Öffentliche Bücherei Effeltrich +http://lobid.org/organisations/DE-1634#! DE-1634 1634 Gemeindebücherei Wettstetten +http://lobid.org/organisations/DE-1628#! DE-1628 1628 Öffentliche Bücherei Adelsdorf +http://lobid.org/organisations/DE-1626#! DE-1626 1626 Gemeindebücherei Zellingen +http://lobid.org/organisations/DE-1625#! DE-1625 1625 Medienhaus der Diözese Würzburg, Katholische Büchereifachstelle +http://lobid.org/organisations/DE-1617#! DE-1617 1617 Stadtbücherei Waldsassen +http://lobid.org/organisations/DE-1616#! DE-1616 1616 Stadtbücherei Wolfratshausen +http://lobid.org/organisations/DE-1614#! DE-1614 1614 Pfarr- und Stadtbücherei Viechtach +http://lobid.org/organisations/DE-1608#! DE-1608 1608 Stadtbücherei Thannhausen +http://lobid.org/organisations/DE-1600#! DE-1600 1600 Gemeindebücherei Schöllkrippen +http://lobid.org/organisations/DE-1596#! DE-1596 1596 Bücherei Rottendorf +http://lobid.org/organisations/DE-1587#! DE-1587 1587 Bücherei Markt Reisbach +http://lobid.org/organisations/DE-1585#! DE-1585 1585 Stadtbücherei Rain +http://lobid.org/organisations/DE-1582#! DE-1582 1582 Stadtbücherei Pegnitz +http://lobid.org/organisations/DE-1575#! DE-1575 1575 Gemeindebibliothek Neubiberg +http://lobid.org/organisations/DE-1572#! DE-1572 1572 Stadtbücherei Münnerstadt +http://lobid.org/organisations/DE-1562#! DE-1562 1562 Stadtbücherei Mellrichstadt +http://lobid.org/organisations/DE-1545#! DE-1545 1545 Gemeindebücherei Kirchseeon +http://lobid.org/organisations/DE-1532#! DE-1532 1532 Katholische Öffentliche Bücherei Grossbardorf +http://lobid.org/organisations/DE-1537#! DE-1537 1537 Stadtbücherei Hauzenberg +http://lobid.org/organisations/DE-Wi25#! DE-Wi25 Wi 25 OTTO HARRASSOWITZ GmbH & CO. KG, Wissenschaftliche Buchhandlung & Zeitschriftenagentur +http://lobid.org/organisations/DE-Ef30#! DE-Ef30 Ef 30 Naturkundemuseum Erfurt, Bibliothek +http://lobid.org/organisations/DE-Rt5#! DE-Rt5 Rt 5 ekz.bibliotheksservice GmbH +http://lobid.org/organisations/DE-Bo414#! DE-Bo414 Bo 414 MIKROPRESS GMBH +http://lobid.org/organisations/DE-Ch104#! DE-Ch104 Ch 104 Sächsische Landesstelle für Museumswesen , Fachbereich Volkskultur, Bibliothek +http://lobid.org/organisations/DE-MUS-000411#! DE-MUS-000411 A 100 Internationales Zeitungsmuseum der Stadt Aachen (IZM) +http://lobid.org/organisations/DE-WWW6-SDF#! DE-WWW6-SDF WWW 6/SDF Elektronische Zeitschriften / Elsevier ScienceDirect Freedom Collection / Konsortium Sachsen +http://lobid.org/organisations/DE-1805#! DE-1805 1805 Gemeindebücherei Forstinning +http://lobid.org/organisations/DE-1363#! DE-1363 1363 Stadtbibliothek Donaueschingen +http://lobid.org/organisations/DE-16-160#! DE-16-160 16/160 Campusbibliothek Bergheim der Universität +http://lobid.org/organisations/DE-Fel1#! DE-Fel1 Fel 1 Schule Informationstechnik der Bundeswehr, Fachinformationsstelle +http://lobid.org/organisations/DE-30-177#! DE-30-177 30/177 Universität Frankfurt, House of Finance, Information Center +http://lobid.org/organisations/DE-H373#! DE-H373 H 373 Institut für Theologie und Frieden, Bibliothek +http://lobid.org/organisations/DE-Gub1#! DE-Gub1 Gub 1 Friedrich-Naumann-Stiftung für die Freiheit, Archiv des Liberalismus +http://lobid.org/organisations/DE-B1579#! DE-B1579 B 1579 Hochschule für Schauspielkunst ""Ernst Busch"" Berlin, Bibliothek +http://lobid.org/organisations/DE-Hk1#! DE-Hk1 Hk 1 Neue Lebensformen e.V., Bibliothek +http://lobid.org/organisations/DE-Bo415#! DE-Bo415 Bo 415 Institut für Palästinakunde, Bibliothek +http://lobid.org/organisations/DE-1372#! DE-1372 1372 Kreisbücherei Hohenhameln +http://lobid.org/organisations/DE-1808#! DE-1808 1808 Bibliothek im Alten Torhaus +http://lobid.org/organisations/DE-38-465#! DE-38-465 38/465 Institut für Digital Humanities, Bibliothek +http://lobid.org/organisations/DE-1809#! DE-1809 1809 Gemeindebücherei Oberding +http://lobid.org/organisations/DE-B1580#! DE-B1580 B 1580 Antifaschistisches Pressearchiv und Bildungszentrum Berlin e.V. (apabiz), Bibliothek +http://lobid.org/organisations/DE-1375#! DE-1375 1375 Gemeindebibliothek Niederkrüchten +http://lobid.org/organisations/DE-30-900#! DE-30-900 30/900 Universität Frankfurt, Elektronische Ressourcen +http://lobid.org/organisations/DE-Zwi17#! DE-Zwi17 Zwi 17 Robert-Schumann-Haus Zwickau, Bibliothek +http://lobid.org/organisations/DE-Hf1#! DE-Hf1 Hf 1 Stadtarchiv Hof +http://lobid.org/organisations/DE-MUS-800117#! DE-MUS-800117 Als 1 Burg und Schloßmuseum Allstedt +http://lobid.org/organisations/DE-1381#! DE-1381 1381 Stadtbücherei Marburg +http://lobid.org/organisations/DE-Ar3#! DE-Ar3 Ar 3 Stadtarchiv Artern +http://lobid.org/organisations/DE-Bbg14#! DE-Bbg14 Bbg 14 Salzlandkreis, Kreisarchiv +http://lobid.org/organisations/DE-M511#! DE-M511 M 511 Institut français, Médiathèque +http://lobid.org/organisations/DE-We15#! DE-We15 We 15 Stadtverwaltung, Stadtarchiv +http://lobid.org/organisations/DE-897-1#! DE-897-1 897/1 Jade Hochschule Wilhelmshaven/Oldenburg/Elsfleth, Campus Elsfleth, Bibliothek +http://lobid.org/organisations/DE-Elb1#! DE-Elb1 Elb 1 Stadtarchiv Elbingerode +http://lobid.org/organisations/DE-Frey3#! DE-Frey3 Frey 3 Stadtarchiv Freyburg +http://lobid.org/organisations/DE-Gai2#! DE-Gai2 Gai 2 Stadtarchiv Gräfenhainichen +http://lobid.org/organisations/DE-Ha179#! DE-Ha179 Ha 179 Stadtarchiv Halle +http://lobid.org/organisations/DE-Kt7#! DE-Kt7 Kt 7 Kreisarchiv Anhalt-Bitterfeld, Außenstelle Roßlau +http://lobid.org/organisations/DE-Wb13#! DE-Wb13 Wb 13 Kreisarchiv Wittenberg +http://lobid.org/organisations/DE-MUS-808111#! DE-MUS-808111 Mer 14 Kulturhistorisches Museum Schloß Merseburg +http://lobid.org/organisations/DE-Ta2#! DE-Ta2 Ta 2 Heimatmuseum Tangerhütte, Bibliothek +http://lobid.org/organisations/DE-Ws8#! DE-Ws8 Ws 8 Stadtarchiv Weißenfels +http://lobid.org/organisations/DE-1382#! DE-1382 1382 International School of Management München, Bibliothek +http://lobid.org/organisations/DE-Aug13#! DE-Aug13 Aug 13 Verwaltungsgericht Augsburg, Bibliothek +http://lobid.org/organisations/DE-Bh4#! DE-Bh4 Bh 4 Verwaltungsgericht Bayreuth, Bibliothek +http://lobid.org/organisations/DE-Re11#! DE-Re11 Re 11 Verwaltungsgericht Regensburg, Bibliothek +http://lobid.org/organisations/DE-Mb109#! DE-Mb109 Mb 109 Evangelische Hochschule Tabor, Bibliothek +http://lobid.org/organisations/DE-Gom1#! DE-Gom1 Gom 1 Heimatverein Gommern e.V. +http://lobid.org/organisations/DE-Ws10#! DE-Ws10 Ws 10 Stadtarchiv Hohenmölsen +http://lobid.org/organisations/DE-Kal2#! DE-Kal2 Kal 2 Stadtarchiv Kalbe +http://lobid.org/organisations/DE-MUS-807118#! DE-MUS-807118 Lab 1 Doppelkapelle-Museum-Archiv Landsberg, Abt. Museum ""B. Brühl"" +http://lobid.org/organisations/DE-Na7#! DE-Na7 Na 7 Burgenlandkreis, Kreisarchiv +http://lobid.org/organisations/DE-16-158#! DE-16-158 16/158 Karl Jaspers Centre Library +http://lobid.org/organisations/DE-MUS-482115#! DE-MUS-482115 Ptz 1 Heimatmuseum Pretzsch +http://lobid.org/organisations/DE-Stb1#! DE-Stb1 Stb 1 Kirchengemeinde, Bibliothek +http://lobid.org/organisations/DE-MUS-810213#! DE-MUS-810213 Stb 2 Museum ""Alte Münze"" +http://lobid.org/organisations/DE-MUS-812219#! DE-MUS-812219 Z 6 Museum Schloß Moritzburg Zeitz +http://lobid.org/organisations/DE-MUS-812417#! DE-MUS-812417 Zrg 1 Kulturquadrat Schloss Zörbig - Museum +http://lobid.org/organisations/DE-L330#! DE-L330 L 330 Stiftung Galerie für Zeitgenössische Kunst Leipzig, Bibliothek +http://lobid.org/organisations/DE-38-467#! DE-38-467 38/467 Internationales Kolleg Morphomata, Bibliothek +http://lobid.org/organisations/DE-1390#! DE-1390 1390 Stadtbibliothek Torgelow +http://lobid.org/organisations/DE-B1584#! DE-B1584 B 1584 Haus der Kulturen der Welt, HKW.Bibliothek +http://lobid.org/organisations/DE-1391#! DE-1391 1391 Gemeindebücherei Steinkirchen-Grünendeich +http://lobid.org/organisations/DE-Me7#! DE-Me7 Me 7 Thüringer Verwaltungsfachhochschule, Fachbereich Polizei / Bildungszentrum der Thüringer Polizei, Bibliothek +http://lobid.org/organisations/DE-1383a#! DE-1383a 1383a Hochschule Rhein-Waal, Zweigbibliothek Kamp-Lintfort +http://lobid.org/organisations/DE-Kn184#! DE-Kn184 Kn 184 FrauenMediaTurm - Feministisches Archiv und Bibliothek +http://lobid.org/organisations/DE-1395#! DE-1395 1395 Gemeindebücherei Morsbach +http://lobid.org/organisations/DE-Bib2#! DE-Bib2 Bib 2 Stadtarchiv Biberach, Bibliothek +http://lobid.org/organisations/DE-1811-ST#! DE-1811-ST 1811-ST Niedersächsisches Landesarchiv, Standort Stade +http://lobid.org/organisations/DE-1811-OS#! DE-1811-OS 1811-OS Niedersächsisches Landesarchiv, Standort Osnabrück +http://lobid.org/organisations/DE-1811-BU#! DE-1811-BU 1811-BU Niedersächsisches Landesarchiv, Standort Bückeburg +http://lobid.org/organisations/DE-1396#! DE-1396 1396 Stadtbücherei Fellbach +http://lobid.org/organisations/DE-H374#! DE-H374 H 374 Bibliothek der Techniker Krankenkasse +http://lobid.org/organisations/DE-D276#! DE-D276 D 276 Euro Business College Dresden, Bibliothek +http://lobid.org/organisations/DE-B1586#! DE-B1586 B 1586 Berlinische Galerie - Landesmuseum für Moderne Kunst, Fotografie und Architektur, Bibliothek +http://lobid.org/organisations/DE-Hzr1#! DE-Hzr1 Hzr 1 Archiv der Pfarre St. Gertrud (St. Mariae Himmelfahrt), Bibliothek Turck +http://lobid.org/organisations/DE-Duer4#! DE-Duer4 Dür 4 Stadt- und Kreisarchiv Düren +http://lobid.org/organisations/DE-Emr1#! DE-Emr1 Emr 1 Stadtarchiv Emmerich am Rhein +http://lobid.org/organisations/DE-Fil1#! DE-Fil1 Fil 1 Stadtarchiv Filderstadt +http://lobid.org/organisations/DE-Fl5#! DE-Fl5 Fl 5 Stadtarchiv Flensburg +http://lobid.org/organisations/DE-Goe171#! DE-Goe171 Gö 171 Stadtarchiv Göttingen +http://lobid.org/organisations/DE-MUS-850117#! DE-MUS-850117 Gm 4 Kreismuseum Grimma +http://lobid.org/organisations/DE-Hml1#! DE-Hml1 Hml 1 Stadtarchiv Hameln +http://lobid.org/organisations/DE-Hlg1#! DE-Hlg1 Hlg 1 Stadtverwaltung Heiligenstadt +http://lobid.org/organisations/DE-Juel2#! DE-Juel2 Jül 2 Stadtarchiv Jülich +http://lobid.org/organisations/DE-Ka94#! DE-Ka94 Ka 94 Stadtarchiv Karlsruhe +http://lobid.org/organisations/DE-Er96#! DE-Er96 Er 96 Harald Fischer Verlag GmbH +http://lobid.org/organisations/DE-Liz1#! DE-Liz1 Liz 1 Stadtarchiv Linz am Rhein +http://lobid.org/organisations/DE-Lg4#! DE-Lg4 Lg 4 Stadtarchiv Ludwigsburg +http://lobid.org/organisations/DE-Mez1#! DE-Mez1 Mez 1 Stadtarchiv Metzingen +http://lobid.org/organisations/DE-Moe1#! DE-Moe1 Moe 1 Stadtarchiv Moers +http://lobid.org/organisations/DE-1820#! DE-1820 1820 BSB GmbH BEST-Sabel Gemeinnützige Bildungsgesellschaft, Bibliothek +http://lobid.org/organisations/DE-Olp1#! DE-Olp1 Olp 1 Stadtarchiv Olpe +http://lobid.org/organisations/DE-Rhn1#! DE-Rhn1 Rhn 1 Stadtarchiv Rheine +http://lobid.org/organisations/DE-Swm1#! DE-Swm1 Swm 1 Stadtarchiv Schwelm +http://lobid.org/organisations/DE-Wtr1#! DE-Wtr1 Wtr 1 Stadtarchiv Wetter +http://lobid.org/organisations/DE-Nra1#! DE-Nra1 Nra 1 Kreisarchiv Bad Neuenahr-Ahrweiler +http://lobid.org/organisations/DE-Bbg15#! DE-Bbg15 Bbg 15 Stadtarchiv Bernburg +http://lobid.org/organisations/DE-Bne1#! DE-Bne1 Bne 1 Gemeindearchiv Bönen +http://lobid.org/organisations/DE-Bru2#! DE-Bru2 Bru 2 Stadtarchiv Bruchsal +http://lobid.org/organisations/DE-Bux2#! DE-Bux2 Bux 2 Stadtarchiv Buxtehude +http://lobid.org/organisations/DE-Caw1#! DE-Caw1 Caw 1 Stadtarchiv Calw +http://lobid.org/organisations/DE-MUS-883216#! DE-MUS-883216 Hoy 6 Zoo Kultur und Bildung Hoyerswerda gGmbH, Schloss & Stadtmuseum, Stadtmuseum Hoyerswerda +http://lobid.org/organisations/DE-Eit1#! DE-Eit1 Eit 1 Gemeindearchiv Eitorf +http://lobid.org/organisations/DE-Fre1#! DE-Fre1 Fre 1 Stadtarchiv Frechen +http://lobid.org/organisations/DE-Gk2#! DE-Gk2 Gk 2 Stadtarchiv Goch +http://lobid.org/organisations/DE-Gm5#! DE-Gm5 Gm 5 Stadtarchiv Grimma +http://lobid.org/organisations/DE-Hat2#! DE-Hat2 Hat 2 Stadtarchiv Hattingen +http://lobid.org/organisations/DE-Hrb1#! DE-Hrb1 Hrb 1 Stadtarchiv Herrenberg +http://lobid.org/organisations/DE-Kn193#! DE-Kn193 Kn 193 Historisches Archiv der Stadt Köln +http://lobid.org/organisations/DE-Lit1#! DE-Lit1 Lit 1 Stadtarchiv Lichtenstein +http://lobid.org/organisations/DE-1825#! DE-1825 1825 Gymnasium Vilshofen, Bibliothek +http://lobid.org/organisations/DE-B1589#! DE-B1589 B 1589 Schwules Museum Berlin, Bibliothek +http://lobid.org/organisations/DE-Blb1#! DE-Blb1 Blb 1 Stadtarchiv Bad Berleburg +http://lobid.org/organisations/DE-Nus1#! DE-Nus1 Nus 1 Stadtarchiv Neuss +http://lobid.org/organisations/DE-Po85#! DE-Po85 Po 85 Stiftung Deutsches Rundfunkarchiv Potsdam-Babelsberg +http://lobid.org/organisations/DE-4-408#! DE-4-408 4/408 Universität Marburg, Bibliothek des Hessischen Instituts für Landesgeschichte +http://lobid.org/organisations/DE-Kn194#! DE-Kn194 Kn 194 NS-Dokumentationszentrum der Stadt Köln, Bibliothek +http://lobid.org/organisations/DE-Bg3#! DE-Bg3 Bg 3 Stadtarchiv Steinfurt +http://lobid.org/organisations/DE-Y7#! DE-Y7 Y 7 Deutsches Forum für Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-Lnn1#! DE-Lnn1 Lnn 1 Stadtarchiv Lünen +http://lobid.org/organisations/DE-Sbg1#! DE-Sbg1 Sbg 1 Stadtverwaltung Schneeberg, Stadtarchiv +http://lobid.org/organisations/DE-Swr1#! DE-Swr1 Swr 1 Stadtarchiv Schwerte +http://lobid.org/organisations/DE-Si3#! DE-Si3 Si 3 Stadtarchiv Siegen +http://lobid.org/organisations/DE-Stl1#! DE-Stl1 Stl 1 Stadtarchiv Straelen +http://lobid.org/organisations/DE-Una1#! DE-Una1 Una 1 Kreisarchiv Unna +http://lobid.org/organisations/DE-Usl1#! DE-Usl1 Usl 1 Stadtarchiv Uslar +http://lobid.org/organisations/DE-Wi26#! DE-Wi26 Wi 26 Stadtarchiv Wiesbaden +http://lobid.org/organisations/DE-Wun1#! DE-Wun1 Wun 1 Stadtarchiv Wunstorf +http://lobid.org/organisations/DE-90-4#! DE-90-4 90/4 KIT-Bibliothek, Fachbibliothek Hochschule Karlsruhe +http://lobid.org/organisations/DE-1831#! DE-1831 1831 Stadtbücherei Selters +http://lobid.org/organisations/DE-Nai1#! DE-Nai1 Nai 1 Stadtarchiv Naila +http://lobid.org/organisations/DE-MUS-242719#! DE-MUS-242719 Pot 1 Fränkische-Schweiz-Museum Tüchersfeld +http://lobid.org/organisations/DE-Win1#! DE-Win1 Win 1 Rathaus Windischeschenbach, Stadtarchiv +http://lobid.org/organisations/DE-188-e#! DE-188-e 188/e Freie Universität Berlin, E-Medien +http://lobid.org/organisations/DE-208b#! DE-208b 208b Bibliothek des Bundesgerichtshofs in Leipzig +http://lobid.org/organisations/DE-1834#! DE-1834 1834 Macromedia Library +http://lobid.org/organisations/DE-1836#! DE-1836 1836 Katholische Öffentliche Bücherei St. Vincentius Haselünne +http://lobid.org/organisations/DE-1837#! DE-1837 1837 Gemeindebücherei Möhnesee +http://lobid.org/organisations/DE-100-580#! DE-100-580 100/580 Institut für Interorganizational Management & Performance der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-Mag1#! DE-Mag1 Mag 1 Wehrtechnische Dienststelle für Luftfahrzeuge, Bibliothek +http://lobid.org/organisations/DE-1842#! DE-1842 1842 Gemeindebücherei Rodenbach +http://lobid.org/organisations/DE-Fl6#! DE-Fl6 Fl 6 European Centre for Minority Issues (ECMI), Library +http://lobid.org/organisations/DE-26-912#! DE-26-912 26/912 Universität Gießen, Universitätsbibliothek und Universitätsarchiv, Bildarchiv +http://lobid.org/organisations/DE-8-69#! DE-8-69 8/69 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Geowissenschaften +http://lobid.org/organisations/DE-Frn1#! DE-Frn1 Frn 1 Glasmuseum Frauenau, Bibliothek +http://lobid.org/organisations/DE-Stg284#! DE-Stg284 Stg 284 Ministerium für Kultus, Jugend und Sport Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-B1592#! DE-B1592 B 1592 Wikimedia Deutschland e.V., Bibliothek +http://lobid.org/organisations/DE-Ka96#! DE-Ka96 Ka 96 Literarische Gesellschaft e.V., Bibliothek +http://lobid.org/organisations/DE-916#! DE-916 916 Ostfalia Hochschule für angewandte Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-1846#! DE-1846 1846 Samtgemeindebücherei Sottrum +http://lobid.org/organisations/DE-1848#! DE-1848 1848 Stadtbibliothek Storkow +http://lobid.org/organisations/DE-H375#! DE-H375 H 375 Instituto Cervantes, Bibliothek +http://lobid.org/organisations/DE-1853#! DE-1853 1853 Stadtbücherei Beilngries +http://lobid.org/organisations/DE-1854#! DE-1854 1854 Gemeindebücherei Weyarn +http://lobid.org/organisations/DE-Ig3#! DE-Ig3 Ig 3 Museum für Konkrete Kunst, Bibliothek +http://lobid.org/organisations/DE-B11-DB#! DE-B11-DB B 11/DB Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Digitale Bibliothek +http://lobid.org/organisations/DE-1856#! DE-1856 1856 Öffentliche Evangelische Gemeindebücherei Solingen Dorp +http://lobid.org/organisations/DE-Wup4#! DE-Wup4 Wup 4 Wuppertal Institut für Klima, Umwelt, Energie GmbH, Bibliothek +http://lobid.org/organisations/DE-1857#! DE-1857 1857 Stadtbibliothek Neuenburg am Rhein +http://lobid.org/organisations/DE-1858#! DE-1858 1858 Stadtbibliothek Bleicherode +http://lobid.org/organisations/DE-1861#! DE-1861 1861 EBZ Business School, Bibliothek +http://lobid.org/organisations/DE-1862#! DE-1862 1862 Gemeindebücherei Rhauderfehn +http://lobid.org/organisations/DE-Brk1#! DE-Brk1 Brk 1 Zentrum für Mission und Ökumene - Nordkirche weltweit, Bibliothek +http://lobid.org/organisations/DE-B2227#! DE-B2227 B 2227 Stadtbibliothek Marzahn-Hellersdorf, Mittelpunktbibliothek Ehm Welk +http://lobid.org/organisations/DE-1867#! DE-1867 1867 Stadt- und Schulbibliothek Groitzsch +http://lobid.org/organisations/DE-66-2#! DE-66-2 66/2 Hochschul- und Landesbibliothek Fulda, Standort Heinrich-von-Bibra-Platz, Kinder und Jugend +http://lobid.org/organisations/DE-90-191#! DE-90-191 90/191 KIT-Bibliothek, Bibliothek der Arbeitsstelle Bertolt Brecht am Institut für Literaturwissenschaft +http://lobid.org/organisations/DE-MUS-001018#! DE-MUS-001018 Limesmuseum +http://lobid.org/organisations/DE-MUS-001414#! DE-MUS-001414 Herzogskasten Stadtmuseum Abensberg +http://lobid.org/organisations/DE-MUS-001518#! DE-MUS-001518 Wieland-Gedenkzimmer +http://lobid.org/organisations/DE-MUS-002620#! DE-MUS-002620 Puppen- und Spielzeugmuseum der Stadt +http://lobid.org/organisations/DE-MUS-003821#! DE-MUS-003821 Bauern- und Heimatmuseum 'Gut Pfersdorf' +http://lobid.org/organisations/DE-MUS-004017#! DE-MUS-004017 Sauerland-Museum des Hochsauerlandkreises +http://lobid.org/organisations/DE-MUS-004022#! DE-MUS-004022 Heimatmuseum Seyda +http://lobid.org/organisations/DE-MUS-004413#! DE-MUS-004413 Schloß Johannisburg +http://lobid.org/organisations/DE-MUS-005827#! DE-MUS-005827 Museum im Kloster Machern +http://lobid.org/organisations/DE-MUS-006117#! DE-MUS-006117 Fugger-Museum +http://lobid.org/organisations/DE-MUS-006711#! DE-MUS-006711 Pfalzmuseum für Naturkunde (Pollichia-Museum) +http://lobid.org/organisations/DE-MUS-007823#! DE-MUS-007823 Museum Altes Zollhaus +http://lobid.org/organisations/DE-MUS-008024#! DE-MUS-008024 Z8 Forum für Kunst und Fotografie +http://lobid.org/organisations/DE-MUS-008722#! DE-MUS-008722 Markus Wasmeier Freilichtmuseum Schliersee +http://lobid.org/organisations/DE-MUS-008826#! DE-MUS-008826 Schulmuseum Neumarkt-Sankt Veit +http://lobid.org/organisations/DE-MUS-009116#! DE-MUS-009116 Heimatmuseum Bad Oldesloe +http://lobid.org/organisations/DE-MUS-009210#! DE-MUS-009210 Museum Bad Orb +http://lobid.org/organisations/DE-MUS-009225#! DE-MUS-009225 Museum Brandhorst +http://lobid.org/organisations/DE-MUS-009512#! DE-MUS-009512 Dr.-Bauer-Heimatmuseum Bad Rothenfelde +http://lobid.org/organisations/DE-MUS-010611#! DE-MUS-010611 Reichsstadtmuseum im Ochsenhof +http://lobid.org/organisations/DE-MUS-010913#! DE-MUS-010913 Brahmshaus Baden-Baden +http://lobid.org/organisations/DE-MUS-011327#! DE-MUS-011327 Toy-Museum +http://lobid.org/organisations/DE-MUS-011629#! DE-MUS-011629 Hassia Mineralquelle +http://lobid.org/organisations/DE-MUS-011723#! DE-MUS-011723 Psychiatrie-Museum Philippshospital +http://lobid.org/organisations/DE-MUS-011812#! DE-MUS-011812 E.T.A. Hoffmann-Haus +http://lobid.org/organisations/DE-MUS-011827#! DE-MUS-011827 Heimatstube Helsen +http://lobid.org/organisations/DE-MUS-012028#! DE-MUS-012028 Heimatmuseum Rambin +http://lobid.org/organisations/DE-MUS-012513#! DE-MUS-012513 Heimatmuseum Bargteheide +http://lobid.org/organisations/DE-MUS-012711#! DE-MUS-012711 Altes Schloß Eremitage +http://lobid.org/organisations/DE-MUS-013110#! DE-MUS-013110 Museum für bäuerliche Arbeitsgeräte des Bezirks Oberfranken +http://lobid.org/organisations/DE-MUS-013214#! DE-MUS-013214 Neues Schloß mit Museum 'Das Bayreuth der Markgräfin Wilhelmine' +http://lobid.org/organisations/DE-MUS-013412#! DE-MUS-013412 Richard-Wagner-Museum mit Nationalarchiv der Richard-Wagner-Stiftung +http://lobid.org/organisations/DE-MUS-013427#! DE-MUS-013427 Dokumentationsstätte Regierungsbunker +http://lobid.org/organisations/DE-MUS-013927#! DE-MUS-013927 Lindenmuseum Clara Schumann +http://lobid.org/organisations/DE-MUS-014326#! DE-MUS-014326 Schmiedemuseum Brekling +http://lobid.org/organisations/DE-MUS-014915#! DE-MUS-014915 Heimatmuseum 'Römstedthaus' +http://lobid.org/organisations/DE-MUS-015210#! DE-MUS-015210 Stadtmuseum Bergkamen +http://lobid.org/organisations/DE-MUS-015225#! DE-MUS-015225 Findorff-Haus +http://lobid.org/organisations/DE-MUS-015616#! DE-MUS-015616 Bauhaus-Archiv/Museum für Gestaltung (BHA) +http://lobid.org/organisations/DE-MUS-015621#! DE-MUS-015621 Bioversum Kranichstein +http://lobid.org/organisations/DE-MUS-015923#! DE-MUS-015923 Museum Art.Plus +http://lobid.org/organisations/DE-MUS-016124#! DE-MUS-016124 Museum für Kunst und Technik des 19. Jahrhunderts +http://lobid.org/organisations/DE-MUS-016228#! DE-MUS-016228 Stadtmuseum Neckarsulm +http://lobid.org/organisations/DE-MUS-016728#! DE-MUS-016728 Dali - Die Ausstellung +http://lobid.org/organisations/DE-MUS-016926#! DE-MUS-016926 Museum im Böhmischen Dorf +http://lobid.org/organisations/DE-MUS-017216#! DE-MUS-017216 FHXB Museum +http://lobid.org/organisations/DE-MUS-017310#! DE-MUS-017310 Museum Neukölln +http://lobid.org/organisations/DE-MUS-017627#! DE-MUS-017627 Schloss Wolkenburg +http://lobid.org/organisations/DE-MUS-017810#! DE-MUS-017810 Tempelhof Museum +http://lobid.org/organisations/DE-MUS-018115#! DE-MUS-018115 Humboldt-Museum Schloß Tegel +http://lobid.org/organisations/DE-MUS-018120#! DE-MUS-018120 Willi-Sitte-Galerie +http://lobid.org/organisations/DE-MUS-018511#! DE-MUS-018511 Kupferstichkabinett SMB +http://lobid.org/organisations/DE-MUS-018526#! DE-MUS-018526 Dioramenschau Altötting +http://lobid.org/organisations/DE-MUS-018724#! DE-MUS-018724 Bayerwald Handwerksmuseum Arrach +http://lobid.org/organisations/DE-MUS-019014#! DE-MUS-019014 Museum für Asiatische Kunst SMB +http://lobid.org/organisations/DE-MUS-019118#! DE-MUS-019118 Ethnologisches Museum SMB +http://lobid.org/organisations/DE-MUS-019123#! DE-MUS-019123 Tierkundemuseum mit Salus-Auwaldbiotop +http://lobid.org/organisations/DE-MUS-019227#! DE-MUS-019227 Maskenmuseum +http://lobid.org/organisations/DE-MUS-019623#! DE-MUS-019623 Heimatmuseum +http://lobid.org/organisations/DE-MUS-019727#! DE-MUS-019727 Heimatmuseum Dorfprozelten im Bahnhof+Schiffermuseum im Waschhaus +http://lobid.org/organisations/DE-MUS-020420#! DE-MUS-020420 Burg- und Steinhauermuseum +http://lobid.org/organisations/DE-MUS-020628#! DE-MUS-020628 Krautheimer Krippe +http://lobid.org/organisations/DE-MUS-020920#! DE-MUS-020920 Bauernhofmuseum 'Staudenhaus' +http://lobid.org/organisations/DE-MUS-021027#! DE-MUS-021027 Naturpark-Haus +http://lobid.org/organisations/DE-MUS-021418#! DE-MUS-021418 Ketterer-Haus-Museum, Biberach-Baden +http://lobid.org/organisations/DE-MUS-023023#! DE-MUS-023023 'Schuster-Schleif' Kraiburg am Inn +http://lobid.org/organisations/DE-MUS-023325#! DE-MUS-023325 Kronacher Synagoge +http://lobid.org/organisations/DE-MUS-023414#! DE-MUS-023414 Campusmuseum+Kunstsammlungen der Ruhr-Universität +http://lobid.org/organisations/DE-MUS-023721#! DE-MUS-023721 Oberschwäbisches Torfmuseum +http://lobid.org/organisations/DE-MUS-023929#! DE-MUS-023929 Ortsmuseum Endingen +http://lobid.org/organisations/DE-MUS-024526#! DE-MUS-024526 Museum im Alten Oberamt +http://lobid.org/organisations/DE-MUS-024828#! DE-MUS-024828 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-024922#! DE-MUS-024922 Altes Lehrerwohnhaus +http://lobid.org/organisations/DE-MUS-025410#! DE-MUS-025410 Heimatmuseum +http://lobid.org/organisations/DE-MUS-025514#! DE-MUS-025514 BLM - Bauernhausmuseum Bortfeld +http://lobid.org/organisations/DE-MUS-025623#! DE-MUS-025623 Autosammlung Steim +http://lobid.org/organisations/DE-MUS-025727#! DE-MUS-025727 Dieter-Franck-Haus +http://lobid.org/organisations/DE-MUS-026220#! DE-MUS-026220 Kunsthalle Weishaupt +http://lobid.org/organisations/DE-MUS-026517#! DE-MUS-026517 Schloss Braunfels +http://lobid.org/organisations/DE-MUS-026522#! DE-MUS-026522 Keramik-Museum +http://lobid.org/organisations/DE-MUS-026819#! DE-MUS-026819 Herzog Anton Ulrich-Museum +http://lobid.org/organisations/DE-MUS-026928#! DE-MUS-026928 Geowissenschaftliche Sammlung der Universität Bremen +http://lobid.org/organisations/DE-MUS-027218#! DE-MUS-027218 Museum für Stadtgeschichte +http://lobid.org/organisations/DE-MUS-027416#! DE-MUS-027416 Gerhard Marcks-Haus +http://lobid.org/organisations/DE-MUS-027718#! DE-MUS-027718 Museen Böttcherstraße +Paula Modersohn-Becker Museum +http://lobid.org/organisations/DE-MUS-027921#! DE-MUS-027921 Shalom Europa +http://lobid.org/organisations/DE-MUS-028028#! DE-MUS-028028 Museum und Bürgerbegegnungsstätte Aldingen +http://lobid.org/organisations/DE-MUS-028617#! DE-MUS-028617 Breuberg-Museum +http://lobid.org/organisations/DE-MUS-028919#! DE-MUS-028919 Städtisches Museum Schloss +http://lobid.org/organisations/DE-MUS-029125#! DE-MUS-029125 Kanzlerbungalow +http://lobid.org/organisations/DE-MUS-029729#! DE-MUS-029729 Neues Schloss Bad Muskau +http://lobid.org/organisations/DE-MUS-029818#! DE-MUS-029818 Eisenkunstguß-Museum +http://lobid.org/organisations/DE-MUS-030026#! DE-MUS-030026 Hohenasperg - Ein deutsches Gefängnis +http://lobid.org/organisations/DE-MUS-030115#! DE-MUS-030115 Stadtmuseum der Stadt Bühl +http://lobid.org/organisations/DE-MUS-030219#! DE-MUS-030219 Deutsches Tabak-und Zigarrenmuseum +http://lobid.org/organisations/DE-MUS-030511#! DE-MUS-030511 Burger Waldmuseum +http://lobid.org/organisations/DE-MUS-030620#! DE-MUS-030620 Heimatmuseum Schwaikheim +http://lobid.org/organisations/DE-MUS-031014#! DE-MUS-031014 Museum der Stadt Butzbach +http://lobid.org/organisations/DE-MUS-031316#! DE-MUS-031316 Museum der Stadt Calw +http://lobid.org/organisations/DE-MUS-031727#! DE-MUS-031727 Besucherzentrum+Welterbe Grube Messel gGmbH +http://lobid.org/organisations/DE-MUS-031816#! DE-MUS-031816 Archäologische Sammlung im Cordonhaus +http://lobid.org/organisations/DE-MUS-032720#! DE-MUS-032720 Westwallmuseum Sinz +http://lobid.org/organisations/DE-MUS-033114#! DE-MUS-033114 KZ-Gedenkstätte Dachau +http://lobid.org/organisations/DE-MUS-033421#! DE-MUS-033421 Heimatstube Hassel +http://lobid.org/organisations/DE-MUS-033525#! DE-MUS-033525 Kulturzentrum Bettinger Mühle +http://lobid.org/organisations/DE-MUS-034226#! DE-MUS-034226 Pohl-Boskamp Firmenmuseum +http://lobid.org/organisations/DE-MUS-034424#! DE-MUS-034424 Heimat- und Handwerksmuseum Wahlstedt +http://lobid.org/organisations/DE-MUS-034528#! DE-MUS-034528 Heimatmuseum in der Alten Feuerwache +http://lobid.org/organisations/DE-MUS-034622#! DE-MUS-034622 Hocheimer Weinbaumuseum +http://lobid.org/organisations/DE-MUS-034711#! DE-MUS-034711 Museum Burg Stickhausen +http://lobid.org/organisations/DE-MUS-035214#! DE-MUS-035214 Museum für Heimatkunde und Geschichte +http://lobid.org/organisations/DE-MUS-035318#! DE-MUS-035318 Museum im Grafenschloss Diez +http://lobid.org/organisations/DE-MUS-035427#! DE-MUS-035427 Institut für Botanik und Landschaftsökologie+Botanischer Garten +http://lobid.org/organisations/DE-MUS-035729#! DE-MUS-035729 Historische rechentechnische Sammlung des Instituts für Mathematik und Informatik +http://lobid.org/organisations/DE-MUS-035818#! DE-MUS-035818 Haus der Geschichte Dinkelsbühl +http://lobid.org/organisations/DE-MUS-035912#! DE-MUS-035912 Museum Voswinckelshof +http://lobid.org/organisations/DE-MUS-036019#! DE-MUS-036019 Heimatmuseum 'Taverne' +http://lobid.org/organisations/DE-MUS-036024#! DE-MUS-036024 Geburtshilflich-gynäkologische Sammlung d. Klinik f. Frauenheilkunde u. Geburtshilfe +http://lobid.org/organisations/DE-MUS-036415#! DE-MUS-036415 Heimatmuseum Dornstetten+'Das Lebendige Volkskundemuseum' +http://lobid.org/organisations/DE-MUS-036717#! DE-MUS-036717 Museum für Kunst und Kulturgeschichte der Stadt Dortmund +http://lobid.org/organisations/DE-MUS-037814#! DE-MUS-037814 Heinrich-Heine-Institut, Museum +http://lobid.org/organisations/DE-MUS-038119#! DE-MUS-038119 K20 Kunstsammlung Nordrhein-Westfalen +http://lobid.org/organisations/DE-MUS-038411#! DE-MUS-038411 Naturkundemuseum Benrath +http://lobid.org/organisations/DE-MUS-040117#! DE-MUS-040117 Residenz und Deutschordensmuseum +http://lobid.org/organisations/DE-MUS-040211#! DE-MUS-040211 Schloßmuseum Ellwangen +http://lobid.org/organisations/DE-MUS-040513#! DE-MUS-040513 Ostfriesisches Landesmuseum Emden +http://lobid.org/organisations/DE-MUS-040815#! DE-MUS-040815 Rheinmuseum Emmerich +http://lobid.org/organisations/DE-MUS-041516#! DE-MUS-041516 Heimatmuseum +http://lobid.org/organisations/DE-MUS-041610#! DE-MUS-041610 Heimat- und Tabakmuseum Elsenz +http://lobid.org/organisations/DE-MUS-042217#! DE-MUS-042217 Schloßmuseum Erbach +http://lobid.org/organisations/DE-MUS-043012#! DE-MUS-043012 Platenhäuschen +http://lobid.org/organisations/DE-MUS-043710#! DE-MUS-043710 Domschatzkammer +http://lobid.org/organisations/DE-MUS-043814#! DE-MUS-043814 Museum Folkwang +http://lobid.org/organisations/DE-MUS-043918#! DE-MUS-043918 Ruhr Museum +http://lobid.org/organisations/DE-MUS-044015#! DE-MUS-044015 Schatzkammer Werden +http://lobid.org/organisations/DE-MUS-045310#! DE-MUS-045310 Naturwissenschaftliches Museum der Stadt Flensburg und Eiszeit-Haus +http://lobid.org/organisations/DE-MUS-045716#! DE-MUS-045716 Heimat- und Bildhauer Kern-Museum +http://lobid.org/organisations/DE-MUS-045810#! DE-MUS-045810 Museum im Kloster Frankenberg +http://lobid.org/organisations/DE-MUS-046219#! DE-MUS-046219 Museum für Kommunikation +http://lobid.org/organisations/DE-MUS-047212#! DE-MUS-047212 Liebieghaus Skulpturensammlung +http://lobid.org/organisations/DE-MUS-047316#! DE-MUS-047316 Museum Angewandte Kunst +http://lobid.org/organisations/DE-MUS-047410#! DE-MUS-047410 Museum für Kunst in Steatit +http://lobid.org/organisations/DE-MUS-047910#! DE-MUS-047910 Senckenberg Naturmuseum +http://lobid.org/organisations/DE-MUS-048111#! DE-MUS-048111 Stoltze-Museum der Frankfurter Sparkasse +http://lobid.org/organisations/DE-MUS-048319#! DE-MUS-048319 Glasmuseum Frauenau +http://lobid.org/organisations/DE-MUS-048413#! DE-MUS-048413 Augustinermuseum +http://lobid.org/organisations/DE-MUS-048819#! DE-MUS-048819 Zinnfigurenklause im Schwabentor +http://lobid.org/organisations/DE-MUS-049812#! DE-MUS-049812 Heimatmuseum Seulberg +http://lobid.org/organisations/DE-MUS-050213#! DE-MUS-050213 Zeppelin Museum Friedrichshafen +http://lobid.org/organisations/DE-MUS-051310#! DE-MUS-051310 Deutsches Uhrenmuseum Furtwangen +http://lobid.org/organisations/DE-MUS-051518#! DE-MUS-051518 Schloß Hohenschwangau +http://lobid.org/organisations/DE-MUS-051810#! DE-MUS-051810 Königshaus am Schachen +http://lobid.org/organisations/DE-MUS-051914#! DE-MUS-051914 Werdenfels Museum +http://lobid.org/organisations/DE-MUS-052219#! DE-MUS-052219 Museum der Barbarossastadt Gelnhausen +http://lobid.org/organisations/DE-MUS-052313#! DE-MUS-052313 Kunstmuseum Gelsenkirchen +http://lobid.org/organisations/DE-MUS-052719#! DE-MUS-052719 Stadtmuseum Gerlingen/Heimatmuseum Gerlingen/Ungarndeutsches Museum +http://lobid.org/organisations/DE-MUS-053316#! DE-MUS-053316 Museumshof auf dem Braem +http://lobid.org/organisations/DE-MUS-053618#! DE-MUS-053618 Oberhessisches Museum, Abt. für Kunst und Kunsthandwerk +http://lobid.org/organisations/DE-MUS-054413#! DE-MUS-054413 Schloßmuseum Glücksburg +http://lobid.org/organisations/DE-MUS-055812#! DE-MUS-055812 Sammlung des Archäologischen Instituts der Universität +http://lobid.org/organisations/DE-MUS-056513#! DE-MUS-056513 1. Oberpfälzer Kultur- und Militärmuseum Grafenwöhr +http://lobid.org/organisations/DE-MUS-057714#! DE-MUS-057714 Siebenbürgisches Museum +http://lobid.org/organisations/DE-MUS-058415#! DE-MUS-058415 LWL - Freilichtmuseum Hagen +http://lobid.org/organisations/DE-MUS-058519#! DE-MUS-058519 Heimatmuseum Beihingen +http://lobid.org/organisations/DE-MUS-058613#! DE-MUS-058613 Friesenstube Honkenswarf +http://lobid.org/organisations/DE-MUS-058811#! DE-MUS-058811 Stiftung Historische Museen Hamburg+Altonaer Museum +http://lobid.org/organisations/DE-MUS-059814#! DE-MUS-059814 Stiftung Historische Museen Hamburg/ Museum für Hamburgische Geschichte +http://lobid.org/organisations/DE-MUS-067216#! DE-MUS-067216 Keramikmuseum Westerwald, Deutsche Sammmlung für historische und zeitgenössische Keramik +http://lobid.org/organisations/DE-MUS-067414#! DE-MUS-067414 Heimatmuseum +http://lobid.org/organisations/DE-MUS-068219#! DE-MUS-068219 Museum Höxter-Corvey +http://lobid.org/organisations/DE-MUS-068813#! DE-MUS-068813 Nordfriesland Museum - Nissenhaus Husum +http://lobid.org/organisations/DE-MUS-069410#! DE-MUS-069410 Museum Hofmühle +http://lobid.org/organisations/DE-MUS-069816#! DE-MUS-069816 Deutsches Medizinhistorisches Museum +http://lobid.org/organisations/DE-MUS-070019#! DE-MUS-070019 Heimatmuseum +http://lobid.org/organisations/DE-MUS-070113#! DE-MUS-070113 Stadtmuseum +http://lobid.org/organisations/DE-MUS-070519#! DE-MUS-070519 Praedicantenbibliothek der evangelischen Nikolaikirche in Isny +http://lobid.org/organisations/DE-MUS-071418#! DE-MUS-071418 Museum Pfalzgalerie Kaiserslautern (mpk) +http://lobid.org/organisations/DE-MUS-072015#! DE-MUS-072015 Alte Dorfmühle +http://lobid.org/organisations/DE-MUS-072119#! DE-MUS-072119 Badisches Landesmuseum Karlsruhe, Schloss +http://lobid.org/organisations/DE-MUS-073518#! DE-MUS-073518 Naturkundemuseum im Ottoneum +http://lobid.org/organisations/DE-MUS-074219#! DE-MUS-074219 Stadtmuseum Kaufbeuren +http://lobid.org/organisations/DE-MUS-074313#! DE-MUS-074313 Regionalmuseum Kaufungen +http://lobid.org/organisations/DE-MUS-074511#! DE-MUS-074511 Altfriesisches Haus seit 1640 +http://lobid.org/organisations/DE-MUS-075212#! DE-MUS-075212 Oberrheinische Narrenschau +http://lobid.org/organisations/DE-MUS-075618#! DE-MUS-075618 Antikensammlung, Kunsthalle zu Kiel +http://lobid.org/organisations/DE-MUS-075910#! DE-MUS-075910 Kieler Stadt- und Schiffahrtsmuseum +http://lobid.org/organisations/DE-MUS-076819#! DE-MUS-076819 Sandelsches Museum +http://lobid.org/organisations/DE-MUS-076913#! DE-MUS-076913 Schloßmuseum Kirchberg +http://lobid.org/organisations/DE-MUS-077614#! DE-MUS-077614 Faust-Museum und Faust-Archiv +http://lobid.org/organisations/DE-MUS-078117#! DE-MUS-078117 078117 KOLUMBA +http://lobid.org/organisations/DE-MUS-078513#! DE-MUS-078513 Kölnisches Stadtmuseum +http://lobid.org/organisations/DE-MUS-079516#! DE-MUS-079516 Burg- und Stadtmuseum Königstein +http://lobid.org/organisations/DE-MUS-079610#! DE-MUS-079610 Siebengebirgsmuseum +http://lobid.org/organisations/DE-MUS-080511#! DE-MUS-080511 Badisches Bäckereimuseum und Erstes Deutsches Zuckerbäckermuseum +http://lobid.org/organisations/DE-MUS-081618#! DE-MUS-081618 Mittelschwäbisches Heimatmuseum +http://lobid.org/organisations/DE-MUS-082611#! DE-MUS-082611 Museum für Höhlenkunde +http://lobid.org/organisations/DE-MUS-083114#! DE-MUS-083114 Neues Stadtmuseum +http://lobid.org/organisations/DE-MUS-083916#! DE-MUS-083916 Töpfereimuseum Langerwehe +http://lobid.org/organisations/DE-MUS-084013#! DE-MUS-084013 Heimatmuseum Lauda +http://lobid.org/organisations/DE-MUS-084117#! DE-MUS-084117 Elbschiffahrtsmuseum Lauenburg +http://lobid.org/organisations/DE-MUS-085516#! DE-MUS-085516 Stadtmuseum Leonberg mit Schelling-Gedenkraum +http://lobid.org/organisations/DE-MUS-085818#! DE-MUS-085818 Museum Morsbroich +http://lobid.org/organisations/DE-MUS-086415#! DE-MUS-086415 Stadtmuseum Lindau +http://lobid.org/organisations/DE-MUS-087814#! DE-MUS-087814 Katharinenkirche +http://lobid.org/organisations/DE-MUS-088911#! DE-MUS-088911 Schloßmuseum Ludwigsburg mit Modemuseum und Keramikmuseum +http://lobid.org/organisations/DE-MUS-089810#! DE-MUS-089810 Heimatmuseum Lutter +http://lobid.org/organisations/DE-MUS-090711#! DE-MUS-090711 Naturhistorisches Museum Mainz +http://lobid.org/organisations/DE-MUS-090919#! DE-MUS-090919 LEIZA - Leibniz-Zentrum für Archäologie +http://lobid.org/organisations/DE-MUS-091214#! DE-MUS-091214 Reiss-Engelhorn-Museen +http://lobid.org/organisations/DE-MUS-091412#! DE-MUS-091412 Schiller-Geburtshaus +http://lobid.org/organisations/DE-MUS-091516#! DE-MUS-091516 Schiller-Nationalmuseum +http://lobid.org/organisations/DE-MUS-092311#! DE-MUS-092311 Fahrzeug- und Heimat-Museum Marxzell +http://lobid.org/organisations/DE-MUS-093418#! DE-MUS-093418 Vineum Meersburg +http://lobid.org/organisations/DE-MUS-094213#! DE-MUS-094213 Schlossmuseum Mespelbrunn +http://lobid.org/organisations/DE-MUS-094911#! DE-MUS-094911 Heimatmuseum Miesbach +http://lobid.org/organisations/DE-MUS-095112#! DE-MUS-095112 Heimatmuseum der Stadt Mindelheim +http://lobid.org/organisations/DE-MUS-095216#! DE-MUS-095216 Domschatz Minden +http://lobid.org/organisations/DE-MUS-095310#! DE-MUS-095310 Mindener Museum +http://lobid.org/organisations/DE-MUS-095414#! DE-MUS-095414 Geigenbaumuseum +http://lobid.org/organisations/DE-MUS-096115#! DE-MUS-096115 Städtisches Heimatmuseum +http://lobid.org/organisations/DE-MUS-096813#! DE-MUS-096813 Geologisches Museum München +http://lobid.org/organisations/DE-MUS-097316#! DE-MUS-097316 Deutsches Jagd- und Fischereimuseum München +http://lobid.org/organisations/DE-MUS-097410#! DE-MUS-097410 Deutsches Museum +http://lobid.org/organisations/DE-MUS-100214#! DE-MUS-100214 Archäologisches Museum der Universität Münster +http://lobid.org/organisations/DE-MUS-101415#! DE-MUS-101415 Oberpfälzer Freilandmuseum Neusath-Perschen +http://lobid.org/organisations/DE-MUS-101811#! DE-MUS-101811 Burg Hornberg +http://lobid.org/organisations/DE-MUS-102418#! DE-MUS-102418 Stadtmuseum Neuburg a.d. Donau +http://lobid.org/organisations/DE-MUS-103015#! DE-MUS-103015 Stiftung Seebüll Ada und Emil Nolde / Nolde-Museum +http://lobid.org/organisations/DE-MUS-104018#! DE-MUS-104018 zeiTTor - Museum der Stadt Neustadt in Holstein +http://lobid.org/organisations/DE-MUS-105917#! DE-MUS-105917 Heimatmuseum - Neunhof +http://lobid.org/organisations/DE-MUS-106316#! DE-MUS-106316 Naturhistorisches Museum Nürnberg +http://lobid.org/organisations/DE-MUS-106410#! DE-MUS-106410 Patrizierschloß Neunhof +http://lobid.org/organisations/DE-MUS-106910#! DE-MUS-106910 Stadtmuseum Fembohaus +http://lobid.org/organisations/DE-MUS-107715#! DE-MUS-107715 Museum Ober-Ramstadt +http://lobid.org/organisations/DE-MUS-108312#! DE-MUS-108312 Oberstdorfer Heimatmuseum +http://lobid.org/organisations/DE-MUS-108510#! DE-MUS-108510 Vortaunusmuseum +http://lobid.org/organisations/DE-MUS-108718#! DE-MUS-108718 Heimatmuseum Ochsenfurt +http://lobid.org/organisations/DE-MUS-108916#! DE-MUS-108916 Deutsches Ledermuseum/Deutsches Schuhmuseum +http://lobid.org/organisations/DE-MUS-109419#! DE-MUS-109419 Landesmuseum für Kunst und Kulturgeschichte Oldenburg, Schloss +http://lobid.org/organisations/DE-MUS-109815#! DE-MUS-109815 Fastnachtsmuseum Langenstein +http://lobid.org/organisations/DE-MUS-110612#! DE-MUS-110612 Waldensermuseum im Henri-Arnaud-Haus +http://lobid.org/organisations/DE-MUS-111011#! DE-MUS-111011 Klostermuseum +http://lobid.org/organisations/DE-MUS-112118#! DE-MUS-112118 Schmuckmuseum Pforzheim +http://lobid.org/organisations/DE-MUS-112618#! DE-MUS-112618 Museum des Kreises Plön mit norddeutscher Glassammlung +http://lobid.org/organisations/DE-MUS-112816#! DE-MUS-112816 Schloß Weißenstein +http://lobid.org/organisations/DE-MUS-113819#! DE-MUS-113819 Erinnerungsstätte für die Freiheitsbewegungen in der deutschen Geschichte +http://lobid.org/organisations/DE-MUS-113913#! DE-MUS-113913 Stadtmuseum Rastatt +http://lobid.org/organisations/DE-MUS-114312#! DE-MUS-114312 A. Paul Weber-Museum +http://lobid.org/organisations/DE-MUS-115419#! DE-MUS-115419 Fürst Thurn und Taxis Schloßmuseum und Kreuzgang +http://lobid.org/organisations/DE-MUS-115815#! DE-MUS-115815 document Reichstag im Alten Rathaus +http://lobid.org/organisations/DE-MUS-116318#! DE-MUS-116318 Historisches Zentrum Remscheid, Abt. Deutsches Werkzeugmuseum +http://lobid.org/organisations/DE-MUS-116412#! DE-MUS-116412 Museen im Kulturzentrum +http://lobid.org/organisations/DE-MUS-117019#! DE-MUS-117019 Falkenhof-Museum +http://lobid.org/organisations/DE-MUS-117217#! DE-MUS-117217 Museum Crumstadt +http://lobid.org/organisations/DE-MUS-119015#! DE-MUS-119015 Siegfrieds Mechanisches Musikkabinett GmbH&Co. Museum KG +http://lobid.org/organisations/DE-MUS-119515#! DE-MUS-119515 Museum für Vor- und Frühgeschichte des Saarlandmuseums +http://lobid.org/organisations/DE-MUS-120114#! DE-MUS-120114 Städt. Museum Schloß Salder +http://lobid.org/organisations/DE-MUS-120812#! DE-MUS-120812 Turenne-Museum +http://lobid.org/organisations/DE-MUS-121117#! DE-MUS-121117 Schleswig-Holsteinisches Landesmuseum + Landesmuseum für Kunst- und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-121513#! DE-MUS-121513 Burgmuseum Schlitz +http://lobid.org/organisations/DE-MUS-122016#! DE-MUS-122016 Till Eulenspiegel-Museum +http://lobid.org/organisations/DE-MUS-122110#! DE-MUS-122110 Stadtmuseum Schorndorf +http://lobid.org/organisations/DE-MUS-122818#! DE-MUS-122818 Stadtmuseum Schwabach +http://lobid.org/organisations/DE-MUS-124012#! DE-MUS-124012 Städtisches Museum Seesen +http://lobid.org/organisations/DE-MUS-124116#! DE-MUS-124116 Hannoversches Straßenbahn-Museum e.V. +http://lobid.org/organisations/DE-MUS-124314#! DE-MUS-124314 Heimatmuseum und Naturschutzzentrum +http://lobid.org/organisations/DE-MUS-125317#! DE-MUS-125317 Hegau-Museum +http://lobid.org/organisations/DE-MUS-126414#! DE-MUS-126414 Museum im Boyneburgischen Schloß Wichmannshausen +http://lobid.org/organisations/DE-MUS-127115#! DE-MUS-127115 Freilichtmuseum Stade +http://lobid.org/organisations/DE-MUS-127719#! DE-MUS-127719 Schloßmuseum mit Brüder-Grimm-Gedenkstätte +http://lobid.org/organisations/DE-MUS-127917#! DE-MUS-127917 Urmensch-Museum +http://lobid.org/organisations/DE-MUS-130710#! DE-MUS-130710 Rhöner Museumsdorf +http://lobid.org/organisations/DE-MUS-131213#! DE-MUS-131213 Museum Tegernseer Tal +http://lobid.org/organisations/DE-MUS-131619#! DE-MUS-131619 Montfort-Museum Tettnang +http://lobid.org/organisations/DE-MUS-132112#! DE-MUS-132112 Heimatstuben der Stadt Titisee-Neustadt +http://lobid.org/organisations/DE-MUS-132612#! DE-MUS-132612 Schwarzwald-Museum +http://lobid.org/organisations/DE-MUS-133511#! DE-MUS-133511 Museum der Universität Tübingen MUT/ Alte Kulturen +http://lobid.org/organisations/DE-MUS-135319#! DE-MUS-135319 Museum der Brotkultur +http://lobid.org/organisations/DE-MUS-135715#! DE-MUS-135715 Museum im Vorwerk +http://lobid.org/organisations/DE-MUS-136510#! DE-MUS-136510 Städtisches Museum +http://lobid.org/organisations/DE-MUS-136614#! DE-MUS-136614 Landschaftliches Museum+Vareler Windmühle +http://lobid.org/organisations/DE-MUS-136916#! DE-MUS-136916 Domherrenhaus - Historisches Museum Verden +http://lobid.org/organisations/DE-MUS-137117#! DE-MUS-137117 Museum Viernheim +http://lobid.org/organisations/DE-MUS-137617#! DE-MUS-137617 Heimatmuseum- und Uhrenmuseum +http://lobid.org/organisations/DE-MUS-138610#! DE-MUS-138610 Burg Waldburg +http://lobid.org/organisations/DE-MUS-138714#! DE-MUS-138714 Städt. Museum ""Hexenbürgermeisterhaus"" +http://lobid.org/organisations/DE-MUS-138912#! DE-MUS-138912 Burgmuseum Schloß Waldeck +http://lobid.org/organisations/DE-MUS-139519#! DE-MUS-139519 Museum Schwedenspeicher +http://lobid.org/organisations/DE-MUS-139613#! DE-MUS-139613 Schloß +http://lobid.org/organisations/DE-MUS-139717#! DE-MUS-139717 Museum Abtei Liesborn +http://lobid.org/organisations/DE-MUS-140410#! DE-MUS-140410 Heidemuseum 'Rischmannshof' +http://lobid.org/organisations/DE-MUS-140712#! DE-MUS-140712 Gustav-Freytag-Archiv und Museum +http://lobid.org/organisations/DE-MUS-141819#! DE-MUS-141819 Tauberländer Dorfmuseum +http://lobid.org/organisations/DE-MUS-142010#! DE-MUS-142010 Kepler-Museum +http://lobid.org/organisations/DE-MUS-142312#! DE-MUS-142312 Schloss und Schlossgarten Weilburg +http://lobid.org/organisations/DE-MUS-142718#! DE-MUS-142718 Stadtmuseum Weilheim in Oberbayern +http://lobid.org/organisations/DE-MUS-143117#! DE-MUS-143117 Museum der Stadt Weinheim +http://lobid.org/organisations/DE-MUS-143419#! DE-MUS-143419 Württemberg-Haus Beutelsbach+Museum Wiege Württemberg +http://lobid.org/organisations/DE-MUS-144214#! DE-MUS-144214 Heimatmuseum Wemding +http://lobid.org/organisations/DE-MUS-145019#! DE-MUS-145019 Jerusalemhaus +http://lobid.org/organisations/DE-MUS-145717#! DE-MUS-145717 Kloster Wienhausen +http://lobid.org/organisations/DE-MUS-145811#! DE-MUS-145811 Museum Wiesbaden +http://lobid.org/organisations/DE-MUS-145915#! DE-MUS-145915 Städtisches Museum Wiesloch +http://lobid.org/organisations/DE-MUS-146210#! DE-MUS-146210 Museum Wildberg +http://lobid.org/organisations/DE-MUS-147713#! DE-MUS-147713 Museum im Schloss Wolfach +http://lobid.org/organisations/DE-MUS-147817#! DE-MUS-147817 Automobilmuseum Wolfegg +http://lobid.org/organisations/DE-MUS-148518#! DE-MUS-148518 Stiftung AutoMuseum Volkswagen +http://lobid.org/organisations/DE-MUS-154216#! DE-MUS-154216 Museum im Kolbschen Haus +http://lobid.org/organisations/DE-MUS-154518#! DE-MUS-154518 Historische Räume - Stadtschloß Fulda +http://lobid.org/organisations/DE-MUS-154914#! DE-MUS-154914 Museum Hanau+Schloss Philippsruhe +http://lobid.org/organisations/DE-MUS-155219#! DE-MUS-155219 Museum Heppenheim +http://lobid.org/organisations/DE-MUS-155917#! DE-MUS-155917 Heimatmuseum in der Zehntscheune/Museum im Schloßpark +http://lobid.org/organisations/DE-MUS-156816#! DE-MUS-156816 Museum für Heimat- und Altertumskunde +http://lobid.org/organisations/DE-MUS-158312#! DE-MUS-158312 Elfenbein-Museum +http://lobid.org/organisations/DE-MUS-159013#! DE-MUS-159013 Turmuhren- und Heimatmuseum Ambergau +http://lobid.org/organisations/DE-MUS-159513#! DE-MUS-159513 Burg Dankwarderode+Mittelalterabteilung des Herzog Anton Ulrich-Museums +http://lobid.org/organisations/DE-MUS-159919#! DE-MUS-159919 Internationales Wind- und Wassermühlen - Museum +http://lobid.org/organisations/DE-MUS-160112#! DE-MUS-160112 Musikinstrumentensammlung des Musikwissenschaftlichen Seminars der Universität Göttingen +http://lobid.org/organisations/DE-MUS-160310#! DE-MUS-160310 Glasmacherhaus +http://lobid.org/organisations/DE-MUS-161719#! DE-MUS-161719 Niedersächsisches Bergbaumuseum +http://lobid.org/organisations/DE-MUS-161917#! DE-MUS-161917 Stiftung Freilichtmuseum am Kiekeberg +http://lobid.org/organisations/DE-MUS-163017#! DE-MUS-163017 Haus Samson +http://lobid.org/organisations/DE-MUS-163517#! DE-MUS-163517 Niedersächsisches Landesmuseum Hannover +http://lobid.org/organisations/DE-MUS-163715#! DE-MUS-163715 Historisches Museum am Hohen Ufer +http://lobid.org/organisations/DE-MUS-163913#! DE-MUS-163913 Sprengel Museum Hannover +http://lobid.org/organisations/DE-MUS-164312#! DE-MUS-164312 Haus am Checkpoint Charlie +http://lobid.org/organisations/DE-MUS-164718#! DE-MUS-164718 Bleikeller +http://lobid.org/organisations/DE-MUS-165013#! DE-MUS-165013 Museum f. Hamburgische Geschichte, Abt. Museum für Bergedorf und die Vierlande +http://lobid.org/organisations/DE-MUS-165513#! DE-MUS-165513 Hamburg Museum, Abt. Krameramtswohnungen +http://lobid.org/organisations/DE-MUS-166016#! DE-MUS-166016 Geburtshaus von Nicolaus August Otto +http://lobid.org/organisations/DE-MUS-166214#! DE-MUS-166214 Museum bei der Kaiserpfalz +http://lobid.org/organisations/DE-MUS-168012#! DE-MUS-168012 Historische Sammlung +http://lobid.org/organisations/DE-MUS-169213#! DE-MUS-169213 Museum der Deutschen Binnenschifffahrt Duisburg-Ruhrort +http://lobid.org/organisations/DE-MUS-169619#! DE-MUS-169619 Gerhart-Hauptmann-Haus +http://lobid.org/organisations/DE-MUS-169817#! DE-MUS-169817 Widukind Museum +http://lobid.org/organisations/DE-MUS-169911#! DE-MUS-169911 Heimatmuseum Niederense +http://lobid.org/organisations/DE-MUS-170010#! DE-MUS-170010 DampfLandLeute -+Museum Eslohe +http://lobid.org/organisations/DE-MUS-170510#! DE-MUS-170510 Westfälisches Glockenmuseum +http://lobid.org/organisations/DE-MUS-171117#! DE-MUS-171117 Museum Bochum-Wasserburg Haus Kemnade +http://lobid.org/organisations/DE-MUS-172412#! DE-MUS-172412 Kunstsammlung St. Nicolai-Kirche +http://lobid.org/organisations/DE-MUS-172516#! DE-MUS-172516 Heimatmuseum Ferndorf +http://lobid.org/organisations/DE-MUS-172610#! DE-MUS-172610 Heimatmuseum Banfetal +http://lobid.org/organisations/DE-MUS-172714#! DE-MUS-172714 Heimatmuseum Ladbergen +http://lobid.org/organisations/DE-MUS-173915#! DE-MUS-173915 Stadtmuseum Münster +http://lobid.org/organisations/DE-MUS-174116#! DE-MUS-174116 Heimatmuseum Netpherland +http://lobid.org/organisations/DE-MUS-174814#! DE-MUS-174814 Naturkundemuseum Paderborn +http://lobid.org/organisations/DE-MUS-175015#! DE-MUS-175015 Feuerwehrmuseum Schröttinghausen +http://lobid.org/organisations/DE-MUS-175213#! DE-MUS-175213 Museum Alte Kirche +http://lobid.org/organisations/DE-MUS-175317#! DE-MUS-175317 Westfälisches Schiefer-Bergbau-Museum +http://lobid.org/organisations/DE-MUS-176018#! DE-MUS-176018 Städtisches Museum-Galerie im Centrum +http://lobid.org/organisations/DE-MUS-176810#! DE-MUS-176810 Gerätemuseum des Coburger Landes +http://lobid.org/organisations/DE-MUS-177719#! DE-MUS-177719 Staatsgalerie in der Residenz +http://lobid.org/organisations/DE-MUS-178816#! DE-MUS-178816 Wagstädter Heimatstube +http://lobid.org/organisations/DE-MUS-180012#! DE-MUS-180012 Max-Reger-Gedächtniszimmer +http://lobid.org/organisations/DE-MUS-180710#! DE-MUS-180710 Torhalle Frauenchiemsee +http://lobid.org/organisations/DE-MUS-181213#! DE-MUS-181213 Heimatmuseum Dietenhofen +http://lobid.org/organisations/DE-MUS-182112#! DE-MUS-182112 Heimat- und Bergbaumuseum Erbendorf +http://lobid.org/organisations/DE-MUS-182810#! DE-MUS-182810 Burg Falkenberg +http://lobid.org/organisations/DE-MUS-183219#! DE-MUS-183219 Braunauer Heimatmuseum +http://lobid.org/organisations/DE-MUS-184410#! DE-MUS-184410 Sammlung Irmgard Friedl +http://lobid.org/organisations/DE-MUS-185913#! DE-MUS-185913 Stiftskirchenmuseum Himmelkron +http://lobid.org/organisations/DE-MUS-186312#! DE-MUS-186312 Die Hummelstube +http://lobid.org/organisations/DE-MUS-186718#! DE-MUS-186718 Heimatmuseum Niemes und Prachatitz +http://lobid.org/organisations/DE-MUS-186812#! DE-MUS-186812 Kirchenburgmuseum Mönchsondheim +http://lobid.org/organisations/DE-MUS-187419#! DE-MUS-187419 Crescentia-Gedenkstätte +http://lobid.org/organisations/DE-MUS-187919#! DE-MUS-187919 Stadtmuseum Kempten +http://lobid.org/organisations/DE-MUS-188110#! DE-MUS-188110 Bauernhofmuseum Kirchanschöring +http://lobid.org/organisations/DE-MUS-188412#! DE-MUS-188412 Museum Schloß Oberschwappach +http://lobid.org/organisations/DE-MUS-188610#! DE-MUS-188610 Museum Markt Kösching +http://lobid.org/organisations/DE-MUS-190014#! DE-MUS-190014 Heimat- und Handwerker-Museum +http://lobid.org/organisations/DE-MUS-191413#! DE-MUS-191413 Turmuhren-Museum +http://lobid.org/organisations/DE-MUS-193711#! DE-MUS-193711 Museum Industriekultur mit Motorradmuseum +http://lobid.org/organisations/DE-MUS-193919#! DE-MUS-193919 Heimatmuseum Oberndorf am Lech +http://lobid.org/organisations/DE-MUS-194412#! DE-MUS-194412 Museum Schloss Ortenburg +http://lobid.org/organisations/DE-MUS-196012#! DE-MUS-196012 Naturkundemuseum Ostbayern +http://lobid.org/organisations/DE-MUS-197015#! DE-MUS-197015 Toppler-Schlößchen +http://lobid.org/organisations/DE-MUS-197119#! DE-MUS-197119 Heimatmuseum Vorderdietzberg +http://lobid.org/organisations/DE-MUS-198518#! DE-MUS-198518 Heimatstuben im Diebsturm +http://lobid.org/organisations/DE-MUS-199313#! DE-MUS-199313 Volkskundemuseum Treuchtlingen +http://lobid.org/organisations/DE-MUS-200319#! DE-MUS-200319 Museum im Malhaus +http://lobid.org/organisations/DE-MUS-201916#! DE-MUS-201916 Stiftung Keramion +http://lobid.org/organisations/DE-MUS-202013#! DE-MUS-202013 Museum für Niederrheinische Sakralkunst in der Paterskirche +http://lobid.org/organisations/DE-MUS-203214#! DE-MUS-203214 Schwarzwälder Trachtenmuseum +http://lobid.org/organisations/DE-MUS-203318#! DE-MUS-203318 Burgmuseum Burg Guttenberg +http://lobid.org/organisations/DE-MUS-203516#! DE-MUS-203516 Burg Hohenzollern +http://lobid.org/organisations/DE-MUS-204019#! DE-MUS-204019 Deutsches Apotheken-Museum +http://lobid.org/organisations/DE-MUS-204311#! DE-MUS-204311 Schloß Heidelberg +http://lobid.org/organisations/DE-MUS-206317#! DE-MUS-206317 Gräflich Zeppelinsches Schloßmuseum Aschhausen +http://lobid.org/organisations/DE-MUS-207216#! DE-MUS-207216 Klettgau Museum im Schloß Tiengen +http://lobid.org/organisations/DE-MUS-208219#! DE-MUS-208219 Museum Hohe Schule +http://lobid.org/organisations/DE-MUS-209014#! DE-MUS-209014 Museum im Alten Rathaus +http://lobid.org/organisations/DE-MUS-209712#! DE-MUS-209712 Besucherbergwerk Kochendorf +http://lobid.org/organisations/DE-MUS-209816#! DE-MUS-209816 Heimatmuseum der Stadt Möckmühl +http://lobid.org/organisations/DE-MUS-210915#! DE-MUS-210915 Rekonstr. Römerkastell mit Ausgrabungsfunden +http://lobid.org/organisations/DE-MUS-211012#! DE-MUS-211012 Salinenmuseum 'Unteres Bohrhaus' +http://lobid.org/organisations/DE-MUS-211210#! DE-MUS-211210 Motor- und Glasmuseum Öhringen +http://lobid.org/organisations/DE-MUS-212317#! DE-MUS-212317 Weinbaumuseum der Landeshauptstadt Stuttgart +http://lobid.org/organisations/DE-MUS-212713#! DE-MUS-212713 Tobias-Mayer-Museum +http://lobid.org/organisations/DE-MUS-213414#! DE-MUS-213414 Schulmuseum Friedrichshafen am Bodensee +http://lobid.org/organisations/DE-MUS-213914#! DE-MUS-213914 Kreismuseum Bonndorf +http://lobid.org/organisations/DE-MUS-214011#! DE-MUS-214011 Schloß-Narrenstuben +http://lobid.org/organisations/DE-MUS-214115#! DE-MUS-214115 Heimatmuseum Görwihl +http://lobid.org/organisations/DE-MUS-214719#! DE-MUS-214719 Bauernhaus-Museum Wolfegg +http://lobid.org/organisations/DE-MUS-215316#! DE-MUS-215316 Heimatmuseum im Vogteigebäude mit Ostdeutscher Heimatstube +http://lobid.org/organisations/DE-MUS-215410#! DE-MUS-215410 Goldbergmuseum +http://lobid.org/organisations/DE-MUS-217114#! DE-MUS-217114 Heimatmuseum+Grenzsteinmuseum im Amtshaus+Volkskundesammlung +http://lobid.org/organisations/DE-MUS-218513#! DE-MUS-218513 Dokumentationszentrum Oberer Kuhberg Ulm e.V. -KZ-Gedenkstätte- +http://lobid.org/organisations/DE-MUS-218617#! DE-MUS-218617 Heimatmuseum Hettingen +http://lobid.org/organisations/DE-MUS-219818#! DE-MUS-219818 Deutsches Ordensmuseum +http://lobid.org/organisations/DE-MUS-223416#! DE-MUS-223416 Tagelöhner- und Brennereimuseum +http://lobid.org/organisations/DE-MUS-223614#! DE-MUS-223614 Alte Trotte im Trotthaus Alsenhof +http://lobid.org/organisations/DE-MUS-224117#! DE-MUS-224117 Glasmuseum Dorotheenhütte Wolfach +http://lobid.org/organisations/DE-MUS-225714#! DE-MUS-225714 Schloß Favorite +http://lobid.org/organisations/DE-MUS-226717#! DE-MUS-226717 Bayerisches Schulmuseum Ichenhausen +http://lobid.org/organisations/DE-MUS-227512#! DE-MUS-227512 Flößer- und Schiffer-Museum +http://lobid.org/organisations/DE-MUS-227616#! DE-MUS-227616 Beethoven-Gedenkstätte im Mutter-Beethoven-Haus +http://lobid.org/organisations/DE-MUS-227814#! DE-MUS-227814 Heimatmuseum Güls +http://lobid.org/organisations/DE-MUS-228411#! DE-MUS-228411 Stiftsmuseum an St. Castor +http://lobid.org/organisations/DE-MUS-229018#! DE-MUS-229018 Stadtmuseum im Alleehaus +http://lobid.org/organisations/DE-MUS-230013#! DE-MUS-230013 Heimatmuseum Tersteegenhaus +http://lobid.org/organisations/DE-MUS-232019#! DE-MUS-232019 Museum Bochum-Heimatmuseum Helfs Hof +http://lobid.org/organisations/DE-MUS-232519#! DE-MUS-232519 Unterfränkisches Schulmuseum des Bezirks Unterfranken +http://lobid.org/organisations/DE-MUS-232811#! DE-MUS-232811 Archäologisches Museum der Stadt Donauwörth +http://lobid.org/organisations/DE-MUS-233616#! DE-MUS-233616 Naturkundliches Museum ""historischer Speicher"" +http://lobid.org/organisations/DE-MUS-234015#! DE-MUS-234015 Stadtmuseum im Kulturzentrum +http://lobid.org/organisations/DE-MUS-234213#! DE-MUS-234213 Heimatmuseum Biebesheim +http://lobid.org/organisations/DE-MUS-235216#! DE-MUS-235216 Stadt- und Turmmuseum +http://lobid.org/organisations/DE-MUS-235310#! DE-MUS-235310 Rodensteinmuseum e.V. +http://lobid.org/organisations/DE-MUS-235612#! DE-MUS-235612 Museum in Trebur +http://lobid.org/organisations/DE-MUS-236011#! DE-MUS-236011 Feuerwehrmuseum Berlin +http://lobid.org/organisations/DE-MUS-236417#! DE-MUS-236417 Heimatmuseum Haßloch +http://lobid.org/organisations/DE-MUS-236615#! DE-MUS-236615 Heimatmuseum Wolfstein +http://lobid.org/organisations/DE-MUS-236719#! DE-MUS-236719 Burg Lichtenberg+Zehntscheune+Musikantenland-Museum +http://lobid.org/organisations/DE-MUS-238517#! DE-MUS-238517 Römisch-Germanisches Altertumsmuseum Villa Sarabodis mit Erlöserkirche +http://lobid.org/organisations/DE-MUS-242917#! DE-MUS-242917 Wallfahrtsmuseum Maria Steinbach +http://lobid.org/organisations/DE-MUS-243212#! DE-MUS-243212 Missions- und Völkerkundliches Museum +http://lobid.org/organisations/DE-MUS-243410#! DE-MUS-243410 Wasserkunst von 1535 +http://lobid.org/organisations/DE-MUS-244517#! DE-MUS-244517 Turmmuseum Mengerskirchen / Museumsscheune +http://lobid.org/organisations/DE-MUS-246013#! DE-MUS-246013 Haus der Natur - Cismar +http://lobid.org/organisations/DE-MUS-246617#! DE-MUS-246617 Burg Thurant +http://lobid.org/organisations/DE-MUS-247110#! DE-MUS-247110 Römisches Weingut 'Weilberg' +http://lobid.org/organisations/DE-MUS-247818#! DE-MUS-247818 Mosel-Weinmuseum +http://lobid.org/organisations/DE-MUS-248217#! DE-MUS-248217 Kreismuseum Bitburg-Prüm +http://lobid.org/organisations/DE-MUS-248519#! DE-MUS-248519 Wannenmachermuseum +http://lobid.org/organisations/DE-MUS-248613#! DE-MUS-248613 Stadtmuseum Steinfurt +http://lobid.org/organisations/DE-MUS-249210#! DE-MUS-249210 Museum Haus Hövener +http://lobid.org/organisations/DE-MUS-249814#! DE-MUS-249814 Domkammer der Kathedralkirche St. Paulus zu Münster +http://lobid.org/organisations/DE-MUS-252919#! DE-MUS-252919 Fränkisches Brauereimuseum +http://lobid.org/organisations/DE-MUS-254717#! DE-MUS-254717 Tabakmuseum Hockenheim +http://lobid.org/organisations/DE-MUS-255616#! DE-MUS-255616 Jagdschloß Falkenlust +http://lobid.org/organisations/DE-MUS-255710#! DE-MUS-255710 Spielmuseum Soltau +http://lobid.org/organisations/DE-MUS-257518#! DE-MUS-257518 Oberschlesisches Landesmuseum +http://lobid.org/organisations/DE-MUS-257716#! DE-MUS-257716 Flugausstellung Hermeskeil +http://lobid.org/organisations/DE-MUS-257810#! DE-MUS-257810 Kunsthalle Emden +http://lobid.org/organisations/DE-MUS-258011#! DE-MUS-258011 Stadtmuseum Beckum +http://lobid.org/organisations/DE-MUS-258219#! DE-MUS-258219 Städtische Gemäldegalerie +http://lobid.org/organisations/DE-MUS-258813#! DE-MUS-258813 Dorfmuseum Günzach +http://lobid.org/organisations/DE-MUS-259816#! DE-MUS-259816 Franz Marc Museum +http://lobid.org/organisations/DE-MUS-260717#! DE-MUS-260717 Deutsches Hutmuseum +http://lobid.org/organisations/DE-MUS-261012#! DE-MUS-261012 Heimatmuseum im Salzhaus +http://lobid.org/organisations/DE-MUS-261210#! DE-MUS-261210 Wasserschloß +http://lobid.org/organisations/DE-MUS-261314#! DE-MUS-261314 Museum im Alten Rathaus Mönchberg +http://lobid.org/organisations/DE-MUS-261418#! DE-MUS-261418 Spielzeugmuseum Ivan Steiger +http://lobid.org/organisations/DE-MUS-262317#! DE-MUS-262317 Rosenburg mit Falkenhof und Museum +http://lobid.org/organisations/DE-MUS-262515#! DE-MUS-262515 Historischer Eisenhammer Eckersmühlen +http://lobid.org/organisations/DE-MUS-262713#! DE-MUS-262713 Heimatmuseum im Wolfschneiderhof +http://lobid.org/organisations/DE-MUS-263310#! DE-MUS-263310 Museum Blaue Ente +http://lobid.org/organisations/DE-MUS-264219#! DE-MUS-264219 Kunstsammlungen und Museen Augsburg, Grafische Sammlung +http://lobid.org/organisations/DE-MUS-265910#! DE-MUS-265910 Heimatgeschichtliches Museum Modautal +http://lobid.org/organisations/DE-MUS-266017#! DE-MUS-266017 Heimatmuseum Nauheim +http://lobid.org/organisations/DE-MUS-267312#! DE-MUS-267312 Höhlenmuseum Kubacher Kristallhöhle u. Freilicht-Steinemuseum +http://lobid.org/organisations/DE-MUS-268211#! DE-MUS-268211 Kunststiftung Hohenkarpfen e.V.+Hofgut Hohenkarpfen +http://lobid.org/organisations/DE-MUS-268419#! DE-MUS-268419 Gottlieb-Daimler-Geburtshaus +http://lobid.org/organisations/DE-MUS-269110#! DE-MUS-269110 Galerie der Stadt Esslingen am Neckar Villa Merkel +http://lobid.org/organisations/DE-MUS-269818#! DE-MUS-269818 Museum Neukirchen-Vluyn+Ortsgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-270115#! DE-MUS-270115 Kleinbahnmuseum Selfkantbahn +http://lobid.org/organisations/DE-MUS-270219#! DE-MUS-270219 Mineralienmuseum +http://lobid.org/organisations/DE-MUS-271014#! DE-MUS-271014 Bergische Museumsbahnen +http://lobid.org/organisations/DE-MUS-272111#! DE-MUS-272111 Feldbahnmuseum Oekoven +http://lobid.org/organisations/DE-MUS-273812#! DE-MUS-273812 Schlossmuseum Bad Iburg +http://lobid.org/organisations/DE-MUS-273916#! DE-MUS-273916 Pelzerhäuser 11 und 12 +http://lobid.org/organisations/DE-MUS-274211#! DE-MUS-274211 Heimatmuseum Grafschaft Hoya +http://lobid.org/organisations/DE-90-68#! DE-90-68 90/68 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen und Bautechnik, Fachgebiet Building Lifecycle Mangement +http://lobid.org/organisations/DE-90-78#! DE-90-78 90/78 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen, Kunst und Theorie, Fachgebiet Bildende Künste +http://lobid.org/organisations/DE-90-120#! DE-90-120 90/120 KIT-Bibliothek, Bibliothek des Instituts für Kolbenmaschinen +http://lobid.org/organisations/DE-90-123#! DE-90-123 90/123 KIT-Bibliothek, Bibliothek des Instituts für Produktionstechnik (wbk) +http://lobid.org/organisations/DE-90-127#! DE-90-127 90/127 KIT-Bibliothek, Bibliothek der Forschungsstelle für Brandschutztechnik am Engler-Bunte-Institut +http://lobid.org/organisations/DE-90-137#! DE-90-137 90/137 KIT-Bibliothek, Bibliothek des Instituts für Technik der Informationsverarbeitung +http://lobid.org/organisations/DE-90-144#! DE-90-144 90/144 KIT-Bibliothek, Bibliothek des Studienkollegs für Ausländische Studierende +http://lobid.org/organisations/DE-90-147#! DE-90-147 90/147 KIT-Bibliothek, Bibliothek des Instituts für Regionalwissenschaft +http://lobid.org/organisations/DE-Ka87#! DE-Ka87 Ka 87 Landwirtschaftliches Technologie-Zentrum Augustenberg, Bibliothek +http://lobid.org/organisations/DE-352#! DE-352 352 Universität Konstanz, Kommunikations-, Informations-, Medienzentrum (KIM) +http://lobid.org/organisations/DE-Fn1#! DE-Fn1 Fn 1 Hochschule Furtwangen University. Informatik, Technik, Wirtschaft, Medien. Campus Furtwangen, Bibliothek +http://lobid.org/organisations/DE-25-5#! DE-25-5 25/5 Bibliothek Forstwissenschaften +http://lobid.org/organisations/DE-25-10#! DE-25-10 25/10 Bibliothek für Wirschaftswissenschaften +http://lobid.org/organisations/DE-25-13#! DE-25-13 25/13 Universität Freiburg, Kunstgeschichtliches Institut, Bibliothek +http://lobid.org/organisations/DE-25-16#! DE-25-16 25/16 Fakultätsbibliothek Biologie 2 und 3 (Botanik) +http://lobid.org/organisations/DE-25-18#! DE-25-18 25/18 Institut für Medizinische Mikrobiologie und Hygiene, Bibliothek +http://lobid.org/organisations/DE-25-59#! DE-25-59 25/59 Institut für Forst- und Umweltpolitik, Arbeitsbereich Forstpolitik, Bibliothek +http://lobid.org/organisations/DE-25-60#! DE-25-60 25/60 Institut für Bodenkunde und Waldernährungslehre, Bibliothek +http://lobid.org/organisations/DE-25-66#! DE-25-66 25/66 Historisches Seminar, Abteilung Landesgeschichte, Bibliothek +http://lobid.org/organisations/DE-25-73#! DE-25-73 25/73 Institut für Experimentelle und Klinische Pharmakologie und Toxikologie, Bibliothek +http://lobid.org/organisations/DE-25-137#! DE-25-137 25/137 Universität Freiburg, Seminar für Griechische und Lateinische Philologie, Abteilung für Lateinische Philologie des Mittelalters, Bibliothek +http://lobid.org/organisations/DE-25-140#! DE-25-140 25/140 Institut für Medizinische Biometrie und Medizinische Informatik, Bibliothek +http://lobid.org/organisations/DE-25-154#! DE-25-154 25/154 Klinik für Psychosomatische Medizin und Psychotherapie (Department für Psychische Erkrankungen), Bibliothek +http://lobid.org/organisations/DE-25-165#! DE-25-165 25/165 Professur für Naturschutz und Landschaftsökologie, Bibliothek +http://lobid.org/organisations/DE-25-3d#! DE-25-3d 25/3d Mathematisches Institut, Bibliothek / Abteilung für Mathematische Logik +http://lobid.org/organisations/DE-25-30b#! DE-25-30b 25/30b Deutsches Seminar, Neuere deutsche Literatur, Bibliothek +http://lobid.org/organisations/DE-25-31z#! DE-25-31z 25/31z Institut für Archäologische Wissenschaften, Abt. Provinzialrömische Archäologie, Bibliothek +http://lobid.org/organisations/DE-25-66a#! DE-25-66a 25/66a Deutsches Seminar, Forschungsstelle Sprachvariation in Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Frei129#! DE-Frei129 Frei 129 Bibliothek der Pädagogischen Hochschule Freiburg/Breisgau +http://lobid.org/organisations/DE-Frei48#! DE-Frei48 Frei 48 Regierungspräsidium Freiburg, Abt. 9: Landesamt für Geologie, Rohstoffe und Bergbau, Bibliothek +http://lobid.org/organisations/DE-M5#! DE-M5 M 5 Bayerische Landesanstalt für Landwirtschaft LfL, Bibliothek +http://lobid.org/organisations/DE-M477#! DE-M477 M 477 Max-Planck-Institut für Sozialrecht und Sozialpolitik, Abteilung für ausländisches und internationales Sozialrecht sowie Abteilung Munich Center for the Economics of Aging (MEA), Bibliothek +http://lobid.org/organisations/DE-355#! DE-355 355 Universitätsbibliothek Regensburg +http://lobid.org/organisations/DE-155#! DE-155 155 Staatliche Bibliothek Regensburg +http://lobid.org/organisations/DE-54#! DE-54 54 Staatliche Bibliothek, Provinzialbibliothek +http://lobid.org/organisations/DE-29T#! DE-29T 29 T Universitätsbibliothek Erlangen-Nürnberg, Technisch-naturwissenschaftliche Zweigbibliothek +http://lobid.org/organisations/DE-484#! DE-484 484 Stadtarchiv Bamberg, Amtsbücherei +http://lobid.org/organisations/DE-20#! DE-20 20 Universitätsbibliothek Würzburg +http://lobid.org/organisations/DE-863#! DE-863 863 Technische Hochschule Würzburg-Schweinfurt Bibliothek +http://lobid.org/organisations/DE-246#! DE-246 246 Stadtarchiv und Stadtbibliothek +http://lobid.org/organisations/DE-859#! DE-859 859 Hochschule Kempten, Hochschulbibliothek +http://lobid.org/organisations/DE-741#! DE-741 741 Flora Westfalica GmbH Stadtbibliothek Rheda-Wiedenbrück +http://lobid.org/organisations/DE-He205#! DE-He205 He 205 Stiftung Reichspräsident-Friedrich-Ebert-Gedenkstätte, Bibliothek +http://lobid.org/organisations/DE-U2#! DE-U2 U 2 Institut für Lasertechnologien in der Medizin und Meßtechnik an der Universität Ulm, Bibliothek +http://lobid.org/organisations/DE-954#! DE-954 954 Stadt Ulm, Museum Ulm, HfG Archiv +http://lobid.org/organisations/DE-217#! DE-217 217 Stadtbibliothek Neuss +http://lobid.org/organisations/DE-B224#! DE-B224 B 224 Archenhold-Sternwarte, Bibliothek +http://lobid.org/organisations/DE-B2026#! DE-B2026 B 2026 Bildungszentrum am Müggelsee GmbH, Bibliothek +http://lobid.org/organisations/DE-B2044#! DE-B2044 B 2044 Institut für Hochschulforschung (HoF) Halle-Wittenberg an der Martin-Luther-Universität Halle-Wittenberg, Bibliothek +http://lobid.org/organisations/DE-181#! DE-181 181 Lernzentrum Cottbus / Stadt- und Regionalbibliothek Cottbus +http://lobid.org/organisations/DE-Co10#! DE-Co10 Co 10 Landesamt für Arbeitsschutz, Regionalbereich Süd, Bibliothek +http://lobid.org/organisations/DE-Co15#! DE-Co15 Co 15 Kreiskrankenhaus, Medizinische Bibliothek +http://lobid.org/organisations/DE-Eb1#! DE-Eb1 Eb 1 Hochschule für nachhaltige Entwicklung Eberswalde, Hochschulbibliothek +http://lobid.org/organisations/DE-B685#! DE-B685 B 685 Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum, Bibliothek +http://lobid.org/organisations/DE-Po65#! DE-Po65 Po 65 Brandenburgisches Landesinstitut für Rechtsmedizin, Bibliothek +http://lobid.org/organisations/DE-Po67#! DE-Po67 Po 67 Johanniter Krankenhaus im Fläming gGmbH, Medizinische Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Sht10#! DE-Sht10 Sht 10 Stadtbibliothek Schwedt +http://lobid.org/organisations/DE-33#! DE-33 33 Landesbibliothek Mecklenburg-Vorpommern Günther Uecker im Landesamt für Kultur und Denkmalpflege +http://lobid.org/organisations/DE-Gr70#! DE-Gr70 Gr 70 Institut für Niedertemperatur-Plasmaphysik e.V. (INP), Bibliothek +http://lobid.org/organisations/DE-Gs3#! DE-Gs3 Gs 3 KMG Klinikum Güstrow, Medizinische Bibliothek +http://lobid.org/organisations/DE-R71#! DE-R71 R 71 Thünen-Institut, Zentrum für Informationsmanagement, Bibliothek Fischerei +http://lobid.org/organisations/DE-R89#! DE-R89 R 89 Klinikum Südstadt, Fachbibliothek +http://lobid.org/organisations/DE-R120#! DE-R120 R 120 Landeshygieneinstitut Rostock, Fachbibliothek +http://lobid.org/organisations/DE-R127#! DE-R127 R 127 Inros Lackner AG, Fachbibliothek +http://lobid.org/organisations/DE-Shw7#! DE-Shw7 Shw 7 Landesamt für Gesundheit und Soziales Mecklenburg-Vorpommern, Zentralbibliothek +http://lobid.org/organisations/DE-Shw16#! DE-Shw16 Shw 16 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern, Landeshauptarchiv Schwerin, Dienstbibliothek +http://lobid.org/organisations/DE-Sra1#! DE-Sra1 Sra 1 Hanse-Klinikum Stralsund GmbH, Wissenschaftliche Bibliothek / Patientenbibliothek +http://lobid.org/organisations/DE-As3#! DE-As3 As 3 Kreiskliniken Aschersleben-Staßfurt, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-De7#! DE-De7 De 7 Stahlbau Dessau GmbH & Co. KG, Wissenschaftlich-Technische Informationsstelle +http://lobid.org/organisations/DE-Eis1#! DE-Eis1 Eis 1 Mansfeld-Museum im Humboldt-Schloss Hettstedt, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Eis3#! DE-Eis3 Eis 3 HELIOS Klinik Lutherstadt Eisleben, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-3-11#! DE-3-11 3/11 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Rechtswissenschaft +http://lobid.org/organisations/DE-Ha103#! DE-Ha103 Ha 103 Landesamt für Verbraucherschutz Sachsen-Anhalt, Fachbereich Lebensmittelsicherheit, Bibliothek +http://lobid.org/organisations/DE-Ha116#! DE-Ha116 Ha 116 Landesinstitut für Schulqualität und Lehrerbildung Sachsen-Anhalt, Pädagogische Mediathek +http://lobid.org/organisations/DE-Hs2#! DE-Hs2 Hs 2 Gleimhaus - Museum der deutschen Aufklärung, Bibliothek +http://lobid.org/organisations/DE-Ma9#! DE-Ma9 Ma 9 Otto-von-Guericke-Universität, Universitätsbibliothek +http://lobid.org/organisations/DE-Ma14#! DE-Ma14 Ma 14 Otto-von-Guericke-Universität, Universitätsbibliothek, Medizinische Zentralbibliothek +http://lobid.org/organisations/DE-Ma50#! DE-Ma50 Ma 50 Städtisches Klinikum, Zentrale Bibliothek +http://lobid.org/organisations/DE-Ste6#! DE-Ste6 Ste 6 Landesamt für Verbraucherschutz Sachsen-Anhalt, Fachbereich Veterinärmedizin, Bibliothek +http://lobid.org/organisations/DE-Ste7#! DE-Ste7 Ste 7 Johanniter-Krankenhaus, Medizinische Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Bn1#! DE-Bn1 Bn 1 Sorbisches Institut e. V., Serbski institut z. t., Sorbische Zentralbibliothek, Serbska centralna biblioteka +http://lobid.org/organisations/DE-D115#! DE-D115 D 115 Landesamt für Archäologie Sachsen, Bibliothek +http://lobid.org/organisations/DE-D117#! DE-D117 D 117 Hochschule für Musik 'Carl Maria von Weber', Hochschulbibliothek +http://lobid.org/organisations/DE-D142#! DE-D142 D 142 Leibniz-Institut für Festkörper- und Werkstoffforschung, IFW Dresden, Bibliothek +http://lobid.org/organisations/DE-D193#! DE-D193 D 193 KEMA-IEV, Ingenieurunternehmen für Energieversorgung GmbH, Information +http://lobid.org/organisations/DE-D263#! DE-D263 D 263 Elblandkliniken Stiftung & Co. KG, Elblandklinikum Radebeul, Ärztebibliothek +http://lobid.org/organisations/DE-Ch1#! DE-Ch1 Ch 1 Technische Universität Chemnitz, Universitätsbibliothek +http://lobid.org/organisations/DE-Ch85#! DE-Ch85 Ch 85 Institut für Rechtsmedizin an der Universität Leipzig, Außenstelle Chemnitz, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-L244#! DE-L244 L 244 Dow Olefinverbund GmbH, Werk Böhlen, Fachbibliothek +http://lobid.org/organisations/DE-L246#! DE-L246 L 246 Park-Krankenhaus Leipzig, Medizinische Fachbibliothek Psychiatrische Kliniken +http://lobid.org/organisations/DE-L249#! DE-L249 L 249 Fachkrankenhaus Hubertusburg gGmbH, Zentralbibliothek +http://lobid.org/organisations/DE-L261#! DE-L261 L 261 Kunststoff-Zentrum in Leipzig gGmbH +http://lobid.org/organisations/DE-Mei12#! DE-Mei12 Mei 12 Elblandkliniken Meißen-Radebeul GmbH & Co. KG, Allgemeine Verwaltung / Bibliothek +http://lobid.org/organisations/DE-Mi1#! DE-Mi1 Mi 1 Bell Flavors & Fragrances Duft und Aroma GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Sto1#! DE-Sto1 Sto 1 Kreiskrankenhaus Stollberg gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-39#! DE-39 39 Forschungsbibliothek Gotha +http://lobid.org/organisations/DE-63#! DE-63 63 Stadt- und Regionalbibliothek Erfurt +http://lobid.org/organisations/DE-Ga6#! DE-Ga6 Ga 6 SRH Wald-Klinikum Gera GmbH, Medizinische Bibliothek +http://lobid.org/organisations/DE-27-6#! DE-27-6 27/6 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Psychiatrie und Neurologie +http://lobid.org/organisations/DE-27-26#! DE-27-26 27/26 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Zoologie +http://lobid.org/organisations/DE-27-35#! DE-27-35 27/35 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Erziehungswissenschaften +http://lobid.org/organisations/DE-27-39#! DE-27-39 27/39 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Medizinische Mikrobiologie +http://lobid.org/organisations/DE-27-43#! DE-27-43 27/43 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Innere Medizin +http://lobid.org/organisations/DE-27-80#! DE-27-80 27/80 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Sprechwissenschaft +http://lobid.org/organisations/DE-27-85#! DE-27-85 27/85 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Institut für Germanistische Sprachwissenschaft, Fachgruppe Deutsche Dialektologie / Soziolinguistik, Arbeitsstelle Thüringisches Wörterbuch +http://lobid.org/organisations/DE-27-106#! DE-27-106 27/106 Thüringer Universitäts- und Landesbibliothek, Institut für Fremdsprachen +http://lobid.org/organisations/DE-J120#! DE-J120 J 120 Friedrich-Loeffler-Institut, Bundesforschungsinstitut für Tiergesundheit, Bibliothek Jena +http://lobid.org/organisations/DE-Sob4#! DE-Sob4 Sob 4 Deutsches Spielzeugmuseum, Bibliothek +http://lobid.org/organisations/DE-Su2#! DE-Su2 Su 2 Zentralklinikum Suhl gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Su5#! DE-Su5 Su 5 Institut für Transfusionsmedizin Suhl gGmbH, Bibliothek +http://lobid.org/organisations/DE-Wim2#! DE-Wim2 Wim 2 UB Weimar +http://lobid.org/organisations/DE-Wim7#! DE-Wim7 Wim 7 Landesamt für Denkmalpflege und Archäologie, Dienststelle Weimar mit Museum für Ur- und Frühgeschichte Thüringens, Bibliothek +http://lobid.org/organisations/DE-Wim8#! DE-Wim8 Wim 8 Hochschule für Musik Franz Liszt, Hochschulbibliothek +http://lobid.org/organisations/DE-Wim9#! DE-Wim9 Wim 9 Sophien- und Hufeland-Klinikum gGmbH, Medizinische Zentralbücherei +http://lobid.org/organisations/DE-Wim11#! DE-Wim11 Wim 11 Zentralklinik Bad Berka GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Sb1#! DE-Sb1 Sb 1 Thüringer Landesanstalt für Umwelt und Geologie, Staatliche Vogelschutzwarte Seebach, Bibliothek +http://lobid.org/organisations/GB-StEdU#! GB-StEdU Edinburgh University Library +http://lobid.org/organisations/DE-B769#! DE-B769 B 769 Zweigstellenbibliothek des Kammergerichts in der Senatsverwaltung für Justiz und Verbraucherschutz +http://lobid.org/organisations/DE-B1504#! DE-B1504 B 1504 Stiftung Warentest, Bibliothek +http://lobid.org/organisations/DE-B1556#! DE-B1556 B 1556 Evangelische Hochschule Berlin, Bibliothek +http://lobid.org/organisations/DE-We6#! DE-We6 We 6 Stadtbibliothek Blankenburg +http://lobid.org/organisations/DE-L92#! DE-L92 L 92 Deutsche Zentralbücherei für Blinde zu Leipzig, Wissenschaftliche Bibliothek des Blindenwesens +http://lobid.org/organisations/DE-504#! DE-504 504 Fouqué-Bibliothek Brandenburg +http://lobid.org/organisations/DE-Kn41-41#! DE-Kn41-41 Kn 41/41 Deutsche Sporthochschule Köln, Institut für Kommunikations- und Medienforschung, Bibliothek +http://lobid.org/organisations/DE-82-002#! DE-82-002 82/002 Zentrum für Lern- und Wissensmanagement, Bibliothek +http://lobid.org/organisations/DE-4-573#! DE-4-573 4/573 Zentrale Medizinische Bibliothek +http://lobid.org/organisations/DE-B683#! DE-B683 B 683 Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie im Forschungsverbund Berlin e.V., Bibliothek +http://lobid.org/organisations/DE-294-48#! DE-294-48 294/48 Ruhr-Universität Bochum, Institut für Berg- und Energierecht, Bibliothek +http://lobid.org/organisations/DE-38-226#! DE-38-226 38/226 Institut für Anwaltsrecht, Bibliothek +http://lobid.org/organisations/DE-38-450#! DE-38-450 38/450 Gemeinsame Fachbibliothek Asien / China +http://lobid.org/organisations/DE-Ch1-S1#! DE-Ch1-S1 Ch 1/S1 Technische Universität Chemnitz, Campus-Bibliothek I +http://lobid.org/organisations/DE-L319#! DE-L319 L 319 Institut für Angewandte Trainingswissenschaft e.V., Bibliothek +http://lobid.org/organisations/DE-364#! DE-364 364 Martin-Opitz-Bibliothek (MOB) +http://lobid.org/organisations/DE-Bo102#! DE-Bo102 Bo 102 Bundesministerium für Arbeit und Soziales, Bibliothek +http://lobid.org/organisations/DE-7-201#! DE-7-201 7/201 Institut für Allgemeine Staatslehre und Politische Wissenschaften an der Juristischen Fakultät, Bibliothek +http://lobid.org/organisations/DE-7-159#! DE-7-159 7/159 Seminar für Keilschriftforschung, Bibliothek +http://lobid.org/organisations/DE-7-139#! DE-7-139 7/139 Institut für Kulturanthropologie / Europäische Ethnologie, Bibliothek +http://lobid.org/organisations/DE-7-022#! DE-7-022 7/022 Universität Göttingen, Geographisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-209#! DE-93-209 93/209 Universität Stuttgart, Fakultätsbibliothek Architektur und Stadtplanung +http://lobid.org/organisations/DE-27-25#! DE-27-25 27/25 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Anglistik / Amerikanistik +http://lobid.org/organisations/DE-82-325#! DE-82-325 82/325 Lehrstuhl und Institut für Maschinenelemente und Systementwicklung, Bibliothek +http://lobid.org/organisations/DE-458#! DE-458 458 Landeskundliche Bibliothek des Märkischen Kreises +http://lobid.org/organisations/DE-7-056#! DE-7-056 7/056 Universität Göttingen, Musikwissenschaftliches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-701#! DE-7-701 7/701 Zentrum Biochemie und Molekulare Zellbiologie, Abteilung Biochemie 2, Bibliothek +http://lobid.org/organisations/DE-7-704#! DE-7-704 7/704 Zentrum Hygiene und Humangenetik, Abteilung Immungenetik, Bibliothek +http://lobid.org/organisations/DE-7-708#! DE-7-708 7/708 Zentrum Chirurgie, Abteilung Thorax-, Herz- und Gefäßchirurgie, Bibliothek +http://lobid.org/organisations/DE-7-047#! DE-7-047 7/047 Zentrum Kinderheilkunde, Abteilung Kinderheilkunde, Bibliothek +http://lobid.org/organisations/DE-7-714#! DE-7-714 7/714 Zentrum Kinderheilkunde, Abteilung Pädiatrische Kardiologie, Bibliothek +http://lobid.org/organisations/DE-7-717#! DE-7-717 7/717 Zentrum Neurologische Medizin, Abteilung Neurochirurgie, Bibliothek +http://lobid.org/organisations/DE-7-727#! DE-7-727 7/727 Zentrum Psychologische Medizin, Abteilung für Medizinische Psychologie, Bibliothek +http://lobid.org/organisations/DE-7-733#! DE-7-733 7/733 Zentrum Arbeits- und Umweltmedizin, Abteilung Arbeits- und Sozialmedizin, Bibliothek +http://lobid.org/organisations/DE-7-057#! DE-7-057 7/057 Universität Göttingen, Institut für Geophysik, Bibliothek +http://lobid.org/organisations/DE-7-505#! DE-7-505 7/505 Institut für Waldbau, Abteilung 1: Waldbau der gemäßigten Zonen und Waldökologie, Bibliothek +http://lobid.org/organisations/DE-7-506#! DE-7-506 7/506 Institut für Waldbau, Abteilung 2: Waldbau der Tropen, Bibliothek +http://lobid.org/organisations/DE-7-511#! DE-7-511 7/511 Institut für Wildbiologie und Jagdkunde, Bibliothek +http://lobid.org/organisations/DE-7-513#! DE-7-513 7/513 Institut für Bioklimatologie, Bibliothek +http://lobid.org/organisations/DE-4-304#! DE-4-304 4/304 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Öffentliches Recht +http://lobid.org/organisations/DE-4-576#! DE-4-576 4/576 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Rechtsgeschichte, Romanistische Abteilung +http://lobid.org/organisations/DE-4-584#! DE-4-584 4/584 Universität Marburg, Institut für Pharmakologie und Toxikologie, Bibliothek +http://lobid.org/organisations/DE-26-026#! DE-26-026 26/026 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 6, Betriebswirtschaftliche Steuerlehre +http://lobid.org/organisations/DE-26-082#! DE-26-082 26/082 Universität Gießen, Fachbibliothek Geschichts- und Kulturwissenschaften / Klassische Archäologie +http://lobid.org/organisations/DE-26-090#! DE-26-090 26/090 Universität Gießen, Bibliothek Germanistik +http://lobid.org/organisations/DE-26-092#! DE-26-092 26/092 Universität Gießen, Fachbibliothek Germanistik / Sudetendeutsches Wörterbuch +http://lobid.org/organisations/DE-26-182#! DE-26-182 26/182 Universität Gießen, Klinik für Vögel, Reptilien, Amphibien und Fische +http://lobid.org/organisations/DE-26-235#! DE-26-235 26/235 Universität Gießen, Bibliothek Arbeits- und Sozialmedizin +http://lobid.org/organisations/DE-26-331#! DE-26-331 26/331 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 1, Industrieökonomie, Wettbewerbspolitik und Regulierung +http://lobid.org/organisations/DE-26-332#! DE-26-332 26/332 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 2, Öffentliche Finanzen +http://lobid.org/organisations/DE-77-021#! DE-77-021 77/021 Universität Mainz, Medizin, Konsortialrelevanter Zeitschriftenbestand +http://lobid.org/organisations/DE-77-120#! DE-77-120 77/120 Universität Mainz, Bereichsbibliothek Philosophicum, Standorte Theaterwissenschaft / Medienkulturwissenschaft / Alltagsmedien +http://lobid.org/organisations/DE-77-043#! DE-77-043 77/043 Universität Mainz, Universität Mainz, Bereichsbibliothek Universitätsmedizin, Klinik für Psychiatrie und Psychotherapie +http://lobid.org/organisations/DE-1373#! DE-1373 1373 HafenCity Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-18-76#! DE-18-76 18/76 Universität Hamburg, Fachbibliothek Sozialwissenschaften +http://lobid.org/organisations/DE-18-161#! DE-18-161 18/161 Theologische Bibliothek der Universität Hamburg (Fachbereich Evangelische Theologie und Institut für Katholische Theologie) +http://lobid.org/organisations/DE-18-226#! DE-18-226 18/226 Institut für Friedensforschung und Sicherheitspolitik an der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-18-228#! DE-18-228 18/228 Department Informatik der Universität Hamburg , Bibliothek +http://lobid.org/organisations/DE-18-278#! DE-18-278 18/278 Universität Hamburg, Institut für Allgemeine und Angewandte Sprachwissenschaft, Abteilung für Sprachlehrforschung, Bibliothek für Sprachlehrforschung +http://lobid.org/organisations/DE-77-069#! DE-77-069 77/069 Universität Mainz, Psychologisches Institut +http://lobid.org/organisations/DE-77-073#! DE-77-073 77/073 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Allgemeine und Vergleichende Sprachwissenschaft +http://lobid.org/organisations/DE-77-075#! DE-77-075 77/075 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Slavistik +http://lobid.org/organisations/DE-77-080#! DE-77-080 77/080 Universität Mainz, Bereichsbibliothek Rechts- und Wirtschaftswissenschaften / Turkologie +http://lobid.org/organisations/DE-77-090#! DE-77-090 77/090 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Buchwissenschaft +http://lobid.org/organisations/DE-77-110#! DE-77-110 77/110 Universität Mainz, Bereichsbibliothek Georg Forster-Gebäude / Geographie und Geowissenschaften +http://lobid.org/organisations/DE-30-101#! DE-30-101 30/101 Institut für Orientalische und Ostasiatische Philologien -Turkologie-, Bibliothek +http://lobid.org/organisations/DE-30-212#! DE-30-212 30/212 Universitätsbibliothek J. C. Senckenberg, Informatikbibliothek +http://lobid.org/organisations/DE-30-322#! DE-30-322 30/322 Universitätsbibliothek J. C. Senckenberg, ZB, Sinologie +http://lobid.org/organisations/DE-Ki95#! DE-Ki95 Ki 95 Fachhochschule Kiel, Zentralbibliothek +http://lobid.org/organisations/DE-4-597#! DE-4-597 4/597 Zentrum für Methodenwissenschaften und Gesundheitsforschung, Institut für Allgemeinmedizin, Bibliothek +http://lobid.org/organisations/DE-17-9#! DE-17-9 17/9 TU Darmstadt, Teilfachbereich Geowissenschaften +http://lobid.org/organisations/DE-17-23#! DE-17-23 17/23 TU Darmstadt, Institut für Elektrische Energiewandlung +http://lobid.org/organisations/DE-17-24#! DE-17-24 17/24 TU Darmstadt, Kittler Student Center +http://lobid.org/organisations/DE-Ds123#! DE-Ds123 Ds 123 Deutsches Polen-Institut, Bibliothek +http://lobid.org/organisations/DE-Ds124#! DE-Ds124 Ds 124 Stadtarchiv Darmstadt +http://lobid.org/organisations/DE-17-40#! DE-17-40 17/40 TU Darmstadt, Institute Philosophie/Soziologie +http://lobid.org/organisations/DE-17-43#! DE-17-43 17/43 TU Darmstadt, Fachgebiet Produktionsmanagement, Technologie, Werkzeugmaschinen +http://lobid.org/organisations/DE-17-45#! DE-17-45 17/45 TU Darmstadt, Volkswirtschaftliche Fachgebiete +http://lobid.org/organisations/DE-17-56#! DE-17-56 17/56 TU Darmstadt, Architektur und Städtebau +http://lobid.org/organisations/DE-17-63#! DE-17-63 17/63 TU Darmstadt, Institute für Massivbau, Stahlbau und Werkstoffmechanik, Bibliothek +http://lobid.org/organisations/DE-17-110#! DE-17-110 17/110 TU Darmstadt, Fachgebiet Fahrzeugtechnik +http://lobid.org/organisations/DE-17-111#! DE-17-111 17/111 TU Darmstadt, Institut für Sportwissenschaft +http://lobid.org/organisations/DE-946#! DE-946 946 Bibliothek der Frankfurt University of Applied Sciences +http://lobid.org/organisations/DE-89-17#! DE-89-17 89/17 Technische Informationsbibliothek (TIB) Standort Conti-Campus Literatur- und Sprachwissenschaften +http://lobid.org/organisations/DE-1028#! DE-1028 1028 Hochschule Weihenstephan-Triesdorf, Zentralbibliothek +http://lobid.org/organisations/DE-1029#! DE-1029 1029 Hochschule Weihenstephan-Triesdorf, Teilbibliothek Triesdorf +http://lobid.org/organisations/DE-91G#! DE-91G 91 G Technische Universität München, Universitätsbibliothek, Teilbibliotheken Garching +http://lobid.org/organisations/DE-Hv14#! DE-Hv14 Hv 14 Niedersächsischer Landtag, Bibliothek +http://lobid.org/organisations/DE-7-411#! DE-7-411 7/411 Zentrum für Naturschutz, Bibliothek +http://lobid.org/organisations/DE-547#! DE-547 547 Universitätsbibliothek Erfurt / Forschungsbibliothek Gotha, Universitätsbibliothek Erfurt +http://lobid.org/organisations/DE-927#! DE-927 927 Stadtbücherei Bad Dürkheim +http://lobid.org/organisations/DE-B2139#! DE-B2139 B 2139 Anna-Seghers-Bibliothek +http://lobid.org/organisations/DE-B709#! DE-B709 B 709 Stadtteilbibliothek Friedrichshain-Kreuzberg, Friedrich-von-Raumer-Bibliothek +http://lobid.org/organisations/DE-B717#! DE-B717 B 717 Stadtbibliothek Mitte, Tiergarten-Süd +http://lobid.org/organisations/DE-862#! DE-862 862 Hochschule für angewandte Wissenschaften Würzburg-Schweinfurt, Abteilungsbibliothek Schweinfurt +http://lobid.org/organisations/DE-Ds114-2#! DE-Ds114-2 Ds 114/2 Bibliothek der Hochschule Darmstadt, Teilbibliothek Gestaltung +http://lobid.org/organisations/DE-146#! DE-146 146 Wessenberg-Bibliothek c/o Universität Konstanz, Bibliothek +http://lobid.org/organisations/DE-291-308#! DE-291-308 291/308 Universität des Saarlandes, Campusbibliothek für Informatik und Mathematik, Fachrichtung Sprachwissenschaft und Sprachtechnologie, Bibliothek Computerlinguistik, Phonetik und Sprachtechnologie +http://lobid.org/organisations/DE-38-305#! DE-38-305 38/305 Universität Köln, Department Psychologie, Bibliothek +http://lobid.org/organisations/DE-38-314#! DE-38-314 38/314 Seminar für Geographie und ihre Didaktik, Bibliothek +http://lobid.org/organisations/DE-38-321#! DE-38-321 38/321 Universität Köln, Institut für Musikpädagogik, Bibliothek +http://lobid.org/organisations/DE-945#! DE-945 945 Universitätsbibliothek Eichstätt-Ingolstadt, Wirtschaftswissenschaftliche Zweigbibliothek +http://lobid.org/organisations/DE-Frei204#! DE-Frei204 Frei 204 Deutsche Akademie für Ernährungsmedizin e.V., Archiv und Bibliothek +http://lobid.org/organisations/DE-83-265#! DE-83-265 83/265 TU Berlin, Institut für Lebensmitteltechnologie und Lebensmittelchemie, FG Lebensmittelbiotechnologie und -prozeßtechnik, Bibliothek +http://lobid.org/organisations/DE-Kn41-98#! DE-Kn41-98 Kn 41/98 Deutsche Sporthochschule Köln, Institut für Soziologie und Genderforschung, Abteilung Geschlechterforschung, Bibliothek +http://lobid.org/organisations/DE-93-211#! DE-93-211 93/211 Universität Stuttgart, Institut für Materialwissenschaft, Abteilung für Materialphysik, Bibliothek +http://lobid.org/organisations/DE-Neu4#! DE-Neu4 Neu 4 Stadtarchiv Neustrelitz, Bibliothek +http://lobid.org/organisations/DE-Ch1-S18#! DE-Ch1-S18 Ch 1/S18 Technische Universität Chemnitz, Campus-Bibliothek II C +http://lobid.org/organisations/DE-82-209#! DE-82-209 82/209 Lehrstuhl für Bildnerische Gestaltung, Bibliothek +http://lobid.org/organisations/DE-83-262#! DE-83-262 83/262 TU Berlin, Institut für Architektur, Fachgebiet Gebäudetechnik und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-1047#! DE-1047 1047 Ostbayerische Technische Hochschule Amberg-Weiden, Hochschulbibliothek, Standort Weiden +http://lobid.org/organisations/DE-1050#! DE-1050 1050 THD - Technische Hochschule Deggendorf, Hochschulbibliothek +http://lobid.org/organisations/DE-21-202#! DE-21-202 21/202 Staatlich anerkannte Schule für Logopäden an der Universität Tübingen, Bibliothek +http://lobid.org/organisations/DE-H189#! DE-H189 H 189 Denkmalschutzamt der Freien und Hansestadt Hamburg, Bibliothek +http://lobid.org/organisations/DE-Esb1#! DE-Esb1 Esb 1 Museum / Stadtarchiv Eschborn, Bibliothek +http://lobid.org/organisations/DE-82-328#! DE-82-328 82/328 Lehr- und Forschungsgebiet und Abteilung Hochtemperatur-Gasdynamik, Bibliothek +http://lobid.org/organisations/DE-Po80#! DE-Po80 Po 80 Max-Planck-Institut für Molekulare Pflanzenphysiologie, Bibliothek +http://lobid.org/organisations/DE-Trs1#! DE-Trs1 Trs 1 Staatliche Hochschule für Musik Trossingen, Hochschulbibliothek +http://lobid.org/organisations/DE-Tue127#! DE-Tue127 Tü 127 Hölderlin-Gesellschaft, Bibliothek +http://lobid.org/organisations/DE-H250#! DE-H250 H 250 Forschungsstelle für Zeitgeschichte in Hamburg, Bibliothek +http://lobid.org/organisations/DE-Bm53#! DE-Bm53 Bm 53 Stadtarchiv Bochum / Bochumer Zentrum für Stadtgeschichte, Bibliothek +http://lobid.org/organisations/DE-34-31#! DE-34-31 34/31 Universitätsbibliothek Kassel, Standort Brüder-Grimm-Platz, Bestand Landesamt für Kulturgeschichte der Technik +http://lobid.org/organisations/DE-14-66#! DE-14-66 14/66 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, TUD +http://lobid.org/organisations/DE-38-005#! DE-38-005 38/005 Universität Köln, Universitätsarchiv +http://lobid.org/organisations/DE-294-70#! DE-294-70 294/70 IPA, Institut für Prävention und Arbeitsmedizin der Deutschen Gesetzlichen Unfallversicherung, Institut der Ruhr-Universität Bochum, Bibliothek +http://lobid.org/organisations/DE-1b#! DE-1b 1b Staatsbibliothek zu Berlin, bpk-Bildagentur +http://lobid.org/organisations/DE-4-594#! DE-4-594 4/594 Studentenwerk Marburg, Akademische Lesehalle +http://lobid.org/organisations/DE-21-113#! DE-21-113 21/113 Pathologisches Institut, Arbeitsgruppe Elektronenmikroskopie, Bibliothek +http://lobid.org/organisations/DE-36a#! DE-36a 36a Gutenberg-Museum Mainz, Bibliothek +http://lobid.org/organisations/DE-42#! DE-42 42 Stadtbibliothek Neustrelitz +http://lobid.org/organisations/DE-53#! DE-53 53 Stadtbibliothek Altenburg +http://lobid.org/organisations/DE-78#! DE-78 78 Stadtbibliothek Rudolstadt +http://lobid.org/organisations/DE-116#! DE-116 116 Stadtbibliothek Hildesheim +http://lobid.org/organisations/DE-134#! DE-134 134 Stadtbibliothek Bremerhaven +http://lobid.org/organisations/DE-153#! DE-153 153 Stadtbibliothek Osnabrück +http://lobid.org/organisations/DE-160#! DE-160 160 Stadtbücherei Velbert +http://lobid.org/organisations/DE-166#! DE-166 166 Stadtbibliothek Diez +http://lobid.org/organisations/DE-171#! DE-171 171 Stadtbücherei im Centrum +http://lobid.org/organisations/DE-189#! DE-189 189 Kreisvolkshochschule Harz GmbH, Kreisbibliothek Harz +http://lobid.org/organisations/DE-218#! DE-218 218 Stadtbücherei Ratzeburg +http://lobid.org/organisations/DE-227#! DE-227 227 Kreis- und Stadtbücherei Gummersbach +http://lobid.org/organisations/DE-230#! DE-230 230 Stadtbibliothek Herford +http://lobid.org/organisations/DE-237#! DE-237 237 Stadtbibliothek Itzehoe +http://lobid.org/organisations/DE-239#! DE-239 239 Thomas-Valentin-Stadtbücherei +http://lobid.org/organisations/DE-259#! DE-259 259 Bibliothek Moers +http://lobid.org/organisations/DE-261#! DE-261 261 Stadtbibliothek Arnsberg +http://lobid.org/organisations/DE-266#! DE-266 266 Stadtbücherei Peine +http://lobid.org/organisations/DE-297#! DE-297 297 Medienzentrum Hersfeld-Rotenburg, Bibliothek +http://lobid.org/organisations/DE-371#! DE-371 371 Stadtbibliothek Gütersloh GmbH +http://lobid.org/organisations/DE-378#! DE-378 378 die insel - Stadtbibliothek +http://lobid.org/organisations/DE-389#! DE-389 389 Stadtbibliothek Schleiden e.V. +http://lobid.org/organisations/DE-393#! DE-393 393 Stadtbücherei Jülich +http://lobid.org/organisations/DE-407#! DE-407 407 Stadtbibliothek Langenfeld +http://lobid.org/organisations/DE-414#! DE-414 414 Stadtbücherei Emmerich am Rhein +http://lobid.org/organisations/DE-416#! DE-416 416 Stadtbücherei Haan +http://lobid.org/organisations/DE-420#! DE-420 420 Stadtbücherei Lengerich +http://lobid.org/organisations/DE-424#! DE-424 424 Stadtbücherei Werl +http://lobid.org/organisations/DE-431#! DE-431 431 Stadtbücherei Ennepetal +http://lobid.org/organisations/DE-433#! DE-433 433 Stadtbücherei Haltern am See +http://lobid.org/organisations/DE-439#! DE-439 439 Stadtbücherei Plettenberg +http://lobid.org/organisations/DE-444#! DE-444 444 Stadtbücherei Kleve +http://lobid.org/organisations/DE-452#! DE-452 452 Landesarchiv Schleswig-Holstein, Bibliothek +http://lobid.org/organisations/DE-476#! DE-476 476 Landeshauptstadt Kiel, Stadtarchiv +http://lobid.org/organisations/DE-479#! DE-479 479 Saarland Landesarchiv +http://lobid.org/organisations/DE-489#! DE-489 489 Kommunalarchiv Minden - Archiv der Stadt Minden und des Kreises Minden-Lübbecke, Bibliothek +http://lobid.org/organisations/DE-491#! DE-491 491 Stadtbibliothek Osterode +http://lobid.org/organisations/DE-496#! DE-496 496 Stadtbücherei Brunsbüttel +http://lobid.org/organisations/DE-505#! DE-505 505 Stadtbibliothek Jüterbog +http://lobid.org/organisations/DE-533#! DE-533 533 Stadtbibliothek Ludwigsfelde +http://lobid.org/organisations/DE-543#! DE-543 543 Stadtbibliothek Auerbach +http://lobid.org/organisations/DE-549#! DE-549 549 Hochschule der Sächsischen Polizei (FH), Bibliothek +http://lobid.org/organisations/DE-555#! DE-555 555 Kreismedienzentrum Nordwestmecklenburg +http://lobid.org/organisations/DE-561#! DE-561 561 Stadtbibliothek Neuhaus am Rennweg +http://lobid.org/organisations/DE-571#! DE-571 571 Hochschule der Polizei des Landes Brandenburg, Hochschulbibliothek +http://lobid.org/organisations/DE-713#! DE-713 713 Stadtbücherei Würselen +http://lobid.org/organisations/DE-718#! DE-718 718 Stadtbücherei Burgdorf +http://lobid.org/organisations/DE-721#! DE-721 721 Stadtbibliothek Garbsen +http://lobid.org/organisations/DE-726#! DE-726 726 Medienzentrum, Stadtbücherei und Bildstelle +http://lobid.org/organisations/DE-737#! DE-737 737 Stadtbibliothek Duderstadt +http://lobid.org/organisations/DE-740#! DE-740 740 Stadtbibliothek, Katholische Öffentliche Bibliothek +http://lobid.org/organisations/DE-746#! DE-746 746 Stadtbücherei Eschweiler +http://lobid.org/organisations/DE-748#! DE-748 748 Stadtbibliothek Villingen-Schwenningen +http://lobid.org/organisations/DE-758#! DE-758 758 Katechetisches Institut, Fachstelle für Büchereiarbeit +http://lobid.org/organisations/DE-761#! DE-761 761 Stadtbücherei Bad Oeynhausen +http://lobid.org/organisations/DE-769#! DE-769 769 Stadtbibliothek Detmold +http://lobid.org/organisations/DE-776#! DE-776 776 Stadtbücherei St. Pankratius +http://lobid.org/organisations/DE-782#! DE-782 782 Mediathek Kamp-Lintfort +http://lobid.org/organisations/DE-813#! DE-813 813 Stadtbücherei Werdohl +http://lobid.org/organisations/DE-822#! DE-822 822 Stadtbibliothek Bensheim +http://lobid.org/organisations/DE-828#! DE-828 828 Öffentliche Bücherei St. Johannes der Täufer +http://lobid.org/organisations/DE-837#! DE-837 837 Stadtbibliothek Landau/Pfalz +http://lobid.org/organisations/DE-845#! DE-845 845 Stadtbibliothek Erlenbach +http://lobid.org/organisations/DE-855#! DE-855 855 Stadt- und Schulbücherei Gunzenhausen +http://lobid.org/organisations/DE-865#! DE-865 865 Kreisbücherei Landkreis Pfaffenhofen +http://lobid.org/organisations/DE-881#! DE-881 881 Stadtbibliothek Merzig +http://lobid.org/organisations/DE-897#! DE-897 897 Jade Hochschule Wilhelmshaven/Oldenburg/Elsfleth, Campus Oldenburg, Bibliothek +http://lobid.org/organisations/DE-903#! DE-903 903 Stadtbücherei Hann. Münden +http://lobid.org/organisations/DE-904#! DE-904 904 Medienhaus am See +http://lobid.org/organisations/DE-912#! DE-912 912 Stadtbücherei Dachau +http://lobid.org/organisations/DE-913#! DE-913 913 Stadtbibliothek Röthenbach +http://lobid.org/organisations/DE-914#! DE-914 914 Stadtbücherei Petershagen +http://lobid.org/organisations/DE-915#! DE-915 915 Stadtbücherei Herdecke +http://lobid.org/organisations/DE-925#! DE-925 925 Stadtbücherei Rüsselsheim +http://lobid.org/organisations/DE-928#! DE-928 928 Stadtbücherei Bad Berleburg +http://lobid.org/organisations/DE-965#! DE-965 965 Stadtbücherei KÖB Meppen +http://lobid.org/organisations/DE-971#! DE-971 971 Stadtbücherei im Kornhaus +http://lobid.org/organisations/DE-990#! DE-990 990 Stadtbibliothek Weißenburg in der 'Alten Post' +http://lobid.org/organisations/DE-995#! DE-995 995 Stadtbücherei Nordenham +http://lobid.org/organisations/DE-996#! DE-996 996 Hochschule für Musik, Theater und Medien Hannover, Bibliothek +http://lobid.org/organisations/DE-1000#! DE-1000 1000 Städtische Mediothek +http://lobid.org/organisations/DE-1001#! DE-1001 1001 Gemeindebücherei Obersulm +http://lobid.org/organisations/DE-1002#! DE-1002 1002 Stadtbücherei Öhringen +http://lobid.org/organisations/DE-1006#! DE-1006 1006 Stadtbibliothek Achim +http://lobid.org/organisations/DE-1009#! DE-1009 1009 Gemeindebücherei Rastede +http://lobid.org/organisations/DE-1012#! DE-1012 1012 Stadtbücherei Bad Driburg +http://lobid.org/organisations/DE-1016#! DE-1016 1016 Stadtbücherei Munster +http://lobid.org/organisations/DE-1023#! DE-1023 1023 Büchereizentrale Niedersachsen +http://lobid.org/organisations/DE-1030#! DE-1030 1030 Stadtbücherei im Marstall +http://lobid.org/organisations/DE-1033#! DE-1033 1033 Hochschule für Technik Stuttgart, Bibliothek +http://lobid.org/organisations/DE-1036#! DE-1036 1036 Gemeindebibliothek Holzwickede +http://lobid.org/organisations/DE-1041#! DE-1041 1041 Fachhochschule Westküste, Hochschule für Wirtschaft und Technik, Hochschulbibliothek +http://lobid.org/organisations/DE-1048#! DE-1048 1048 Stadtbücherei Bad Fallingbostel +http://lobid.org/organisations/DE-1054#! DE-1054 1054 Stadtbücherei Alsfeld +http://lobid.org/organisations/DE-1063#! DE-1063 1063 Stadtbücherei Langen/Hessen +http://lobid.org/organisations/DE-1066#! DE-1066 1066 Weitzelbücherei Schlüchtern +http://lobid.org/organisations/DE-1096#! DE-1096 1096 Stadtbibliothek Lohmar +http://lobid.org/organisations/DE-1099#! DE-1099 1099 Stadtbibliothek Bruchköbel +http://lobid.org/organisations/DE-1100#! DE-1100 1100 Kreis- und Stadtbibliothek +http://lobid.org/organisations/DE-1101#! DE-1101 1101 Stadtbücherei Tettnang +http://lobid.org/organisations/DE-1102#! DE-1102 1102 Hochschulbibliothek Ansbach +http://lobid.org/organisations/DE-1104#! DE-1104 1104 Stadtbibliothek Radolfzell +http://lobid.org/organisations/DE-A5#! DE-A5 A 5 Suermondt-Ludwig-Museum, Bibliothek +http://lobid.org/organisations/DE-Arb1#! DE-Arb1 Arb 1 Städtisches Gymnasium Laurentianum Arnsberg, Historische Bibliothek +http://lobid.org/organisations/DE-Au1#! DE-Au1 Au 1 Niedersächsisches Landesarchiv, Standort Aurich, Dienstbibliothek +http://lobid.org/organisations/DE-Au3#! DE-Au3 Au 3 Landschaftsbibliothek Aurich +http://lobid.org/organisations/DE-B741#! DE-B741 B 741 Amtsgericht Charlottenburg, Bibliothek +http://lobid.org/organisations/DE-B747#! DE-B747 B 747 Bibliothek des Amtsgerichtes Tiergarten +http://lobid.org/organisations/DE-B1555#! DE-B1555 B 1555 Senatsverwaltung für Finanzen, Bücherei +http://lobid.org/organisations/DE-Ba4#! DE-Ba4 Ba 4 Hochschul- und Landeskirchenbibliothek Wuppertal +http://lobid.org/organisations/DE-Be1#! DE-Be1 Be 1 Konfessionskundliches Institut des Evangelischen Bundes, Bibliothek +http://lobid.org/organisations/DE-Ber7#! DE-Ber7 Ber 7 Stadtbibliothek Bernau bei Berlin +http://lobid.org/organisations/DE-Bn3#! DE-Bn3 Bn 3 Berufsakademie Sachsen, Staatliche Studienakademie Bautzen, Bibliothek +http://lobid.org/organisations/DE-Bo1#! DE-Bo1 Bo 1 LVR-LandesMuseum Bonn, Bibliothek +http://lobid.org/organisations/DE-Bo151#! DE-Bo151 Bo 151 Bundesrat, Bibliothek +http://lobid.org/organisations/DE-Bo155#! DE-Bo155 Bo 155 Bundesministerium der Finanzen, Bibliothek +http://lobid.org/organisations/DE-Bo400#! DE-Bo400 Bo 400 Domingo Faustino Sarmiento Instituto Argentino de Cultura +http://lobid.org/organisations/DE-Bo401#! DE-Bo401 Bo 401 Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit, Medien- und Informationszentrum / Bibliothek +http://lobid.org/organisations/DE-Bw1#! DE-Bw1 Bw 1 Stadtbibliothek Bischofswerda +http://lobid.org/organisations/DE-Ce5#! DE-Ce5 Ce 5 Kirchen-Ministerial-Bibliothek +http://lobid.org/organisations/DE-Ce6#! DE-Ce6 Ce 6 Bomann-Museum Celle, Bibliothek +http://lobid.org/organisations/DE-Ch5#! DE-Ch5 Ch 5 Sächsisches Textilforschungsinstitut e.V., Bibliothek +http://lobid.org/organisations/DE-D114#! DE-D114 D 114 Städtische Bibliotheken Dresden, Musikbibliothek +http://lobid.org/organisations/DE-D210#! DE-D210 D 210 Max-Planck-Institut für Chemische Physik fester Stoffe, Bibliothek +http://lobid.org/organisations/DE-D216#! DE-D216 D 216 Institut Luft- und Kältetechnik gGmbH, Bibliothek +http://lobid.org/organisations/DE-De15#! DE-De15 De 15 Stiftung Bauhaus Dessau, Bibliothek +http://lobid.org/organisations/DE-Del5#! DE-Del5 Del 5 Stadtbibliothek Delitzsch ""Alte Lateinschule"" +http://lobid.org/organisations/DE-Dm15#! DE-Dm15 Dm 15 Stiftung Westfälisches Wirtschaftsarchiv, Bibliothek +http://lobid.org/organisations/DE-Due58#! DE-Due58 Dü 58 Städtisches Görres-Gymnasium, Lehrerbibliothek +http://lobid.org/organisations/DE-Due61#! DE-Due61 Dü 61 Verwaltungsgericht Düsseldorf, Bibliothek +http://lobid.org/organisations/DE-Due68#! DE-Due68 Dü 68 Forschungsinstitut der Zementindustrie GmbH, Information/Literaturstelle +http://lobid.org/organisations/DE-Due69#! DE-Due69 Dü 69 Bibliothek des Ministeriums für Innovation, Wissenschaft und Forschung NRW und des Ministeriums für Schule und Weiterbildung NRW +http://lobid.org/organisations/DE-Due73#! DE-Due73 Dü 73 Filmmuseum Düsseldorf, Bibliothek +http://lobid.org/organisations/DE-83-1050#! DE-83-1050 83/1050 TU Berlin, Institut für Telekommunikationssysteme, Fachgebiet Nachrichtenübertragung, Bibliothek +http://lobid.org/organisations/DE-83-1068#! DE-83-1068 83/1068 TU Berlin, Institut für Energietechnik, Fachgebiete Energieverfahrenstechnik und Umwandlungstechniken regenerativer Energien (EvUR), Reaktionstechnik, Bibliothek +http://lobid.org/organisations/DE-83-1081#! DE-83-1081 83/1081 TU Berlin, Mathematische Fachbibliothek +http://lobid.org/organisations/DE-83-1085#! DE-83-1085 83/1085 TU Berlin, Institut für Festkörperphysik, Bibliothek +http://lobid.org/organisations/DE-83-1131#! DE-83-1131 83/1131 TU Berlin, Institut für Maschinenkonstruktion und Systemtechnik, Fachgebiet Medizintechnik, Bibliothek +http://lobid.org/organisations/DE-83-1240#! DE-83-1240 83/1240 TU Berlin, Institut für Architektur, Fachgebiet Entwerfen und Baukonstruktion, Bibliothek +http://lobid.org/organisations/DE-83-1247#! DE-83-1247 83/1247 TU Berlin, Zentraleinrichtung Moderne Sprachen (ZEMS), Bibliothek +http://lobid.org/organisations/DE-83-1249#! DE-83-1249 83/1249 TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Integrierte Verkehrsplanung, Bibliothek +http://lobid.org/organisations/DE-83-1260#! DE-83-1260 83/1260 TU Berlin, Zentrum für Antisemitismusforschung, Bibliothek +http://lobid.org/organisations/DE-188-827#! DE-188-827 188/827 Freie Universität Berlin, Bereichsbibliothek Biologie/Standort BGBM, FB Biologie, Chemie, Pharmazie +http://lobid.org/organisations/DE-B711#! DE-B711 B 711 Bezirkszentralbibliothek Spandau +http://lobid.org/organisations/DE-B452#! DE-B452 B 452 Institut Français de Berlin, Bibliothèque +http://lobid.org/organisations/DE-H11#! DE-H11 H 11 Bernhard-Nocht-Institut für Tropenmedizin, Bibliothek +http://lobid.org/organisations/DE-68#! DE-68 68 Schleswig-Holsteinische Landesbibliothek +http://lobid.org/organisations/DE-8#! DE-8 8 Universitätsbibliothek Kiel, Zentralbibliothek +http://lobid.org/organisations/DE-35#! DE-35 35 Gottfried Wilhelm Leibniz Bibliothek - Niedersächsische Landesbibliothek +http://lobid.org/organisations/DE-354#! DE-354 354 Medizinische Hochschule Hannover, Bibliothek +http://lobid.org/organisations/DE-56#! DE-56 56 Stadtbibliothek Braunschweig +http://lobid.org/organisations/DE-Bs87#! DE-Bs87 Bs 87 Landeskirchliche Bibliothek, Bibliothek für Religionspädagogik +http://lobid.org/organisations/DE-7-002#! DE-7-002 7/002 Institut für Astrophysik, Bibliothek +http://lobid.org/organisations/DE-7-041#! DE-7-041 7/041 Institut für Völkerrecht und Europarecht, Bibliothek +http://lobid.org/organisations/DE-7-042#! DE-7-042 7/042 Vereinigte Theologische Seminare, Bibliothek +http://lobid.org/organisations/DE-7-066#! DE-7-066 7/066 Institut für Ethnologie der Universität Göttingen, Bibliothek +http://lobid.org/organisations/DE-7-133#! DE-7-133 7/133 Zentrum für Sportwissenschaften, Institut für Sportwissenschaften, Bibliothek +http://lobid.org/organisations/DE-7-137#! DE-7-137 7/137 3. Physikalisches Institut, Schwingungsphysik, Bibliothek +http://lobid.org/organisations/DE-4-100#! DE-4-100 4/100 Universität Marburg, Fachbereichsbibliothek Mathematik und Informatik +http://lobid.org/organisations/DE-4-123#! DE-4-123 4/123 Universität Marburg, Bibliothek Chemie, Physikalische Chemie , Kernchemie und Molekulare Chemie +http://lobid.org/organisations/DE-4-130#! DE-4-130 4/130 Bibliothek Chemie +http://lobid.org/organisations/DE-4-143#! DE-4-143 4/143 Bibliothek Pharmazie, Geschichte der Pharmazie +http://lobid.org/organisations/DE-4-160#! DE-4-160 4/160 Fachbereichsbibliothek Geowissenschaften +http://lobid.org/organisations/DE-4-210#! DE-4-210 4/210 Medizinisches Zentrum für Zahn-, Mund- und Kieferheilkunde, Bibliothek +http://lobid.org/organisations/DE-4-339#! DE-4-339 4/339 Forschungsstelle zum Vergleich wirtschaftlicher Lenkungssysteme, Bibliothek +http://lobid.org/organisations/DE-4-361#! DE-4-361 4/361 Universität Marburg, Bibliothek Soziologie +http://lobid.org/organisations/DE-4-362#! DE-4-362 4/362 Fachbereich Gesellschaftswissenschaften und Philosophie, Institut für Politikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-4-424#! DE-4-424 4/424 Forschungszentrum Deutscher Sprachatlas, Bibliothek +http://lobid.org/organisations/DE-4-500#! DE-4-500 4/500 Universität Marburg, Bibliothek Kunst- und Kulturwissenschaften, Museum für Kunst und Kulturgeschichte, Bibliothek +http://lobid.org/organisations/DE-Witz1#! DE-Witz1 Witz 1 Deutsches Institut für tropische und subtropische Landwirtschaft GmbH, Bibliothek +http://lobid.org/organisations/DE-34-70#! DE-34-70 34/70 Universitätsbibliothek Kassel, Standort Kunsthochschulbibliothek +http://lobid.org/organisations/DE-34-90#! DE-34-90 34/90 Universitätsbibliothek Kassel, Standort Oberzwehren +http://lobid.org/organisations/DE-Due59#! DE-Due59 Dü 59 Stiftung Gerhart-Hauptmann-Haus, Deutsch-osteuropäisches Forum, Bibliothek +http://lobid.org/organisations/DE-72#! DE-72 72 Mediothek Krefeld +http://lobid.org/organisations/DE-465#! DE-465 465 Universitätsbibliothek Duisburg-Essen +http://lobid.org/organisations/DE-270#! DE-270 270 Stadtbibliothek Recklinghausen +http://lobid.org/organisations/DE-368#! DE-368 368 Stadtbibliothek Hattingen +http://lobid.org/organisations/DE-6-058#! DE-6-058 6/058 Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft +http://lobid.org/organisations/DE-447#! DE-447 447 Stadtbücherei Münster +http://lobid.org/organisations/DE-Mue27#! DE-Mue27 Mü 27 LWL Museum für Kunst und Kultur, Westfälisches Landesmuseum, Bibliothek +http://lobid.org/organisations/DE-294-14#! DE-294-14 294/14 Ruhr-Universität Bochum, Medizinische Fakultät, Bibliothek +http://lobid.org/organisations/DE-294-17#! DE-294-17 294/17 Ruhr-Universität Bochum, Fakultät für Sozialwissenschaft, Bibliothek +http://lobid.org/organisations/DE-294-20#! DE-294-20 294/20 Ruhr-Universität Bochum, Fakultät für Philologie, Englisches Seminar, Bibliothek +http://lobid.org/organisations/DE-294-22#! DE-294-22 294/22 Ruhr-Universität Bochum, Verbundbibliothek IB Fachbibliothek für Geographie, Geologie, Mathematik, Psychologie +http://lobid.org/organisations/DE-294-34#! DE-294-34 294/34 Ruhr-Universität Bochum, Fakultät für Philologie, Seminar für klassische Philologie, Bibliothek +http://lobid.org/organisations/DE-174#! DE-174 174 Stadtbibliothek Gelsenkirchen +http://lobid.org/organisations/DE-231#! DE-231 231 Stadtbibliothek Herne +http://lobid.org/organisations/DE-466#! DE-466 466 Universitätsbibliothek Paderborn +http://lobid.org/organisations/DE-Pa4#! DE-Pa4 Pa 4 Johann-Adam-Möhler-Institut für Ökumenik, Bibliothek +http://lobid.org/organisations/DE-361#! DE-361 361 Universitätsbibliothek Bielefeld +http://lobid.org/organisations/DE-Bet1#! DE-Bet1 Bet 1 Bibliothek der Kirchlichen Hochschule Wuppertal/Bethel, Arbeitsbereich Bethel +http://lobid.org/organisations/DE-131#! DE-131 131 Stadtbibliothek am Neumarkt +http://lobid.org/organisations/DE-38M#! DE-38M 38 M ZB MED - Informationszentrum Lebenswissenschaften, Köln +http://lobid.org/organisations/DE-38-119#! DE-38-119 38/119 Energiewirtschaftliches Institut an der Universtät zu Köln, Bibliothek +http://lobid.org/organisations/DE-38-123#! DE-38-123 38/123 FBV Fachbibliothek Versicherungswissenschaft am Seminar für Allgemeine Betriebswirtschaftslehre, Risikomanagement und Versicherungslehre ; Institut für Versicherungswissenschaft, Abt. Versicherungswirtschaft, Abt. Versicherungsmathematik +http://lobid.org/organisations/DE-38-134#! DE-38-134 38/134 Institut für Berufs-, Wirtschafts- und Sozialpädagogik, Bibliothek +http://lobid.org/organisations/DE-587#! DE-587 587 GESIS - Leibniz-Institut für Sozialwissenschaften, Bibliothek Köln +http://lobid.org/organisations/DE-38-201#! DE-38-201 38/201 Fachbibliothek Rechtswissenschaft, Rechtswissenschaftliches Seminar +http://lobid.org/organisations/DE-38-203#! DE-38-203 38/203 Forschungsinstitut für Deutsches und Europäisches Sozialrecht, Bibliothek +http://lobid.org/organisations/DE-38-204#! DE-38-204 38/204 Institut für Arbeits- und Wirtschaftsrecht, Bibliothek +http://lobid.org/organisations/DE-38-210#! DE-38-210 38/210 Universität Köln, Institut für Steuerrecht, Bibliothek +http://lobid.org/organisations/DE-38-228#! DE-38-228 38/228 Lehrstuhl für Staats- und Verwaltungsrecht, Bibliothek +http://lobid.org/organisations/DE-38-403#! DE-38-403 38/403 Pädagogische Bibliothek +http://lobid.org/organisations/DE-38-407#! DE-38-407 38/407 Institut für Skandinavistik / Fennistik, Abteilung Skandinavistik, Bibliothek +http://lobid.org/organisations/DE-38-410#! DE-38-410 38/410 Institut für Linguistik, Abt. Phonetik, Bibliothek +http://lobid.org/organisations/DE-38-415#! DE-38-415 38/415 Martin-Buber-Institut für Judaistik, Bibliothek +http://lobid.org/organisations/DE-38-420#! DE-38-420 38/420 Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek +http://lobid.org/organisations/DE-38-423#! DE-38-423 38/423 Historisches Institut, Abteilung für Iberische und Lateinamerikanische Geschichte, Bibliothek +http://lobid.org/organisations/DE-38-426#! DE-38-426 38/426 Gemeinsame Fachbibliothek Archäologien, Institut für Ur- und Frühgeschichte +http://lobid.org/organisations/DE-38-427#! DE-38-427 38/427 Gemeinsame Fachbibliothek Archäologien - Archäologisches Institut, Abt. Klassische Archäologie und Abt. Archäologie der Römischen Provinzen +http://lobid.org/organisations/DE-38-434#! DE-38-434 38/434 Petrarca-Institut der Universität zu Köln, Bibliothek +http://lobid.org/organisations/DE-Kn41-11#! DE-Kn41-11 Kn 41/11 Deutsche Sporthochschule Köln, Institut für Bewegungs- und Neurowissenschaft, Abteilung 2 Bewegungstechnik und Bewegungslernen / Leichtathletik und Turnen, Bibliothek +http://lobid.org/organisations/DE-832#! DE-832 832 Technische Hochschule Köln, Hochschulbibliothek +http://lobid.org/organisations/DE-Kn28#! DE-Kn28 Kn 28 Erzbischöfliche Diözesan- und Dombibliothek +http://lobid.org/organisations/DE-82-103#! DE-82-103 82/103 Fachbibliothek Informatik +http://lobid.org/organisations/DE-82-110#! DE-82-110 82/110 Physik-Bibliothek +http://lobid.org/organisations/DE-82-204#! DE-82-204 82/204 Lehrstuhl für Gebäudelehre und Grundlagen des Entwerfens und Lehrgebiet Bauplanung und Entwerfen, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-82-213#! DE-82-213 82/213 Institut für Bauforschung, Bibliothek +http://lobid.org/organisations/DE-82-215#! DE-82-215 82/215 Institut für Baumaschinen und Baubetrieb, Bibliothek +http://lobid.org/organisations/DE-82-218#! DE-82-218 82/218 Lehrstuhl für Schienenbahnwesen und Verkehrswirtschaft und Verkehrswissenschaftliches Institut, Bibliothek +http://lobid.org/organisations/DE-82-219#! DE-82-219 82/219 Institut für Stadtbauwesen und Stadtverkehr, Bibliothek +http://lobid.org/organisations/DE-82-220#! DE-82-220 82/220 Institut für Straßenwesen, Bibliothek +http://lobid.org/organisations/DE-82-221#! DE-82-221 82/221 Lehrstuhl für Geotechnik im Bauwesen und Institut für Grundbau, Bodenmechanik, Felsmechanik und Verkehrswasserbau, Bibliothek +http://lobid.org/organisations/DE-82-303#! DE-82-303 82/303 Lehrstuhl für Technische Thermodynamik und Institut für Thermodynamik, Bibliothek +http://lobid.org/organisations/DE-82-312#! DE-82-312 82/312 Laboratorium für Werkzeugmaschinen und Betriebslehre -WZL- , Lehrstuhl für Produktionssystematik, Lehrstuhl für Technologie der Fertigungsverfahren, Lehrstuhl für Werkzeugmaschinen, Lehrstuhl für Fertigungsmeßtechnik und Qualitätsmanagement, Bibliothek +http://lobid.org/organisations/DE-82-321#! DE-82-321 82/321 Lehrstuhl für Textilmaschinenbau und Institut für Textiltechnik, Bibliothek +http://lobid.org/organisations/DE-82-401#! DE-82-401 82/401 Institute of Mineral Resources Engineering, Bibliothek +http://lobid.org/organisations/DE-82-406#! DE-82-406 82/406 Lehrstuhl für Markscheidewesen und Institut für Markscheidewesen Bergschadenkunde und Geophysik im Bergbau, Bibliothek +http://lobid.org/organisations/DE-82-410#! DE-82-410 82/410 Lehrstuhl und Institut für Kristallographie, Bibliothek +http://lobid.org/organisations/DE-82-502#! DE-82-502 82/502 Lehrstuhl für Allgemeine Elektrotechnik und Datenverarbeitungssysteme, Bibliothek +http://lobid.org/organisations/DE-82-507#! DE-82-507 82/507 Lehrstuhl und Institut für Stromrichtertechnik und elektrische Antriebe, Bibliothek +http://lobid.org/organisations/DE-82-602#! DE-82-602 82/602 Lehrstuhl und Institut für Psychologie, Bibliothek +http://lobid.org/organisations/DE-82-615#! DE-82-615 82/615 Fakultätsbibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-82-625#! DE-82-625 82/625 Lehr- und Forschungsgebiet Wirtschafts- und Sozialgeschichte, Bibliothek +http://lobid.org/organisations/DE-82-703#! DE-82-703 82/703 Rheinisch-Westfälische TH, Institut für Biochemie, Bibliothek +http://lobid.org/organisations/DE-82-709#! DE-82-709 82/709 Institut für Hygiene und Umweltmedizin, Bibliothek +http://lobid.org/organisations/DE-82-713#! DE-82-713 82/713 Verwaltung des Universitätsklinikums, Bibliothek +http://lobid.org/organisations/DE-82-724#! DE-82-724 82/724 Neurochirurgie, Bibliothek +http://lobid.org/organisations/DE-82-731#! DE-82-731 82/731 Gynäkologie und Geburtshilfe, Bibliothek +http://lobid.org/organisations/DE-82-733#! DE-82-733 82/733 Neuropathologie, Bibliothek +http://lobid.org/organisations/DE-82-745#! DE-82-745 82/745 Lehranstalt für Logopädie, Bibliothek +http://lobid.org/organisations/DE-82-748#! DE-82-748 82/748 Schule für Gesundheits-, Kinderkrankenpflege und Krankenpflege, Bibliothek +http://lobid.org/organisations/DE-82-752#! DE-82-752 82/752 Betriebskindertagesstätte, Bibliothek +http://lobid.org/organisations/DE-82-763#! DE-82-763 82/763 Zentralbereich für Krankenhaushygiene und Infektiologie +http://lobid.org/organisations/DE-709#! DE-709 709 Stadtbibliothek Hennef +http://lobid.org/organisations/DE-5#! DE-5 5 Universitäts- und Landesbibliothek Bonn +http://lobid.org/organisations/DE-5-3#! DE-5-3 5/3 Universität Bonn, Nees-Institut für Biodiversität der Pflanzen; Institut für Zelluläre und Molekulare Botanik; Institut für Molekulare Physiologie und Biotechnologie der Pflanzen, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-5-4#! DE-5-4 5/4 Universität Bonn, Institut für Anglistik, Amerikanistik und Keltologie, Bibliothek +http://lobid.org/organisations/DE-5-8#! DE-5-8 5/8 Universität Bonn, Institut für Archäologie und Kulturanthropologie / Abt. Klassische Archäologie, Bibliothek +http://lobid.org/organisations/DE-5-13#! DE-5-13 5/13 Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek +http://lobid.org/organisations/DE-5-14#! DE-5-14 5/14 Universität Bonn, Fachbibliothek Mathematik +http://lobid.org/organisations/DE-5-20#! DE-5-20 5/20 Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek +http://lobid.org/organisations/DE-5-21#! DE-5-21 5/21 Universität Bonn, Institut für Klassische und Romanische Philologie, Abteilung für Griechische und Lateinische Philologie, Bibliothek +http://lobid.org/organisations/DE-5-35#! DE-5-35 5/35 Universität Bonn, Institut für Handels- und Wirtschaftsrecht, Bibliothek +http://lobid.org/organisations/DE-5-60#! DE-5-60 5/60 Universität Bonn, Institut für Archäologie und Kulturanthropologie / Abt. Ägyptologie, Bibliothek +http://lobid.org/organisations/DE-5-90#! DE-5-90 5/90 Universität Bonn, Institut für Philosophie, Bibliothek +http://lobid.org/organisations/DE-5-99#! DE-5-99 5/99 Universität Bonn, Institut für Archäologie und Kulturanthropologie / Abt. Vor- und Frühgeschichtliche Archäologie, Bibliothek +http://lobid.org/organisations/DE-5-162#! DE-5-162 5/162 Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek +http://lobid.org/organisations/DE-5-184#! DE-5-184 5/184 Universität Bonn, Institut für Römisches Recht und Vergleichende Rechtsgeschichte, Bibliothek +http://lobid.org/organisations/DE-5-186#! DE-5-186 5/186 Universität Bonn, Institut für Steuerrecht, Bibliothek +http://lobid.org/organisations/DE-5-198#! DE-5-198 5/198 Universität Bonn, Institut für Archäologie und Kulturanthropologie / Abt. Kulturanthropologie, Volkskunde, Bibliothek +http://lobid.org/organisations/DE-B19#! DE-B19 B 19 Auswärtiges Amt, Referat 116, Bibliothek, Informationsvermittlung +http://lobid.org/organisations/DE-Bo170#! DE-Bo170 Bo 170 Bischöfliches Seminar und Konvikt Johanneum, Bibliothek +http://lobid.org/organisations/DE-929#! DE-929 929 Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek +http://lobid.org/organisations/DE-Tr20#! DE-Tr20 Tr 20 Benediktinerabtei St. Matthias, Bibliothek +http://lobid.org/organisations/DE-121#! DE-121 121 Wissenschaftliche Bibliothek der Stadt Trier +http://lobid.org/organisations/DE-243#! DE-243 243 Öffentliche Bibliothek +http://lobid.org/organisations/DE-142#! DE-142 142 Stadtbücherei Hagen +http://lobid.org/organisations/DE-30-73#! DE-30-73 30/73 Ethnologische Bibliothek Leo Frobenius +http://lobid.org/organisations/DE-17#! DE-17 17 TU Darmstadt, Universitäts- und Landesbibliothek - Stadtmitte +http://lobid.org/organisations/DE-Ds4#! DE-Ds4 Ds 4 Merck KGaA, Hauptbibliothek +http://lobid.org/organisations/DE-Ds51#! DE-Ds51 Ds 51 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Institut für Biologischen Pflanzenschutz, Bibliothek +http://lobid.org/organisations/DE-26-020#! DE-26-020 26/020 Universität Gießen, Zweigbibliothek Recht und Wirtschaft, Erdgeschoss +http://lobid.org/organisations/DE-26-120#! DE-26-120 26/120 Universität Gießen, Fachbibliothek Mathematik und Informatik +http://lobid.org/organisations/DE-26-231#! DE-26-231 26/231 Universität Gießen, Bibliothek Anatomie und Zellbiologie +http://lobid.org/organisations/DE-67#! DE-67 67 Stadtbibliothek Bad Homburg +http://lobid.org/organisations/DE-143#! DE-143 143 Stadtbibliothek Hanau +http://lobid.org/organisations/DE-Mz3#! DE-Mz3 Mz 3 Akademie der Wissenschaften und der Literatur, Bibliothek +http://lobid.org/organisations/DE-291-301#! DE-291-301 291/301 Universität des Saarlandes, Fachrichtung Philosophie, Bibliothek +http://lobid.org/organisations/DE-291-305#! DE-291-305 291/305 Universität des Saarlandes, Fachrichtung Klassische Philologie, Bibliothek +http://lobid.org/organisations/DE-291-306#! DE-291-306 291/306 Universität des Saarlandes, Fachrichtung Germanistik, Bibliothek +http://lobid.org/organisations/DE-291-311#! DE-291-311 291/311 Universität des Saarlandes, Institut für Alte Geschichte, Bibliothek +http://lobid.org/organisations/DE-291-336#! DE-291-336 291/336 Universität des Saarlandes, Fachrichtung Orientalistik, Bibliothek +http://lobid.org/organisations/DE-291-425#! DE-291-425 291/425 Institut für Genetik der Universität des Saarlandes, Bibliothek +http://lobid.org/organisations/DE-291-439#! DE-291-439 291/439 Universität des Saarlandes, Fachrichtung Biopharmazie und Pharmazeutische Technologie, Bibliothek +http://lobid.org/organisations/DE-291-501#! DE-291-501 291/501 Universität des Saarlandes, Fachrichtung Sprachwissenschaft und Sprachtechnologie, Bibliothek Angewandte Sprachwissenschaft +http://lobid.org/organisations/DE-Sa16#! DE-Sa16 Sa 16 Hochschule für Technik und Wirtschaft des Saarlandes, Bibliothek / Bereich Goebenstraße +http://lobid.org/organisations/DE-1252#! DE-1252 1252 Hochschule der Bildenden Künste Saar, Bibliothek +http://lobid.org/organisations/DE-295#! DE-295 295 Stadtbibliothek Ludwigshafen +http://lobid.org/organisations/DE-16-19#! DE-16-19 16/19 Zentrum für Psychosoziale Medizin (ZPM) der Universität, Abt. Allgemeine Psychiatrie, Bibliothek +http://lobid.org/organisations/DE-16-26#! DE-16-26 16/26 Institut für Europäische Kunstgeschichte der Universität, Bibliothek +http://lobid.org/organisations/DE-16-34#! DE-16-34 16/34 Historisches Seminar der Universität, Bibliothek +http://lobid.org/organisations/DE-16-47#! DE-16-47 16/47 Institut für Geschichtliche Rechtswissenschaft der Universität, Bibliothek +http://lobid.org/organisations/DE-16-53#! DE-16-53 16/53 Bereichsbibliothek Altertumswissenschaften, Abteilung Alte Geschichte und Epigraphik +http://lobid.org/organisations/DE-16-62#! DE-16-62 16/62 Universität Heidelberg, Psychologisches Institut, Bibliothek +http://lobid.org/organisations/DE-16-66#! DE-16-66 16/66 Institut für Bildungswissenschaft der Universität, Bibliothek +http://lobid.org/organisations/DE-16-88#! DE-16-88 16/88 Institut für Umweltphysik der Universität, Handbibliothek +http://lobid.org/organisations/DE-16-107#! DE-16-107 16/107 Zentrales Sprachlabor der Universität, Studienbegleitende Fremdsprachenausbildung, Bibliothek +http://lobid.org/organisations/DE-16-118#! DE-16-118 16/118 Institut für deutsches und europäisches Gesellschafts- und Wirtschaftsrecht, Bibliothek +http://lobid.org/organisations/DE-16-123#! DE-16-123 16/123 Studentenbücherei +http://lobid.org/organisations/DE-Bb19#! DE-Bb19 Bb 19 Bibliothek und Archiv des Deutschen Apotheken-Museums +http://lobid.org/organisations/DE-16-155#! DE-16-155 16/155 Zentrum für Astronomie Heidelberg (ZAH), Astronomisches Rechen-Institut, Bibliothek +http://lobid.org/organisations/DE-He74#! DE-He74 He 74 Max-Planck-Institut für Kernphysik, Bibliothek +http://lobid.org/organisations/DE-He93#! DE-He93 He 93 EMBL European Molecular Biology Laboratory, Szilárd Library +http://lobid.org/organisations/DE-He204#! DE-He204 He 204 Zentralarchiv zur Erforschung der Geschichte der Juden in Deutschland, Bibliothek +http://lobid.org/organisations/DE-93-30#! DE-93-30 93/30 Universität Stuttgart, Institut für Organische Chemie, Bibliothek +http://lobid.org/organisations/DE-93-46#! DE-93-46 93/46 Universität Stuttgart, Institut für Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-93-82#! DE-93-82 93/82 Universität Stuttgart, Institut für Industrielle Fertigung und Fabrikbetrieb, Bibliothek +http://lobid.org/organisations/DE-93-83#! DE-93-83 93/83 Universität Stuttgart, Institut für Nichtlineare Mechanik, Bibliothek +http://lobid.org/organisations/DE-93-88#! DE-93-88 93/88 Universität Stuttgart, Institut für Flugzeugbau, Bibliothek +http://lobid.org/organisations/DE-93-99#! DE-93-99 93/99 Universität Stuttgart, Institut für Gebäudeenergetik, Thermotechnik und Energiespeicherung (IGTE), Bibliothek Pfaffenwaldring 6 +http://lobid.org/organisations/DE-93-107#! DE-93-107 93/107 Universität Stuttgart, Institut für Umformtechnik, Bibliothek +http://lobid.org/organisations/DE-93-123#! DE-93-123 93/123 Universität Stuttgart, Institut für Baustofflehre, Bauphysik, Gebäudetechnologie und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-127#! DE-93-127 93/127 Universität Stuttgart, Institut für Öffentliche Bauten und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-131#! DE-93-131 93/131 Universität Stuttgart, Institut für Ingenieurgeodäsie, Bibliothek +http://lobid.org/organisations/DE-93-136#! DE-93-136 93/136 Universität Stuttgart, Institut für Photogrammetrie, Bibliothek +http://lobid.org/organisations/DE-93-140#! DE-93-140 93/140 Universität Stuttgart, Institut für Theoretische Chemie, Bibliothek +http://lobid.org/organisations/DE-93-143#! DE-93-143 93/143 Universität Stuttgart, Institut für Polymerchemie, Lehrstuhl für Struktur und Eigenschaften Polymerer Materialien, Bibliothek +http://lobid.org/organisations/DE-93-145#! DE-93-145 93/145 Universität Stuttgart, Institut für Leistungselektronik und Elektrische Antriebe, Bibliothek +http://lobid.org/organisations/DE-93-148#! DE-93-148 93/148 Universität Stuttgart, Institut für Halbleitertechnik, Bibliothek +http://lobid.org/organisations/DE-93-152#! DE-93-152 93/152 Universität Stuttgart, Institut für Technische Optik, Bibliothek +http://lobid.org/organisations/DE-93-164#! DE-93-164 93/164 Universität Stuttgart, Institut für Raumfahrtsysteme, Bibliothek +http://lobid.org/organisations/DE-93-170#! DE-93-170 93/170 Universität Stuttgart, Physikalisches Institut, 4. Physikalisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-172#! DE-93-172 93/172 Universität Stuttgart, Institut für Theoretische Physik, Bibliothek +http://lobid.org/organisations/DE-93-179#! DE-93-179 93/179 Universität Stuttgart, Institut für Biomedizinische Technik, Bibliothek +http://lobid.org/organisations/DE-93-189#! DE-93-189 93/189 Universität Stuttgart, Institut für Biochemie und Technische Biochemie (IBTB), Abteilung Biochemie (IBC), Bibliothek +http://lobid.org/organisations/DE-93-200#! DE-93-200 93/200 Universität Stuttgart, Institut für Strahlwerkzeuge, Bibliothek +http://lobid.org/organisations/DE-100#! DE-100 100 Kommunikations-, Informations- und Medienzentrum der Universität Hohenheim +http://lobid.org/organisations/DE-100-560#! DE-100-560 100/560 Institut für Bildung, Arbeit und Gesellschaft der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-Stg191#! DE-Stg191 Stg 191 Fraunhofer-Institut für Arbeitswirtschaft und Organisation (IAO), Bibliothek +http://lobid.org/organisations/DE-Stg253#! DE-Stg253 Stg 253 Design-Bibliothek, Haus der Wirtschaft +http://lobid.org/organisations/DE-753#! DE-753 753 Hochschule Esslingen, Bibliothek +http://lobid.org/organisations/DE-21-14#! DE-21-14 21/14 Institut für Ur- und Frühgeschichte und Archäologie des Mittelalters, Abteilung Jüngere Urgeschichte und Frühgeschichte und Abteilung für Archäologie des Mittelalters, Bibliothek +http://lobid.org/organisations/DE-21-19#! DE-21-19 21/19 Fachbibliothek Wirtschaftswissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-22#! DE-21-22 21/22 Kunsthistorisches Institut, Bibliothek +http://lobid.org/organisations/DE-21-23#! DE-21-23 21/23 Universität Tübingen, Institut für Pathologie, Bibliothek +http://lobid.org/organisations/DE-21-32b#! DE-21-32b 21/32b Historisches Seminar, Abteilung für mittelalterliche Geschichte, Bibliothek +http://lobid.org/organisations/DE-21-45#! DE-21-45 21/45 Philologisches Seminar, Bibliothek +http://lobid.org/organisations/DE-21-46#! DE-21-46 21/46 Universität Tübingen, Philosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-21-54#! DE-21-54 21/54 Universitätsklinik für Zahn-, Mund- und Kieferheilkunde, Bibliothek +http://lobid.org/organisations/DE-21-62#! DE-21-62 21/62 Institut für osteuropäische Geschichte und Landeskunde, Bibliothek +http://lobid.org/organisations/DE-21-64#! DE-21-64 21/64 Institut für Geschichtliche Landeskunde und Historische Hilfswissenschaften, Bibliothek +http://lobid.org/organisations/DE-21-74#! DE-21-74 21/74 Zentrum für Informations-Technologie, Bibliothek +http://lobid.org/organisations/DE-21-92#! DE-21-92 21/92 Institut für Gerichtliche Medizin, Bibliothek +http://lobid.org/organisations/DE-21-99#! DE-21-99 21/99 Institut für Ur- und Frühgeschichte, Abteilung Ältere Urgeschichte und Quartärökologie, Bibliothek +http://lobid.org/organisations/DE-21-108#! DE-21-108 21/108 Brechtbau-Bibliothek +http://lobid.org/organisations/DE-938#! DE-938 938 Stadtbücherei Tübingen +http://lobid.org/organisations/DE-Tue59a#! DE-Tue59a Tü 59a Getzeny-Institut im Wilhelmsstift Tübingen, Bibliothek +http://lobid.org/organisations/DE-Tue120#! DE-Tue120 Tü 120 Deutsch-Amerikanisches Institut, Bibliothek +http://lobid.org/organisations/DE-90-2#! DE-90-2 90/2 KIT-Bibliothek, Bibliothek des Engler-Bunte-Instituts +http://lobid.org/organisations/DE-90-21#! DE-90-21 90/21 KIT-Bibliothek, Bibliothek des Laboratoriums für Applikationen der Synchrotronstrahlung (LAS) +http://lobid.org/organisations/DE-90-25#! DE-90-25 90/25 KIT-Bibliothek, Bibliothek des Instituts für Theoretische Physik +http://lobid.org/organisations/DE-90-66#! DE-90-66 90/66 KIT-Bibliothek, Fachbibliothek Architektur +http://lobid.org/organisations/3064#! 3064 Stadtbücherei +http://lobid.org/organisations/DE-STG252#! DE-STG252 Deutsche Institute für Textil- und Faserforschung. Institut für Textil- und Verfahrenstechnik. Bibliothek +http://lobid.org/organisations/DE-2839#! DE-2839 2839 Zisterzienserkloster Bochum-Stiepel, Bibliothek +http://lobid.org/organisations/DE-2840#! DE-2840 2840 Bundesinstitut für Kultur und Geschichte der Deutschen im östlichen Europa, Bibliothek +http://lobid.org/organisations/DE-2850#! DE-2850 2850 Evangelische Gemeinschaftsschule Erfurt, Schulbibliothek +http://lobid.org/organisations/DE-2854#! DE-2854 2854 Stadtbibliothek Engen +http://lobid.org/organisations/DE-2864#! DE-2864 Bundesverband Bildender Künstlerinnen und Künstler, Landesverband Schleswig-Holstein +http://lobid.org/organisations/DE-627-4#! DE-627-4 VD 17 - Das Verzeichnis der im deutschen Sprachraum erschienenen Drucke des 17. Jahrhunderts +http://lobid.org/organisations/DE-2868#! DE-2868 2868 Gemeindebücherei Rellingen +http://lobid.org/organisations/DE-77-094#! DE-77-094 77/094 Institut für Geschichtliche Landeskunde an der Universität Mainz e.V., Bibliothek +http://lobid.org/organisations/DE-2876#! DE-2876 HafenCity Universität Hamburg / Projekt ""Pleasurescapes"" +http://lobid.org/organisations/DE-2878#! DE-2878 Friedrich-Schiller-Universität / Tektonische Sammlung +http://lobid.org/organisations/DE-2879#! DE-2879 2879 Kreisbibliothek Calw +http://lobid.org/organisations/DE-Vil6#! DE-Vil6 Landratsamt Schwarzwald-Baar-Kreis, Kreisarchiv +http://lobid.org/organisations/DE-2890#! DE-2890 2890 Abbe-Institut für Stiftungswesen, Bibliothek +http://lobid.org/organisations/DE-2894#! DE-2894 Zentralgewerbeschule Buchen +http://lobid.org/organisations/DE-82-426#! DE-82-426 82/426 E.ON Energy Research Center, Bibliothek +http://lobid.org/organisations/DE-2895#! DE-2895 2895 Ortsbücherei Dettingen +http://lobid.org/organisations/AT-UBI-624#! AT-UBI-624 AT-UBI-624 Forschungsinstitut Brenner-Archiv +http://lobid.org/organisations/DE-2903#! DE-2903 2903 Ortsbücherei Leutenbach +http://lobid.org/organisations/DE-MUS-147520#! DE-MUS-147520 Heimatmuseum Kirchseeon +http://lobid.org/organisations/DE-2916#! DE-2916 Interdisziplinäre Forschungsstelle für historische Medien, Universität Erfurt +http://lobid.org/organisations/DE-Mb113#! DE-Mb113 Mb 113 GND-Agentur Bauwerke +http://lobid.org/organisations/DE-2930#! DE-2930 2930 Kreisarchiv Esslingen, Kreisbibliographie +http://lobid.org/organisations/DE-2931#! DE-2931 2931 Stadtbücherei Glückstadt +http://lobid.org/organisations/DE-2935#! DE-2935 2935 Stadtbücherei Nortorf +http://lobid.org/organisations/DE-2941#! DE-2941 2941 Stadtbücherei Augsburg +http://lobid.org/organisations/DE-2946#! DE-2946 Warburg-Haus / Archive +http://lobid.org/organisations/DE-2950#! DE-2950 2950 Stadtarchiv Frankfurt (Oder) +http://lobid.org/organisations/DE-2958#! DE-2958 Hochschule Wismar, University of Applied Sciences: Technology, Business and Design, Müther-Archiv +http://lobid.org/organisations/DE-2962#! DE-2962 2962 Landesdirektion Sachsen, Dienststelle Leipzig, Behördenbibliothek +http://lobid.org/organisations/DE-2968#! DE-2968 Stadtarchiv Esslingen am Neckar +http://lobid.org/organisations/DE-2969#! DE-2969 Stadtteilarchiv Bramfeld +http://lobid.org/organisations/DE-2982#! DE-2982 2982 Fahrbücherei 12 im Kreis Segeberg +http://lobid.org/organisations/DE-2985#! DE-2985 2985 Fahrbücherei 15 im Kreis Segeberg +http://lobid.org/organisations/DE-2986#! DE-2986 Gemeindearchiv Hünxe +http://lobid.org/organisations/DE-2988#! DE-2988 Stadtarchiv Bad Mergentheim +http://lobid.org/organisations/DE-2989#! DE-2989 Ludwig-Maximilians-Universität München, Lehrstuhl für Paläoanatomie und Geschichte der Tiermedizin der Tierärztlichen Fakultät, Tiermedizinhistorische Sammlung +http://lobid.org/organisations/DE-2994#! DE-2994 2994 Forum für Künstlernachlässe (FKN), Hamburg +http://lobid.org/organisations/DE-2995#! DE-2995 2995 Mediathek Denzlingen +http://lobid.org/organisations/DE-Els1#! DE-Els1 Els 1 Umweltbundesamt, Fachbibliothek Umwelt, Zweigstelle Bad Elster +http://lobid.org/organisations/DE-3004#! DE-3004 Archiv Diözesancaritasverband Limburg +http://lobid.org/organisations/DE-3009#! DE-3009 3009 Gemeindebibliothek Borsdorf +http://lobid.org/organisations/DE-3010#! DE-3010 3010 Gemeindeverwaltung/Bibliothek Burkhardtsdorf +http://lobid.org/organisations/DE-3014#! DE-3014 3014 Stadtbibliothek Gröditz +http://lobid.org/organisations/DE-3019#! DE-3019 3019 Gemeindebibliothek Königswartha +http://lobid.org/organisations/DE-3024#! DE-3024 3024 Stadtbibliothek Markkleeberg +http://lobid.org/organisations/DE-3033#! DE-3033 3033 Bibliothek Seiffen +http://lobid.org/organisations/DE-3045#! DE-3045 3045 Stadtbibliothek Dieburg +http://lobid.org/organisations/DE-3046#! DE-3046 3046 SchulBibliothek der Kolibri-Grundschule +http://lobid.org/organisations/DE-3050#! DE-3050 Stadtarchiv Montabaur +http://lobid.org/organisations/DE-3055#! DE-3055 Applied Botany Collection (ABC) +http://lobid.org/organisations/DE-3056#! DE-3056 Zwickauer Fussballgeschichten e.V. +http://lobid.org/organisations/DE-3057#! DE-3057 3057 Gemeindebücherei Veitsbronn +http://lobid.org/organisations/DE-3076#! DE-3076 3076 Stadtbibliothek Wasldshut-Tiengen, Standort Tiengen +http://lobid.org/organisations/DE-3078#! DE-3078 Martin-Luther-Universität Halle-Wittenberg, Institut für Kunstgeschichte und Archäologien Europas, Bildarchiv +http://lobid.org/organisations/DE-3084#! DE-3084 audiooo.net +http://lobid.org/organisations/DE-3085#! DE-3085 3085 Treffpunkt Bücherei Uhldingen-Mühlhofen +http://lobid.org/organisations/DE-3098#! DE-3098 3098 Macromedia Library, Frankfurt am Main +http://lobid.org/organisations/DE-B763#! DE-B763 B 763 Staatliches Institut für Musikforschung - Preußischer Kulturbesitz, Bibliothek +http://lobid.org/organisations/DE-4010#! DE-4010 Stadtarchiv Rüsselsheim am Main +http://lobid.org/organisations/DE-4018#! DE-4018 4018 Bibliothek Gelenau +http://lobid.org/organisations/DE-4021#! DE-4021 Hamburger Feuerwehr-Historiker e.V. +http://lobid.org/organisations/DE-4025#! DE-4025 Abenteuermuseum +http://lobid.org/organisations/DE-4029#! DE-4029 4029 Stadtbibliothek Dessau-Roßlau +http://lobid.org/organisations/DE-4030#! DE-4030 Bibliotop der Leipziger Buchwissenschaft +http://lobid.org/organisations/DE-987#! DE-987 987 Hochschule Koblenz, Bibliothek RheinMoselCampus +http://lobid.org/organisations/DE-7-227#! DE-7-227 7/227 Institut für Religionswissenschaft, Bibliothek +http://lobid.org/organisations/DE-7-414#! DE-7-414 7/414 Albrecht-von-Haller-Institut für Pflanzenwissenschaften, Abteilung Biochemie der Pflanze, Bibliothek +http://lobid.org/organisations/DE-7-417#! DE-7-417 7/417 Johann-Friedrich-Blumenbach-Institut für Zoologie und Anthropologie, Abteilung Verhaltensökologie, Bibliothek +http://lobid.org/organisations/DE-4054#! DE-4054 Kur- und Gemeinde Bibliothek Bad Tabarz +http://lobid.org/organisations/DE-4063#! DE-4063 Kommunaler Archivverbund des Landkreises Hersfeld-Rotenburg +http://lobid.org/organisations/DE-4067#! DE-4067 4067 Niedersächsisches Institut für historische Küstenforschung - Bibliothek +http://lobid.org/organisations/DE-7-752#! DE-7-752 7/752 Institut für Krankenhaushygiene und Infektiologie, Bibliothek +http://lobid.org/organisations/DE-7-756#! DE-7-756 7/756 Institut für Klinische Chemie, Bibliothek +http://lobid.org/organisations/DE-7-761#! DE-7-761 7/761 European Neuroscience Institute, Bibliothek +http://lobid.org/organisations/DE-7-762#! DE-7-762 7/762 Bibliothek der Schulen für Fachberufe des Gesundheitswesens +http://lobid.org/organisations/DE-4071#! DE-4071 Hessischer Museumsverband / Projekt ""Made in Hessen. Globale Industriegeschichten"" +http://lobid.org/organisations/DE-4079#! DE-4079 4079 Mediathek am Münster +http://lobid.org/organisations/DE-4080#! DE-4080 Archiv der Fürst Donnersmarck-Stiftung zu Berlin +http://lobid.org/organisations/DE-4081#! DE-4081 Verwaltungs- und Kreisarchiv Weimarer Land +http://lobid.org/organisations/DE-627-6#! DE-627-6 Online Contents +http://lobid.org/organisations/DE-4086#! DE-4086 4086 Dominikanerkloster St. Josef, Konventsbibliothek +http://lobid.org/organisations/DE-Ful2e#! DE-Ful2e Ful2e Offizialat - Bibliothek +http://lobid.org/organisations/DE-4094#! DE-4094 DE-4094 Verbrannte Orte e.V. +http://lobid.org/organisations/DE-4096#! DE-4096 4096 Stiftung Kulturwerk Schlesien +http://lobid.org/organisations/DE-4098#! DE-4098 Archiv des Amtes Schrevenborn +http://lobid.org/organisations/DE-4099#! DE-4099 4099 Katholische Öffentliche Bücherei St. Martinus +http://lobid.org/organisations/DE-4101#! DE-4101 4101 Gemeindebibliothek Großpösna +http://lobid.org/organisations/DE-4102#! DE-4102 4102 Ministerium der Finanzen und für Wissenschaft Saarland, Bibliothek +http://lobid.org/organisations/DE-Ful2-1#! DE-Ful2-1 Ful2-1 Bibliothek des Bischöflichen Priesterseminars - Sammlung Bibliotheca Fuldensis +http://lobid.org/organisations/DE-4110#! DE-4110 Verbandsgemeindearchiv Bad Ems-Nassau +http://lobid.org/organisations/DE-4116#! DE-4116 4116 Stadtbibliothek Konz +http://lobid.org/organisations/DE-4119#! DE-4119 Stadtarchiv Hückelhoven +http://lobid.org/organisations/DE-4126#! DE-4126 4126 Sammlung Werner Schweikert und Würth Fachbibliotheken +http://lobid.org/organisations/DE-4128#! DE-4128 4128 Stadtbücherei Uetersen +http://lobid.org/organisations/DE-17-72#! DE-17-72 17/72 TU Darmstadt, Fachgebiet Kommunikationsnetze (KOM) +http://lobid.org/organisations/DE-Schul1#! DE-Schul1 Schul 1 Schulungsbibliothek für die ZDB +http://lobid.org/organisations/DE-MUS-036524#! DE-MUS-036524 Urzeitbahnhof +http://lobid.org/organisations/DE-MUS-036826#! DE-MUS-036826 Hachez Chocoversum +http://lobid.org/organisations/DE-MUS-037329#! DE-MUS-037329 ZADIK e.V. +http://lobid.org/organisations/DE-MUS-038520#! DE-MUS-038520 Zollamt MMK +http://lobid.org/organisations/DE-MUS-038624#! DE-MUS-038624 Staatliche Kunstsammlungen Dresden / Kunsthalle im Lipsiusbau +http://lobid.org/organisations/DE-MUS-040726#! DE-MUS-040726 Burg- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-041125#! DE-MUS-041125 Heimatmuseum ""Göpelschauer"" +http://lobid.org/organisations/DE-MUS-042222#! DE-MUS-042222 Museum der bayerischen Könige +http://lobid.org/organisations/DE-MUS-043621#! DE-MUS-043621 Museum Glinder Kupfermühle +http://lobid.org/organisations/DE-MUS-047123#! DE-MUS-047123 Friedrich-Schiller-Universität / Moulagensammlung ""Prof.Dr. Wutzler"" Sammlung Theodor Meyer-Steineg +http://lobid.org/organisations/DE-MUS-048022#! DE-MUS-048022 Klimahaus Bremerhaven +http://lobid.org/organisations/DE-MUS-048220#! DE-MUS-048220 PHÄNOMENTA Bremerhaven +http://lobid.org/organisations/DE-MUS-048626#! DE-MUS-048626 Wohnkultur - Bauen und Wohnen nach 1945 +http://lobid.org/organisations/DE-MUS-050020#! DE-MUS-050020 Museum für die Arbeit mit Zugpferden +http://lobid.org/organisations/DE-MUS-051023#! DE-MUS-051023 Südwestfälisches Eisenbahnmuseum +http://lobid.org/organisations/DE-MUS-052026#! DE-MUS-052026 Knopf- und Regionalmuseum +http://lobid.org/organisations/DE-MUS-053321#! DE-MUS-053321 Straßenbahnmuseum Leipzig +http://lobid.org/organisations/DE-MUS-053727#! DE-MUS-053727 Friseurmuseum Magdeburg +http://lobid.org/organisations/DE-MUS-054022#! DE-MUS-054022 Kunsthalle der Sparkasse Leipzig +http://lobid.org/organisations/DE-MUS-055129#! DE-MUS-055129 Bergbau- und Heimatmuseum Könitz +http://lobid.org/organisations/DE-MUS-057427#! DE-MUS-057427 Westerturm-Ensemble ""Stadtluft macht frei"" +http://lobid.org/organisations/DE-MUS-057625#! DE-MUS-057625 Gedenkstätte Gestapokeller +http://lobid.org/organisations/DE-MUS-058826#! DE-MUS-058826 Gedenkstätten Brandenburg/ Zuchthaus Brandenburg +http://lobid.org/organisations/DE-MUS-061921#! DE-MUS-061921 Bandkeramikmuseum +http://lobid.org/organisations/DE-MUS-062226#! DE-MUS-062226 Kloster Wülfinghausen +http://lobid.org/organisations/DE-MUS-063021#! DE-MUS-063021 Tango- und Bandoneonmuseum Staufen +http://lobid.org/organisations/DE-MUS-063927#! DE-MUS-063927 Museum im historischen Sudhaus +http://lobid.org/organisations/DE-MUS-065329#! DE-MUS-065329 PS.Speicher +http://lobid.org/organisations/DE-MUS-066822#! DE-MUS-066822 Unstrutbahn-Museum +http://lobid.org/organisations/DE-MUS-067221#! DE-MUS-067221 Museum Noviomagi +http://lobid.org/organisations/DE-MUS-068026#! DE-MUS-068026 Schmiedemuseum +http://lobid.org/organisations/DE-MUS-068224#! DE-MUS-068224 Burg Uda +http://lobid.org/organisations/DE-MUS-070826#! DE-MUS-070826 KASiMiRmuseum +http://lobid.org/organisations/DE-MUS-071225#! DE-MUS-071225 Synagoge Memmelsdorf +http://lobid.org/organisations/DE-MUS-071527#! DE-MUS-071527 Benniniger Ried Museum +http://lobid.org/organisations/DE-MUS-071725#! DE-MUS-071725 Hammermühle Blössl Breitenberg +http://lobid.org/organisations/DE-MUS-072124#! DE-MUS-072124 Museum Frauenkultur Regional-International - Frauenmuseum Fürth +http://lobid.org/organisations/DE-MUS-073023#! DE-MUS-073023 Autenrieder Brauerei-Museum +http://lobid.org/organisations/DE-MUS-073523#! DE-MUS-073523 ZeitRäume +http://lobid.org/organisations/DE-MUS-074828#! DE-MUS-074828 Museum Schnippenburg +http://lobid.org/organisations/DE-MUS-075029#! DE-MUS-075029 Museum Nordseeheilbad Norderney +http://lobid.org/organisations/DE-MUS-075227#! DE-MUS-075227 Heimatmuseum Neuhaus +http://lobid.org/organisations/DE-MUS-075425#! DE-MUS-075425 Stones Fan Museum +http://lobid.org/organisations/DE-MUS-075623#! DE-MUS-075623 Norddeutsches Radiomuseum +http://lobid.org/organisations/DE-MUS-076126#! DE-MUS-076126 Fischereimuseum +http://lobid.org/organisations/DE-MUS-076220#! DE-MUS-076220 Energiemuseum Hohne-Spechtshorn +http://lobid.org/organisations/DE-MUS-076522#! DE-MUS-076522 HMH Museum im Backhaus +http://lobid.org/organisations/DE-MUS-076928#! DE-MUS-076928 Museum für Textile Kunst +http://lobid.org/organisations/DE-MUS-077223#! DE-MUS-077223 Der Markgrafsche Hof +http://lobid.org/organisations/DE-MUS-078122#! DE-MUS-078122 Meyer-Haus Museum-Berge +http://lobid.org/organisations/DE-MUS-078320#! DE-MUS-078320 Steinarbeitermuseum Adelebsen +http://lobid.org/organisations/DE-MUS-079229#! DE-MUS-079229 Lechmuseum +http://lobid.org/organisations/DE-MUS-079729#! DE-MUS-079729 Borstei-Museum +http://lobid.org/organisations/DE-MUS-080526#! DE-MUS-080526 Innschifffahrtsmuseum +http://lobid.org/organisations/DE-MUS-080828#! DE-MUS-080828 Feuerwehrmuseum Nürnberg +http://lobid.org/organisations/DE-MUS-081227#! DE-MUS-081227 Kirchenburgen-Museum +http://lobid.org/organisations/DE-MUS-081321#! DE-MUS-081321 Vulkanerlebnis Parkstein +http://lobid.org/organisations/DE-MUS-082324#! DE-MUS-082324 Haus der Kultur - ehemalige Synagoge +http://lobid.org/organisations/DE-MUS-082824#! DE-MUS-082824 Heimat- und Handwerkermuseum +http://lobid.org/organisations/DE-MUS-083025#! DE-MUS-083025 Museum Burg Runding +http://lobid.org/organisations/DE-MUS-083723#! DE-MUS-083723 KZ-Gedenkstätte Laura +http://lobid.org/organisations/DE-MUS-084122#! DE-MUS-084122 Gewürzmuseum Schönbrunn & Shop +http://lobid.org/organisations/DE-MUS-084528#! DE-MUS-084528 Dorfmuseum Alf +http://lobid.org/organisations/DE-MUS-084820#! DE-MUS-084820 Mikwe unter dem historischen Rathaus +http://lobid.org/organisations/DE-MUS-084924#! DE-MUS-084924 Clara-Viebig-Pavillon +http://lobid.org/organisations/DE-MUS-085214#! DE-MUS-085214 Slevogt-Hof Neukastl +http://lobid.org/organisations/DE-MUS-086326#! DE-MUS-086326 Museum am Silusstein +http://lobid.org/organisations/DE-MUS-086524#! DE-MUS-086524 Steinemuseum +http://lobid.org/organisations/DE-MUS-087225#! DE-MUS-087225 Raiffeisen-Museum Flammersfeld +http://lobid.org/organisations/DE-MUS-087829#! DE-MUS-087829 Burg- und Hexenmuseum Grimburg +http://lobid.org/organisations/DE-MUS-088624#! DE-MUS-088624 Museum an der Kreuzkirche +http://lobid.org/organisations/DE-MUS-088926#! DE-MUS-088926 Bochumer Krippenmuseum +http://lobid.org/organisations/DE-MUS-089325#! DE-MUS-089325 Museum Osthusschule +http://lobid.org/organisations/DE-MUS-090424#! DE-MUS-090424 Museumsschmiede Galen +http://lobid.org/organisations/DE-MUS-090528#! DE-MUS-090528 Heimatmuseum im Wehrturm +http://lobid.org/organisations/DE-MUS-091625#! DE-MUS-091625 Alexander-Mack-Museum Schwarzenau +http://lobid.org/organisations/DE-MUS-092128#! DE-MUS-092128 Museum Guntersblum-Kulturverein +http://lobid.org/organisations/DE-MUS-093027#! DE-MUS-093027 Museum der Bimsindustrie +http://lobid.org/organisations/DE-MUS-093423#! DE-MUS-093423 Haus der Krippen - Domus Praespiorum +http://lobid.org/organisations/DE-MUS-093829#! DE-MUS-093829 Nachttopfmuseum +http://lobid.org/organisations/DE-MUS-094520#! DE-MUS-094520 Parfüm-Museum +http://lobid.org/organisations/DE-MUS-096026#! DE-MUS-096026 Kleines Kellberger Schmiedemuseum +http://lobid.org/organisations/DE-MUS-096328#! DE-MUS-096328 Druckereimuseum des Traunsteiner Tageblatt +http://lobid.org/organisations/DE-MUS-096422#! DE-MUS-096422 Ortsmuseum +http://lobid.org/organisations/DE-MUS-096828#! DE-MUS-096828 Bunker 29/ Industriemuseum Waldkraiburg +http://lobid.org/organisations/DE-MUS-097029#! DE-MUS-097029 Heimatmuseum +http://lobid.org/organisations/DE-MUS-097227#! DE-MUS-097227 Museum für Militärtradition in Oberfranken +http://lobid.org/organisations/DE-MUS-097321#! DE-MUS-097321 Volkskundliche Sammlung des Fichtelgebirgsvereins +http://lobid.org/organisations/DE-MUS-097425#! DE-MUS-097425 Brauer- und Büttnermuseum +http://lobid.org/organisations/DE-MUS-097529#! DE-MUS-097529 Römische Thermen +http://lobid.org/organisations/DE-MUS-097821#! DE-MUS-097821 KunstMuseum Donau-Ries +http://lobid.org/organisations/DE-MUS-098126#! DE-MUS-098126 Literaturhaus Wipfeld-Literaturmuseum- und forum +http://lobid.org/organisations/DE-MUS-099629#! DE-MUS-099629 Heimatmuseum Ratzenried +http://lobid.org/organisations/DE-MUS-100021#! DE-MUS-100021 Evangelische Akademie - Blumhardts Literatursalon +http://lobid.org/organisations/DE-MUS-100427#! DE-MUS-100427 Kutschenmuseum +http://lobid.org/organisations/DE-MUS-101722#! DE-MUS-101722 Fasnachtsmuseum der Narrenzunft Bräunlingen +http://lobid.org/organisations/DE-MUS-102027#! DE-MUS-102027 Gerbereimuseum - Weißgerberei Balz +http://lobid.org/organisations/DE-MUS-102121#! DE-MUS-102121 Jüdisches Museum +http://lobid.org/organisations/DE-MUS-102329#! DE-MUS-102329 Welt der Kristalle +http://lobid.org/organisations/DE-MUS-102423#! DE-MUS-102423 Burg Katzenstein +http://lobid.org/organisations/DE-MUS-103020#! DE-MUS-103020 Städtische Galerie Ehingen +http://lobid.org/organisations/DE-MUS-103322#! DE-MUS-103322 Atelier Thomann +http://lobid.org/organisations/DE-MUS-103822#! DE-MUS-103822 Schulmuseum Sulzgries +http://lobid.org/organisations/DE-MUS-104825#! DE-MUS-104825 HopfenBierGut - Museum im Kornhaus +http://lobid.org/organisations/DE-MUS-105026#! DE-MUS-105026 Telemann-Museum +http://lobid.org/organisations/DE-MUS-105224#! DE-MUS-105224 J.A. Hasse-Museum +http://lobid.org/organisations/DE-MUS-105620#! DE-MUS-105620 Reichsstadtmuseum Weißenburg +http://lobid.org/organisations/DE-MUS-106623#! DE-MUS-106623 Museum im Burgturm Neuleiningen +http://lobid.org/organisations/DE-MUS-108223#! DE-MUS-108223 Sozialhistorisches Zigarrenfabrikmuseum der Pfalz +http://lobid.org/organisations/DE-MUS-109622#! DE-MUS-109622 Dorfmuseum Vettelschoß +http://lobid.org/organisations/DE-MUS-111422#! DE-MUS-111422 HDI-Museum +http://lobid.org/organisations/DE-MUS-111828#! DE-MUS-111828 Hermann-Hesse-Haus +http://lobid.org/organisations/DE-MUS-113022#! DE-MUS-113022 DB Museum Halle (Saale) +http://lobid.org/organisations/DE-MUS-113324#! DE-MUS-113324 Gedenkstätte Grafeneck - Dokumentationszentrum +http://lobid.org/organisations/DE-MUS-114421#! DE-MUS-114421 Spielzeugmuseum Zum kleinen Hannes +http://lobid.org/organisations/DE-MUS-114827#! DE-MUS-114827 Historische Ölmühle Kirner +http://lobid.org/organisations/DE-MUS-115528#! DE-MUS-115528 Museum im Schlössle - Historische Schiffsmodelle +http://lobid.org/organisations/DE-MUS-115622#! DE-MUS-115622 Heimatmuseum +http://lobid.org/organisations/DE-MUS-115726#! DE-MUS-115726 Erlebniswelt Grundwasser im Wasserwerk Langenau +http://lobid.org/organisations/DE-MUS-116323#! DE-MUS-116323 Heimatmuseum Neckarau +http://lobid.org/organisations/DE-MUS-117524#! DE-MUS-117524 Kleinstmuseum Dorfarrest +http://lobid.org/organisations/DE-MUS-117826#! DE-MUS-117826 Otto Zondler Gedenkstätte +http://lobid.org/organisations/DE-MUS-118423#! DE-MUS-118423 Historische Imkerei Felm, Voßberg +http://lobid.org/organisations/DE-MUS-119020#! DE-MUS-119020 Seebadmuseum Travemünde +http://lobid.org/organisations/DE-MUS-120327#! DE-MUS-120327 Historischer Hochbunker +http://lobid.org/organisations/DE-MUS-121028#! DE-MUS-121028 Beim Taubnschuster +http://lobid.org/organisations/DE-MUS-122021#! DE-MUS-122021 Exerzierhalle +http://lobid.org/organisations/DE-MUS-122229#! DE-MUS-122229 Museum Marchtal +http://lobid.org/organisations/DE-MUS-122823#! DE-MUS-122823 Turmmuseum +http://lobid.org/organisations/DE-MUS-122927#! DE-MUS-122927 Meeresmuseum Öhringen +http://lobid.org/organisations/DE-MUS-123524#! DE-MUS-123524 Deutsch-Kanadisches Luftwaffenmuseum +http://lobid.org/organisations/DE-MUS-126023#! DE-MUS-126023 KirchnerHAUS Museum +http://lobid.org/organisations/DE-MUS-127120#! DE-MUS-127120 Dorfmuseum Jockenhof +http://lobid.org/organisations/DE-MUS-127422#! DE-MUS-127422 Willi-Heinlein-Schreibmaschinenmuseum +http://lobid.org/organisations/DE-MUS-129824#! DE-MUS-129824 Land- und Technikmuseum Zipplingen +http://lobid.org/organisations/DE-MUS-130923#! DE-MUS-130923 Heimatstube Weisenbach +http://lobid.org/organisations/DE-MUS-131020#! DE-MUS-131020 Gamburger Buscher-Museum +http://lobid.org/organisations/DE-MUS-131520#! DE-MUS-131520 Württembergisches Psychiatriemuseum +http://lobid.org/organisations/DE-MUS-131822#! DE-MUS-131822 Geo-Museum Zurholt +http://lobid.org/organisations/DE-MUS-132023#! DE-MUS-132023 Anröchter Steinmuseum +http://lobid.org/organisations/DE-MUS-132523#! DE-MUS-132523 Heimatstube Großeneder +http://lobid.org/organisations/DE-MUS-133026#! DE-MUS-133026 Heimat- und Dorfmuseum Altenbüren +http://lobid.org/organisations/DE-MUS-133328#! DE-MUS-133328 Heimatstube Lützeln +http://lobid.org/organisations/DE-MUS-134123#! DE-MUS-134123 Deutsches Fußballmuseum +http://lobid.org/organisations/DE-MUS-134529#! DE-MUS-134529 Reclam-Museum +http://lobid.org/organisations/DE-MUS-134727#! DE-MUS-134727 Junghans Terassenbau Museum +http://lobid.org/organisations/DE-MUS-136223#! DE-MUS-136223 Heimathaus Eggenstein +http://lobid.org/organisations/DE-MUS-136327#! DE-MUS-136327 Friedhofskirche Sülchen +http://lobid.org/organisations/DE-MUS-136421#! DE-MUS-136421 Elbbergmuseum +http://lobid.org/organisations/DE-MUS-295812#! DE-MUS-295812 Wissenschaftliche Bibliothek der Stadt Trier +http://lobid.org/organisations/DE-MUS-325319#! DE-MUS-325319 Dr. Oetker Welt +http://lobid.org/organisations/DE-MUS-331017#! DE-MUS-331017 Rumänisches Institut - Rumänische Bibliothek - Freiburg e.V. +http://lobid.org/organisations/DE-MUS-641012#! DE-MUS-641012 Museum Sinclair-Haus +http://lobid.org/organisations/DE-MUS-648211#! DE-MUS-648211 Institut für Stadtgeschichte Frankfurt am Main +http://lobid.org/organisations/DE-MUS-720016#! DE-MUS-720016 Eisenbahnmuseum ""Stellwerk 1"" Calw +http://lobid.org/organisations/DE-MUS-137028#! DE-MUS-137028 Museum Friedland +http://lobid.org/organisations/DE-MUS-137226#! DE-MUS-137226 Hammerschmiede Oberprechtal +http://lobid.org/organisations/DE-MUS-137320#! DE-MUS-137320 Deutsch-Deutsches Museum Mödlareuth, Hauptgebäude +http://lobid.org/organisations/DE-MUS-137622#! DE-MUS-137622 Klingendes Museum +http://lobid.org/organisations/DE-MUS-137820#! DE-MUS-137820 Westfälisches KettenschmiedeMuseum +http://lobid.org/organisations/DE-MUS-138125#! DE-MUS-138125 HHM Sollinghaus Weber +http://lobid.org/organisations/DE-MUS-138521#! DE-MUS-138521 Galerie im Kloster +http://lobid.org/organisations/DE-MUS-138729#! DE-MUS-138729 BND-Besucherzentrum +http://lobid.org/organisations/DE-MUS-139628#! DE-MUS-139628 Lernort Keibelstraße +http://lobid.org/organisations/DE-MUS-140623#! DE-MUS-140623 Schalke Museum +http://lobid.org/organisations/DE-MUS-140727#! DE-MUS-140727 D(T)orfmuseum +http://lobid.org/organisations/DE-MUS-141022#! DE-MUS-141022 Opel Museum Herne +http://lobid.org/organisations/DE-MUS-141428#! DE-MUS-141428 Kornbrennereimuseum, Alte Brennerei +http://lobid.org/organisations/DE-MUS-142223#! DE-MUS-142223 Bergbaumuseum +http://lobid.org/organisations/DE-MUS-142327#! DE-MUS-142327 Stadtmuseum Ibbenbüren +http://lobid.org/organisations/DE-MUS-142629#! DE-MUS-142629 Bakelit-Museum Kierspe +http://lobid.org/organisations/DE-MUS-142723#! DE-MUS-142723 Fritz-Linde-Museum +http://lobid.org/organisations/DE-MUS-142921#! DE-MUS-142921 Stickereimuseum +http://lobid.org/organisations/DE-MUS-143226#! DE-MUS-143226 Kunsthaus Kannen +http://lobid.org/organisations/DE-MUS-143820#! DE-MUS-143820 Westfälisches Storchenmuseum +http://lobid.org/organisations/DE-MUS-143924#! DE-MUS-143924 Kutschenmuseum +http://lobid.org/organisations/DE-MUS-144729#! DE-MUS-144729 Das kleine Bergbaumuseum +http://lobid.org/organisations/DE-MUS-145128#! DE-MUS-145128 Burgmuseum Hardenstein +http://lobid.org/organisations/DE-MUS-145222#! DE-MUS-145222 Scherenschnittmuseum Vreden +http://lobid.org/organisations/DE-MUS-145326#! DE-MUS-145326 Otto Mueller Museum der Moderne +http://lobid.org/organisations/DE-MUS-146423#! DE-MUS-146423 Heimatmuseum Oberwürzbach +http://lobid.org/organisations/DE-MUS-146527#! DE-MUS-146527 Dickfranzenhaus +http://lobid.org/organisations/DE-MUS-147322#! DE-MUS-147322 Schmiede am Junkerhaus +http://lobid.org/organisations/DE-MUS-148221#! DE-MUS-148221 Haus der Weimarer Republik - Forum für Demokratie +http://lobid.org/organisations/DE-MUS-149922#! DE-MUS-149922 Fasnet- und Ölmühlenmuseum +http://lobid.org/organisations/DE-4132#! DE-4132 4132 Gemeindebücherei Reichertshausen +http://lobid.org/organisations/DE-4133#! DE-4133 Stadtarchiv Brunsbüttel +http://lobid.org/organisations/DE-MUS-160429#! DE-MUS-160429 Clemens-Winkler-Sammlung der TU Bergakademie Freiberg +http://lobid.org/organisations/DE-4137#! DE-4137 Berlin-Brandenburgische Akademie der Wissenschaften +http://lobid.org/organisations/DE-4138#! DE-4138 4138 Bibliothek im Beruflichen Schulzentrum +http://lobid.org/organisations/DE-4141#! DE-4141 4141 HATiKVA e.V., Bibliothek +http://lobid.org/organisations/DE-82-793#! DE-82-793 82/793 Institut für Hebammenwissenschaft, Bibliothek +http://lobid.org/organisations/DE-4145#! DE-4145 4145 Bücherei Sörup +http://lobid.org/organisations/DE-4160#! DE-4160 Hans Peter-Autenrieth-Archiv +http://lobid.org/organisations/DE-4162#! DE-4162 4162 Staatliche Schlösser und Gärten Baden-Württemberg, Dienstbibliothek Kloster Schussenried +http://lobid.org/organisations/DE-4163#! DE-4163 4163 Hauptbücherei KÖB-Sögel +http://lobid.org/organisations/DE-4169#! DE-4169 Stadtarchiv Brandenburg an der Havel +http://lobid.org/organisations/DE-MUS-160627#! DE-MUS-160627 Hölderlinhaus +http://lobid.org/organisations/DE-MUS-160825#! DE-MUS-160825 Deutsches Schutzengelmuseum +http://lobid.org/organisations/DE-MUS-160929#! DE-MUS-160929 Ruhbenderhaus +http://lobid.org/organisations/DE-MUS-161120#! DE-MUS-161120 Das Kleine Grosz Museum +http://lobid.org/organisations/DE-MUS-162123#! DE-MUS-162123 Zweiradmuseum MV +http://lobid.org/organisations/DE-MUS-162425#! DE-MUS-162425 Maritim Museum Peenemünde U-461 +http://lobid.org/organisations/DE-MUS-162623#! DE-MUS-162623 Spielkartenfabrik Stralsund +http://lobid.org/organisations/DE-MUS-162727#! DE-MUS-162727 Erinnerungs-, Bildungs- und Begegnungsstätte Alt-Rehse +http://lobid.org/organisations/DE-MUS-163126#! DE-MUS-163126 Eggert Gustavs Museum +http://lobid.org/organisations/DE-MUS-163220#! DE-MUS-163220 Löffler-Haus +http://lobid.org/organisations/DE-MUS-163428#! DE-MUS-163428 Forum Wissen +http://lobid.org/organisations/DE-4181#! DE-4181 4181 Schulbibliothek Schule an der Victoriastadt +http://lobid.org/organisations/DE-4182#! DE-4182 Haus der Geschichte Falkenberg +http://lobid.org/organisations/DE-4190#! DE-4190 4190 Gemeindebücherei Saal a.d.Donau +http://lobid.org/organisations/DE-MUS-272319#! DE-MUS-272319 LVR-Industriemuseum +http://lobid.org/organisations/DE-4193#! DE-4193 Stadtarchiv Bedburg +http://lobid.org/organisations/DE-4195#! DE-4195 4195 Fritz-Boehle-Grund- u. Werkrealschule +http://lobid.org/organisations/DE-4201#! DE-4201 Carl-Benz-Schule +http://lobid.org/organisations/DE-4210#! DE-4210 Bibliothek der Dr. Walther-Thiede-Stiftung +http://lobid.org/organisations/DE-6-334#! DE-6-334 6/334 Universität Münster, Musikhochschule, Bibliothek +http://lobid.org/organisations/DE-B1569#! DE-B1569 B 1569 Information Center of the European School of Management and Technology GmbH (esmt Information Center) +http://lobid.org/organisations/DE-MUS-109617#! DE-MUS-109617 Landesmuseum Natur und Mensch +http://lobid.org/organisations/DE-1416#! DE-1416 1416 Stadtbibliothek Geretsried +http://lobid.org/organisations/DE-4224#! DE-4224 Stadtarchiv Erlangen +http://lobid.org/organisations/DE-4221#! DE-4221 Gemeindearchiv Hürtgenwald +http://lobid.org/organisations/DE-6-020#! DE-6-020 6/020 Universität Münster, Englisches Seminar, Bibliothek +http://lobid.org/organisations/DE-6-259#! DE-6-259 6/259 Universität Münster, Institut für Indogermanische Sprachwissenschaft der Universität, Bibliothek +http://lobid.org/organisations/DE-824#! DE-824 824 Universitätsbibliothek Eichstätt-Ingolstadt +http://lobid.org/organisations/DE-Zi4#! DE-Zi4 Zi 4 Hochschule Zittau / Görlitz, Hochschulbibliothek +http://lobid.org/organisations/DE-6-293#! DE-6-293 6/293 Universität Münster, Institut für Grundlegende und Inklusive Mathematische Bildung (GIMB), Bibliothek +http://lobid.org/organisations/DE-MUS-196621#! DE-MUS-196621 NAWAREUM +http://lobid.org/organisations/DE-6-295#! DE-6-295 6/295 Universität Münster, Seminar für Didaktik des Sachunterrichts, Bibliothek +http://lobid.org/organisations/DE-Ei4#! DE-Ei4 Ei 4 St. Georg Klinikum Eisenach GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-101c#! DE-101c 101c Deutsche Nationalbibliothek, Deutsches Musikarchiv +http://lobid.org/organisations/DE-Q1#! DE-Q1 Q 1 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Informationszentrum und Bibliothek Quedlinburg +http://lobid.org/organisations/DE-2925#! DE-2925 2925 Kreisarchiv Verden +http://lobid.org/organisations/DE-1#! DE-1 1 Staatsbibliothek zu Berlin - Preußischer Kulturbesitz, Haus Unter den Linden +http://lobid.org/organisations/DE-1448#! DE-1448 1448 Stadtbücherei Weilheim +http://lobid.org/organisations/DE-6-011#! DE-6-011 6/011 Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr. +http://lobid.org/organisations/DE-6-282#! DE-6-282 6/282 Universität Münster, Institut für Wirtschaftsinformatik, Bibliothek +http://lobid.org/organisations/DE-Stg183#! DE-Stg183 Stg 183 Fraunhofer IPA, Bibliothek +http://lobid.org/organisations/DE-4225#! DE-4225 Stadtbücherei Haiger +http://lobid.org/organisations/DE-H364#! DE-H364 H 364 Behörde für Stadtentwicklung und Wohnen / Bibliothek Stadtentwicklung, Umwelt und Geologie (1) +http://lobid.org/organisations/DE-MUS-444519#! DE-MUS-444519 August Horch Museum Zwickau +http://lobid.org/organisations/DE-3049#! DE-3049 3049 Kreisergänzungsbibliothek Bautzen +http://lobid.org/organisations/DE-838#! DE-838 838 Stadtbücherei Neustadt/Weinstraße +http://lobid.org/organisations/DE-1898#! DE-1898 1898 Stadtbücherei Erlensee +http://lobid.org/organisations/DE-43-0#! DE-43-0 43/0 Hochschul- und Landesbibliothek RheinMain, Kurt-Schumacher-Ring +http://lobid.org/organisations/DE-1844#! DE-1844 1844 Korbinian-Aigner-Gymnasium Erding, Bibliothek +http://lobid.org/organisations/DE-Po79#! DE-Po79 Po 79 Zentrum für Militärgeschichte und Sozialwissenschaften der Bundeswehr (ZMSBw), Bibliothek +http://lobid.org/organisations/DE-6-156#! DE-6-156 6/156 Universität Münster, Institut für Sinologie und Ostasienkunde, Bibliothek +http://lobid.org/organisations/DE-6-153#! DE-6-153 6/153 Universität Münster, Institut für Altorientalistik und Vorderasiatische Archäologie, Bibliothek +http://lobid.org/organisations/DE-1259#! DE-1259 1259 Hochschule für Musik Nürnberg, Bibliothek +http://lobid.org/organisations/DE-6-125#! DE-6-125 6/125 Universität Münster, Rechtshistorische Bibliothek +http://lobid.org/organisations/DE-101f#! DE-101f 101f Deutsche Nationalbibliothek Leipzig, Deutsches Exilarchiv 1933-1945 +http://lobid.org/organisations/DE-294-35#! DE-294-35 294/35 Ruhr-Universität Bochum, Fakultät für Philologie, Institut für Arabistik und Islamwissenschaft, Bibliothek +http://lobid.org/organisations/DE-1949#! DE-1949 1949 Katholische Stiftungshochschule München, Bibliothek Benediktbeuern +http://lobid.org/organisations/DE-101e#! DE-101e 101e Deutsche Nationalbibliothek, Deutsches Exilarchiv 1933-1945 +http://lobid.org/organisations/DE-MUS-073216#! DE-MUS-073216 Hessen Kassel Heritage - Antikensammlung, Gemäldegalerie Alte Meister, Graphische Sammlung +http://lobid.org/organisations/DE-MUS-073914#! DE-MUS-073914 Hessen Kassel Heritage - Hessisches Landesmuseum +http://lobid.org/organisations/DE-4188#! DE-4188 4188 Stiftung Hamburg Maritim, Bibliothek +http://lobid.org/organisations/DE-6-163#! DE-6-163 6/163 Universität Münster, Institut für Geophysik, Bibliothek +http://lobid.org/organisations/DE-MUS-746612#! DE-MUS-746612 Thüringer Museum für Elektrotechnik +http://lobid.org/organisations/DE-4222#! DE-4222 Ludwig-Maximilians-Universität München, Veterinärwissenschaftlichen Department der Tierärztlichen Fakultät, Anatomische Sammlung des Lehrstuhls für Anatomie, Histologie und Embryologie +http://lobid.org/organisations/DE-Ofb1#! DE-Ofb1 Ofb 1 Hochschule Offenburg, University of Applied Sciences, Bibliothek Campus Offenburg +http://lobid.org/organisations/DE-Z5#! DE-Z5 Z 5 Stadtarchiv Zeitz +http://lobid.org/organisations/DE-6-006#! DE-6-006 6/006 Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek +http://lobid.org/organisations/DE-MUS-295916#! DE-MUS-295916 Museum Friesenheim +http://lobid.org/organisations/DE-MUS-296211#! DE-MUS-296211 Stadtmuseum Siegburg +http://lobid.org/organisations/DE-MUS-296419#! DE-MUS-296419 Kunstmuseum in der Alten Post +http://lobid.org/organisations/DE-MUS-296815#! DE-MUS-296815 Jüdisches Museum Rendsburg +http://lobid.org/organisations/DE-MUS-297714#! DE-MUS-297714 Heimatmuseum Runder Turm +http://lobid.org/organisations/DE-MUS-298717#! DE-MUS-298717 Dorfmuseum Dettingen +http://lobid.org/organisations/DE-MUS-299918#! DE-MUS-299918 Heimatmuseum Eningen +http://lobid.org/organisations/DE-MUS-300310#! DE-MUS-300310 Römervilla Grenzach +http://lobid.org/organisations/DE-MUS-300414#! DE-MUS-300414 Museum Fischerhaus+Pfahlbaufunde u. Versteinerungen +http://lobid.org/organisations/DE-MUS-300810#! DE-MUS-300810 LebensSpuren - Heimatmuseum Fischbach +http://lobid.org/organisations/DE-MUS-301115#! DE-MUS-301115 Ausstellung Krippen +http://lobid.org/organisations/DE-MUS-302316#! DE-MUS-302316 Mineralien-Museum +http://lobid.org/organisations/DE-MUS-302712#! DE-MUS-302712 Heimatmuseum im alten Rathaus +http://lobid.org/organisations/DE-MUS-302910#! DE-MUS-302910 Gemeinde- und Forstmuseum Oftersheim +http://lobid.org/organisations/DE-MUS-303319#! DE-MUS-303319 Heimatmuseum Kirchheim +http://lobid.org/organisations/DE-MUS-307113#! DE-MUS-307113 Eisenbahnmuseum Stadt Vienenburg +http://lobid.org/organisations/DE-MUS-307613#! DE-MUS-307613 Büromaschinen-Museum +http://lobid.org/organisations/DE-MUS-308210#! DE-MUS-308210 Museum der Alltagskultur Schloss Waldenbuch +http://lobid.org/organisations/DE-MUS-308314#! DE-MUS-308314 Dorfmuseum Limbach +http://lobid.org/organisations/DE-MUS-308512#! DE-MUS-308512 Museum für Zeppelingeschichte +http://lobid.org/organisations/DE-MUS-309619#! DE-MUS-309619 Fuggerei mit Fuggereimuseum und Museum im Weltkriegsbunker +http://lobid.org/organisations/DE-MUS-309911#! DE-MUS-309911 Geburtshaus des Hl. Konrad von Parzham +http://lobid.org/organisations/DE-MUS-310916#! DE-MUS-310916 Heimatmuseum Eich +http://lobid.org/organisations/DE-MUS-311711#! DE-MUS-311711 Rudolf-Scharpf-Galerie +http://lobid.org/organisations/DE-MUS-313519#! DE-MUS-313519 Heimatmuseum Mittelstrimmig +http://lobid.org/organisations/DE-MUS-313915#! DE-MUS-313915 Museum auf Burg Sooneck +http://lobid.org/organisations/DE-MUS-314418#! DE-MUS-314418 Motorrad Museum Otterbach +http://lobid.org/organisations/DE-MUS-314814#! DE-MUS-314814 Deutsches Puppen- und Bärenmuseum +http://lobid.org/organisations/DE-MUS-314918#! DE-MUS-314918 Heimatmuseum der Verbandsgemeinde Wallhalben im Dorfgemeinschaftshaus Schmitshausen +http://lobid.org/organisations/DE-MUS-316112#! DE-MUS-316112 Heimatstube Stromberg +http://lobid.org/organisations/DE-MUS-316518#! DE-MUS-316518 Museum für Kunst- und Kulturgeschichte, Abteilung Deutsches Kochbuchmuseum +http://lobid.org/organisations/DE-MUS-317417#! DE-MUS-317417 Landwirtschaftsmuseum 'Schlachtmühle Jever' +http://lobid.org/organisations/DE-MUS-317511#! DE-MUS-317511 ""Frenkel-Haus""-Museum +http://lobid.org/organisations/DE-MUS-318618#! DE-MUS-318618 LWL-Industriemuseum, TextilWerk Bocholt +http://lobid.org/organisations/DE-MUS-319017#! DE-MUS-319017 Galerie ""Wilhelm Kimmich"" +http://lobid.org/organisations/DE-MUS-319413#! DE-MUS-319413 Kulturhistorisches Museum Hunsrück in Neuerkirch +http://lobid.org/organisations/DE-MUS-319517#! DE-MUS-319517 Deutsches Historisches Museum +http://lobid.org/organisations/DE-MUS-320012#! DE-MUS-320012 Heimatmuseum der Stadt Bad Sobernheim +http://lobid.org/organisations/DE-MUS-320616#! DE-MUS-320616 Archäologisches Museum Bad Königshofen im Grabfeld +http://lobid.org/organisations/DE-MUS-320710#! DE-MUS-320710 Archäologie-Museum (Zweigmuseum Archäologische Staatssammlung) +http://lobid.org/organisations/DE-MUS-321119#! DE-MUS-321119 Vitra Design Museum +http://lobid.org/organisations/DE-MUS-321317#! DE-MUS-321317 Stadtmuseum Hornmoldhaus +http://lobid.org/organisations/DE-MUS-321817#! DE-MUS-321817 Haus der Natur Eichendorf +http://lobid.org/organisations/DE-MUS-322914#! DE-MUS-322914 Erinnerungsstätte Baltringer Haufen +http://lobid.org/organisations/DE-MUS-323719#! DE-MUS-323719 Oberrheinisches Tabakmuseum +http://lobid.org/organisations/DE-MUS-324410#! DE-MUS-324410 Käthe Kollwitz Museum Köln +http://lobid.org/organisations/DE-MUS-325715#! DE-MUS-325715 Heimatmuseum Lilienthal +http://lobid.org/organisations/DE-MUS-325913#! DE-MUS-325913 Waldgeschichtliches Museum St. Oswald +http://lobid.org/organisations/DE-MUS-327117#! DE-MUS-327117 Besucherbergwerk ""Tiefer Stollen""+Bergbaumuseum +http://lobid.org/organisations/DE-MUS-327513#! DE-MUS-327513 Maschenmuseum Albstadt +http://lobid.org/organisations/DE-MUS-327617#! DE-MUS-327617 Feuerwehrmuseum der Stadt Asperg +http://lobid.org/organisations/DE-MUS-327919#! DE-MUS-327919 Gottliebin-Dittus-Haus Möttlingen +http://lobid.org/organisations/DE-MUS-328110#! DE-MUS-328110 SchweineMuseum +http://lobid.org/organisations/DE-MUS-329113#! DE-MUS-329113 Heimatmuseum Brackenheim +http://lobid.org/organisations/DE-MUS-329519#! DE-MUS-329519 Dorfmuseum Deckenpfronn +http://lobid.org/organisations/DE-MUS-329717#! DE-MUS-329717 Heimethüs u. Otto-Raupp-Stube +http://lobid.org/organisations/DE-MUS-330410#! DE-MUS-330410 Bauernmuseum Richen +http://lobid.org/organisations/DE-MUS-332916#! DE-MUS-332916 Vor- und Frühgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-334714#! DE-MUS-334714 Klostermuseum Wittichen +http://lobid.org/organisations/DE-MUS-335519#! DE-MUS-335519 Museum zur Kloster- und Stadtgeschichte +http://lobid.org/organisations/DE-MUS-336314#! DE-MUS-336314 Heimatmuseum und Museumsscheune +http://lobid.org/organisations/DE-MUS-337015#! DE-MUS-337015 Jagd Land Fluss Museum im Schloß Wolfstein +http://lobid.org/organisations/DE-MUS-337713#! DE-MUS-337713 Museum Mensch und Natur +http://lobid.org/organisations/DE-MUS-337817#! DE-MUS-337817 Schloßmuseum +http://lobid.org/organisations/DE-MUS-338612#! DE-MUS-338612 Bad Schwalbacher Kur- Stadt- Apothekenmuseum +http://lobid.org/organisations/DE-MUS-339115#! DE-MUS-339115 Eisenbahnfreunde Bebra e.V. - Eisenbahnmuseum - Museumseisenbahn +http://lobid.org/organisations/DE-MUS-339511#! DE-MUS-339511 Ikonenmuseum der Stadt Frankfurt Stiftung Dr. Schmidt-Voigt +http://lobid.org/organisations/DE-MUS-340318#! DE-MUS-340318 Stiftung Zentralinstitut und Museum für Sepulkralkultur +http://lobid.org/organisations/DE-MUS-341811#! DE-MUS-341811 Mineralien-Kabinett +http://lobid.org/organisations/DE-MUS-342418#! DE-MUS-342418 Historisches Feuerwehrmuseum Lüchow-Dannenberg e.V. +http://lobid.org/organisations/DE-MUS-342710#! DE-MUS-342710 Oma-Freese-Huus +http://lobid.org/organisations/DE-MUS-342918#! DE-MUS-342918 Heimatmuseum Eime +http://lobid.org/organisations/DE-MUS-343317#! DE-MUS-343317 Naturum Göhrde +http://lobid.org/organisations/DE-MUS-343411#! DE-MUS-343411 Ostdeutsche Heimat- und Trachtenstube Goldenstedt-Ambergen +http://lobid.org/organisations/DE-MUS-343515#! DE-MUS-343515 Kaiserpfalz mit St. Ulrichkapelle +http://lobid.org/organisations/DE-MUS-344018#! DE-MUS-344018 Theatermuseum Hannover +http://lobid.org/organisations/DE-MUS-346514#! DE-MUS-346514 Sammlung zur Klostergeschichte +http://lobid.org/organisations/DE-MUS-346712#! DE-MUS-346712 Natureum Niederelbe +http://lobid.org/organisations/DE-MUS-346910#! DE-MUS-346910 Museum Harsefeld +http://lobid.org/organisations/DE-MUS-348010#! DE-MUS-348010 Handwerks- und Landwirtschaftsmuseum Kutenholz +http://lobid.org/organisations/DE-MUS-348312#! DE-MUS-348312 Lilienhof-Anlage Lilienthal +http://lobid.org/organisations/DE-MUS-349617#! DE-MUS-349617 Stift Obernkirchen +http://lobid.org/organisations/DE-MUS-350018#! DE-MUS-350018 Heimatmuseum Rodewald +http://lobid.org/organisations/DE-MUS-350612#! DE-MUS-350612 Kunsthaus Stade +http://lobid.org/organisations/DE-MUS-351011#! DE-MUS-351011 Franz Radziwill - Haus +http://lobid.org/organisations/DE-MUS-351719#! DE-MUS-351719 Heinrich Büssing Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-352118#! DE-MUS-352118 Museum im Goldschmiedehaus Ahlen +http://lobid.org/organisations/DE-MUS-352618#! DE-MUS-352618 Stiftung Zanders - Papiergeschichtliche Sammlung +http://lobid.org/organisations/DE-MUS-352816#! DE-MUS-352816 Sternwarte Bochum - Institut für Umwelt- und Zukunftsforschung e. V. +http://lobid.org/organisations/DE-MUS-354312#! DE-MUS-354312 Heimatmuseum Fröndenberg des Heimatvereins e.V. +http://lobid.org/organisations/DE-MUS-356110#! DE-MUS-356110 Hiltruper Museum e.V. +http://lobid.org/organisations/DE-MUS-356214#! DE-MUS-356214 ""Die Scheune"" Alt Kämpken +http://lobid.org/organisations/DE-MUS-357311#! DE-MUS-357311 Hebezeug-Museum mit alter Windenschmiede +http://lobid.org/organisations/DE-MUS-357717#! DE-MUS-357717 Fossilienmuseum +http://lobid.org/organisations/DE-MUS-358814#! DE-MUS-358814 Heimatmuseum Stromberg +http://lobid.org/organisations/DE-MUS-358918#! DE-MUS-358918 Museum im Eulenthurm +http://lobid.org/organisations/DE-MUS-359817#! DE-MUS-359817 Albert-Weisgerber-Sammlung +http://lobid.org/organisations/DE-MUS-360812#! DE-MUS-360812 Iwalewahaus +http://lobid.org/organisations/DE-MUS-361013#! DE-MUS-361013 Schloßmuseum Egg +http://lobid.org/organisations/DE-MUS-362714#! DE-MUS-362714 Kleines Kirchengeschichtsmuseum St. Gumbertus +http://lobid.org/organisations/DE-MUS-363613#! DE-MUS-363613 Schiefermuseum Ludwigstadt +http://lobid.org/organisations/DE-MUS-364814#! DE-MUS-364814 Bayerisches Eisenbahnmuseum e.V. +http://lobid.org/organisations/DE-MUS-364918#! DE-MUS-364918 Uhrenmuseum Karl Gebhardt +http://lobid.org/organisations/DE-MUS-366216#! DE-MUS-366216 Oberfränkisches Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-369611#! DE-MUS-369611 Hochschulkundliche Sammlung des Instituts für Hochschulkunde +http://lobid.org/organisations/DE-MUS-371015#! DE-MUS-371015 Römerhaus +http://lobid.org/organisations/DE-MUS-371213#! DE-MUS-371213 Stadtmauermuseum +http://lobid.org/organisations/DE-MUS-371317#! DE-MUS-371317 Stiftung Flößerei- und Verkehrsmuseum +http://lobid.org/organisations/DE-MUS-371619#! DE-MUS-371619 Gmünder Silberwaren- u. Bijouteriemuseum Ott-Pausersche Fabrik +http://lobid.org/organisations/DE-MUS-372310#! DE-MUS-372310 Waldmuseum, Watterbacher Haus +http://lobid.org/organisations/DE-MUS-373219#! DE-MUS-373219 Fehnmuseum Eiland +http://lobid.org/organisations/DE-MUS-373719#! DE-MUS-373719 Die Drehkoite Girkhausen +http://lobid.org/organisations/DE-MUS-375111#! DE-MUS-375111 KZ Gedenkstätte Neuengamme - Aussenstelle Plattenhaus Poppenbüttel +http://lobid.org/organisations/DE-MUS-375319#! DE-MUS-375319 Archäologiepark Römische Villa Borg +http://lobid.org/organisations/DE-MUS-375611#! DE-MUS-375611 Museum für Handwerk und Postgeschichte +http://lobid.org/organisations/DE-MUS-376114#! DE-MUS-376114 Museum für dörfliche Alltagskultur Rubenheim +http://lobid.org/organisations/DE-MUS-377711#! DE-MUS-377711 Heimatmuseum Radevormwald +http://lobid.org/organisations/DE-MUS-377815#! DE-MUS-377815 Deutsches Tanzarchiv Köln +http://lobid.org/organisations/DE-MUS-378412#! DE-MUS-378412 Bandwebermuseum +http://lobid.org/organisations/DE-MUS-378516#! DE-MUS-378516 Bandwirkermuseum Ronsdorf +http://lobid.org/organisations/DE-MUS-379613#! DE-MUS-379613 Historische Fabrikanlage Barendorf+Nadelmuseum +http://lobid.org/organisations/DE-MUS-381319#! DE-MUS-381319 Bayreuther FeuerwehrMuseum e.V. +http://lobid.org/organisations/DE-MUS-381611#! DE-MUS-381611 Bauernhofmuseum Schreiner +http://lobid.org/organisations/DE-MUS-382812#! DE-MUS-382812 Kreisheimatstube Stoffenried +http://lobid.org/organisations/DE-MUS-383617#! DE-MUS-383617 Burgmuseum Altnußberg +http://lobid.org/organisations/DE-MUS-384318#! DE-MUS-384318 Heimat- und Torfmuseum Gröbenzell +http://lobid.org/organisations/DE-MUS-384412#! DE-MUS-384412 Heimatmuseum Haimhausen +http://lobid.org/organisations/DE-MUS-385217#! DE-MUS-385217 Kallmann-Museum +http://lobid.org/organisations/DE-MUS-386512#! DE-MUS-386512 Kreisgalerie +http://lobid.org/organisations/DE-MUS-387619#! DE-MUS-387619 Rieskrater-Museum +http://lobid.org/organisations/DE-MUS-389115#! DE-MUS-389115 Niederbayerisches Landwirtschaftsmuseum Regen +http://lobid.org/organisations/DE-MUS-389313#! DE-MUS-389313 Heimatmuseum Reit im Winkl +http://lobid.org/organisations/DE-MUS-391311#! DE-MUS-391311 Klostermuseum mit Bibliothek Ursberg +http://lobid.org/organisations/DE-MUS-391415#! DE-MUS-391415 Ehemalige Synagoge Urspringen +http://lobid.org/organisations/DE-MUS-392210#! DE-MUS-392210 Freilichtmuseum Scherzenmühle +http://lobid.org/organisations/DE-MUS-392616#! DE-MUS-392616 Drechsler- und Metalldrückermuseum im Wasserhaus +http://lobid.org/organisations/DE-MUS-392814#! DE-MUS-392814 Zirkelmuseum +http://lobid.org/organisations/DE-MUS-393713#! DE-MUS-393713 Heimatmuseum Wommelshausen +http://lobid.org/organisations/DE-MUS-394518#! DE-MUS-394518 Heimatmuseum +http://lobid.org/organisations/DE-MUS-395917#! DE-MUS-395917 Marienwerder-Zimmer +http://lobid.org/organisations/DE-MUS-396410#! DE-MUS-396410 Seenotrettungskreuzer Georg Breusing +http://lobid.org/organisations/DE-MUS-397611#! DE-MUS-397611 Schloss Agathenburg +http://lobid.org/organisations/DE-MUS-398114#! DE-MUS-398114 Nordwolle Delmenhorst+Nordwestdeutsches Museum für Industriekultur +http://lobid.org/organisations/DE-MUS-398510#! DE-MUS-398510 Zonengrenz-Museum Helmstedt +http://lobid.org/organisations/DE-MUS-399315#! DE-MUS-399315 Museum im Landrichterhaus +http://lobid.org/organisations/DE-MUS-399617#! DE-MUS-399617 Heimatmuseum Seelze +http://lobid.org/organisations/DE-MUS-399711#! DE-MUS-399711 Kloster Walsrode +http://lobid.org/organisations/DE-MUS-402015#! DE-MUS-402015 Purrmann-Haus Speyer +http://lobid.org/organisations/DE-MUS-403018#! DE-MUS-403018 Industriemuseum Elmshorn +http://lobid.org/organisations/DE-MUS-403518#! DE-MUS-403518 Bananen-Museum +http://lobid.org/organisations/DE-MUS-404417#! DE-MUS-404417 Museum für Rot-Kreuz-Geschichte +http://lobid.org/organisations/DE-MUS-404511#! DE-MUS-404511 Rotkreuz-Museum Essen +http://lobid.org/organisations/DE-MUS-405118#! DE-MUS-405118 StadtMuseum Bonn +http://lobid.org/organisations/DE-MUS-405212#! DE-MUS-405212 Rheinisches Malermuseum +http://lobid.org/organisations/DE-MUS-406111#! DE-MUS-406111 Designsammlung der Bergischen Universität +http://lobid.org/organisations/DE-MUS-406819#! DE-MUS-406819 Jüdisches Museum Fulda +http://lobid.org/organisations/DE-MUS-407510#! DE-MUS-407510 Kindergartenmuseum +http://lobid.org/organisations/DE-MUS-407718#! DE-MUS-407718 Heimatmuseum Weitenung +http://lobid.org/organisations/DE-MUS-408315#! DE-MUS-408315 Heimat- und Mühlenmuseum Sindringen +http://lobid.org/organisations/DE-MUS-408617#! DE-MUS-408617 Amtshofmuseum Gernsbach +http://lobid.org/organisations/DE-MUS-408711#! DE-MUS-408711 Schwarzwälder Mühlenmuseum +http://lobid.org/organisations/DE-MUS-409214#! DE-MUS-409214 Heimatmuseum Stetten +http://lobid.org/organisations/DE-MUS-409912#! DE-MUS-409912 Carl-Benz-Haus Ladenburg +http://lobid.org/organisations/DE-MUS-410719#! DE-MUS-410719 Heimatmuseum Eschach +http://lobid.org/organisations/DE-MUS-411014#! DE-MUS-411014 Heimatmuseum Malmsheim +http://lobid.org/organisations/DE-MUS-411618#! DE-MUS-411618 Museum Theo Kerg +http://lobid.org/organisations/DE-MUS-412413#! DE-MUS-412413 Museum Oberes Donautal Mühlheim+Vorderes Schloss +http://lobid.org/organisations/DE-MUS-412715#! DE-MUS-412715 Museum zur Geschichte der Juden in Kreis und Stadt Heilbronn +http://lobid.org/organisations/DE-MUS-413010#! DE-MUS-413010 Staatliches Museum für Naturkunde +http://lobid.org/organisations/DE-MUS-413312#! DE-MUS-413312 Museum Heimethus +http://lobid.org/organisations/DE-MUS-413812#! DE-MUS-413812 Heimatstuben Waldbronn-Reichenbach +http://lobid.org/organisations/DE-MUS-414513#! DE-MUS-414513 Historisches Museum Cadolzburg +http://lobid.org/organisations/DE-MUS-416217#! DE-MUS-416217 Bettina und Achim von Arnim-Museum +http://lobid.org/organisations/DE-MUS-416415#! DE-MUS-416415 Spicy's Gewürzmuseum +http://lobid.org/organisations/DE-MUS-417116#! DE-MUS-417116 Historisch-Technisches Museum Peenemünde GmbH +http://lobid.org/organisations/DE-MUS-417418#! DE-MUS-417418 Heimatmuseum Lengsdorf +http://lobid.org/organisations/DE-MUS-417918#! DE-MUS-417918 Aquarius Wassermuseum +http://lobid.org/organisations/DE-MUS-418015#! DE-MUS-418015 Medizin- und Apothekenmuseum Rhede +http://lobid.org/organisations/DE-MUS-418213#! DE-MUS-418213 LVR-Industriemuseum Papiermühle Alte Dombach +http://lobid.org/organisations/DE-MUS-418817#! DE-MUS-418817 Heimatmuseum Undenheim +http://lobid.org/organisations/DE-MUS-419414#! DE-MUS-419414 Kunstsammlung Lausitz Senftenberg +http://lobid.org/organisations/DE-MUS-420117#! DE-MUS-420117 KZ-Gedenk- und Begegnungsstätte St. Petri +http://lobid.org/organisations/DE-MUS-421818#! DE-MUS-421818 Saarländisches Schulmuseum +http://lobid.org/organisations/DE-MUS-421912#! DE-MUS-421912 Museum für ""Papier- und Buchkunst"" im Schlößle +http://lobid.org/organisations/DE-MUS-422415#! DE-MUS-422415 Heimatmuseum Giesen +http://lobid.org/organisations/DE-MUS-423616#! DE-MUS-423616 Schulhistorisches Kabinett +http://lobid.org/organisations/DE-MUS-425216#! DE-MUS-425216 Ostfriesisches Freilichtmuseum, Abt. I: Mühlenmuseum +http://lobid.org/organisations/DE-MUS-429916#! DE-MUS-429916 Gedenkstätte Todesmarsch im Belower Wald +http://lobid.org/organisations/DE-MUS-431612#! DE-MUS-431612 Luftfahrt-Museum Laatzen-Hannover e.V. +http://lobid.org/organisations/DE-MUS-431810#! DE-MUS-431810 Bockwindmühle Kästorf +http://lobid.org/organisations/DE-MUS-433410#! DE-MUS-433410 Kirschenlandmuseum Altenkirchen +http://lobid.org/organisations/DE-MUS-434517#! DE-MUS-434517 ""alte Samenklenge"" Haus der Forst- und Waldgeschichte +http://lobid.org/organisations/DE-MUS-438217#! DE-MUS-438217 Bäckereimuseum Oberwesel +http://lobid.org/organisations/DE-MUS-440215#! DE-MUS-440215 Zweibrücker Kulturgutstiftung Gehrlein-Fuchs +http://lobid.org/organisations/DE-MUS-440319#! DE-MUS-440319 Heimatmuseum Weinsheim +http://lobid.org/organisations/DE-MUS-441114#! DE-MUS-441114 Diabeteszentrum Bad Lauterberg +http://lobid.org/organisations/DE-MUS-441416#! DE-MUS-441416 Schiffahrtsmuseum Nordfriesland e.V. +http://lobid.org/organisations/DE-MUS-441614#! DE-MUS-441614 Heimatmuseum der Gemeinde Berglen +http://lobid.org/organisations/DE-MUS-441916#! DE-MUS-441916 Inselmühle (Bockwindmühle) +http://lobid.org/organisations/DE-MUS-442419#! DE-MUS-442419 Hunsrückmuseum, Abt. Schinderhannesturm +http://lobid.org/organisations/DE-MUS-443318#! DE-MUS-443318 Freilichtmuseum Dorfstube Ötlingen +http://lobid.org/organisations/DE-MUS-446015#! DE-MUS-446015 Hohenhof / Osthaus Museums Hagen +http://lobid.org/organisations/DE-MUS-446213#! DE-MUS-446213 Burgmuseum Horn-Bad Meinberg +http://lobid.org/organisations/DE-MUS-446911#! DE-MUS-446911 Besucher-Bergwerk und Museum Kleinenbremen gGmbH +http://lobid.org/organisations/DE-MUS-448615#! DE-MUS-448615 Museum im Amtshaus +http://lobid.org/organisations/DE-MUS-449618#! DE-MUS-449618 Domschatz Quedlinburg +http://lobid.org/organisations/DE-MUS-451314#! DE-MUS-451314 Haus der Geschichte Baden-Württembergs +http://lobid.org/organisations/DE-MUS-451512#! DE-MUS-451512 Landwirtschaftsmuseum +http://lobid.org/organisations/DE-MUS-451814#! DE-MUS-451814 Alpines Museum des DAV +http://lobid.org/organisations/DE-MUS-452713#! DE-MUS-452713 Brandenburgische Landesmuseen f. mod. Kunst+Museum ""Junge Kunst"" in der Rathaushalle +http://lobid.org/organisations/DE-MUS-453612#! DE-MUS-453612 Festungsturm Peitz +http://lobid.org/organisations/DE-MUS-456319#! DE-MUS-456319 Heimatstube Groß Denkte +http://lobid.org/organisations/DE-MUS-457218#! DE-MUS-457218 Heimatstube Gadenstedt +http://lobid.org/organisations/DE-MUS-457510#! DE-MUS-457510 Heimat-Museum Groß-Gleidingen +http://lobid.org/organisations/DE-MUS-460417#! DE-MUS-460417 Textil- und Rennsportmuseum +http://lobid.org/organisations/DE-MUS-460615#! DE-MUS-460615 Besucherbergwerk, Abt. Tiefer-Bünau-Stollen +http://lobid.org/organisations/DE-MUS-460813#! DE-MUS-460813 Gedenkstätte Feldscheune Isenschnibbe Gardelegen +http://lobid.org/organisations/DE-MUS-461712#! DE-MUS-461712 Brauereimuseum Luisenthal - Stutzhäuser Brauerei Luisenthal +http://lobid.org/organisations/DE-MUS-463010#! DE-MUS-463010 Technisches Museum 'Gesenkschmiede' +http://lobid.org/organisations/DE-MUS-463416#! DE-MUS-463416 Deutsches Drahtmuseum +http://lobid.org/organisations/DE-MUS-463614#! DE-MUS-463614 Dorfmuseum Grube +http://lobid.org/organisations/DE-MUS-463718#! DE-MUS-463718 Heimatmuseum Hans von Holdt +http://lobid.org/organisations/DE-MUS-464419#! DE-MUS-464419 Heimatmuseum Burg Dringenberg +http://lobid.org/organisations/DE-MUS-464513#! DE-MUS-464513 Korbmacher-Museum Dalhausen +http://lobid.org/organisations/DE-MUS-464711#! DE-MUS-464711 Dorfmuseum +http://lobid.org/organisations/DE-MUS-467418#! DE-MUS-467418 Samenhandelsmuseum Gönningen +http://lobid.org/organisations/DE-MUS-467710#! DE-MUS-467710 Ausstellung ""Der Orientmaler Gustav Bauernfeind"" +http://lobid.org/organisations/DE-MUS-468411#! DE-MUS-468411 Pompejanum +http://lobid.org/organisations/DE-MUS-468619#! DE-MUS-468619 Universitätsmuseum Islamische Kunst +http://lobid.org/organisations/DE-MUS-469112#! DE-MUS-469112 Museum Abodiacum +http://lobid.org/organisations/DE-MUS-470513#! DE-MUS-470513 Historischer Hafen Berlin +http://lobid.org/organisations/DE-MUS-470711#! DE-MUS-470711 Potsdam-Museum / Informationsausstellung 'Potsdam und der 20. Juli 1944' +http://lobid.org/organisations/DE-MUS-471818#! DE-MUS-471818 Besucherbergwerk mit Museum Diemelsee +http://lobid.org/organisations/DE-MUS-472717#! DE-MUS-472717 Fritz Best-Museum +http://lobid.org/organisations/DE-MUS-472811#! DE-MUS-472811 Heimatmuseum Meinhard +http://lobid.org/organisations/DE-MUS-473918#! DE-MUS-473918 Heimatstube Brunkensen +http://lobid.org/organisations/DE-MUS-474515#! DE-MUS-474515 Blankschmiede Neimke +http://lobid.org/organisations/DE-MUS-475914#! DE-MUS-475914 Stadtmuseum Nordhorn +http://lobid.org/organisations/DE-MUS-476615#! DE-MUS-476615 Dörpmuseum Münkeboe +http://lobid.org/organisations/DE-MUS-476719#! DE-MUS-476719 NS-Dokumentationsstelle der Stadt Krefeld/Villa Merländer +http://lobid.org/organisations/DE-MUS-477316#! DE-MUS-477316 Heimathaus im Backhaus in Flierich +http://lobid.org/organisations/DE-MUS-478715#! DE-MUS-478715 Heimatmuseum Saerbeck +http://lobid.org/organisations/DE-MUS-478819#! DE-MUS-478819 Heimatstube ""Am Grevendiek"" +http://lobid.org/organisations/DE-MUS-482219#! DE-MUS-482219 Freilichtmuseum Molfsee - Landesmuseum für Volkskunde +http://lobid.org/organisations/DE-MUS-482615#! DE-MUS-482615 Mühle Anna +http://lobid.org/organisations/DE-MUS-482719#! DE-MUS-482719 Museum auf der Klosterinsel, AG Heimatsammlung +http://lobid.org/organisations/DE-MUS-483410#! DE-MUS-483410 Möllner Museum - Eulenspiegel Museum +http://lobid.org/organisations/DE-MUS-483816#! DE-MUS-483816 Nicolaus Schmidt-Cünzel Wohn- und Geburtshaus +http://lobid.org/organisations/DE-MUS-484913#! DE-MUS-484913 Gedenk- und Dokumentationsstätte KZ Drütte +http://lobid.org/organisations/DE-MUS-485114#! DE-MUS-485114 Bauernhaus Habach +http://lobid.org/organisations/DE-38-234#! DE-38-234 38/234 Lehrstuhl für Bürgerliches Recht und Rechtstheorie, Bibliothek +http://lobid.org/organisations/DE-MUS-486815#! DE-MUS-486815 Technisches Museum Turmwindmühle +http://lobid.org/organisations/DE-MUS-487214#! DE-MUS-487214 Technisches Denkmal Ziegelei Hundisburg +http://lobid.org/organisations/DE-MUS-488019#! DE-MUS-488019 Heimatstube Bad Suderode +http://lobid.org/organisations/DE-MUS-490319#! DE-MUS-490319 Gedenkstätte Hassenhausen 1806 +http://lobid.org/organisations/DE-MUS-490611#! DE-MUS-490611 Museum Tabakspeicher +http://lobid.org/organisations/DE-MUS-491010#! DE-MUS-491010 Museum Arbeit am Rhein +http://lobid.org/organisations/DE-MUS-491114#! DE-MUS-491114 Heimatmuseum Goldscheuer +http://lobid.org/organisations/DE-MUS-491312#! DE-MUS-491312 Riedmuseum Ottersdorf +http://lobid.org/organisations/DE-MUS-491416#! DE-MUS-491416 Tettnanger Hopfenmuseum +http://lobid.org/organisations/DE-MUS-492711#! DE-MUS-492711 Friseur Museum +http://lobid.org/organisations/DE-MUS-495314#! DE-MUS-495314 Hans-Grade-Museum +http://lobid.org/organisations/DE-MUS-496619#! DE-MUS-496619 Kulturzentrum Sinsteden+Kreislandwirtschaftsmuseum+Skulpturen-Hallen +http://lobid.org/organisations/DE-MUS-496713#! DE-MUS-496713 Heinz Nixdorf Museumsforum +http://lobid.org/organisations/DE-MUS-497518#! DE-MUS-497518 Museumshof Senne +http://lobid.org/organisations/DE-MUS-613616#! DE-MUS-613616 Ausstellungen im Haus der Kultur +http://lobid.org/organisations/DE-MUS-618517#! DE-MUS-618517 Kommunale Galerie Berlin +http://lobid.org/organisations/DE-MUS-621414#! DE-MUS-621414 Das verborgene Museum +http://lobid.org/organisations/DE-MUS-628519#! DE-MUS-628519 Stadtgalerie Kiel +http://lobid.org/organisations/DE-MUS-636213#! DE-MUS-636213 Meyerhof / Abt. Kunstgewerbehaus +http://lobid.org/organisations/DE-MUS-664713#! DE-MUS-664713 Galerie für Zeitgenössische Kunst Leipzig +http://lobid.org/organisations/DE-MUS-664817#! DE-MUS-664817 Cranach-Haus +http://lobid.org/organisations/DE-MUS-704212#! DE-MUS-704212 Bajuwarenhof Kirchheim +http://lobid.org/organisations/DE-MUS-704316#! DE-MUS-704316 Museum in der Präparandenschule +http://lobid.org/organisations/DE-MUS-704712#! DE-MUS-704712 Vermessungshistorische Ausstellung +http://lobid.org/organisations/DE-MUS-705319#! DE-MUS-705319 Kunststiftung Erich Hauser +http://lobid.org/organisations/DE-MUS-705517#! DE-MUS-705517 Heimatmuseum Stupferich +http://lobid.org/organisations/DE-MUS-706510#! DE-MUS-706510 Eisenhütten- und Fischereimuseum Peitz +http://lobid.org/organisations/DE-MUS-706916#! DE-MUS-706916 Konrad-Duden-Museum +http://lobid.org/organisations/DE-MUS-707117#! DE-MUS-707117 Stadtmuseum Kelsterbach +http://lobid.org/organisations/DE-MUS-707419#! DE-MUS-707419 Biebergrundmuseum +http://lobid.org/organisations/DE-MUS-709217#! DE-MUS-709217 August-Becker-Museum +http://lobid.org/organisations/DE-MUS-709311#! DE-MUS-709311 Vulkanhaus Strohn +http://lobid.org/organisations/DE-MUS-709415#! DE-MUS-709415 Archäologiepark Belginum +http://lobid.org/organisations/DE-MUS-711111#! DE-MUS-711111 Handwerkerstuben im ""Oberen-Tor"" +http://lobid.org/organisations/DE-MUS-711319#! DE-MUS-711319 Steinzeitpark Dithmarschen, Steinzeitdorf +http://lobid.org/organisations/DE-MUS-711611#! DE-MUS-711611 Künstlermuseum Heikendorf +http://lobid.org/organisations/DE-MUS-711913#! DE-MUS-711913 Carl Zeiss Naturzentrum Norddorf +http://lobid.org/organisations/DE-MUS-713419#! DE-MUS-713419 Museum Kirche zum Heiligen Kreuz +http://lobid.org/organisations/DE-MUS-714016#! DE-MUS-714016 Ackerbürger- und Bienenmuseum Reichenbach +http://lobid.org/organisations/DE-MUS-716012#! DE-MUS-716012 Heimat- und Industriemuseum Wackersdorf +http://lobid.org/organisations/DE-MUS-717119#! DE-MUS-717119 Puppentheater-Museum Berlin +http://lobid.org/organisations/DE-MUS-717411#! DE-MUS-717411 Gildehauser Ostmühle +http://lobid.org/organisations/DE-MUS-717515#! DE-MUS-717515 Rickmer Rickmers +http://lobid.org/organisations/DE-MUS-719813#! DE-MUS-719813 Museum-Scheuerle +http://lobid.org/organisations/DE-MUS-720714#! DE-MUS-720714 Römische Badruine Hüfingen mit Museum +http://lobid.org/organisations/DE-MUS-720818#! DE-MUS-720818 Knielinger Museum +http://lobid.org/organisations/DE-MUS-721415#! DE-MUS-721415 Pforzheim Galerie +http://lobid.org/organisations/DE-MUS-722116#! DE-MUS-722116 Webereimuseum +http://lobid.org/organisations/DE-MUS-722918#! DE-MUS-722918 Museum Sammlung Nuss +http://lobid.org/organisations/DE-MUS-723213#! DE-MUS-723213 Museum der 50er Jahre +http://lobid.org/organisations/DE-MUS-723713#! DE-MUS-723713 Wilhelm-Busch-Zimmer +http://lobid.org/organisations/DE-MUS-724810#! DE-MUS-724810 ""Haus der Naturpflege"" e.V. +http://lobid.org/organisations/DE-MUS-725313#! DE-MUS-725313 Schulmuseum Blumberg +http://lobid.org/organisations/DE-MUS-727319#! DE-MUS-727319 Feuerwehrmuseum Welzow e.V. +http://lobid.org/organisations/DE-MUS-727413#! DE-MUS-727413 Heimatmuseum Hennickendorf +http://lobid.org/organisations/DE-MUS-727819#! DE-MUS-727819 Wendisch-Deutsches Heimatmuseum +http://lobid.org/organisations/DE-MUS-727913#! DE-MUS-727913 Heimatstube Klaushagen +http://lobid.org/organisations/DE-MUS-728718#! DE-MUS-728718 ""Heimatstube"" Leipe +http://lobid.org/organisations/DE-MUS-728916#! DE-MUS-728916 Heimatstube und Uhrenmuseum Lindenau +http://lobid.org/organisations/DE-MUS-729513#! DE-MUS-729513 Heimatmuseum im Haus des Gastes +http://lobid.org/organisations/DE-MUS-729711#! DE-MUS-729711 Heimatstube Neurüdnitz +http://lobid.org/organisations/DE-MUS-730518#! DE-MUS-730518 ""Friedensmühle"" Petkus +http://lobid.org/organisations/DE-MUS-730716#! DE-MUS-730716 Museum - Natur und Geschichte erleben +http://lobid.org/organisations/DE-MUS-731511#! DE-MUS-731511 Heimatstube Schmerkendorf +http://lobid.org/organisations/DE-MUS-732410#! DE-MUS-732410 Dorfmuseum Wahlsdorf +http://lobid.org/organisations/DE-MUS-734312#! DE-MUS-734312 Schul- und Bethaus Altlangsow +http://lobid.org/organisations/DE-MUS-736110#! DE-MUS-736110 Freilichtmuseum Keltischer Fürstensitz Heuneburg +http://lobid.org/organisations/DE-MUS-736318#! DE-MUS-736318 Buchheim Museum der Phantasie +http://lobid.org/organisations/DE-MUS-737415#! DE-MUS-737415 SPSG / Schloß Glienicke +http://lobid.org/organisations/DE-MUS-737519#! DE-MUS-737519 Zollmuseum Friedrichs +http://lobid.org/organisations/DE-MUS-738012#! DE-MUS-738012 Natur-Schatzkammer u. Paradiesgarten +http://lobid.org/organisations/DE-MUS-740218#! DE-MUS-740218 Museum für Alltagsgeschichte Brühl +http://lobid.org/organisations/DE-MUS-741117#! DE-MUS-741117 Schleiferei Wipperkotten +http://lobid.org/organisations/DE-MUS-741815#! DE-MUS-741815 Nibelungenmuseum +http://lobid.org/organisations/DE-MUS-743113#! DE-MUS-743113 Guttempler-Museum-Mildstedt +http://lobid.org/organisations/DE-MUS-743415#! DE-MUS-743415 Knüttel Museum +http://lobid.org/organisations/DE-MUS-743717#! DE-MUS-743717 Deutsches Baumschulmuseum +http://lobid.org/organisations/DE-MUS-744012#! DE-MUS-744012 Ostdeutsches Heimatmuseum Schleswig +http://lobid.org/organisations/DE-MUS-744116#! DE-MUS-744116 Sammlung Heppelmann +http://lobid.org/organisations/DE-MUS-746716#! DE-MUS-746716 Bach-Stammhaus Wechmar, Museum der Thüringer Spielleute und Instrumentenbauer +http://lobid.org/organisations/DE-MUS-747115#! DE-MUS-747115 Museum Triptis +http://lobid.org/organisations/DE-MUS-747313#! DE-MUS-747313 Museum für Gerberei- und Stadtgeschichte +http://lobid.org/organisations/DE-MUS-748910#! DE-MUS-748910 Holzschnitt-Museum Klaus Herzer +http://lobid.org/organisations/DE-MUS-749611#! DE-MUS-749611 Spielzeugmuseum Beilngries +http://lobid.org/organisations/DE-MUS-749715#! DE-MUS-749715 Museum Maxhütte Bergen +http://lobid.org/organisations/DE-MUS-750012#! DE-MUS-750012 Dorfmuseum im Hölzler +http://lobid.org/organisations/DE-MUS-750418#! DE-MUS-750418 Lechner Museum +http://lobid.org/organisations/DE-MUS-750918#! DE-MUS-750918 Museum im Schmidt-Haus +http://lobid.org/organisations/DE-MUS-751213#! DE-MUS-751213 Klepper-Museum e.V. +http://lobid.org/organisations/DE-MUS-752018#! DE-MUS-752018 Zille Museum +http://lobid.org/organisations/DE-MUS-753219#! DE-MUS-753219 DDR-Museum im ""Film-Palast"" +http://lobid.org/organisations/DE-MUS-754514#! DE-MUS-754514 Junges Museum Speyer +http://lobid.org/organisations/DE-MUS-754618#! DE-MUS-754618 Orgel ART Museum Rhein-Nahe +http://lobid.org/organisations/DE-MUS-754712#! DE-MUS-754712 Historama Hornbach +http://lobid.org/organisations/DE-MUS-755215#! DE-MUS-755215 Marta Herford gGmbH +http://lobid.org/organisations/DE-MUS-755517#! DE-MUS-755517 Museum für Druckgeschichte und Buchherstellung +http://lobid.org/organisations/DE-MUS-756114#! DE-MUS-756114 Caricatura Museum Frankfurt +http://lobid.org/organisations/DE-MUS-756416#! DE-MUS-756416 Deutsche Zweiradsammlung +http://lobid.org/organisations/DE-MUS-757315#! DE-MUS-757315 Historische Schiffsmühle +http://lobid.org/organisations/DE-MUS-757513#! DE-MUS-757513 Günter-Grass-Haus +http://lobid.org/organisations/DE-MUS-757815#! DE-MUS-757815 Joachim-Ringelnatz-Museum +http://lobid.org/organisations/DE-MUS-758110#! DE-MUS-758110 Museum für Landtechnik +http://lobid.org/organisations/DE-MUS-758912#! DE-MUS-758912 Exposeeum e.V. +http://lobid.org/organisations/DE-MUS-759519#! DE-MUS-759519 Heimatmuseum in der Alten Mühle +http://lobid.org/organisations/DE-MUS-759613#! DE-MUS-759613 Museum im Fruchtkasten Herrenberg +http://lobid.org/organisations/DE-MUS-759811#! DE-MUS-759811 Alte Mühle +http://lobid.org/organisations/DE-MUS-762218#! DE-MUS-762218 Museum im Bierlinghaus +http://lobid.org/organisations/DE-MUS-762614#! DE-MUS-762614 Museum Kutz - Kommunikationstechnik und -geschichte +http://lobid.org/organisations/DE-MUS-763315#! DE-MUS-763315 Stiftung Herzoglicher Kunstbesitz SCG - Schloß Callenberg+Deutsches Schützenmuseum +http://lobid.org/organisations/DE-MUS-763419#! DE-MUS-763419 Altmühlthaler Mühlenmuseum +http://lobid.org/organisations/DE-MUS-764412#! DE-MUS-764412 Museum Flederwisch +http://lobid.org/organisations/DE-MUS-764610#! DE-MUS-764610 Museum Aschenbrenner +http://lobid.org/organisations/DE-MUS-765019#! DE-MUS-765019 Zeit und Raum Museum am Rathaus +http://lobid.org/organisations/DE-MUS-766314#! DE-MUS-766314 Heimat- und Industriemuseum Kolbermoor +http://lobid.org/organisations/DE-MUS-766814#! DE-MUS-766814 Lechflößermuseum Lechbruck +http://lobid.org/organisations/DE-MUS-768612#! DE-MUS-768612 Heimathaus Nesselwang +http://lobid.org/organisations/DE-MUS-768810#! DE-MUS-768810 Löhe-Zeit-Museum Neuendettelsau +http://lobid.org/organisations/DE-MUS-770016#! DE-MUS-770016 Heimatmuseum Rattenberg +http://lobid.org/organisations/DE-MUS-772012#! DE-MUS-772012 Feringer Sach +http://lobid.org/organisations/DE-MUS-772314#! DE-MUS-772314 Heimatmuseum Weisendorf +http://lobid.org/organisations/DE-MUS-772512#! DE-MUS-772512 Modellbahnmuseum Muggendorf +http://lobid.org/organisations/DE-MUS-772814#! DE-MUS-772814 Städtisches Museum Zirndorf +http://lobid.org/organisations/DE-MUS-773119#! DE-MUS-773119 Hoamatstubn des Trachtenvereins Georgenstoana +http://lobid.org/organisations/DE-MUS-773317#! DE-MUS-773317 Jagerhaus Gmund +http://lobid.org/organisations/DE-MUS-774018#! DE-MUS-774018 Staffelseemuseum +http://lobid.org/organisations/DE-MUS-774216#! DE-MUS-774216 Heimatmuseum der Gemeinde Uffing a. Staffelsee +http://lobid.org/organisations/DE-MUS-775917#! DE-MUS-775917 Museum Papiermühle Plöger +http://lobid.org/organisations/DE-MUS-777215#! DE-MUS-777215 tim - Staatliches Textil- und Industriemuseum Augsburg +http://lobid.org/organisations/DE-MUS-778114#! DE-MUS-778114 Erstes Deutsches Fliesenmuseum +http://lobid.org/organisations/DE-MUS-778510#! DE-MUS-778510 Museum für Blechspielzeug und mechan. Musikinstrumente +http://lobid.org/organisations/DE-MUS-778916#! DE-MUS-778916 Waldmuseum 'Lütt Holthus' +http://lobid.org/organisations/DE-MUS-779211#! DE-MUS-779211 Mühlenhof Altkalen +http://lobid.org/organisations/DE-MUS-779315#! DE-MUS-779315 Erstes Buchdruckmuseum Mecklenburg-Vorpommern +http://lobid.org/organisations/DE-MUS-780518#! DE-MUS-780518 Heimatstube Wesenberg +http://lobid.org/organisations/DE-MUS-780612#! DE-MUS-780612 Von Huus un Acker +http://lobid.org/organisations/DE-MUS-781417#! DE-MUS-781417 Heimatstube Gnoien +http://lobid.org/organisations/DE-MUS-781511#! DE-MUS-781511 Heimatstube Glashütte +http://lobid.org/organisations/DE-MUS-782118#! DE-MUS-782118 Der Palast der Projekte +http://lobid.org/organisations/DE-MUS-782212#! DE-MUS-782212 Sammlung Nachtmann+Museen im Marstall +http://lobid.org/organisations/DE-MUS-783517#! DE-MUS-783517 Romantik Bad Rehburg +http://lobid.org/organisations/DE-MUS-784312#! DE-MUS-784312 Harry's klingendes Museum +http://lobid.org/organisations/DE-MUS-784812#! DE-MUS-784812 Heider Heimatmuseum, Museumsinsel Lüttenheid +http://lobid.org/organisations/DE-MUS-784916#! DE-MUS-784916 Badisches Schulmuseum Karlsruhe e.V. +http://lobid.org/organisations/DE-MUS-785211#! DE-MUS-785211 Museum Frieder Burda +http://lobid.org/organisations/DE-MUS-786412#! DE-MUS-786412 Wasserkraftwerk Neue Mühle / Energietechnikmuseum +http://lobid.org/organisations/DE-MUS-786610#! DE-MUS-786610 BMF-Museum +http://lobid.org/organisations/DE-MUS-787019#! DE-MUS-787019 Deutsches Taubenmuseum Nürnberg +http://lobid.org/organisations/DE-MUS-787613#! DE-MUS-787613 Dorfmuseum Tremmen +http://lobid.org/organisations/DE-MUS-789619#! DE-MUS-789619 Druckereimuseum und Schaudepot im Benaryspeicher +http://lobid.org/organisations/DE-MUS-790916#! DE-MUS-790916 Gedenkstätte Ahrensbök +http://lobid.org/organisations/DE-MUS-791211#! DE-MUS-791211 Dorfmuseum Haselau +http://lobid.org/organisations/DE-MUS-791617#! DE-MUS-791617 Westfälisches Pferdemuseum Münster gGmbH +http://lobid.org/organisations/DE-MUS-791711#! DE-MUS-791711 Deutsches Stuhlmuseum Eimbeckhausen e.V. +http://lobid.org/organisations/DE-MUS-792516#! DE-MUS-792516 Johann-Joachim-Quantz-Ausstellung +http://lobid.org/organisations/DE-MUS-792610#! DE-MUS-792610 Regional-Museum Sehnde e.V. +http://lobid.org/organisations/DE-MUS-793019#! DE-MUS-793019 Außenstelle Schulmuseum +http://lobid.org/organisations/DE-MUS-793415#! DE-MUS-793415 Kartoffelmuseum Brillit +http://lobid.org/organisations/DE-MUS-794418#! DE-MUS-794418 Städtisches Spixmuseum +http://lobid.org/organisations/DE-MUS-794814#! DE-MUS-794814 Bergbaumuseum Deuben +http://lobid.org/organisations/DE-MUS-795119#! DE-MUS-795119 Garnisonmuseum Ludwigsburg +http://lobid.org/organisations/DE-MUS-795619#! DE-MUS-795619 Bischofsresidenz Burg Ziesar+Museum für brandenburgische Kirchen- und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-795817#! DE-MUS-795817 Museum Kirtorf +http://lobid.org/organisations/DE-MUS-797115#! DE-MUS-797115 Schott GlasMuseum und Schott Villa +http://lobid.org/organisations/DE-MUS-797313#! DE-MUS-797313 Historisches Glasapparatemuseum +http://lobid.org/organisations/DE-MUS-798212#! DE-MUS-798212 Literaturmuseum der Moderne +http://lobid.org/organisations/DE-MUS-798514#! DE-MUS-798514 Museum Rohrhirschmühle +http://lobid.org/organisations/DE-MUS-798712#! DE-MUS-798712 Das Auswanderermuseum Hamburg +http://lobid.org/organisations/DE-MUS-798910#! DE-MUS-798910 Heimatmuseum Hachborn +http://lobid.org/organisations/DE-MUS-799215#! DE-MUS-799215 Heimatmuseum Eichenzell +http://lobid.org/organisations/DE-MUS-799913#! DE-MUS-799913 Erich Kästner Museum +http://lobid.org/organisations/DE-MUS-800815#! DE-MUS-800815 Borlachmuseum Bad Dürrenberg +http://lobid.org/organisations/DE-MUS-802415#! DE-MUS-802415 Museum Coswig +http://lobid.org/organisations/DE-MUS-802717#! DE-MUS-802717 Anhaltische Gemäldegalerie, Georgium +http://lobid.org/organisations/DE-MUS-806917#! DE-MUS-806917 Naumann-Museum +http://lobid.org/organisations/DE-MUS-807816#! DE-MUS-807816 Kunstmuseum Kloster Unser lieben Frauen +http://lobid.org/organisations/DE-MUS-808215#! DE-MUS-808215 Gottfried-August-Bürger-Museum+Literaturmuseum +http://lobid.org/organisations/DE-MUS-808517#! DE-MUS-808517 Kulturstiftung DessauWörlitz, Museum Schloss Oranienbaum +http://lobid.org/organisations/DE-MUS-808611#! DE-MUS-808611 Kreismuseum Osterburg +http://lobid.org/organisations/DE-MUS-808819#! DE-MUS-808819 Museum Petersberg +http://lobid.org/organisations/DE-MUS-809010#! DE-MUS-809010 Städtische Museen Quedlinburg / Klopstockhaus +http://lobid.org/organisations/DE-MUS-809114#! DE-MUS-809114 Städtische Museen Quedlinburg / Ständerbauhaus +http://lobid.org/organisations/DE-MUS-809416#! DE-MUS-809416 Barbarossahöhle +http://lobid.org/organisations/DE-MUS-811414#! DE-MUS-811414 Harzmuseum Wernigerode +http://lobid.org/organisations/DE-MUS-811810#! DE-MUS-811810 Stiftung Luthergedenkstätten / Melanchthonhaus +http://lobid.org/organisations/DE-MUS-812719#! DE-MUS-812719 Arbeits-und Wohnräume v. Bertolt Brecht u. Helene Weigel +http://lobid.org/organisations/DE-MUS-813014#! DE-MUS-813014 Stadtmuseum Berlin / Märkisches Museum +http://lobid.org/organisations/DE-MUS-814319#! DE-MUS-814319 Museum für Spätantike und Byzantinische Kunst SMB +http://lobid.org/organisations/DE-MUS-817412#! DE-MUS-817412 Mori-Ogai-Gedenkstätte +http://lobid.org/organisations/DE-MUS-817516#! DE-MUS-817516 Museum Berlin-Karlshorst +http://lobid.org/organisations/DE-MUS-819418#! DE-MUS-819418 Oderbruch Museum Altranft +http://lobid.org/organisations/DE-MUS-820913#! DE-MUS-820913 Gedenkstätte für die Opfer der Euthanasie-Morde in Brandenburg an der Havel +http://lobid.org/organisations/DE-MUS-821114#! DE-MUS-821114 Dommuseum des Domstifts Brandenburg +http://lobid.org/organisations/DE-MUS-822117#! DE-MUS-822117 Bockwindmühle Dörgenhausen +http://lobid.org/organisations/DE-MUS-823912#! DE-MUS-823912 Klostermuseum Kloster Zinna +http://lobid.org/organisations/DE-MUS-824217#! DE-MUS-824217 Antifaschistische Mahn- und Gedenkstätte Lieberose +http://lobid.org/organisations/DE-MUS-824717#! DE-MUS-824717 Thaer-Gedenkstätte Möglin +http://lobid.org/organisations/DE-MUS-825012#! DE-MUS-825012 Museum Neuruppin +http://lobid.org/organisations/DE-MUS-825710#! DE-MUS-825710 Stadt- und Regionalmuseum Perleberg +http://lobid.org/organisations/DE-MUS-826015#! DE-MUS-826015 SPSG / Historische Stätte der Potsdamer Konferenz / Schloß Cecilienhof +http://lobid.org/organisations/DE-MUS-826317#! DE-MUS-826317 Filmmuseum Potsdam - Institut der Filmuniversität Babelsberg KONRAD WOLF +http://lobid.org/organisations/DE-MUS-826411#! DE-MUS-826411 Naturkundemuseum Potsdam +http://lobid.org/organisations/DE-MUS-826911#! DE-MUS-826911 SPSG / Neues Palais +http://lobid.org/organisations/DE-MUS-827018#! DE-MUS-827018 SPSG / Orangerieschloss +http://lobid.org/organisations/DE-MUS-827216#! DE-MUS-827216 SPSG / Schloß Charlottenhof +http://lobid.org/organisations/DE-MUS-827518#! DE-MUS-827518 Kulturhistorisches Museum Prenzlau +http://lobid.org/organisations/DE-MUS-828511#! DE-MUS-828511 Stadtmuseum Schwedt/Oder +http://lobid.org/organisations/DE-MUS-828615#! DE-MUS-828615 Seelower Höhen Gedenkstätte u. Museum +http://lobid.org/organisations/DE-MUS-829118#! DE-MUS-829118 Stadtmuseum Strausberg +http://lobid.org/organisations/DE-MUS-829712#! DE-MUS-829712 Heimatstube Wahrenbrück +http://lobid.org/organisations/DE-MUS-830519#! DE-MUS-830519 Bauernmuseum Wittstock +http://lobid.org/organisations/DE-MUS-830811#! DE-MUS-830811 Wegener-Gedenkstätte +http://lobid.org/organisations/DE-MUS-831210#! DE-MUS-831210 Otto-Lilienthal-Museum +http://lobid.org/organisations/DE-MUS-831512#! DE-MUS-831512 Salzmuseum Bad Sülze +http://lobid.org/organisations/DE-MUS-832515#! DE-MUS-832515 Museum der Stadt Friedland +http://lobid.org/organisations/DE-MUS-832911#! DE-MUS-832911 Landschulmuseum Göldenitz +http://lobid.org/organisations/DE-MUS-833216#! DE-MUS-833216 Museum Grabow +http://lobid.org/organisations/DE-MUS-833310#! DE-MUS-833310 Pommersches Landesmuseum Greifswald +http://lobid.org/organisations/DE-MUS-833518#! DE-MUS-833518 Heimatstube Groß Nemerow +http://lobid.org/organisations/DE-MUS-833716#! DE-MUS-833716 Museum der Stadt Güstrow +http://lobid.org/organisations/DE-MUS-834313#! DE-MUS-834313 Inselmuseum +http://lobid.org/organisations/DE-MUS-835514#! DE-MUS-835514 Regionalmuseum Neubrandenburg +http://lobid.org/organisations/DE-MUS-836413#! DE-MUS-836413 Heimatmuseum Rerik +http://lobid.org/organisations/DE-MUS-838711#! DE-MUS-838711 Heimatmuseum Sternberg +http://lobid.org/organisations/DE-MUS-839110#! DE-MUS-839110 Heimatmuseum Strasburg (Ilm) +http://lobid.org/organisations/DE-MUS-839214#! DE-MUS-839214 Thünenmuseum Tellow +http://lobid.org/organisations/DE-MUS-839412#! DE-MUS-839412 Heimatmuseum Tribsees mit Informationszentrum Grenztalmoor +http://lobid.org/organisations/DE-MUS-840511#! DE-MUS-840511 Perlmutter- und Heimatmuseum Adorf +http://lobid.org/organisations/DE-MUS-841212#! DE-MUS-841212 Museum Auerbach +http://lobid.org/organisations/DE-MUS-844513#! DE-MUS-844513 Heimatmuseum Dohna +http://lobid.org/organisations/DE-MUS-846415#! DE-MUS-846415 Museen der Stadt Dresden+Stadtmuseum, Carl-Maria-von-Weber-Museum +http://lobid.org/organisations/DE-MUS-847814#! DE-MUS-847814 Heimatmuseum Faktorenhof Eibau +http://lobid.org/organisations/DE-MUS-848515#! DE-MUS-848515 Städtische Sammlungen Freital +http://lobid.org/organisations/DE-MUS-850419#! DE-MUS-850419 Heimatmuseum Großröhrsdorf +http://lobid.org/organisations/DE-MUS-850617#! DE-MUS-850617 Gellert-Museum Hainichen +http://lobid.org/organisations/DE-MUS-850815#! DE-MUS-850815 Staatliche Ethnographische Sammlungen Sachsen+Völkerkundemuseum Herrnhut +http://lobid.org/organisations/DE-MUS-851714#! DE-MUS-851714 Museum der Westlausitz Kamenz +http://lobid.org/organisations/DE-MUS-852217#! DE-MUS-852217 Schwind-Pavillon Rüdigsdorf +http://lobid.org/organisations/DE-MUS-852415#! DE-MUS-852415 Friedrich-Gottlob-Keller-Museum Krippen +http://lobid.org/organisations/DE-MUS-853314#! DE-MUS-853314 Bach-Museum Leipzig +http://lobid.org/organisations/DE-MUS-854713#! DE-MUS-854713 Museum Kalkwerk Lengefeld +http://lobid.org/organisations/DE-MUS-854911#! DE-MUS-854911 Museum Schloß Kuckuckstein Liebstadt +http://lobid.org/organisations/DE-MUS-855612#! DE-MUS-855612 Mauersberger-Museum +http://lobid.org/organisations/DE-MUS-856219#! DE-MUS-856219 Deutsche Raumfahrtausstellung Morgenröthe-Rautenkranz e.V. +http://lobid.org/organisations/DE-MUS-856813#! DE-MUS-856813 Robert-Sterl-Haus +http://lobid.org/organisations/DE-MUS-857816#! DE-MUS-857816 DIE WEBEREI / Museum Oederan +http://lobid.org/organisations/DE-MUS-858715#! DE-MUS-858715 Museum der Stadt Pegau +http://lobid.org/organisations/DE-MUS-858913#! DE-MUS-858913 Plauener Spitzen Museum +http://lobid.org/organisations/DE-MUS-860713#! DE-MUS-860713 Neuberin-Museum +http://lobid.org/organisations/DE-MUS-860817#! DE-MUS-860817 Stadtmuseum Riesa +http://lobid.org/organisations/DE-MUS-861018#! DE-MUS-861018 Staatliche Schlösser, Burgen und Gärten Sachsen gGmbH, Schloss Rochlitz +http://lobid.org/organisations/DE-MUS-862115#! DE-MUS-862115 Zigarren- & Heimatmuseum Schöneck/Vogtland +http://lobid.org/organisations/DE-MUS-862417#! DE-MUS-862417 Städtische Sammlungen Sebnitz +http://lobid.org/organisations/DE-MUS-862511#! DE-MUS-862511 Erzgebirgisches Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-862615#! DE-MUS-862615 Erzgebirgisches Spielzeugmuseum Seiffen / Freilichtmuseum +http://lobid.org/organisations/DE-MUS-862917#! DE-MUS-862917 Heimatmuseum Sohland +http://lobid.org/organisations/DE-MUS-863410#! DE-MUS-863410 Städtisches Museum Taucha +http://lobid.org/organisations/DE-MUS-863816#! DE-MUS-863816 Schaubergwerk 'Herkules-Frisch-Glück' +http://lobid.org/organisations/DE-MUS-864017#! DE-MUS-864017 Heimatmuseum und Pflanzengarten der Stadt Wehlen +http://lobid.org/organisations/DE-MUS-864715#! DE-MUS-864715 Museum Schloss Wolkenstein +http://lobid.org/organisations/DE-MUS-865416#! DE-MUS-865416 Kunstsammlungen Zwickau, Max-Pechstein-Museum +http://lobid.org/organisations/DE-MUS-865614#! DE-MUS-865614 Technisches Museum Papiermühle Zwönitz +http://lobid.org/organisations/DE-MUS-865812#! DE-MUS-865812 Residenzschloss Altenburg +http://lobid.org/organisations/DE-MUS-866815#! DE-MUS-866815 Stadtmuseum im Augustinerkloster +http://lobid.org/organisations/DE-MUS-867318#! DE-MUS-867318 Museum Schloß Burgk +http://lobid.org/organisations/DE-MUS-867714#! DE-MUS-867714 Dorfmuseum Dachwig +http://lobid.org/organisations/DE-MUS-868613#! DE-MUS-868613 Thüringer Museum Eisenach/Ausstellung Predigerkirche +http://lobid.org/organisations/DE-MUS-868811#! DE-MUS-868811 Stadtmuseum Eisenberg +http://lobid.org/organisations/DE-MUS-868915#! DE-MUS-868915 Museum 'Otto Ludwig' Eisfeld +http://lobid.org/organisations/DE-MUS-870319#! DE-MUS-870319 Marienglashöhle Friedrichroda +http://lobid.org/organisations/DE-MUS-870715#! DE-MUS-870715 Museum für Angewandte Kunst +http://lobid.org/organisations/DE-MUS-871010#! DE-MUS-871010 Werratal-Museum +http://lobid.org/organisations/DE-MUS-871416#! DE-MUS-871416 Stiftung Schloß Friedenstein Gotha / Museum der Natur +http://lobid.org/organisations/DE-MUS-871510#! DE-MUS-871510 Stiftung Schloss Friedenstein Gotha / Historisches Museum +http://lobid.org/organisations/DE-MUS-872013#! DE-MUS-872013 Heimatmuseum der Stadt Greußen +http://lobid.org/organisations/DE-MUS-872419#! DE-MUS-872419 Eichsfeldmuseum +http://lobid.org/organisations/DE-MUS-872711#! DE-MUS-872711 Museum Reichenfels +http://lobid.org/organisations/DE-MUS-873110#! DE-MUS-873110 Städtische Museen Jena / Romantikerhaus +http://lobid.org/organisations/DE-MUS-873714#! DE-MUS-873714 Stadtmuseum und Kunstsammlung Jena +http://lobid.org/organisations/DE-MUS-874113#! DE-MUS-874113 Heimatmuseum Kölleda +http://lobid.org/organisations/DE-MUS-875710#! DE-MUS-875710 Steinsburgmuseum Römhild +http://lobid.org/organisations/DE-MUS-875918#! DE-MUS-875918 Thüringer Landesmuseum Heidecksburg / Schloß-, Regional- und Naturkundemuseum +http://lobid.org/organisations/DE-MUS-876317#! DE-MUS-876317 Stadtmuseum Saalfeld +http://lobid.org/organisations/DE-MUS-877018#! DE-MUS-877018 Schlossmuseum Sondershausen +http://lobid.org/organisations/DE-MUS-877310#! DE-MUS-877310 Goethemuseum Stützerbach +http://lobid.org/organisations/DE-MUS-877716#! DE-MUS-877716 Heimatmuseum Tambach-Dietharz +http://lobid.org/organisations/DE-MUS-878719#! DE-MUS-878719 Museum für Ur- und Frühgeschichte Thüringens +http://lobid.org/organisations/DE-MUS-879514#! DE-MUS-879514 Klassik Stiftung Weimar / Liszt-Haus +http://lobid.org/organisations/DE-MUS-880811#! DE-MUS-880811 Waldmuseum Stendenitz +http://lobid.org/organisations/DE-MUS-881710#! DE-MUS-881710 Heimat- und Palitzsch-Museum Prohlis +http://lobid.org/organisations/DE-MUS-881918#! DE-MUS-881918 Landschaftsmuseum der Dübener Heide +http://lobid.org/organisations/DE-MUS-882619#! DE-MUS-882619 Wilhelm Ostwald Park - Eine Einrichtung der Gerda und Klaus Tschira Stiftung +http://lobid.org/organisations/DE-MUS-886517#! DE-MUS-886517 Heimatstube Freest +http://lobid.org/organisations/DE-MUS-886611#! DE-MUS-886611 Denkmalhof Pentzin +http://lobid.org/organisations/DE-MUS-888617#! DE-MUS-888617 Burg- und Heimatmuseum ""Altes Wachhaus"" +http://lobid.org/organisations/DE-MUS-889016#! DE-MUS-889016 Hüttenmuseum Thale +http://lobid.org/organisations/DE-MUS-889516#! DE-MUS-889516 Forschungsstätte für Frühromantik und Novalis-Museum +http://lobid.org/organisations/DE-MUS-889912#! DE-MUS-889912 Franckeschen Stiftungen zu Halle +http://lobid.org/organisations/DE-MUS-890813#! DE-MUS-890813 Heimathaus +http://lobid.org/organisations/DE-MUS-891014#! DE-MUS-891014 Letschiner Heimatstuben 'Haus Birkenweg' +http://lobid.org/organisations/DE-MUS-892715#! DE-MUS-892715 Technisches Museum Syrau +http://lobid.org/organisations/DE-MUS-893510#! DE-MUS-893510 Inst. für Anatomie und Zellbiologie der Martin-Luther-Universität Halle +http://lobid.org/organisations/DE-MUS-893614#! DE-MUS-893614 Klassik Stiftung Weimar / Nietzsche-Archiv +http://lobid.org/organisations/DE-MUS-897210#! DE-MUS-897210 Prignitz-Dorf-Demerthin +http://lobid.org/organisations/DE-MUS-899310#! DE-MUS-899310 Heimatmuseum in der Klosterscheune +http://lobid.org/organisations/DE-MUS-900910#! DE-MUS-900910 Heimatmuseum Friesack +http://lobid.org/organisations/DE-MUS-901319#! DE-MUS-901319 Gedenkstätte Großbeeren 1813 +http://lobid.org/organisations/DE-MUS-902010#! DE-MUS-902010 Schloß Neuhardenberg +http://lobid.org/organisations/DE-MUS-904516#! DE-MUS-904516 Heimatstube Frauenwald +http://lobid.org/organisations/DE-MUS-904818#! DE-MUS-904818 Mühlhäuser Museen - Historische Wehranlage +http://lobid.org/organisations/DE-MUS-905519#! DE-MUS-905519 Ernst-Ludwig-Kirchner-Dokumentation +http://lobid.org/organisations/DE-MUS-906314#! DE-MUS-906314 VDI-GaraGe - gGmbH +http://lobid.org/organisations/DE-MUS-907015#! DE-MUS-907015 Museum Adorf / Klein-Vogtland-+Botanischer Garten Adorf +http://lobid.org/organisations/DE-MUS-907119#! DE-MUS-907119 Strich-Chapell-Zimmer +http://lobid.org/organisations/DE-MUS-907911#! DE-MUS-907911 Eisenbahnmuseum im Bahnhof Zollhaus +http://lobid.org/organisations/DE-MUS-908216#! DE-MUS-908216 Heimatstuben Roßfelder +http://lobid.org/organisations/DE-MUS-911311#! DE-MUS-911311 Dat Groode Hus +http://lobid.org/organisations/DE-MUS-911613#! DE-MUS-911613 Kunstmuseum Reutlingen - Galerie +http://lobid.org/organisations/DE-MUS-913817#! DE-MUS-913817 Wallfahrtsmuseum St. Leonhard +http://lobid.org/organisations/DE-MUS-914018#! DE-MUS-914018 Bauerngerätemuseum +http://lobid.org/organisations/DE-MUS-914112#! DE-MUS-914112 Befreiungshalle Kelheim +http://lobid.org/organisations/DE-MUS-915011#! DE-MUS-915011 Historisches Weberhaus Marlesreuth +http://lobid.org/organisations/DE-MUS-915417#! DE-MUS-915417 Friedrich August von Kaulbach, Museum und Galerie +http://lobid.org/organisations/DE-MUS-915719#! DE-MUS-915719 Stadtmuseum Penzberg +http://lobid.org/organisations/DE-MUS-916410#! DE-MUS-916410 Museum Viechtach +http://lobid.org/organisations/DE-MUS-916910#! DE-MUS-916910 MACHmit! Museum für Kinder +http://lobid.org/organisations/DE-MUS-917215#! DE-MUS-917215 Museum im Steintorturm +http://lobid.org/organisations/DE-MUS-917517#! DE-MUS-917517 Bauernhausmuseum und Gurkenmuseum +http://lobid.org/organisations/DE-MUS-917715#! DE-MUS-917715 Jan Bouman Haus +http://lobid.org/organisations/DE-MUS-918218#! DE-MUS-918218 DDR-Museum Dargen/Usedom e.V. +http://lobid.org/organisations/DE-MUS-918312#! DE-MUS-918312 Obstbau-Museum +http://lobid.org/organisations/DE-MUS-918416#! DE-MUS-918416 portable art museum +http://lobid.org/organisations/DE-MUS-918812#! DE-MUS-918812 LEIZA - Leibniz-Zentrum für Archäologie / Museum für Antike Schiffahrt +http://lobid.org/organisations/DE-MUS-919211#! DE-MUS-919211 Deutsches Kleingärtnermuseum +http://lobid.org/organisations/DE-MUS-919419#! DE-MUS-919419 Katharina-Luther-Stube +http://lobid.org/organisations/DE-MUS-919513#! DE-MUS-919513 Stiftung Meisterhäuser +http://lobid.org/organisations/DE-MUS-919919#! DE-MUS-919919 Papier-Museum+Papiermühle Weddersleben +http://lobid.org/organisations/DE-MUS-920018#! DE-MUS-920018 Karl-Rautenberg-Museum +http://lobid.org/organisations/DE-MUS-920112#! DE-MUS-920112 Berliner U-Bahn Museum +http://lobid.org/organisations/DE-MUS-921115#! DE-MUS-921115 Museum Papiermühle Homburg +http://lobid.org/organisations/DE-MUS-922514#! DE-MUS-922514 Alte Posthalterei - Museum Beelitz +http://lobid.org/organisations/DE-MUS-923111#! DE-MUS-923111 Niederlausitzer Sorbisches Dorfmuseum Bloischdorf +http://lobid.org/organisations/DE-MUS-924218#! DE-MUS-924218 Heimatmuseum an der Mühle +http://lobid.org/organisations/DE-MUS-924312#! DE-MUS-924312 Museum Helgoland +http://lobid.org/organisations/DE-MUS-927717#! DE-MUS-927717 Europäisches Klempner- und Kupferschmiede-Museum +http://lobid.org/organisations/DE-MUS-928314#! DE-MUS-928314 Sammlung Geyer zu Lauf +http://lobid.org/organisations/DE-MUS-928710#! DE-MUS-928710 Heimatmuseum Grafenau +http://lobid.org/organisations/DE-MUS-929015#! DE-MUS-929015 Heimatmuseum Herbrechtingen +http://lobid.org/organisations/DE-MUS-931617#! DE-MUS-931617 Heimatmuseum 'Altes Rathaus' Grünstadt +http://lobid.org/organisations/DE-MUS-931711#! DE-MUS-931711 Heimatmuseum Gundheim +http://lobid.org/organisations/DE-MUS-932912#! DE-MUS-932912 Weinbaumuseum Herrenhof +http://lobid.org/organisations/DE-MUS-934710#! DE-MUS-934710 Deutsches Telefon-Museum +http://lobid.org/organisations/DE-MUS-934918#! DE-MUS-934918 Brohltal-Schmalspureisenbahn Betriebs GmbH +http://lobid.org/organisations/DE-MUS-937115#! DE-MUS-937115 Schloß Engers +http://lobid.org/organisations/DE-MUS-937917#! DE-MUS-937917 Burg Pyrmont +http://lobid.org/organisations/DE-MUS-938410#! DE-MUS-938410 Singhofener Heimatstuben +http://lobid.org/organisations/DE-MUS-940418#! DE-MUS-940418 Römische Villa Longuich +http://lobid.org/organisations/DE-MUS-941411#! DE-MUS-941411 Heimatmuseum Zemmer +http://lobid.org/organisations/DE-MUS-941619#! DE-MUS-941619 Burg Reichenstein +http://lobid.org/organisations/DE-MUS-942612#! DE-MUS-942612 Historisches Schmucksteinbergwerk Silberschacht +http://lobid.org/organisations/DE-MUS-942716#! DE-MUS-942716 Archäologisches Museum des Historischen Vereins für Oberfranken e.V. +http://lobid.org/organisations/DE-MUS-943011#! DE-MUS-943011 Museum Bürgstadt +http://lobid.org/organisations/DE-MUS-943511#! DE-MUS-943511 Museum im Amtshausschüpfla +http://lobid.org/organisations/DE-MUS-944118#! DE-MUS-944118 Museum der Seefahrt +http://lobid.org/organisations/DE-MUS-945215#! DE-MUS-945215 Heimatstube Podersam-Jechnitz +http://lobid.org/organisations/DE-MUS-946010#! DE-MUS-946010 NEUMARKTER BRAUEREIMUSEUM +http://lobid.org/organisations/DE-MUS-946114#! DE-MUS-946114 Jüdisches Museum Synagoge Ermreuth +http://lobid.org/organisations/DE-MUS-946718#! DE-MUS-946718 Ost- und Westpreußenstiftung in Bayern e.V., Haus der Ost- und Westpreußen +http://lobid.org/organisations/DE-MUS-947211#! DE-MUS-947211 Heimatkundliche Sammlung +http://lobid.org/organisations/DE-MUS-947919#! DE-MUS-947919 Heimatmuseum Schauenstein +http://lobid.org/organisations/DE-MUS-948016#! DE-MUS-948016 Jüdisches Museum Franken, Außenstelle Schnaittach +http://lobid.org/organisations/DE-MUS-948318#! DE-MUS-948318 Heimatmuseum Stockstadt +http://lobid.org/organisations/DE-MUS-948912#! DE-MUS-948912 Schützenmuseum Weilheim +http://lobid.org/organisations/DE-MUS-949019#! DE-MUS-949019 Schatzkammer der Ev.-Luth. Andreaskirche +http://lobid.org/organisations/DE-MUS-951319#! DE-MUS-951319 Drandorfhof +http://lobid.org/organisations/DE-MUS-952510#! DE-MUS-952510 Mithrasheiligtum und Römerkeller +http://lobid.org/organisations/DE-MUS-953211#! DE-MUS-953211 Spargelmuseum +http://lobid.org/organisations/DE-MUS-954714#! DE-MUS-954714 Vineta-Museum Barth +http://lobid.org/organisations/DE-MUS-955415#! DE-MUS-955415 Heimatstube Eggesin +http://lobid.org/organisations/DE-MUS-955811#! DE-MUS-955811 Heimatstube Leopoldshagen +http://lobid.org/organisations/DE-MUS-956814#! DE-MUS-956814 Eisenbahn- und Technik Museum Rügen +http://lobid.org/organisations/DE-MUS-957213#! DE-MUS-957213 Museum im Leuchtturm +http://lobid.org/organisations/DE-MUS-957713#! DE-MUS-957713 GRENZHUS Schlagsdorf +http://lobid.org/organisations/DE-MUS-958216#! DE-MUS-958216 Dorfmuseum Zierow +http://lobid.org/organisations/DE-MUS-958310#! DE-MUS-958310 Museumshof +http://lobid.org/organisations/DE-MUS-958612#! DE-MUS-958612 Literarisches Museum 'Tschechow-Salon' +http://lobid.org/organisations/DE-MUS-960318#! DE-MUS-960318 Obervogtländisches Dorfmuseum Erlbach +http://lobid.org/organisations/DE-MUS-960610#! DE-MUS-960610 Historicum u. Winkler-Gedenkstätte +http://lobid.org/organisations/DE-MUS-961717#! DE-MUS-961717 Museum im Mendelssohn-Haus +http://lobid.org/organisations/DE-MUS-962012#! DE-MUS-962012 Memorialmuseum ""Völkerschlacht bei Leipzig 1813"" +http://lobid.org/organisations/DE-MUS-962616#! DE-MUS-962616 Glashüttenmuseum des Erzgebirges +http://lobid.org/organisations/DE-MUS-963317#! DE-MUS-963317 Erzgebirgisches Heimatmuseum ""Hospital zu St. Johannis"" +http://lobid.org/organisations/DE-MUS-963713#! DE-MUS-963713 Bäuerliches Museum Schmannewitz +http://lobid.org/organisations/DE-MUS-965917#! DE-MUS-965917 Besucherstollen Morgenstern +http://lobid.org/organisations/DE-MUS-966316#! DE-MUS-966316 Historisches Museum am Strom - Hildegard von Bingen +http://lobid.org/organisations/DE-MUS-967517#! DE-MUS-967517 Südharzer Eisenhüttenmuseum und Königshütte +http://lobid.org/organisations/DE-MUS-967913#! DE-MUS-967913 Moor- und Bauernmuseum +http://lobid.org/organisations/DE-MUS-968114#! DE-MUS-968114 Museum am Pallert +http://lobid.org/organisations/DE-MUS-970612#! DE-MUS-970612 Harsefelder Museumszug +http://lobid.org/organisations/DE-MUS-972014#! DE-MUS-972014 Bergbau- und Ziegeleimuseum Lindhorst ""Hof Gümmer"" +http://lobid.org/organisations/DE-MUS-973017#! DE-MUS-973017 Museumsscheune Reith +http://lobid.org/organisations/DE-MUS-974312#! DE-MUS-974312 Deutsches Marinemuseum Wilhelmshaven +http://lobid.org/organisations/DE-MUS-975013#! DE-MUS-975013 Reddersen-Haus +http://lobid.org/organisations/DE-MUS-975211#! DE-MUS-975211 Kreuzgang mit Klostermuseum +http://lobid.org/organisations/DE-MUS-977519#! DE-MUS-977519 Schulmuseum Grötzingen +http://lobid.org/organisations/DE-MUS-978012#! DE-MUS-978012 Heimatmuseum der Parabutscher Donauschwaben +http://lobid.org/organisations/DE-MUS-978512#! DE-MUS-978512 Museum zur Geschichte der Juden im Ostalbkreis +http://lobid.org/organisations/DE-MUS-979713#! DE-MUS-979713 Heimatmuseum Kiechlinsbergen +http://lobid.org/organisations/DE-MUS-979911#! DE-MUS-979911 J.F. Schreiber-Museum +http://lobid.org/organisations/DE-MUS-980010#! DE-MUS-980010 Lauerturm-Museum, Außenstelle des Museums Ettlingen +http://lobid.org/organisations/DE-MUS-980812#! DE-MUS-980812 Hohberger Heimatmuseum +http://lobid.org/organisations/DE-MUS-980916#! DE-MUS-980916 Korbinian-Brodmann-Museum +http://lobid.org/organisations/DE-MUS-981315#! DE-MUS-981315 Georg Elser Gedenkstätte +http://lobid.org/organisations/DE-MUS-982016#! DE-MUS-982016 Dorfmuseum Wagenschwend +http://lobid.org/organisations/DE-MUS-982214#! DE-MUS-982214 Martin-Heidegger-Museum +http://lobid.org/organisations/DE-MUS-982516#! DE-MUS-982516 Ständige Ausstellung 'Juden in Buttenhausen' +http://lobid.org/organisations/DE-MUS-983311#! DE-MUS-983311 Archäologischer Schauplatz Kappelhof +http://lobid.org/organisations/DE-MUS-985119#! DE-MUS-985119 Heimatmuseum Blankenloch +http://lobid.org/organisations/DE-MUS-985619#! DE-MUS-985619 Deutsches Dampflok- und Modelleisenbahnmuseum +http://lobid.org/organisations/DE-MUS-985713#! DE-MUS-985713 Museum im Rathaus Möhringen +http://lobid.org/organisations/DE-MUS-985817#! DE-MUS-985817 Heimatstube Nendingen +http://lobid.org/organisations/DE-MUS-986216#! DE-MUS-986216 Lichtermuseum Wettersdorf +http://lobid.org/organisations/DE-MUS-986914#! DE-MUS-986914 Bergmannshaus ""Glück Auf"" Aldenhoven +http://lobid.org/organisations/DE-MUS-988410#! DE-MUS-988410 Bienenmuseum Duisburg +http://lobid.org/organisations/DE-MUS-989715#! DE-MUS-989715 Modellbahncenter EURO TECNICA +http://lobid.org/organisations/DE-MUS-989819#! DE-MUS-989819 Besucherbergwerk ""Grube Wohlfahrt"" mit Grubenhaus +http://lobid.org/organisations/DE-MUS-991713#! DE-MUS-991713 Skulpturenpark Köln +http://lobid.org/organisations/DE-MUS-991817#! DE-MUS-991817 Straßenbahnmuseum Thielenbruch +http://lobid.org/organisations/DE-MUS-991911#! DE-MUS-991911 Museum zur Geschichte des Naturschutzes in Deutschland +http://lobid.org/organisations/DE-MUS-992716#! DE-MUS-992716 Industriemuseum Freudenthaler Sensenhammer +http://lobid.org/organisations/DE-MUS-994118#! DE-MUS-994118 Rheinbacher Kutschenmuseum +http://lobid.org/organisations/DE-MUS-996510#! DE-MUS-996510 SPSG / Damenflügel +http://lobid.org/organisations/DE-MUS-996614#! DE-MUS-996614 SPSG / Schloßküche +http://lobid.org/organisations/DE-MUS-997013#! DE-MUS-997013 Armeemuseum ""Friedrich der Große"" +http://lobid.org/organisations/DE-MUS-998412#! DE-MUS-998412 Bauernmuseum Lindena +http://lobid.org/organisations/DE-MUS-998516#! DE-MUS-998516 Dorfmuseum Lunow +http://lobid.org/organisations/DE-MUS-998610#! DE-MUS-998610 Flößereimuseum Lychen +http://lobid.org/organisations/DE-MUS-999519#! DE-MUS-999519 Heimatmuseum Ziesar +http://lobid.org/organisations/DE-1878#! DE-1878 1878 Gemeindebücherei Wildpoldsried +http://lobid.org/organisations/DE-1879#! DE-1879 1879 Schulbibliothek Gymnasium Walsrode +http://lobid.org/organisations/DE-1881#! DE-1881 1881 Gemeindebücherei Kirchlengern +http://lobid.org/organisations/DE-1886#! DE-1886 1886 Stadt Raunheim - Mediathek +http://lobid.org/organisations/DE-Due76#! DE-Due76 Dü 76 Ministerium für Heimat, Kommunales, Bauen und Gleichstellung des Landes NRW, Bibliothek +http://lobid.org/organisations/DE-77-124#! DE-77-124 77/124 Universität Mainz, Gesangbucharchiv +http://lobid.org/organisations/DE-1890#! DE-1890 1890 Maria Ward Schulstiftung Altötting, Bibliothek +http://lobid.org/organisations/DE-30-1#! DE-30-1 30/1 Universitätsbibliothek Johann Christian Senckenberg, Zentralbibliothek, Spezieller Retrobestand +http://lobid.org/organisations/DE-609-E#! DE-609-E 609/E Verbund der Öffentlichen Bibliotheken Berlins - VÖBB, Elektronische Medien +http://lobid.org/organisations/DE-B1595#! DE-B1595 B 1595 Dokumentationszentrum Flucht, Vertreibung, Versöhnung - Bibliothek & Zeitzeugenarchiv +http://lobid.org/organisations/DE-1894#! DE-1894 1894 Stadt- und Kurbibliothek Tambach-Dietharz +http://lobid.org/organisations/DE-Khm1#! DE-Khm1 Khm 1 Naxos Deutschland Musik & Video Vertriebs-GmbH +http://lobid.org/organisations/DE-1899#! DE-1899 1899 SRH Hochschule für Gesundheit, Bibliothek +http://lobid.org/organisations/DE-Y10#! DE-Y10 Y 10 Max Planck Institute Luxembourg for International, European and Regulatory Procedural Law, Library +http://lobid.org/organisations/DE-1904#! DE-1904 1904 Stadtbücherei Bad Wurzach +http://lobid.org/organisations/DE-1905#! DE-1905 1905 Stadtbücherei Haslach +http://lobid.org/organisations/DE-Hag4-3#! DE-Hag4-3 Hag 4/3 Fachhochschule Südwestfalen, Fachbibliothek Meschede +http://lobid.org/organisations/DE-1140#! DE-1140 1140 Rheinische Fachhochschule Köln gGmbH, Bibliothek +http://lobid.org/organisations/DE-1145#! DE-1145 1145 Stadtbücherei Halver +http://lobid.org/organisations/DE-82-739c#! DE-82-739c 82/739c Kieferorthopädie, Bibliothek +http://lobid.org/organisations/DE-Po83#! DE-Po83 Po 83 Institut für Binnenfischerei Potsdam-Sacrow, Bibliothek +http://lobid.org/organisations/DE-38-231#! DE-38-231 38/231 Lehrstuhl für Bürgerliches Recht, Bilanz- und Steuerrecht, Bibliothek +http://lobid.org/organisations/DE-82-722#! DE-82-722 82/722 Neugeborenen- und Konservative Kinderintensivmedizin, Bibliothek +http://lobid.org/organisations/DE-J121#! DE-J121 J 121 Thüringer Landesanstalt für Umwelt und Geologie, Bibliothek +http://lobid.org/organisations/DE-J127#! DE-J127 J 127 Thüringer Landesanstalt für Umwelt und Geologie, Außenstelle Weimar, Bibliothek +http://lobid.org/organisations/DE-1157#! DE-1157 1157 Bücherei Liederbach +http://lobid.org/organisations/DE-Bib1#! DE-Bib1 Bib 1 Wieland-Archiv Biberach, Bibliothek +http://lobid.org/organisations/DE-1162#! DE-1162 1162 Stadtbibliothek im Haus ""Zum Grünen Schild"" Bad Langensalza +http://lobid.org/organisations/DE-1165#! DE-1165 1165 Stadtbibliothek Eisenberg +http://lobid.org/organisations/DE-30-205#! DE-30-205 30/205 Theologische Zentralbibliothek +http://lobid.org/organisations/DE-1172#! DE-1172 1172 Stadtbücherei Helmstedt +http://lobid.org/organisations/DE-1174#! DE-1174 1174 Stadtbibliothek Aurich +http://lobid.org/organisations/DE-1175#! DE-1175 1175 Stadtbücherei Rinteln +http://lobid.org/organisations/DE-1188#! DE-1188 1188 Kreisbücherei Wendeburg +http://lobid.org/organisations/DE-1191#! DE-1191 1191 Samtgemeindebücherei Sittensen +http://lobid.org/organisations/DE-1197#! DE-1197 1197 Samtgemeindebücherei Salzhausen +http://lobid.org/organisations/DE-Mz1-2#! DE-Mz1-2 Mz 1/2 LEIZA - Leibniz-Zentrum für Archäologie, Forschungsbereich Vulkanologie, Archäologie und Technikgeschichte, Bibliothek +http://lobid.org/organisations/DE-1211#! DE-1211 1211 Stadtbücherei Bad Gandersheim +http://lobid.org/organisations/DE-1218#! DE-1218 1218 Stadtbücherei Visselhövede +http://lobid.org/organisations/DE-1220#! DE-1220 1220 Stadtbibliothek Meuselwitz +http://lobid.org/organisations/DE-Fn1-VS#! DE-Fn1-VS Fn 1/VS Hochschule Furtwangen University. Informatik, Technik, Wirtschaft, Medien. Campus Villingen-Schwenningen, Bibliothek +http://lobid.org/organisations/DE-Mz1#! DE-Mz1 Mz 1 LEIZA - Leibniz-Zentrum für Archäologie, Bibliothek +http://lobid.org/organisations/DE-1226#! DE-1226 1226 Stadtbibliothek Voerde +http://lobid.org/organisations/DE-1228#! DE-1228 1228 Gemeindebücherei Bienenbüttel +http://lobid.org/organisations/DE-Kn190#! DE-Kn190 Kn 190 Infoterm Library +http://lobid.org/organisations/DE-1232#! DE-1232 1232 Katholische Öffentliche Bücherei St. Johann Baptist +http://lobid.org/organisations/DE-Rav3#! DE-Rav3 Rav 3 Arbeitsgericht Ulm - Kammern Ravensburg, Bibliothek +http://lobid.org/organisations/DE-Stg276#! DE-Stg276 Stg 276 Landesarbeitsgericht Baden-Württemberg, Finanzgericht Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-U12#! DE-U12 U 12 Arbeitsgericht Ulm, Bibliothek +http://lobid.org/organisations/DE-Pfo1#! DE-Pfo1 Pfo 1 Arbeitsgericht Pforzheim, Bibliothek +http://lobid.org/organisations/DE-Loer4#! DE-Loer4 Lör 4 Arbeitsgericht Lörrach, Bibliothek +http://lobid.org/organisations/DE-82-723#! DE-82-723 82/723 Interdisziplinäre Intermediate Care, Bibliothek +http://lobid.org/organisations/DE-66-1#! DE-66-1 66/1 Hochschul- und Landesbibliothek Fulda, Wissenschaftliche Sammlung Rhön +http://lobid.org/organisations/DE-1236#! DE-1236 1236 Stadtbibliothek Hermsdorf +http://lobid.org/organisations/DE-1238#! DE-1238 1238 Stadtverwaltung Gotha, Stadtbibliothek ""Heinrich Heine"" +http://lobid.org/organisations/DE-1242#! DE-1242 1242 Stadtbibliothek Leinefelde +http://lobid.org/organisations/DE-M497#! DE-M497 M 497 Haus des Deutschen Ostens, Bibliothek +http://lobid.org/organisations/AT-UBMUL-HB#! AT-UBMUL-HB AT-UBMUL-HB Montanuniversität Leoben, Hauptbibliothek +http://lobid.org/organisations/AT-UBK#! AT-UBK AT-UBK-HB Universität Klagenfurt, Universitätsbibliothek +http://lobid.org/organisations/AT-UBAW#! AT-UBAW AT-UBAW Universität für angewandte Kunst Wien, Universitätsbibliothek +http://lobid.org/organisations/AT-UBMW#! AT-UBMW AT-UBMW Universität für Musik und darstellende Kunst Wien, Universitätsbibliothek +http://lobid.org/organisations/AT-UBGL#! AT-UBGL AT-UBGL Universität für künstlerische und industrielle Gestaltung Linz, Universitätsbibliothek +http://lobid.org/organisations/AT-VMW#! AT-VMW AT-VMW Museum für Völkerkunde Wien, Bibliothek +http://lobid.org/organisations/AT-OeAI#! AT-OeAI AT-ÖAI Österreichisches Archäologisches Institut, Bibliothek Wien +http://lobid.org/organisations/AT-IOeGF#! AT-IOeGF AT-IÖGF Institut für Österreichische Geschichtsforschung, Bibliothek +http://lobid.org/organisations/AT-LBB#! AT-LBB AT-LBB Burgenländische Landesbibliothek +http://lobid.org/organisations/AT-NOeLB#! AT-NOeLB AT-NÖLB Niederösterreichische Landesbibliothek +http://lobid.org/organisations/AT-WBR#! AT-WBR AT-WBR Wienbibliothek im Rathaus +http://lobid.org/organisations/AT-LAW#! AT-LAW AT-LAW Wiener Stadt- und Landesarchiv +http://lobid.org/organisations/AT-HBTL#! AT-HBTL AT-HBTL Diözesan- und Universitätsbibliothek der Katholischen Privatuniversität Linz +http://lobid.org/organisations/DE-B11q#! DE-B11q B 11q Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Alte Nationalgalerie, Bibliothek +http://lobid.org/organisations/DE-B11t#! DE-B11t B 11t Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Skulpturensammlung und Museum für Byzantinische Kunst, Bibliothek Skulpturensammlung +http://lobid.org/organisations/DE-M121#! DE-M121 M 121 Bayerisches Staatsministerium für Bildung und Kultus, Wissenschaft und Kunst, Bibliothek +http://lobid.org/organisations/DE-H366#! DE-H366 H 366 KZ-Gedenkstätte Neuengamme, Bibliothek +http://lobid.org/organisations/DE-M496#! DE-M496 M 496 Institut für deutsche Kultur und Geschichte Südosteuropas e.V. an der Ludwig-Maximilians-Universität, Bibliothek und Archiv +http://lobid.org/organisations/DE-82-007#! DE-82-007 82/007 Hochschulsportzentrum, Bibliothek +http://lobid.org/organisations/DE-30-22#! DE-30-22 30/22 Universitätsklinikum Frankfurt, Neurologisches Institut (Edinger Institut) +http://lobid.org/organisations/DE-Frei106#! DE-Frei106 Frei 106 Max-Planck-Institut für Immunbiologie, Bibliothek +http://lobid.org/organisations/DE-578-821#! DE-578-821 578/821 Charité - Universitätsmedizin Berlin, Campus Benjamin Franklin, Institut für Zahn-, Mund- und Kieferheilkunde, Bibliothek +http://lobid.org/organisations/DE-1250#! DE-1250 1250 Kreis-Berufsschulzentrum Biberach, Bibliothek/Mediothek +http://lobid.org/organisations/DE-Lfn1#! DE-Lfn1 Lfn 1 Bayerische Akademie für Naturschutz und Landschaftspflege, Bibliothek +http://lobid.org/organisations/DE-18-306#! DE-18-306 18/306 Bibliotheks- und Informationsservice (BIS) für Erdsystemforschung +http://lobid.org/organisations/DE-25-175#! DE-25-175 25/175 Sprachlehrinstitut, Bibliothek +http://lobid.org/organisations/DE-520#! DE-520 520 Hochschule für Technik und Wirtschaft Dresden, Bibliothek +http://lobid.org/organisations/DE-Sa25#! DE-Sa25 Sa 25 Landesdenkmalamt, Bibliothek im Bergwerk Reden +http://lobid.org/organisations/DE-1257#! DE-1257 1257 Stadtbücherei Lahnstein +http://lobid.org/organisations/DE-1258#! DE-1258 1258 Stadtbibliothek Melle +http://lobid.org/organisations/DE-Bre14#! DE-Bre14 Bre 14 Leibniz-Zentrum für Marine Tropenforschung (ZMT) GmbH, Bibliothek +http://lobid.org/organisations/DE-1260#! DE-1260 1260 Samtgemeindebücherei Stadtoldendorf +http://lobid.org/organisations/DE-581#! DE-581 581 Karlshochschule International University, Bibliothek +http://lobid.org/organisations/DE-Frei207#! DE-Frei207 Frei 207 Regierungspräsidium Stuttgart, Landesamt für Denkmalpflege, Dienstsitz Freiburg, Bibliothek +http://lobid.org/organisations/DE-Er94#! DE-Er94 Er 94 Dritte Welt Laden Erlangen e.V., Archiv +http://lobid.org/organisations/DE-B1568#! DE-B1568 B 1568 Forschungs- und Dokumentationszentrum Chile Lateinamerika (FDCL) e.V., Archiv +http://lobid.org/organisations/DE-Hag7#! DE-Hag7 Hag 7 Archiv und Bücherei im AllerWeltHaus Hagen e. V. +http://lobid.org/organisations/DE-1265#! DE-1265 1265 Bibliothek Lübbenau - Vetschau +http://lobid.org/organisations/DE-1267#! DE-1267 1267 Stadtbibliothek Großräschen +http://lobid.org/organisations/DE-1268#! DE-1268 1268 Gemeindebibliothek Blankenfelde-Mahlow +http://lobid.org/organisations/DE-B232#! DE-B232 B 232 Evangelisches Werk für Diakonie und Entwicklung, Bibliothek, Bestand Berlin +http://lobid.org/organisations/DE-Aoe1#! DE-Aoe1 Aoe 1 Stadtarchiv Altötting +http://lobid.org/organisations/DE-Btg1#! DE-Btg1 Btg 1 Marktarchiv Berchtesgaden +http://lobid.org/organisations/DE-Dis1#! DE-Dis1 Dis 1 Marktarchiv Dießen am Ammersee +http://lobid.org/organisations/DE-Es3#! DE-Es3 Es 3 Stadtarchiv Eichstätt +http://lobid.org/organisations/DE-Gfd1#! DE-Gfd1 Gfd 1 Stadtarchiv Geisenfeld +http://lobid.org/organisations/DE-Mis1#! DE-Mis1 Mis 1 Stadtarchiv Miesbach +http://lobid.org/organisations/DE-Pzb1#! DE-Pzb1 Pzb 1 Stadtarchiv Penzberg +http://lobid.org/organisations/DE-Pfa1#! DE-Pfa1 Pfa 1 Stadtarchiv Pfaffenhofen a.d.Ilm +http://lobid.org/organisations/DE-Rhl1#! DE-Rhl1 Rhl 1 Stadtarchiv Bad Reichenhall +http://lobid.org/organisations/DE-Wab1#! DE-Wab1 Wab 1 Stadtarchiv Wasserburg a. Inn +http://lobid.org/organisations/DE-Di2#! DE-Di2 Di 2 Stadtarchiv Dillingen/Donau +http://lobid.org/organisations/DE-Gfn1#! DE-Gfn1 Gfn 1 Stadtarchiv Gersthofen +http://lobid.org/organisations/DE-Gzb1#! DE-Gzb1 Gzb 1 Stadtarchiv Günzburg +http://lobid.org/organisations/DE-Kau1#! DE-Kau1 Kau 1 Stadtarchiv Kaufbeuren +http://lobid.org/organisations/DE-H369#! DE-H369 H 369 Kuratorium für Forschung im Küsteningenieurwesen (KFKI), Bibliothek +http://lobid.org/organisations/DE-Mdh1#! DE-Mdh1 Mdh 1 Stadtarchiv Mindelheim +http://lobid.org/organisations/DE-Rai1#! DE-Rai1 Rai 1 Stadtarchiv Rain +http://lobid.org/organisations/DE-Wtg1#! DE-Wtg1 Wtg 1 Stadtarchiv Wertingen +http://lobid.org/organisations/DE-Hbk1#! DE-Hbk1 Hbk 1 Stadtarchiv Hersbruck +http://lobid.org/organisations/DE-Alt1#! DE-Alt1 Alt 1 Stadtarchiv Altdorf +http://lobid.org/organisations/DE-Kis1#! DE-Kis1 Kis 1 Stadtarchiv Bad Kissingen +http://lobid.org/organisations/DE-Glh1#! DE-Glh1 Glh 1 Stadtarchiv Gerolzhofen +http://lobid.org/organisations/DE-Kar1#! DE-Kar1 Kar 1 Stadtarchiv Karlstadt +http://lobid.org/organisations/DE-Loh1#! DE-Loh1 Loh 1 Stadtarchiv Lohr +http://lobid.org/organisations/DE-Vlk1#! DE-Vlk1 Vlk 1 Stadtarchiv Volkach +http://lobid.org/organisations/DE-Arz1#! DE-Arz1 Arz 1 Stadt- und Heimatarchiv Arzberg +http://lobid.org/organisations/DE-Reh1#! DE-Reh1 Reh 1 Stadtarchiv Rehau +http://lobid.org/organisations/DE-Wst1#! DE-Wst1 Wst 1 Stadtarchiv Weißenstadt +http://lobid.org/organisations/DE-F227#! DE-F227 F 227 Zentrum Ökumene der Evangelischen Kirche in Hessen und Nassau (EKHN), Bibliothek +http://lobid.org/organisations/DE-82-773#! DE-82-773 82/773 Zentrum für Gliedmaßenrekonstruktion u. Gliedmaßenverlängerung, Bibliothek +http://lobid.org/organisations/DE-Egf1#! DE-Egf1 Egf 1 Stadtarchiv Eggenfelden +http://lobid.org/organisations/DE-Fru1#! DE-Fru1 Fru 1 Stadtarchiv Freyung +http://lobid.org/organisations/DE-Hau1#! DE-Hau1 Hau 1 Stadtarchiv Hauzenberg +http://lobid.org/organisations/DE-Kel1#! DE-Kel1 Kel 1 Stadtarchiv Kelheim +http://lobid.org/organisations/DE-Nmo1#! DE-Nmo1 Nmo 1 Stadtarchiv Neumarkt i.d.Opf. +http://lobid.org/organisations/DE-Reg1#! DE-Reg1 Reg 1 Marktarchiv Regenstauf +http://lobid.org/organisations/DE-Rog1#! DE-Rog1 Rog 1 Stadtarchiv Roding +http://lobid.org/organisations/DE-Wsn1#! DE-Wsn1 Wsn 1 Stadtarchiv Waldsassen +http://lobid.org/organisations/DE-Wdn1#! DE-Wdn1 Wdn 1 Stadtarchiv Weiden +http://lobid.org/organisations/DE-B1571#! DE-B1571 B 1571 Georg-Kolbe-Museum, Bibliothek +http://lobid.org/organisations/DE-1280#! DE-1280 1280 Stadtbücherei Schifferstadt +http://lobid.org/organisations/DE-93-220#! DE-93-220 93/220 Universität Stuttgart, Institut für Akustik und Bauphysik, Abteilung Ganzheitliche Bilanzierung +http://lobid.org/organisations/DE-Bug1#! DE-Bug1 Bug 1 Stadtarchiv Burgau +http://lobid.org/organisations/DE-585#! DE-585 585 German Graduate School of Management & Law gGmbH Heilbronn , Bibliothek +http://lobid.org/organisations/DE-1286#! DE-1286 1286 Stadtbibliothek Sindelfingen +http://lobid.org/organisations/DE-586#! DE-586 586 Fachhochschule des Mittelstands (FHM), Bibliothek +http://lobid.org/organisations/DE-B1514a#! DE-B1514a B 1514a Fachbibliothek Umwelt des Umweltbundesamtes, Standort Dessau +http://lobid.org/organisations/DE-Ren2#! DE-Ren2 Ren 2 Alte Wissenschaftliche Bibliothek der Heilanstalt bei Konstanz +http://lobid.org/organisations/DE-Stg278#! DE-Stg278 Stg 278 Eberhard-Ludwigs-Gymnasium (Ebelu), Bibliothek +http://lobid.org/organisations/DE-1331#! DE-1331 1331 Zentralbücherei Westerburg +http://lobid.org/organisations/DE-1332#! DE-1332 1332 Bücherei im Neuen Schloss +http://lobid.org/organisations/DE-Fht1#! DE-Fht1 Fht 1 Verlag 'Der Bote' Hanns Bollmann GmbH & Co. +http://lobid.org/organisations/DE-B1573#! DE-B1573 B 1573 Entwicklungspolitisches Bildungs- und Informationszentrum (EPIZ) e.V., Bibliothek +http://lobid.org/organisations/DE-1335#! DE-1335 1335 Stadtbücherei Asperg +http://lobid.org/organisations/DE-1337#! DE-1337 1337 Stadtbücherei und Stadtarchiv Lichtenfels +http://lobid.org/organisations/DE-Ast1#! DE-Ast1 Ast 1 Luftlande- und Lufttransportschule +http://lobid.org/organisations/DE-82-777#! DE-82-777 82/777 Kinderherzchirurgie, Bibliothek +http://lobid.org/organisations/DE-1339#! DE-1339 1339 Bücherei Jork +http://lobid.org/organisations/DE-M505#! DE-M505 M 505 Pionierschule, Fachinformationsstelle und Bibliothek +http://lobid.org/organisations/DE-WWW5-WIL#! DE-WWW5-WIL WWW 5/WIL Wiley InterScience - Konsortium Baden-Württemberg +http://lobid.org/organisations/DE-1289#! DE-1289 1289 Stadtbibliothek Dinkelsbühl +http://lobid.org/organisations/DE-1290#! DE-1290 1290 Stadtbibliothek Donauwörth +http://lobid.org/organisations/DE-1292#! DE-1292 1292 Landkreisbibliothek im Anne-Frank-Gymnasium Erding +http://lobid.org/organisations/DE-1293#! DE-1293 1293 Stadtbücherei Feuchtwangen +http://lobid.org/organisations/DE-1294#! DE-1294 1294 Stadtbücherei Forchheim +http://lobid.org/organisations/DE-1295#! DE-1295 1295 Stadtbücherei Freilassing +http://lobid.org/organisations/DE-1301#! DE-1301 1301 Literaturhaus Allgäu, Stadtbücherei +http://lobid.org/organisations/DE-587c#! DE-587c 587c GESIS - Leibniz-Institut für Sozialwissenschaften, Bibliothek Mannheim +http://lobid.org/organisations/DE-1342#! DE-1342 1342 Stadtbibliothek Werder (Havel) +http://lobid.org/organisations/DE-1346#! DE-1346 1346 Alanus Hochschule, Studienzentrum Mannheim, Institut für Waldorfpädagogik, Inklusion und Interkulturalität, Bibliothek +http://lobid.org/organisations/DE-603#! DE-603 603 Hessisches BibliotheksInformationsSystem hebis +http://lobid.org/organisations/DE-604#! DE-604 604 Bibliotheksverbund Bayern +http://lobid.org/organisations/DE-1349#! DE-1349 1349 Öffentliche Bibliothek Kleinmachnow +http://lobid.org/organisations/DE-Wel2#! DE-Wel2 Wel 2 Archiv des Katholischen Stadtpfarramtes Mariae Himmelfahrt +http://lobid.org/organisations/DE-M508#! DE-M508 M 508 Münchner Stadtmuseum, Zentrale Bibliothek +http://lobid.org/organisations/DE-1355#! DE-1355 1355 Stadtbibliothek Kölleda +http://lobid.org/organisations/DE-1356#! DE-1356 1356 Gemeindebibliothek Breitungen +http://lobid.org/organisations/DE-1402#! DE-1402 1402 Stadtbibliothek Amberg +http://lobid.org/organisations/DE-1403#! DE-1403 1403 Stadtbücherei Bad Aibling +http://lobid.org/organisations/DE-1404#! DE-1404 1404 Gemeindebibliothek Bergrheinfeld +http://lobid.org/organisations/DE-1410#! DE-1410 1410 Stadtbibliothek Erlangen +http://lobid.org/organisations/DE-1411#! DE-1411 1411 Gemeindebücherei Feldafing +http://lobid.org/organisations/DE-1415#! DE-1415 1415 Stadtbücherei Garching +http://lobid.org/organisations/DE-1422#! DE-1422 1422 Gemeindebücherei Karlsfeld +http://lobid.org/organisations/DE-1440#! DE-1440 1440 Bücherei am Münztor Schongau +http://lobid.org/organisations/DE-1443#! DE-1443 1443 Gemeindebücherei Schwaig +http://lobid.org/organisations/DE-1444#! DE-1444 1444 Bücherei Stadtbergen +http://lobid.org/organisations/DE-1449#! DE-1449 1449 Gemeindebibliothek Wildflecken +http://lobid.org/organisations/DE-1450#! DE-1450 1450 Marktbücherei Wolnzach +http://lobid.org/organisations/DE-1451#! DE-1451 1451 Stadtbibliothek Wunsiedel +http://lobid.org/organisations/DE-1457#! DE-1457 1457 Bibliothek Markt Manching +http://lobid.org/organisations/DE-1793#! DE-1793 1793 Stadtbücherei Tegernsee St. Quirinus +http://lobid.org/organisations/DE-1465#! DE-1465 1465 Stadtbücherei Töging +http://lobid.org/organisations/DE-1468#! DE-1468 1468 Öffentliche Bücherei der Gemeinde Gangkofen +http://lobid.org/organisations/DE-1484#! DE-1484 1484 Gemeindebücherei Petersaurach +http://lobid.org/organisations/DE-1487#! DE-1487 1487 Gemeindebücherei Wendelstein +http://lobid.org/organisations/DE-1491#! DE-1491 1491 Bibliothek Markt Höchberg +http://lobid.org/organisations/DE-L327#! DE-L327 L 327 Leibniz-Institut für Geschichte und Kultur des östlichen Europa (GWZO), Bibliothek +http://lobid.org/organisations/DE-1503#! DE-1503 1503 Bücherei Markt Kaufering +http://lobid.org/organisations/DE-1505#! DE-1505 1505 JVA Aichach, Bibliothek +http://lobid.org/organisations/DE-1511#! DE-1511 1511 Gemeindebücherei Babenhausen +http://lobid.org/organisations/DE-1512#! DE-1512 1512 Stadtbibliothek Bad Königshofen +http://lobid.org/organisations/DE-1513#! DE-1513 1513 Sankt Michaelsbund - Diözesanstelle für das Büchereiwesen im Erzbistum Bamberg +http://lobid.org/organisations/DE-1778#! DE-1778 1778 Katholische Öffentliche Bücherei Heimbuchenthal +http://lobid.org/organisations/DE-1767#! DE-1767 1767 Öffentliche Bücherei Stamsried +http://lobid.org/organisations/DE-1766#! DE-1766 1766 Stadtbücherei Pfreimd +http://lobid.org/organisations/DE-1762#! DE-1762 1762 Gemeindebücherei Bodenmais +http://lobid.org/organisations/DE-1760#! DE-1760 1760 Marktbücherei Tittling +http://lobid.org/organisations/DE-1745#! DE-1745 1745 Gemeindebücherei Schweitenkirchen +http://lobid.org/organisations/DE-1744#! DE-1744 1744 Gemeinde Röhrmoos, Gemeindebücherei +http://lobid.org/organisations/DE-1740#! DE-1740 1740 Stadtbücherei Neumarkt-Sankt Veit +http://lobid.org/organisations/DE-1736#! DE-1736 1736 Gemeindebücherei St. Johannes Hohenkammer +http://lobid.org/organisations/DE-1734#! DE-1734 1734 Gemeindebücherei Gmund +http://lobid.org/organisations/DE-1728#! DE-1728 1728 Gemeindebücherei Garching a.d. Alz +http://lobid.org/organisations/DE-1726#! DE-1726 1726 Bücherei St. Lantpert +http://lobid.org/organisations/DE-1721#! DE-1721 1721 Bücherei St. Jakob Buchbach +http://lobid.org/organisations/DE-1715#! DE-1715 1715 Katholische Öffentliche Bücherei St. Anna +http://lobid.org/organisations/DE-1714#! DE-1714 1714 Katholische Öffentliche Bücherei Baiersdorf +http://lobid.org/organisations/DE-1711#! DE-1711 1711 Katholische Öffentliche Bücherei Ruderatshofen +http://lobid.org/organisations/DE-1705#! DE-1705 1705 Stadtbücherei St. Johannes Ichenhausen +http://lobid.org/organisations/DE-1702#! DE-1702 1702 Gemeindebücherei. Albert-Teuto-Bücherei +http://lobid.org/organisations/DE-1699#! DE-1699 1699 Maristengymnasium Fürstenzell, Schulbibliothek +http://lobid.org/organisations/DE-1695#! DE-1695 1695 Stadtbücherei Zwiesel +http://lobid.org/organisations/DE-1521#! DE-1521 1521 Gemeindebücherei Eching +http://lobid.org/organisations/DE-1693#! DE-1693 1693 Katholische Öffentliche Bücherei Emmerting +http://lobid.org/organisations/DE-1690#! DE-1690 1690 Gemeindebücherei Penzing +http://lobid.org/organisations/DE-1688#! DE-1688 1688 Gemeindebücherei Triftern +http://lobid.org/organisations/DE-1687#! DE-1687 1687 Gemeindebücherei St. Vitus +http://lobid.org/organisations/DE-1686#! DE-1686 1686 Katholische Pfarr- und Stadtbücherei St. Justina +http://lobid.org/organisations/DE-1679#! DE-1679 1679 Stadtbücherei St. Martin Illertissen +http://lobid.org/organisations/DE-1677#! DE-1677 1677 Katholische Öffentliche Bücherei Burgwindheim +http://lobid.org/organisations/DE-1676#! DE-1676 1676 Gemeinde- und Pfarrbücherei Lichteneiche +http://lobid.org/organisations/DE-1526#! DE-1526 1526 Gemeindebücherei Geltendorf +http://lobid.org/organisations/DE-M457#! DE-M457 M 457 Collegium Carolinum, Wissenschaftliche Bibliothek im Sudetendeutschen Haus +http://lobid.org/organisations/DE-M492#! DE-M492 M 492 Bibliothek des Instituts für Ostrecht München e.V. im Wissenschaftszentrum Ost- und Südosteuropa +http://lobid.org/organisations/DE-M490#! DE-M490 M 490 Bayerisches Landesamt für Umwelt, Bibliothek Hof +http://lobid.org/organisations/DE-1539#! DE-1539 1539 Bücherei Hengersberg +http://lobid.org/organisations/DE-1673#! DE-1673 1673 Katholische Öffentliche Bücherei Neuhaus +http://lobid.org/organisations/DE-1665#! DE-1665 1665 Stadtbücherei Vilshofen +http://lobid.org/organisations/DE-1647#! DE-1647 1647 Gemeindebücherei Erkheim +http://lobid.org/organisations/DE-1644#! DE-1644 1644 Markt- und Pfarrbücherei Altenstadt +http://lobid.org/organisations/DE-1638#! DE-1638 1638 Gemeindebücherei Zorneding +http://lobid.org/organisations/DE-1637#! DE-1637 1637 Gemeindebücherei Taufkirchen/Vils +http://lobid.org/organisations/DE-1633#! DE-1633 1633 Katholische Öffentliche Bücherei Schongau +http://lobid.org/organisations/DE-1621#! DE-1621 1621 Gemeindebücherei im Rathaus +http://lobid.org/organisations/DE-1618#! DE-1618 1618 Medienzentrum Wartenberg +http://lobid.org/organisations/AT-UBW-071#! AT-UBW-071 AT-UBW-071 Universität Wien, Bibliotheks- und Archivwesen, Österreichische Zentralbibliothek für Physik +http://lobid.org/organisations/DE-1610#! DE-1610 1610 Stadtbibliothek Treuchtlingen +http://lobid.org/organisations/DE-1609#! DE-1609 1609 Katholische Öffentliche Bücherei Theilheim +http://lobid.org/organisations/DE-1607#! DE-1607 1607 Gemeindebücherei Thalmassing +http://lobid.org/organisations/DE-1605#! DE-1605 1605 Katholische Öffentliche Bücherei St. Josef +http://lobid.org/organisations/DE-1604#! DE-1604 1604 Gemeindebibliothek Stadtlauringen +http://lobid.org/organisations/DE-1602#! DE-1602 1602 Gemeindebücherei Seeshaupt +http://lobid.org/organisations/DE-1595#! DE-1595 1595 Stadtbücherei Rottenburg +http://lobid.org/organisations/DE-1593#! DE-1593 1593 Gemeindebibliothek Röthlein +http://lobid.org/organisations/DE-1591#! DE-1591 1591 Benedictus-Bücherei Rohr in Niederbayern +http://lobid.org/organisations/DE-1589#! DE-1589 1589 Heinrich-Schaumberger-Bibliothek +http://lobid.org/organisations/DE-1586#! DE-1586 1586 Diözesanstelle des Sankt Michaelsbundes, Austauschbücherei Regensburg +http://lobid.org/organisations/DE-1580#! DE-1580 1580 Stadtbücherei Parsberg +http://lobid.org/organisations/DE-1578#! DE-1578 1578 Schul- und Kreisbibliothek Oberviechtach +http://lobid.org/organisations/DE-1577#! DE-1577 1577 Gemeindebücherei Oberschleißheim +http://lobid.org/organisations/DE-1573#! DE-1573 1573 Gemeindebücherei St. Martin Nandlstadt +http://lobid.org/organisations/DE-1571#! DE-1571 1571 Sankt Michaelsbund, Landesfachstelle +http://lobid.org/organisations/DE-1568#! DE-1568 1568 Bayerische Staatsbibliothek. Staatliche Landesfachstelle für das Öffentliche Bibliothekswesen München +http://lobid.org/organisations/DE-1565#! DE-1565 1565 Gemeindebücherei im Bürgerhaus +http://lobid.org/organisations/DE-1555#! DE-1555 1555 Marktbücherei Lappersdorf +http://lobid.org/organisations/DE-1548#! DE-1548 1548 Gemeindebücherei Kösching +http://lobid.org/organisations/DE-1547#! DE-1547 1547 Katholische Öffentliche Bücherei Kleinostheim +http://lobid.org/organisations/DE-1546#! DE-1546 1546 Öffentliche Bücherei Kissing +http://lobid.org/organisations/DE-1544#! DE-1544 1544 Gemeindebücherei Holzkirchen +http://lobid.org/organisations/DE-1533#! DE-1533 1533 Stadtbücherei Gundelfingen +http://lobid.org/organisations/DE-1536#! DE-1536 1536 Gemeindebücherei Hausham +http://lobid.org/organisations/DE-1597#! DE-1597 1597 Gemeindebücherei St. Georg +http://lobid.org/organisations/DE-612#! DE-612 612 Kunstbibliotheken-Fachverbund Florenz-München-Paris-Rom +http://lobid.org/organisations/DE-38-326#! DE-38-326 38/326 Testothek der Humanwissenschaftlichen Fakultät der Universität zu Köln +http://lobid.org/organisations/DE-D273#! DE-D273 D 273 Leibniz-Institut für ökologische Raumentwicklung e. V., Bibliothek +http://lobid.org/organisations/DE-Krh1#! DE-Krh1 Krh 1 Zentrales Institut des Sanitätsdienstes der Bundeswehr Kiel : Fachinformationsstelle +http://lobid.org/organisations/DE-Nsr1#! DE-Nsr1 Nsr 1 Friedrich-Loeffler-Institut, Bundesforschungsinstitut für Tiergesundheit, Institut für Nutztiergenetik, Bibliothek +http://lobid.org/organisations/DE-Sib1#! DE-Sib1 Sib 1 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Fachinformationszentrum Rebe und Wein, Bibliothek/Dokumentation Siebeldingen +http://lobid.org/organisations/DE-1364#! DE-1364 1364 Öffentliche Katholische Bücherei - Mediathek +http://lobid.org/organisations/DE-1806#! DE-1806 1806 Gemeindebücherei Waal +http://lobid.org/organisations/DE-Lef1#! DE-Lef1 Lef 1 Schule Informationstechnik der Bundeswehr (ITSBw), Fachinformationsstelle Untermeitingen +http://lobid.org/organisations/DE-1365#! DE-1365 1365 Gemeindebücherei Isernhagen +http://lobid.org/organisations/DE-Rt6#! DE-Rt6 Rt 6 Bibliothek der Evangelischen Kirche in Reutlingen +http://lobid.org/organisations/DE-17-137#! DE-17-137 17/137 TU Darmstadt, Institut für Allgemeine Pädagogik und Berufspädagogik / Arbeitsbereich Mode und Ästhetik +http://lobid.org/organisations/DE-Fl4#! DE-Fl4 Fl 4 Marineschule Mürwik (MSM), Fachinformationsstelle (FISt), Bibliothek +http://lobid.org/organisations/DE-B1578#! DE-B1578 B 1578 Institute for Cultural Inquiry- Kulturlabor, Bibliothek +http://lobid.org/organisations/DE-606#! DE-606 606 Elektronische Zeitschriftenbibliothek +http://lobid.org/organisations/DE-1807#! DE-1807 1807 Klinikum Aschaffenburg, Patientenbücherei +http://lobid.org/organisations/DE-Sig3#! DE-Sig3 Sig 3 Landratsamt Sigmaringen, Stabsbereich Kultur und Archiv, ehemalige Hohenzollerische Landesbücherei +http://lobid.org/organisations/DE-Hb5#! DE-Hb5 Hb 5 Dekanatamt Heilbronn, Bibliothek +http://lobid.org/organisations/DE-1378#! DE-1378 1378 Stadtbücherei Flörsheim am Main +http://lobid.org/organisations/DE-B724#! DE-B724 B 724 Landesarchiv Berlin, Bibliothek +http://lobid.org/organisations/DE-525#! DE-525 525 Fachhochschule Potsdam, Hochschulbibliothek +http://lobid.org/organisations/DE-Kn192#! DE-Kn192 Kn 192 Centrum Schwule Geschichte, Bibliothek +http://lobid.org/organisations/DE-MUS-801214#! DE-MUS-801214 Kos 1 Museum Romanisches Haus +http://lobid.org/organisations/DE-MUS-801714#! DE-MUS-801714 Bbg 11 Museum Schloß Bernburg +http://lobid.org/organisations/DE-Bbg12#! DE-Bbg12 Bbg 12 Salzlandkreis, Kreisarchiv, Außenstelle Schönebeck +http://lobid.org/organisations/DE-Brg8#! DE-Brg8 Brg 8 Kreis- und Stadtarchiv Burg +http://lobid.org/organisations/DE-Ca3#! DE-Ca3 Ca 3 Stadtarchiv Calbe +http://lobid.org/organisations/DE-Bkn1#! DE-Bkn1 Bkn 1 Kultur- und Heimatverein Benneckenstein e.V. +http://lobid.org/organisations/DE-Bre17#! DE-Bre17 Bre 17 Institut français de Brême, Médiathèque +http://lobid.org/organisations/DE-De19#! DE-De19 De 19 Landeshauptarchiv Sachsen-Anhalt, Abteilung Dessau +http://lobid.org/organisations/DE-Eis5#! DE-Eis5 Eis 5 Landkreis Mansfeld-Südharz, Kreisarchiv Eisleben +http://lobid.org/organisations/DE-Eis6#! DE-Eis6 Eis 6 Stadtverwaltung Lutherstadt Eisleben, Stadtarchiv +http://lobid.org/organisations/DE-MUS-806511#! DE-MUS-806511 Hav 2 Prignitz-Museum +http://lobid.org/organisations/DE-San5#! DE-San5 San 5 Landkreis Mansfeld-Südharz, Kreisarchiv Mansfeld-Südharz +http://lobid.org/organisations/DE-We18#! DE-We18 We 18 Stadt Wernigerode, Stadtarchiv +http://lobid.org/organisations/DE-1383#! DE-1383 1383 Hochschule Rhein-Waal, Bibliothek +http://lobid.org/organisations/DE-Gst2#! DE-Gst2 Gst 2 Verwaltungsgemeinschaft Saale-Wipper, Stadtarchiv Alsleben +http://lobid.org/organisations/DE-Sig4#! DE-Sig4 Sig 4 Landratsamt Sigmaringen, Stabsbereich Kultur und Archiv, Bibliothek Kreisarchiv +http://lobid.org/organisations/DE-1385#! DE-1385 1385 Stadtbücherei Ostfildern +http://lobid.org/organisations/DE-1386#! DE-1386 1386 Samtgemeindebücherei Jesteburg +http://lobid.org/organisations/DE-Rla1#! DE-Rla1 Rla 1 Einheitsgemeinde Südharz, Archiv +http://lobid.org/organisations/DE-Thl1#! DE-Thl1 Thl 1 Stadt Thale, Stadtarchiv +http://lobid.org/organisations/DE-1387#! DE-1387 1387 Bibliothek in der Zehntscheuer +http://lobid.org/organisations/DE-1389#! DE-1389 1389 Gymnasium Damme, Bibliothek +http://lobid.org/organisations/DE-Brg3-01#! DE-Brg3-01 Brg 3/01 Freikirchenbibliothek +http://lobid.org/organisations/DE-Ess7#! DE-Ess7 Ess 7 Staatliches Seminar für Didaktik und Lehrerbildung (Gymnasien) Esslingen, Bibliothek +http://lobid.org/organisations/DE-Frei210#! DE-Frei210 Frei 210 Kunstverein Freiburg e.V., Bibliothek +http://lobid.org/organisations/DE-1392#! DE-1392 1392 Stadtbücherei Süßen +http://lobid.org/organisations/DE-Bun1#! DE-Bun1 Bun 1 Regionalgeschichtliche Bibliothek ""Zwischen Neckar und Main"" +http://lobid.org/organisations/DE-1811-OL#! DE-1811-OL 1811-OL Niedersächsisches Landesarchiv, Standort Oldenburg +http://lobid.org/organisations/DE-1811-AU#! DE-1811-AU 1811-AU Niedersächsisches Landesarchiv, Standort Aurich +http://lobid.org/organisations/DE-1811-HA#! DE-1811-HA 1811-HA Niedersächsisches Landesarchiv +http://lobid.org/organisations/DE-Ka92#! DE-Ka92 Ka 92 Landratsamt Karlsruhe, Kreisarchiv +http://lobid.org/organisations/DE-1812#! DE-1812 1812 Bücherei Essenbach +http://lobid.org/organisations/DE-Bgn1#! DE-Bgn1 Bgn 1 Forum Wiedenest e.V., Bibliothek +http://lobid.org/organisations/DE-Y6#! DE-Y6 Y 6 Deutsche Büchereizentrale und Zentralbücherei Apenrade +http://lobid.org/organisations/DE-1397#! DE-1397 1397 Katholische Öffentliche Bücherei St. Sophia +http://lobid.org/organisations/DE-1399#! DE-1399 1399 Stadtbücherei Plön +http://lobid.org/organisations/DE-B1587#! DE-B1587 B 1587 SRH Berlin University of Applied Sciences, Hochschulbibliothek +http://lobid.org/organisations/DE-1400#! DE-1400 1400 Stadtbücherei Büdingen +http://lobid.org/organisations/DE-Bgh1#! DE-Bgh1 Bgh 1 Bibliothek des Kreisarchivs Rhein-Erft-Kreis +http://lobid.org/organisations/DE-Bot1#! DE-Bot1 Bot 1 Stadtarchiv Bocholt +http://lobid.org/organisations/DE-Bv4#! DE-Bv4 Bv 4 Stadtarchiv Bremerhaven +http://lobid.org/organisations/DE-1815#! DE-1815 1815 Business School Berlin - Hochschule für Management, Bibliothek +http://lobid.org/organisations/DE-1817#! DE-1817 1817 University of Europe for Applied Sciences GmbH, Campus Iserlohn, Bibliothek +http://lobid.org/organisations/DE-1393-BOT#! DE-1393-BOT 1393/BOT Hochschule Ruhr West, Hochschulbibliothek, Zweigbibliothek Bottrop +http://lobid.org/organisations/DE-Dom1#! DE-Dom1 Dom 1 Archiv im Rhein-Kreis Neuss +http://lobid.org/organisations/DE-Dm22#! DE-Dm22 Dm 22 Stadtarchiv Dortmund +http://lobid.org/organisations/DE-Dlm1#! DE-Dlm1 Dlm 1 Stadtarchiv Dülmen +http://lobid.org/organisations/DE-Gev1#! DE-Gev1 Gev 1 Stadtarchiv Gevelsberg +http://lobid.org/organisations/DE-Gi64#! DE-Gi64 Gi 64 Stadtarchiv Gießen +http://lobid.org/organisations/DE-Hlb1#! DE-Hlb1 Hlb 1 Stadtarchiv Hilchenbach +http://lobid.org/organisations/DE-Kor1#! DE-Kor1 Kor 1 Stadtarchiv Korbach +http://lobid.org/organisations/DE-Kr7#! DE-Kr7 Kr 7 Stadtarchiv Krefeld +http://lobid.org/organisations/DE-Mh40#! DE-Mh40 Mh 40 MARCHIVUM +http://lobid.org/organisations/DE-Nrt1#! DE-Nrt1 Nrt 1 Stadtarchiv Nürtingen +http://lobid.org/organisations/DE-Rdv1#! DE-Rdv1 Rdv 1 Stadtarchiv Radevormwald +http://lobid.org/organisations/DE-Ros2#! DE-Ros2 Ros 2 Stadtarchiv Roßwein +http://lobid.org/organisations/DE-U13#! DE-U13 U 13 Stadtarchiv Ulm +http://lobid.org/organisations/DE-Wdg1#! DE-Wdg1 Wdg 1 Stadtarchiv Bad Wildungen +http://lobid.org/organisations/DE-Ch105#! DE-Ch105 Ch 105 Stadtarchiv Chemnitz +http://lobid.org/organisations/DE-Cg3#! DE-Cg3 Cg 3 Stadtarchiv Coswig b. Dresden +http://lobid.org/organisations/DE-Ebs1#! DE-Ebs1 Ebs 1 Stadtarchiv Ebersbach +http://lobid.org/organisations/DE-Eil2#! DE-Eil2 Eil 2 Stadtarchiv Eilenburg +http://lobid.org/organisations/DE-Erk1#! DE-Erk1 Erk 1 Stadtarchiv Erkelenz +http://lobid.org/organisations/DE-Fra1#! DE-Fra1 Fra 1 Stadtarchiv Frankenberg +http://lobid.org/organisations/DE-F228#! DE-F228 F 228 Stiftung Deutsches Rundfunkarchiv Frankfurt/Main +http://lobid.org/organisations/DE-Fb65#! DE-Fb65 Fb 65 Stadtverwaltung Freiberg, Stadtarchiv +http://lobid.org/organisations/DE-Glk1#! DE-Glk1 Glk 1 Stadtarchiv Geilenkirchen +http://lobid.org/organisations/DE-Ge2#! DE-Ge2 Ge 2 Institut für Stadtgeschichte Gelsenkirchen, Stadtarchiv +http://lobid.org/organisations/DE-Gr106#! DE-Gr106 Gr 106 Stadtarchiv Greifswald +http://lobid.org/organisations/DE-Hte1#! DE-Hte1 Hte 1 Stadtarchiv Hohenstein-Ernstthal +http://lobid.org/organisations/DE-Hor1#! DE-Hor1 Hor 1 Stadtarchiv Horneburg +http://lobid.org/organisations/DE-Isl1#! DE-Isl1 Isl 1 Stadtarchiv Iserlohn +http://lobid.org/organisations/DE-J160#! DE-J160 J 160 Stadtarchiv Jena +http://lobid.org/organisations/DE-Klv1#! DE-Klv1 Klv 1 Stadtarchiv Kleve +http://lobid.org/organisations/DE-Lbg1#! DE-Lbg1 Lbg 1 Stadtarchiv Lauenburg +http://lobid.org/organisations/DE-Lip1#! DE-Lip1 Lip 1 Stadtarchiv Lippstadt +http://lobid.org/organisations/DE-Ln9#! DE-Ln9 Ln 9 Stadtarchiv Ludwigshafen +http://lobid.org/organisations/DE-Luen6#! DE-Luen6 Lün 6 Carl-Schirren-Gesellschaft, Archiv +http://lobid.org/organisations/DE-Mb110#! DE-Mb110 Mb 110 Stadtarchiv Marburg +http://lobid.org/organisations/DE-Mue304#! DE-Mue304 Mü 304 Stadtarchiv Münster +http://lobid.org/organisations/DE-B1590#! DE-B1590 B 1590 Stadtgeschichtliches Museum Zitadelle Spandau, Archiv +http://lobid.org/organisations/DE-Shw32#! DE-Shw32 Shw 32 Stadtarchiv Parchim +http://lobid.org/organisations/DE-Plt1#! DE-Plt1 Plt 1 Stadtarchiv Plettenberg +http://lobid.org/organisations/DE-Rb4#! DE-Rb4 Rb 4 Stadtarchiv Radeberg +http://lobid.org/organisations/DE-Kh2#! DE-Kh2 Kh 2 Stadt Kehl, Archiv und Museum +http://lobid.org/organisations/DE-Ri8#! DE-Ri8 Ri 8 Stadtarchiv Reichenbach +http://lobid.org/organisations/DE-Sam2#! DE-Sam2 Sam 2 Kreiskulturamt Bodenseekreis, Kreisarchiv +http://lobid.org/organisations/DE-Vie1#! DE-Vie1 Vie 1 Stadtarchiv Viersen +http://lobid.org/organisations/DE-Whm1#! DE-Whm1 Whm 1 Stadtarchiv Weilheim an der Teck +http://lobid.org/organisations/DE-Wnh1#! DE-Wnh1 Wnh 1 Stadtarchiv Weinheim +http://lobid.org/organisations/DE-Wbg1#! DE-Wbg1 Wbg 1 Stadtverwaltung Weinsberg, Stadtarchiv +http://lobid.org/organisations/DE-Wdo1#! DE-Wdo1 Wdo 1 Stadt Werdohl, Abteilung 1.2, Stadtarchiv +http://lobid.org/organisations/DE-Wes2#! DE-Wes2 Wes 2 Kreisarchiv Wesel +http://lobid.org/organisations/DE-1830#! DE-1830 1830 Stadtbücherei Mössingen +http://lobid.org/organisations/DE-Sft1#! DE-Sft1 Sft 1 Stadtarchiv Bad Staffelstein +http://lobid.org/organisations/DE-1832#! DE-1832 1832 EBS Universität für Wirtschaft und Recht, Learning Center, Standort Wiesbaden, Fachbibliothek Rechtswissenschaften +http://lobid.org/organisations/DE-Obg1#! DE-Obg1 Obg 1 Marktarchiv Obergünzburg +http://lobid.org/organisations/DE-291-820#! DE-291-820 291/820 BiblEx +http://lobid.org/organisations/DE-Otb2#! DE-Otb2 Otb 2 Archiv Markt Ottobeuren +http://lobid.org/organisations/DE-Sim1#! DE-Sim1 Sim 1 Gemeindearchiv Simmelsdorf +http://lobid.org/organisations/DE-Tuz1#! DE-Tuz1 Tuz 1 Gemeindearchiv Tutzing +http://lobid.org/organisations/DE-1834k#! DE-1834k 1834k Macromedia Library Köln +http://lobid.org/organisations/DE-1835#! DE-1835 1835 Stadtbibliothek Kelkheim +http://lobid.org/organisations/DE-16-200#! DE-16-200 16/200 Bibliotheca Laureshamensis - digital +http://lobid.org/organisations/DE-100-505#! DE-100-505 100/505 Archiv der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-B1591#! DE-B1591 B 1591 Alice Salomon Archiv der Alice Salomon Hochschule Berlin +http://lobid.org/organisations/DE-L189#! DE-L189 L 189 Hochschule für Technik, Wirtschaft und Kultur Leipzig, Hochschulbibliothek +http://lobid.org/organisations/DE-38-468#! DE-38-468 38/468 Europäische Rechtslinguistik, Bibliothek +http://lobid.org/organisations/DE-16-250#! DE-16-250 16/250 HeiBIB - Die Heidelberger Universitätsbibliographie +http://lobid.org/organisations/DE-1851#! DE-1851 1851 Mediothek Friedeburg +http://lobid.org/organisations/DE-1852#! DE-1852 1852 Stadtbücherei Dissen +http://lobid.org/organisations/DE-1855#! DE-1855 1855 Stadtbibliothek Wiesmoor +http://lobid.org/organisations/DE-Hrs1#! DE-Hrs1 Hrs 1 Agrarhistorische Bibliothek im Haus der bayerischen Landwirtschaft Herrsching +http://lobid.org/organisations/DE-F229#! DE-F229 F 229 Städel Museum, Graphische Sammlung, Bibliothek +http://lobid.org/organisations/DE-209#! DE-209 209 Bayerisches Armeemuseum, Bayerische Armeebibliothek +http://lobid.org/organisations/DE-Aoe2#! DE-Aoe2 Aoe 2 Stiftung SLW Altötting, Archiv +http://lobid.org/organisations/DE-7-128#! DE-7-128 7/128 Institut für Mikrobiologie und Genetik, Bibliothek +http://lobid.org/organisations/DE-7-409#! DE-7-409 7/409 Institut für Zoologie und Anthropologie, Historische Anthropologie und Humanökologie, Bibliothek Anthropologie +http://lobid.org/organisations/DE-7-507#! DE-7-507 7/507 Institut für Forsteinrichtung und Ertragskunde, Bibliothek +http://lobid.org/organisations/DE-7-510#! DE-7-510 7/510 Institut für Forstökonomie, Bibliothek +http://lobid.org/organisations/DE-7-512#! DE-7-512 7/512 Institut für Forstpolitik, Forstgeschichte und Naturschutz, Bibliothek +http://lobid.org/organisations/DE-7-158#! DE-7-158 7/158 Institut für Forstgenetik und Forstpflanzenzüchtung, Forstliche Biometrie und Informatik, Abteilung für Forstgenetik und Forstpflanzenzüchtung, Bibliothek +http://lobid.org/organisations/DE-7-156#! DE-7-156 7/156 Institut für Pflanzenbau und Tierproduktion in den Tropen und Subtropen, Abteilung Tropenpflanzenbau, Bibliothek +http://lobid.org/organisations/DE-7-063#! DE-7-063 7/063 Tierärztliches Institut, Bibliothek +http://lobid.org/organisations/DE-7-132#! DE-7-132 7/132 Institut für Agrartechnik, Bibliothek +http://lobid.org/organisations/DE-7-904#! DE-7-904 7/904 Zentrale Studien- und Studentenberatung, Bibliothek +http://lobid.org/organisations/DE-4-145#! DE-4-145 4/145 Universität Marburg, Bibliothek Pharmazie, Institut für Pharmazeutische Technologie +http://lobid.org/organisations/DE-4-212#! DE-4-212 4/212 Zentrum für Methodenwissenschaften und Gesundheitsforschung, Institut für Medizinische Psychologie, Bibliothek +http://lobid.org/organisations/DE-4-306#! DE-4-306 4/306 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Handels-, Wirtschafts- und Arbeitsrecht, Abt. Arbeitsrecht +http://lobid.org/organisations/DE-4-307#! DE-4-307 4/307 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Verfahrensrecht +http://lobid.org/organisations/DE-Mh32#! DE-Mh32 Mh 32 Zentralinstitut für Seelische Gesundheit, Bibliothek +http://lobid.org/organisations/DE-26-025#! DE-26-025 26/025 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 5, Finanzdienstleistungen +http://lobid.org/organisations/DE-26-100#! DE-26-100 26/100 Universität Gießen, Bibliothek Anglistik +http://lobid.org/organisations/DE-26-111#! DE-26-111 26/111 Universität Gießen, Fachbibliothek Geschichts- und Kulturwissenschaften / Klassische Philologie +http://lobid.org/organisations/DE-26-157#! DE-26-157 26/157 Universität Gießen, Bibliothek Genetik +http://lobid.org/organisations/DE-26-176#! DE-26-176 26/176 Universität Gießen / Bibliothek Biochemie und Endokrinologie +http://lobid.org/organisations/DE-26-260#! DE-26-260 26/260 Universität Gießen, Bibliothek Psychosomatische Medizin +http://lobid.org/organisations/DE-26-380#! DE-26-380 26/380 Universität Gießen, Arbeitskreis Wildbiologie Bibliothek +http://lobid.org/organisations/DE-Mz4#! DE-Mz4 Mz 4 Max-Planck-Institut für Chemie, Bibliothek +http://lobid.org/organisations/DE-77-034#! DE-77-034 77/034 Universität Mainz, Fachbereich 04, Medizin, Universitätsmedizin, Institut für Geschichte, Theorie und Ethik der Medizin +http://lobid.org/organisations/DE-77-058#! DE-77-058 77/058 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Philosophie +http://lobid.org/organisations/DE-18-57#! DE-18-57 18/57 Universität Hamburg, Institut für Geographie, Bibliothek +http://lobid.org/organisations/DE-18-294#! DE-18-294 18/294 Universität Hamburg, Fachbereichsbibliothek Sprache Literatur Medien, Teilbibliothek Allgemeine Sprachwissenschaft/Indogermanistik +http://lobid.org/organisations/DE-18-270#! DE-18-270 18/270 Universität Hamburg, Physikalische Institute Bahrenfeld, Theoretische Physik, Bibliothek +http://lobid.org/organisations/DE-18-239#! DE-18-239 18/239 Missionsakademie an der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-77-070#! DE-77-070 77/070 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Germanistik I / Kulturanthropologie und Germanistik II +http://lobid.org/organisations/DE-77-072#! DE-77-072 77/072 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Anglistik/ Amerikanistik +http://lobid.org/organisations/DE-77-076#! DE-77-076 77/076 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Polonicum +http://lobid.org/organisations/DE-77-078#! DE-77-078 77/078 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Klassische Archäologie +http://lobid.org/organisations/DE-77-087#! DE-77-087 77/087 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Byzantinistik +http://lobid.org/organisations/DE-77-111#! DE-77-111 77/111 Universität Mainz, Kunsthochschule +http://lobid.org/organisations/DE-77-112#! DE-77-112 77/112 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Hochschule für Musik +http://lobid.org/organisations/DE-77-113#! DE-77-113 77/113 Universität Mainz, Bereichsbibliothek Georg Forster-Gebäude / Sportwissenschaft +http://lobid.org/organisations/DE-30-65#! DE-30-65 30/65 Universitätsklinikum Frankfurt, Zentrum der Augenheilkunde +http://lobid.org/organisations/DE-30-152#! DE-30-152 30/152 Universitätsbibliothek J. C. Senckenberg, BzG, Bibliothek für Jugendbuchforschung +http://lobid.org/organisations/DE-30-185#! DE-30-185 30/185 Universität Frankfurt, Seminar für Judaistik, Bibliothek +http://lobid.org/organisations/DE-30-210#! DE-30-210 30/210 Universität Frankfurt, Institut für Empirische Sprachwissenschaft, Phonetik, Bibliothek +http://lobid.org/organisations/DE-Di1#! DE-Di1 Di 1 Studienbibliothek +http://lobid.org/organisations/DE-284#! DE-284 284 Stadtbücherei, Max-Heim-Bücherei +http://lobid.org/organisations/DE-D265#! DE-D265 D 265 Landesvorstand Sachsen der Linkspartei, PDS, Bibliothek +http://lobid.org/organisations/DE-J152#! DE-J152 J 152 Max-Planck-Institut für Menschheitsgeschichte, Bibliothek +http://lobid.org/organisations/DE-Shw27#! DE-Shw27 Shw 27 Landesinstitut für Schule und Ausbildung (LISA) Mecklenburg-Vorpommern, Seminar Schwerin, Bibliothek +http://lobid.org/organisations/DE-839#! DE-839 839 Jade Hochschule Wilhelmshaven/Oldenburg/Elsfleth, Campus Wilhelmshaven, Bibliothek +http://lobid.org/organisations/DE-943#! DE-943 943 Technische Hochschule Ulm, Bibliothek +http://lobid.org/organisations/DE-17-19#! DE-17-19 17/19 TU Darmstadt, Betriebswirtschaftliche Fachgebiete +http://lobid.org/organisations/DE-17-35#! DE-17-35 17/35 TU Darmstadt, Studienbereich Mechanik +http://lobid.org/organisations/DE-17-69#! DE-17-69 17/69 TU Darmstadt, Fachgebiet Flugsysteme und Regelungstechnik +http://lobid.org/organisations/DE-17-70#! DE-17-70 17/70 TU Darmstadt, Institut für Automatisierungstechnik und Mechatronik +http://lobid.org/organisations/DE-17-71#! DE-17-71 17/71 TU Darmstadt, Institut Theorie Elektromagnetischer Felder +http://lobid.org/organisations/DE-17-81#! DE-17-81 17/81 TU Darmstadt, Fachgebiet Strömungslehre und Aerodynamik +http://lobid.org/organisations/DE-17-84#! DE-17-84 17/84 TU Darmstadt, Fachgebiet Arbeitswissenschaft +http://lobid.org/organisations/DE-17-102#! DE-17-102 17/102 TU Darmstadt, Institut für Numerische Methoden und Informatik im Bauwesen +http://lobid.org/organisations/DE-17-103#! DE-17-103 17/103 TU Darmstadt, Fachgebiet Technische Thermodynamik +http://lobid.org/organisations/DE-17-113#! DE-17-113 17/113 TU Darmstadt, Fachgebiet Strukturdynamik +http://lobid.org/organisations/DE-17-121#! DE-17-121 17/121 TU Darmstadt, Fachbereich Informatik +http://lobid.org/organisations/DE-Aug4#! DE-Aug4 Aug 4 Hochschule Augsburg, Bibliothek +http://lobid.org/organisations/DE-7-744#! DE-7-744 7/744 Zentrum Chirurgie, Abteilung Unfall-, Plastische und Wiederherstellungschirurgie, Bibliothek +http://lobid.org/organisations/DE-F42#! DE-F42 F 42 Philosophisch-Theologische Hochschule Sankt Georgen, Bibliothek +http://lobid.org/organisations/DE-82-770#! DE-82-770 82/770 Rheinisch-Westfälische TH, Interdisziplinäre Klinische Forschungsbereiche, Rehabilitation und Prävention im ZNS, Bibliothek +http://lobid.org/organisations/DE-89-16#! DE-89-16 89/16 Technische Informationsbibliothek (TIB) Standort Conti-Campus Rechtswissenschaften +http://lobid.org/organisations/DE-89-15#! DE-89-15 89/15 Technische Informationsbibliothek (TIB) Standort Conti-Campus Erziehungswissenschaften +http://lobid.org/organisations/DE-De16#! DE-De16 De 16 Stadtarchiv Dessau-Roßlau +http://lobid.org/organisations/DE-Pl10#! DE-Pl10 Pl 10 Stadtarchiv Plauen, Bibliothek +http://lobid.org/organisations/DE-486#! DE-486 486 Landesarchiv Nordrhein-Westfalen, Abteilung Ostwestfalen-Lippe, Archivbibliothek +http://lobid.org/organisations/DE-B456#! DE-B456 B 456 Stadtbibliothek Berlin-Mitte, Bezirkszentralbibliothek Philipp Schaeffer +http://lobid.org/organisations/DE-B459#! DE-B459 B 459 Stadtbibliothek Treptow-Köpenick, Mittelpunktbibliothek Treptow +http://lobid.org/organisations/DE-B718#! DE-B718 B 718 Stadtbibliothek Mitte, Schiller-Bibliothek mit @Hugo-Jugendmedienetage +http://lobid.org/organisations/DE-Ett1#! DE-Ett1 Ett 1 Stadtarchiv Ettlingen +http://lobid.org/organisations/DE-128#! DE-128 128 Hofbibliothek Aschaffenburg +http://lobid.org/organisations/DE-Loer2#! DE-Loer2 Lör 2 Duale Hochschule Baden-Württemberg Lörrach, Zentralbibliothek +http://lobid.org/organisations/DE-43-1#! DE-43-1 43/1 Hochschul- und Landesbibliothek RheinMain, Bertramstraße +http://lobid.org/organisations/DE-43-3#! DE-43-3 43/3 Hochschul- und Landesbibliothek RheinMain, Unter den Eichen +http://lobid.org/organisations/DE-294-59#! DE-294-59 294/59 Ruhr-Universität Bochum, Institut für Neuroinformatik, Bibliothek +http://lobid.org/organisations/DE-Hag4#! DE-Hag4 Hag 4 Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek +http://lobid.org/organisations/DE-38-319#! DE-38-319 38/319 Fachbibliothek Kunst & Textil, Department Kunst und Musik, Kunst & Kunsttheorie +http://lobid.org/organisations/DE-38-323#! DE-38-323 38/323 ALEKI-Bibliothek (Arbeitsstelle für Kinder- und Jugendmedienforschung) +http://lobid.org/organisations/DE-38-324#! DE-38-324 38/324 Institut für Europäische Musikethnologie, Bibliothek +http://lobid.org/organisations/DE-M37#! DE-M37 M 37 Bibliothek des Deutschen Alpenvereins +http://lobid.org/organisations/DE-210#! DE-210 210 Deutsches Museum, Bibliothek +http://lobid.org/organisations/DE-18-254#! DE-18-254 18/254 Stiftung Europa-Kolleg, Institut für Integrationsforschung, Bibliothek +http://lobid.org/organisations/DE-519#! DE-519 519 Hochschule Neubrandenburg, Bibliothek +http://lobid.org/organisations/DE-Nwd1#! DE-Nwd1 Nwd 1 Landeshauptarchiv Koblenz, Außenstelle Rommersdorf mit Stadtarchiv Neuwied, Bibliothek +http://lobid.org/organisations/DE-82-421#! DE-82-421 82/421 Lehrstuhl für Prozessleittechnik, Bibliothek +http://lobid.org/organisations/DE-82-005#! DE-82-005 82/005 DWI - Deutsches Wollforschungsinstitut e.V., Bibliothek +http://lobid.org/organisations/DE-1043#! DE-1043 1043 TH-AB - Technische Hochschule Aschaffenburg, Hochschulbibliothek +http://lobid.org/organisations/DE-93-216#! DE-93-216 93/216 Universität Stuttgart, Institut für Fertigungstechnologie Keramischer Bauteile, Bibliothek +http://lobid.org/organisations/DE-H210#! DE-H210 H 210 Archäologisches Museum Hamburg - Stadtmuseum Harburg, Bibliothek +http://lobid.org/organisations/DE-294-61#! DE-294-61 294/61 Ruhr-Universität Bochum, Fakultät für Philologie, Allgemeine und Vergleichende Literaturwissenschaft, Bibliothek +http://lobid.org/organisations/DE-Luen4#! DE-Luen4 Lün 4 Leuphana Universität Lüneburg, Medien- und Informationszentrum, Universitätsbibliothek +http://lobid.org/organisations/DE-26-002#! DE-26-002 26/002 Universität Gießen, Zweigbibliothek Natur- und Lebenswissenschaften (ZNL) +http://lobid.org/organisations/DE-34-21#! DE-34-21 34/21 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-34-22#! DE-34-22 34/22 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-Tue128#! DE-Tue128 Tü 128 Seminar für Ausbildung und Fortbildung der Lehrkräfte Tübingen (Gymnasium), Bibliothek +http://lobid.org/organisations/DE-Rot3#! DE-Rot3 Rot 3 Stadtarchiv Rottenburg, Bibliothek +http://lobid.org/organisations/DE-18-296#! DE-18-296 18/296 Universität Hamburg, Hamburger Bibliothek für Universitätsgeschichte +http://lobid.org/organisations/DE-Kob1#! DE-Kob1 Kob 1 Landeshauptarchiv Koblenz, Bibliothek +http://lobid.org/organisations/DE-Bo405#! DE-Bo405 Bo 405 Deutsches Archäologisches Institut (DAI), Kommission für Archäologie Außereuropäischer Kulturen (KAAK), Bibliothek +http://lobid.org/organisations/DE-283#! DE-283 283 Bibliothekszentrum Klosterbau +http://lobid.org/organisations/DE-30-330#! DE-30-330 30/330 Universitätsbibliothek J. C. Senckenberg, Bibliothekszentrum Geisteswissenschaften (BzG) +http://lobid.org/organisations/DE-30-331#! DE-30-331 30/331 Europäische Akademie der Arbeit in der Universität Frankfurt am Main +http://lobid.org/organisations/DE-H77#! DE-H77 H 77 Stiftung Historische Museen Hamburg, Museum für Hamburgische Geschichte, Bibliothek +http://lobid.org/organisations/DE-H103#! DE-H103 H 103 Stiftung Historische Museen Hamburg, Altonaer Museum, Museum für Kunst- und Kulturgeschichte, Bibliothek +http://lobid.org/organisations/DE-26-192#! DE-26-192 26/192 Universität Gießen, Bibliothek Prozesstechnik +http://lobid.org/organisations/DE-Rz2#! DE-Rz2 Rz 2 Stadtarchiv Radolfzell +http://lobid.org/organisations/DE-294-64#! DE-294-64 294/64 Ruhr-Universität Bochum, Botanischer Garten, Bibliothek +http://lobid.org/organisations/DE-24-1#! DE-24-1 24/1 Deutsche Pharmazeutische Zentralbibliothek +http://lobid.org/organisations/DE-26-992#! DE-26-992 26/992 Universität Gießen, E-Journals +http://lobid.org/organisations/DE-7-721#! DE-7-721 7/721 Zentrum Psychologische Medizin, Abteilung Psychiatrie, Ernährungspsychologische Forschungsstelle, Bibliothek +http://lobid.org/organisations/DE-17-130#! DE-17-130 17/130 Allgemeines Lernzentrum der TU, Bibliothek +http://lobid.org/organisations/DE-17-133#! DE-17-133 17/133 Fachbereich Elektrotechnik und Informationstechnik, Institut für Halbleitertechnik, Bibliothek +http://lobid.org/organisations/DE-21-124#! DE-21-124 21/124 Institut für Medizinische Virologie und Epidemiologie der Viruskrankheiten, Bibliothek +http://lobid.org/organisations/DE-26-041#! DE-26-041 26/041 Bereichsbibliothek Philosophikum 2, Arbeits-, Berufs- und Wirtschaftspädagogik +http://lobid.org/organisations/DE-93-213#! DE-93-213 93/213 Universität Stuttgart, Institut für Materialwissenschaft, Abteilung Chemische Materialsynthese, Bibliothek +http://lobid.org/organisations/DE-114#! DE-114 114 Stadtbibliothek 'Heinrich Heine' Halberstadt +http://lobid.org/organisations/DE-118#! DE-118 118 Ratsbücherei der Hansestadt Lüneburg +http://lobid.org/organisations/DE-129#! DE-129 129 Stadtbibliothek Bautzen +http://lobid.org/organisations/DE-133#! DE-133 133 Stadtarchiv und Stadthistorische Bibliothek Bonn +http://lobid.org/organisations/DE-145#! DE-145 145 Stadtbibliothek Kempten +http://lobid.org/organisations/DE-163#! DE-163 163 Stadtbibliothek Zwickau +http://lobid.org/organisations/DE-167#! DE-167 167 Stadtbibliothek Görlitz +http://lobid.org/organisations/DE-183#! DE-183 183 RW21 Stadtbibliothek Bayreuth +http://lobid.org/organisations/DE-223#! DE-223 223 Stadtbibliothek Celle +http://lobid.org/organisations/DE-228#! DE-228 228 Stadtbücherei in der Pfortmühle +http://lobid.org/organisations/DE-236#! DE-236 236 Stadtbücherei Iserlohn +http://lobid.org/organisations/DE-241#! DE-241 241 Bücherei am Stadtpark +http://lobid.org/organisations/DE-247#! DE-247 247 Stadtbücherei Lüdenscheid +http://lobid.org/organisations/DE-249#! DE-249 249 Stadtbibliothek Minden +http://lobid.org/organisations/DE-263#! DE-263 263 Stadtbücherei Oberursel +http://lobid.org/organisations/DE-268#! DE-268 268 Stadtbibliothek Ratingen +http://lobid.org/organisations/DE-273#! DE-273 273 Stadtbibliothek Siegburg +http://lobid.org/organisations/DE-274#! DE-274 274 Stadtbibliothek, Hauptstelle +http://lobid.org/organisations/DE-277#! DE-277 277 Stadtbücherei, Zentralbibliothek +http://lobid.org/organisations/DE-278#! DE-278 278 Stadtarchiv und wissenschaftliche Stadtbibliothek +http://lobid.org/organisations/DE-411#! DE-411 411 Stadtbücherei Coesfeld +http://lobid.org/organisations/DE-425#! DE-425 425 Stadtbücherei Werne +http://lobid.org/organisations/DE-426#! DE-426 426 Stadtbücherei Wetter +http://lobid.org/organisations/DE-430#! DE-430 430 Stadtbibliothek Dormagen +http://lobid.org/organisations/DE-436#! DE-436 436 Stadtbibliothek Kempen +http://lobid.org/organisations/DE-438#! DE-438 438 Stadtbücherei Oer-Erkenschwick +http://lobid.org/organisations/DE-446#! DE-446 446 Stadtbücherei Stolberg +http://lobid.org/organisations/DE-457#! DE-457 457 Stadtbibliothek Füssen +http://lobid.org/organisations/DE-470#! DE-470 470 Stadtbücherei Bergisch Gladbach +http://lobid.org/organisations/DE-485#! DE-485 485 Stadtarchiv Celle, Bibliothek +http://lobid.org/organisations/DE-487#! DE-487 487 Stadtbücherei im Salzstadel +http://lobid.org/organisations/DE-488#! DE-488 488 Stadt- und Schulbücherei Lauenburg +http://lobid.org/organisations/DE-498#! DE-498 498 Stadtbücherei Norderstedt-Mitte +http://lobid.org/organisations/DE-499#! DE-499 499 Stadtbibliothek Cuxhaven +http://lobid.org/organisations/DE-501#! DE-501 501 Bibliothek Kyritz +http://lobid.org/organisations/DE-511#! DE-511 511 Stadtbibliothek Königs Wusterhausen +http://lobid.org/organisations/DE-516#! DE-516 516 Stadtbibliothek Neustadt/Sachsen +http://lobid.org/organisations/DE-529#! DE-529 529 Stadtbibliothek Calau +http://lobid.org/organisations/DE-530#! DE-530 530 Stadtbibliothek Falkensee +http://lobid.org/organisations/DE-532#! DE-532 532 Stadtbibliothek ""Im Alten Bahnhof"" Hennigsdorf +http://lobid.org/organisations/DE-544#! DE-544 544 Stadt- und Kreisergänzungsbibliothek Marienberg +http://lobid.org/organisations/DE-548#! DE-548 548 Stadtbibliothek Oschatz +http://lobid.org/organisations/DE-551#! DE-551 551 Hochschule Magdeburg-Stendal, Hochschulbibliothek +http://lobid.org/organisations/DE-554#! DE-554 554 Kreisbibliothek Havelland Rathenow +http://lobid.org/organisations/DE-557#! DE-557 557 Stadt- und Kreisbibliothek Bad Salzungen +http://lobid.org/organisations/DE-568#! DE-568 568 Stadtbibliothek Zahna +http://lobid.org/organisations/DE-710#! DE-710 710 Heinrich-Heine-Institut, Bibliothek +http://lobid.org/organisations/DE-722#! DE-722 722 Stadtbücherei Gifhorn +http://lobid.org/organisations/DE-723#! DE-723 723 Stadtbibliothek Leer +http://lobid.org/organisations/DE-724#! DE-724 724 Stadtbibliothek Neustadt am Rübenberge +http://lobid.org/organisations/DE-725#! DE-725 725 Stadtbibliothek Nordhorn +http://lobid.org/organisations/DE-745#! DE-745 745 Stadtbücherei Gevelsberg +http://lobid.org/organisations/DE-760#! DE-760 760 Stadtbücherei Bad Münstereifel +http://lobid.org/organisations/DE-791#! DE-791 791 Stadtbücherei Monschau +http://lobid.org/organisations/DE-796#! DE-796 796 Stadtbücherei Pulheim +http://lobid.org/organisations/DE-798#! DE-798 798 Stadtbibliothek Rheinberg +http://lobid.org/organisations/DE-801#! DE-801 801 Stadtbücherei Sprockhövel +http://lobid.org/organisations/DE-803#! DE-803 803 Katholische Öffentliche Bibliothek St. Nikomedes +http://lobid.org/organisations/DE-806#! DE-806 806 Stadtbücherei Telgte +http://lobid.org/organisations/DE-808#! DE-808 808 Stadtbücherei Vlotho +http://lobid.org/organisations/DE-809#! DE-809 809 Öffentliche Bücherei St. Georg +http://lobid.org/organisations/DE-810#! DE-810 810 Kreisarchiv Warendorf, Bibliothek +http://lobid.org/organisations/DE-816#! DE-816 816 Stadtbibliothek Wipperfürth +http://lobid.org/organisations/DE-827#! DE-827 827 Stadtbücherei Alsdorf +http://lobid.org/organisations/DE-831#! DE-831 831 Stadtbücherei Neubeckum +http://lobid.org/organisations/DE-850#! DE-850 850 Stadtbibliothek Straubing +http://lobid.org/organisations/DE-852#! DE-852 852 Stadtbibliothek Bad Neustadt +http://lobid.org/organisations/DE-864#! DE-864 864 Stadtbibliothek Schwandorf +http://lobid.org/organisations/DE-870#! DE-870 870 Stadtbücherei im Luitpoldbau +http://lobid.org/organisations/DE-871#! DE-871 871 Stadtbibliothek Schwabach +http://lobid.org/organisations/DE-878#! DE-878 878 Stadtbibliothek am Salzstadel +http://lobid.org/organisations/DE-884#! DE-884 884 Stadtbibliothek Sulzbach +http://lobid.org/organisations/DE-919#! DE-919 919 Gemeindebücherei Lindlar +http://lobid.org/organisations/DE-920#! DE-920 920 Gemeindebibliothek Steinhagen +http://lobid.org/organisations/DE-934#! DE-934 934 Museum Nienburg, Museumsbibliothek +http://lobid.org/organisations/DE-935#! DE-935 935 Stadtbücherei Marktredwitz +http://lobid.org/organisations/DE-940#! DE-940 940 Oberlandesgericht Oldenburg, Bibliothek +http://lobid.org/organisations/DE-949#! DE-949 949 Hochschule Biberach, Bibliothek +http://lobid.org/organisations/DE-956#! DE-956 956 Evangelische Hochschule Rheinland-Westfalen-Lippe, Bibliothek +http://lobid.org/organisations/DE-957#! DE-957 957 Stadtbücherei Mindelheim +http://lobid.org/organisations/DE-964#! DE-964 964 Stadtbibliothek Nienburg/Weser +http://lobid.org/organisations/DE-970#! DE-970 970 Stadtbücherei Bad Waldsee +http://lobid.org/organisations/DE-984#! DE-984 984 Hochschule für Gestaltung Schwäbisch Gmünd, Bibliothek +http://lobid.org/organisations/DE-986#! DE-986 986 Stadtbibliothek Filderstadt, Zentralbibliothek +http://lobid.org/organisations/DE-991#! DE-991 991 Hochschule Albstadt-Sigmaringen, Bibliothek Sigmaringen +http://lobid.org/organisations/DE-999#! DE-999 999 Stadtbibliothek im Glashaus Schwäbisch Hall +http://lobid.org/organisations/DE-1004#! DE-1004 1004 Stadt- und Kurbücherei +http://lobid.org/organisations/DE-1032#! DE-1032 1032 Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek +http://lobid.org/organisations/DE-1034#! DE-1034 1034 Gemeindebücherei Stelle +http://lobid.org/organisations/DE-1038#! DE-1038 1038 Bibliothek Wilnsdorf +http://lobid.org/organisations/DE-1040#! DE-1040 1040 Stadtbücherei Laatzen +http://lobid.org/organisations/DE-1042#! DE-1042 1042 Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek +http://lobid.org/organisations/DE-1064#! DE-1064 1064 Stadtbücherei Lauterbach +http://lobid.org/organisations/DE-1068#! DE-1068 1068 Stadtbücherei Viernheim +http://lobid.org/organisations/DE-1073#! DE-1073 1073 Fachinformationszentrum der Bundeswehr (FIZBw) - Ausleihservice Hardthöhe +http://lobid.org/organisations/DE-1074#! DE-1074 1074 Stadtbücherei Bad Ems +http://lobid.org/organisations/DE-1076#! DE-1076 1076 Stadtbücherei Singen +http://lobid.org/organisations/DE-1079#! DE-1079 1079 Stadtbibliothek Göppingen +http://lobid.org/organisations/DE-1081#! DE-1081 1081 Friedrich-Huth-Bücherei +http://lobid.org/organisations/DE-1082#! DE-1082 1082 Hochschule Kaiserslautern, Campus Zweibrücken, Bibliothek +http://lobid.org/organisations/DE-1088#! DE-1088 1088 Stadtbücherei Nettetal +http://lobid.org/organisations/DE-1098#! DE-1098 1098 Stadtbibliothek, Hauptstelle, kirchliche öffentliche Büchereien +http://lobid.org/organisations/DE-1105#! DE-1105 1105 Hochschule Koblenz, RheinAhrCampus, Bibliothek +http://lobid.org/organisations/DE-A2#! DE-A2 A 2 Kaiser-Karls-Gymnasium, Lehrerbibliothek +http://lobid.org/organisations/DE-Alf1#! DE-Alf1 Alf 1 Gymnasium Alfeld, Mediothek +http://lobid.org/organisations/DE-Alg1#! DE-Alg1 Alg 1 Stadt- und Schulbibliothek Altenberg +http://lobid.org/organisations/DE-Alt3#! DE-Alt3 Alt 3 Stadtbücherei Altdorf +http://lobid.org/organisations/DE-An2#! DE-An2 An 2 Stadtbibliothek ""Johann Christoph Adelung"" +http://lobid.org/organisations/DE-Arb3#! DE-Arb3 Arb 3 Industrie- und Handelskammer Arnsberg, Bücherei +http://lobid.org/organisations/DE-B250#! DE-B250 B 250 Blindenbücherei der Johann-August-Zeune-Schule für Blinde +http://lobid.org/organisations/DE-B1561#! DE-B1561 B 1561 Französisches Gymnasium, Schulbücherei +http://lobid.org/organisations/DE-B2223#! DE-B2223 B 2223 Landeskirchliche Bibliothek der EKBO +http://lobid.org/organisations/DE-Bi13#! DE-Bi13 Bi 13 Naturkunde-Museum Bielefeld, Bibliothek +http://lobid.org/organisations/DE-Bi15#! DE-Bi15 Bi 15 Evangelische Kirche von Westfalen, Landeskirchenamt, Bibliothek +http://lobid.org/organisations/DE-Bin1#! DE-Bin1 Bin 1 Technische Hochschule Bingen, Bibliothek +http://lobid.org/organisations/DE-Bit4#! DE-Bit4 Bit 4 Bitterfelder Umweltbibliothek im Hause der Wolfener Analytik GmbH +http://lobid.org/organisations/DE-Bm5#! DE-Bm5 Bm 5 Sternwarte Bochum, Planetarium, Bibliothek +http://lobid.org/organisations/DE-Bo110#! DE-Bo110 Bo 110 BM Verteidigung, Bibliothek - Ausleihservice Liegenschaft Hardthöhe +http://lobid.org/organisations/DE-Bo123#! DE-Bo123 Bo 123 Institut für Arbeitsschutz der Deutschen Gesetzlichen Unfallversicherung (DGUV), Bibliothek +http://lobid.org/organisations/DE-Bo403#! DE-Bo403 Bo 403 Bundesministerium für Familie, Senioren, Frauen und Jugend, Bibliothek +http://lobid.org/organisations/DE-Bra1#! DE-Bra1 Bra 1 Städtisches Petrus-Legge-Gymnasium, Lehrerbücherei +http://lobid.org/organisations/DE-Bre1#! DE-Bre1 Bre 1 Staatsarchiv Bremen +http://lobid.org/organisations/DE-Bre10#! DE-Bre10 Bre 10 Focke-Museum, Bibliothek +http://lobid.org/organisations/DE-Bre12#! DE-Bre12 Bre 12 Forschungsstelle Osteuropa an der Universität Bremen - Bibliothek +http://lobid.org/organisations/DE-Bri1#! DE-Bri1 Bri 1 Lehrerbücherei des Gymnasiums Petrinum +http://lobid.org/organisations/DE-Bst1#! DE-Bst1 Bst 1 Forschungszentrum Borstel / Leibniz-Lungenzentrum, Wissenschaftliche Informationsdienste & Bibliothek +http://lobid.org/organisations/DE-Bur1#! DE-Bur1 Bur 1 Schloßbauverein Burg an der Wupper e.V., Bergisches Museum, Bücherei +http://lobid.org/organisations/DE-Cas1#! DE-Cas1 Cas 1 Stadtarchiv Castrop-Rauxel, Bibliothek +http://lobid.org/organisations/DE-Ch98#! DE-Ch98 Ch 98 Hans Zesewitz Bibliothek +http://lobid.org/organisations/DE-D29#! DE-D29 D 29 Senckenberg Naturhistorische Sammlungen Dresden, Fachbibliothek Mineralogie und Geologie +http://lobid.org/organisations/DE-D207#! DE-D207 D 207 Karl-Preusker-Bücherei +http://lobid.org/organisations/DE-Dil1#! DE-Dil1 Dil 1 Dillinger Hüttenwerke AG, Bücherei +http://lobid.org/organisations/DE-Doe1#! DE-Doe1 Doe 1 Stadtbibliothek am Lutherplatz +http://lobid.org/organisations/DE-Ds104#! DE-Ds104 Ds 104 Internationales Musikinstitut Darmstadt (IMD), Bibliothek +http://lobid.org/organisations/DE-Due8#! DE-Due8 Dü 8 Landesarchiv NRW, Abteilung Rheinland, Bibliothek +http://lobid.org/organisations/DE-Due18#! DE-Due18 Dü 18 Kunstakademie Düsseldorf, Bibliothek +http://lobid.org/organisations/DE-Due29#! DE-Due29 Dü 29 Aquazoo - Löbbecke-Museum, Bibliothek +http://lobid.org/organisations/DE-Due40#! DE-Due40 Dü 40 Landesregierung Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-Due60#! DE-Due60 Dü 60 Information und Technik Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-Due67#! DE-Due67 Dü 67 Ministerium der Finanzen des Landes Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-Due72#! DE-Due72 Dü 72 Archiv der Evangelischen Kirche im Rheinland, Bibliothek +http://lobid.org/organisations/DE-E9#! DE-E9 E 9 Medienforum des Bistums Essen, Bibliothek +http://lobid.org/organisations/DE-E10#! DE-E10 E 10 Museum Folkwang, Museumsbibliothek +http://lobid.org/organisations/DE-F38#! DE-F38 F 38 Evonik Degussa GmbH, Industriepark Wolfgang GmbH +http://lobid.org/organisations/DE-F139#! DE-F139 F 139 Deutsche Flugsicherung GmbH, DFS/ VKB Informationsservice +http://lobid.org/organisations/DE-F146#! DE-F146 F 146 Museum für Angewandte Kunst, Bibliothek +http://lobid.org/organisations/DE-For3#! DE-For3 For 3 Stadtbibliothek Forst (Lausitz) +http://lobid.org/organisations/DE-Frg1#! DE-Frg1 Frg 1 Privatbibliothek von Hans Jörg von Graevenitz +http://lobid.org/organisations/DE-Ful2#! DE-Ful2 Ful 2 Bibliothek des Bischöflichen Priesterseminars +http://lobid.org/organisations/DE-Ger1#! DE-Ger1 Ger 1 Abtei Gerleve, Bibliothek +http://lobid.org/organisations/DE-Gm3#! DE-Gm3 Gm 3 Stadtbibliothek 'Johann Gottfried Seume' +http://lobid.org/organisations/DE-Goe162#! DE-Goe162 Gö 162 Städtisches Museum, Bibliothek +http://lobid.org/organisations/DE-Goe164#! DE-Goe164 Gö 164 Max-Planck-Institut zur Erforschung multireligiöser und multiethnischer Gesellschaften, Bibliothek +http://lobid.org/organisations/DE-Gr105#! DE-Gr105 Gr 105 Landesarchiv Greifswald, Bibliothek +http://lobid.org/organisations/DE-H42#! DE-H42 H 42 Land- und Amtsgericht Hamburg, Bibliothek +http://lobid.org/organisations/DE-H107#! DE-H107 H 107 Bücherhallen Hamburg, Zentralbibliothek, Abteilung Musik & Tanz +http://lobid.org/organisations/DE-H154#! DE-H154 H 154 Asklepios Westklinikum Hamburg, Ärztliche Bibliothek +http://lobid.org/organisations/DE-H203#! DE-H203 H 203 Berufliche Schule Farmsen G 16, Staatliche Schule für Technik und Medien, Mediothek +http://lobid.org/organisations/DE-H268#! DE-H268 H 268 Michael-Balint-Institut für Psychoanalyse, Psychotherapie und analytische Kinder- und Jugendlichenpsychotherapie, Bibliothek +http://lobid.org/organisations/DE-H351#! DE-H351 H 351 Pädagogisch-Theologisches Institut der Nordkirche, Bibliothek +http://lobid.org/organisations/DE-H359#! DE-H359 H 359 Landesarbeitsgericht und Arbeitsgericht Hamburg, Bibliothek und Tarifvertragssammlung +http://lobid.org/organisations/DE-Ha118#! DE-Ha118 Ha 118 Berufsgenossenschaftliche Kliniken Bergmannstrost, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Hbg1#! DE-Hbg1 Hbg 1 Fachhochschule für Interkulturelle Theologie Hermannsburg, Bibliothek +http://lobid.org/organisations/DE-Hil4#! DE-Hil4 Hil 4 Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz, Bibliothek +http://lobid.org/organisations/DE-Hu1#! DE-Hu1 Hu 1 Hermann-Tast-Schule, Lehrerbibliothek +http://lobid.org/organisations/DE-Hv112#! DE-Hv112 Hv 112 Bibliothek der Bundesanstalt für Geowissenschaften und Rohstoffe +http://lobid.org/organisations/DE-Hv118#! DE-Hv118 Hv 118 Sozialgericht Hannover, Bibliothek +http://lobid.org/organisations/DE-Hv119#! DE-Hv119 Hv 119 Michaeliskloster, Evangelisches Zentrum für Gottesdienst und Kirchenmusik, Bibliothek +http://lobid.org/organisations/DE-Hv133#! DE-Hv133 Hv 133 Bibliothek des Niedersächsischen Justizministeriums +http://lobid.org/organisations/DE-Hv134#! DE-Hv134 Hv 134 Evangelische Kirche in Deutschland, Kirchenamt, Bibliothek +http://lobid.org/organisations/DE-Je1#! DE-Je1 Je 1 Mariengymnasium, Bibliothek +http://lobid.org/organisations/DE-Ka88#! DE-Ka88 Ka 88 Zentrum für Kunst und Medien Karlsruhe / Staatliche Hochschule für Gestaltung, Bibliothek +http://lobid.org/organisations/DE-Kal1#! DE-Kal1 Kal 1 Stadtbibliothek Kalbe +http://lobid.org/organisations/DE-Kgst1#! DE-Kgst1 Kgst 1 Institut für Kirchengeschichte von Böhmen-Mähren-Schlesien e.V., Haus Königstein, Bibliothek +http://lobid.org/organisations/DE-Kn123#! DE-Kn123 Kn 123 Max-Planck-Institut für neurologische Forschung mit Klaus-Joachim-Zülch-Laboratorien der Max-Planck-Gesellschaft und der Medizinischen Fakultät der Universität zu Köln, Bibliothek +http://lobid.org/organisations/DE-Kn168#! DE-Kn168 Kn 168 Westdeutscher Rundfunk (WDR), Dokumentation und Archive +http://lobid.org/organisations/DE-Kn178#! DE-Kn178 Kn 178 Bibliothek des Italienischen Kulturinstituts Köln +http://lobid.org/organisations/DE-Kn185#! DE-Kn185 Kn 185 Kunsthochschule für Medien, Bibliothek / Mediathek +http://lobid.org/organisations/DE-Kn186#! DE-Kn186 Kn 186 PHILIP MORRIS Research Laboratories GmbH, Bibliothek +http://lobid.org/organisations/DE-Kon2#! DE-Kon2 Kon 2 Stadtarchiv Konstanz, Bibliothek +http://lobid.org/organisations/DE-Kr1#! DE-Kr1 Kr 1 Kaiser Wilhelm Museum, Kunstwissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Kr4#! DE-Kr4 Kr 4 Geologischer Dienst Nordrhein-Westfalen - Landesbetrieb, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ks14#! DE-Ks14 Ks 14 Museumslandschaft Hessen Kassel, Bibliothek +http://lobid.org/organisations/DE-Ks15#! DE-Ks15 Ks 15 Archiv Frau und Musik +http://lobid.org/organisations/DE-Kue3#! DE-Kue3 Kue 3 Leibniz-Institut für Atmosphärenphysik e.V. an der Universität Rostock, Bibliothek +http://lobid.org/organisations/DE-L321#! DE-L321 L 321 Max-Planck-Institut für evolutionäre Anthropologie, Bibliothek +http://lobid.org/organisations/DE-Lei1#! DE-Lei1 Lei 1 Deutsches Spielkarten-Museum, Landesmuseum Württemberg Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Lg3#! DE-Lg3 Lg 3 Deutsch-Französisches Institut, Frankreich-Bibliothek +http://lobid.org/organisations/DE-Lin1b#! DE-Lin1b Lin 1b Max-Planck-Institut für Sonnensystemforschung, Bibliothek +http://lobid.org/organisations/DE-Ln5#! DE-Ln5 Ln 5 Abbott GmbH & Co., Bibliothek +http://lobid.org/organisations/DE-Lue20#! DE-Lue20 Lü 20 Brahms-Institut an der Musikhochschule Lübeck, Bibliothek +http://lobid.org/organisations/DE-Luen1#! DE-Luen1 Lün 1 Museum Lüneburg, Bibliothek +http://lobid.org/organisations/DE-Luen3#! DE-Luen3 Lün 3 Niedersächsisches Oberverwaltungsgericht, Bibliothek +http://lobid.org/organisations/DE-M31#! DE-M31 M 31 Stiftsbibliothek Abtei St. Bonifaz +http://lobid.org/organisations/DE-M331#! DE-M331 M 331 Bayerischer Rundfunk, Bibliothek +http://lobid.org/organisations/DE-M339#! DE-M339 M 339 Stiftung Bayerisches Amerikahaus gGmbH, Information und Recherche, Bibliothek +http://lobid.org/organisations/DE-M342#! DE-M342 M 342 Thesaurus linguae Latinae, Bibliothek +http://lobid.org/organisations/DE-M462#! DE-M462 M 462 Tolstoi-Bibliothek +http://lobid.org/organisations/DE-M469#! DE-M469 M 469 Priesterseminar München, Bibliothek +http://lobid.org/organisations/DE-M470#! DE-M470 M 470 Fogra Forschungsgesellschaft Druck e.V., Bibliothek +http://lobid.org/organisations/DE-M475#! DE-M475 M 475 Fachinformation der MTU Aero Engines AG, Abteilung TEPD-F +http://lobid.org/organisations/DE-Mb43#! DE-Mb43 Mb 43 Landesbetrieb Landwirtschaft Hessen, Bieneninstitut Kirchhain, Bibliothek +http://lobid.org/organisations/DE-Me6#! DE-Me6 Me 6 Meininger Museen, Kulturstiftung Meiningen Eisenach +http://lobid.org/organisations/DE-Mes1#! DE-Mes1 Mes 1 Bibliothek der Benediktinerabtei Königsmünster +http://lobid.org/organisations/DE-Mh5#! DE-Mh5 Mh 5 Städtische Kunsthalle, Kunstwissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Mue84#! DE-Mue84 Mü 84 Industrie- und Handelskammer Nord Westfalen, Bibliothek +http://lobid.org/organisations/DE-6-139a#! DE-6-139a 6/139a Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek +http://lobid.org/organisations/DE-Mue203#! DE-Mue203 Mü 203 Landgericht, Bücherei +http://lobid.org/organisations/DE-Mue208#! DE-Mue208 Mü 208 Westfälische Verwaltungs- und Wirtschaftsakademie und Westfälisches Studieninstitut: Gemeinsame Bücherei +http://lobid.org/organisations/DE-Mue209#! DE-Mue209 Mü 209 Generaldirektion Wasserstraßen und Schifffahrt, Außenstelle West, Bücherei +http://lobid.org/organisations/DE-Mz2#! DE-Mz2 Mz 2 Martinus-Bibliothek, Wissenschaftliche Diözesanbibliothek +http://lobid.org/organisations/DE-Mz110#! DE-Mz110 Mz 110 Landesmuseum Mainz, Bibliothek +http://lobid.org/organisations/DE-N24#! DE-N24 N 24 Industrie- und Handelskammer Nürnberg für Mittelfranken, Bibliothek +http://lobid.org/organisations/DE-N28#! DE-N28 N 28 Stadtarchiv Nürnberg, Bibliothek und Bücherei des Vereins für Geschichte der Stadt Nürnberg +http://lobid.org/organisations/DE-Neud1#! DE-Neud1 Neud 1 Augustana-Hochschule, Bibliothek +http://lobid.org/organisations/DE-Oe1#! DE-Oe1 Oe 1 Bundesanstalt für Straßenwesen (BASt), Referat Externe Forschung, Bibliothek und Dokumentationswesen +http://lobid.org/organisations/DE-Oel1#! DE-Oel1 Oel 1 Stadtbibliothek Oelsnitz +http://lobid.org/organisations/DE-Old4#! DE-Old4 Old 4 Medienstelle der Evangelisch-lutherischen Kirche in Oldenburg +http://lobid.org/organisations/DE-Pn2#! DE-Pn2 Pn 2 Gymnasium Schloss Plön des Kreises Plön, Lehrerbücherei +http://lobid.org/organisations/DE-Po77#! DE-Po77 Po 77 Bibliothek des Landesamtes für Umwelt, Gesundheit und Verbraucherschutz +http://lobid.org/organisations/DE-Pr3#! DE-Pr3 Pr 3 Stadtbibliothek (im Dominikanerkloster) +http://lobid.org/organisations/DE-R103#! DE-R103 R 103 Innovations- und Bildungszentrum Hohen Luckow e.V., Fachinformationszentrum Energie-Umwelt-Wirtschaft +http://lobid.org/organisations/DE-Rb3#! DE-Rb3 Rb 3 Stadtbibliothek Radeberg +http://lobid.org/organisations/DE-Ri7#! DE-Ri7 Ri 7 Jürgen-Fuchs-Bibliothek +http://lobid.org/organisations/DE-Ru7#! DE-Ru7 Ru 7 Historische Bibliothek der Stadt Rudolstadt +http://lobid.org/organisations/DE-Sg1#! DE-Sg1 Sg 1 Museum und Galerie im Prediger, Bibliothek +http://lobid.org/organisations/DE-Star1#! DE-Star1 Star 1 Max-Planck-Institut für Ornithologie, Bibliothek +http://lobid.org/organisations/DE-Stg118#! DE-Stg118 Stg 118 Standard Elektrik Lorenz AG, Fachbücherei +http://lobid.org/organisations/DE-Stg121#! DE-Stg121 Stg 121 Energie-Versorgung Schwaben AG, Zentralarchiv, Bibliothek +http://lobid.org/organisations/DE-Stg258#! DE-Stg258 Stg 258 Duale Hochschule Baden-Württemberg Stuttgart, Campus Horb, Bibliothek +http://lobid.org/organisations/DE-Stg263#! DE-Stg263 Stg 263 Landesstelle für Museumsbetreuung Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Stg265#! DE-Stg265 Stg 265 Staatliches Museum für Naturkunde Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Stu1#! DE-Stu1 Stu 1 Bibliothek Stuhr +http://lobid.org/organisations/DE-Sw2#! DE-Sw2 Sw 2 Stadt- und Kreisbibliothek Salzwedel +http://lobid.org/organisations/DE-Swt1#! DE-Swt1 Swt 1 Hephata, Hessisches Diakoniezentrum e.V., Bibliothek +http://lobid.org/organisations/DE-Te2#! DE-Te2 Te 2 Sana Krankenhaus Templin, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Th1#! DE-Th1 Th 1 Forschungsinstitut Futtermitteltechnik der Internationalen Forschungsgemeinschaft Futtermitteltechnik e.V., Bibliothek +http://lobid.org/organisations/DE-Tr21#! DE-Tr21 Tr 21 Institut für Cusanus-Forschung, Bibliothek +http://lobid.org/organisations/DE-Tue129#! DE-Tue129 Tü 129 Museumsgesellschaft Tübingen e.V., Bibliothek +http://lobid.org/organisations/DE-Vil2#! DE-Vil2 Vil 2 Duale Hochschule Baden-Württemberg Villingen-Schwenningen, Bibliothek +http://lobid.org/organisations/DE-Was1#! DE-Was1 Was 1 Gymnasium der Stadt Warstein, Bibliothek +http://lobid.org/organisations/DE-Wei1#! DE-Wei1 Wei 1 Klosterbibliothek der Abtei Weingarten +http://lobid.org/organisations/DE-Wim21#! DE-Wim21 Wim 21 Materialforschungs- und -prüfanstalt an der Bauhaus-Universität Weimar (MFPA), Bibliothek +http://lobid.org/organisations/DE-1116#! DE-1116 1116 Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek +http://lobid.org/organisations/DE-Zev1#! DE-Zev1 Zev 1 Bibliothek Zeven +http://lobid.org/organisations/DE-Kn188#! DE-Kn188 Kn 188 Max-Planck-Institut für Gesellschaftsforschung, Bibliothek +http://lobid.org/organisations/DE-1110#! DE-1110 1110 Gemeindebücherei Bönen +http://lobid.org/organisations/DE-A96#! DE-A96 A 96 Hochschulbibliothek der Fachhochschule Aachen +http://lobid.org/organisations/DE-34-10#! DE-34-10 34/10 Universitätsbibliothek Kassel, Elektronische Ressourcen +http://lobid.org/organisations/DE-1118#! DE-1118 1118 Stadtbücherei Jever +http://lobid.org/organisations/DE-He210#! DE-He210 He 210 Deutsches Institut für Jugendhilfe und Familienrecht, Bibliothek +http://lobid.org/organisations/DE-25-170#! DE-25-170 25/170 Freiburger Institut für Paläowissenschaftliche Studien, Bibliothek +http://lobid.org/organisations/DE-Stg269#! DE-Stg269 Stg 269 Haus der Geschichte Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-1123#! DE-1123 1123 Stadtbücherei Heppenheim +http://lobid.org/organisations/DE-82-006#! DE-82-006 82/006 Allgemeiner Studierendenausschuss (AStA), Bibliothek +http://lobid.org/organisations/DE-Clo1#! DE-Clo1 Clo 1 Münsterländische Tageszeitung, Archiv +http://lobid.org/organisations/DE-Bhv1#! DE-Bhv1 Bhv 1 Samtgemeinde Bruchhausen-Vilsen, Archiv +http://lobid.org/organisations/DE-1129#! DE-1129 1129 Stadtbücherei Albstadt +http://lobid.org/organisations/DE-B478#! DE-B478 B 478 BBF | Bibliothek für Bildungsgeschichtliche Forschung in Berlin +http://lobid.org/organisations/DE-1130#! DE-1130 1130 Stadtbücherei Ottweiler +http://lobid.org/organisations/DE-77-002#! DE-77-002 77/002 Universität Mainz, Bereichsbibliothek Georg Forster-Gebäude +http://lobid.org/organisations/DE-25-172#! DE-25-172 25/172 Ethik-Kommission, Bibliothek +http://lobid.org/organisations/DE-B1539#! DE-B1539 B 1539 Jüdisches Museum Berlin, Bibliothek +http://lobid.org/organisations/DE-D268#! DE-D268 D 268 Deutsche Gesetzliche Unfallversicherung (DGUV), Institut für Arbeit und Gesundheit, Bibliothek +http://lobid.org/organisations/DE-He211#! DE-He211 He 211 Heidelberger Akademie der Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-J159#! DE-J159 J 159 Saale-Holzland-Kreis, Kreisarchiv +http://lobid.org/organisations/DE-B4#! DE-B4 B 4 Berlin-Brandenburgische Akademie der Wissenschaften, Akademiebibliothek +http://lobid.org/organisations/DE-1135#! DE-1135 1135 Kreiskultur- und Archivamt Biberach +http://lobid.org/organisations/DE-30-332#! DE-30-332 30/332 Universität Frankfurt, Universitätsarchiv +http://lobid.org/organisations/DE-Mau2#! DE-Mau2 Mau 2 Sportarchiv im Landesarchiv Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-26-993#! DE-26-993 26/993 Universität Gießen, Datenbanken der Universität Gießen +http://lobid.org/organisations/DE-Bo410#! DE-Bo410 Bo 410 DIE-Bibliothek +http://lobid.org/organisations/DE-Y5#! DE-Y5 Y 5 Deutsches Institut für Japanstudien, Bibliothek +http://lobid.org/organisations/DE-1138#! DE-1138 1138 Stadtbücherei Kronberg im Taunus +http://lobid.org/organisations/DE-Kn189#! DE-Kn189 Kn 189 Kölner Frauengeschichtsverein e. V., Bibliothek +http://lobid.org/organisations/DE-D269#! DE-D269 D 269 Fraunhofer Institut Photonische Mikrosysteme, Bibliothek +http://lobid.org/organisations/DE-Grh1#! DE-Grh1 Grh 1 Umweltbibliothek Großhennersdorf e.V. +http://lobid.org/organisations/DE-1860#! DE-1860 1860 Stadtbücherei Wertheim +http://lobid.org/organisations/DE-60#! DE-60 60 Stadt- und Landesbibliothek Dortmund +http://lobid.org/organisations/DE-Stg257#! DE-Stg257 Stg 257 Ev. Hochschul- und Zentralbibliothek Württemberg, Standort Stuttgart-Birkach +http://lobid.org/organisations/DE-Mng1#! DE-Mng1 Mng 1 Bleicher-Nachlass im Heimatmuseum +http://lobid.org/organisations/DE-Bh5#! DE-Bh5 Bh 5 Bezirk Oberfranken, Kultur- und Heimatpflege, Bibliothek +http://lobid.org/organisations/DE-1866#! DE-1866 1866 Hochschule für Gesundheit, Hochschulbibliothek +http://lobid.org/organisations/DE-Gue1#! DE-Gue1 Gü 1 Landesforschungsanstalt für Landwirtschaft und Fischerei MV, Bibliothek +http://lobid.org/organisations/DE-Los1#! DE-Los1 Los 1 Kurpfalz-Bibliothek 'Heinrich Vetter' Lorsch +http://lobid.org/organisations/DE-Lim1#! DE-Lim1 Lim 1 Kurpfalzbibliothek ""Heinrich Vetter"" Limburgerhof +http://lobid.org/organisations/DE-Brv1#! DE-Brv1 Brv 1 Landkreis Rotenburg (Wümme), Kreisarchiv +http://lobid.org/organisations/DE-Bo416#! DE-Bo416 Bo 416 Bundesanstalt für Landwirtschaft und Ernährung, Bibliothek +http://lobid.org/organisations/DE-Wit3#! DE-Wit3 Wit 3 Gustav-Landauer-Bibliothek Witten +http://lobid.org/organisations/DE-1872#! DE-1872 1872 Mediathek Gundelfingen +http://lobid.org/organisations/DE-MUS-000228#! DE-MUS-000228 Museen der Stadt Regensburg / document Neupfarrplatz +http://lobid.org/organisations/DE-MUS-001221#! DE-MUS-001221 Synagoge Altenkunstadt +http://lobid.org/organisations/DE-MUS-001310#! DE-MUS-001310 Museum Wasseralfingen +http://lobid.org/organisations/DE-MUS-001612#! DE-MUS-001612 Dorfmuseum Sennfeld und ehemalige Synagoge Sennfeld +http://lobid.org/organisations/DE-MUS-001721#! DE-MUS-001721 Nationalpark-Tor Rurberg +http://lobid.org/organisations/DE-MUS-001825#! DE-MUS-001825 Nationalpark-Tor Monschau-Höfen +http://lobid.org/organisations/DE-MUS-002011#! DE-MUS-002011 Kunstmuseum der Stadt Albstadt +http://lobid.org/organisations/DE-MUS-002328#! DE-MUS-002328 Barre's Brauwelt GmbH mit Brauerei Museum +http://lobid.org/organisations/DE-MUS-002813#! DE-MUS-002813 Haus Papst Benedict XVI - Neue Schatzkammer und Wallfahrtsmuseum +http://lobid.org/organisations/DE-MUS-002922#! DE-MUS-002922 Rheinhessisches Postmuseum +http://lobid.org/organisations/DE-MUS-003316#! DE-MUS-003316 Bauernhausmuseum Amerang des Bezirks Oberbayern +http://lobid.org/organisations/DE-MUS-003425#! DE-MUS-003425 Fahrzeugmuseum Staßfurt +http://lobid.org/organisations/DE-MUS-004824#! DE-MUS-004824 Museum im Bauernkriegshaus Nußdorf +http://lobid.org/organisations/DE-MUS-005129#! DE-MUS-005129 Heimat- und Bürstenbindermuseum +http://lobid.org/organisations/DE-MUS-005312#! DE-MUS-005312 Mozarthaus +http://lobid.org/organisations/DE-MUS-005416#! DE-MUS-005416 Naturmuseum der Stadt Augsburg +http://lobid.org/organisations/DE-MUS-005614#! DE-MUS-005614 Deutsche Barockgalerie und Sammlung Haberstock +http://lobid.org/organisations/DE-MUS-006315#! DE-MUS-006315 Heimatmuseum +http://lobid.org/organisations/DE-MUS-006424#! DE-MUS-006424 Museum der Gehlberger Glastradition +http://lobid.org/organisations/DE-MUS-006617#! DE-MUS-006617 Federseemuseum +http://lobid.org/organisations/DE-MUS-006622#! DE-MUS-006622 Thüringer Korbmachermuseum +http://lobid.org/organisations/DE-MUS-007318#! DE-MUS-007318 Museum Stadt Bad Hersfeld +http://lobid.org/organisations/DE-MUS-007323#! DE-MUS-007323 Museum Kesselhaus Herzberge +http://lobid.org/organisations/DE-MUS-007521#! DE-MUS-007521 Nudelmuseum +http://lobid.org/organisations/DE-MUS-007625#! DE-MUS-007625 Eintracht Frankfurt Museum +http://lobid.org/organisations/DE-MUS-007714#! DE-MUS-007714 Stiftung Bundeskanzler-Adenauer-Haus +http://lobid.org/organisations/DE-MUS-008217#! DE-MUS-008217 Residenzschloss Mergentheim +http://lobid.org/organisations/DE-MUS-008222#! DE-MUS-008222 Puppenmuseum Bad Schönborn +http://lobid.org/organisations/DE-MUS-008415#! DE-MUS-008415 Hürten-Museum +http://lobid.org/organisations/DE-MUS-008524#! DE-MUS-008524 Stadtgeschichtliches Museum Leipzig / Altes Rathaus +http://lobid.org/organisations/DE-MUS-009027#! DE-MUS-009027 Heinrich-Stiefel-Schulmuseum +http://lobid.org/organisations/DE-MUS-009621#! DE-MUS-009621 Künstlerhaus 'Scharf Eck' +http://lobid.org/organisations/DE-MUS-009725#! DE-MUS-009725 Frick-Mühle +http://lobid.org/organisations/DE-MUS-009814#! DE-MUS-009814 Museum Alt-Segeberger Bürgerhaus +http://lobid.org/organisations/DE-MUS-010413#! DE-MUS-010413 Stadtmuseum +http://lobid.org/organisations/DE-MUS-010720#! DE-MUS-010720 Heimatmuseum Wustrau +http://lobid.org/organisations/DE-MUS-010819#! DE-MUS-010819 Freilandmuseum, Ammerländer Bauernhaus +http://lobid.org/organisations/DE-MUS-011223#! DE-MUS-011223 Viseum Wetzlar +http://lobid.org/organisations/DE-MUS-011916#! DE-MUS-011916 Historisches Museum +http://lobid.org/organisations/DE-MUS-012424#! DE-MUS-012424 Freilichtmuseum Mühlenanger +http://lobid.org/organisations/DE-MUS-012820#! DE-MUS-012820 Josef-Winckler-Haus +http://lobid.org/organisations/DE-MUS-012924#! DE-MUS-012924 Bochumer Zentrum für Stadtgeschichte +http://lobid.org/organisations/DE-MUS-013229#! DE-MUS-013229 Kreisgalerie Schloss Meßkirch +http://lobid.org/organisations/DE-MUS-013729#! DE-MUS-013729 Heimatmuseum Mörsdorf +http://lobid.org/organisations/DE-MUS-014128#! DE-MUS-014128 Heimatstube Gommern +http://lobid.org/organisations/DE-MUS-014217#! DE-MUS-014217 Burgmuseum Bad Bentheim +http://lobid.org/organisations/DE-MUS-014628#! DE-MUS-014628 Parkhöhle +http://lobid.org/organisations/DE-MUS-015829#! DE-MUS-015829 Johanniterkirche +http://lobid.org/organisations/DE-MUS-015918#! DE-MUS-015918 Polizeihistorische Sammlung +http://lobid.org/organisations/DE-MUS-016624#! DE-MUS-016624 SPSG / Schloß Schönhausen +http://lobid.org/organisations/DE-MUS-017127#! DE-MUS-017127 Villa Schöningen - Deutsch/Deutsches Museum +http://lobid.org/organisations/DE-MUS-017518#! DE-MUS-017518 Schöneberg Museum / Jugendmuseum +http://lobid.org/organisations/DE-MUS-019316#! DE-MUS-019316 Stadtmuseum Berlin / Museumsdorf Düppel +http://lobid.org/organisations/DE-MUS-019514#! DE-MUS-019514 Neue Nationalgalerie SMB +http://lobid.org/organisations/DE-MUS-019529#! DE-MUS-019529 Radrennsport-Museum Hambach +http://lobid.org/organisations/DE-MUS-020415#! DE-MUS-020415 Deutsches Technikmuseum +http://lobid.org/organisations/DE-MUS-020519#! DE-MUS-020519 Gedenkstätte Deutscher Widerstand +http://lobid.org/organisations/DE-MUS-021527#! DE-MUS-021527 Pfarreimuseum Greßthal +http://lobid.org/organisations/DE-MUS-021616#! DE-MUS-021616 Hinterlandmuseum +http://lobid.org/organisations/DE-MUS-021710#! DE-MUS-021710 Bauernhaus-Museum +http://lobid.org/organisations/DE-MUS-021725#! DE-MUS-021725 Stallhofermuseum +http://lobid.org/organisations/DE-MUS-021829#! DE-MUS-021829 Granitzentrum Bayerischer Wald +http://lobid.org/organisations/DE-MUS-021923#! DE-MUS-021923 Deutsch-deutsches Freilandmuseum +http://lobid.org/organisations/DE-MUS-022124#! DE-MUS-022124 Museum Alte Schule +http://lobid.org/organisations/DE-MUS-022322#! DE-MUS-022322 Kloster Weltenburg - Museum im Felsenkeller +http://lobid.org/organisations/DE-MUS-022713#! DE-MUS-022713 Badhaus der Mönche und Heimatmuseum +http://lobid.org/organisations/DE-MUS-022822#! DE-MUS-022822 Mithraeum +http://lobid.org/organisations/DE-MUS-022911#! DE-MUS-022911 Urgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-023127#! DE-MUS-023127 Hammerschmiede Maximilian +http://lobid.org/organisations/DE-MUS-023216#! DE-MUS-023216 Deutsches Bergbau-Museum Bochum +http://lobid.org/organisations/DE-MUS-023310#! DE-MUS-023310 Stiftung Eisenbahnmuseum Bochum +http://lobid.org/organisations/DE-MUS-023518#! DE-MUS-023518 Kunstmuseum Bochum +http://lobid.org/organisations/DE-MUS-023627#! DE-MUS-023627 Neues Kloster +http://lobid.org/organisations/DE-MUS-023825#! DE-MUS-023825 Kunstmuseum Gehrke-Remund +http://lobid.org/organisations/DE-MUS-024219#! DE-MUS-024219 Beethoven-Haus +http://lobid.org/organisations/DE-MUS-024313#! DE-MUS-024313 Ernst-Moritz-Arndt-Haus +http://lobid.org/organisations/DE-MUS-024813#! DE-MUS-024813 Zoologisches Forschungsmuseum Alexander Koenig +http://lobid.org/organisations/DE-MUS-025029#! DE-MUS-025029 Heimatmuseum Ketsch +http://lobid.org/organisations/DE-MUS-025316#! DE-MUS-025316 FARB Forum Altes Rathaus Borken +http://lobid.org/organisations/DE-MUS-025529#! DE-MUS-025529 Sprechende Steine Museum Oberwittstadt +http://lobid.org/organisations/DE-MUS-026111#! DE-MUS-026111 Burgmuseum Marksburg +http://lobid.org/organisations/DE-MUS-026215#! DE-MUS-026215 Kelnhof-Museum der Stadt Bräunlingen +http://lobid.org/organisations/DE-MUS-026324#! DE-MUS-026324 Mikroskop Museum +http://lobid.org/organisations/DE-MUS-026428#! DE-MUS-026428 Heimatmuseum Waldstetten +http://lobid.org/organisations/DE-MUS-026611#! DE-MUS-026611 Heimat- und FIS-Skimuseum Braunlage +http://lobid.org/organisations/DE-MUS-027312#! DE-MUS-027312 Bremer Landesmuseum für Kunst und Kulturgeschichte, Focke-Museum +http://lobid.org/organisations/DE-MUS-027510#! DE-MUS-027510 Heimatmuseum Vegesack, Schloß Schönebeck +http://lobid.org/organisations/DE-MUS-028117#! DE-MUS-028117 Volkskundliches Freilichtmuseum +http://lobid.org/organisations/DE-MUS-028122#! DE-MUS-028122 Schillerhaus +http://lobid.org/organisations/DE-MUS-029229#! DE-MUS-029229 Vogtländisches Freilichtmuseum Eubabrunn +http://lobid.org/organisations/DE-MUS-029323#! DE-MUS-029323 Dauerausstellung Alte Synagoge +http://lobid.org/organisations/DE-MUS-029427#! DE-MUS-029427 Dynamikum +http://lobid.org/organisations/DE-MUS-029610#! DE-MUS-029610 Museum Bückerburg für Stadtgeschichte und Schaumburg-lippische Landesgeschichte +http://lobid.org/organisations/DE-MUS-030011#! DE-MUS-030011 Heuson-Museum im Rathaus +http://lobid.org/organisations/DE-MUS-030120#! DE-MUS-030120 Stauffenberg-Erinnerungsstätte +http://lobid.org/organisations/DE-MUS-030224#! DE-MUS-030224 Junges Schloss. Das Kindermuseum in Stuttgart +http://lobid.org/organisations/DE-MUS-030526#! DE-MUS-030526 Ehemalige Synagoge Haigerloch +http://lobid.org/organisations/DE-MUS-030813#! DE-MUS-030813 Staatsgalerie +http://lobid.org/organisations/DE-MUS-031321#! DE-MUS-031321 museum FLUXUS +http://lobid.org/organisations/DE-MUS-031618#! DE-MUS-031618 Bomann-Museum +http://lobid.org/organisations/DE-MUS-031712#! DE-MUS-031712 Residenzmuseum im Celler Schloss +http://lobid.org/organisations/DE-MUS-031821#! DE-MUS-031821 Sigmund Strecker Museum +http://lobid.org/organisations/DE-MUS-031910#! DE-MUS-031910 Oberharzer Bergwerksmuseum+Museum für Technik- und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-032319#! DE-MUS-032319 Schloß Ehrenburg Coburg +http://lobid.org/organisations/DE-MUS-032324#! DE-MUS-032324 Hiwwelhaus Alsweiler +http://lobid.org/organisations/DE-MUS-032517#! DE-MUS-032517 Kunstsammlungen der Veste Coburg +http://lobid.org/organisations/DE-MUS-032715#! DE-MUS-032715 Stadtmuseum im Spital +http://lobid.org/organisations/DE-MUS-033223#! DE-MUS-033223 Historisches Heimatmuseum +http://lobid.org/organisations/DE-MUS-033827#! DE-MUS-033827 Max-Klinger-Haus +http://lobid.org/organisations/DE-MUS-033921#! DE-MUS-033921 Museum im Oberen Schloss +http://lobid.org/organisations/DE-MUS-034028#! DE-MUS-034028 Bäckerei- und Dorfmuseum +http://lobid.org/organisations/DE-MUS-034919#! DE-MUS-034919 Lippisches Landesmuseum +http://lobid.org/organisations/DE-MUS-035016#! DE-MUS-035016 LWL - Freilichtmuseum Detmold - Westfälisches Landesmuseum für Alltagskultur +http://lobid.org/organisations/DE-MUS-035412#! DE-MUS-035412 Museum Nassau-Oranien +http://lobid.org/organisations/DE-MUS-035516#! DE-MUS-035516 Wirtschaftsgeschichtliches Museum 'Villa Grün' mit Oranien-Nassauisches Museum (Wilhelmsturm) und Kasematten +http://lobid.org/organisations/DE-MUS-036915#! DE-MUS-036915 Dreieich - Museum +http://lobid.org/organisations/DE-MUS-037314#! DE-MUS-037314 Stiftung Wilhelm Lehmbruck Museum +http://lobid.org/organisations/DE-MUS-037710#! DE-MUS-037710 Goethe-Museum Düsseldorf, Anton-und-Katharina-Kippenberg-Stiftung +http://lobid.org/organisations/DE-MUS-038317#! DE-MUS-038317 Aquazoo-Löbbecke Museum +http://lobid.org/organisations/DE-MUS-039716#! DE-MUS-039716 Domschatz- und Diözesanmuseum Eichstätt +http://lobid.org/organisations/DE-MUS-040013#! DE-MUS-040013 Stadtmuseum Einbeck +http://lobid.org/organisations/DE-MUS-040617#! DE-MUS-040617 Museumsdampfzug Rebenbummler - Eisenbahnfreunde +http://lobid.org/organisations/DE-MUS-041214#! DE-MUS-041214 August-Holländer-Museum +http://lobid.org/organisations/DE-MUS-041412#! DE-MUS-041412 Städtisches Museum Engen und Galerie +http://lobid.org/organisations/DE-MUS-042019#! DE-MUS-042019 Dt. Elfenbeinmuseum Erbach +http://lobid.org/organisations/DE-MUS-043512#! DE-MUS-043512 Museum Raabe-Haus +http://lobid.org/organisations/DE-MUS-044213#! DE-MUS-044213 Museum St. Dionys +http://lobid.org/organisations/DE-MUS-044317#! DE-MUS-044317 Stadtmuseum im Gelben Haus +http://lobid.org/organisations/DE-MUS-044619#! DE-MUS-044619 Ostholstein-Museum +http://lobid.org/organisations/DE-MUS-044911#! DE-MUS-044911 Museum Gensungen +http://lobid.org/organisations/DE-MUS-045018#! DE-MUS-045018 Fränkisches Museum +http://lobid.org/organisations/DE-MUS-045518#! DE-MUS-045518 Heimatmuseum Flörsheim +http://lobid.org/organisations/DE-MUS-045612#! DE-MUS-045612 Pfalzmuseum +http://lobid.org/organisations/DE-MUS-045914#! DE-MUS-045914 Erkenbert-Museum +http://lobid.org/organisations/DE-MUS-046011#! DE-MUS-046011 Deutsches Albert-Schweitzer-Zentrum +http://lobid.org/organisations/DE-MUS-046615#! DE-MUS-046615 Heimatmuseum Schwanheim +http://lobid.org/organisations/DE-MUS-048611#! DE-MUS-048611 Archäologisches Museum Colombischlössle +http://lobid.org/organisations/DE-MUS-049114#! DE-MUS-049114 Museum im Stadthaus +http://lobid.org/organisations/DE-MUS-049218#! DE-MUS-049218 Wolfsteiner Heimatmuseum +http://lobid.org/organisations/DE-MUS-050317#! DE-MUS-050317 Bismarck-Museum +http://lobid.org/organisations/DE-MUS-050817#! DE-MUS-050817 Vonderau-Museum +http://lobid.org/organisations/DE-MUS-051018#! DE-MUS-051018 MUSEUM SCHLOSS FÜRSTENBERG +http://lobid.org/organisations/DE-MUS-051112#! DE-MUS-051112 Stadtmuseum Fürth +http://lobid.org/organisations/DE-MUS-052115#! DE-MUS-052115 Heimatmuseum Meerholz +http://lobid.org/organisations/DE-MUS-053514#! DE-MUS-053514 Stadtmuseum Giengen an der Brenz +http://lobid.org/organisations/DE-MUS-054215#! DE-MUS-054215 Heimatmuseum 'Amt Blankenstein' +http://lobid.org/organisations/DE-MUS-054611#! DE-MUS-054611 Museum für Kunst und Kulturgeschichte der Stadt Goch +http://lobid.org/organisations/DE-MUS-054715#! DE-MUS-054715 Dokumentationsraum für staufische Geschichte +http://lobid.org/organisations/DE-MUS-054913#! DE-MUS-054913 Schönhengster Archiv und Heimatstube +http://lobid.org/organisations/DE-MUS-055114#! DE-MUS-055114 Städtisches Naturkundliches Museum +http://lobid.org/organisations/DE-MUS-055312#! DE-MUS-055312 Museumsufer - Goslarer Museum +http://lobid.org/organisations/DE-MUS-055718#! DE-MUS-055718 Mönchehaus Museum für moderne Kunst +http://lobid.org/organisations/DE-MUS-056815#! DE-MUS-056815 Niederrheinisches Freilichtmuseum +http://lobid.org/organisations/DE-MUS-056919#! DE-MUS-056919 Glockenwelt Burg Greifenstein +http://lobid.org/organisations/DE-MUS-057412#! DE-MUS-057412 Freilichtmuseum Glentleiten des Bezirks Oberbayern +http://lobid.org/organisations/DE-MUS-057818#! DE-MUS-057818 Heimatmuseum +http://lobid.org/organisations/DE-MUS-058311#! DE-MUS-058311 Museum Schloß Hohenlimburg +http://lobid.org/organisations/DE-MUS-059314#! DE-MUS-059314 Museum am Rothenbaum MARKK +http://lobid.org/organisations/DE-MUS-059710#! DE-MUS-059710 Museum Elbinsel Wilhelmsburg e.V. +http://lobid.org/organisations/DE-MUS-060715#! DE-MUS-060715 Sensen Handwerk Stadtmuseum +http://lobid.org/organisations/DE-MUS-066213#! DE-MUS-066213 Kunstguss Museum Hirzenhain +http://lobid.org/organisations/DE-MUS-066317#! DE-MUS-066317 Museum Hitzacker (Elbe)+Das Alte Zollhaus +http://lobid.org/organisations/DE-MUS-066619#! DE-MUS-066619 Heimatmuseum +http://lobid.org/organisations/DE-MUS-066817#! DE-MUS-066817 Stadtmuseum Hofgeismar +http://lobid.org/organisations/DE-MUS-068011#! DE-MUS-068011 Stadtmuseum Horb +http://lobid.org/organisations/DE-MUS-069212#! DE-MUS-069212 Stadtmuseum Idstein +http://lobid.org/organisations/DE-MUS-069712#! DE-MUS-069712 Bayerisches Armeemuseum +http://lobid.org/organisations/DE-MUS-070613#! DE-MUS-070613 Museum Wasserburg Anholt +http://lobid.org/organisations/DE-MUS-070915#! DE-MUS-070915 Schloßmuseum/Jagsthausen-Götzenburg +http://lobid.org/organisations/DE-MUS-072213#! DE-MUS-072213 Staatliches Museum für Naturkunde (SMNK) +http://lobid.org/organisations/DE-MUS-075014#! DE-MUS-075014 Städtisches Kramer-Museum +http://lobid.org/organisations/DE-MUS-076017#! DE-MUS-076017 Kunsthalle zu Kiel +http://lobid.org/organisations/DE-MUS-076111#! DE-MUS-076111 Landesgeschichtliche Sammlung Kiel +http://lobid.org/organisations/DE-MUS-078711#! DE-MUS-078711 Museum für Ostasiatische Kunst +http://lobid.org/organisations/DE-MUS-080813#! DE-MUS-080813 Kaiser Wilhelm Museum +http://lobid.org/organisations/DE-MUS-081014#! DE-MUS-081014 Museum Burg Linn, Archäologisches Museum +http://lobid.org/organisations/DE-MUS-081212#! DE-MUS-081212 Heimatmuseum Greene +http://lobid.org/organisations/DE-MUS-081816#! DE-MUS-081816 Deutsches Zinnfigurenmuseum +http://lobid.org/organisations/DE-MUS-082319#! DE-MUS-082319 Geroldsecker-Museum im Storchenturm +http://lobid.org/organisations/DE-MUS-082715#! DE-MUS-082715 Weberei- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-083718#! DE-MUS-083718 Deutsches Automuseum im Schloß Langenburg +http://lobid.org/organisations/DE-MUS-084211#! DE-MUS-084211 Burg Lauenstein +http://lobid.org/organisations/DE-MUS-084419#! DE-MUS-084419 Erdgeschichtliches Werksmuseum Märker Zement GmbH Lauffen +http://lobid.org/organisations/DE-MUS-084617#! DE-MUS-084617 Museum zur Geschichte von Christen und Juden +http://lobid.org/organisations/DE-MUS-084711#! DE-MUS-084711 Hohhaus-Museum e.V. +http://lobid.org/organisations/DE-MUS-084815#! DE-MUS-084815 Heimatmuseum Leer +http://lobid.org/organisations/DE-MUS-084919#! DE-MUS-084919 Deutsches Spielkarten-Museum +http://lobid.org/organisations/DE-MUS-085610#! DE-MUS-085610 Museum im Bock Leutkirch +http://lobid.org/organisations/DE-MUS-086113#! DE-MUS-086113 Diözesanmuseum Domschatzkammer+Staurothek +http://lobid.org/organisations/DE-MUS-086613#! DE-MUS-086613 Schloss Linderhof +http://lobid.org/organisations/DE-MUS-087512#! DE-MUS-087512 Heimatmuseum 'Altes Rathaus' Loßburg +http://lobid.org/organisations/DE-MUS-087918#! DE-MUS-087918 Kulturstiftung Hansestadt Lübeck - Museum Behnhaus +http://lobid.org/organisations/DE-MUS-088619#! DE-MUS-088619 Münsterlandmuseum Burg Vischering +http://lobid.org/organisations/DE-MUS-089310#! DE-MUS-089310 Altes Rathaus Lüneburg +http://lobid.org/organisations/DE-MUS-089914#! DE-MUS-089914 Stadtmuseum Mainburg +http://lobid.org/organisations/DE-MUS-090513#! DE-MUS-090513 Landesmuseum Mainz +http://lobid.org/organisations/DE-MUS-092915#! DE-MUS-092915 Altes Schloß +http://lobid.org/organisations/DE-MUS-093012#! DE-MUS-093012 Dornier Museum Friedrichshafen +http://lobid.org/organisations/DE-MUS-094713#! DE-MUS-094713 Stadtmuseum +http://lobid.org/organisations/DE-MUS-096313#! DE-MUS-096313 Markgräfler Museum Müllheim im Blankenhorn-Palais +http://lobid.org/organisations/DE-MUS-097712#! DE-MUS-097712 Marstallmuseum und Museum 'Nymphenburger Porzellan' im Schloss Nymphenburg +http://lobid.org/organisations/DE-MUS-098111#! DE-MUS-098111 Museum Villa Stuck +http://lobid.org/organisations/DE-MUS-098413#! DE-MUS-098413 Archäologische Staatssammlung/Museum für Vor- und Frühgeschichte +http://lobid.org/organisations/DE-MUS-098517#! DE-MUS-098517 Residenzmuseum +http://lobid.org/organisations/DE-MUS-099218#! DE-MUS-099218 Staatliches Museum Ägyptischer Kunst +http://lobid.org/organisations/DE-MUS-099916#! DE-MUS-099916 Städtisches Museum Hann. Münden +http://lobid.org/organisations/DE-MUS-100016#! DE-MUS-100016 Hennebergmuseum Münnerstadt +http://lobid.org/organisations/DE-MUS-100818#! DE-MUS-100818 LWL-Museum für Kunst und Kultur +http://lobid.org/organisations/DE-MUS-100912#! DE-MUS-100912 LWL-Museum für Naturkunde Münster +http://lobid.org/organisations/DE-MUS-101113#! DE-MUS-101113 Besuchsbergwerk Teufelsgrund +http://lobid.org/organisations/DE-MUS-101217#! DE-MUS-101217 Carl-Schweizer-Museum +http://lobid.org/organisations/DE-MUS-101915#! DE-MUS-101915 Römische Villa Nennig +http://lobid.org/organisations/DE-MUS-102012#! DE-MUS-102012 Härtsfeld-Museum +http://lobid.org/organisations/DE-MUS-102512#! DE-MUS-102512 Josefine-Weihrauch-Heimatmuseum +http://lobid.org/organisations/DE-MUS-102814#! DE-MUS-102814 Stadtmuseum 'Haus zum Löwen' +http://lobid.org/organisations/DE-MUS-102918#! DE-MUS-102918 Zeppelin-Museum Zeppelinheim +http://lobid.org/organisations/DE-MUS-103713#! DE-MUS-103713 Stadtmuseum Neustadt an der Waldnaab +http://lobid.org/organisations/DE-MUS-103911#! DE-MUS-103911 Museum der Deutschen Spielzeugindustrie mit Trachtenpuppen Sammlung +http://lobid.org/organisations/DE-MUS-105011#! DE-MUS-105011 Paläontologisches Museum Nierstein +http://lobid.org/organisations/DE-MUS-105615#! DE-MUS-105615 Germanisches Nationalmuseum +http://lobid.org/organisations/DE-MUS-106014#! DE-MUS-106014 Kaiserburg Nürnberg / Palas, Kapelle, Burgmuseum +http://lobid.org/organisations/DE-MUS-106618#! DE-MUS-106618 DB Museum im Verkehrsmuseum Nürnberg +http://lobid.org/organisations/DE-MUS-107819#! DE-MUS-107819 Bauernhausmuseum Schniederlihof +http://lobid.org/organisations/DE-MUS-109315#! DE-MUS-109315 Weygang-Museum +http://lobid.org/organisations/DE-MUS-110414#! DE-MUS-110414 Museum im Ritterhaus +http://lobid.org/organisations/DE-MUS-110810#! DE-MUS-110810 Otto-Modersohn-Museum +http://lobid.org/organisations/DE-MUS-111219#! DE-MUS-111219 Erzbischöfliches Diözesanmuseum und Domschatzkammer +http://lobid.org/organisations/DE-MUS-111719#! DE-MUS-111719 Mühlen- und Landwirtschaftsmuseum Lemkenhafen +http://lobid.org/organisations/DE-MUS-112212#! DE-MUS-112212 Stadtgeschichtliches Museum +http://lobid.org/organisations/DE-MUS-112316#! DE-MUS-112316 Stadtmuseum Pfungstadt +http://lobid.org/organisations/DE-MUS-112514#! DE-MUS-112514 Stadtmuseum Altes Rathaus +http://lobid.org/organisations/DE-MUS-112910#! DE-MUS-112910 Museum Burg Pottenstein +http://lobid.org/organisations/DE-MUS-113319#! DE-MUS-113319 Burg Prunn bei Kelheim +http://lobid.org/organisations/DE-MUS-113413#! DE-MUS-113413 Museumshof Rahden +http://lobid.org/organisations/DE-MUS-114218#! DE-MUS-114218 Museum der Stadt Ratingen +http://lobid.org/organisations/DE-MUS-115211#! DE-MUS-115211 Domschatzmuseum +http://lobid.org/organisations/DE-MUS-115315#! DE-MUS-115315 Fürst Thurn und Taxis Marstallmuseum +http://lobid.org/organisations/DE-MUS-115513#! DE-MUS-115513 Museen der Stadt Regensburg/Kepler-Gedächtnishaus +http://lobid.org/organisations/DE-MUS-115617#! DE-MUS-115617 Museen der Stadt Regensburg/Historisches Museum +http://lobid.org/organisations/DE-MUS-116110#! DE-MUS-116110 Museum Reinheim +http://lobid.org/organisations/DE-MUS-117519#! DE-MUS-117519 Nordpfälzer Heimatmuseum +http://lobid.org/organisations/DE-MUS-117717#! DE-MUS-117717 Städtisches Museum Rosenheim +http://lobid.org/organisations/DE-MUS-118012#! DE-MUS-118012 Museum Schloß Ratibor +http://lobid.org/organisations/DE-MUS-118814#! DE-MUS-118814 Oberpfälzer Handwerksmuseum +http://lobid.org/organisations/DE-MUS-119213#! DE-MUS-119213 Bartholomäus-Schmucker-Heimatmuseum +http://lobid.org/organisations/DE-MUS-119411#! DE-MUS-119411 Museum der Stadt Rüsselsheim +http://lobid.org/organisations/DE-MUS-121617#! DE-MUS-121617 Bergwinkel-Museum +http://lobid.org/organisations/DE-MUS-122516#! DE-MUS-122516 Lenbachmuseum +http://lobid.org/organisations/DE-MUS-122714#! DE-MUS-122714 s""Buchholze Hisli +http://lobid.org/organisations/DE-MUS-123519#! DE-MUS-123519 Stadtmuseum Schwandorf +http://lobid.org/organisations/DE-MUS-125515#! DE-MUS-125515 Burghofmuseum +http://lobid.org/organisations/DE-MUS-125817#! DE-MUS-125817 Emslandmuseum Schloss Clemenswerth +http://lobid.org/organisations/DE-MUS-126018#! DE-MUS-126018 Deutsches Klingenmuseum Solingen DKM +http://lobid.org/organisations/DE-MUS-126112#! DE-MUS-126112 Museum Soltau +http://lobid.org/organisations/DE-MUS-126914#! DE-MUS-126914 Jagdschloß Springe - Museum für Natur-Jagd-Kultur +http://lobid.org/organisations/DE-MUS-127417#! DE-MUS-127417 Stadtmuseum Bad Staffelstein +http://lobid.org/organisations/DE-MUS-127813#! DE-MUS-127813 Meteorkrater-Museum +http://lobid.org/organisations/DE-MUS-128212#! DE-MUS-128212 Stadtmuseum Stockach +http://lobid.org/organisations/DE-MUS-128816#! DE-MUS-128816 Stiftung Kunstmuseum Stuttgart gGmbH +http://lobid.org/organisations/DE-MUS-130418#! DE-MUS-130418 Stadtmuseum +http://lobid.org/organisations/DE-MUS-130918#! DE-MUS-130918 Tauberfränkisches Landschaftsmuseum im Kurmainzischen Schloss +http://lobid.org/organisations/DE-MUS-131515#! DE-MUS-131515 RELIGIO-Westfälisches Museum für religiöse Kultur +http://lobid.org/organisations/DE-MUS-132216#! DE-MUS-132216 Museum Rupertiwinkel +http://lobid.org/organisations/DE-MUS-133313#! DE-MUS-133313 Museum Auberlehaus +http://lobid.org/organisations/DE-MUS-133719#! DE-MUS-133719 Hölderlinhaus und Hölderlinturm +http://lobid.org/organisations/DE-MUS-133917#! DE-MUS-133917 Paläontologische Sammlung der Universität Tübingen +http://lobid.org/organisations/DE-MUS-134410#! DE-MUS-134410 Zoologische Schausammlung +http://lobid.org/organisations/DE-MUS-134712#! DE-MUS-134712 Museum der Stadt Überlingen +http://lobid.org/organisations/DE-MUS-137711#! DE-MUS-137711 Heimatstube Herzogenweiler +http://lobid.org/organisations/DE-MUS-138318#! DE-MUS-138318 Heimatmuseum Wächtersbach +http://lobid.org/organisations/DE-MUS-139217#! DE-MUS-139217 Elztalmuseum Waldkirch +http://lobid.org/organisations/DE-MUS-139915#! DE-MUS-139915 Zunft-Archiv der Junggesellschaft 1468 +http://lobid.org/organisations/DE-MUS-140118#! DE-MUS-140118 Elfenbeinschau +http://lobid.org/organisations/DE-MUS-140910#! DE-MUS-140910 Heimatmuseum Unser Fritz +http://lobid.org/organisations/DE-MUS-141017#! DE-MUS-141017 Heimathaus der Stadt Warendorf +http://lobid.org/organisations/DE-MUS-141215#! DE-MUS-141215 Museumsräume im Schloß Warthausen +http://lobid.org/organisations/DE-MUS-143513#! DE-MUS-143513 Heimatstube Endersbach +http://lobid.org/organisations/DE-MUS-143711#! DE-MUS-143711 Silcher-Museum +http://lobid.org/organisations/DE-MUS-143815#! DE-MUS-143815 Museum ""NordJURA"" +http://lobid.org/organisations/DE-MUS-144516#! DE-MUS-144516 Forum der Völker +http://lobid.org/organisations/DE-MUS-144818#! DE-MUS-144818 Glasmuseum Wertheim e.V. +http://lobid.org/organisations/DE-MUS-148018#! DE-MUS-148018 Museum Wolfenbüttel +http://lobid.org/organisations/DE-MUS-148716#! DE-MUS-148716 Museum Heylshof +http://lobid.org/organisations/DE-MUS-148810#! DE-MUS-148810 Museum der Stadt Worms im Andreasstift +http://lobid.org/organisations/DE-MUS-149615#! DE-MUS-149615 Von der Heydt-Museum +http://lobid.org/organisations/DE-MUS-150516#! DE-MUS-150516 Museum im Kulturspeicher Würzburg +http://lobid.org/organisations/DE-MUS-151217#! DE-MUS-151217 Heimatmuseum Fürstenberger Hof +http://lobid.org/organisations/DE-MUS-151811#! DE-MUS-151811 Museum der Stadt Bad Schwartau +http://lobid.org/organisations/DE-MUS-151915#! DE-MUS-151915 Kunsthalle Otto Flath +http://lobid.org/organisations/DE-MUS-152314#! DE-MUS-152314 Naturkundemuseum Niebüll e.V. +http://lobid.org/organisations/DE-MUS-152616#! DE-MUS-152616 Dorf- und Schulmuseum Schönwalde +http://lobid.org/organisations/DE-MUS-153515#! DE-MUS-153515 Museums Albersdorf - Museum für Archäologie und Ökologie +http://lobid.org/organisations/DE-MUS-155417#! DE-MUS-155417 Heimatmuseum Heusenstamm +http://lobid.org/organisations/DE-MUS-155511#! DE-MUS-155511 Landwirtschafts- und Heimatmuseum Karben +http://lobid.org/organisations/DE-1873#! DE-1873 1873 SRH Hochschule der populären Künste (hdpk), Bibliothek +http://lobid.org/organisations/DE-MUS-156712#! DE-MUS-156712 Heimatmuseum Bruchköbel +http://lobid.org/organisations/DE-MUS-156910#! DE-MUS-156910 Lindenfelser Museum +http://lobid.org/organisations/DE-MUS-158416#! DE-MUS-158416 Schliekau-Museum +http://lobid.org/organisations/DE-MUS-160518#! DE-MUS-160518 Kreis- und Universitätsmuseum Helmstedt +http://lobid.org/organisations/DE-MUS-160612#! DE-MUS-160612 Roemer-Pelizaeus-Museum +http://lobid.org/organisations/DE-MUS-160716#! DE-MUS-160716 Dommuseum Hildesheim +http://lobid.org/organisations/DE-MUS-161615#! DE-MUS-161615 Heimatmuseum Langelsheim +http://lobid.org/organisations/DE-MUS-162618#! DE-MUS-162618 Museum mechanischer Musikinstrumente +http://lobid.org/organisations/DE-MUS-163215#! DE-MUS-163215 Waldmuseum Surwold, Haus des Waldes +http://lobid.org/organisations/DE-MUS-163319#! DE-MUS-163319 Stadtmuseum Schloss Wolfsburg +http://lobid.org/organisations/DE-MUS-163413#! DE-MUS-163413 Heimatkundliche Ausstellung +http://lobid.org/organisations/DE-MUS-164218#! DE-MUS-164218 Wilhelm Busch - Deutsches Museum für Karikatur und Zeichenkunst +http://lobid.org/organisations/DE-MUS-164614#! DE-MUS-164614 Saarländisches Bergbaumuseum Bexbach +http://lobid.org/organisations/DE-MUS-165617#! DE-MUS-165617 Mineralogisches Museum +http://lobid.org/organisations/DE-MUS-166110#! DE-MUS-166110 Stiftung Deutsches Edelsteinmuseum +http://lobid.org/organisations/DE-MUS-166516#! DE-MUS-166516 Rhein-Museum Koblenz +http://lobid.org/organisations/DE-MUS-166610#! DE-MUS-166610 Karl Otto Braun Museum +http://lobid.org/organisations/DE-MUS-167019#! DE-MUS-167019 Heimatkundliche Sammlung Burg Rheinfels +http://lobid.org/organisations/DE-MUS-167113#! DE-MUS-167113 Stadtmuseum +http://lobid.org/organisations/DE-MUS-167217#! DE-MUS-167217 Heimatmuseum Ahlen +http://lobid.org/organisations/DE-MUS-167915#! DE-MUS-167915 Sauerländer Besucherbergwerk Ramsbeck +http://lobid.org/organisations/DE-MUS-168616#! DE-MUS-168616 DAS TOR - Stadtmuseum Coesfeld +http://lobid.org/organisations/DE-MUS-168814#! DE-MUS-168814 Haus 'Tannenbusch' +http://lobid.org/organisations/DE-MUS-169515#! DE-MUS-169515 Natur Kunde Museum Duisburg +http://lobid.org/organisations/DE-MUS-170718#! DE-MUS-170718 Stadtmuseum Gütersloh +http://lobid.org/organisations/DE-MUS-171315#! DE-MUS-171315 Felsenmeer-Museum +http://lobid.org/organisations/DE-MUS-171617#! DE-MUS-171617 Daniel-Pöppelmann-Haus +http://lobid.org/organisations/DE-MUS-171919#! DE-MUS-171919 Bergwerksmuseum Müsen +http://lobid.org/organisations/DE-MUS-172818#! DE-MUS-172818 Städtisches Museum ""Junkerhaus"" +http://lobid.org/organisations/DE-MUS-173311#! DE-MUS-173311 Wasserstraßen- und Schifffahrtsamt +http://lobid.org/organisations/DE-MUS-173519#! DE-MUS-173519 Propstei- und Münsterkirche St. Vitus, Münsterschatzkammer +http://lobid.org/organisations/DE-MUS-173811#! DE-MUS-173811 Bibelmuseum +http://lobid.org/organisations/DE-MUS-174314#! DE-MUS-174314 Georg-Kramann-Heimatmuseum +http://lobid.org/organisations/DE-MUS-174512#! DE-MUS-174512 Archäologisches Freilichtmuseum Oerlinghausen +http://lobid.org/organisations/DE-MUS-174616#! DE-MUS-174616 Stadtmuseum Paderborn +http://lobid.org/organisations/DE-MUS-174918#! DE-MUS-174918 Heimathaus Plettenberg +http://lobid.org/organisations/DE-MUS-175911#! DE-MUS-175911 ""Altes Amtshaus"", Karl-Pollender-Stadtmuseum +http://lobid.org/organisations/DE-MUS-176112#! DE-MUS-176112 Museumsdorf Altwindeck +http://lobid.org/organisations/DE-MUS-176914#! DE-MUS-176914 Brauereimuseum Aldersbach +http://lobid.org/organisations/DE-MUS-179319#! DE-MUS-179319 Missionsmuseum Bug +http://lobid.org/organisations/DE-MUS-183511#! DE-MUS-183511 Staatsgalerie im Hohen Schloß +http://lobid.org/organisations/DE-MUS-183813#! DE-MUS-183813 Museum Oberschönenfeld +http://lobid.org/organisations/DE-MUS-184014#! DE-MUS-184014 Bauernhausmuseum Grafenau +http://lobid.org/organisations/DE-MUS-184618#! DE-MUS-184618 Burgmuseum Grünwald +http://lobid.org/organisations/DE-MUS-185611#! DE-MUS-185611 Heimatmuseum Hergensweiler +http://lobid.org/organisations/DE-MUS-185819#! DE-MUS-185819 Stadtmuseum Herzogenaurach +http://lobid.org/organisations/DE-MUS-186416#! DE-MUS-186416 Egerländer-Elbogner Heimatstuben +http://lobid.org/organisations/DE-MUS-187211#! DE-MUS-187211 Stadtgeschichtliches Museum Karlstadt +http://lobid.org/organisations/DE-MUS-188214#! DE-MUS-188214 Schlossmuseum Kirchheim +http://lobid.org/organisations/DE-MUS-188912#! DE-MUS-188912 Schloßmuseum Kronburg +http://lobid.org/organisations/DE-MUS-189613#! DE-MUS-189613 HeimatmuseumLangenzenn +http://lobid.org/organisations/DE-MUS-189811#! DE-MUS-189811 Tiermuseum +http://lobid.org/organisations/DE-MUS-189915#! DE-MUS-189915 Deutsches Flugpionier Museum +http://lobid.org/organisations/DE-MUS-191819#! DE-MUS-191819 Heimatmuseum Moosburg +http://lobid.org/organisations/DE-MUS-192218#! DE-MUS-192218 Münchner Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-193211#! DE-MUS-193211 Römisches Bademuseum +http://lobid.org/organisations/DE-MUS-193419#! DE-MUS-193419 Stadtmuseum Nittenau +http://lobid.org/organisations/DE-MUS-193617#! DE-MUS-193617 Heimatmuseum Nüdlingen +http://lobid.org/organisations/DE-MUS-194110#! DE-MUS-194110 Schloß Lustheim +http://lobid.org/organisations/DE-MUS-194318#! DE-MUS-194318 Museum beim Strumpfar +http://lobid.org/organisations/DE-MUS-195217#! DE-MUS-195217 Bergwerksmuseum Penzberg +http://lobid.org/organisations/DE-MUS-195915#! DE-MUS-195915 Museen der Stadt Regensburg/Städtische Galerie +http://lobid.org/organisations/DE-MUS-196418#! DE-MUS-196418 Schulmuseum Roding-Fronau +http://lobid.org/organisations/DE-MUS-198716#! DE-MUS-198716 Erstes Bayerisches Schulmuseum +http://lobid.org/organisations/DE-MUS-199115#! DE-MUS-199115 Museumsdorf Bayerischer Wald +http://lobid.org/organisations/DE-MUS-200017#! DE-MUS-200017 Heimatstube Adlergebirge (Ostböhmen) +http://lobid.org/organisations/DE-MUS-200215#! DE-MUS-200215 Heimatmuseum Waldthurn +http://lobid.org/organisations/DE-MUS-200819#! DE-MUS-200819 Waldnaabtalmuseum in der Burg Neuhaus +http://lobid.org/organisations/DE-MUS-201416#! DE-MUS-201416 Staatsgalerie im Nordflügel der Residenz +http://lobid.org/organisations/DE-MUS-202513#! DE-MUS-202513 Missionsmuseum der Liebenzeller Mission gGmbH +http://lobid.org/organisations/DE-MUS-203912#! DE-MUS-203912 Antikenmuseum und Abgußsammlung des Instituts für klass. Archäologie der Universität Heidelberg +http://lobid.org/organisations/DE-MUS-204113#! DE-MUS-204113 Kurpfälzisches Museum +http://lobid.org/organisations/DE-MUS-205918#! DE-MUS-205918 Schloß Rastatt +http://lobid.org/organisations/DE-MUS-206515#! DE-MUS-206515 Freiherr von Ow-Wachendorfsche Sammlungen +http://lobid.org/organisations/DE-MUS-208511#! DE-MUS-208511 Bienenkunde-Museum-Münstertal +http://lobid.org/organisations/DE-MUS-210019#! DE-MUS-210019 Theresientaler Heimatmuseum im Alten Schloss +http://lobid.org/organisations/DE-MUS-210415#! DE-MUS-210415 Kienzlerschmiede Kirchzarten +http://lobid.org/organisations/DE-MUS-210519#! DE-MUS-210519 Heimat-Stube im Kurhaus +http://lobid.org/organisations/DE-MUS-210811#! DE-MUS-210811 Stadtmuseum Schramberg +http://lobid.org/organisations/DE-MUS-211116#! DE-MUS-211116 Johannitermuseum Krautheim +http://lobid.org/organisations/DE-MUS-211512#! DE-MUS-211512 Museum Remshalden - Heimat Wirtschaft Heinkel +http://lobid.org/organisations/DE-MUS-212015#! DE-MUS-212015 Heimatmuseum Brigachtal +http://lobid.org/organisations/DE-MUS-212911#! DE-MUS-212911 Museum unter der Yburg +http://lobid.org/organisations/DE-MUS-213810#! DE-MUS-213810 Freilichtmuseum Klausenhof +http://lobid.org/organisations/DE-MUS-214511#! DE-MUS-214511 Galerie Schrade +http://lobid.org/organisations/DE-MUS-218419#! DE-MUS-218419 Heimatmuseum Mähringen +http://lobid.org/organisations/DE-MUS-218711#! DE-MUS-218711 Das Bauernhaus im Dorf - Museum Königheimer Höflein +http://lobid.org/organisations/DE-MUS-219610#! DE-MUS-219610 Museum mit Römerpark Köngen +http://lobid.org/organisations/DE-MUS-220219#! DE-MUS-220219 Heimatmuseum Dossenheim +http://lobid.org/organisations/DE-MUS-220313#! DE-MUS-220313 Museum der Stadt Eberbach +http://lobid.org/organisations/DE-MUS-221118#! DE-MUS-221118 Bauernkriegsmuseum in der Zehntscheuer +http://lobid.org/organisations/DE-MUS-221316#! DE-MUS-221316 Dorfmuseum Dietersweiler e.V. +http://lobid.org/organisations/DE-MUS-221712#! DE-MUS-221712 Heimatmuseum Flacht +http://lobid.org/organisations/DE-MUS-221910#! DE-MUS-221910 Christian-Wagner-Haus Warmbronn +http://lobid.org/organisations/DE-MUS-222215#! DE-MUS-222215 Heimatmuseum Heidelberg +http://lobid.org/organisations/DE-MUS-222611#! DE-MUS-222611 Heimatmuseum Neunkirchen +http://lobid.org/organisations/DE-MUS-224211#! DE-MUS-224211 Toni-Merz-Museum +http://lobid.org/organisations/DE-MUS-225412#! DE-MUS-225412 Haus des Waldes Köln +http://lobid.org/organisations/DE-MUS-226915#! DE-MUS-226915 Kur- und Stadtmuseum Bad Ems +http://lobid.org/organisations/DE-MUS-227418#! DE-MUS-227418 Töpferei und Museum im Kannenofen Peltner +http://lobid.org/organisations/DE-MUS-227710#! DE-MUS-227710 Koblenzer Sektmuseum +http://lobid.org/organisations/DE-MUS-229518#! DE-MUS-229518 Schloß Strünkede +http://lobid.org/organisations/DE-MUS-229716#! DE-MUS-229716 Museum Haus Lange +http://lobid.org/organisations/DE-MUS-229914#! DE-MUS-229914 Museen der Stadt Lüdenscheid - Schmiedemuseum Bremecker Hammer +http://lobid.org/organisations/DE-MUS-230117#! DE-MUS-230117 MONREPOS/Archäologisches Forschungszentrum und Museum für menschliche Verhaltensevolution +http://lobid.org/organisations/DE-MUS-230513#! DE-MUS-230513 König-Ludwig II-Museum +http://lobid.org/organisations/DE-MUS-230617#! DE-MUS-230617 Steffenshammer +http://lobid.org/organisations/DE-MUS-231818#! DE-MUS-231818 SPSG / Belvedere Charlottenburg Fürstliches Porzellan +http://lobid.org/organisations/DE-MUS-231912#! DE-MUS-231912 SPSG / Schloß Charlottenburg, Neuer Pavillon +http://lobid.org/organisations/DE-MUS-233116#! DE-MUS-233116 Akademie der Künste, Standort Hanseatenweg +http://lobid.org/organisations/DE-MUS-234515#! DE-MUS-234515 Glas- und Keramikmuseum Großalmerode +http://lobid.org/organisations/DE-MUS-235018#! DE-MUS-235018 Apothekenmuseum Hofgeismar +http://lobid.org/organisations/DE-MUS-235914#! DE-MUS-235914 Alsenzer Museum für Heimatgeschichte und Nordpfalz Galerie +http://lobid.org/organisations/DE-MUS-236219#! DE-MUS-236219 Heimatmuseum Bodenheim +http://lobid.org/organisations/DE-MUS-236813#! DE-MUS-236813 Stadt- und Heimatmuseum Kusel +http://lobid.org/organisations/DE-MUS-237014#! DE-MUS-237014 Randeck-Museum +http://lobid.org/organisations/DE-MUS-237212#! DE-MUS-237212 DGEG Pfalzbahnmuseum +http://lobid.org/organisations/DE-MUS-237410#! DE-MUS-237410 Museum Otterberg +http://lobid.org/organisations/DE-MUS-237712#! DE-MUS-237712 Heimatmuseum Bobenheim-Roxheim +http://lobid.org/organisations/DE-MUS-237910#! DE-MUS-237910 Heimatmuseum 'Hallbergschloß' +http://lobid.org/organisations/DE-MUS-238215#! DE-MUS-238215 Josef Albers Museum +http://lobid.org/organisations/DE-MUS-238611#! DE-MUS-238611 Ungarndeutsche Heimatstuben +http://lobid.org/organisations/DE-MUS-240213#! DE-MUS-240213 Friedensmuseum 'Brücke von Remagen' +http://lobid.org/organisations/DE-MUS-241612#! DE-MUS-241612 Münter-Haus in Murnau +http://lobid.org/organisations/DE-MUS-243618#! DE-MUS-243618 Heimatmuseum Elsenfeld +http://lobid.org/organisations/DE-MUS-244017#! DE-MUS-244017 Langbeinmuseum Hirschhorn +http://lobid.org/organisations/DE-MUS-244413#! DE-MUS-244413 Museum Fridericianum +http://lobid.org/organisations/DE-MUS-244611#! DE-MUS-244611 Stadtmuseum Mühlheim +http://lobid.org/organisations/DE-MUS-244715#! DE-MUS-244715 Heimat- und Bergbaumuseum +http://lobid.org/organisations/DE-MUS-245010#! DE-MUS-245010 Heimatmuseum Leeheim +http://lobid.org/organisations/DE-MUS-245614#! DE-MUS-245614 Museum der Stadt Zwingenberg +http://lobid.org/organisations/DE-MUS-247016#! DE-MUS-247016 Bad Bergzabener Zinnfigurenmuseum +http://lobid.org/organisations/DE-MUS-247318#! DE-MUS-247318 Museum Roemervilla +http://lobid.org/organisations/DE-MUS-247412#! DE-MUS-247412 Winzermuseum Bachem +http://lobid.org/organisations/DE-MUS-247610#! DE-MUS-247610 Sayner Hütte +http://lobid.org/organisations/DE-MUS-247912#! DE-MUS-247912 Sankt Nikolaus-Hospital (Cusanusstift) +http://lobid.org/organisations/DE-MUS-248415#! DE-MUS-248415 Deutsche Arbeitsschutzausstellung (DASA) +http://lobid.org/organisations/DE-MUS-250017#! DE-MUS-250017 Osthofentor-Museum +http://lobid.org/organisations/DE-MUS-250111#! DE-MUS-250111 Traktorenmuseum Westerkappeln +http://lobid.org/organisations/DE-MUS-250413#! DE-MUS-250413 Bergmanns-Bauernmuseum +http://lobid.org/organisations/DE-MUS-251010#! DE-MUS-251010 Enkircher Heimatmuseum +http://lobid.org/organisations/DE-MUS-251114#! DE-MUS-251114 Burg Berwartstein +http://lobid.org/organisations/DE-MUS-251614#! DE-MUS-251614 Heimatkundliches Museum Herrstein +http://lobid.org/organisations/DE-MUS-252711#! DE-MUS-252711 Jüdisches Kulturmuseum Augsburg-Schwaben (JKMAS) +http://lobid.org/organisations/DE-MUS-255418#! DE-MUS-255418 Scherer-Galerie und Heimatmuseum Reischenau +http://lobid.org/organisations/DE-MUS-256213#! DE-MUS-256213 Rundlingsmuseum Wendlandhof +http://lobid.org/organisations/DE-MUS-256911#! DE-MUS-256911 Mühlenfachmuseum Stiftsmühle Aurich +http://lobid.org/organisations/DE-MUS-258417#! DE-MUS-258417 Ballonmuseum Gersthofen +http://lobid.org/organisations/DE-MUS-259212#! DE-MUS-259212 Graphiteum +http://lobid.org/organisations/DE-MUS-259514#! DE-MUS-259514 Freilicht- und Heimatmuseum Donaumoos +http://lobid.org/organisations/DE-MUS-259910#! DE-MUS-259910 Naturmuseum Königsbrunn +http://lobid.org/organisations/DE-MUS-261918#! DE-MUS-261918 Bergbaumuseum Peißenberg +http://lobid.org/organisations/DE-MUS-264719#! DE-MUS-264719 Heimatmuseum der Stadt Aßlar im Schloß zu Werdorf +http://lobid.org/organisations/DE-MUS-264813#! DE-MUS-264813 Hessisches Forstmuseum im Wildpark Alte Fasanerie +http://lobid.org/organisations/DE-MUS-265014#! DE-MUS-265014 Frankfurter Feldbahnmuseum +http://lobid.org/organisations/DE-MUS-265316#! DE-MUS-265316 Gedenkstätte Hadamar +http://lobid.org/organisations/DE-MUS-266413#! DE-MUS-266413 Töpfermuseum Urberach +http://lobid.org/organisations/DE-MUS-266913#! DE-MUS-266913 Heimatmuseum Staufenberg +http://lobid.org/organisations/DE-MUS-267614#! DE-MUS-267614 Landwirtschaftliches Museum Lahn-Dill +http://lobid.org/organisations/DE-MUS-268919#! DE-MUS-268919 Heimatpfad Hochschwarzwald e.V. +http://lobid.org/organisations/DE-MUS-270511#! DE-MUS-270511 Markt- und Schaustellermuseum +http://lobid.org/organisations/DE-MUS-271712#! DE-MUS-271712 Liegnitzer Sammlung Wuppertal +http://lobid.org/organisations/DE-MUS-272413#! DE-MUS-272413 Museum Kloster Kamp +http://lobid.org/organisations/DE-MUS-273010#! DE-MUS-273010 Droste-Zu-Hülshoff - Museum +http://lobid.org/organisations/DE-MUS-273114#! DE-MUS-273114 LWL - Industriemuseum Zeche Zollern +http://lobid.org/organisations/DE-MUS-275110#! DE-MUS-275110 Technikmuseum U-Boot Wilhelm Bauer +http://lobid.org/organisations/DE-MUS-275214#! DE-MUS-275214 Waldmuseum mit Waldschule Grunewald +http://lobid.org/organisations/DE-MUS-275318#! DE-MUS-275318 Architekturmuseum Technische Universität Berlin +http://lobid.org/organisations/DE-MUS-275818#! DE-MUS-275818 Freilichtmuseum Roscheider Hof +http://lobid.org/organisations/DE-MUS-276217#! DE-MUS-276217 Museum Sickingerhöhe Queidersbach +http://lobid.org/organisations/DE-MUS-277012#! DE-MUS-277012 Dr. Hans-Meyer-Heimatmuseum +http://lobid.org/organisations/DE-MUS-277116#! DE-MUS-277116 Richard-Haizmann-Museum +http://lobid.org/organisations/DE-MUS-277210#! DE-MUS-277210 Kapitän-Tadsen-Museum +http://lobid.org/organisations/DE-MUS-277616#! DE-MUS-277616 LVR-Industriemuseum, Schauplatz Engelskirchen +http://lobid.org/organisations/DE-MUS-278411#! DE-MUS-278411 Wixhäuser Dorfmuseum +http://lobid.org/organisations/DE-MUS-278619#! DE-MUS-278619 Museum Echzell +http://lobid.org/organisations/DE-MUS-278817#! DE-MUS-278817 Gedenkstätte Breitenau, Archiv und Ausstellung der GHK +http://lobid.org/organisations/DE-MUS-278911#! DE-MUS-278911 Stadtmuseum, Ernst-Moritz-Engert-Museum und Karl-Wilhelm-Diefenbach-Museum +http://lobid.org/organisations/DE-MUS-279018#! DE-MUS-279018 Heimatmuseum, Alte Dorfschmiede +http://lobid.org/organisations/DE-MUS-279112#! DE-MUS-279112 Tierparkmuseum Hofgeismar +http://lobid.org/organisations/DE-MUS-279518#! DE-MUS-279518 Heimatmuseum Kirchhain-Großseelheim +http://lobid.org/organisations/DE-MUS-279810#! DE-MUS-279810 Hessisches Kutschen- und Wagenmuseum +http://lobid.org/organisations/DE-MUS-280617#! DE-MUS-280617 Heimatmuseum Zorge +http://lobid.org/organisations/DE-MUS-280815#! DE-MUS-280815 Museum Wustrow +http://lobid.org/organisations/DE-MUS-281318#! DE-MUS-281318 Werdumer-Mühle+kl. Sammlung alter Arbeitsgeräte +http://lobid.org/organisations/DE-MUS-281610#! DE-MUS-281610 Heimatmuseum Wanna +http://lobid.org/organisations/DE-MUS-281714#! DE-MUS-281714 Inselmuseum 'Alter Leuchtturm' +http://lobid.org/organisations/DE-MUS-283418#! DE-MUS-283418 Heimatmuseum Debstedt +http://lobid.org/organisations/DE-MUS-283710#! DE-MUS-283710 Vielstedter Bauernhaus +http://lobid.org/organisations/DE-MUS-284015#! DE-MUS-284015 Geigenmuseum +http://lobid.org/organisations/DE-MUS-285414#! DE-MUS-285414 Heimatmuseum Elze +http://lobid.org/organisations/DE-MUS-285810#! DE-MUS-285810 Stift Börstel, Stiftsmuseum und alte Zisterzienserinnen-Kirche +http://lobid.org/organisations/DE-MUS-286813#! DE-MUS-286813 Heimatmuseum Usseln +http://lobid.org/organisations/DE-MUS-287118#! DE-MUS-287118 Museum Eschborn +http://lobid.org/organisations/DE-MUS-288215#! DE-MUS-288215 Turmmuseum der Esslinger Frauenkirche +http://lobid.org/organisations/DE-MUS-289510#! DE-MUS-289510 Hammerschmiede Gröningen +http://lobid.org/organisations/DE-MUS-291112#! DE-MUS-291112 Puppenmuseum Falkenstein +http://lobid.org/organisations/DE-MUS-293816#! DE-MUS-293816 Burg- und Schloßmuseum Jägersburg +http://lobid.org/organisations/DE-MUS-294413#! DE-MUS-294413 Dom-Museum +http://lobid.org/organisations/DE-MUS-294819#! DE-MUS-294819 MuseumsQuartier +http://lobid.org/organisations/DE-MUS-295312#! DE-MUS-295312 Bezirksmuseum Dachau +http://lobid.org/organisations/DE-MUS-295416#! DE-MUS-295416 AschheiMuseum +http://lobid.org/organisations/DE-MUS-295718#! DE-MUS-295718 Museumsmühle in St. Julian +http://lobid.org/organisations/DE-Dm1#! DE-Dm1 Dm 1 Max-Planck-Institut für molekulare Physiologie, Zentrale Einrichtung 'Bibliothek und Wissenschaftliche Informationsdienste' +http://lobid.org/organisations/DE-229#! DE-229 229 Stadtbüchereien Hamm +http://lobid.org/organisations/DE-Bi5#! DE-Bi5 Bi 5 Stadtarchiv und Landesgeschichtliche Bibliothek +http://lobid.org/organisations/DE-38#! DE-38 38 Universitäts- und Stadtbibliothek Köln, Hauptabteilung +http://lobid.org/organisations/DE-38-213#! DE-38-213 38/213 Institut für Öffentliches Recht und Verwaltungslehre, Bibliothek +http://lobid.org/organisations/DE-38-217#! DE-38-217 38/217 Lehrstuhl für Bürgerliches Recht, Deutsches und Internationales Handels-, Wirtschafts- und Bankrecht, Internationales Privatrecht und Rechtsvergleichung, Institut für Bankwirtschaft und Bankrecht, Abt. Bankrecht, Center for Transnational Law (CENTRAL), Gemeinsame Bibliothek +http://lobid.org/organisations/DE-38-221#! DE-38-221 38/221 Institut für Verfahrensrecht und Insolvenzrecht, Bibliothek +http://lobid.org/organisations/DE-38-405#! DE-38-405 38/405 Institut für Deutsche Sprache und Literatur mit Volkskundlicher Abteilung, Bibliothek +http://lobid.org/organisations/DE-38-406#! DE-38-406 38/406 Institut für Niederlandistik, Bibliothek +http://lobid.org/organisations/DE-38-411#! DE-38-411 38/411 Englisches Seminar I, Bibliothek +http://lobid.org/organisations/DE-38-412#! DE-38-412 38/412 Universität Köln, Romanisches Seminar, Bibliothek +http://lobid.org/organisations/DE-38-416#! DE-38-416 38/416 Institut für Afrikanistik und Ägyptologie, Abteilung Ägyptologie, Bibliothek +http://lobid.org/organisations/DE-38-418#! DE-38-418 38/418 Universität Köln, Gemeinsame Fachbibliothek Slavistik +http://lobid.org/organisations/DE-38-419#! DE-38-419 38/419 Institut für Afrikanistik und Ägyptologie, Abteilung Afrikanistik, Bibliothek +http://lobid.org/organisations/DE-38-428#! DE-38-428 38/428 Kunsthistorisches Institut, Abteilung Allgemeine Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-38-433#! DE-38-433 38/433 Husserl-Archiv der Universität, Bibliothek +http://lobid.org/organisations/DE-38-517#! DE-38-517 38/517 Department Geowissenschaften, Fachbibliothek Geographie +http://lobid.org/organisations/DE-Kn41-6#! DE-Kn41-6 Kn 41/6 Deutsche Sporthochschule Köln, Institut für Sportgeschichte, Bibliothek +http://lobid.org/organisations/DE-Kn41-16#! DE-Kn41-16 Kn 41/16 Deutsche Sporthochschule Köln, Institut für Pädagogik und Philosophie, Abteilung 1: Pädagogik / Sportpädagogik, Bibliothek +http://lobid.org/organisations/DE-380#! DE-380 380 Stadtbibliothek Köln +http://lobid.org/organisations/DE-82-109#! DE-82-109 82/109 Lehr- und Forschungsgebiet Mechanik, Bibliothek +http://lobid.org/organisations/DE-82-128#! DE-82-128 82/128 Lehrstuhl und Institut für Biologie II (Zoologie), Bibliothek +http://lobid.org/organisations/DE-82-201#! DE-82-201 82/201 Lehrstuhl für Tragkonstruktionen, Bibliothek +http://lobid.org/organisations/DE-82-202#! DE-82-202 82/202 Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-82-208#! DE-82-208 82/208 Lehrstuhl für Landschaftsarchitektur, Bibliothek +http://lobid.org/organisations/DE-82-211#! DE-82-211 82/211 Lehrstuhl und Institut für Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-82-223#! DE-82-223 82/223 Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek +http://lobid.org/organisations/DE-82-302#! DE-82-302 82/302 Institut für Werkstoffkunde, Bibliothek +http://lobid.org/organisations/DE-82-311#! DE-82-311 82/311 Institut für Dampf- und Gasturbinen, Bibliothek +http://lobid.org/organisations/DE-82-316#! DE-82-316 82/316 Lehrstuhl und Institut für Regelungstechnik, Bibliothek +http://lobid.org/organisations/DE-82-403#! DE-82-403 82/403 Lehrstuhl für Rohstoffgewinnung über Tage und Bohrtechnik und Institut für Bergbaukunde III, Bibliothek +http://lobid.org/organisations/DE-82-404#! DE-82-404 82/404 Lehrstuhl für Aufbereitung und Recycling fester Abfallstoffe und Institut für Aufbereitung, Kokerei und Brikettierung, Bibliothek +http://lobid.org/organisations/DE-82-405#! DE-82-405 82/405 Lehrstuhl und Institut für Bergwerks- und Hüttenmaschinenkunde, Bibliothek +http://lobid.org/organisations/DE-82-408#! DE-82-408 82/408 Lehrstuhl für Ingenieurgeologie und Hydrogeologie, Bibliothek +http://lobid.org/organisations/DE-82-409#! DE-82-409 82/409 Lehrstuhl und Institut für Mineralogie und Lagerstättenlehre und Labor für Geochemie und Umweltanalytik, Bibliothek +http://lobid.org/organisations/DE-82-411#! DE-82-411 82/411 Lehrstuhl und Institut für Eisenhüttenkunde, Bibliothek +http://lobid.org/organisations/DE-82-415#! DE-82-415 82/415 Institut für Bildsame Formgebung, Bibliothek +http://lobid.org/organisations/DE-82-506#! DE-82-506 82/506 Lehrstuhl und Institut für Elektrische Anlagen und Energiewirtschaft, Bibliothek +http://lobid.org/organisations/DE-82-603#! DE-82-603 82/603 Lehr- und Forschungsgebiet Erziehungswissenschaft mit dem Schwerpunkt Schulpädagogik, Bibliothek +http://lobid.org/organisations/DE-82-604#! DE-82-604 82/604 Historisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-611#! DE-82-611 82/611 Institut für Anglistik, Bibliothek +http://lobid.org/organisations/DE-82-707#! DE-82-707 82/707 Geschichte, Theorie und Ethik der Medizin, Bibliothek +http://lobid.org/organisations/DE-82-725#! DE-82-725 82/725 Medizinische Klinik I, Bibliothek +http://lobid.org/organisations/DE-82-742#! DE-82-742 82/742 Institut für Klinische Chemie und Pathobiochemie, Bibliothek +http://lobid.org/organisations/DE-82-744#! DE-82-744 82/744 Klinik für Psychiatrie und Psychotherapie +http://lobid.org/organisations/DE-82-749#! DE-82-749 82/749 Institut für Versuchstierkunde und Zentrallaboratorium für Versuchstiere, Bibliothek +http://lobid.org/organisations/DE-82-750#! DE-82-750 82/750 Schule für Medizinisch-Technische Laborassistent(inn)en, Bibliothek +http://lobid.org/organisations/DE-82-751#! DE-82-751 82/751 Zentralbereich für Physiotherapie, Bibliothek +http://lobid.org/organisations/DE-82-753#! DE-82-753 82/753 Tumorzentrum Aachen e.V., Bibliothek +http://lobid.org/organisations/DE-82-756#! DE-82-756 82/756 Medizinische Klinik III, Bibliothek +http://lobid.org/organisations/DE-82-757#! DE-82-757 82/757 Personalvertretung der Wissenschaftlichen Mitarbeiter und Ärzte, Medizinische Einrichtungen, Bibliothek +http://lobid.org/organisations/DE-82-762#! DE-82-762 82/762 Allgemeinmedizin, Bibliothek +http://lobid.org/organisations/DE-224#! DE-224 224 Stadtbücherei Düren +http://lobid.org/organisations/DE-5-11#! DE-5-11 5/11 Universität Bonn, Geographisches Institut, Bibliothek +http://lobid.org/organisations/DE-5-17#! DE-5-17 5/17 Universität Bonn, Kekulé-Institut für Organische Chemie und Biochemie / Institut für Anorganische Chemie, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-5-34#! DE-5-34 5/34 Universität Bonn, Juristisches Seminar, Bibliothek +http://lobid.org/organisations/DE-5-39#! DE-5-39 5/39 Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek +http://lobid.org/organisations/DE-5-61#! DE-5-61 5/61 Universität Bonn, Institut für Lebensmittel- und Ressourcenökonomik (ILR), Bibliothek +http://lobid.org/organisations/DE-5-68#! DE-5-68 5/68 Universität Bonn, Institut für Physikalische und Theoretische Chemie, Bibliothek +http://lobid.org/organisations/DE-5-74#! DE-5-74 5/74 Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek +http://lobid.org/organisations/DE-5-76#! DE-5-76 5/76 Universität Bonn, Staatswissenschaftliches Seminar, Fachbereichsbibliothek +http://lobid.org/organisations/DE-5-91#! DE-5-91 5/91 Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft / Abt. für Medienwissenschaft, Bibliothek +http://lobid.org/organisations/DE-5-108#! DE-5-108 5/108 Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie +http://lobid.org/organisations/DE-5-136#! DE-5-136 5/136 Universität Bonn, Franz-Joseph-Dölger-Institut zur Erforschung der Spätantike, Bibliothek +http://lobid.org/organisations/DE-5-169#! DE-5-169 5/169 Universität Bonn, Altkatholisches Seminar, Bibliothek +http://lobid.org/organisations/DE-5-190#! DE-5-190 5/190 Universität Bonn, Institut für Deutsches und Internationales Zivilprozeßrecht sowie Konfliktmanagement, Bibliothek +http://lobid.org/organisations/DE-Bo111#! DE-Bo111 Bo 111 Bundesministerium für Bildung und Forschung, Bibliothek +http://lobid.org/organisations/DE-Bo153#! DE-Bo153 Bo 153 Presse- und Informationsamt der Bundesregierung, Zentrales Dokumentationssystem, Pressearchiv / Bibliothek +http://lobid.org/organisations/DE-369#! DE-369 369 Stadtbibliothek Bonn +http://lobid.org/organisations/DE-Bo27#! DE-Bo27 Bo 27 Naturhistorischer Verein der Rheinlande und Westfalens, Bibliothek +http://lobid.org/organisations/DE-385#! DE-385 385 Universitätsbibliothek Trier +http://lobid.org/organisations/DE-Tr2#! DE-Tr2 Tr 2 Bibliothek des Bischöflichen Priesterseminars Trier +http://lobid.org/organisations/DE-Tr7#! DE-Tr7 Tr 7 Dienstleistungszentrum Ländlicher Raum (DLR) Mosel, Bibliothek +http://lobid.org/organisations/DE-467#! DE-467 467 Universitätsbibliothek Siegen +http://lobid.org/organisations/DE-30#! DE-30 30 Universitätsbibliothek J. C. Senckenberg, Zentralbibliothek (ZB) +http://lobid.org/organisations/DE-Ds200#! DE-Ds200 Ds 200 GSI Helmholzzentrum für Schwerionenforschung GmbH, Bibliothek & Dokumentation +http://lobid.org/organisations/DE-26-151#! DE-26-151 26/151 Universität Gießen, Hermann-Hoffmann-Akademie +http://lobid.org/organisations/DE-26-177#! DE-26-177 26/177 Universität Gießen / Bibliothek Veterinärpathologie +http://lobid.org/organisations/DE-26-178#! DE-26-178 26/178 Universität Gießen / Bibliothek Tierärztliche Nahrungsmittelkunde +http://lobid.org/organisations/DE-26-186#! DE-26-186 26/186 Universität Gießen / Bibliothek Klinik für Wiederkäuer und Schweine (Innere Medizin und Chirurgie) +http://lobid.org/organisations/DE-26-232#! DE-26-232 26/232 Universität Gießen, Bibliothek Physiologie +http://lobid.org/organisations/DE-66#! DE-66 66 Hochschul- und Landesbibliothek Fulda, Standort Heinrich-von-Bibra-Platz +http://lobid.org/organisations/DE-77-092#! DE-77-092 77/092 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Osteuropäische Geschichte +http://lobid.org/organisations/DE-291M#! DE-291M 291 M Saarländische Universitäts- und Landesbibliothek, Medizinische Abteilung +http://lobid.org/organisations/DE-291-313#! DE-291-313 291/313 Universität des Saarlandes, Fachrichtung Geschichte, Bibliothek +http://lobid.org/organisations/DE-291-348#! DE-291-348 291/348 Universität des Saarlandes, Fachrichtung Katholische Theologie, Bibliothek +http://lobid.org/organisations/DE-291-503#! DE-291-503 291/503 Universität des Saarlandes, Rechts- und Wirtschaftwissenschaftliche Fakultät, Sektion Rechtswissenschaft, Europa-Institut, Bibliothek +http://lobid.org/organisations/DE-16-36#! DE-16-36 16/36 Seminar für Sprachen und Kulturen des Vorderen Orients, Bibliothek +http://lobid.org/organisations/DE-16-55#! DE-16-55 16/55 Institut für Sport und Sportwissenschaft der Universität, Bibliothek +http://lobid.org/organisations/DE-16-77#! DE-16-77 16/77 Centre for Asian and Transcultural Studies (CATS), Abteilung Südasien +http://lobid.org/organisations/DE-16-98#! DE-16-98 16/98 Seminar für Lateinische Philologie des Mittelalters und der Neuzeit der Universität, Bibliothek +http://lobid.org/organisations/DE-16-122#! DE-16-122 16/122 Centre for Asian and Transcultural Studies (CATS), Abteilung Ostasien +http://lobid.org/organisations/DE-He78#! DE-He78 He 78 Deutsches Krebsforschungszentrum, Zentralbibliothek +http://lobid.org/organisations/DE-Gun1#! DE-Gun1 Gun 1 Siebenbürgen-Institut an der Universität Heidelberg, Siebenbürgische Bibliothek mit Archiv +http://lobid.org/organisations/DE-He128#! DE-He128 He 128 Kurpfälzisches Museum der Stadt Heidelberg, Bibliothek +http://lobid.org/organisations/DE-93-2#! DE-93-2 93/2 Universität Stuttgart, Institut für Funktionelle Materie und Quantentechnologien, Bibliothek +http://lobid.org/organisations/DE-93-28#! DE-93-28 93/28 Universität Stuttgart, Institut für Biomaterialien und Biomolekulare Systeme , Bibliothek +http://lobid.org/organisations/DE-93-36#! DE-93-36 93/36 Universität Stuttgart, Institut für Intelligente Sensorik und Theoretische Elektrotechnik, Bibliothek +http://lobid.org/organisations/DE-93-38#! DE-93-38 93/38 Universität Stuttgart, Institut für Fördertechnik und Logistik, Bibliothek +http://lobid.org/organisations/DE-93-39#! DE-93-39 93/39 Universität Stuttgart, Institut für Aerodynamik und Gasdynamik, Bibliothek +http://lobid.org/organisations/DE-93-44#! DE-93-44 93/44 Universität Stuttgart, Institut für Technische Verbrennung, Bibliothek +http://lobid.org/organisations/DE-93-53#! DE-93-53 93/53 Universität Stuttgart, Institut für Mechanik (Bauwesen), Bibliothek +http://lobid.org/organisations/DE-93-89#! DE-93-89 93/89 Universität Stuttgart, Institut für Energieübertragung und Hochspannungstechnik, Bibliothek +http://lobid.org/organisations/DE-93-100#! DE-93-100 93/100 Universität Stuttgart, Bibliothek des Instituts für Werkstoffe im Bauwesen (IWB) und der Materialprüfungsanstalt (MPA Stuttgart, Otto-Graf-Institut (FMPA)) +http://lobid.org/organisations/DE-93-106#! DE-93-106 93/106 Universität Stuttgart, Institut für Philosophie, Bibliothek +http://lobid.org/organisations/DE-93-126#! DE-93-126 93/126 Universität Stuttgart, Institut für Grundlagen der Planung in der Architektur, Bibliothek +http://lobid.org/organisations/DE-93-129#! DE-93-129 93/129 Universität Stuttgart, Institut für Landschaftsplanung und Ökologie, Bibliothek +http://lobid.org/organisations/DE-93-146#! DE-93-146 93/146 Universität Stuttgart, Institut für Kommunikationsnetze und Rechnersysteme, Bibliothek +http://lobid.org/organisations/DE-93-155#! DE-93-155 93/155 Universität Stuttgart, Institut für Technische und Numerische Mechanik, Bibliothek +http://lobid.org/organisations/DE-93-156#! DE-93-156 93/156 Universität Stuttgart, Institut für Mineralogie und Kristallchemie, Bibliothek +http://lobid.org/organisations/DE-93-163#! DE-93-163 93/163 Universität Stuttgart, Fakultätsbibliothek Luft- und Raumfahrttechnik und Geodäsie +http://lobid.org/organisations/DE-93-169#! DE-93-169 93/169 Universität Stuttgart, Physikalisches Institut, 3. Physikalisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-175#! DE-93-175 93/175 Universität Stuttgart, Institut für Technische Thermodynamik und Thermische Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-93-194#! DE-93-194 93/194 Universität Stuttgart, Institut für Baukonstruktion, Lehrstuhl 2 für Baukonstruktion, Bautechnologie und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-198#! DE-93-198 93/198 Universität Stuttgart, Institut für Akustik und Bauphysik, Bibliothek +http://lobid.org/organisations/DE-100-120#! DE-100-120 100/120 Institut für Physik und Meteorologie der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-152#! DE-100-152 100/152 Forschungs- und Lehrmolkerei der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-360#! DE-100-360 100/360 Institut für Phytomedizin der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-401#! DE-100-401 100/401 Versuchsstation Agrarwissenschaften der Universität Hohenheim, Standort Hohenheim (mit den Betriebsteilen Meiereihof, Heidfeldhof, Kleinhohenheim und Eckartsweier), Bibliothek +http://lobid.org/organisations/DE-100-402#! DE-100-402 100/402 Versuchsstation Agrarwissenschaften der Universität Hohenheim, Standort Lindenhöfe, Bibliothek +http://lobid.org/organisations/DE-100-461#! DE-100-461 100/461 Tierärztliche Praxis der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-490#! DE-100-490 100/490 Institut für Tropische Agrarwissenschaften (Hans-Ruthenberg-Institut) der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-530#! DE-100-530 100/530 Institut für Health Care & Public Management der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-900#! DE-100-900 100/900 Universität Hohenheim, Universitätsverwaltung, Bibliothek +http://lobid.org/organisations/DE-81#! DE-81 81 Landtag von Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-21-24#! DE-21-24 21/24 Juristisches Seminar, Bibliothek +http://lobid.org/organisations/DE-21-32a#! DE-21-32a 21/32a Historisches Seminar, Abteilung für Alte Geschichte Bibliothek +http://lobid.org/organisations/DE-21-50#! DE-21-50 21/50 Universität Tübingen, Physiologisches Institut, Bibliothek +http://lobid.org/organisations/DE-21-53#! DE-21-53 21/53 Asien-Orient-Institut, Abteilung für Ethnologie, Bibliothek +http://lobid.org/organisations/DE-21-65#! DE-21-65 21/65 Universitätsapotheke, Bibliothek +http://lobid.org/organisations/DE-21-81#! DE-21-81 21/81 Institut für Astronomie und Astrophysik, Abteilung Geschichte der Naturwissenschaften, Bibliothek +http://lobid.org/organisations/DE-21-112#! DE-21-112 21/112 Universitätsbibliothek Tübingen, Bereichsbibliothek Biologie +http://lobid.org/organisations/DE-21-117#! DE-21-117 21/117 Institut für Medizinische Informationsverarbeitung, Bibliothek +http://lobid.org/organisations/DE-Tue59#! DE-Tue59 Tü 59 Bibliothek des Wilhelmsstifts +http://lobid.org/organisations/DE-Tue117#! DE-Tue117 Tü 117 Berufsgenossenschaftliche Unfallklinik, Bibliothek +http://lobid.org/organisations/DE-Tue122#! DE-Tue122 Tü 122 Landesamt für Denkmalpflege im Regierungspräsidium Stuttgart, Dienstsitz Tübingen, Bibliothek +http://lobid.org/organisations/DE-Sig1#! DE-Sig1 Sig 1 Landesarchiv Baden-Württemberg, Abteilung Staatsarchiv Sigmaringen, Bibliothek +http://lobid.org/organisations/DE-90-14#! DE-90-14 90/14 KIT-Bibliothek, Bibliothek des Instituts für Mechanik +http://lobid.org/organisations/DE-90-29#! DE-90-29 90/29 KIT-Bibliothek, Bibliothek des Instituts für Meteorologie und Klimaforschung +http://lobid.org/organisations/DE-90-70#! DE-90-70 90/70 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen von Stadt und Landschaft, Fachgebiet Internationaler Städtebau +http://lobid.org/organisations/DE-90-72#! DE-90-72 90/72 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen, Kunst und Theorie, Fachgebiet Grundlagen der Architektur +http://lobid.org/organisations/DE-90-77#! DE-90-77 90/77 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen von Stadt und Landschaft, Fachgebiet Landschaftsarchitektur +http://lobid.org/organisations/DE-90-81#! DE-90-81 90/81 KIT-Bibliothek, Bibliothek des Instituts für Hydromechanik +http://lobid.org/organisations/DE-90-84#! DE-90-84 90/84 KIT-Bibliothek, Bibliothek des Instituts für Bodenmechanik und Felsmechanik +http://lobid.org/organisations/DE-90-87#! DE-90-87 90/87 KIT-Bibliothek, Bibliothek des Instituts für Verkehrswesen +http://lobid.org/organisations/DE-90-101#! DE-90-101 90/101 KIT-Bibliothek, Bibliothek des Instituts für Technische Thermodynamik und Kältetechnik +http://lobid.org/organisations/DE-90-116#! DE-90-116 90/116 KIT-Bibliothek, Bibliothek des Instituts für Fördertechnik und Logistiksysteme +http://lobid.org/organisations/DE-90-128#! DE-90-128 90/128 KIT-Bibliothek, Bibliothek des Instituts für Mikro- und Nanoelektronische Systeme +http://lobid.org/organisations/DE-90-139#! DE-90-139 90/139 KIT-Bibliothek, Bibliothek des Lichttechnischen Instituts +http://lobid.org/organisations/DE-90-155#! DE-90-155 90/155 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen und Bautechnik, Fachgebiet Bauphysik und Technischer Ausbau +http://lobid.org/organisations/DE-90-181#! DE-90-181 90/181 KIT-Bibliothek, Bibliothek der Zentralen Studienberatung +http://lobid.org/organisations/DE-267#! DE-267 267 Stadtbibliothek Pforzheim +http://lobid.org/organisations/DE-Ka74#! DE-Ka74 Ka 74 Bundesanstalt für Wasserbau, Infozentrum Wasserbau +http://lobid.org/organisations/DE-Bret2#! DE-Bret2 Bret 2 D. Dr. Otto-Beuttenmüller-Bibliothek +http://lobid.org/organisations/DE-Kh1#! DE-Kh1 Kh 1 Hochschule Kehl, Bibliothek +http://lobid.org/organisations/DE-25#! DE-25 25 Universitätsbibliothek Freiburg +http://lobid.org/organisations/DE-25-3a#! DE-25-3a 25/3a Mathematisches Institut, Bibliothek / Abteilung für Reine Mathematik +http://lobid.org/organisations/DE-25-8#! DE-25-8 25/8 Institut für Biochemie und Molekularbiologie, Bibliothek +http://lobid.org/organisations/DE-25-14#! DE-25-14 25/14 Universität Freiburg, Musikwissenschaftliches Seminar, Bibliothek +http://lobid.org/organisations/DE-25-20#! DE-25-20 25/20 Klinik für Psychiatrie und Psychotherapie (Department für Psychische Erkrankungen), Bibliothek +http://lobid.org/organisations/DE-25-32#! DE-25-32 25/32 Fachbereichsbibliothek Philosophie und Erziehungswissenschaft, Abteilung Philosophie +http://lobid.org/organisations/DE-25-39#! DE-25-39 25/39 Zentrum für Kinder- und Jugendmedizin, Bibliothek +http://lobid.org/organisations/DE-25-56#! DE-25-56 25/56 Institut für Forstökonomie, Abteilung für Forstökonomie und Forsteinrichtung, Bibliothek +http://lobid.org/organisations/DE-25-71#! DE-25-71 25/71 Neurozentrum, Bibliothek +http://lobid.org/organisations/DE-25-75#! DE-25-75 25/75 Universität Freiburg, Seminar für Griechische und Lateinische Philologie, Abteilung für Griechische Philologie und Abteilung für Lateinische Philologie der Antike und der Neuzeit, Bibliothek +http://lobid.org/organisations/DE-25-76#! DE-25-76 25/76 Fachbereichsbibliothek Philosophie und Erziehungswissenschaft, Abteilung Erziehungswissenschaft +http://lobid.org/organisations/DE-25-77#! DE-25-77 25/77 Universität Freiburg, Institut für Psychologie, Bibliothek +http://lobid.org/organisations/DE-25-102#! DE-25-102 25/102 Universität Freiburg, Institut für Rechtsmedizin, Bibliothek +http://lobid.org/organisations/DE-25-156#! DE-25-156 25/156 Fakultätsbibliothek Theologie +http://lobid.org/organisations/DE-25-30d#! DE-25-30d 25/30d Institut für Kulturanthropologie und Europäische Ethnologie, Bibliothek +http://lobid.org/organisations/DE-Frei128#! DE-Frei128 Frei 128 Stadtbibliothek Freiburg +http://lobid.org/organisations/DE-Frei26#! DE-Frei26 Frei 26 Deutscher Caritasverband e.V., Bibliothek +http://lobid.org/organisations/DE-Frei68#! DE-Frei68 Frei 68 Forstliche Versuchs- und Forschungsanstalt Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Frei100#! DE-Frei100 Frei 100 Staatliches Weinbauinstitut, Bibliothek +http://lobid.org/organisations/DE-Frei115#! DE-Frei115 Frei 115 Museum Natur und Mensch, Abteilung für Naturkunde, Bibliothek +http://lobid.org/organisations/DE-25-122#! DE-25-122 25/122 Institut für Grenzgebiete der Psychologie und Psychohygiene, Bibliothek +http://lobid.org/organisations/DE-Frei123#! DE-Frei123 Frei 123 Städtische Museen Freiburg, Augustinermuseum/Museum für Neue Kunst, Bibliothek +http://lobid.org/organisations/DE-Frei132#! DE-Frei132 Frei 132 Kirchengeschichtlicher Verein für das Erzbistum Freiburg, Bibliothek +http://lobid.org/organisations/DE-Frei134z#! DE-Frei134z Frei 134z Museum Natur und Mensch, Ethnologische Sammlung, Bibliothek +http://lobid.org/organisations/DE-Frei145#! DE-Frei145 Frei 145 Landesarchiv Baden-Württemberg, Abteilung Staatsarchiv Freiburg, Bibliothek +http://lobid.org/organisations/DE-Frei158#! DE-Frei158 Frei 158 Fraunhofer-Institut für Physikalische Messtechnik, Bibliothek +http://lobid.org/organisations/DE-Frei202#! DE-Frei202 Frei 202 Archiv für soziale Bewegungen in Baden, Bibliothek +http://lobid.org/organisations/DE-Frei120#! DE-Frei120 Frei 120 Studienhaus Wiesneck, Institut für politische Bildung Baden-Württemberg e.V., Bibliothek +http://lobid.org/organisations/DE-M13#! DE-M13 M 13 Bayerischer Landtag, Bibliothek +http://lobid.org/organisations/DE-M71#! DE-M71 M 71 Zoologische Staatssammlung, Bibliothek +http://lobid.org/organisations/DE-M171#! DE-M171 M 171 Münchner Entomologische Gesellschaft e.V., Bücherei +http://lobid.org/organisations/DE-M478#! DE-M478 M 478 Bundesamt für Strahlenschutz, Bibliothek Oberschleißheim +http://lobid.org/organisations/DE-706#! DE-706 706 Universität der Bundeswehr München, Universitätsbibliothek +http://lobid.org/organisations/DE-22#! DE-22 22 Staatsbibliothek Bamberg +http://lobid.org/organisations/DE-37#! DE-37 37 Staats- und Stadtbibliothek Augsburg +http://lobid.org/organisations/DE-294-47#! DE-294-47 294/47 Ruhr-Universität Bochum, Institut für Medizinische Ethik und Geschichte der Medizin, Bibliothek +http://lobid.org/organisations/DE-11#! DE-11 11 Humboldt-Universität zu Berlin, Universitätsbibliothek, Jacob-und-Wilhelm-Grimm-Zentrum +http://lobid.org/organisations/DE-U4#! DE-U4 U 4 ZSW Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg, Geschäftsbereich 3, Bibliothek +http://lobid.org/organisations/DE-U5#! DE-U5 U 5 RKU - Universitäts- und Rehabilitationskliniken Ulm gGmbH, Bibliothek +http://lobid.org/organisations/DE-11-87#! DE-11-87 11/87 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Naturwissenschaften +http://lobid.org/organisations/DE-B175#! DE-B175 B 175 Stiftung Oper in Berlin, Staatsoper Unter den Linden, Bibliothek +http://lobid.org/organisations/DE-B513#! DE-B513 B 513 Weierstraß-Institut für Angewandte Analysis und Stochastik im Forschungsverbund Berlin e.V., Bibliothek +http://lobid.org/organisations/DE-B584#! DE-B584 B 584 Bundesamt für Strahlenschutz, Dienststelle Berlin, Bibliothek +http://lobid.org/organisations/DE-B2042#! DE-B2042 B 2042 Leibniz-Institut für Zoo- und Wildtierforschung (Leibniz-IZW) im Forschungsverbund Berlin e.V., Bibliothek +http://lobid.org/organisations/DE-B2053#! DE-B2053 B 2053 Vivantes Klinikum Hellersdorf, Fachbibliothek +http://lobid.org/organisations/DE-139#! DE-139 139 Stadt- und Regionalbibliothek Frankfurt (Oder) +http://lobid.org/organisations/DE-517#! DE-517 517 Universität Potsdam, Universitätsbibliothek +http://lobid.org/organisations/DE-B15#! DE-B15 B 15 Senckenberg Deutsches Entomologisches Institut, Entomologische Bibliothek +http://lobid.org/organisations/DE-B2028#! DE-B2028 B 2028 Sana Kliniken Sommerfeld, Hellmuth-Ulrici-Kliniken, Akut- und Rehabilitationsklinik für Erkrankungen des Bewegungssystems und der Atmungsorgane, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Bd3#! DE-Bd3 Bd 3 Stadtarchiv Brandenburg, Bibliothek +http://lobid.org/organisations/DE-Eh1#! DE-Eh1 Eh 1 ArcelorMittal Eisenhüttenstadt GmbH, Technische Bibliothek +http://lobid.org/organisations/DE-Fr1#! DE-Fr1 Fr 1 Klinikum Frankfurt/Oder GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Gro2#! DE-Gro2 Gro 2 Leibniz-Institut für Gemüse- und Zierpflanzenbau Großbeeren/Erfurt e.V., Fachbibliothek +http://lobid.org/organisations/DE-Po6#! DE-Po6 Po 6 Deutsches Institut für Ernährungsforschung (DIfE) Potsdam-Rehbrücke, Bibliothek +http://lobid.org/organisations/DE-Po47#! DE-Po47 Po 47 LAS - Landesamt für Arbeitsschutz, Bibliothek +http://lobid.org/organisations/DE-Spr4#! DE-Spr4 Spr 4 Vattenfall Europe Mining AG, Fachbibliothek +http://lobid.org/organisations/DE-Wis1#! DE-Wis1 Wis 1 Hochschule Wismar, University of Applied Sciences: Technology, Business and Design, Hochschulbibliothek +http://lobid.org/organisations/DE-Brg3#! DE-Brg3 Brg 3 Hochschulbibliothek Friedensau +http://lobid.org/organisations/DE-Brg6#! DE-Brg6 Brg 6 Institut für Brand- und Katastrophenschutz Sachsen-Anhalt, Wissenschaftliche Fachbibliothek +http://lobid.org/organisations/DE-De6#! DE-De6 De 6 Städtisches Klinikum Dessau, Akademisches Lehrkrankenhaus, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-3-4#! DE-3-4 3/4 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Heide-Süd +http://lobid.org/organisations/DE-3-19#! DE-3-19 3/19 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Geowissenschaften +http://lobid.org/organisations/DE-Ha48#! DE-Ha48 Ha 48 Evangelische Hochschule für Kirchenmusik, Bibliothek +http://lobid.org/organisations/DE-Ma26#! DE-Ma26 Ma 26 Stadtarchiv Magdeburg +http://lobid.org/organisations/DE-Ma33#! DE-Ma33 Ma 33 Kulturhistorisches Museum und Museum für Naturkunde, Bibliothek +http://lobid.org/organisations/DE-Mer11#! DE-Mer11 Mer 11 Carl-von-Basedow-Klinikum Saalekreis GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Pf1#! DE-Pf1 Pf 1 Landesschule Pforte, Archiv und Bibliothek +http://lobid.org/organisations/DE-Q3#! DE-Q3 Q 3 Krankenhaus, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Q8#! DE-Q8 Q 8 Harzklinikum Dorothea Christiane Erxleben GmbH, Fachbibliothek +http://lobid.org/organisations/DE-Sw1#! DE-Sw1 Sw 1 Johann-Friedrich-Danneil-Museum, Regionalmuseum, Bibliothek +http://lobid.org/organisations/DE-15#! DE-15 15 Universitätsbibliothek Leipzig +http://lobid.org/organisations/DE-105#! DE-105 105 Technische Universität Bergakademie Freiberg, Bibliothek 'Georgius Agricola' +http://lobid.org/organisations/DE-125#! DE-125 125 Ratsschulbibliothek, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B2170#! DE-B2170 B 2170 Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik, Bibliothek +http://lobid.org/organisations/DE-Cg2#! DE-Cg2 Cg 2 Fachkrankenhaus Coswig, Zentrum für Pneumologie, Beatmungsmedizin, Thorax- und Gefäßchirurgie, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-D40#! DE-D40 D 40 Staatliche Ethnographische Sammlungen Sachsen, Museum für Völkerkunde Dresden, Bibliothek +http://lobid.org/organisations/DE-14-32#! DE-14-32 14/32 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Zweigbibliothek Medizin +http://lobid.org/organisations/DE-D141#! DE-D141 D 141 Landesuntersuchungsanstalt für das Gesundheits- und Veterinärwesen Sachsen, Standort Dresden, Fachbibliothek +http://lobid.org/organisations/DE-D174#! DE-D174 D 174 Institut für Sächsische Geschichte und Volkskunde, Bibliothek +http://lobid.org/organisations/DE-Fb64#! DE-Fb64 Fb 64 Kreiskrankenhaus Freiberg gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Gla2#! DE-Gla2 Gla 2 Rudolf Virchow Klinikum Glauchau, Medizinische Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Ch18#! DE-Ch18 Ch 18 NILES-SIMMONS Industrieanlagen GmbH +http://lobid.org/organisations/DE-L38#! DE-L38 L 38 GRASSI Museum für Angewandte Kunst Leipzig, Bibliothek +http://lobid.org/organisations/DE-L242#! DE-L242 L 242 Hochschule für Grafik und Buchkunst, Bibliothek +http://lobid.org/organisations/DE-Pir3#! DE-Pir3 Pir 3 Staatsbetrieb Sachsenforst, Bibliothek +http://lobid.org/organisations/DE-Ri4#! DE-Ri4 Ri 4 Paracelsus-Klinik Reichenbach, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-140#! DE-140 140 Stadt- und Regionalbibliothek Gera +http://lobid.org/organisations/DE-Eib1#! DE-Eib1 Eib 1 Waldkliniken Eisenberg GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Gz1#! DE-Gz1 Gz 1 Staatliche Bücher- und Kupferstichsammlung Greiz, Stiftung der Älteren Linie des Hauses Reuß, Bibliothek +http://lobid.org/organisations/DE-27-5#! DE-27-5 27/5 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Hals-, Nasen-, Ohrenklinik +http://lobid.org/organisations/DE-27-12#! DE-27-12 27/12 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Allgemeine Botanik und Ökologie +http://lobid.org/organisations/DE-27-13#! DE-27-13 27/13 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Herbarium Haussknecht +http://lobid.org/organisations/DE-27-23#! DE-27-23 27/23 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Geschichte +http://lobid.org/organisations/DE-27-28#! DE-27-28 27/28 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Neuere Fremdsprachenphilologien (Romanistik) +http://lobid.org/organisations/DE-27-42#! DE-27-42 27/42 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Agrarwissenschaftliche Bibliothek +http://lobid.org/organisations/DE-27-44#! DE-27-44 27/44 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Zentrum für Zahn-, Mund- und Kieferheilkunde +http://lobid.org/organisations/DE-27-66#! DE-27-66 27/66 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Sportwissenschaft +http://lobid.org/organisations/DE-27-71#! DE-27-71 27/71 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Ernährungswissenschaften +http://lobid.org/organisations/DE-27-105#! DE-27-105 27/105 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Anthropologie und Humangenetik +http://lobid.org/organisations/DE-J122#! DE-J122 J 122 ThüringenForst - Anstalt öffentlichen Rechts, Service- und Kompetenzzentrum, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-27-144#! DE-27-144 27/144 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Geographie / Technik +http://lobid.org/organisations/DE-27-146#! DE-27-146 27/146 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Radiologie +http://lobid.org/organisations/DE-27-150#! DE-27-150 27/150 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Allgemeine und Krankenhaushygiene +http://lobid.org/organisations/DE-Ms4#! DE-Ms4 Ms 4 Ökumenisches Hainich Klinikum gGmbH, Fachkrankenhaus für Neurologie, Kinder- und Jugendpsychiatrie, Psychiatrie und Psychotherapie, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-No6#! DE-No6 No 6 Südharz Klinikum Nordhausen gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Sob7#! DE-Sob7 Sob 7 MANN+HUMMEL GmbH, Information / Dokumentation +http://lobid.org/organisations/DE-Su4#! DE-Su4 Su 4 Fachkrankenhaus für Psychiatrie und Neurologie Hildburghausen GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Het1#! DE-Het1 Het 1 MKM Mansfelder Kupfer und Messing GmbH, Technische Bücherei +http://lobid.org/organisations/DE-141#! DE-141 141 Stadtbibliothek Guben +http://lobid.org/organisations/GB-UkLeUBL#! GB-UkLeUBL University of Leeds, Brotherton Library +http://lobid.org/organisations/DE-B758#! DE-B758 B 758 Deutscher Staatsbürgerinnen-Verband, Bibliothek +http://lobid.org/organisations/DE-B797#! DE-B797 B 797 Sozialgericht Berlin, Bibliothek +http://lobid.org/organisations/DE-Bo206#! DE-Bo206 Bo 206 Max-Planck-Institut für Mathematik, Bibliothek +http://lobid.org/organisations/DE-165#! DE-165 165 Vogtlandbibliothek Plauen +http://lobid.org/organisations/DE-82-001#! DE-82-001 82/001 Rechen- und Kommunikationszentrum, Bibliothek +http://lobid.org/organisations/DE-27-87#! DE-27-87 27/87 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Physiotherapie +http://lobid.org/organisations/DE-7-140#! DE-7-140 7/140 Finnisch-Ugrisches Seminar, Bibliothek +http://lobid.org/organisations/DE-1w#! DE-1w 1w Staatsbibliothek zu Berlin - Preußischer Kulturbesitz, Zeitungssammlung +http://lobid.org/organisations/DE-14-03#! DE-14-03 14/03 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Zweigbibliothek Erziehungswissenschaften +http://lobid.org/organisations/DE-14-05#! DE-14-05 14/05 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. ZwB Physik / Psychologie +http://lobid.org/organisations/DE-14-06#! DE-14-06 14/06 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. ZwB Chemie) +http://lobid.org/organisations/DE-14-08#! DE-14-08 14/08 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Informatik) +http://lobid.org/organisations/DE-14-09#! DE-14-09 14/09 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ZwB Elektrotechnik / Elektronik) +http://lobid.org/organisations/DE-14-16#! DE-14-16 14/16 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Maschinenwesen, Teilbibliothek Fördertechnik, Baumaschinen und Logistik) +http://lobid.org/organisations/DE-14-19#! DE-14-19 14/19 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct, (ehem. ZwB Geowissenschaften) +http://lobid.org/organisations/DE-14-26#! DE-14-26 14/26 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. ZwB Sprach- und Literaturwissenschaften) +http://lobid.org/organisations/DE-974#! DE-974 974 Technische Hochschule Mittelhessen, Hochschulbibliothek Gießen +http://lobid.org/organisations/DE-93-208#! DE-93-208 93/208 Universität Stuttgart, Institut für Flugmechanik und Flugregelung, Bibliothek +http://lobid.org/organisations/DE-Loe2#! DE-Loe2 Lö 2 Sächsisches Krankenhaus Großschweidnitz, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Stg256#! DE-Stg256 Stg 256 Wirtschaftsarchiv Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-294-55#! DE-294-55 294/55 Ruhr-Universität Bochum, Fakultät für Philologie, Institut für Medienwissenschaft, Bibliothek +http://lobid.org/organisations/DE-460#! DE-460 460 Hessisches Staatsarchiv Darmstadt, Bibliothek +http://lobid.org/organisations/DE-Ch1-S3#! DE-Ch1-S3 Ch 1/S3 Technische Universität Chemnitz, Campus-Bibliothek II A +http://lobid.org/organisations/DE-528#! DE-528 528 Thüringisches Staatsarchiv Rudolstadt, Bibliothek +http://lobid.org/organisations/DE-405#! DE-405 405 Stadtbücherei Ahlen +http://lobid.org/organisations/DE-27-24#! DE-27-24 27/24 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Geographie +http://lobid.org/organisations/DE-7-301#! DE-7-301 7/301 Christliche Archäologie und Byzatinische Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-7-303#! DE-7-303 7/303 Theologisches Stift, Bibliothek +http://lobid.org/organisations/DE-7-029#! DE-7-029 7/029 Universität Göttingen, Seminar für englische Philologie, Bibliothek +http://lobid.org/organisations/DE-7-222#! DE-7-222 7/222 Institut für Historische Landesforschung, Arbeitsstelle Niedersächsisches Wörterbuch, Bibliothek +http://lobid.org/organisations/DE-7-024#! DE-7-024 7/024 Seminar für romanische Philologie, Bibliothek +http://lobid.org/organisations/DE-7-068#! DE-7-068 7/068 Seminar für Ur- und Frühgeschichte, Bibliothek +http://lobid.org/organisations/DE-7-058#! DE-7-058 7/058 Institut für Anorganische Chemie, Bibliothek +http://lobid.org/organisations/DE-82-766#! DE-82-766 82/766 Neuroradiologie, Bibliothek +http://lobid.org/organisations/DE-Kon6#! DE-Kon6 Kon 6 Archäologisches Landesmuseum, Außenstelle Konstanz, Bibliothek +http://lobid.org/organisations/DE-82-327#! DE-82-327 82/327 Lehrstuhl für Verbrennungskraftmaschinen und Institut für Thermodynamik, Bibliothek +http://lobid.org/organisations/DE-B11e#! DE-B11e B 11e Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Institut für Museumsforschung, Bibliothek +http://lobid.org/organisations/DE-7-015#! DE-7-015 7/015 Zentrum für Hygiene und Humangenetik, Abteilung für Medizinische Mikrobiologie, Bibliothek +http://lobid.org/organisations/DE-7-039#! DE-7-039 7/039 Zentrum Chirurgie, Abteilung Allgemeinchirurgie, Bibliothek +http://lobid.org/organisations/DE-7-715#! DE-7-715 7/715 Zentrum Neurologische Medizin, Abteilung Neurologie, Bibliothek +http://lobid.org/organisations/DE-7-048#! DE-7-048 7/048 Zentrum Psychologische Medizin, Abteilung Psychiatrie und Psychotherapie und Abteilung Kinder- und Jugendpsychiatrie und Psychotherapie (Gemeinsame Bibliothek) +http://lobid.org/organisations/DE-7-044#! DE-7-044 7/044 Zentrum Arbeits-, Sozial-, Umwelt-, Rechtsmedizin und Dermatologie / Abteilung Rechtsmedizin, Bibliothek +http://lobid.org/organisations/DE-7-732#! DE-7-732 7/732 Zentrum Umwelt und Arbeitsmedizin, Abteilung Allgemeine Hygiene und Umweltmedizin, Bibliothek +http://lobid.org/organisations/DE-7-735#! DE-7-735 7/735 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, Hebammenschule, Bibliothek +http://lobid.org/organisations/DE-7-736#! DE-7-736 7/736 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, Kinderkrankenpflegeschule, Bibliothek +http://lobid.org/organisations/DE-7-738#! DE-7-738 7/738 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, Schule für Physiotherapie, Bibliothek +http://lobid.org/organisations/DE-7-741#! DE-7-741 7/741 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, MTA-Schule (Radiologie), Bibliothek +http://lobid.org/organisations/DE-7-055#! DE-7-055 7/055 Kunstgeschichtliches Seminar und Kunstsammlung, Bibliothek +http://lobid.org/organisations/DE-7-405#! DE-7-405 7/405 Albrecht-von-Haller-Institut für Pflanzenwissenschaften, Abteilung Experimentelle Phykologie und Sammlung von Algenkulturen, Bibliothek +http://lobid.org/organisations/DE-7-127#! DE-7-127 7/127 Albrecht-von-Haller-Institut für Pflanzenwissenschaften, Geobotanische Bibliothek +http://lobid.org/organisations/DE-7-406#! DE-7-406 7/406 Albrecht-von-Haller-Institut für Pflanzenwissenschaften, Abteilung Palynologie und Klimadynamik, Bibliothek +http://lobid.org/organisations/DE-204#! DE-204 204 Ibero-Amerikanisches Institut Preußischer Kulturbesitz, Bibliothek +http://lobid.org/organisations/DE-B729#! DE-B729 B 729 Bundesamt für Kartographie und Geodäsie, ehemalige Bibliothek des Deutschen Vereins für Vermessungswesen (DVW) +http://lobid.org/organisations/DE-83-1001#! DE-83-1001 83/1001 TU Berlin, Die Bibliothek Wirtschaft & Management +http://lobid.org/organisations/DE-83-1018#! DE-83-1018 83/1018 TU Berlin, Institut für Energie- und Automatisierungstechnik, Fachgebiet Lichttechnik, Bibliothek +http://lobid.org/organisations/DE-83-1031#! DE-83-1031 83/1031 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Statik und Dynamik der Baukonstruktionen, Bibliothek +http://lobid.org/organisations/DE-83-1034#! DE-83-1034 83/1034 TU Berlin, Institut für Land- und Seeverkehr, Fachgebiet Kraftfahrzeuge, Bibliothek +http://lobid.org/organisations/DE-83-1037#! DE-83-1037 83/1037 TU Berlin, Institut für Technische Informatik und Mikroelektronik, Fachgebiet Theoretische Elektrotechnik, Bibliothek +http://lobid.org/organisations/DE-83-1038#! DE-83-1038 83/1038 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Massivbau, Bibliothek +http://lobid.org/organisations/DE-83-1043#! DE-83-1043 83/1043 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Grundbau und Bodenmechanik, Bibliothek +http://lobid.org/organisations/DE-83-1048#! DE-83-1048 83/1048 TU Berlin, Institut für Mechanik, Fachgebiet Mechatronische Maschinendynamik, Bibliothek +http://lobid.org/organisations/DE-83-1069#! DE-83-1069 83/1069 TU Berlin, Institut für Werkzeugmaschinen und Fabrikbetrieb, Fachgebiet Beschichtungstechnik, Bibliothek +http://lobid.org/organisations/DE-83-1178#! DE-83-1178 83/1178 TU Berlin, Institut für Prozeß- und Anlagentechnik, Fachgebiet Meß- und Regelungstechnik, Bibliothek +http://lobid.org/organisations/DE-83-1192#! DE-83-1192 83/1192 TU Berlin, Institut für Festkörperphysik, Fachgebiet Experimentierphysik, Bibliothek +http://lobid.org/organisations/DE-83-1255#! DE-83-1255 83/1255 TU Berlin, Institut für Architektur, Fachgebiet Architekturdarstellung und Gestaltung, Bibliothek +http://lobid.org/organisations/DE-188-807#! DE-188-807 188/807 Freie Universität Berlin, Fachbibliothek Geschichts- und Kunstwissenschaften +http://lobid.org/organisations/DE-188-808#! DE-188-808 188/808 Freie Universität Berlin, Bibliothek des Fachbereichs Rechtswissenschaft +http://lobid.org/organisations/DE-188-819#! DE-188-819 188/819 Freie Universität Berlin, Fachbereich Philosophie und Geisteswissenschaften, Institut für Theaterwissenschaft, Institut für Musikwissenschaften, Musikwissenschaftliches Seminar, Seminar für Vergleichende Musikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-188-846#! DE-188-846 188/846 Freie Universität Berlin, Fachbereich Veterinärmedizin, Veterinärmedizinische Bibliothek +http://lobid.org/organisations/DE-B11f#! DE-B11f B 11f Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Ägyptisches Museum und Papyrussammlung, Bibliothek +http://lobid.org/organisations/DE-B11#! DE-B11 B 11 Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Kunstbibliothek +http://lobid.org/organisations/DE-109#! DE-109 109 Zentral- und Landesbibliothek Berlin, Haus Amerika-Gedenkbibliothek und Haus Berliner Stadtbibliothek +http://lobid.org/organisations/DE-B713#! DE-B713 B 713 Stadtbibliothek Tempelhof-Schöneberg, Bezirkszentralbibliothek 'Eva-Maria-Buch-Haus' +http://lobid.org/organisations/DE-B714#! DE-B714 B 714 Stadtbibliothek Reinickendorf, Humboldt-Bibliothek +http://lobid.org/organisations/DE-B788#! DE-B788 B 788 Stadtbibliothek Mitte, Bibliothek am Luisenbad +http://lobid.org/organisations/DE-B41#! DE-B41 B 41 Geheimes Staatsarchiv Preußischer Kulturbesitz, Bibliothek +http://lobid.org/organisations/DE-B85#! DE-B85 B 85 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Informationszentrum und Bibliothek Berlin-Dahlem +http://lobid.org/organisations/DE-18-39#! DE-18-39 18/39 Universität Hamburg, Institut für Anglistik und Amerikanistik, Bibliothek +http://lobid.org/organisations/DE-18-61#! DE-18-61 18/61 Universität Hamburg, Fachbereichsbibliothek SLM, Teilbibliothek Spanisch/Portugiesisch +http://lobid.org/organisations/DE-18-64#! DE-18-64 18/64 Universitätsklinikum Hamburg-Eppendorf, Ärztliche Zentralbibliothek +http://lobid.org/organisations/DE-705#! DE-705 705 Helmut-Schmidt-Universität, Universität der Bundeswehr Hamburg, Universitätsbibliothek +http://lobid.org/organisations/DE-H8#! DE-H8 H 8 Geographische Gesellschaft in Hamburg, Bibliothek +http://lobid.org/organisations/DE-H13#! DE-H13 H 13 Hamburger Kunsthalle, Bibliothek +http://lobid.org/organisations/DE-H16#! DE-H16 H 16 Museum am Rothenbaum, Bibliothek +http://lobid.org/organisations/DE-Ki109#! DE-Ki109 Ki 109 Helmholtz-Zentrum für Ozeanforschung Kiel (GEOMAR), Bibliothek Westufer +http://lobid.org/organisations/DE-Ki81#! DE-Ki81 Ki 81 Stadtbücherei Kiel +http://lobid.org/organisations/DE-Pn1#! DE-Pn1 Pn 1 Max-Planck-Institut für Evolutionsbiologie, Bibliothek +http://lobid.org/organisations/DE-Ki29#! DE-Ki29 Ki 29 Max Rubner-Institut, Bundesforschungsinstitut für Ernährung und Lebensmittel, Bibliothek, Information und Dokumentation, Bibliothek Kiel +http://lobid.org/organisations/DE-841#! DE-841 841 Zentrale Hochschulbibliothek Lübeck +http://lobid.org/organisations/DE-115#! DE-115 115 Stadtbibliothek Hannover +http://lobid.org/organisations/DE-Ce2#! DE-Ce2 Ce 2 Bibliothek des Oberlandesgerichtes in Celle und Bibliothek der Grupen'schen Stiftung +http://lobid.org/organisations/DE-Hil2#! DE-Hil2 Hil 2 Universitätsbibliothek Hildesheim +http://lobid.org/organisations/DE-84#! DE-84 84 Universitätsbibliothek Braunschweig +http://lobid.org/organisations/DE-104#! DE-104 104 Universitätsbibliothek Clausthal +http://lobid.org/organisations/DE-Bs75#! DE-Bs75 Bs 75 Herzog Anton Ulrich-Museum, Bibliothek +http://lobid.org/organisations/DE-Bs78#! DE-Bs78 Bs 78 Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut +http://lobid.org/organisations/DE-Bs82#! DE-Bs82 Bs 82 Niedersächsische Landesmuseen Braunschweig, Braunschweigisches Landesmuseum, Bibliothek +http://lobid.org/organisations/DE-Bs86#! DE-Bs86 Bs 86 Industrie- und Handelskammer Braunschweig, Bibliothek +http://lobid.org/organisations/DE-7-148#! DE-7-148 7/148 Bibliothek der Wirtschafts- und Sozialwissenschaftlichen Seminare und Institute +http://lobid.org/organisations/DE-Goe116#! DE-Goe116 Gö 116 Publikations- und Informationsservice, Max-Planck-Institut für Multidisziplinäre Naturwissenschaften +http://lobid.org/organisations/DE-4-151#! DE-4-151 4/151 Bibliothek Biologie +http://lobid.org/organisations/DE-4-381#! DE-4-381 4/381 Universität Marburg, Bibliothek Evangelische Theologie +http://lobid.org/organisations/DE-4-403#! DE-4-403 4/403 Universität Marburg, Bibliothek Geschichtswissenschaften, Abt. Neuere Geschichte +http://lobid.org/organisations/DE-4-442#! DE-4-442 4/442 Universität Marburg, Bibliothek Romanistik +http://lobid.org/organisations/DE-Mb50#! DE-Mb50 Mb 50 110 Herder-Institut für historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft, Forschungsbibliothek +http://lobid.org/organisations/DE-362#! DE-362 362 Stadtbüchereien Landeshauptstadt Düsseldorf +http://lobid.org/organisations/DE-Due2#! DE-Due2 Dü 2 museum kunst palast, Bibliothek +http://lobid.org/organisations/DE-Db5#! DE-Db5 Db 5 thyssenkrupp Steel Europe AG, Technologie & Innovation, TIS-IN Technisches Info-Center +http://lobid.org/organisations/DE-242#! DE-242 242 Lebendige Bibliothek +http://lobid.org/organisations/DE-6-017#! DE-6-017 6/017 Universität Münster, Fachbereichsbibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-382#! DE-382 382 Stadtbücherei Gronau +http://lobid.org/organisations/DE-Mue79#! DE-Mue79 Mü 79 Landesarchiv Nordrhein-Westfalen, Abteilung Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue81#! DE-Mue81 Mü 81 LWL-Museum für Naturkunde, Westfälisches Landesmuseum mit Planetarium, Bibliothek +http://lobid.org/organisations/DE-Mue82#! DE-Mue82 Mü 82 LWL-Institut für westfälische Regionalgeschichte, Bibliothek +http://lobid.org/organisations/DE-700#! DE-700 700 Universitätsbibliothek Osnabrück +http://lobid.org/organisations/DE-294-9#! DE-294-9 294/9 Ruhr-Universität Bochum, Fakultät für Elektrotechnik und Informationstechnik, Bibliothek +http://lobid.org/organisations/DE-294-19#! DE-294-19 294/19 Ruhr-Universität Bochum, Archäologisches Institut, Bibliothek +http://lobid.org/organisations/DE-294-33#! DE-294-33 294/33 Ruhr-Universität Bochum, Fakultät für Philologie, Romanisches Seminar, Bibliothek +http://lobid.org/organisations/DE-294-36#! DE-294-36 294/36 Ruhr-Universität Bochum, Fakultät für Philologie, Seminar für Slavistik, Bibliothek +http://lobid.org/organisations/DE-294-38#! DE-294-38 294/38 Ruhr-Universität Bochum, Zentrales katholisch-theologisches Seminar, Bibliothek +http://lobid.org/organisations/DE-294-39#! DE-294-39 294/39 Ruhr-Universität Bochum, Zentrales Rechtswissenschaftliches Seminar, Bibliothek +http://lobid.org/organisations/DE-294-45#! DE-294-45 294/45 Ruhr-Universität Bochum, Institut für Werkstoffe, Bibliothek +http://lobid.org/organisations/DE-132#! DE-132 132 Stadtbücherei Bochum +http://lobid.org/organisations/DE-222#! DE-222 222 Stadtbibliothek Castrop-Rauxel +http://lobid.org/organisations/DE2789#! DE2789 Schulbibliothek Hölty-Gymnasium +http://lobid.org/organisations/DE-Bkk1#! DE-Bkk1 Bkk 1 St. Nikolaus-Hospital/Cusanusstift, Bibliothek +http://lobid.org/organisations/DE-1909#! DE-1909 1909 Gemeindebibliothek Droyßig +http://lobid.org/organisations/DE-1282#! DE-1282 1282 Domstiftsarchiv +http://lobid.org/organisations/DE-1915#! DE-1915 1915 Gemeindebücherei Barleben +http://lobid.org/organisations/DE-Ds125#! DE-Ds125 Ds 125 Jazzinstitut Darmstadt, Bibliothek +http://lobid.org/organisations/DE-30-6#! DE-30-6 30/6 Universitätsbibliothek J. C. Senckenberg, Bibliothek Sozialwissenschaften und Psychologie (BSP) +http://lobid.org/organisations/DE-MUS-225110#! DE-MUS-225110 Gipsformerei, Staatliche Museen zu Berlin +http://lobid.org/organisations/DE-MUS-632117#! DE-MUS-632117 Kunsthalle Göppingen +http://lobid.org/organisations/DE-B1600#! DE-B1600 B 1600 Rock-ZAS +http://lobid.org/organisations/DE-B1535#! DE-B1535 B 1535 FFBIZ - Das Feministische Archiv +http://lobid.org/organisations/DE-F131#! DE-F131 F 131 Informationszentrum der Deutschen Gesellschaft für Auswärtige Politik e.V. +http://lobid.org/organisations/DE-L334#! DE-L334 L 334 Feministische Bibliothek MONAliesA +http://lobid.org/organisations/DE-Re14#! DE-Re14 Re 14 Bibliothek der Kultur- und Heimatpflege des Bezirks Oberpfalz +http://lobid.org/organisations/DE-1930#! DE-1930 1930 Ganztagsschulgebäude der Alzeyer Gymnasien, Schulbiliothek +http://lobid.org/organisations/DE-1931#! DE-1931 1931 Stadtbücherei Julie Hirschfeld +http://lobid.org/organisations/DE-1934#! DE-1934 1934 Stadtbücherei Kornwestheim +http://lobid.org/organisations/DE-1053-2#! DE-1053-2 1053/2 Bibliothek der Hochschule Mainz, Standort Campus (Geoinformatik und Vermessung) +http://lobid.org/organisations/DE-66-4#! DE-66-4 66/4 Hochschul- und Landesbibliothek Fulda, Standort Campus, Magazin +http://lobid.org/organisations/DE-1950#! DE-1950 1950 Stadtarchiv Euskirchen +http://lobid.org/organisations/DE-1964#! DE-1964 1964 Mediathek Schramberg +http://lobid.org/organisations/DE-Kob3#! DE-Kob3 Kob 3 Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr, Fachinformationsstelle +http://lobid.org/organisations/DE-1966#! DE-1966 Stadtarchiv Mainz +http://lobid.org/organisations/DE-1968#! DE-1968 1968 Simplicissimus-Haus Renchen, Bibliothek +http://lobid.org/organisations/DE-1970#! DE-1970 1970 Institut für Personengeschichte, Bibliothek +http://lobid.org/organisations/DE-1975#! DE-1975 1975 Museum für Moderne Kunst, Bibliothek +http://lobid.org/organisations/DE-1981#! DE-1981 Universitätsarchiv Bayreuth +http://lobid.org/organisations/DE-1984#! DE-1984 1984 Gemeindebücherei Mertingen +http://lobid.org/organisations/DE-1987#! DE-1987 1987 Stadtbibliothek Stadtilm +http://lobid.org/organisations/DE-2000#! DE-2000 2000 Stadtbücherei Holzgerlingen +http://lobid.org/organisations/DE-2004#! DE-2004 2004 Mediathek Stadt Renningen +http://lobid.org/organisations/DE-2012#! DE-2012 2012 Stadtbibliothek Schwäbisch Gmünd +http://lobid.org/organisations/DE-2014#! DE-2014 2014 Stadtbibliothek Bad Saulgau +http://lobid.org/organisations/DE-8-4#! DE-8-4 8/4 Universitätsbibliothek Kiel, Fachbibliothek am Walther-Schücking-Institut für Internationales Recht +http://lobid.org/organisations/DE-8-7#! DE-8-7 8/7 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Wirtschafts- und Steuerrecht +http://lobid.org/organisations/DE-8-12#! DE-8-12 8/12 Universitätsbibliothek Kiel, Fachbibliothek Anatomie/Biochemie +http://lobid.org/organisations/DE-8-39#! DE-8-39 8/39 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Psychologie +http://lobid.org/organisations/DE-8-46#! DE-8-46 8/46 Universitätsbibliothek Kiel, Fachbibliothek am Musikwissenschaftlichen Institut +http://lobid.org/organisations/DE-8-54#! DE-8-54 8/54 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Skandinavistik, Frisistik und Allg. Sprachwissenschaft, Bereich Skandinavistik +http://lobid.org/organisations/DE-8-55#! DE-8-55 8/55 Universitätsbibliothek Kiel, Fachbibliothek am Englischen Seminar +http://lobid.org/organisations/DE-8-58#! DE-8-58 8/58 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Sport und Sportwissenschaften +http://lobid.org/organisations/DE-8-62#! DE-8-62 8/62 Universitätsbibliothek Kiel, Fachbibliothek Physikzentrum +http://lobid.org/organisations/DE-8-64#! DE-8-64 8/64 Universitätsbibliothek Kiel, Fachbibliothek Chemie (Bereich Anorg. und Org. Chemie) +http://lobid.org/organisations/DE-8-66#! DE-8-66 8/66 Universitätsbibliothek Kiel, Fachbibliothek am Pharmazeutischen Institut, Abteilung Pharmazeutische Chemie und PharmazeutischeTechnologie +http://lobid.org/organisations/DE-2026#! DE-2026 2026 Stadtbücherei Wernau +http://lobid.org/organisations/DE-8-79#! DE-8-79 8/79 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Humanernährung und Lebensmittelkunde +http://lobid.org/organisations/DE-8-81#! DE-8-81 8/81 Universitätsbibliothek Kiel, Fachbibliothek Ökologie und Wasserwirtschaft +http://lobid.org/organisations/CH-001807-7#! CH-001807-7 Hochschularchiv der ETH Zürich +http://lobid.org/organisations/DE-2032#! DE-2032 2032 Mediothek Schönaich +http://lobid.org/organisations/DE-2037#! DE-2037 2037 Gemeindebücherei Jettingen +http://lobid.org/organisations/DE-2044#! DE-2044 Archiv im Haus der Geschichte des Ruhrgebiets +http://lobid.org/organisations/DE-2051#! DE-2051 Staatsarchiv München +http://lobid.org/organisations/US-MH-H#! US-MH-H Harvard University, Houghton Library +http://lobid.org/organisations/DE-2066#! DE-2066 2066 Stadtbibliothek Oberkochen +http://lobid.org/organisations/DE-2077#! DE-2077 2077 Arbeitskammer des Saarlandes - Dokumentationszentrum +http://lobid.org/organisations/DE-17-902#! DE-17-902 17/902 TU Darmstadt, Handapparate Lichtwiese +http://lobid.org/organisations/DE-2080#! DE-2080 2080 Herder-Institut für historische Ostmitteleuropaforschung, Bibliothek / Bibliographieportal +http://lobid.org/organisations/DE-N38#! DE-N38 N 38 Institut für Arbeitsmarkt- und Berufsforschung, Fachbibliothek für Arbeitsmarktforschung und Arbeitsverwaltung +http://lobid.org/organisations/DE-17-903#! DE-17-903 17/903 TU Darmstadt, Handapparate Schloss +http://lobid.org/organisations/DE-2084#! DE-2084 2084 Stadtbibliothek Lehrte +http://lobid.org/organisations/DE-2085#! DE-2085 2085 Stiftung Mendelssohn Akademie Halberstadt +http://lobid.org/organisations/DE-2089#! DE-2089 Staatsarchiv Hamburg +http://lobid.org/organisations/DE-2090#! DE-2090 2090 Katholische Öffentliche Bücherei St. Jakobus +http://lobid.org/organisations/DE-2097#! DE-2097 Archiv der Region Hannover +http://lobid.org/organisations/DE-2101#! DE-2101 2101 Bibliothek der Museen Stade +http://lobid.org/organisations/DE-2105#! DE-2105 2105 Stadtbücherei Donzdorf +http://lobid.org/organisations/DE-2107#! DE-2107 Archiv der Evangelischen Kirche im Rheinland +http://lobid.org/organisations/DE-2108#! DE-2108 2108 Stadtbücherei Besigheim +http://lobid.org/organisations/DE-2110#! DE-2110 2110 Bundesarchiv, Stasi-Unterlagen-Archiv, Bibliothek +http://lobid.org/organisations/DE-2112#! DE-2112 2112 Stadtbibliothek Vohburg an der Donau +http://lobid.org/organisations/DE-2113#! DE-2113 Historisches Archiv des Erzbistums Köln +http://lobid.org/organisations/DE-2124#! DE-2124 2124 Öffentliche Bücherei Creglingen +http://lobid.org/organisations/DE-MUS-059225#! DE-MUS-059225 Poppelsdorfer Heimatsammlung Stöcker +http://lobid.org/organisations/DE-MUS-059527#! DE-MUS-059527 Akademie-Galerie - Neue Sammlung +http://lobid.org/organisations/DE-MUS-060220#! DE-MUS-060220 Duftmuseum im Farina-Haus +http://lobid.org/organisations/DE-MUS-049723#! DE-MUS-049723 Museum Kloster Saarn +http://lobid.org/organisations/DE-MUS-061025#! DE-MUS-061025 Filmmuseum Romboy +http://lobid.org/organisations/DE-2128#! DE-2128 2128 Bücherei Köngen +http://lobid.org/organisations/DE-38-440#! DE-38-440 38/440 Zentralarchiv für Deutsche und Internationale Kunstmarktforschung ZADIK +http://lobid.org/organisations/DE-2132#! DE-2132 Stadtarchiv Garbsen +http://lobid.org/organisations/DE-17-904#! DE-17-904 17/904 TU Darmstadt, Universitäts- und Landesbibliothek, Online-Ressource +http://lobid.org/organisations/DE-2133#! DE-2133 Archiv für Christlich-Demokratische Politik der Konrad-Adenauer-Stiftung e.V. +http://lobid.org/organisations/DE-2135#! DE-2135 2135 Stadtbibliothek Mosbach +http://lobid.org/organisations/DE-2139#! DE-2139 Stadtarchiv Oldenburg +http://lobid.org/organisations/DE-621#! DE-621 Sortierzentrale NRW +http://lobid.org/organisations/DE-2143#! DE-2143 LWL-Archivamt für Westfalen, Archiv +http://lobid.org/organisations/DE-2147#! DE-2147 Kreisarchiv Mettmann +http://lobid.org/organisations/DE-2148#! DE-2148 2148 Stadtbücherei Porta Westfalica +http://lobid.org/organisations/DE-2151#! DE-2151 2151 Bundesvereinigung der Deutschen Arbeitgeberverbände, Bibliothek +http://lobid.org/organisations/DE-622#! DE-622 Büchertransportdienst Zentrale Göttingen +http://lobid.org/organisations/DE-2155#! DE-2155 2155 Staatliche Kunstsammlungen Dresden, Gerhard Richter Archiv +http://lobid.org/organisations/DE-2158#! DE-2158 Stadt- und Stiftsarchiv Aschaffenburg +http://lobid.org/organisations/DE-2159#! DE-2159 Bayerische Verwaltung der staatlichen Schlösser, Gärten und Seen +http://lobid.org/organisations/DE-2162#! DE-2162 Historisches Archiv Krupp +http://lobid.org/organisations/DE-2167#! DE-2167 Landesamt für Vermessung und Geoinformation, Archiv +http://lobid.org/organisations/DE-2169#! DE-2169 Generaldirektion der Staatlichen Archive Bayerns +http://lobid.org/organisations/DE-2177#! DE-2177 2177 Max-Planck-Institut für empirische Ästhetik, Bibliothek +http://lobid.org/organisations/DE-624#! DE-624 Württembergische Landesbibliothek, Bücherauto Baden-Württemberg +http://lobid.org/organisations/DE-2180#! DE-2180 Bistumsarchiv Münster +http://lobid.org/organisations/DE-2183#! DE-2183 Mainzer Verlagsarchiv des Instituts für Buchwissenschaft an der Johannes Gutenberg-Universität Mainz +http://lobid.org/organisations/DE-2184#! DE-2184 2184 Forschungszentrum Musik und Gender, Bibliothek +http://lobid.org/organisations/DE-2185#! DE-2185 Stadtarchiv Werl +http://lobid.org/organisations/DE-2190#! DE-2190 Landesarchiv Nordrhein-Westfalen, Abteilung Westfalen +http://lobid.org/organisations/DE-2196#! DE-2196 2196 Hochschule für den öffentlichen Dienst in Bayern, Fachbereich Rechtspflege, Bibliothek +http://lobid.org/organisations/DE-MUS-061629#! DE-MUS-061629 Staatliche Kunstsammlungen Dresden / Kunstfonds des Freistaates Sachsen +http://lobid.org/organisations/DE-MUS-061723#! DE-MUS-061723 Staatliche Kunstsammlungen Dresden / Puppentheatersammlung +http://lobid.org/organisations/DE-2204#! DE-2204 Landesarchiv Speyer +http://lobid.org/organisations/DE-2205#! DE-2205 Archiv der Akademie der Künste +http://lobid.org/organisations/DE-2206#! DE-2206 2206 Stadtbibliothek Emmendingen +http://lobid.org/organisations/DE-2210#! DE-2210 2210 Erzbistumsarchiv Paderborn +http://lobid.org/organisations/DE-82-115#! DE-82-115 82/115 Lehr- und Forschungsgebiet Didaktik der Biologie und Chemie, Bibliothek +http://lobid.org/organisations/DE-2214#! DE-2214 Universitätsarchiv Stuttgart +http://lobid.org/organisations/DE-2216#! DE-2216 2216 Verbraucherzentrale NRW, Bibliothek +http://lobid.org/organisations/DE-90-221#! DE-90-221 90/221 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen, Kunst und Theorie, Fachgebiet Architekturtheorie +http://lobid.org/organisations/DE-2223#! DE-2223 2223 Fliedner Fachhochschule, Bibliothek +http://lobid.org/organisations/DE-2230#! DE-2230 Stadtarchiv Nürnberg +http://lobid.org/organisations/DE-26-343#! DE-26-343 26/343 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / BWL 10, Technolgie-, Innovations- und Gründungsmanagement +http://lobid.org/organisations/DE-Bm3-3#! DE-Bm3-3 Bm 3/3 Bibliothek des Ruhrgebiets, Bestandsabteilung Bergbau-Bücherei und Ruhrgebiet +http://lobid.org/organisations/DE-2245#! DE-2245 Stadtarchiv Markkleeberg +http://lobid.org/organisations/DE-2256#! DE-2256 2256 Sächsisches Landesgymnasium Sankt Afra, Schulbibliothek +http://lobid.org/organisations/DE-2257#! DE-2257 2257 Archiv Schreibende ArbeiterInnen +http://lobid.org/organisations/DE-2259#! DE-2259 ImageWare Components GmbH +http://lobid.org/organisations/DE-2260#! DE-2260 2260 Universitätsarchiv Bielefeld +http://lobid.org/organisations/DE-2264#! DE-2264 2264 Katholische Öffentliche Bücherei St. Gertrud Leimersheim +http://lobid.org/organisations/DE-MUS-062622#! DE-MUS-062622 Georg-August-Universität Göttingen / Münzkabinett der Universität Göttingen +http://lobid.org/organisations/DE-2268#! DE-2268 2268 Bistumsarchiv Trier +http://lobid.org/organisations/CH-000001-5#! CH-000001-5 CH-Be L Schweizerische Nationalbibliothek +http://lobid.org/organisations/CH-000082-3#! CH-000082-3 CH-Sh S Stadtbibliothek Schaffhausen und Freihandbibliothek Agnesenschütte +http://lobid.org/organisations/DE-Bux1#! DE-Bux1 Bux 1 Elbe Kliniken, Zentralbibliothek +http://lobid.org/organisations/DE-2275#! DE-2275 2275 Kreis- und Fahrbibliothek Hainichen +http://lobid.org/organisations/DE-2287#! DE-2287 2287 Christlich-Islamische Begegnungs- und Dokumentationsstelle, Bibliothek +http://lobid.org/organisations/DE-2288#! DE-2288 Deutscher Bundestag, Pressedokumentation +http://lobid.org/organisations/DE-2290#! DE-2290 2290 Stadtbibliothek Blankenhain +http://lobid.org/organisations/DE-2293#! DE-2293 2293 Institut Français Mainz, Mediathek +http://lobid.org/organisations/DE-MUS-068328#! DE-MUS-068328 Galileo-Wissenswelt, Bereich Naturkunde und Technik +http://lobid.org/organisations/DE-MUS-068422#! DE-MUS-068422 Stiftung Nordfriesische Halligen +http://lobid.org/organisations/DE-Ds114-900#! DE-Ds114-900 Ds 114/900 Bibliothek der Hochschule Darmstadt, Zentralbibliothek, Elektronische Ressourcen +http://lobid.org/organisations/DE-2306#! DE-2306 Dokumentations- und Forschungsstelle der Sozialversicherungsträger, Archiv +http://lobid.org/organisations/DE-2311#! DE-2311 Stadtarchiv Neustadt an der Orla +http://lobid.org/organisations/DE-2313#! DE-2313 2313 Stiftung Centre Culturel Franco-Allemand Karlsruhe, Mediathek +http://lobid.org/organisations/DE-B106#! DE-B106 B 106 Robert Koch-Institut, Bibliothek Berlin +http://lobid.org/organisations/DE-2320#! DE-2320 Kreisarchiv des Landkreises Sächsische Schweiz-Osterzgebirge +http://lobid.org/organisations/DE-2322#! DE-2322 Deutsches Archäologisches Institut, Archiv der Zentrale +http://lobid.org/organisations/DE-2324#! DE-2324 Europäisches Laboratorium für Molekularbiologie, Archiv +http://lobid.org/organisations/DE-MUS-068922#! DE-MUS-068922 Georg-August-Universität: Physicalisches Cabinet +http://lobid.org/organisations/DE-MUS-069529#! DE-MUS-069529 Georg-August-Universität: Sammlung Heinz Kirchhoff: Symbole des Weiblichen +http://lobid.org/organisations/DE-MUS-069925#! DE-MUS-069925 Georg-August-Universität Göttingen / Experimenteller Botanischer Garten +http://lobid.org/organisations/DE-MUS-070222#! DE-MUS-070222 Sammlung historischer Gegenstände am Institut für Astrophysik +http://lobid.org/organisations/DE-2335#! DE-2335 Kaiser und Höfe +http://lobid.org/organisations/DE-82-787#! DE-82-787 82/787 Joint Research Center for Computational Biomedicine, Bibliothek +http://lobid.org/organisations/DE-2345#! DE-2345 2345 Bibliothek im Faust-Archiv Knittlingen +http://lobid.org/organisations/DE-2348#! DE-2348 Bibliotheksdienst Eugen Hambückers e.K., Inh. Britta Penneckendorf +http://lobid.org/organisations/DE-2352#! DE-2352 2352 Stadtbiliothek Hartha ""Martin-Andersen-Nexö"" +http://lobid.org/organisations/DE-2354#! DE-2354 2354 Chorverband in der Evangelischen Kirche im Rheinland e. V., Musikbibliothek +http://lobid.org/organisations/DE-2360#! DE-2360 2360 Stadtbibliothek Lichtenstein +http://lobid.org/organisations/DE-2361#! DE-2361 2361 Yunus Emre Enstitüsü - Türkisches Kulturzentrum Berlin, Bibliothek +http://lobid.org/organisations/DE-2363#! DE-2363 2363 Deutsches Biomasseforschungszentrum gemeinnützige GmbH, Bibliothek +http://lobid.org/organisations/DE-2367#! DE-2367 Brandenburgisches Landeshauptarchiv +http://lobid.org/organisations/DE-2371#! DE-2371 2371 Gemeindebücherei Haar +http://lobid.org/organisations/DE-2377#! DE-2377 2377 Abraham Geiger Kolleg, Bibliothek +http://lobid.org/organisations/DE-2379#! DE-2379 Arolsen Archives +http://lobid.org/organisations/DE-2387#! DE-2387 2387 Landesarchiv Thüringen - Staatsarchiv Gotha +http://lobid.org/organisations/DE-77-126#! DE-77-126 77/126 Universität Mainz, Bereichsbibliothek Georg Forster-Gebäude / USA-Bibliothek +http://lobid.org/organisations/DE-2392#! DE-2392 Archiv der Hansestadt Lübeck +http://lobid.org/organisations/DE-2394#! DE-2394 2394 Mediathek Kirchzarten +http://lobid.org/organisations/DE-2399#! DE-2399 2399 TransInterQueer e.V., trans*inter*Archiv +http://lobid.org/organisations/CH-001880-7#! CH-001880-7 Verbund HAN +http://lobid.org/organisations/DE-2401#! DE-2401 2401 Stiftung Topographie des Terrors, Dokumentationszentrum NS-Zwangsarbeit, Bibliothek +http://lobid.org/organisations/DE-B185#! DE-B185 B 185 Landesgeschichtliche Vereinigung für die Mark Brandenburg e.V., Bibliothek +http://lobid.org/organisations/DE-2415#! DE-2415 Universität Heidelberg, Heidelberg Center for Cultural Heritage (HCCH), Münzsammlung +http://lobid.org/organisations/DE-2421#! DE-2421 2421 Bonn International Centre for Conflict Studies, Bibliothek +http://lobid.org/organisations/DE-2422#! DE-2422 2422 Emil-Frank-Institut, Bibliothek +http://lobid.org/organisations/DE-2424#! DE-2424 Books on Demand GmbH +http://lobid.org/organisations/DE-2432#! DE-2432 Archiv des Instituts für Grenzgebiete der Psychologie und Psychohygiene e.V. +http://lobid.org/organisations/DE-F36#! DE-F36 F 36 Römisch-Germanische Kommission des Deutschen Archäologischen Instituts, Bibliothek +http://lobid.org/organisations/DE-B486#! DE-B486 B 486 Archiv der Akademie der Künste, Bibliothek +http://lobid.org/organisations/DE-2438#! DE-2438 Stadtarchiv Bad Doberan +http://lobid.org/organisations/DE-2439#! DE-2439 Kreisarchiv des Rheinisch-Bergischen Kreises +http://lobid.org/organisations/DE-2444#! DE-2444 Landesarchiv Thüringen - Staatsarchiv Greiz +http://lobid.org/organisations/DE-2445#! DE-2445 Stadtarchiv Schwerin +http://lobid.org/organisations/DE-2450#! DE-2450 2450 Eichendorff-Gymnasium, Lernmittelsammlung +http://lobid.org/organisations/DE-2451#! DE-2451 Gemeindearchiv Schermbeck +http://lobid.org/organisations/DE-2452#! DE-2452 Stadtarchiv Hürth +http://lobid.org/organisations/DE-MUS-106425#! DE-MUS-106425 Giesecke+Devrient Stiftung Geldscheinsammlung +http://lobid.org/organisations/DE-MUS-106029#! DE-MUS-106029 Georg-August-Universität Göttingen / Zentrale Kustodie +http://lobid.org/organisations/CH-000045-X#! CH-000045-X Zentralbibliothek Solothurn +http://lobid.org/organisations/DE-Kn3#! DE-Kn3 Kn 3 Kunst- und Museumsbibliothek der Stadt Köln +http://lobid.org/organisations/DE-MUS-108723#! DE-MUS-108723 Geburtshaus des Papstes Benedikt XVI. +http://lobid.org/organisations/DE-MUS-108629#! DE-MUS-108629 Chiemgau-Impakt - ein bayerisches Meteoritenkraterfeld +http://lobid.org/organisations/DE-2473#! DE-2473 2473 Stadtbibliothek Velten +http://lobid.org/organisations/DE-2479#! DE-2479 Stadtarchiv Castrop-Rauxel +http://lobid.org/organisations/DE-2480#! DE-2480 2480 Deutsches Kunstarchiv im Germanischen Nationalmuseum +http://lobid.org/organisations/DE-2483#! DE-2483 Kunstarchiv Lüneburg +http://lobid.org/organisations/DE-2489#! DE-2489 Handschriftencensus (HSC) - Kompetenzzentrum Deutschsprachige Handschriften des Mittelalters +http://lobid.org/organisations/DE-2493#! DE-2493 Gorleben Archiv e.V. +http://lobid.org/organisations/DE-2496#! DE-2496 2496 Archiv Brockhagen +http://lobid.org/organisations/DE-2497#! DE-2497 Forschungsstelle Osteuropa an der Universität Bremen - Archiv +http://lobid.org/organisations/DE-2500#! DE-2500 2500 Thüringer Landtag, Bibliothek +http://lobid.org/organisations/DE-2504#! DE-2504 2504 IB-Hochschule Berlin, Studienzentrum Stuttgart, Bibliothek +http://lobid.org/organisations/DE-2506#! DE-2506 2506 Behördenbibliothek der Deutschen Rentenversicherung Braunschweig-Hannover +http://lobid.org/organisations/DE-2507#! DE-2507 2507 Staatliches Berufsschulzentrum Kyffhäuserkreis, Bibliothek +http://lobid.org/organisations/DE-2510#! DE-2510 2510 Medienzentrum der EKM / Bibliothek Neudietendorf +http://lobid.org/organisations/DE-2513#! DE-2513 2513 Otto-Hahn-Gymnasium, Schülerbibliothek/Lernmittelverwaltung +http://lobid.org/organisations/DE-MUS-112925#! DE-MUS-112925 Eitner Haus +http://lobid.org/organisations/DE-2519#! DE-2519 2519 Schickhardt-Gymnasium Herrenberg, Schulbibliothek +http://lobid.org/organisations/DE-82-789#! DE-82-789 82/789 Lehrstuhl für Altersmedizin, Bibliothek +http://lobid.org/organisations/DE-2522#! DE-2522 2522 Wissenschaftliche Bibliothek des LVR-Klinikum Düsseldorf +http://lobid.org/organisations/DE-2523#! DE-2523 2523 WILLI-BURTH-SCHULE - Gewerbliche Schule Bad Saulgau, Bibliothek +http://lobid.org/organisations/DE-2525#! DE-2525 2525 Gemeindebibliothek Hatten +http://lobid.org/organisations/DE-2527#! DE-2527 2527 IB-Hochschule Berlin, Studienzentrum München, Bibliothek +http://lobid.org/organisations/DE-2529#! DE-2529 2529 IB-Hochschule Berlin, Studienzentrum Köln, Bibliothek +http://lobid.org/organisations/DE-2530#! DE-2530 2530 Stadtbücherei Wyk +http://lobid.org/organisations/DE-628#! DE-628 628 Kompetenzzentrum für Lizenzierung +http://lobid.org/organisations/DE-2535#! DE-2535 Handschriftenarchiv Dresdner Kreuzchor +http://lobid.org/organisations/DE-2542#! DE-2542 Herder-Institut für historische Ostmitteleuropaforschung, Abteilung Wissenschaftsforum +http://lobid.org/organisations/DE-2547#! DE-2547 2547 Internationales Archiv für Heilpädagogik +http://lobid.org/organisations/DE-2550#! DE-2550 2550 Stadtbibliothek Burgstädt +http://lobid.org/organisations/DE-2555#! DE-2555 Hessisches Hauptstaatsarchiv +http://lobid.org/organisations/DE-2557#! DE-2557 2557 Diözesanarchiv Berlin +http://lobid.org/organisations/DE-2561#! DE-2561 Landeskirchliches Archiv Bremen +http://lobid.org/organisations/DE-2568#! DE-2568 2568 Balingen Stadtarchiv +http://lobid.org/organisations/DE-2570#! DE-2570 2570 Bücherei Furth +http://lobid.org/organisations/DE-2571#! DE-2571 2571 Kombinierte Öffentliche- und Schulbibliothek Wörrstadt +http://lobid.org/organisations/DE-2574#! DE-2574 2574 Medizinische Hochschule Brandenburg Theodor Fontane, Bibliothek +http://lobid.org/organisations/DE-2576#! DE-2576 2576 Frankfurt School of Finance & Management gGmbH, Bibliothek +http://lobid.org/organisations/DE-MUS-046922#! DE-MUS-046922 Friedrich-Schiller-Universität / Anatomische Sammlung - Museum anatomicum Jenense +http://lobid.org/organisations/DE-MUS-046120#! DE-MUS-046120 Friedrich-Schiller-Universität / Diathek zur Botanik +http://lobid.org/organisations/DE-MUS-872815#! DE-MUS-872815 Friedrich-Schiller-Universität / Hilprecht-Sammlung Vorderasiatischer Altertümer +http://lobid.org/organisations/DE-MUS-046724#! DE-MUS-046724 Friedrich-Schiller-Universität / Historische Sammlung topographischer Karten +http://lobid.org/organisations/DE-MUS-036222#! DE-MUS-036222 Friedrich-Schiller-Universität / Jenaer Papyrus-Sammlung +http://lobid.org/organisations/DE-MUS-046620#! DE-MUS-046620 Friedrich-Schiller-Universität / Sammlung alter wissenschaftlicher und technischer Geräte zur Physik +http://lobid.org/organisations/DE-MUS-047227#! DE-MUS-047227 Friedrich-Schiller-Universität / Sammlung geburtshilflicher Instrumente +http://lobid.org/organisations/DE-2582#! DE-2582 2582 Stadtbibliothek Steinheim +http://lobid.org/organisations/DE-MUS-124423#! DE-MUS-124423 Münzsammlung der Professur für Alte Geschichte an der Universität Passau +http://lobid.org/organisations/DE-2587#! DE-2587 2587 Gemeindebücherei Adlkofen +http://lobid.org/organisations/DE-2590#! DE-2590 Universitätsarchiv Göttingen +http://lobid.org/organisations/DE-2596#! DE-2596 2596 Gemeindebücherei Mintraching +http://lobid.org/organisations/DE-2599#! DE-2599 Stadtarchiv Northeim +http://lobid.org/organisations/DE-2601#! DE-2601 2601 Bibliothek Möglingen +http://lobid.org/organisations/DE-1834f#! DE-1834f 1834f Macromedia Library Freiburg +http://lobid.org/organisations/DE-2609#! DE-2609 2609 Ukrainische Freie Universität, Bibliothek +http://lobid.org/organisations/DE-2610#! DE-2610 2610 Museum der bildenden Künste, Kunstwissenschaftliche Bibliothek +http://lobid.org/organisations/DE-2614#! DE-2614 2614 Stadtbibliothek Hünfeld +http://lobid.org/organisations/DE-2619#! DE-2619 2619 KrimDok - kriminologische Bibliographie +http://lobid.org/organisations/DE-2622#! DE-2622 2622 Stadtbücherei Wemding +http://lobid.org/organisations/DE-2624#! DE-2624 LVR-Dezernat Kultur und Landschaftliche Kulturpflege +http://lobid.org/organisations/DE-MUS-125124#! DE-MUS-125124 Private Künstlernachlässe im Land Brandenburg e.V. +http://lobid.org/organisations/DE-2629#! DE-2629 2629 Mediathek Bühl +http://lobid.org/organisations/DE-2671#! DE-2671 2671 Bücherei Böbing +http://lobid.org/organisations/DE-2673#! DE-2673 LVR-Amt für Denkmalpflege im Rheinland, Fotoarchiv +http://lobid.org/organisations/DE-2675#! DE-2675 Sächsische Akademie der Wissenschaften zu Leipzig +http://lobid.org/organisations/DE-2678#! DE-2678 2678 Stadtbücherei Gengenbach +http://lobid.org/organisations/DE-2684#! DE-2684 2684 Stadtbibliothek Arnstein +http://lobid.org/organisations/DE-2687#! DE-2687 2687 Gemeindebücherei Bischofsmais +http://lobid.org/organisations/DE-2691#! DE-2691 2691 Gemeindebücherei Feucht +http://lobid.org/organisations/DE-2703#! DE-2703 2703 Gemeinde- und Gästebücherei Oberstaufen +http://lobid.org/organisations/DE-2704#! DE-2704 2704 Gemeindebücherei Prittriching +http://lobid.org/organisations/DE-2709#! DE-2709 2709 Gemeindebibliothek Schonungen +http://lobid.org/organisations/DE-2715#! DE-2715 2715 Stadtbücherei Windsbach +http://lobid.org/organisations/DE-2718#! DE-2718 Herder-Institut für historische Ostmitteleuropaforschung - Institut der Leibniz-Gemeinschaft +http://lobid.org/organisations/DE-2726#! DE-2726 2726 Stadtbücherei Schwarzenbach am Wald +http://lobid.org/organisations/DE-MUS-125322#! DE-MUS-125322 Kreisarchäologie Rotenburg (Wümme) +http://lobid.org/organisations/DE-2740#! DE-2740 Index Didacticorum - Thesaurus +http://lobid.org/organisations/DE-2741#! DE-2741 2741 Marktarchiv Zusmarshausen +http://lobid.org/organisations/DE-2744#! DE-2744 2744 Gemeindebücherei Schwaikheim +http://lobid.org/organisations/DE-MUS-047925#! DE-MUS-047925 Krankenhausmuseum Bielefeld +http://lobid.org/organisations/DE-2757#! DE-2757 2757 Generalzolldirektion - Bildungs- und Wissenschaftszentrum Münster, Bibliothek +http://lobid.org/organisations/DE-2771#! DE-2771 Sankt Michaelsbund, Diözesanverband München und Freising e.V. +http://lobid.org/organisations/DE-2772#! DE-2772 2772 Museum für russlanddeutsche Kulturgeschichte, Bibliothek +http://lobid.org/organisations/DE-2786#! DE-2786 Archiv der Universität Hohenheim +http://lobid.org/organisations/DE-2793#! DE-2793 2793 Max-Born-Gymnasium, Schulbibliothek +http://lobid.org/organisations/DE-2802#! DE-2802 Staatsarchiv Coburg +http://lobid.org/organisations/DE-Aug8#! DE-Aug8 Aug 8 Staatsarchiv Augsburg, Bibliothek +http://lobid.org/organisations/DE-Bb25#! DE-Bb25 Bb 25 Staatsarchiv Bamberg, Bibliothek +http://lobid.org/organisations/DE-2136#! DE-2136 2136 Generaldirektion der Staatlichen Archive Bayerns - Bayerische Archivschule, Bibliothek +http://lobid.org/organisations/DE-M333#! DE-M333 M 333 Bayerisches Hauptstaatsarchiv, Bibliothek +http://lobid.org/organisations/DE-1834l#! DE-1834l 1834l Macromedia Library Leipzig +http://lobid.org/organisations/DE-2805#! DE-2805 2805 Lesetreff Schrozberg +http://lobid.org/organisations/DE-2807#! DE-2807 2807 Gemeindebücherei Schönkirchen +http://lobid.org/organisations/DE-MUS-164510#! DE-MUS-164510 VSE Museum Illingen +http://lobid.org/organisations/DE-2816#! DE-2816 2816 Gemeindebücherei Eningen unter Achalm +http://lobid.org/organisations/DE-2820#! DE-2820 Stadtarchiv Celle +http://lobid.org/organisations/DE-Re13#! DE-Re13 Re 13 Leibniz-Institut für Ost- und Südosteuropaforschung, Bibliothek +http://lobid.org/organisations/DE-2827#! DE-2827 Diözesanarchiv Limburg +http://lobid.org/organisations/DE-2828#! DE-2828 Erzbischöfliches Archiv Freiburg +http://lobid.org/organisations/DE-2829#! DE-2829 2829 Stadtbücherei Östringen +http://lobid.org/organisations/DE-2834#! DE-2834 Archiv des Landtages von Sachsen-Anhalt +http://lobid.org/organisations/DE-Ful2d#! DE-Ful2d Ful 2d Bischofshaus, Bibliothek +http://lobid.org/organisations/DE-2836#! DE-2836 2836 semantics Kommunikationsmanagement GmbH, Archiv +http://lobid.org/organisations/DE-2847#! DE-2847 2847 Bibliothek des Collegium Polonicum in Słubice +http://lobid.org/organisations/DE-2853#! DE-2853 Deutsches Archäologische Institut, Abteilung Madrid, Archiv +http://lobid.org/organisations/DE-2856#! DE-2856 Kommission für Archäologie Außereuropäischer Kulturen (KAAK), Bonn, Archiv +http://lobid.org/organisations/DE-2858#! DE-2858 Deutsches Archäologisches Institut, Orient-Abteilung, Archiv +http://lobid.org/organisations/DE-2860#! DE-2860 Deutsches Archäologisches Institut, Abteilung Kairo, Archiv +http://lobid.org/organisations/DE-2862#! DE-2862 2862 Universität Hamburg, Institut für Systematische Musikwissenschaft, Archiv +http://lobid.org/organisations/DE-100-190#! DE-100-190 100/190 Universität Hohenheim, Institut für Biologie, Bibliothek +http://lobid.org/organisations/DE-627-3#! DE-627-3 IKAR - Landkartendrucke vor 1850 +http://lobid.org/organisations/DE-2869#! DE-2869 2869 Universitätsbibliographie Tübingen +http://lobid.org/organisations/DE-2870#! DE-2870 2870 Mediothek Ilsfeld +http://lobid.org/organisations/DE-2875#! DE-2875 The UHH Ethnographic Sound Recordings Archive (ESRA) +http://lobid.org/organisations/DE-2880#! DE-2880 Kreis- und Stadtarchäologie Gifhorn +http://lobid.org/organisations/DE-2881#! DE-2881 2881 Gemeindebibliothek Sulzfeld +http://lobid.org/organisations/DE-2887#! DE-2887 2887 Thüringer Rechnungshof, Dienstbibliothek +http://lobid.org/organisations/DE-2888#! DE-2888 Stiftung Kraftwerk Hirschfelde +http://lobid.org/organisations/DE-840-1#! DE-840-1 840/1 Bibliothek LIV Künzelsau +http://lobid.org/organisations/DE-2891#! DE-2891 2891 Mediathek im KUBUS +http://lobid.org/organisations/DE-2893#! DE-2893 Zentralarchiv der Evangelischen Kirche der Pfalz, Speyer +http://lobid.org/organisations/DE-2897#! DE-2897 Frankenlandschule Walldürn +http://lobid.org/organisations/DE-640#! DE-640 bwLastCopies +http://lobid.org/organisations/DE-2908#! DE-2908 2908 Sammlung Fitzlibutz +http://lobid.org/organisations/DE-2910#! DE-2910 5-Dörfer-Archiv der Alt-Gemeinde Gressenich +http://lobid.org/organisations/DE-2913#! DE-2913 Deutsches Komponistenarchiv +http://lobid.org/organisations/DE-2917#! DE-2917 2917 Studentische Frauenbibliothek LIESELLE +http://lobid.org/organisations/DE-L152#! DE-L152 L 152 Hochschule für Musik und Theater 'Felix Mendelssohn Bartholdy' Leipzig, Bibliothek und Archiv +http://lobid.org/organisations/DE-MUS-145722#! DE-MUS-145722 Saarlandmuseum +http://lobid.org/organisations/DE-2921#! DE-2921 2921 Stadtbücherei Heideck +http://lobid.org/organisations/DE-2926#! DE-2926 Gemeindearchiv Hiddenhausen +http://lobid.org/organisations/DE-2936#! DE-2936 2936 Wissenschaftliche Museumsbibliothek +http://lobid.org/organisations/DE-2940#! DE-2940 2940 Bücherei Neustadt (Hessen) +http://lobid.org/organisations/DE-201#! DE-201 201 Deutsches Patent- und Markenamt, Ref. 2.2.4, Bibliothek +http://lobid.org/organisations/DE-2953#! DE-2953 Gemeindearchiv Kleinmachnow +http://lobid.org/organisations/DE-2954#! DE-2954 2954 Franziska-Bibliothek +http://lobid.org/organisations/DE-2955#! DE-2955 2955 Stadtbücherei Kandern +http://lobid.org/organisations/DE-2964#! DE-2964 Stadtarchiv Bornheim +http://lobid.org/organisations/DE-2967#! DE-2967 Landesstelle für Berlin-Brandenburgische Volkskunde, HU Sammlungen +http://lobid.org/organisations/DE-2992#! DE-2992 Evangelisches Werk für Diakonie und Entwicklung e.V., Archiv +http://lobid.org/organisations/DE-2993#! DE-2993 LVR-Kulturzentrum Abtei Brauweiler +http://lobid.org/organisations/DE-3002#! DE-3002 Theodor-Frey-Schule Eberbach +http://lobid.org/organisations/DE-D165#! DE-D165 D 165 Städtisches Klinikum Dresden, Bibliothek Standort Friedrichstadt +http://lobid.org/organisations/DE-D227#! DE-D227 D 227 Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie, Bibliothek Pillnitz +http://lobid.org/organisations/DE-197#! DE-197 197 Leipziger Städtische Bibliotheken, Zentralbibliothek +http://lobid.org/organisations/DE-3005#! DE-3005 3005 Bibliothek der ehemaligen Benediktinerabtei Werden +http://lobid.org/organisations/DE-3006#! DE-3006 Stadtarchiv Ingolstadt +http://lobid.org/organisations/DE-3012#! DE-3012 3012 Bibliothek Doberschütz +http://lobid.org/organisations/DE-3013#! DE-3013 3013 Stadtbibliothek Geyer +http://lobid.org/organisations/DE-3015#! DE-3015 3015 Bibliothek Großschönau +http://lobid.org/organisations/DE-3025#! DE-3025 3025 Stadtbibliothek Meerane +http://lobid.org/organisations/DE-3028#! DE-3028 3028 Gemeindebibliothek Ottendorf-Okrilla +http://lobid.org/organisations/DE-3031#! DE-3031 3031 Stadt- und Kreisbibliotheken Vogtland +http://lobid.org/organisations/DE-MUS-149526#! DE-MUS-149526 Professur für Klassische Archäologie der JLU Gießen, Antikensammlung +http://lobid.org/organisations/DE-3047#! DE-3047 Deutsches Zentrum Kulturgutverluste +http://lobid.org/organisations/DE-3054#! DE-3054 3054 Stadtbibliothek Kitzscher +http://lobid.org/organisations/DE-3060#! DE-3060 Kunstsammlung der Förde Sparkasse +http://lobid.org/organisations/DE-3068#! DE-3068 St. Pauli-Archiv e.V. +http://lobid.org/organisations/DE-B259#! DE-B259 B 259 Leibniz-Institut für Gewässerökologie und Binnenfischerei im Forschungsverbund Berlin e.V., Bibliothek +http://lobid.org/organisations/DE-3072#! DE-3072 3072 Stadtbibliothek Rothenburg +http://lobid.org/organisations/DE-3087#! DE-3087 3087 Theater- und Spielberatung Baden-Württemberg e. V. +http://lobid.org/organisations/DE-3089#! DE-3089 3089 Gemeindebücherei Waldmohr +http://lobid.org/organisations/DE-3090#! DE-3090 3090 Stadtbücherei Fehmarn +http://lobid.org/organisations/DE-3097#! DE-3097 Gemeinde Wölfersheim, Archiv +http://lobid.org/organisations/DE-Fb24#! DE-Fb24 Fb 24 Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie, Bibliothek Freiberg +http://lobid.org/organisations/DE-4017#! DE-4017 4017 Kinder- und Jugendbibliothek Hüfingen +http://lobid.org/organisations/DE-MUS-15062#! DE-MUS-15062 Friedrich-Schiller-Universität / Historische Sammlung geophysikalischer / seismologischer Geräte +http://lobid.org/organisations/AT-VLB#! AT-VLB Vorarlberger Landesbibliothek +http://lobid.org/organisations/DE-4033#! DE-4033 Institut für Altertumskunde, Papyrussammlung Köln +http://lobid.org/organisations/DE-4035#! DE-4035 4035 Georg-von-der-Vring-Bibliothek +http://lobid.org/organisations/DE-4036#! DE-4036 4036 Fritz Bauer Bibliothek +http://lobid.org/organisations/DE-4038#! DE-4038 4038 Stadtbibliothek Naunhof +http://lobid.org/organisations/DE-B2018#! DE-B2018 B 2018 Helios Zentralbibliothek der Helios Kliniken GmbH +http://lobid.org/organisations/DE-4047#! DE-4047 4047 Hans Arnhold Center Library and Archive +http://lobid.org/organisations/DE-7-099#! DE-7-099 7/099 Seminar für Iranistik, Bibliothek +http://lobid.org/organisations/DE-7-415#! DE-7-415 7/415 Institut für Informatik, Bibliothek +http://lobid.org/organisations/DE-7-745#! DE-7-745 7/745 Klinik für Psychiatrie und Psychotherapie, Schwerpunktprofessur Forensische Psychiatrie und Psychotherapie, Bibliothek +http://lobid.org/organisations/DE-4064#! DE-4064 4064 Mahn- und Gedenkstätte Düsseldorf, Bibliothek +http://lobid.org/organisations/DE-4068#! DE-4068 4068 Stadtbibliothek Trebsen +http://lobid.org/organisations/DE-7-758#! DE-7-758 7/758 Klinik für Nephrologie und Rheumatologie, Bibliothek +http://lobid.org/organisations/DE-4075#! DE-4075 4075 Stadtbibliothek Husum +http://lobid.org/organisations/DE-4087#! DE-4087 Stadt Holzgerlingen, Archiv +http://lobid.org/organisations/DE-4091#! DE-4091 4091 Stadtbibliothek Böhlen +http://lobid.org/organisations/DE-4093#! DE-4093 4093 Justus-von-Liebig-Gymnasium Neusäß +http://lobid.org/organisations/DE-Ru1#! DE-Ru1 Ru 1 Thüringisches Institut für Textil- und Kunststoff-Forschung e.V., Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-4107#! DE-4107 4107 Stadtarchiv Rahden +http://lobid.org/organisations/DE-30-50#! DE-30-50 30/50 Universitätsbibliothek J. C. Senckenberg, Bibliothek Sprach- und Kulturwissenschaften (BSKW) +http://lobid.org/organisations/DE-4113#! DE-4113 4113 Stadtbücherei Erbach +http://lobid.org/organisations/DE-4121#! DE-4121 Kreisarchiv Emsland +http://lobid.org/organisations/DE-4123#! DE-4123 4123 Heimatgeschichtliches Dokumentationszentrum des Landkreises Lindau +http://lobid.org/organisations/DE-MUS-16002#! DE-MUS-16002 Poppenspäler Museum +http://lobid.org/organisations/DE-MUS-009121#! DE-MUS-009121 Museum der Bayerischen Polizei +http://lobid.org/organisations/DE-MUS-026126#! DE-MUS-026126 Haus der Stadtgeschichte - Stadtarchiv +http://lobid.org/organisations/DE-MUS-035927#! DE-MUS-035927 Museum 22/20/18 Kühnertsgasse +http://lobid.org/organisations/DE-MUS-036420#! DE-MUS-036420 Zentralarchiv SMB +http://lobid.org/organisations/DE-MUS-037027#! DE-MUS-037027 Kaffeemuseum Burg +http://lobid.org/organisations/DE-MUS-037121#! DE-MUS-037121 Bischofsturm +http://lobid.org/organisations/DE-MUS-038322#! DE-MUS-038322 Arnold-Janssen Haus +http://lobid.org/organisations/DE-MUS-039429#! DE-MUS-039429 DorfMuseum Lohmen +http://lobid.org/organisations/DE-MUS-039523#! DE-MUS-039523 Flugplatzmuseum Welzow +http://lobid.org/organisations/DE-MUS-040122#! DE-MUS-040122 Modemuseum Schloss Meyenburg e.V. +http://lobid.org/organisations/DE-MUS-041427#! DE-MUS-041427 SPIELZEUGHAUS Freinsheim - Museum und Café +http://lobid.org/organisations/DE-MUS-041927#! DE-MUS-041927 DASMAXIMUM KunstGegenwart +http://lobid.org/organisations/DE-MUS-043527#! DE-MUS-043527 Kunsthalle St. Annen +http://lobid.org/organisations/DE-MUS-043829#! DE-MUS-043829 Artothek Eckernförde +http://lobid.org/organisations/DE-MUS-048324#! DE-MUS-048324 Erinnerungsort - Topf & Söhne - Die Ofenbauer von Auschwitz +http://lobid.org/organisations/DE-MUS-048428#! DE-MUS-048428 Experiminta Science Center Frankfurt Rhein/Main +http://lobid.org/organisations/DE-MUS-048720#! DE-MUS-048720 Museum Hofmühle Dresden +http://lobid.org/organisations/DE-MUS-050228#! DE-MUS-050228 Christian Lassen""s Minde Museum +http://lobid.org/organisations/DE-MUS-050926#! DE-MUS-050926 Museumsschiff ""Greundiek"" +http://lobid.org/organisations/DE-MUS-051221#! DE-MUS-051221 Feuchtmayer Museum +http://lobid.org/organisations/DE-MUS-051825#! DE-MUS-051825 Nowaweser Weberstube +http://lobid.org/organisations/DE-MUS-053123#! DE-MUS-053123 Sächsisches Psychiatrie Museum +http://lobid.org/organisations/DE-MUS-053623#! DE-MUS-053623 Ostalgie-Kabinett +http://lobid.org/organisations/DE-MUS-054428#! DE-MUS-054428 Museum Palais Schardt +http://lobid.org/organisations/DE-MUS-055327#! DE-MUS-055327 Fasanenschlösschen Moritzburg +http://lobid.org/organisations/DE-MUS-056820#! DE-MUS-056820 Medizinhistorisches Museum Hamburg +http://lobid.org/organisations/DE-MUS-056924#! DE-MUS-056924 Städtisches historisches Museum/ Horex-Museum +http://lobid.org/organisations/DE-MUS-057521#! DE-MUS-057521 Gedenkstätte Augustaschacht +http://lobid.org/organisations/DE-MUS-057927#! DE-MUS-057927 Astronomiemuseum der Sternwarte Sonneberg +http://lobid.org/organisations/DE-MUS-058222#! DE-MUS-058222 Schildkröt-Puppenmuseum +http://lobid.org/organisations/DE-MUS-058326#! DE-MUS-058326 SOMSO-Museum +http://lobid.org/organisations/DE-MUS-058628#! DE-MUS-058628 Schlosshof Döben mit Heimatstube +http://lobid.org/organisations/DE-MUS-062424#! DE-MUS-062424 Kloster Barsinghausen +http://lobid.org/organisations/DE-MUS-062924#! DE-MUS-062924 Friederike-Wackler-Museum +http://lobid.org/organisations/DE-MUS-063229#! DE-MUS-063229 Klostermuseum Salem +http://lobid.org/organisations/DE-MUS-064024#! DE-MUS-064024 Museum der Staatlichen Münze Berlin +http://lobid.org/organisations/DE-MUS-064128#! DE-MUS-064128 BROWSE GALLERY +http://lobid.org/organisations/DE-MUS-064326#! DE-MUS-064326 Hamburger Genossenschaftsmuseum +http://lobid.org/organisations/DE-MUS-064524#! DE-MUS-064524 Territorialmuseum Babenhausen +http://lobid.org/organisations/DE-MUS-064826#! DE-MUS-064826 Heimatstube Vorsfelde +http://lobid.org/organisations/DE-MUS-065225#! DE-MUS-065225 Gärtnermuseum Wolfenbüttel +http://lobid.org/organisations/DE-MUS-065725#! DE-MUS-065725 Haus Elsfleth +http://lobid.org/organisations/DE-MUS-065829#! DE-MUS-065829 The PhotoBookMuseum +http://lobid.org/organisations/DE-MUS-065923#! DE-MUS-065923 Centre Charlemagne +http://lobid.org/organisations/DE-MUS-066020#! DE-MUS-066020 MHH-Museum im Hütteschen Haus +http://lobid.org/organisations/DE-MUS-066228#! DE-MUS-066228 Ernst Oldenburg Museum +http://lobid.org/organisations/DE-MUS-066520#! DE-MUS-066520 Heimatmuseum Klein-Winternheim +http://lobid.org/organisations/DE-MUS-066728#! DE-MUS-066728 Stiftung Luthergedenkstätten / Luthers Elternhaus +http://lobid.org/organisations/DE-MUS-067721#! DE-MUS-067721 Kurtz Ersa Hammermuseum +http://lobid.org/organisations/DE-MUS-068620#! DE-MUS-068620 Junges Museum Frankfurt +http://lobid.org/organisations/DE-MUS-070722#! DE-MUS-070722 Kameramuseum +http://lobid.org/organisations/DE-MUS-071121#! DE-MUS-071121 Paul Josef Nardini-Gedenkstätte +http://lobid.org/organisations/DE-MUS-071329#! DE-MUS-071329 Heimatmuseum Altenmarkt +http://lobid.org/organisations/DE-MUS-071621#! DE-MUS-071621 Hirten- und Heimatmuseum Baschtlehaus Ebenhofen +http://lobid.org/organisations/DE-MUS-072020#! DE-MUS-072020 Dorfmuseum +http://lobid.org/organisations/DE-MUS-072822#! DE-MUS-072822 Mercateum +http://lobid.org/organisations/DE-MUS-073221#! DE-MUS-073221 Ammerländer Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-073721#! DE-MUS-073721 Seefahrerschule Mühlen +http://lobid.org/organisations/DE-MUS-073825#! DE-MUS-073825 Mühlenmuseum Harpendorf-Düpe +http://lobid.org/organisations/DE-MUS-074422#! DE-MUS-074422 Küsteum +http://lobid.org/organisations/DE-MUS-074526#! DE-MUS-074526 Heimatstube Benstorf im Dorfgemeinschaftshaus +http://lobid.org/organisations/DE-MUS-074922#! DE-MUS-074922 Oldenburger Computer-Museum e.V. +http://lobid.org/organisations/DE-MUS-075821#! DE-MUS-075821 Heimatmuseum auf der Ihloge +http://lobid.org/organisations/DE-MUS-076324#! DE-MUS-076324 Center of World Music +http://lobid.org/organisations/DE-MUS-076428#! DE-MUS-076428 natour.NAH.zentrum Schillat-Höhle +http://lobid.org/organisations/DE-MUS-076720#! DE-MUS-076720 Buchdruckmuseum +http://lobid.org/organisations/DE-MUS-079323#! DE-MUS-079323 Gelebtes Museum +http://lobid.org/organisations/DE-MUS-080620#! DE-MUS-080620 Museum für historische Maybach-Fahrzeuge +http://lobid.org/organisations/DE-MUS-080724#! DE-MUS-080724 Dorfmuseum +http://lobid.org/organisations/DE-MUS-081529#! DE-MUS-081529 Drehscheibe Pocking +http://lobid.org/organisations/DE-MUS-081727#! DE-MUS-081727 Badhaus-Museum +http://lobid.org/organisations/DE-MUS-082626#! DE-MUS-082626 Stadtmuseum Conradtyhaus +http://lobid.org/organisations/DE-MUS-083129#! DE-MUS-083129 Bayerisches Grenzmuseum Schirnding +http://lobid.org/organisations/DE-MUS-083327#! DE-MUS-083327 Ortsgeschichtliche Sammlung Schwebheim +http://lobid.org/organisations/DE-MUS-083921#! DE-MUS-083921 Lutherhaus +http://lobid.org/organisations/DE-MUS-084320#! DE-MUS-084320 Klassik Stiftung Weimar/ Goethe und Schiller-Archiv +http://lobid.org/organisations/DE-MUS-088426#! DE-MUS-088426 Glas/Werke/Langen +http://lobid.org/organisations/DE-MUS-088822#! DE-MUS-088822 Neidenburger Heimatstube +http://lobid.org/organisations/DE-MUS-089929#! DE-MUS-089929 Heimatmuseum Dornberg +http://lobid.org/organisations/DE-MUS-090122#! DE-MUS-090122 Feuerwehrmuseum Bielefeld +http://lobid.org/organisations/DE-MUS-090622#! DE-MUS-090622 Heimatmuseum Alverdissen +http://lobid.org/organisations/DE-MUS-091323#! DE-MUS-091323 Heimatmuseum im Haus Hartmann +http://lobid.org/organisations/DE-MUS-092024#! DE-MUS-092024 Werk Neheim +http://lobid.org/organisations/DE-MUS-093121#! DE-MUS-093121 1. Deutsches Motorroller Museum +http://lobid.org/organisations/DE-MUS-093225#! DE-MUS-093225 Heimat- und Stadtmuseum Kirchberg +http://lobid.org/organisations/DE-MUS-095721#! DE-MUS-095721 Urzeitmuseum - Sammlung Kapustin +http://lobid.org/organisations/DE-MUS-096120#! DE-MUS-096120 Gerbereimuseum +http://lobid.org/organisations/DE-MUS-096526#! DE-MUS-096526 Heimatmuseum Unterhaching +http://lobid.org/organisations/DE-MUS-097727#! DE-MUS-097727 Ganghofer-Stätte +http://lobid.org/organisations/DE-MUS-097925#! DE-MUS-097925 Fränkisches Bildstockzentrum Egenhausen +http://lobid.org/organisations/DE-MUS-098324#! DE-MUS-098324 Webereimuseum Gebr. Stegmann +http://lobid.org/organisations/DE-MUS-098428#! DE-MUS-098428 Deutsches Spionagemuseum +http://lobid.org/organisations/DE-MUS-098626#! DE-MUS-098626 Sammelsurium-Museum +http://lobid.org/organisations/DE-MUS-099421#! DE-MUS-099421 Waldensermuseum +http://lobid.org/organisations/DE-MUS-100125#! DE-MUS-100125 Museum Bad Herrenalb - Feierabendziegel Sammlung Bernt +http://lobid.org/organisations/DE-MUS-100521#! DE-MUS-100521 Wallfahrtsmuseum in der Alten Schmiede +http://lobid.org/organisations/DE-MUS-102725#! DE-MUS-102725 Heimat- und Schindelstüble +http://lobid.org/organisations/DE-MUS-103124#! DE-MUS-103124 Turmuhrenmuseum Granheim +http://lobid.org/organisations/DE-MUS-103520#! DE-MUS-103520 Kirschenmuseum +http://lobid.org/organisations/DE-MUS-103624#! DE-MUS-103624 Museum Zeugnisse religiösen Volksglaubens +http://lobid.org/organisations/DE-MUS-104023#! DE-MUS-104023 Heimatmuseum +http://lobid.org/organisations/DE-MUS-104221#! DE-MUS-104221 Bodenseeobst-Museum +http://lobid.org/organisations/DE-MUS-105526#! DE-MUS-105526 Zeller-Mörike-Gartenhaus +http://lobid.org/organisations/DE-MUS-105724#! DE-MUS-105724 Neuerner Museum und Heimatarchiv +http://lobid.org/organisations/DE-MUS-107522#! DE-MUS-107522 Heimatmuseum Offstein +http://lobid.org/organisations/DE-MUS-108025#! DE-MUS-108025 Museum Bruchhäuser Stiftung +http://lobid.org/organisations/DE-MUS-108129#! DE-MUS-108129 Motorrad- und Technikmuseum Leiningerland +http://lobid.org/organisations/DE-MUS-109028#! DE-MUS-109028 Museum SchPIRA +http://lobid.org/organisations/DE-MUS-109820#! DE-MUS-109820 Kleines Feuerwehr-Museum Weisel +http://lobid.org/organisations/DE-MUS-110127#! DE-MUS-110127 Trachtenmuseum Westerburg +http://lobid.org/organisations/DE-MUS-110325#! DE-MUS-110325 Kalkbergwerk am Königsberg +http://lobid.org/organisations/DE-MUS-111026#! DE-MUS-111026 Kunstmuseum der Malerfamilie Schüz +http://lobid.org/organisations/DE-MUS-111120#! DE-MUS-111120 Kunstmuseum Karl Hurm in der Ölmühle +http://lobid.org/organisations/DE-MUS-111328#! DE-MUS-111328 Schifffahrtsmuseum Hassmersheim +http://lobid.org/organisations/DE-MUS-111526#! DE-MUS-111526 Tüftler-Werkstatt-Museum +http://lobid.org/organisations/DE-MUS-111922#! DE-MUS-111922 Friedrich-Sieburg-Gedenkstätte +http://lobid.org/organisations/DE-MUS-112425#! DE-MUS-112425 ""The Gate"" - Brandenburger Tor Museum +http://lobid.org/organisations/DE-MUS-112821#! DE-MUS-112821 1. Magdeburger Circusmuseum e.V. +http://lobid.org/organisations/DE-MUS-114129#! DE-MUS-114129 Heimatstube im alten Rathaus +http://lobid.org/organisations/DE-MUS-114327#! DE-MUS-114327 Polizeimuseum Heubach +http://lobid.org/organisations/DE-MUS-115226#! DE-MUS-115226 Alte Feilenschleiferei +http://lobid.org/organisations/DE-MUS-115924#! DE-MUS-115924 Löchnersche Schmiede am Marktplatz +http://lobid.org/organisations/DE-MUS-117024#! DE-MUS-117024 Museum in der Stiftsscheuer +http://lobid.org/organisations/DE-MUS-117420#! DE-MUS-117420 Museum im Schafstall +http://lobid.org/organisations/DE-MUS-118121#! DE-MUS-118121 Ditmarsium +http://lobid.org/organisations/DE-MUS-119228#! DE-MUS-119228 Museum Nortorf +http://lobid.org/organisations/DE-MUS-119728#! DE-MUS-119728 Volkskundliches Museum Mölln Hof +http://lobid.org/organisations/DE-MUS-119926#! DE-MUS-119926 Kohlmuseum Wesselburen +http://lobid.org/organisations/DE-MUS-120223#! DE-MUS-120223 Museum LiebesLeben +http://lobid.org/organisations/DE-MUS-120421#! DE-MUS-120421 HerrschaftsZeiten! Erlebnis Cadolzburg +http://lobid.org/organisations/DE-MUS-120525#! DE-MUS-120525 Sammlung Moderne Kunst +http://lobid.org/organisations/DE-MUS-120827#! DE-MUS-120827 Faszination Universum +http://lobid.org/organisations/DE-MUS-121320#! DE-MUS-121320 Henkerhaus +http://lobid.org/organisations/DE-MUS-122427#! DE-MUS-122427 GroMusle +http://lobid.org/organisations/DE-MUS-122521#! DE-MUS-122521 Heimatmuseum Obrigheim +http://lobid.org/organisations/DE-MUS-123920#! DE-MUS-123920 Elektromuseum +http://lobid.org/organisations/DE-MUS-124027#! DE-MUS-124027 Galerie und Museum Altes Rathaus +http://lobid.org/organisations/DE-MUS-125020#! DE-MUS-125020 Museum Himmlisches Theater +http://lobid.org/organisations/DE-MUS-125926#! DE-MUS-125926 Museum Alte Hof-Apotheke +http://lobid.org/organisations/DE-MUS-126221#! DE-MUS-126221 Heimatmuseum ""Wirtles Haus"" +http://lobid.org/organisations/DE-MUS-126325#! DE-MUS-126325 Puppen- und Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-127026#! DE-MUS-127026 Kunstmuseum Laiz +http://lobid.org/organisations/DE-MUS-127224#! DE-MUS-127224 Historische Mühle mit Backhaus +http://lobid.org/organisations/DE-MUS-127828#! DE-MUS-127828 Dorfmuseum Börstingen +http://lobid.org/organisations/DE-MUS-128123#! DE-MUS-128123 Feuerspritzenmuseum +http://lobid.org/organisations/DE-MUS-129220#! DE-MUS-129220 Foto-Museum Uhingen +http://lobid.org/organisations/DE-MUS-129324#! DE-MUS-129324 Auto- und Traktormuseum Bodensee +http://lobid.org/organisations/DE-MUS-130329#! DE-MUS-130329 Mönchhof-Sägemühle +http://lobid.org/organisations/DE-MUS-131426#! DE-MUS-131426 Oberte-Museum +http://lobid.org/organisations/DE-MUS-132221#! DE-MUS-132221 Marine Historische Sammlung +http://lobid.org/organisations/DE-MUS-132825#! DE-MUS-132825 Husarenmuseum Rheder +http://lobid.org/organisations/DE-MUS-133224#! DE-MUS-133224 Heimatstube Holzhausen +http://lobid.org/organisations/DE-MUS-133828#! DE-MUS-133828 Apotheken-Museum +http://lobid.org/organisations/DE-MUS-206911#! DE-MUS-206911 Universitätsarchiv Tübingen (Universitätsgeschichtliche Sammlungen) +http://lobid.org/organisations/DE-MUS-309213#! DE-MUS-309213 Architekturmuseum der TU München +http://lobid.org/organisations/DE-MUS-393515#! DE-MUS-393515 Hamburgisches Architektur-Archiv d. Hamburgischen Architektenkammer +http://lobid.org/organisations/DE-MUS-396118#! DE-MUS-396118 Synagoge Celle +http://lobid.org/organisations/DE-MUS-408419#! DE-MUS-408419 Gaildorfer Stadtmuseum - Heimatgeschichte und Hexenverfolgung +http://lobid.org/organisations/DE-MUS-647416#! DE-MUS-647416 Kleine Galerie Hans Nadler +http://lobid.org/organisations/DE-MUS-775115#! DE-MUS-775115 Museum im Deutschen Tagebucharchiv +http://lobid.org/organisations/DE-MUS-951413#! DE-MUS-951413 Museum im Kornhaus +http://lobid.org/organisations/DE-MUS-137424#! DE-MUS-137424 Technikmuseum Freudenberg +http://lobid.org/organisations/DE-MUS-137528#! DE-MUS-137528 Zwieback Museum Brandt +http://lobid.org/organisations/DE-MUS-137726#! DE-MUS-137726 Heimatstube Schönholthausen +http://lobid.org/organisations/DE-MUS-138021#! DE-MUS-138021 Kinotechnische Sammlung +http://lobid.org/organisations/DE-MUS-138229#! DE-MUS-138229 Lernort M.B. 89 +http://lobid.org/organisations/DE-MUS-138427#! DE-MUS-138427 Kunsthaus Salzwedel +http://lobid.org/organisations/DE-MUS-138625#! DE-MUS-138625 Museum Hotel Silber +http://lobid.org/organisations/DE-MUS-139024#! DE-MUS-139024 Museum des Kapitalismus +http://lobid.org/organisations/DE-MUS-139326#! DE-MUS-139326 Futurium +http://lobid.org/organisations/DE-MUS-139920#! DE-MUS-139920 Dokumentationszentrum des Landes für die Opfer der Diktaturen in Deutschland +http://lobid.org/organisations/DE-MUS-140123#! DE-MUS-140123 Bürger Museum Wolfenbüttel +http://lobid.org/organisations/DE-MUS-140529#! DE-MUS-140529 LVR-Industriemuseum, Peter-Behrens-Bau +http://lobid.org/organisations/DE-MUS-141126#! DE-MUS-141126 Heimatstube Herscheid +http://lobid.org/organisations/DE-MUS-141220#! DE-MUS-141220 Vestisches Spargelmuseum NRW +http://lobid.org/organisations/DE-MUS-141626#! DE-MUS-141626 Traktoren-Museum +http://lobid.org/organisations/DE-MUS-142525#! DE-MUS-142525 Schmiedemuseum Balbach +http://lobid.org/organisations/DE-MUS-143028#! DE-MUS-143028 Holzschuhmuseum +http://lobid.org/organisations/DE-MUS-143424#! DE-MUS-143424 Bergbau- und Geschichtsmuseum +http://lobid.org/organisations/DE-MUS-143726#! DE-MUS-143726 Ars Sacrale +http://lobid.org/organisations/DE-MUS-145420#! DE-MUS-145420 Museum des Hauses der Bayerischen Geschichte +http://lobid.org/organisations/DE-MUS-145920#! DE-MUS-145920 Neues Museum Schloss Sayn +http://lobid.org/organisations/DE-MUS-150125#! DE-MUS-150125 Margret Hofheinz-Döring Haus +http://lobid.org/organisations/DE-4131#! DE-4131 4131 Gemeindebücherei Harrislee +http://lobid.org/organisations/DE-4149#! DE-4149 4149 Naturkundemuseum Leipzig, Bibliothek +http://lobid.org/organisations/DE-L97#! DE-L97 L 97 Helmholtz-Zentrum für Umweltforschung GmbH - UFZ, Bibliothek +http://lobid.org/organisations/DE-4158#! DE-4158 Pearson Deutschland GmbH +http://lobid.org/organisations/DE-4174#! DE-4174 Kreisarchiv Trier-Saarburg +http://lobid.org/organisations/DE-MUS-160721#! DE-MUS-160721 Museumsmühle im Weiler +http://lobid.org/organisations/DE-MUS-161422#! DE-MUS-161422 Jugendwiderstandsmuseum +http://lobid.org/organisations/DE-MUS-161922#! DE-MUS-161922 Hailo Museum +http://lobid.org/organisations/DE-MUS-162321#! DE-MUS-162321 Norddeutsches Krippenmuseum +http://lobid.org/organisations/DE-MUS-163324#! DE-MUS-163324 Veterinärhistorisches Regionalmuseum "Uns Riems" +http://lobid.org/organisations/DE-4183#! DE-4183 4183 Bibliothek des Landtages von Sachsen-Anhalt +http://lobid.org/organisations/DE-MUS-165226#! DE-MUS-165226 Museum Pfreimd +http://lobid.org/organisations/DE-MUS-165424#! DE-MUS-165424 Apothekenmuseum Miltenberg +http://lobid.org/organisations/DE-MUS-164827#! DE-MUS-164827 Bauhaus-Werkstatt-Museum Dornburg +http://lobid.org/organisations/DE-MUS-164421#! DE-MUS-164421 Suppenmuseum Neudorf +http://lobid.org/organisations/DE-MUS-164629#! DE-MUS-164629 Technisches Denkmal - Ziegelei Erbs +http://lobid.org/organisations/DE-4185#! DE-4185 4185 Stadtbibliothek Schriesheim +http://lobid.org/organisations/DE-MUS-168725#! DE-MUS-168725 Der Neue Geschichtsboden +http://lobid.org/organisations/DE-4194#! DE-4194 4194 Staatliche Schlösser und Gärten Baden-Württemberg – Dienstbibliothek Residenzschloss Mergentheim +http://lobid.org/organisations/DE-4208#! DE-4208 Gymnasium Neuenbürg, Bibliothek +http://lobid.org/organisations/DE-18-313#! DE-18-313 18/313 Nordost-Institut an der Universität Hamburg (IKGN e.V.), Bibliothek +http://lobid.org/organisations/DE-Hed2-2#! DE-Hed2-2 Hed 2/2 Duale Hochschule Baden-Württemberg Heidenheim, Zweigbibliothek +http://lobid.org/organisations/DE-6-016#! DE-6-016 6/016 Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek +http://lobid.org/organisations/DE-4217#! DE-4217 Stiftung Kunstsammlung Dr. Maike Bruhns +http://lobid.org/organisations/DE-6-049#! DE-6-049 6/049 Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie +http://lobid.org/organisations/DE-H184#! DE-H184 H 184 Behörde für Stadtentwicklung und Wohnen, Bibliothek Stadtentwicklung, Umwelt und Geologie (2) +http://lobid.org/organisations/DE-6-246#! DE-6-246 6/246 Universität Münster, Germanistisches Institut, Bibliothek +http://lobid.org/organisations/DE-6-276#! DE-6-276 6/276 Universität Münster, Ehrenpreis-Institut für Swift-Studien, Bibliothek +http://lobid.org/organisations/DE-Lan1#! DE-Lan1 Lan 1 Universitätsbibliothek der RPTU in Landau +http://lobid.org/organisations/DE-M36#! DE-M36 M 36 Münchner Stadtbibliothek, Zentralbibliothek Am Gasteig +http://lobid.org/organisations/DE-6-037#! DE-6-037 6/037 Universität Münster, Institut für Angewandte Physik, Bibliothek +http://lobid.org/organisations/DE-6-210#! DE-6-210 6/210 Universität Münster, Institut für Vergleichende Städtegeschichte, Bibliothek +http://lobid.org/organisations/DE-290#! DE-290 290 Universitätsbibliothek Dortmund +http://lobid.org/organisations/DE-1027#! DE-1027 1027 Bibliothek Scharnebeck +http://lobid.org/organisations/DE-4216#! DE-4216 Ben-Haim-Forschungszentrum +http://lobid.org/organisations/DE-B785#! DE-B785 B 785 Abgeordnetenhaus von Berlin, Bibliothek und Dokumentation +http://lobid.org/organisations/DE-6-119#! DE-6-119 6/119 Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek +http://lobid.org/organisations/DE-Stg111#! DE-Stg111 Stg 111 Staatliche Hochschule für Musik und Darstellende Kunst Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Kt1#! DE-Kt1 Kt 1 Hochschule Anhalt , Hochschulbibliothek +http://lobid.org/organisations/DE-1977#! DE-1977 1977 Kreiskliniken Herford-Bünde AöR, Klinikum Herford, Zentralbibliothek +http://lobid.org/organisations/DE-6-326#! DE-6-326 6/326 Universität Münster, Institut für Informations-, Telekommunikations- und Medienrecht (ITM), Bibliothek +http://lobid.org/organisations/DE-6-194#! DE-6-194 6/194 Universität Münster, Zentralinstitut für Raumplanung, Bibliothek +http://lobid.org/organisations/DE-6-328#! DE-6-328 6/328 Universität Münster, Arbeitsstelle Griechenland, Bibliothek +http://lobid.org/organisations/DE-6-023#! DE-6-023 6/023 Universität Münster, Bibliothek des Fachbereichs Physik +http://lobid.org/organisations/DE-1398#! DE-1398 1398 Stadtbibliothek Mühlacker +http://lobid.org/organisations/DE-260#! DE-260 260 Zentralbibliothek Carl Brandts Haus +http://lobid.org/organisations/DE-6-097#! DE-6-097 6/097 Universität Münster, Institut für Kulturanthropologie/Europäische Ethnologie, Bibliothek +http://lobid.org/organisations/DE-6-A#! DE-6-A 6/A Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften +http://lobid.org/organisations/DE-6-005#! DE-6-005 6/005 Universität Münster, Chemiebibliothek +http://lobid.org/organisations/DE-4226#! DE-4226 Elektronikschule Tettnang +http://lobid.org/organisations/DE-6-336#! DE-6-336 6/336 Universität Münster, Institut für Jüdische Studien, Bibliothek +http://lobid.org/organisations/DE-2579#! DE-2579 2579 Technische Hochschule Rosenheim am Campus Mühldorf a. Inn, Bibliothek +http://lobid.org/organisations/DE-4209#! DE-4209 Archiv SAXONIA-FREIBERG-STIFTUNG +http://lobid.org/organisations/DE-MUS-007125#! DE-MUS-007125 Zweiradmuseum Berlin +http://lobid.org/organisations/DE-6-052#! DE-6-052 6/052 Universität Münster, Institut für Musikwissenschaft, Bibliothek +http://lobid.org/organisations/DE-4232#! DE-4232 S.E.S.A.M. - Systematische Erfassung Sachsen-Anhaltischer Münzen +http://lobid.org/organisations/DE-4172#! DE-4172 4172 Gemeindebücherei Ochsothek Walddorfhäslach +http://lobid.org/organisations/DE-B69#! DE-B69 B 69 Bundesministerium der Justiz BMJ, Bibliothek +http://lobid.org/organisations/DE-6-164#! DE-6-164 6/164 Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek +http://lobid.org/organisations/DE-MUS-233512#! DE-MUS-233512 KOLK 17 gGmbH +http://lobid.org/organisations/DE-B2029#! DE-B2029 B 2029 Evangelisches Krankenhaus Königin Elisabeth Herzberge, Bibliothek +http://lobid.org/organisations/DE-MUS-181713#! DE-MUS-181713 Heimatmuseum Eibelstadt +http://lobid.org/organisations/DE-6#! DE-6 6 Universitäts- und Landesbibliothek Münster, Zentralbibliothek +http://lobid.org/organisations/DE-MUS-818415#! DE-MUS-818415 Sportmuseum Berlin +http://lobid.org/organisations/DE-6-115#! DE-6-115 6/115 Universität Münster, Kommunalwissenschaftliches Institut, Bibliothek +http://lobid.org/organisations/DE-6-069#! DE-6-069 6/069 Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr. +http://lobid.org/organisations/DE-Nbg4#! DE-Nbg4 Nbg 4 Dietrich-Bonhoeffer-Klinikum, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-6-182#! DE-6-182 6/182 Universität Münster, Institut für Neutestamentliche Textforschung, Bibliothek +http://lobid.org/organisations/DE-Ef28#! DE-Ef28 Ef 28 Thüringer Ministerium für Bildung, Wissenschaft und Kultur, Bibliothek +http://lobid.org/organisations/DE-Eh4#! DE-Eh4 Eh 4 Stadtbibliothek Eisenhüttenstadt +http://lobid.org/organisations/DE-Eil1#! DE-Eil1 Eil 1 Stadtbibliothek Eilenburg +http://lobid.org/organisations/DE-Er8#! DE-Er8 Er 8 Bayerisches Landesamt für Gesundheit und Lebensmittelsicherheit, Bibliothek +http://lobid.org/organisations/DE-F20#! DE-F20 F 20 Paul-Ehrlich-Institut, Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel, Bibliothek +http://lobid.org/organisations/DE-F25#! DE-F25 F 25 Freies Deutsches Hochstift / Frankfurter Goethe-Museum, Bibliothek +http://lobid.org/organisations/DE-F78#! DE-F78 F 78 Hochschule für Musik und Darstellende Kunst Frankfurt, Bibliothek +http://lobid.org/organisations/DE-F128#! DE-F128 F 128 Bundesamt für Kartographie und Geodäsie (BKG), Bibliothek +http://lobid.org/organisations/DE-F138#! DE-F138 F 138 SGKV - Studiengesellschaft für den Kombinierten Verkehr e.V. , Bibliothek +http://lobid.org/organisations/DE-F144#! DE-F144 F 144 Oberlandesgericht, Bibliothek +http://lobid.org/organisations/DE-30-160#! DE-30-160 30/160 Sigmund-Freud-Institut, Bibliothek +http://lobid.org/organisations/DE-F186#! DE-F186 F 186 Institut für Stadtgeschichte Frankfurt, Bibliothek +http://lobid.org/organisations/DE-Fh3#! DE-Fh3 Fh 3 Airbus Group, Fachinformation +http://lobid.org/organisations/DE-Frei155#! DE-Frei155 Frei 155 Deutscher Sparkassen- und Giroverband e.V. (DSGV),S-Bibliothek +http://lobid.org/organisations/DE-Freis2#! DE-Freis2 Freis 2 Dombibliothek Freising +http://lobid.org/organisations/DE-Fw2#! DE-Fw2 Fw 2 Stadt- und Kreisbibliothek ""Hans Keilson"" +http://lobid.org/organisations/DE-G10#! DE-G10 G 10 Staatliche Fachschule für Bau, Wirtschaft und Verkehr Gotha, Fachbibliothek +http://lobid.org/organisations/DE-Gi23#! DE-Gi23 Gi 23 Max-Planck-Institut für Hirnforschung, Bibliothek +http://lobid.org/organisations/DE-Gk1#! DE-Gk1 Gk 1 Bibliotheca domus presbyterorum Gaesdonck +http://lobid.org/organisations/DE-Gla1#! DE-Gla1 Gla 1 Berufsakademie Sachsen, Staatliche Studienakademie Glauchau, Bibliothek +http://lobid.org/organisations/DE-Gla4#! DE-Gla4 Gla 4 Stadt- und Kreisbibliothek ""Georgius Agricola"" Glauchau +http://lobid.org/organisations/DE-Gr87#! DE-Gr87 Gr 87 EWN Entsorgungswerk für Nuklearanlagen GmbH, Technische Dokumentation / Informationsvermittlung / Bibliothek +http://lobid.org/organisations/DE-Gz6#! DE-Gz6 Gz 6 Stadt- und Kreisbibliothek Greiz +http://lobid.org/organisations/DE-H23#! DE-H23 H 23 Freie und Hansestadt Hamburg, Behörde für Gesundheit und Verbraucherschutz, Bibliothek Gesundheit +http://lobid.org/organisations/DE-H38#! DE-H38 H 38 Hamburg Port Authority, Bibliothek +http://lobid.org/organisations/DE-H66#! DE-H66 H 66 Asklepios Medical School, Bibliothek +http://lobid.org/organisations/DE-H99#! DE-H99 H 99 Bibliotheks- und Medienzentrum der Nordkirche +http://lobid.org/organisations/DE-H108#! DE-H108 H 108 UNESCO-Institut für Lebenslanges Lernen, Bibliothek +http://lobid.org/organisations/DE-H123#! DE-H123 H 123 Landessozialgericht und Sozialgericht Hamburg, Bibliothek +http://lobid.org/organisations/DE-H192#! DE-H192 H 192 Genealogische Gesellschaft Hamburg e.V., Bibliothek und Archiv +http://lobid.org/organisations/DE-H193#! DE-H193 H 193 Behörde für Inneres der Freien und Hansestadt Hamburg / Feuerwehr, Bibliothek +http://lobid.org/organisations/DE-H195#! DE-H195 H 195 Staatliche Fachschule für Sozialpädagogik, Bibliothek +http://lobid.org/organisations/DE-H216#! DE-H216 H 216 Zentrale Bibliothek Behörden Hamburger Straße +http://lobid.org/organisations/DE-H358#! DE-H358 H 358 Gerichtsbibliothek Lübeckertordamm 4 +http://lobid.org/organisations/DE-Ha162#! DE-Ha162 Ha 162 Landesverwaltungsamt, Referat 501 Kultur, Landesfachstelle für öffentliche Bibliotheken +http://lobid.org/organisations/DE-He72#! DE-He72 He 72 Josefine und Eduard von Portheim-Stiftung, Bibliothek +http://lobid.org/organisations/DE-He132#! DE-He132 He 132 Abtei Neuburg, Bibliothek +http://lobid.org/organisations/DE-He133#! DE-He133 He 133 Theologische Studienbibliothek Heidelberg (Theologendienst) +http://lobid.org/organisations/DE-He134#! DE-He134 He 134 Evangelisches Studienseminar Morata-Haus - Predigerseminar Petersstift und Theologisches Studienhaus Heidelberg e.V., Bibliothek +http://lobid.org/organisations/DE-He207#! DE-He207 He 207 SRH Hochschule Heidelberg, Zentralbibliothek +http://lobid.org/organisations/DE-Hil3#! DE-Hil3 Hil 3 HAWK Hochschule für angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen, Bibliothek, Elektronische Ressourcen +http://lobid.org/organisations/DE-Hs1#! DE-Hs1 Hs 1 Stadt- und Schulbibliothek Osterwieck +http://lobid.org/organisations/DE-Huer1#! DE-Huer1 Hür 1 Alte Pfarrbibliothek St. Dionysius Hürth-Gleuel +http://lobid.org/organisations/DE-Hv13#! DE-Hv13 Hv 13 Niedersächsisches Finanzministerium, Bücherei +http://lobid.org/organisations/DE-Ka89#! DE-Ka89 Ka 89 Staatliche Akademie der Bildenden Künste Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-Kn21#! DE-Kn21 Kn 21 Rautenstrauch-Joest-Museum, Kulturen der Welt, Bibliothek +http://lobid.org/organisations/DE-Kn40#! DE-Kn40 Kn 40 Römisch-Germanisches Museum, Bibliothek und Fotothek +http://lobid.org/organisations/DE-Kn54#! DE-Kn54 Kn 54 Forschungsgesellschaft für Straßen- und Verkehrswesen e.V., Bibliothek +http://lobid.org/organisations/DE-Kn180#! DE-Kn180 Kn 180 Bundesamt für Güterverkehr, Bibliothek +http://lobid.org/organisations/DE-Kn182#! DE-Kn182 Kn 182 Deutsches Zentrum für Luft- und Raumfahrt, DLR-Bibliothek +http://lobid.org/organisations/DE-Ku1#! DE-Ku1 Ku 1 Max Rubner-Institut, Bundesforschungsinstitut für Ernährung und Lebensmittel, Bibliothek, Information und Dokumentation, Bibliothek Kulmbach +http://lobid.org/organisations/DE-L293#! DE-L293 L 293 Industrie- und Handelskammer zu Leipzig, Bibliothek +http://lobid.org/organisations/DE-Lg2#! DE-Lg2 Lg 2 Landesarchiv Baden-Württemberg, Abteilung Staatsarchiv Ludwigsburg, Bibliothek +http://lobid.org/organisations/DE-Ln7#! DE-Ln7 Ln 7 BASF SE, GOI/WH-C 6, Bibliothek und Infocenter +http://lobid.org/organisations/DE-M100#! DE-M100 M 100 Bayerische Akademie der Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-M126#! DE-M126 M 126 BMW AG, Fachinformationsdienste Abt. P-FID +http://lobid.org/organisations/DE-M172#! DE-M172 M 172 Ornithologische Gesellschaft in Bayern e.V., Zoologische Staatssammlung, Bücherei +http://lobid.org/organisations/DE-M447#! DE-M447 M 447 Fraunhofer-Institut für Verfahrenstechnik und Verpackung, Bibliothek +http://lobid.org/organisations/DE-M458#! DE-M458 M 458 Münchner Stadtmuseum / von Parish Kostümbibliothek +http://lobid.org/organisations/DE-M473#! DE-M473 M 473 Institut für Volkskunde der Kommission für bayerische Landesgeschichte bei der Bayerischen Akademie der Wissenschaften +http://lobid.org/organisations/DE-M474#! DE-M474 M 474 Deutsches Bucharchiv München, Institut für Buchwissenschaften, Gemeinnützige rechtsfähige Stiftung des bürgerlichen Rechts, Bibliothek +http://lobid.org/organisations/DE-Mb104#! DE-Mb104 Mb 104 Stiftung Deutsches Adelsarchiv, Bibliothek +http://lobid.org/organisations/DE-Mue212b#! DE-Mue212b Mü 212b Studienseminar für Lehrämter an Schulen - Münster II, Seminar für das Lehramt an Gymnasien und Gesamtschulen, Bibliothek +http://lobid.org/organisations/DE-N37#! DE-N37 N 37 Novartis Pharma GmbH, Wissenschaftliche Dokumentation & Information +http://lobid.org/organisations/DE-Na6#! DE-Na6 Na 6 Stadtbibliothek Naumburg/Saale +http://lobid.org/organisations/DE-Nbg20#! DE-Nbg20 Nbg 20 Stadtbibliothek Teterow +http://lobid.org/organisations/DE-Ne1#! DE-Ne1 Ne 1 Benediktinerabtei Neresheim, Bibliothek +http://lobid.org/organisations/DE-Nek1#! DE-Nek1 Nek 1 Katholische Öffentliche Bibliothek St. Anna +http://lobid.org/organisations/DE-Nel1#! DE-Nel1 Nel 1 Sport- und Jugendleiterschule Nellingen/Ruit, Bibliothek +http://lobid.org/organisations/DE-Of1#! DE-Of1 Of 1 DLM Deutsches Ledermuseum/Schuhmuseum Offenbach, Bibliothek +http://lobid.org/organisations/DE-Old3#! DE-Old3 Old 3 Evangelisch-Lutherischer Oberkirchenrat, Bibliothek +http://lobid.org/organisations/DE-Po62#! DE-Po62 Po 62 Max-Planck-Institut für Gravitationsphysik, Albert-Einstein-Institut, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-R131#! DE-R131 R 131 Stadtbibliothek Ribnitz-Damgarten +http://lobid.org/organisations/DE-R132#! DE-R132 R 132 Medien- und Informationszentrum Bergen auf Rügen +http://lobid.org/organisations/DE-Rav1#! DE-Rav1 Rav 1 Duale Hochschule Baden-Württemberg Ravensburg, Bibliothek +http://lobid.org/organisations/DE-Rs1#! DE-Rs1 Rs 1 Berufsakademie Sachsen, Staatliche Studienakademie Riesa, Bibliothek +http://lobid.org/organisations/DE-Sa2#! DE-Sa2 Sa 2 Landgericht Saarbrücken, Bibliothek +http://lobid.org/organisations/DE-Se1#! DE-Se1 Se 1 Von und zur Mühlensche Bibliothek / Nünning +http://lobid.org/organisations/DE-Shw28#! DE-Shw28 Shw 28 Stadtbibliothek Parchim +http://lobid.org/organisations/DE-Sp2#! DE-Sp2 Sp 2 Bibliothek St. German +http://lobid.org/organisations/DE-Stg10#! DE-Stg10 Stg 10 Fraunhofer-Informationszentrum Raum und Bau IRB, Bibliothek +http://lobid.org/organisations/DE-Stg115#! DE-Stg115 Stg 115 Ministerium für Finanzen und Wirtschaft Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Stg116#! DE-Stg116 Stg 116 Landessozialgericht, Bibliothek +http://lobid.org/organisations/DE-Stg260#! DE-Stg260 Stg 260 Haus der Heimat des Landes Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Sto2#! DE-Sto2 Sto 2 Stadtbibliothek Stollberg +http://lobid.org/organisations/DE-Str1#! DE-Str1 Str 1 Johannes-Turmair-Gymnasium, Bibliothek +http://lobid.org/organisations/DE-To5#! DE-To5 To 5 Stadtbibliothek Teltow +http://lobid.org/organisations/DE-Tor4#! DE-Tor4 Tor 4 Stadtbibliothek Torgau +http://lobid.org/organisations/DE-Tue132#! DE-Tue132 Tü 132 Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung, Standort Ettlingen, Bibliothek +http://lobid.org/organisations/DE-Wal1#! DE-Wal1 Wal 1 Hollenberg-Gymnasium, Lehrerbücherei +http://lobid.org/organisations/DE-Wan2#! DE-Wan2 Wan 2 Stadt- und Kreisbibliothek Wanzleben +http://lobid.org/organisations/DE-War2#! DE-War2 War 2 Stadtbibliothek Waren +http://lobid.org/organisations/DE-Wb6#! DE-Wb6 Wb 6 Stadtbibliothek Wittenberg +http://lobid.org/organisations/DE-Wbe4#! DE-Wbe4 Wbe 4 Stadtbibliothek 'Martin Andersen Nexö' Wittenberge +http://lobid.org/organisations/DE-We4#! DE-We4 We 4 Stadtbibliothek Wernigerode +http://lobid.org/organisations/DE-We5#! DE-We5 We 5 Stadtbibliothek Ilsenburg +http://lobid.org/organisations/DE-Wi16#! DE-Wi16 Wi 16 Hessischer Landtag, Bibliothek +http://lobid.org/organisations/DE-Woh1#! DE-Woh1 Woh 1 Kreis- und Schulbibliothek Wolfhagen +http://lobid.org/organisations/DE-Wro1#! DE-Wro1 Wro 1 Geistliches Rüstzentrum Krelingen der Ahldener Bruderschaft e.V., Bibliothek +http://lobid.org/organisations/DE-Wu3#! DE-Wu3 Wu 3 Stadt- und Kirchenbibliothek +http://lobid.org/organisations/DE-X1#! DE-X1 X 1 Katholische Propsteigemeinde St. Viktor Xanten, Stiftsbibliothek +http://lobid.org/organisations/DE-Z2#! DE-Z2 Z 2 Vereinigte Domstifter zu Merseburg und Naumburg und des Kollegiatstifts Zeitz, Stiftsbibliothek und Stiftsarchiv Zeitz +http://lobid.org/organisations/DE-Zl1#! DE-Zl1 Zl 1 Fürstlich Waldburg-Zeil'sche Bibliothek +http://lobid.org/organisations/DE-Zwa1#! DE-Zwa1 Zwa 1 Bibliothek am Meer +http://lobid.org/organisations/DE-1109#! DE-1109 1109 Stadt- und Schulbibliothek Dommitzsch +http://lobid.org/organisations/DE-R133#! DE-R133 R 133 Max-Planck-Institut für Demografische Forschung, Bibliothek +http://lobid.org/organisations/DE-D267#! DE-D267 D 267 Max-Planck-Institut für Molekulare Zellbiologie und Genetik, Bibliothek +http://lobid.org/organisations/DE-Stg268#! DE-Stg268 Stg 268 Staatliche Akademie der Bildenden Künste Stuttgart, Bibliothek +http://lobid.org/organisations/DE-Ds114-4#! DE-Ds114-4 Ds 114/4 Bibliothek der Hochschule Darmstadt, Teilbibliothek Dieburg +http://lobid.org/organisations/DE-Sa20#! DE-Sa20 Sa 20 Landtag des Saarlandes, Bibliothek +http://lobid.org/organisations/DE-Bm40#! DE-Bm40 Bm 40 Hochschule Bochum, Hochschulbibliothek +http://lobid.org/organisations/DE-836#! DE-836 836 FH Münster, Hochschulbibliothek +http://lobid.org/organisations/DE-1044#! DE-1044 1044 Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg +http://lobid.org/organisations/DE-Bm3#! DE-Bm3 Bm 3 Bibliothek des Ruhrgebiets +http://lobid.org/organisations/DE-Y4#! DE-Y4 Y 4 Max-Planck-Institut für Psycholinguistik, Bibliothek +http://lobid.org/organisations/DE-110#! DE-110 110 Fürstliche Bibliothek Corvey +http://lobid.org/organisations/DE-R104#! DE-R104 R 104 Bundesamt für Seeschifffahrt und Hydrographie, Bibliothek Rostock +http://lobid.org/organisations/DE-1119#! DE-1119 1119 Samtgemeindebücherei Hollenstedt +http://lobid.org/organisations/DE-93-219#! DE-93-219 93/219 Universität Stuttgart, Internationales Zentrum für Kultur- und Technikforschung, Bibliothek +http://lobid.org/organisations/DE-Kow2#! DE-Kow2 Kow 2 Haus Schlesien, Bibliothek +http://lobid.org/organisations/DE-82-637#! DE-82-637 82/637 Sprachenzentrum der Philosophischen Fakultät der RWTH Aachen, Bibliothek +http://lobid.org/organisations/DE-Gen4#! DE-Gen4 Gen 4 Stadtarchiv Genthin, Bibliothek +http://lobid.org/organisations/DE-Ds202#! DE-Ds202 Ds 202 EUMETSAT Bibliothek +http://lobid.org/organisations/DE-Pir9#! DE-Pir9 Pir 9 Stadtarchiv Pirna +http://lobid.org/organisations/DE-Sol1#! DE-Sol1 Sol 1 Stadtarchiv Solingen, Bibliothek +http://lobid.org/organisations/DE-Ueb1#! DE-Ueb1 Ueb 1 Schule Schloss Salem / Salem International College, Bibliothek +http://lobid.org/organisations/DE-Neun2#! DE-Neun2 Neun 2 Stadtarchiv Kreisstadt Neunkirchen, Archivische Präsenzbibliothek +http://lobid.org/organisations/CH-000805-8#! CH-000805-8 CH-Zue223 Universität Zürich, Asien-Orient-Institut, Ostasienwissenschaften, Chinesische Bibliothek +http://lobid.org/organisations/DE-294-65#! DE-294-65 294/65 Herz- und Diabeteszentrum Nordrhein-Westfalen - Universitätsklinik der Ruhr-Universität Bochum, Medizinische Bibliothek +http://lobid.org/organisations/DE-82-720#! DE-82-720 82/720 Flugmedizin, Bibliothek +http://lobid.org/organisations/DE-B1541#! DE-B1541 B 1541 GrauZone - Archiv der ostdeutschen Frauenbewegung +http://lobid.org/organisations/DE-Sa24#! DE-Sa24 Sa 24 FrauenGenderBibliothek Saar +http://lobid.org/organisations/DE-B1542#! DE-B1542 B 1542 Genderbibliothek/Information/Dokumentation am Zentrum für transdisziplinäre Geschlechterstudien an der Humboldt-Universität zu Berlin +http://lobid.org/organisations/DE-Po82#! DE-Po82 Po 82 Leibniz-Zentrum für Zeithistorische Forschung Potsdam, Bibliothek +http://lobid.org/organisations/DE-Aug5#! DE-Aug5 Aug 5 Frauenzentrum Augsburg e.V., Bibliothek +http://lobid.org/organisations/DE-Ch103#! DE-Ch103 Ch 103 Sächsisches Industriemuseum Chemnitz, Bibliothek +http://lobid.org/organisations/DE-L324#! DE-L324 L 324 Louise-Otto-Peters-Archiv +http://lobid.org/organisations/DE-B48#! DE-B48 B 48 Bundesamt für Soziale Sicherung (BAS), Bibliothek +http://lobid.org/organisations/DE-B11i#! DE-B11i B 11i Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Kunstgewerbemuseum, Bibliothek +http://lobid.org/organisations/DE-A98#! DE-A98 A 98 Diözesanbibliothek im Katechetischen Institut +http://lobid.org/organisations/DE-Stg273#! DE-Stg273 Stg 273 Verein für Familienkunde in Baden-Württemberg e.V., Vereinsbücherei +http://lobid.org/organisations/DE-Bed1#! DE-Bed1 Bed 1 Museumsbibliothek der Stiftung Museum Schloss Moyland, Sammlung van der Grinten, Joseph Beuys Archiv des Landes Nordrhein-Westfalen +http://lobid.org/organisations/DE-26-061#! DE-26-061 26/061 Universität Gießen, Testothek des Fachgebiets Psychologie +http://lobid.org/organisations/DE-1151#! DE-1151 1151 Kreisarchiv Schwäbisch Hall, Bibliothek +http://lobid.org/organisations/DE-Frei205#! DE-Frei205 Frei 205 Walter-Vetter-Archiv +http://lobid.org/organisations/DE-1154#! DE-1154 1154 Stadtbücherei Konstanz +http://lobid.org/organisations/DE-291-819#! DE-291-819 291/819 Universität des Saarlandes, Frankreichzentrum (Pôle France), Bibliothek +http://lobid.org/organisations/DE-Aug6#! DE-Aug6 Aug 6 Bukowina-Institut an der Universität Augsburg, Bibliothek +http://lobid.org/organisations/DE-B4-360#! DE-B4-360 B 4/360 Berlin-Brandenburgische Akademie der Wissenschaften, Akademiebibliothek, Teilbibliothek Altorientalistik +http://lobid.org/organisations/DE-B171#! DE-B171 B 171 Stiftung Stadtmuseum Berlin, Bibliothek +http://lobid.org/organisations/DE-M347#! DE-M347 M 347 Hochschule München, Bibliothek +http://lobid.org/organisations/DE-1156#! DE-1156 1156 Folkwang Universität der Künste | Bibliothek +http://lobid.org/organisations/DE-Ess6#! DE-Ess6 Ess 6 Kreisarchiv Esslingen +http://lobid.org/organisations/DE-1163#! DE-1163 1163 Stadtbücherei Nidderau +http://lobid.org/organisations/DE-1166#! DE-1166 1166 Stadtbibliothek Seelze +http://lobid.org/organisations/DE-1171#! DE-1171 1171 Samtgemeindebücherei Lüchow +http://lobid.org/organisations/DE-1173#! DE-1173 1173 Stadtbücherei Stadthagen +http://lobid.org/organisations/DE-1177#! DE-1177 1177 Stadtbücherei Seesen +http://lobid.org/organisations/DE-1180#! DE-1180 1180 Stadtbücherei St. Walburga +http://lobid.org/organisations/DE-1182#! DE-1182 1182 Gemeindebücherei Langerwehe +http://lobid.org/organisations/DE-1183#! DE-1183 1183 Stadtbibliothek Rotenburg/Wümme +http://lobid.org/organisations/DE-1185#! DE-1185 1185 Gemeindebücherei Limburgerhof +http://lobid.org/organisations/DE-Dne1#! DE-Dne1 Dne 1 Fürstenberg-Gymnasium Donaueschingen, Historische Bibliothek +http://lobid.org/organisations/DE-1187#! DE-1187 1187 Samtgemeindebibliothek +http://lobid.org/organisations/DE-1193#! DE-1193 1193 Stadtbücherei Bückeburg +http://lobid.org/organisations/DE-1195#! DE-1195 1195 Gemeindebücherei Südheide +http://lobid.org/organisations/DE-Sul1#! DE-Sul1 Sul 1 Evangelische Michaelsbruderschaft, Bibliothek +http://lobid.org/organisations/DE-82-230#! DE-82-230 82/230 Lehr- und Forschungsgebiet Abfallwirtschaft, Bibliothek +http://lobid.org/organisations/DE-1212#! DE-1212 1212 Gemeindebücherei Ritterhude +http://lobid.org/organisations/DE-18-305#! DE-18-305 18/305 Universität Hamburg, Fachbereichsbibliothek Biologie, Standort Klein Flottbek +http://lobid.org/organisations/DE-1217#! DE-1217 1217 Bücherei im Rathaus Neu Wulmstorf +http://lobid.org/organisations/DE-1219#! DE-1219 1219 Samtgemeindebücherei Hankensbüttel +http://lobid.org/organisations/DE-1222#! DE-1222 1222 Stadtbücherei St. Martinus Kerpen +http://lobid.org/organisations/DE-1223#! DE-1223 1223 Stadtbibliothek Worbis +http://lobid.org/organisations/DE-1225#! DE-1225 1225 Stadt- und Kurbibliothek J.F.W. Zachariä +http://lobid.org/organisations/DE-1230#! DE-1230 1230 Öffentliche Bücherei Raesfeld +http://lobid.org/organisations/DE-Heu1#! DE-Heu1 Heu 1 Schriftgut-Archiv-Ostwürttemberg +http://lobid.org/organisations/DE-Cra1#! DE-Cra1 Cra 1 Arbeitsgericht Heilbronn - Kammern Crailsheim, Bibliothek +http://lobid.org/organisations/DE-He212#! DE-He212 He 212 Arbeitsgericht Mannheim - Kammern Heidelberg, Bibliothek +http://lobid.org/organisations/DE-Ka91#! DE-Ka91 Ka 91 Arbeitsgericht Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-1239#! DE-1239 1239 Stadtbibliothek Schleiz ""Dr. Konrad Duden"" +http://lobid.org/organisations/DE-1241#! DE-1241 1241 Stadtbibliothek Bilke Pößneck +http://lobid.org/organisations/AT-BKA#! AT-BKA AT-BKA Bundeskanzleramt, Administrative Bibliothek des Bundes +http://lobid.org/organisations/AT-BMA#! AT-BMA AT-BMA Bundesministerium für europäische und internationale Angelegenheiten, Aussenpolitische Bibliothek (Amtsbibliothek des BMEIA) +http://lobid.org/organisations/AT-AGWI#! AT-AGWI AT-AGWI Bundesanstalt für Agrarwirtschaft und Bergbauernfragen, Bibliothek +http://lobid.org/organisations/AT-UBL-HB#! AT-UBL-HB AT-UBL-HB Universität Linz, Universitätsbibliothek, Hauptbibliothek +http://lobid.org/organisations/AT-UBMUW-100#! AT-UBMUW-100 AT-UBMUW-100 Medizinische Universität Wien, Hauptbibliothek +http://lobid.org/organisations/AT-UBBW-HB#! AT-UBBW-HB AT-UBBW-HB Universität für Bodenkultur Wien, Hauptbibliothek +http://lobid.org/organisations/AT-UBVUW-UB#! AT-UBVUW-UB AT-UBVUW-UB Veterinärmedizinische Universität Wien, Hauptbibliothek +http://lobid.org/organisations/AT-UBWW-HB#! AT-UBWW-HB AT-UBWW-HB WU (Wirtschaftsuniversität Wien), Universitätsbibliothek, Bibliothekszentrum +http://lobid.org/organisations/AT-UBMS-HB#! AT-UBMS-HB AT-UBMS-HB Universität Mozarteum Salzburg, Universitätsbibliothek, Hauptbibliothek +http://lobid.org/organisations/AT-MAKW#! AT-MAKW AT-MAKW Österreichisches Museum für angewandte Kunst, Bibliothek +http://lobid.org/organisations/AT-LBST#! AT-LBST AT-LBST Steiermärkische Landesbibliothek +http://lobid.org/organisations/AT-FERD#! AT-FERD AT-FERD Tiroler Landesmuseum Ferdinandeum, Bibliothek +http://lobid.org/organisations/DE-Re6#! DE-Re6 Re 6 Sudetendeutsches Musikinstitut, Bibliothek +http://lobid.org/organisations/DE-235#! DE-235 235 Wissenschaftliche Stadtbibliothek Ingolstadt +http://lobid.org/organisations/DE-M499#! DE-M499 M 499 Kommission für bayerische Landesgeschichte bei der Bayerischen Akademie der Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-70#! DE-70 70 Landesbibliothek Coburg +http://lobid.org/organisations/DE-M472#! DE-M472 M 472 Hochschule für Fernsehen und Film, Bibliothek +http://lobid.org/organisations/DE-M493#! DE-M493 M 493 Die Neue Sammlung, Staatliches Museum für angewandte Kunst, Design in der Pinakothek der Moderne, Bibliothek +http://lobid.org/organisations/DE-M487#! DE-M487 M 487 Bayerisches Staatsministerium für Wohnen, Bau und Verkehr, Bibliothek +http://lobid.org/organisations/DE-30-326#! DE-30-326 30/326 Universität Frankfurt, Zentrum für Kinder- und Jugendmedizin, Klinik für Psychiatrie, Psychosomatik und Psychotherapie des Kindes- und Jugendalters +http://lobid.org/organisations/DE-578-876#! DE-578-876 578/876 Charité - Universitätsmedizin Berlin, Institut für Geschichte der Medizin und Ethik in der Medizin, Medical Humanities: Bibliothek für Geschichte der Medizin und Soziale Medizin +http://lobid.org/organisations/DE-1249#! DE-1249 1249 Stadtbücherei Pfarrkirchen +http://lobid.org/organisations/DE-82-008#! DE-82-008 82/008 Die Gleichstellungsbeauftragte, Bibliothek +http://lobid.org/organisations/DE-Atg1#! DE-Atg1 Atg 1 Bayerische Musikakademie Schloß Alteglofsheim, Musikbibliothek/Mediathek +http://lobid.org/organisations/DE-1251#! DE-1251 1251 Hochschule der Bundesagentur für Arbeit, Bibliothek +http://lobid.org/organisations/DE-1253#! DE-1253 1253 Kreisbücherei Ilsede +http://lobid.org/organisations/DE-Abg1#! DE-Abg1 Abg 1 Herzogskasten Stadtmuseum Abensberg, Bibliothek +http://lobid.org/organisations/AT-UBG-SH#! AT-UBG-SH AT-UBG-SH Universität Graz, Universitätsbibliothek, Fachbibliothek für Mathematik +http://lobid.org/organisations/DE-M501#! DE-M501 M 501 Bayerische Staatskanzlei, Büchereiverwaltung +http://lobid.org/organisations/DE-82-011#! DE-82-011 82/011 FIR - Forschungsinstitut für Rationalisierung e.V., Bibliothek +http://lobid.org/organisations/DE-1263#! DE-1263 1263 Kupferschmiede Beeskow e.V., Stadtbibliothek +http://lobid.org/organisations/DE-Aib1#! DE-Aib1 Aib 1 Historischer Verein Bad Aibling und Umgebung, Archiv +http://lobid.org/organisations/DE-Dau1#! DE-Dau1 Dau 1 Stadtarchiv Dachau +http://lobid.org/organisations/DE-Erd1#! DE-Erd1 Erd 1 Stadtarchiv Erding +http://lobid.org/organisations/DE-Freis3#! DE-Freis3 Freis 3 Stadtarchiv Freising +http://lobid.org/organisations/DE-B1570#! DE-B1570 B 1570 Hertie School, Library and Information Services +http://lobid.org/organisations/DE-Due74#! DE-Due74 Dü 74 Hans-Böckler-Stiftung, Bibliothek +http://lobid.org/organisations/DE-Prn1#! DE-Prn1 Prn 1 Marktarchiv Prien a. Chiemsee +http://lobid.org/organisations/DE-Rhm1#! DE-Rhm1 Rhm 1 Stadtarchiv Rosenheim +http://lobid.org/organisations/DE-Scho1#! DE-Scho1 Scho 1 Stadtarchiv Schongau +http://lobid.org/organisations/DE-Woz1#! DE-Woz1 Woz 1 Archiv des Marktes Wolnzach +http://lobid.org/organisations/DE-Do2#! DE-Do2 Do 2 Stadtarchiv Donauwörth +http://lobid.org/organisations/DE-Frd1#! DE-Frd1 Frd 1 Stadtarchiv Friedberg +http://lobid.org/organisations/DE-Fs1#! DE-Fs1 Fs 1 Stadtarchiv Füssen +http://lobid.org/organisations/DE-82-336#! DE-82-336 82/336 Lehrstuhl für Medizintechnik, Bibliothek +http://lobid.org/organisations/DE-Khb1#! DE-Khb1 Khb 1 Marktarchiv Kühbach +http://lobid.org/organisations/DE-Mem1#! DE-Mem1 Mem 1 Stadtarchiv Memmingen +http://lobid.org/organisations/DE-Scha1#! DE-Scha1 Scha 1 Stadtarchiv Schwabmünchen +http://lobid.org/organisations/DE-Schg1#! DE-Schg1 Schg 1 Stadtarchiv Schwangau +http://lobid.org/organisations/DE-Aug12#! DE-Aug12 Aug 12 Bistumsgeschichtliche Bibliothek +http://lobid.org/organisations/DE-Dkb1#! DE-Dkb1 Dkb 1 Stadtarchiv Dinkelsbühl +http://lobid.org/organisations/DE-Elg1#! DE-Elg1 Elg 1 Stadtarchiv Ellingen +http://lobid.org/organisations/DE-Feu1#! DE-Feu1 Feu 1 Stadtarchiv Feuchtwangen +http://lobid.org/organisations/DE-Lid1#! DE-Lid1 Lid 1 Archiv der evangelischen Hospitalstiftung Lindau (Bodensee) +http://lobid.org/organisations/DE-1274#! DE-1274 1274 Zentralbücherei der Verbandsgemeinde Waldfischbach-Burgalben +http://lobid.org/organisations/DE-Aze1#! DE-Aze1 Aze 1 Stadtarchiv Alzenau +http://lobid.org/organisations/DE-Kiz1#! DE-Kiz1 Kiz 1 Stadtarchiv Kitzingen +http://lobid.org/organisations/DE-Klg1#! DE-Klg1 Klg 1 Stadtarchiv Klingenberg +http://lobid.org/organisations/DE-82-772#! DE-82-772 82/772 Institut für Kardiovaskuläre Molekularbiologie, Bibliothek +http://lobid.org/organisations/DE-Bgb1#! DE-Bgb1 Bgb 1 Marktarchiv Burgebrach +http://lobid.org/organisations/DE-Kro1#! DE-Kro1 Kro 1 Stadtarchiv Kronach +http://lobid.org/organisations/DE-Mbg1#! DE-Mbg1 Mbg 1 Stadtarchiv Münchberg +http://lobid.org/organisations/DE-Grf1#! DE-Grf1 Grf 1 Stadtarchiv Grafenau +http://lobid.org/organisations/DE-Mu1#! DE-Mu1 Mu 1 Wehrwissenschaftliches Institut für Schutztechnologien - ABC-Schutz, Fachinformationsstelle +http://lobid.org/organisations/DE-Lad1#! DE-Lad1 Lad 1 Stadtarchiv Landau a.d.Isar +http://lobid.org/organisations/DE-Lsh2#! DE-Lsh2 Lsh 2 Stadtarchiv Landshut +http://lobid.org/organisations/DE-Pas1#! DE-Pas1 Pas 1 Stadtarchiv Passau +http://lobid.org/organisations/DE-Pok1#! DE-Pok1 Pok 1 Stadtarchiv Pocking +http://lobid.org/organisations/DE-Rtb1#! DE-Rtb1 Rtb 1 Stadtarchiv Rottenburg a.d.Laaber +http://lobid.org/organisations/DE-Nab1#! DE-Nab1 Nab 1 Stadtarchiv Nabburg +http://lobid.org/organisations/DE-1279#! DE-1279 1279 Stadtbibliothek Münchberg +http://lobid.org/organisations/DE-Kau2#! DE-Kau2 Kau 2 Evangelisches Kirchenarchiv Kaufbeuren +http://lobid.org/organisations/DE-1281#! DE-1281 1281 Stadtbibliothek Gießen +http://lobid.org/organisations/DE-Laf1#! DE-Laf1 Laf 1 Stadtarchiv Lauf +http://lobid.org/organisations/DE-1283#! DE-1283 1283 Stadtbibliothek Idar-Oberstein +http://lobid.org/organisations/DE-Grv1#! DE-Grv1 Grv 1 Alte Pfarrbibliothek der Katholischen Pfarrei St. Georg Grevenbroich-Neu-Elfgen +http://lobid.org/organisations/DE-1319#! DE-1319 1319 Bücherei³ Bingen +http://lobid.org/organisations/DE-600#! DE-600 600 Zeitschriftendatenbank (ZDB) +http://lobid.org/organisations/DE-1320#! DE-1320 1320 Zentralbücherei Prüm +http://lobid.org/organisations/DE-1321#! DE-1321 1321 Gemeindebücherei Bellheim +http://lobid.org/organisations/DE-1323#! DE-1323 1323 Stadtbücherei Kandel +http://lobid.org/organisations/DE-1324#! DE-1324 1324 Stadtbücherei Bad Urach +http://lobid.org/organisations/DE-1326#! DE-1326 1326 Gemeindebücherei Haßloch +http://lobid.org/organisations/DE-E16#! DE-E16 E 16 Stiftung Buch und Wissen, Bibliothek +http://lobid.org/organisations/DE-Huer2#! DE-Huer2 Hür 2 Bundessprachenamt, Fachinformationsstelle, Bibliothek und Phonothek +http://lobid.org/organisations/DE-1333#! DE-1333 1333 Stadtbücherei Bramsche +http://lobid.org/organisations/DE-1334#! DE-1334 1334 Stadtbibliothek Nassau +http://lobid.org/organisations/DE-Has1#! DE-Has1 Has 1 Stadtarchiv Haßfurt +http://lobid.org/organisations/DE-1288#! DE-1288 1288 Stadtbibliothek Bad Tölz +http://lobid.org/organisations/DE-1297#! DE-1297 1297 Gemeindebücherei Gauting +http://lobid.org/organisations/DE-1298#! DE-1298 1298 Stadtbibliothek Germering +http://lobid.org/organisations/DE-1302#! DE-1302 1302 Stadtbücherei Krumbach +http://lobid.org/organisations/DE-1303#! DE-1303 1303 Stadtbibliothek Landsberg im Lechstadel +http://lobid.org/organisations/DE-1344#! DE-1344 1344 Merz Akademie, Hochschule für Gestaltung, Kunst und Medien, Stuttgart, staatlich anerkannt, Bibliothek +http://lobid.org/organisations/DE-1348#! DE-1348 1348 Stadtbibliothek Rheinfelden +http://lobid.org/organisations/DE-A99#! DE-A99 A 99 mikado, Missionsbibliothek und katholische Dokumentationsstelle +http://lobid.org/organisations/DE-18-310#! DE-18-310 18/310 Universität Hamburg, Testbibliothek der Fakultät Erziehungswissenschaft, Psychologie und Bewegungswissenschaft +http://lobid.org/organisations/DE-M507#! DE-M507 M 507 Städtische Galerie im Lenbachhaus und Kunstbau München, Bibliothek +http://lobid.org/organisations/DE-Kn38-T#! DE-Kn38-T Kn 38/T Hochschule für Musik und Tanz Köln, Zentrum für Zeitgenössischen Tanz, Bibliothek +http://lobid.org/organisations/DE-1351#! DE-1351 1351 Kreisbibliothek im Berufsschulzentrum Nagold +http://lobid.org/organisations/DE-B43#! DE-B43 B 43 Bundesanstalt für Materialforschung und -prüfung (BAM), Bibliothek +http://lobid.org/organisations/DE-1405#! DE-1405 1405 Stadtbücherei Bobingen +http://lobid.org/organisations/DE-1407#! DE-1407 1407 Stadtbibliothek Burglengenfeld +http://lobid.org/organisations/DE-1412#! DE-1412 1412 Gemeindebücherei Feldkirchen +http://lobid.org/organisations/DE-1414#! DE-1414 1414 Stadtbücherei Furth i. Wald +http://lobid.org/organisations/DE-1804#! DE-1804 1804 Stadtbücherei Bad Staffelstein +http://lobid.org/organisations/DE-1423#! DE-1423 1423 Gemeindebücherei Karlstein a. Main +http://lobid.org/organisations/DE-1425#! DE-1425 1425 Stadtbücherei Königsbrunn +http://lobid.org/organisations/DE-1426#! DE-1426 1426 Stadtbücherei Lauingen (Donau) +http://lobid.org/organisations/DE-1433#! DE-1433 1433 Gemeindebücherei Peiting +http://lobid.org/organisations/DE-1436#! DE-1436 1436 Charlotte-Dessecker-Bücherei Pullach i. Isartal +http://lobid.org/organisations/DE-1437#! DE-1437 1437 Gemeindebücherei Sauerlach +http://lobid.org/organisations/DE-1439#! DE-1439 1439 Gemeindebücherei Schondorf +http://lobid.org/organisations/DE-1441#! DE-1441 1441 Stadtbücherei Schrobenhausen +http://lobid.org/organisations/DE-1801#! DE-1801 1801 Gemeindebücherei Halfing +http://lobid.org/organisations/DE-1799#! DE-1799 1799 Gemeinde- und Pfarrbücherei Unterthingau +http://lobid.org/organisations/DE-1798#! DE-1798 1798 Schul-, Gemeinde und Pfarrbücherei Dietmannsried +http://lobid.org/organisations/DE-1446#! DE-1446 1446 Gemeindebibliothek Unterföhring +http://lobid.org/organisations/DE-1795#! DE-1795 1795 Gemeindebücherei St. Michael Lauterhofen +http://lobid.org/organisations/DE-93-221#! DE-93-221 93/221 Universität Stuttgart, Höchstleistungsrechenzentrum Stuttgart, Bibliothek +http://lobid.org/organisations/DE-1460#! DE-1460 1460 Gemeindebücherei Olching +http://lobid.org/organisations/DE-1461#! DE-1461 1461 Gemeindebibliothek Ottobrunn +http://lobid.org/organisations/DE-1466#! DE-1466 1466 Gemeindebücherei Vaterstetten +http://lobid.org/organisations/DE-1474#! DE-1474 1474 Marktbücherei Igensdorf +http://lobid.org/organisations/DE-1483#! DE-1483 1483 Stadtbücherei Oberasbach +http://lobid.org/organisations/DE-1490#! DE-1490 1490 Gemeindebücherei Großostheim +http://lobid.org/organisations/DE-1495#! DE-1495 1495 Stadtbibliothek Marktheidenfeld +http://lobid.org/organisations/DE-1498#! DE-1498 1498 Stadtbücherei Schweinfurt +http://lobid.org/organisations/DE-1502#! DE-1502 1502 Gemeindebücherei Türkheim +http://lobid.org/organisations/DE-1506#! DE-1506 1506 Gemeindebücherei Ainring +http://lobid.org/organisations/DE-1516#! DE-1516 1516 Gemeindebibliothek im Pfarrstadel Buch am Erlbach +http://lobid.org/organisations/DE-1785#! DE-1785 1785 Katholische Öffentliche Bücherei Oberschwarzach +http://lobid.org/organisations/DE-1783#! DE-1783 1783 Gemeindebibliothek Burgkirchen +http://lobid.org/organisations/DE-1776#! DE-1776 1776 Katholische Öffentliche Bücherei Grosswallstadt +http://lobid.org/organisations/DE-1769#! DE-1769 1769 Katholische Öffentliche Bücherei Amorbach +http://lobid.org/organisations/DE-1768#! DE-1768 1768 Gemeindebücherei Wallersdorf +http://lobid.org/organisations/DE-1761#! DE-1761 1761 Gemeindebücherei Windorf +http://lobid.org/organisations/DE-1757#! DE-1757 1757 Katholische Öffentliche Bücherei Ruhstorf +http://lobid.org/organisations/DE-1756#! DE-1756 1756 Stadtbücherei Pocking +http://lobid.org/organisations/DE-1754#! DE-1754 1754 Gemeindebücherei Perach +http://lobid.org/organisations/DE-1752#! DE-1752 1752 Stadtbücherei Landau a.d. Isar, Ausleihstelle St. Johannes +http://lobid.org/organisations/DE-1742#! DE-1742 1742 Stadtbibliothek Puchheim +http://lobid.org/organisations/DE-1733#! DE-1733 1733 Katholische Öffentliche Bibliothek St. Martin +http://lobid.org/organisations/DE-1729#! DE-1729 1729 Bücherei Garmisch +http://lobid.org/organisations/DE-1719#! DE-1719 1719 Bücherei Pleinfeld +http://lobid.org/organisations/DE-1712#! DE-1712 1712 Stadtbücherei Senden +http://lobid.org/organisations/DE-1696#! DE-1696 1696 Gemeindebücherei Aschheim +http://lobid.org/organisations/DE-1517#! DE-1517 1517 Katholische Öffentliche Bücherei Burkardroth +http://lobid.org/organisations/DE-1518#! DE-1518 1518 Gemeindebücherei Dietramszell +http://lobid.org/organisations/DE-1520#! DE-1520 1520 Stadtbücherei Ebersberg +http://lobid.org/organisations/DE-1522#! DE-1522 1522 Bücherei der Stadt Eichstätt und des St. Michaelbundes +http://lobid.org/organisations/DE-1524#! DE-1524 1524 Gemeindebücherei Frickenhausen +http://lobid.org/organisations/DE-1682#! DE-1682 1682 Pfarr- und Gemeindebücherei +http://lobid.org/organisations/DE-1681#! DE-1681 1681 Gemeindebücherei im Kuramt Kreuth +http://lobid.org/organisations/DE-Stg113#! DE-Stg113 Stg 113 Max-Planck-Institute Stuttgart, Bibliothek +http://lobid.org/organisations/DE-B12#! DE-B12 B 12 Bundesinstitut für Risikobewertung, Bibliothek +http://lobid.org/organisations/DE-1542#! DE-1542 1542 Stadtbücherei Hofheim +http://lobid.org/organisations/DE-1661#! DE-1661 1661 Stadtbücherei Marktbreit +http://lobid.org/organisations/DE-1657#! DE-1657 1657 Stadtbücherei Starnberg +http://lobid.org/organisations/DE-1653#! DE-1653 1653 Gemeindebücherei Zusmarshausen +http://lobid.org/organisations/DE-1643#! DE-1643 1643 Gemeindebücherei Pettendorf +http://lobid.org/organisations/DE-1642#! DE-1642 1642 Stadtbücherei Neunburg +http://lobid.org/organisations/DE-1641#! DE-1641 1641 Katholische Öffentliche Bücherei Kirchenthumbach +http://lobid.org/organisations/DE-1630#! DE-1630 1630 Gemeindebücherei Arnstorf +http://lobid.org/organisations/DE-1620#! DE-1620 1620 Katholische Öffentliche Bücherei Wenigumstadt +http://lobid.org/organisations/DE-1619#! DE-1619 1619 Stadtbücherei Wassertrüdingen +http://lobid.org/organisations/DE-1613#! DE-1613 1613 Gemeindebücherei Velden +http://lobid.org/organisations/DE-1574#! DE-1574 1574 Schloss Neubeuern, Schulbibliothek +http://lobid.org/organisations/DE-1567#! DE-1567 1567 Gemeindebücherei Moosbach +http://lobid.org/organisations/DE-1559#! DE-1559 1559 Katholische Öffentliche Bücherei Maria Geburt Aschaffenburg +http://lobid.org/organisations/DE-1551#! DE-1551 1551 Katholische Öffentliche Bücherei Kumreut +http://lobid.org/organisations/DE-1534#! DE-1534 1534 Gemeindebücherei Güntersleben +http://lobid.org/organisations/DE-Bre15#! DE-Bre15 Bre 15 Stiftung Frauen-Literatur-Forschung e.V. +http://lobid.org/organisations/DE-101#! DE-101 101 Deutsche Nationalbibliothek +http://lobid.org/organisations/DE-1361#! DE-1361 1361 Stadtbibliothek Sinsheim +http://lobid.org/organisations/DE-Srb2#! DE-Srb2 Srb 2 Literaturarchiv Sulzbach-Rosenberg +http://lobid.org/organisations/DE-18-311#! DE-18-311 18/311 Konfuzius-Institut an der Universität Hamburg e.V., Bibliothek +http://lobid.org/organisations/DE-1427#! DE-1427 1427 Stadtbibliothek & Mediathek im KuK.Dettelbach +http://lobid.org/organisations/DE-578-e#! DE-578-e 578/e Charité - Universitätsmedizin Berlin, Medizinische Bibliothek, elektronische Zeitschriften +http://lobid.org/organisations/DE-1366#! DE-1366 1366 Öffentliche Bibliothek im Europagymnasium +http://lobid.org/organisations/ZDB-LU-100#! ZDB-LU-100 ZDB-LU-100 Cid - Fraen an Gender +http://lobid.org/organisations/DE-1367#! DE-1367 1367 Stadtbücherei Zülpich +http://lobid.org/organisations/DE-4041#! DE-4041 Mikrofilmarchiv der Deutschsprachigen Presse e. V. +http://lobid.org/organisations/DE-Kn41-49#! DE-Kn41-49 Kn 41/49 Deutsche Sporthochschule Köln, Institut für Bewegungs- und Sportgerontologie +http://lobid.org/organisations/DE-Bd11#! DE-Bd11 Bd 11 Brandenburgisches Oberlandesgericht, Bibliothek +http://lobid.org/organisations/DE-1369#! DE-1369 1369 Stadtbücherei Aichtal +http://lobid.org/organisations/DE-26-990#! DE-26-990 26/990 Universität Gießen, Gießener Elektronische Bibliothek +http://lobid.org/organisations/DE-1370#! DE-1370 1370 Stadtbibliothek Mannheim +http://lobid.org/organisations/DE-1371#! DE-1371 1371 Stadtbücherei Wörth am Rhein +http://lobid.org/organisations/DE-Ig2#! DE-Ig2 Ig 2 Deutsches Medizinhistorisches Museum, Bibliothek +http://lobid.org/organisations/DE-1374#! DE-1374 1374 Katholische Öffentliche Bücherei St. Georg +http://lobid.org/organisations/DE-1377#! DE-1377 1377 Europäische Fachhochschule Rhein/Erft GmbH (EUFH), Bibliothek +http://lobid.org/organisations/DE-Po84#! DE-Po84 Po 84 Theodor-Fontane-Archiv Universität Potsdam +http://lobid.org/organisations/DE-B1581#! DE-B1581 B 1581 Ecologic Institute, Library +http://lobid.org/organisations/DE-Zlp1#! DE-Zlp1 Zlp 1 Stadtarchiv Zülpich, Bibliothek +http://lobid.org/organisations/DE-Hil6#! DE-Hil6 Hil 6 Dombibliothek Hildesheim +http://lobid.org/organisations/DE-Mb108#! DE-Mb108 Mb 108 Forschungsstelle für Personalschriften an der Philipps-Universität Marburg +http://lobid.org/organisations/DE-1380#! DE-1380 1380 Stadtbibliothek Annaburg +http://lobid.org/organisations/DE-Dbg1#! DE-Dbg1 Dbg 1 Stadtarchiv Bad Dürrenberg +http://lobid.org/organisations/DE-Bit7#! DE-Bit7 Bit 7 Stadtarchiv Wolfen +http://lobid.org/organisations/DE-MUS-735711#! DE-MUS-735711 Brg 7 Historische Gerberei +http://lobid.org/organisations/DE-Bmk1#! DE-Bmk1 Bmk 1 Stadtarchiv Bismark +http://lobid.org/organisations/DE-MUS-812011#! DE-MUS-812011 De 18 Schloß Wörlitz +http://lobid.org/organisations/DE-MUS-804119#! DE-MUS-804119 Frey 2 Kulturstiftung Sachsen-Anhalt, Museum Schloss Neuenburg +http://lobid.org/organisations/DE-MUS-807014#! DE-MUS-807014 Kt 6 Historisches Museum für Mittelanhalt +http://lobid.org/organisations/DE-Wb14#! DE-Wb14 Wb 14 Städtische Sammlungen, Ratsarchiv +http://lobid.org/organisations/DE-MUS-809812#! DE-MUS-809812 San 6 Spengler-Museum und Spengler-Haus Sangerhausen +http://lobid.org/organisations/DE-Sho6#! DE-Sho6 Sho 6 Stadtarchiv Schönebeck +http://lobid.org/organisations/DE-Ta3#! DE-Ta3 Ta 3 Stadtarchiv Tangerhütte +http://lobid.org/organisations/DE-Ze4#! DE-Ze4 Ze 4 Stadtarchiv Zerbst +http://lobid.org/organisations/DE-W93#! DE-W93 W 93 Verwaltungsgericht Würzburg, Bibliothek +http://lobid.org/organisations/DE-Grb1#! DE-Grb1 Grb 1 Museums- und Bürgerhaus Gerbstedt, Bibliothek +http://lobid.org/organisations/DE-Hs8#! DE-Hs8 Hs 8 Historisches Archiv der Stadt Halberstadt +http://lobid.org/organisations/DE-Ws9#! DE-Ws9 Ws 9 Agricolagymnasium Hohenmölsen, Bibliothek +http://lobid.org/organisations/DE-Laa1#! DE-Laa1 Laa 1 Stadtarchiv Laucha +http://lobid.org/organisations/DE-MUS-807514#! DE-MUS-807514 Ltz 1 Museum im Schloß +http://lobid.org/organisations/DE-Mln1#! DE-Mln1 Mln 1 Stadtarchiv Mücheln +http://lobid.org/organisations/DE-MUS-809312#! DE-MUS-809312 Ha 180 Museum Burg Querfurt +http://lobid.org/organisations/DE-MUS-043423#! DE-MUS-043423 Sdl 1 Stadtmuseum Sandersleben +http://lobid.org/organisations/DE-MUS-444717#! DE-MUS-444717 Spl 1 Heimatmuseum Schraplau +http://lobid.org/organisations/DE-Sts2#! DE-Sts2 Sts 1 Heimatverein Stößen +http://lobid.org/organisations/DE-Teu1#! DE-Teu1 Teu 1 Heimatverein Teuchern +http://lobid.org/organisations/DE-MUS-810911#! DE-MUS-810911 Wef 1 Heimat- und Apothekenmuseum Weferlingen +http://lobid.org/organisations/DE-B1582#! DE-B1582 B 1582 Bibliothek des Konservatismus +http://lobid.org/organisations/DE-Bru1#! DE-Bru1 Bru 1 Staatliche Schlösser und Gärten Baden-Württemberg, Bibliothek +http://lobid.org/organisations/DE-Bs90#! DE-Bs90 Bs 90 Friedrich-Loeffler-Institut, Bundesforschungsinstitut für Tiergesundheit, Institut für Tierernährung, Bibliothek +http://lobid.org/organisations/DE-1393#! DE-1393 1393 Hochschule Ruhr West, Hochschulbibliothek +http://lobid.org/organisations/DE-Re12#! DE-Re12 Re 12 Bayerische Staatsforsten AöR, Bibliothek +http://lobid.org/organisations/DE-1813#! DE-1813 1813 Gemeindebücherei Bruckmühl +http://lobid.org/organisations/DE-B16#! DE-B16 B 16 Museum für Naturkunde, Leibniz-Institut für Evolutions- und Biodiversitätsforschung, Bibliothek +http://lobid.org/organisations/DE-77-083#! DE-77-083 77/083 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Historische Kulturwissenschaften +http://lobid.org/organisations/DE-Dkh1#! DE-Dkh1 Dkh 1 Stadtarchiv Bad Dürkheim +http://lobid.org/organisations/DE-Ml2#! DE-Ml2 Ml 2 Stadtarchiv Bad Münstereifel +http://lobid.org/organisations/DE-82-715a#! DE-82-715a 82/715a Klinik für Kinder- und Jugendpsychiatrie und -psychotherapie, Abt. Bethlehem-Krankenhaus, Bibliothek +http://lobid.org/organisations/DE-Brs1#! DE-Brs1 Brs 1 Blaues Haus Breisach, Bibliothek +http://lobid.org/organisations/DE-1116-DLR#! DE-1116-DLR 1116/DLR Dienstleistungszentrum Ländlicher Raum, Bibliothek +http://lobid.org/organisations/DE-210A#! DE-210A 210 A Deutsches Museum, Archiv +http://lobid.org/organisations/DE-Diz1#! DE-Diz1 Diz 1 Stadtarchiv Ditzingen +http://lobid.org/organisations/DE-Eib2#! DE-Eib2 Eib 2 Stadtverwaltung Eisenberg, Stadtarchiv +http://lobid.org/organisations/DE-Ged1#! DE-Ged1 Ged 1 Kreisarchiv Kleve +http://lobid.org/organisations/DE-Gld1#! DE-Gld1 Gld 1 Stadtarchiv Gladbeck +http://lobid.org/organisations/DE-Gos7#! DE-Gos7 Gos 7 Stadtarchiv Goslar +http://lobid.org/organisations/DE-Gtl1#! DE-Gtl1 Gtl 1 Stadtarchiv Gütersloh +http://lobid.org/organisations/DE-Kem1#! DE-Kem1 Kem 1 Kreisarchiv Viersen +http://lobid.org/organisations/DE-Knz1#! DE-Knz1 Knz 1 Stadtarchiv Künzelsau +http://lobid.org/organisations/DE-Ldb1#! DE-Ldb1 Ldb 1 Stadtarchiv Ladenburg +http://lobid.org/organisations/DE-Leh1#! DE-Leh1 Leh 1 Stadtarchiv Lehrte +http://lobid.org/organisations/DE-Leg1#! DE-Leg1 Leg 1 Stadtarchiv Lengerich +http://lobid.org/organisations/DE-Lued2#! DE-Lued2 Lüd 2 Stadtarchiv Lüdenscheid +http://lobid.org/organisations/DE-Men1#! DE-Men1 Men 1 Archiv der Stadt Menden (Sauerland) +http://lobid.org/organisations/DE-82-206#! DE-82-206 82/206 Lehr- und Forschungsgebiet Stadtbaugeschichte, Bibliothek +http://lobid.org/organisations/DE-Mg4#! DE-Mg4 Mg 4 Stadtarchiv Mönchengladbach +http://lobid.org/organisations/DE-Ofb3#! DE-Ofb3 Ofb 3 Stadtarchiv im Ritterhaus +http://lobid.org/organisations/DE-Otf1#! DE-Otf1 Otf 1 Stadtarchiv Ostfildern-Nellingen +http://lobid.org/organisations/DE-Pa5#! DE-Pa5 Pa 5 Stadt- und Kreisarchiv Paderborn +http://lobid.org/organisations/DE-Rad7#! DE-Rad7 Rad 7 Stadtarchiv Radebeul +http://lobid.org/organisations/DE-Reck2#! DE-Reck2 Reck 2 Stadt- und Vestisches Archiv Recklinghausen +http://lobid.org/organisations/DE-Schl3#! DE-Schl3 Schl 3 Gemeinschaftsarchiv des Kreises Schleswig-Flensburg und der Stadt Schleswig +http://lobid.org/organisations/DE-Wrn1#! DE-Wrn1 Wrn 1 Stadtarchiv Werne +http://lobid.org/organisations/DE-Ang1#! DE-Ang1 Ang 1 Stadtarchiv Angermünde +http://lobid.org/organisations/DE-Dph1#! DE-Dph1 Dph 1 Stadtarchiv Diepholz +http://lobid.org/organisations/DE-1823#! DE-1823 1823 Stadtbibliothek Hans Fallada +http://lobid.org/organisations/DE-Eb22#! DE-Eb22 Eb 22 Kreisarchiv Barnim +http://lobid.org/organisations/DE-Enp1#! DE-Enp1 Enp 1 Stadtarchiv Ennepetal +http://lobid.org/organisations/DE-1824#! DE-1824 1824 Stadtbücherei Rodgau +http://lobid.org/organisations/DE-Hef2#! DE-Hef2 Hef 2 Kommunalarchiv Herford +http://lobid.org/organisations/DE-Lig1#! DE-Lig1 Lig 1 Stadtarchiv Lingen +http://lobid.org/organisations/DE-Mkg1#! DE-Mkg1 Mkg 1 Stadtarchiv Markgröningen +http://lobid.org/organisations/DE-Mkw1#! DE-Mkw1 Mkw 1 Stadtarchiv Marktredwitz +http://lobid.org/organisations/DE-Meb1#! DE-Meb1 Meb 1 Stadtarchiv Meerbusch +http://lobid.org/organisations/DE-Mzh1#! DE-Mzh1 Mzh 1 Stadtarchiv Meinerzhagen +http://lobid.org/organisations/DE-Mns1#! DE-Mns1 Mns 1 Stadtarchiv Münsingen +http://lobid.org/organisations/DE-Nos1#! DE-Nos1 Nos 1 Stadtarchiv Nossen +http://lobid.org/organisations/DE-Odr1#! DE-Odr1 Odr 1 Stadtarchiv Oederan +http://lobid.org/organisations/DE-Rdg1#! DE-Rdg1 Rdg 1 Stadtarchiv Radeburg +http://lobid.org/organisations/DE-Rav4#! DE-Rav4 Stadtarchiv Ravensburg +http://lobid.org/organisations/DE-1826#! DE-1826 1826 Bibliothek der International Psychoanalytic University Berlin (IPU) +http://lobid.org/organisations/DE-Wup3#! DE-Wup3 Wup 3 Stadtarchiv Wuppertal +http://lobid.org/organisations/DE-Mb112#! DE-Mb112 Mb 112 Deutsches Dokumentationszentrum für Kunstgeschichte - Bildarchiv Foto Marburg +http://lobid.org/organisations/DE-Hv137#! DE-Hv137 Hv 137 Leibniz-Fachhochschule Hannover, Bibliothek +http://lobid.org/organisations/DE-Bul1#! DE-Bul1 Bul 1 Stadtarchiv Buchloe +http://lobid.org/organisations/DE-MUS-134514#! DE-MUS-134514 Tkm 1 Sieben-Schwaben-Museum Türkheim +http://lobid.org/organisations/DE-Osn1#! DE-Osn1 Osn 1 Landesakademie für die musizierende Jugend in BW, Musikbibliothek +http://lobid.org/organisations/DE-1834h#! DE-1834h 1834h Macromedia Library Hamburg +http://lobid.org/organisations/DE-Hb6#! DE-Hb6 Hb 6 Seminarbibliothek Heilbronn +http://lobid.org/organisations/DE-M494#! DE-M494 M 494 Bibliothek des Ungarischen Instituts im Wissenschaftszentrum Ost- und Südosteuropa +http://lobid.org/organisations/DE-M54#! DE-M54 M 54 Stadtarchiv München & Historischer Verein von Oberbayern, Bibliothek +http://lobid.org/organisations/DE-1843#! DE-1843 1843 International School of Management, Bibliothek +http://lobid.org/organisations/DE-M507a#! DE-M507a M 507a Städtische Galerie im Lenbachhaus München, Kubin-Archiv +http://lobid.org/organisations/ZDB-HU-100#! ZDB-HU-100 ZDB-HU-100 Bibliothek der Andrássy Gyula Deutschsprachigen Universität Budapest +http://lobid.org/organisations/DE-1849#! DE-1849 1849 Stadtbibliothek Wadern +http://lobid.org/organisations/DE-Y9#! DE-Y9 Y 9 Orient-Institut Beirut +http://lobid.org/organisations/DE-Gnb1#! DE-Gnb1 Gnb 1 Glatfelter Gernsbach GmbH & Co. KG, Bibliothek +http://lobid.org/organisations/DE-Ki131#! DE-Ki131 Ki 131 Wehrtechnische Dienststelle für Schiffe und Marinewaffen, Maritime Technologie und Forschung, Bibliothek +http://lobid.org/organisations/DE-226#! DE-226 226 Stadt Fürth, Stadtarchiv und Museen, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B1594#! DE-B1594 B 1594 Wissenschaftskolleg zu Berlin - Institute for Advanced Study, Bibliothek +http://lobid.org/organisations/DE-30-114#! DE-30-114 30/114 Universität Frankfurt, Bibliothekszentrum Geisteswissenschaften, Baskische Bibliothek +http://lobid.org/organisations/DE-Y2#! DE-Y2 Y 2 Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte +http://lobid.org/organisations/DE-Ess3#! DE-Ess3 Ess 3 Hochschule für Kirchenmusik der Evangelischen Landeskirche in Württemberg (HKM), Hochschulbibliothek +http://lobid.org/organisations/DE-M514#! DE-M514 M 514 Sudetendeutsche Akademie der Wissenschaften und Künste, Bibliothek +http://lobid.org/organisations/DE-66-3#! DE-66-3 66/3 Hochschul- und Landesbibliothek Fulda, Standort Heinrich-von-Bibra-Platz, AV-Medien +http://lobid.org/organisations/DE-Mz119#! DE-Mz119 Mz 119 Naturhistorisches Museum und Landessammlung für Naturkunde Mainz, Bibliothek +http://lobid.org/organisations/DE-Lmg1#! DE-Lmg1 Lmg 1 Alte Hansestadt Lemgo, Stadtarchiv +http://lobid.org/organisations/DE-Nb3#! DE-Nb3 Nb 3 Stadtarchiv Nienburg +http://lobid.org/organisations/DE-We21#! DE-We21 We 21 Harzbücherei Wernigerode +http://lobid.org/organisations/DE-MUS-000317#! DE-MUS-000317 Domschatzkammer +http://lobid.org/organisations/DE-MUS-000624#! DE-MUS-000624 Museum Spatz +http://lobid.org/organisations/DE-MUS-000817#! DE-MUS-000817 Urweltmuseum für Geologie und Paläontologie +http://lobid.org/organisations/DE-MUS-000926#! DE-MUS-000926 'Faber-Castell erleben' +http://lobid.org/organisations/DE-MUS-001127#! DE-MUS-001127 Kupfermuseum +http://lobid.org/organisations/DE-MUS-001716#! DE-MUS-001716 Städtische Sammlungen/Bauländer Heimatmuseum +http://lobid.org/organisations/DE-MUS-001810#! DE-MUS-001810 Schloßmuseum Ahrensburg +http://lobid.org/organisations/DE-MUS-001914#! DE-MUS-001914 Stadtmuseum +http://lobid.org/organisations/DE-MUS-002115#! DE-MUS-002115 Museum der Stadt Alfeld +http://lobid.org/organisations/DE-MUS-002219#! DE-MUS-002219 Heimatmuseum Allensbach +http://lobid.org/organisations/DE-MUS-003014#! DE-MUS-003014 Museum Alzey +http://lobid.org/organisations/DE-MUS-003118#! DE-MUS-003118 Stadtmuseum +http://lobid.org/organisations/DE-MUS-003618#! DE-MUS-003618 Markgrafenmuseum +http://lobid.org/organisations/DE-MUS-003925#! DE-MUS-003925 Arche Nebra +http://lobid.org/organisations/DE-MUS-004215#! DE-MUS-004215 Kaulbach-Haus +http://lobid.org/organisations/DE-MUS-004220#! DE-MUS-004220 Jagd- und Naturkundemuseum +http://lobid.org/organisations/DE-MUS-004913#! DE-MUS-004913 Naturwissenschaftliches Museum der Stadt Aschaffenburg +http://lobid.org/organisations/DE-MUS-005510#! DE-MUS-005510 Staatsgalerie in der Katharinenkirche +http://lobid.org/organisations/DE-MUS-005718#! DE-MUS-005718 Kunstsammlungen und Museen Augsburg, Maximilianmuseum +http://lobid.org/organisations/DE-MUS-005921#! DE-MUS-005921 KunstForum Eifel +http://lobid.org/organisations/DE-MUS-006028#! DE-MUS-006028 Bau- und Industriedenkmal Alte Ziegelei und Gipshütten Westeregeln +http://lobid.org/organisations/DE-MUS-006320#! DE-MUS-006320 Museum Jüchsen +http://lobid.org/organisations/DE-MUS-006820#! DE-MUS-006820 Museum Autovision - Tradition & Forum +http://lobid.org/organisations/DE-MUS-006924#! DE-MUS-006924 Kalanag - Museum +http://lobid.org/organisations/DE-MUS-007110#! DE-MUS-007110 Museum der Stadt Bad Gandersheim +http://lobid.org/organisations/DE-MUS-007427#! DE-MUS-007427 Sammlung des Winckelmann-Instituts - Lehrsammlung Klassische Archäologie +http://lobid.org/organisations/DE-MUS-007516#! DE-MUS-007516 Römerkastell Saalburg+Archäologischer Park +http://lobid.org/organisations/DE-MUS-007610#! DE-MUS-007610 Schloßmuseum Bad Homburg +http://lobid.org/organisations/DE-MUS-007729#! DE-MUS-007729 Kuba Museum +http://lobid.org/organisations/DE-MUS-007912#! DE-MUS-007912 Museum Schloßpark +http://lobid.org/organisations/DE-MUS-008019#! DE-MUS-008019 Stiftung Historischer Tasteninstrumente Neumeyer - Junghanns - Tracey +http://lobid.org/organisations/DE-MUS-008113#! DE-MUS-008113 Heimatmuseum Bad Lauterberg +http://lobid.org/organisations/DE-MUS-008326#! DE-MUS-008326 Kunstmuseum Bremerhaven +http://lobid.org/organisations/DE-MUS-009314#! DE-MUS-009314 Museum im Schloß +http://lobid.org/organisations/DE-MUS-010022#! DE-MUS-010022 Sammlung Scharf-Gerstenberg SMB +http://lobid.org/organisations/DE-MUS-010319#! DE-MUS-010319 Museum im Kornhaus +http://lobid.org/organisations/DE-MUS-010324#! DE-MUS-010324 Sammlung Ivo Wessel +http://lobid.org/organisations/DE-MUS-010517#! DE-MUS-010517 Museum im Steinhaus +http://lobid.org/organisations/DE-MUS-010928#! DE-MUS-010928 Waldecker Spielzeugmuseum +http://lobid.org/organisations/DE-MUS-011010#! DE-MUS-011010 Rebland-Museum +http://lobid.org/organisations/DE-MUS-011416#! DE-MUS-011416 Museum der Cistercienserinnen-Abtei Lichtenthal +http://lobid.org/organisations/DE-MUS-011614#! DE-MUS-011614 Waagenmuseum +http://lobid.org/organisations/DE-MUS-011718#! DE-MUS-011718 Diözesanmuseum +http://lobid.org/organisations/DE-MUS-012117#! DE-MUS-012117 Naturkunde-Museum +http://lobid.org/organisations/DE-MUS-012211#! DE-MUS-012211 Neue Residenz Bamberg +http://lobid.org/organisations/DE-MUS-012226#! DE-MUS-012226 Portal zur Geschichte. Sammlung Frauenstift Gandersheim +http://lobid.org/organisations/DE-MUS-012315#! DE-MUS-012315 Staatsgalerie in der Neuen Residenz +http://lobid.org/organisations/DE-MUS-012419#! DE-MUS-012419 Museum Kloster Banz +http://lobid.org/organisations/DE-MUS-013125#! DE-MUS-013125 Kunstwerk+Sammlung Alison und Peter W. Klein +http://lobid.org/organisations/DE-MUS-013323#! DE-MUS-013323 Stadtmuseum - Raum der Geschichte +http://lobid.org/organisations/DE-MUS-013521#! DE-MUS-013521 Alte Welt Museum +http://lobid.org/organisations/DE-MUS-013818#! DE-MUS-013818 Urwelt-Museum Oberfranken +http://lobid.org/organisations/DE-MUS-013823#! DE-MUS-013823 Heimatstube Oberotterbach +http://lobid.org/organisations/DE-MUS-013912#! DE-MUS-013912 Historische Fraunhofer Glashütte +http://lobid.org/organisations/DE-MUS-015012#! DE-MUS-015012 Bergisches Museum für Bergbau, Handwerk und Gewerbe +http://lobid.org/organisations/DE-MUS-016020#! DE-MUS-016020 Kunsthalle Messmer +http://lobid.org/organisations/DE-MUS-016119#! DE-MUS-016119 Berlinische Galerie - Landesmuseum für Moderne Kunst, Fotografie und Architektur +http://lobid.org/organisations/DE-MUS-017429#! DE-MUS-017429 Emil Schumacher Museum +http://lobid.org/organisations/DE-MUS-017716#! DE-MUS-017716 Steglitz-Museum +http://lobid.org/organisations/DE-MUS-018026#! DE-MUS-018026 Bauernmuseum Dürrengerbisdorf +http://lobid.org/organisations/DE-MUS-018219#! DE-MUS-018219 SPSG / Jagdschloß Grunewald +http://lobid.org/organisations/DE-MUS-018328#! DE-MUS-018328 Museum Kunst der Westküste +http://lobid.org/organisations/DE-MUS-018417#! DE-MUS-018417 Kunstgewerbemuseum SMB +http://lobid.org/organisations/DE-MUS-018719#! DE-MUS-018719 Museum Europäischer Kulturen SMB +http://lobid.org/organisations/DE-MUS-020128#! DE-MUS-020128 Antikensammlung der Friedrich-Alexander-Universität Erlangen-Nürnberg +http://lobid.org/organisations/DE-MUS-020326#! DE-MUS-020326 Automobilmuseum Fichtelberg +http://lobid.org/organisations/DE-MUS-020722#! DE-MUS-020722 Marktmuseum +http://lobid.org/organisations/DE-MUS-020811#! DE-MUS-020811 Heimatmuseum Resenhof +http://lobid.org/organisations/DE-MUS-020826#! DE-MUS-020826 Murrmann-Museum +http://lobid.org/organisations/DE-MUS-021012#! DE-MUS-021012 Museum im Kloster +http://lobid.org/organisations/DE-MUS-021121#! DE-MUS-021121 Heimathaus Gestratz in Zwirkenberg +http://lobid.org/organisations/DE-MUS-021225#! DE-MUS-021225 Wallfahrtsmuseum +http://lobid.org/organisations/DE-MUS-021512#! DE-MUS-021512 Bauernhausmuseum Hof Haina +http://lobid.org/organisations/DE-MUS-021621#! DE-MUS-021621 Psychiatrie-Museum +http://lobid.org/organisations/DE-MUS-022020#! DE-MUS-022020 Museum Tropfhaus Sassanfahrt +http://lobid.org/organisations/DE-MUS-022926#! DE-MUS-022926 Archäologisches Museum +http://lobid.org/organisations/DE-MUS-023810#! DE-MUS-023810 Kreismuseum Bogenberg +http://lobid.org/organisations/DE-MUS-024115#! DE-MUS-024115 Akademisches Kunstmuseum der Universität Bonn +http://lobid.org/organisations/DE-MUS-024417#! DE-MUS-024417 Mineralogisches Museum am Steinmann-Inst. Uni Bonn +http://lobid.org/organisations/DE-MUS-024620#! DE-MUS-024620 Höhlenerlebniswelt Giengen-Hürben +http://lobid.org/organisations/DE-MUS-025118#! DE-MUS-025118 Schloß Baldern +http://lobid.org/organisations/DE-MUS-025123#! DE-MUS-025123 MUSTANG-Museum +http://lobid.org/organisations/DE-MUS-025212#! DE-MUS-025212 Museum Boppard +http://lobid.org/organisations/DE-MUS-025925#! DE-MUS-025925 Le Petit Salon - Winterhalter in Menzenschwand +http://lobid.org/organisations/DE-MUS-026017#! DE-MUS-026017 Schiffahrtsmuseum der oldenburgischen Unterweser e.V.+Haus Telegraph +http://lobid.org/organisations/DE-MUS-026913#! DE-MUS-026913 Raabe-Haus +http://lobid.org/organisations/DE-MUS-027114#! DE-MUS-027114 Städtisches Museum Haus Löwenwall +http://lobid.org/organisations/DE-MUS-027223#! DE-MUS-027223 Rheinisches Schützenmuseum Neuss +http://lobid.org/organisations/DE-MUS-027421#! DE-MUS-027421 Stiftung Rotkreuz-Museum im Land Brandenburg +http://lobid.org/organisations/DE-MUS-027525#! DE-MUS-027525 Berliner Unterweltenmuseum +http://lobid.org/organisations/DE-MUS-027614#! DE-MUS-027614 Kunsthalle Bremen +http://lobid.org/organisations/DE-MUS-027723#! DE-MUS-027723 Schlossmuseum Laubach +http://lobid.org/organisations/DE-MUS-027812#! DE-MUS-027812 Museum im Roselius-Haus +http://lobid.org/organisations/DE-MUS-028013#! DE-MUS-028013 Deutsches Schifffahrtsmuseum +http://lobid.org/organisations/DE-MUS-028226#! DE-MUS-028226 Schaustickerei Plauener Spitze +http://lobid.org/organisations/DE-MUS-028320#! DE-MUS-028320 Jüdisches Museum Rotenburg +http://lobid.org/organisations/DE-MUS-028419#! DE-MUS-028419 Bachmann-Museum Bremervörde +http://lobid.org/organisations/DE-MUS-028513#! DE-MUS-028513 Melanchthonhaus Bretten +http://lobid.org/organisations/DE-MUS-028726#! DE-MUS-028726 Museum Deutscher Fayencen +http://lobid.org/organisations/DE-MUS-028820#! DE-MUS-028820 Bernhard-Heiliger-Stiftung +http://lobid.org/organisations/DE-MUS-028924#! DE-MUS-028924 sam ? Stadtmuseum am Markt +http://lobid.org/organisations/DE-MUS-029021#! DE-MUS-029021 Dokumentationszentrum Prora +http://lobid.org/organisations/DE-MUS-029110#! DE-MUS-029110 Museum Schloß Augustusburg +http://lobid.org/organisations/DE-MUS-029714#! DE-MUS-029714 Schloß Bückeburg +http://lobid.org/organisations/DE-MUS-029823#! DE-MUS-029823 Weissenhofmuseum im Haus Le Corbusier +http://lobid.org/organisations/DE-MUS-029912#! DE-MUS-029912 Schloßmuseum Büdingen +http://lobid.org/organisations/DE-MUS-030328#! DE-MUS-030328 Museum für aktuelle Kunst - Sammlung Hurrle Durbach +http://lobid.org/organisations/DE-MUS-030615#! DE-MUS-030615 Stadtmuseum Burgdorf +http://lobid.org/organisations/DE-MUS-030719#! DE-MUS-030719 Burgmuseum +http://lobid.org/organisations/DE-MUS-030724#! DE-MUS-030724 Bronzezeit-Bayern Museum Kranzberg +http://lobid.org/organisations/DE-MUS-030922#! DE-MUS-030922 Museum Mitterteich - Porzellan, Glas, Handwerk +http://lobid.org/organisations/DE-MUS-031118#! DE-MUS-031118 Buxtehude-Museum für Regionalgeschichte und Kunst +http://lobid.org/organisations/DE-MUS-031212#! DE-MUS-031212 Schloßmuseum Wilhelmsthal +http://lobid.org/organisations/DE-MUS-031425#! DE-MUS-031425 Dokumentationsausstellung John Heartfield +http://lobid.org/organisations/DE-MUS-031623#! DE-MUS-031623 Ernst-May-Haus +http://lobid.org/organisations/DE-MUS-032413#! DE-MUS-032413 Friedrich-Rückert-Gedächtnisstätte +http://lobid.org/organisations/DE-MUS-032522#! DE-MUS-032522 Stadtmuseum Ottweiler +http://lobid.org/organisations/DE-MUS-032611#! DE-MUS-032611 Naturkunde-Museum Coburg +http://lobid.org/organisations/DE-MUS-033218#! DE-MUS-033218 Heimatmuseum Dahlenburg +http://lobid.org/organisations/DE-MUS-033718#! DE-MUS-033718 Hessisches Landesmuseum Darmstadt +http://lobid.org/organisations/DE-MUS-034320#! DE-MUS-034320 Militärgeschichtliche Sammlung Kropp +http://lobid.org/organisations/DE-MUS-034820#! DE-MUS-034820 KMZ Schloss Glatt +http://lobid.org/organisations/DE-MUS-035021#! DE-MUS-035021 Preßnitztalmuseum +http://lobid.org/organisations/DE-MUS-035610#! DE-MUS-035610 Stadt- und Hochstiftmuseum +http://lobid.org/organisations/DE-MUS-036113#! DE-MUS-036113 Dischinger Heimatmuseum +http://lobid.org/organisations/DE-MUS-036217#! DE-MUS-036217 Fürstlich Fürstenbergisches Schloßmuseum Donaueschingen +http://lobid.org/organisations/DE-MUS-036811#! DE-MUS-036811 Naturmuseum Dortmund +http://lobid.org/organisations/DE-MUS-037116#! DE-MUS-037116 Kultur- und Stadthistorisches Museum Duisburg +http://lobid.org/organisations/DE-MUS-038015#! DE-MUS-038015 museum kunst palast +http://lobid.org/organisations/DE-MUS-038515#! DE-MUS-038515 Museum Corps de Logis +http://lobid.org/organisations/DE-MUS-038619#! DE-MUS-038619 Stadtmuseum +http://lobid.org/organisations/DE-MUS-038713#! DE-MUS-038713 Kunstgewerbesammlung Ernst Schneider +http://lobid.org/organisations/DE-MUS-039310#! DE-MUS-039310 Museum Eckernförde +http://lobid.org/organisations/DE-MUS-040919#! DE-MUS-040919 Schloß Hämelschenburg +http://lobid.org/organisations/DE-MUS-041714#! DE-MUS-041714 Stadt- und Fachwerkmuseum 'Alte Universität' +http://lobid.org/organisations/DE-MUS-041912#! DE-MUS-041912 Stadt- und Burgmuseum Eppstein +http://lobid.org/organisations/DE-MUS-043116#! DE-MUS-043116 Kunstpalais +http://lobid.org/organisations/DE-MUS-043616#! DE-MUS-043616 Stadtmuseum Eschwege +http://lobid.org/organisations/DE-MUS-045414#! DE-MUS-045414 Museumsberg Flensburg +http://lobid.org/organisations/DE-MUS-046719#! DE-MUS-046719 Struwwelpeter-Museum/Heinrich-Hoffmann-Museum +http://lobid.org/organisations/DE-MUS-046813#! DE-MUS-046813 Historisches Museum Frankfurt +http://lobid.org/organisations/DE-MUS-049416#! DE-MUS-049416 Museum im Wittelsbacher Schloss Friedberg +http://lobid.org/organisations/DE-MUS-050515#! DE-MUS-050515 Museum Hochzeitshaus Fritzlar +http://lobid.org/organisations/DE-MUS-051414#! DE-MUS-051414 Museum der Stadt Füssen +http://lobid.org/organisations/DE-MUS-052417#! DE-MUS-052417 Museum 'Haus Löwenberg' +http://lobid.org/organisations/DE-MUS-053212#! DE-MUS-053212 Museum im Ursula-Stift Gussenstadt +http://lobid.org/organisations/DE-MUS-054111#! DE-MUS-054111 Museum der Stadt Gladbeck +http://lobid.org/organisations/DE-MUS-054517#! DE-MUS-054517 Detlefsenmuseum +http://lobid.org/organisations/DE-MUS-055010#! DE-MUS-055010 Städtisches Museum im 'Storchen' +http://lobid.org/organisations/DE-MUS-055510#! DE-MUS-055510 Huldigungssaal im Rathaus der Stadt Goslar +http://lobid.org/organisations/DE-MUS-056013#! DE-MUS-056013 Kunstgesch. Seminar und Kunstsammlung der Universität +http://lobid.org/organisations/DE-MUS-056211#! DE-MUS-056211 Ethnologische Sammlung der Universität Göttingen +http://lobid.org/organisations/DE-MUS-057016#! DE-MUS-057016 Villa Erckens+Museum der Niederrheinischen Seele +http://lobid.org/organisations/DE-MUS-057912#! DE-MUS-057912 Stadtmuseum Gunzenhausen +http://lobid.org/organisations/DE-MUS-058217#! DE-MUS-058217 Kunstquartier Hagen+Osthaus Museum Hagen +http://lobid.org/organisations/DE-MUS-058717#! DE-MUS-058717 LWL-Römermuseum +http://lobid.org/organisations/DE-MUS-059210#! DE-MUS-059210 Hamburger Kunsthalle +http://lobid.org/organisations/DE-MUS-059616#! DE-MUS-059616 Brahms-Museum Hamburg +http://lobid.org/organisations/DE-MUS-060017#! DE-MUS-060017 Museum Rade am Schloß Reinbek +http://lobid.org/organisations/DE-MUS-060111#! DE-MUS-060111 Museumsdorf Volksdorf +http://lobid.org/organisations/DE-MUS-066119#! DE-MUS-066119 Heimatmuseum Bad Hindelang +http://lobid.org/organisations/DE-MUS-067810#! DE-MUS-067810 Römermuseum Homburg-Schwarzenacker +http://lobid.org/organisations/DE-MUS-068115#! DE-MUS-068115 Heimatmuseum +http://lobid.org/organisations/DE-MUS-068313#! DE-MUS-068313 Heimatmuseum +http://lobid.org/organisations/DE-MUS-068719#! DE-MUS-068719 Ostenfelder Bauernhaus +http://lobid.org/organisations/DE-MUS-072411#! DE-MUS-072411 Pfinzgaumuseum +http://lobid.org/organisations/DE-MUS-072619#! DE-MUS-072619 Stadtmuseum im Prinz-Max-Palais +http://lobid.org/organisations/DE-MUS-073612#! DE-MUS-073612 Heimatmuseum - Stadtgeschichtliche Sammlungen +http://lobid.org/organisations/DE-MUS-074115#! DE-MUS-074115 Isergebirgs-Museum Neugablonz +http://lobid.org/organisations/DE-MUS-074615#! DE-MUS-074615 Sylt Museum +http://lobid.org/organisations/DE-MUS-074719#! DE-MUS-074719 Archäologisches Museum der Stadt Kelheim +http://lobid.org/organisations/DE-MUS-075816#! DE-MUS-075816 Geologisches und Mineralogisches Museum +http://lobid.org/organisations/DE-MUS-077114#! DE-MUS-077114 Städtisches Museum im Kornhaus +http://lobid.org/organisations/DE-MUS-077510#! DE-MUS-077510 B.C. Koekkoek-Haus +http://lobid.org/organisations/DE-MUS-077812#! DE-MUS-077812 Mittelrhein-Museum im Forum Confluentes +http://lobid.org/organisations/DE-MUS-078315#! DE-MUS-078315 Museum für Lackkunst +http://lobid.org/organisations/DE-MUS-078419#! DE-MUS-078419 Deutz AG+Technikum +http://lobid.org/organisations/DE-MUS-078815#! DE-MUS-078815 Rautenstrauch-Joest-Museum +http://lobid.org/organisations/DE-MUS-078919#! DE-MUS-078919 Römisch-Germanisches Museum +http://lobid.org/organisations/DE-MUS-079214#! DE-MUS-079214 Wallraf-Richartz-Museum & Fondation Corboud +http://lobid.org/organisations/DE-MUS-079714#! DE-MUS-079714 Haus zur Kunkel +http://lobid.org/organisations/DE-MUS-079818#! DE-MUS-079818 Johannes-Hus-Haus +http://lobid.org/organisations/DE-MUS-080313#! DE-MUS-080313 Steinzeitmuseum +http://lobid.org/organisations/DE-MUS-080615#! DE-MUS-080615 Museum der Stadt Kraichtal +http://lobid.org/organisations/DE-MUS-081118#! DE-MUS-081118 Deutsches Textilmuseum Krefeld +http://lobid.org/organisations/DE-MUS-081910#! DE-MUS-081910 Staatliche Sammlung Plassenburg 'Hohenzollern in Franken' +http://lobid.org/organisations/DE-MUS-082215#! DE-MUS-082215 Lobdengau-Museum Stadt Ladenburg +http://lobid.org/organisations/DE-MUS-083010#! DE-MUS-083010 Städtisches Museum Landau in der Pfalz +http://lobid.org/organisations/DE-MUS-083312#! DE-MUS-083312 LANDSHUTmuseum / Ausstellung in der Stadtresidenz +http://lobid.org/organisations/DE-MUS-083614#! DE-MUS-083614 Heimatmuseum Langenau +http://lobid.org/organisations/DE-MUS-083812#! DE-MUS-083812 Schloß-Museum Langenburg +http://lobid.org/organisations/DE-MUS-086717#! DE-MUS-086717 Emslandmuseum Lingen +http://lobid.org/organisations/DE-MUS-086915#! DE-MUS-086915 Heimatmuseum Löffingen +http://lobid.org/organisations/DE-MUS-087012#! DE-MUS-087012 Spessartmuseum +http://lobid.org/organisations/DE-MUS-087116#! DE-MUS-087116 Buderus Zentralheizungsmuseum +http://lobid.org/organisations/DE-MUS-087710#! DE-MUS-087710 Museum der Stadt Lübbecke +http://lobid.org/organisations/DE-MUS-088411#! DE-MUS-088411 Amtsturm - Museum +http://lobid.org/organisations/DE-MUS-088515#! DE-MUS-088515 Museen der Stadt Lüdenscheid - Geschichtsmuseum +http://lobid.org/organisations/DE-MUS-088817#! DE-MUS-088817 Kuhländler Archiv mit Heimatstube +http://lobid.org/organisations/DE-MUS-089018#! DE-MUS-089018 Ludwigsburg Museum im MIK +http://lobid.org/organisations/DE-MUS-089216#! DE-MUS-089216 Wilhelm-Hack-Museum +http://lobid.org/organisations/DE-MUS-089518#! DE-MUS-089518 Museum Lüneburg +http://lobid.org/organisations/DE-MUS-090211#! DE-MUS-090211 Bischöfliches Dom- und Diözesanmuseum +http://lobid.org/organisations/DE-MUS-090419#! DE-MUS-090419 Kupferberg-Museum +http://lobid.org/organisations/DE-MUS-091016#! DE-MUS-091016 Heimatmuseum ""Tews-Kate"" +http://lobid.org/organisations/DE-MUS-091610#! DE-MUS-091610 Museum für Kunst und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-092019#! DE-MUS-092019 Skulpturenmuseum Glaskasten Marl +http://lobid.org/organisations/DE-MUS-092717#! DE-MUS-092717 LVR-Freilichtmuseum Kommern+Landesmuseum für Volkskunde +http://lobid.org/organisations/DE-MUS-093116#! DE-MUS-093116 Droste-Museum im Fürstenhäusle +http://lobid.org/organisations/DE-MUS-093710#! DE-MUS-093710 Grönegau-Museum Melle +http://lobid.org/organisations/DE-MUS-093814#! DE-MUS-093814 Stadtmuseum Memmingen +http://lobid.org/organisations/DE-MUS-094119#! DE-MUS-094119 Heimatmuseum Eversberg e.V. +http://lobid.org/organisations/DE-MUS-094411#! DE-MUS-094411 Heimatmuseum Hossingen +http://lobid.org/organisations/DE-MUS-095518#! DE-MUS-095518 Grafschafter Museum im Moerser Schloß +http://lobid.org/organisations/DE-MUS-095612#! DE-MUS-095612 Möllner Museum+""Historisches Rathaus"" +http://lobid.org/organisations/DE-MUS-096719#! DE-MUS-096719 Bavaria mit Ruhmeshalle +http://lobid.org/organisations/DE-MUS-097514#! DE-MUS-097514 Glyptothek +http://lobid.org/organisations/DE-MUS-098215#! DE-MUS-098215 Neue Pinakothek +http://lobid.org/organisations/DE-MUS-098819#! DE-MUS-098819 Schloß Nymphenburg +http://lobid.org/organisations/DE-MUS-098913#! DE-MUS-098913 Staatliche Antikensammlungen +http://lobid.org/organisations/DE-MUS-099416#! DE-MUS-099416 Städtische Galerie im Lenbachhaus +http://lobid.org/organisations/DE-MUS-099614#! DE-MUS-099614 Valentin-Musäum +http://lobid.org/organisations/DE-MUS-100110#! DE-MUS-100110 Stadtmuseum im Schloß Münsingen +http://lobid.org/organisations/DE-MUS-100412#! DE-MUS-100412 Geomuseum +http://lobid.org/organisations/DE-MUS-100516#! DE-MUS-100516 LWL- Museum für Archäologie +http://lobid.org/organisations/DE-MUS-100714#! DE-MUS-100714 Mühlenhof-Freilichtmuseum +http://lobid.org/organisations/DE-MUS-101519#! DE-MUS-101519 Museum im Steinhaus +http://lobid.org/organisations/DE-MUS-102116#! DE-MUS-102116 Freilichtmuseum ""Hessenpark"" +http://lobid.org/organisations/DE-MUS-102210#! DE-MUS-102210 Historisches Silberbergwerk ""Hellaglücksstollen"" +http://lobid.org/organisations/DE-MUS-103411#! DE-MUS-103411 Clemens-Sels-Museum Neuss +http://lobid.org/organisations/DE-MUS-103619#! DE-MUS-103619 Museen im Alten Schloss +http://lobid.org/organisations/DE-MUS-103817#! DE-MUS-103817 Stadtmuseum Villa Böhm +http://lobid.org/organisations/DE-MUS-104310#! DE-MUS-104310 Roentgen-Museum Neuwied (Kreismuseum Neuwied) +http://lobid.org/organisations/DE-MUS-104914#! DE-MUS-104914 Museum Nienburg +http://lobid.org/organisations/DE-MUS-105313#! DE-MUS-105313 Stadtmuseum Nördlingen +http://lobid.org/organisations/DE-MUS-105511#! DE-MUS-105511 Museum des Oberbergischen Kreises +http://lobid.org/organisations/DE-MUS-105813#! DE-MUS-105813 Heimatmuseum Kornburg +http://lobid.org/organisations/DE-MUS-106212#! DE-MUS-106212 Lochgefängnisse unter dem Alten Rathaus +http://lobid.org/organisations/DE-MUS-106514#! DE-MUS-106514 Spielzeugmuseum der Stadt Nürnberg +http://lobid.org/organisations/DE-MUS-106712#! DE-MUS-106712 Albrecht-Dürer-Haus +http://lobid.org/organisations/DE-MUS-107413#! DE-MUS-107413 Römermuseum Obernburg +http://lobid.org/organisations/DE-MUS-107517#! DE-MUS-107517 Museum im Schwedenbau (Heimat- und Waffenmuseum) +http://lobid.org/organisations/DE-MUS-107913#! DE-MUS-107913 Römischer Weinkeller +http://lobid.org/organisations/DE-MUS-108218#! DE-MUS-108218 Staatsgalerie Schloß Schleißheim +http://lobid.org/organisations/DE-MUS-109513#! DE-MUS-109513 Stadtmuseum Oldenburg +http://lobid.org/organisations/DE-MUS-109711#! DE-MUS-109711 Regionales Heimatmuseum für das Renchtal +http://lobid.org/organisations/DE-MUS-110216#! DE-MUS-110216 Museum am Schölerberg +http://lobid.org/organisations/DE-MUS-110518#! DE-MUS-110518 Heimatmuseum Östringen +http://lobid.org/organisations/DE-MUS-110716#! DE-MUS-110716 Kranichhaus - Museum des Landes Hadeln +http://lobid.org/organisations/DE-MUS-112712#! DE-MUS-112712 Museen im Rathaus +http://lobid.org/organisations/DE-MUS-113517#! DE-MUS-113517 Heimatmuseum Rain a. Lech +http://lobid.org/organisations/DE-MUS-113611#! DE-MUS-113611 Limestor Dalkingen +http://lobid.org/organisations/DE-MUS-114114#! DE-MUS-114114 Wehrgeschichtliches Museum Rastatt +http://lobid.org/organisations/DE-MUS-115711#! DE-MUS-115711 Kunstforum Ostdeutsche Galerie +http://lobid.org/organisations/DE-MUS-116214#! DE-MUS-116214 Deutsches Röntgen-Museum Remscheid +http://lobid.org/organisations/DE-MUS-116610#! DE-MUS-116610 Heimatmuseum Reutlingen +http://lobid.org/organisations/DE-MUS-116818#! DE-MUS-116818 Fehn- u. Schiffahrtsmuseum Westrhauderfehn +http://lobid.org/organisations/DE-MUS-117415#! DE-MUS-117415 Die Eulenburg+Museum Rinteln +http://lobid.org/organisations/DE-MUS-119713#! DE-MUS-119713 Hochrheinmuseum-Trompetenschloß +http://lobid.org/organisations/DE-MUS-119817#! DE-MUS-119817 Münster Schatzkammer +http://lobid.org/organisations/DE-MUS-119911#! DE-MUS-119911 Feuerwehrmuseum +http://lobid.org/organisations/DE-MUS-120312#! DE-MUS-120312 Phono- und Uhrenmuseum +http://lobid.org/organisations/DE-MUS-120614#! DE-MUS-120614 Museum der Landschaft Eiderstedt +http://lobid.org/organisations/DE-MUS-120718#! DE-MUS-120718 Museum St. Wendel +http://lobid.org/organisations/DE-MUS-121211#! DE-MUS-121211 Archäologisches Landesmuseum+Schloß Gottorf +http://lobid.org/organisations/DE-MUS-121315#! DE-MUS-121315 Stadtmuseum Schleswig +http://lobid.org/organisations/DE-MUS-121419#! DE-MUS-121419 Heimatmuseum Schliersee +http://lobid.org/organisations/DE-MUS-121711#! DE-MUS-121711 Holzgerätemuseum +http://lobid.org/organisations/DE-MUS-122318#! DE-MUS-122318 Schwälmer Dorfmuseum Holzburg e.V. +http://lobid.org/organisations/DE-MUS-123217#! DE-MUS-123217 Hällisch-Fränkisches Museum in der Keckenburg +http://lobid.org/organisations/DE-MUS-123613#! DE-MUS-123613 Heimatgeschichte im Alten Gymnasium +http://lobid.org/organisations/DE-MUS-123811#! DE-MUS-123811 Ruhrtal-Museum +http://lobid.org/organisations/DE-MUS-124710#! DE-MUS-124710 Siegerlandmuseum im Oberen Schloss +http://lobid.org/organisations/DE-MUS-124814#! DE-MUS-124814 Fürstlich Hohenzollernsche Sammlungen +http://lobid.org/organisations/DE-MUS-127011#! DE-MUS-127011 Museum auf dem Burghof +http://lobid.org/organisations/DE-MUS-128316#! DE-MUS-128316 Gäubodenmuseum +http://lobid.org/organisations/DE-MUS-129215#! DE-MUS-129215 Heimatmuseum Möhringen +http://lobid.org/organisations/DE-MUS-129319#! DE-MUS-129319 Heimatmuseum Plieningen +http://lobid.org/organisations/DE-MUS-129413#! DE-MUS-129413 Linden-Museum Stuttgart, Staatliches Museum für Völkerkunde +http://lobid.org/organisations/DE-MUS-129517#! DE-MUS-129517 Porsche-Museum +http://lobid.org/organisations/DE-MUS-130210#! DE-MUS-130210 Landesmuseum Württemberg +http://lobid.org/organisations/DE-MUS-131317#! DE-MUS-131317 Ludwig-Thoma-Haus +http://lobid.org/organisations/DE-MUS-132716#! DE-MUS-132716 Museum am Dom Trier +http://lobid.org/organisations/DE-MUS-133115#! DE-MUS-133115 Rheinisches Landesmuseum Trier +http://lobid.org/organisations/DE-MUS-135611#! DE-MUS-135611 Ulmer Museum - Städtische Sammlung für Kunst und Kulturgeschichte +http://lobid.org/organisations/DE-MUS-135819#! DE-MUS-135819 Hellweg-Museum Unna +http://lobid.org/organisations/DE-MUS-136218#! DE-MUS-136218 Historisches Museum - Residenzschloß Urach +http://lobid.org/organisations/DE-MUS-136416#! DE-MUS-136416 Museum Uslar +http://lobid.org/organisations/DE-MUS-136812#! DE-MUS-136812 Deutsches Pferdemuseum e.V. +http://lobid.org/organisations/DE-MUS-138214#! DE-MUS-138214 Museum im Kult +http://lobid.org/organisations/DE-MUS-139113#! DE-MUS-139113 Kreismuseum Walderbach +http://lobid.org/organisations/DE-MUS-140212#! DE-MUS-140212 Stadt- und Wallfahrtsmuseum +http://lobid.org/organisations/DE-MUS-140816#! DE-MUS-140816 Heimatmuseum mit Käsereimuseum +http://lobid.org/organisations/DE-MUS-141319#! DE-MUS-141319 Staufergedächtnisstätte und Museum +http://lobid.org/organisations/DE-MUS-141413#! DE-MUS-141413 Museum der Stadt Wasserburg am Inn +http://lobid.org/organisations/DE-MUS-141611#! DE-MUS-141611 Stadtmuseum Weiden mit Max-Reger-Sammlung +http://lobid.org/organisations/DE-MUS-142114#! DE-MUS-142114 Stadtmuseum Weil der Stadt +http://lobid.org/organisations/DE-MUS-142416#! DE-MUS-142416 Westallgäuer Heimatmuseum +http://lobid.org/organisations/DE-MUS-142510#! DE-MUS-142510 Hebbel-Museum +http://lobid.org/organisations/DE-MUS-142812#! DE-MUS-142812 Heimatmuseum Gemünden +http://lobid.org/organisations/DE-MUS-143919#! DE-MUS-143919 Römermuseum Weißenburg +http://lobid.org/organisations/DE-MUS-144318#! DE-MUS-144318 Stadtmuseum Wendlingen am Neckar +http://lobid.org/organisations/DE-MUS-145113#! DE-MUS-145113 Lottehaus +http://lobid.org/organisations/DE-MUS-146012#! DE-MUS-146012 Deutsches Erdölmuseum Wietze +http://lobid.org/organisations/DE-MUS-146512#! DE-MUS-146512 Küstenmuseum Wilhelmshaven +http://lobid.org/organisations/DE-MUS-146616#! DE-MUS-146616 Schaubergwerk ""Christine"" +http://lobid.org/organisations/DE-MUS-146814#! DE-MUS-146814 Heidemuseum 'Dat ole Huus' +http://lobid.org/organisations/DE-MUS-147015#! DE-MUS-147015 Museum im Marstall +http://lobid.org/organisations/DE-MUS-147619#! DE-MUS-147619 Völkerkundliches Museum Witzenhausen +http://lobid.org/organisations/DE-MUS-147911#! DE-MUS-147911 BLM - Kanzlei Wolfenbüttel +http://lobid.org/organisations/DE-MUS-148216#! DE-MUS-148216 Heimatmuseum Wolfratshausen +http://lobid.org/organisations/DE-MUS-148310#! DE-MUS-148310 Hoffmann von Fallersleben-Museum +http://lobid.org/organisations/DE-MUS-149011#! DE-MUS-149011 Heinrich-Vogeler-Stiftung Haus im Schluh +http://lobid.org/organisations/DE-MUS-149219#! DE-MUS-149219 Schiffahrts- und Schiffbaumuseum Wörth am Main +http://lobid.org/organisations/DE-MUS-149313#! DE-MUS-149313 Niederbergisches Museum Wülfrath +http://lobid.org/organisations/DE-MUS-149417#! DE-MUS-149417 Fichtelgebirgs-Museum Wunsiedel +http://lobid.org/organisations/DE-MUS-150016#! DE-MUS-150016 Historischer Saal der Fischerzunft +http://lobid.org/organisations/DE-MUS-150110#! DE-MUS-150110 Museum für Franken +http://lobid.org/organisations/DE-MUS-152012#! DE-MUS-152012 Naturzentrum Nordfriesland +http://lobid.org/organisations/DE-MUS-152116#! DE-MUS-152116 Schloß vor Husum +http://lobid.org/organisations/DE-MUS-153619#! DE-MUS-153619 Heimatmuseum Heiligenhafen +http://lobid.org/organisations/DE-MUS-154612#! DE-MUS-154612 Museum Schloß Fasanerie +http://lobid.org/organisations/DE-MUS-155615#! DE-MUS-155615 Handschriften-Ausstellung der Universitätsbibliothek Kassel +http://lobid.org/organisations/DE-MUS-155719#! DE-MUS-155719 Stadtmuseum Kassel +http://lobid.org/organisations/DE-MUS-159711#! DE-MUS-159711 Deutsches Feld- und Kleinbahnmuseum e.V. +http://lobid.org/organisations/DE-MUS-160216#! DE-MUS-160216 Museum am Thie +http://lobid.org/organisations/DE-MUS-160810#! DE-MUS-160810 Heimatmuseum Höhbeck/Vietze +http://lobid.org/organisations/DE-MUS-161511#! DE-MUS-161511 Bördemuseum +http://lobid.org/organisations/DE-MUS-161813#! DE-MUS-161813 Torhaus Otterndorf - Sammlung Labiau/Ostpreußen +http://lobid.org/organisations/DE-MUS-162014#! DE-MUS-162014 Heimathaus Alte Mühle Schladen +http://lobid.org/organisations/DE-MUS-162212#! DE-MUS-162212 Heimatmuseum Stade +http://lobid.org/organisations/DE-MUS-162910#! DE-MUS-162910 Missionsausstellung des ELM im LHH +http://lobid.org/organisations/DE-MUS-164114#! DE-MUS-164114 Veterinärmedizinhistorisches Museum der Tierärztlichen Hochschule Hannover +http://lobid.org/organisations/DE-MUS-164416#! DE-MUS-164416 SPSG / Schloß Pfaueninsel +http://lobid.org/organisations/DE-MUS-164812#! DE-MUS-164812 Kunsthalle Bremerhaven +http://lobid.org/organisations/DE-MUS-166714#! DE-MUS-166714 Schillerhaus Oggersheim +http://lobid.org/organisations/DE-MUS-166912#! DE-MUS-166912 Römisches Museum Remagen +http://lobid.org/organisations/DE-MUS-167311#! DE-MUS-167311 Schloß Berleburg +http://lobid.org/organisations/DE-MUS-168116#! DE-MUS-168116 Kunstraum an der St.-Georg-Kirche +http://lobid.org/organisations/DE-MUS-168512#! DE-MUS-168512 Heimathaus Lette +http://lobid.org/organisations/DE-MUS-169015#! DE-MUS-169015 Westfälisches Schulmuseum +http://lobid.org/organisations/DE-MUS-170916#! DE-MUS-170916 Gustav-Lübcke-Museum +http://lobid.org/organisations/DE-MUS-171419#! DE-MUS-171419 BEGAS HAUS Museum für Kunst und Regionalgeschichte Heinsberg +http://lobid.org/organisations/DE-MUS-172016#! DE-MUS-172016 Stadtmuseum Hilchenbach in der Wilhelmsburg +http://lobid.org/organisations/DE-MUS-173019#! DE-MUS-173019 Heimatmuseum Marsberg +http://lobid.org/organisations/DE-MUS-173113#! DE-MUS-173113 Tüötten-Museum Telsemeyer +http://lobid.org/organisations/DE-MUS-173217#! DE-MUS-173217 Neanderthal Museum +http://lobid.org/organisations/DE-MUS-175119#! DE-MUS-175119 Museum am Schloss +http://lobid.org/organisations/DE-MUS-175817#! DE-MUS-175817 Museum im 'Stern' +http://lobid.org/organisations/DE-MUS-176216#! DE-MUS-176216 Märkisches Museum Witten +http://lobid.org/organisations/DE-MUS-176716#! DE-MUS-176716 Klöppelmuseum +http://lobid.org/organisations/DE-MUS-177417#! DE-MUS-177417 Schlossmuseum Amerang +http://lobid.org/organisations/DE-MUS-177813#! DE-MUS-177813 Alt-Arnstorf-Haus +http://lobid.org/organisations/DE-MUS-177917#! DE-MUS-177917 Sandauer Heimatstube +http://lobid.org/organisations/DE-MUS-178118#! DE-MUS-178118 Staatsgalerie im Schloß Johannisburg +http://lobid.org/organisations/DE-MUS-178212#! DE-MUS-178212 Schloß Unteraufseß +http://lobid.org/organisations/DE-MUS-178410#! DE-MUS-178410 Reichenberger Heimatstube (Nordböhmen) +http://lobid.org/organisations/DE-MUS-178514#! DE-MUS-178514 Heimathaus Aying 'Der Sixt Hof' +http://lobid.org/organisations/DE-MUS-180116#! DE-MUS-180116 Webereimuseum +http://lobid.org/organisations/DE-MUS-180210#! DE-MUS-180210 Heimat- und Bauernmuseum Bruck +http://lobid.org/organisations/DE-MUS-180512#! DE-MUS-180512 Oberpfälzer Volkskundemuseum +http://lobid.org/organisations/DE-MUS-181411#! DE-MUS-181411 Walhalla +http://lobid.org/organisations/DE-MUS-182216#! DE-MUS-182216 Missionsmuseum der Erzabtei St. Ottilien +http://lobid.org/organisations/DE-MUS-183417#! DE-MUS-183417 Wald- und Tiermuseum mit Uhrenmuseum +http://lobid.org/organisations/DE-MUS-186510#! DE-MUS-186510 Heimatmuseum Illertissen +http://lobid.org/organisations/DE-MUS-188516#! DE-MUS-188516 Lechfeldmuseum Königsbrunn +http://lobid.org/organisations/DE-MUS-189019#! DE-MUS-189019 Landschaftsmuseum Obermain +http://lobid.org/organisations/DE-MUS-190212#! DE-MUS-190212 friedens räume - mehr als ein museum +http://lobid.org/organisations/DE-MUS-190316#! DE-MUS-190316 Bauernhausmuseum Lindberg +http://lobid.org/organisations/DE-MUS-190712#! DE-MUS-190712 Riesengebirgsmuseum +http://lobid.org/organisations/DE-MUS-190910#! DE-MUS-190910 Finsterau Freilichtmuseum +http://lobid.org/organisations/DE-MUS-191215#! DE-MUS-191215 Museumsfreunde Mertingen e.V. +http://lobid.org/organisations/DE-MUS-191715#! DE-MUS-191715 Volkskundliche Sammlung +http://lobid.org/organisations/DE-MUS-193117#! DE-MUS-193117 Deutsches Dampflokomotiv-Museum +http://lobid.org/organisations/DE-MUS-193315#! DE-MUS-193315 Edwin Scharff Museum mit Kindermuseum +http://lobid.org/organisations/DE-MUS-194912#! DE-MUS-194912 Burg Pappenheim mit Historischem Museum und Natur- und Jagdmuseum +http://lobid.org/organisations/DE-MUS-195717#! DE-MUS-195717 Museum im Fressenden Haus +http://lobid.org/organisations/DE-MUS-196918#! DE-MUS-196918 Alt-Rothenburger Handwerkerhaus +http://lobid.org/organisations/DE-MUS-197515#! DE-MUS-197515 Schloßmuseum Hohenlohe-Schillingsfürst +http://lobid.org/organisations/DE-MUS-198112#! DE-MUS-198112 Römermuseum Bedaium +http://lobid.org/organisations/DE-MUS-198310#! DE-MUS-198310 Museum Solnhofen mit Sola-Basilika +http://lobid.org/organisations/DE-MUS-199511#! DE-MUS-199511 Brauerei-Museum Moos +http://lobid.org/organisations/DE-MUS-199917#! DE-MUS-199917 Kristallmuseum Viechtach +http://lobid.org/organisations/DE-MUS-200517#! DE-MUS-200517 Wegmachermuseum +http://lobid.org/organisations/DE-MUS-201010#! DE-MUS-201010 Burgmuseum +http://lobid.org/organisations/DE-MUS-201614#! DE-MUS-201614 Heimatstube Lichtenstadt (Egerland) +http://lobid.org/organisations/DE-MUS-201718#! DE-MUS-201718 Heimatmuseum Zusmarshausen +http://lobid.org/organisations/DE-MUS-202211#! DE-MUS-202211 Museum Ludwig +http://lobid.org/organisations/DE-MUS-202815#! DE-MUS-202815 Museum im Alten Bau +http://lobid.org/organisations/DE-MUS-203016#! DE-MUS-203016 Erfatalmuseum +http://lobid.org/organisations/DE-MUS-203714#! DE-MUS-203714 Hohenzollerisches Landesmuseum im Alten Schloss +http://lobid.org/organisations/DE-MUS-204613#! DE-MUS-204613 Museum Schloß Hellenstein +http://lobid.org/organisations/DE-MUS-204915#! DE-MUS-204915 Heimat- und Miedermuseum +http://lobid.org/organisations/DE-MUS-205710#! DE-MUS-205710 Stadtmuseum Radolfzell am Bodensee +http://lobid.org/organisations/DE-MUS-205814#! DE-MUS-205814 Schloß Favorite +http://lobid.org/organisations/DE-MUS-208313#! DE-MUS-208313 Altes Haus Greifenstein +http://lobid.org/organisations/DE-MUS-208719#! DE-MUS-208719 Landesbergbaumuseum Baden-Württemberg +http://lobid.org/organisations/DE-MUS-208917#! DE-MUS-208917 Festungs- und Waffengeschichtliches Museum +http://lobid.org/organisations/DE-MUS-210217#! DE-MUS-210217 Grabungs-Ausstellung Unterregenbach +http://lobid.org/organisations/DE-MUS-211314#! DE-MUS-211314 Heimatmuseum Niedernhall +http://lobid.org/organisations/DE-MUS-211418#! DE-MUS-211418 Heimatmuseum Michelbach +http://lobid.org/organisations/DE-MUS-212213#! DE-MUS-212213 Feuerwehrmuseum Stuttgart +http://lobid.org/organisations/DE-MUS-213310#! DE-MUS-213310 Lände +http://lobid.org/organisations/DE-MUS-214615#! DE-MUS-214615 Fürstlich Waldburg-Zeilsches Gesamtarchiv Schloß Zeil +http://lobid.org/organisations/DE-MUS-215118#! DE-MUS-215118 Musikhistorische Sammlung Jehle+Stauffenberg Gedenkstätte +http://lobid.org/organisations/DE-MUS-215514#! DE-MUS-215514 Heimatmuseum im Torturm +http://lobid.org/organisations/DE-MUS-216819#! DE-MUS-216819 Heimatstube Bleichstetten +http://lobid.org/organisations/DE-MUS-217010#! DE-MUS-217010 Heimatstube auf dem Klosterhof +http://lobid.org/organisations/DE-MUS-218117#! DE-MUS-218117 Heimatmuseum Remmingsheim +http://lobid.org/organisations/DE-MUS-218919#! DE-MUS-218919 Mörikehaus Ochsenwang +http://lobid.org/organisations/DE-MUS-220511#! DE-MUS-220511 Winzermuseum - Wipfler - +http://lobid.org/organisations/DE-MUS-220719#! DE-MUS-220719 Technikmuseum Sinsheim +http://lobid.org/organisations/DE-MUS-222715#! DE-MUS-222715 Schefflenztal-Sammlungen e.V. +http://lobid.org/organisations/DE-MUS-225016#! DE-MUS-225016 KZ-Gedenkstätte Neuengamme +http://lobid.org/organisations/DE-MUS-225516#! DE-MUS-225516 Steinzeitgrab ""Denghoog"" +http://lobid.org/organisations/DE-MUS-225912#! DE-MUS-225912 Brauereimuseum ""Felsenkeller Labyrinth"" +http://lobid.org/organisations/DE-MUS-226311#! DE-MUS-226311 Museum Schloß Hardenberg +http://lobid.org/organisations/DE-MUS-226613#! DE-MUS-226613 Regiomuseum Seligenstadt +http://lobid.org/organisations/DE-MUS-228213#! DE-MUS-228213 Haus Lesmona +http://lobid.org/organisations/DE-MUS-228317#! DE-MUS-228317 Rheinland-Pfälzisches Freilichtmuseum Bad Sobernheim +http://lobid.org/organisations/DE-MUS-228817#! DE-MUS-228817 Deutsches Filmmuseum / DFM +http://lobid.org/organisations/DE-MUS-230815#! DE-MUS-230815 Kornhausmuseum +http://lobid.org/organisations/DE-MUS-231110#! DE-MUS-231110 Landesmuseum, Augusteum +http://lobid.org/organisations/DE-MUS-232717#! DE-MUS-232717 Heimatstube +http://lobid.org/organisations/DE-MUS-234411#! DE-MUS-234411 Heimatmuseum+Museum Schöfferhaus mit Abt. Historische Feuerwehr +http://lobid.org/organisations/DE-MUS-234619#! DE-MUS-234619 Kunstsammlungen der Stadt Limburg +http://lobid.org/organisations/DE-MUS-237514#! DE-MUS-237514 Feuerbachhaus Speyer +http://lobid.org/organisations/DE-MUS-238319#! DE-MUS-238319 Brauerei-Museum Dortmund +http://lobid.org/organisations/DE-MUS-239312#! DE-MUS-239312 Stadtmuseum - Haus Kickelhain +http://lobid.org/organisations/DE-MUS-240515#! DE-MUS-240515 Heimatmuseum der Stadt Sinzig +http://lobid.org/organisations/DE-MUS-240713#! DE-MUS-240713 SPSG Berlin-Brandenburg/ Schloß Charlottenburg, Altes Schloss +http://lobid.org/organisations/DE-MUS-241112#! DE-MUS-241112 Donau-Schiffahrtsmuseum Regensburg +http://lobid.org/organisations/DE-MUS-241414#! DE-MUS-241414 Haus der Fotografie Dr. Robert Gerlich-Museum +http://lobid.org/organisations/DE-MUS-242417#! DE-MUS-242417 Deutsches Pinsel- und Bürstenmuseum +http://lobid.org/organisations/DE-MUS-243118#! DE-MUS-243118 Emsland Moormuseum +http://lobid.org/organisations/DE-MUS-243712#! DE-MUS-243712 Glauberg-Museum +http://lobid.org/organisations/DE-MUS-243910#! DE-MUS-243910 Heimatmuseum Heuchelheim +http://lobid.org/organisations/DE-MUS-245218#! DE-MUS-245218 Rhöner Naturmuseum +http://lobid.org/organisations/DE-MUS-245812#! DE-MUS-245812 Museum Langes Tannen +http://lobid.org/organisations/DE-MUS-246211#! DE-MUS-246211 Landwirtschaftsmuseum Meldorf +http://lobid.org/organisations/DE-MUS-248311#! DE-MUS-248311 Haus der Südostdeutschen +http://lobid.org/organisations/DE-MUS-248717#! DE-MUS-248717 Blindenmuseum +http://lobid.org/organisations/DE-MUS-248915#! DE-MUS-248915 Haus der Stadtgeschichte+Stadtarchiv/Museum +http://lobid.org/organisations/DE-MUS-249616#! DE-MUS-249616 Stiftung Kloster Dalheim+ LWL-Landesmuseum für Klosterkultur +http://lobid.org/organisations/DE-MUS-250611#! DE-MUS-250611 Reichsburg Cochem +http://lobid.org/organisations/DE-MUS-250913#! DE-MUS-250913 Schloß ""Villa Ludwigshöhe"" mit Max-Slevogt-Galerie +http://lobid.org/organisations/DE-MUS-251718#! DE-MUS-251718 Waldmuseum Herschberg +http://lobid.org/organisations/DE-MUS-252013#! DE-MUS-252013 Besucherbergwerke+Weiße Grube / Grube Maria+Pfälzisches Bergbaumuseum +http://lobid.org/organisations/DE-MUS-253016#! DE-MUS-253016 Maisel""s Bier-Erlebnis-Welt mit Brauereimuseum +http://lobid.org/organisations/DE-MUS-254311#! DE-MUS-254311 Fingerhutmuseum +http://lobid.org/organisations/DE-MUS-254915#! DE-MUS-254915 Jagdmuseum Falkenstein +http://lobid.org/organisations/DE-MUS-255012#! DE-MUS-255012 Zeidel-Museum +http://lobid.org/organisations/DE-MUS-255116#! DE-MUS-255116 Pfarrmuseum Flintsbach +http://lobid.org/organisations/DE-MUS-255512#! DE-MUS-255512 Naturschutzbund Deutschland, Wasservogelreservat Wallnau/Fehmarn +http://lobid.org/organisations/DE-MUS-256713#! DE-MUS-256713 Museum Villa Stahmer +http://lobid.org/organisations/DE-MUS-257216#! DE-MUS-257216 Europäisches Spargelmuseum +http://lobid.org/organisations/DE-MUS-258115#! DE-MUS-258115 Fränkisches Freilandmuseum +http://lobid.org/organisations/DE-MUS-258313#! DE-MUS-258313 Voithenberghammer +http://lobid.org/organisations/DE-MUS-259316#! DE-MUS-259316 Eisenbahnmuseum Lehmann +http://lobid.org/organisations/DE-MUS-259410#! DE-MUS-259410 Karl-August-Forster-Bienenmuseum +http://lobid.org/organisations/DE-MUS-261116#! DE-MUS-261116 Burgmuseum Mitterfels +http://lobid.org/organisations/DE-MUS-261814#! DE-MUS-261814 Burg - Museum Parsberg +http://lobid.org/organisations/DE-MUS-262411#! DE-MUS-262411 Holztechnisches Museum (HTMR) +http://lobid.org/organisations/DE-MUS-262817#! DE-MUS-262817 Töpfermuseum +http://lobid.org/organisations/DE-MUS-263112#! DE-MUS-263112 Friedensmuseum Meeder +http://lobid.org/organisations/DE-MUS-263914#! DE-MUS-263914 Museum im Alten Schloß Schleißheim, Sammlung Weinhold +http://lobid.org/organisations/DE-MUS-266611#! DE-MUS-266611 Museum im alten Rathaus Arnoldshain +http://lobid.org/organisations/DE-MUS-267718#! DE-MUS-267718 Reichskammergerichtsmuseum +http://lobid.org/organisations/DE-MUS-268013#! DE-MUS-268013 Museum Heimat- und Industriegeschichte Biebrich +http://lobid.org/organisations/DE-MUS-268617#! DE-MUS-268617 Kloster Maulbronn mit Museum +http://lobid.org/organisations/DE-MUS-269516#! DE-MUS-269516 Wintersportmuseum +http://lobid.org/organisations/DE-MUS-269912#! DE-MUS-269912 Internationales Radiomuseum Hans Necker +http://lobid.org/organisations/DE-MUS-270011#! DE-MUS-270011 Feuerwehrmuseum Heiligenhaus +http://lobid.org/organisations/DE-MUS-271514#! DE-MUS-271514 Bergisches Ofenmuseum +http://lobid.org/organisations/DE-MUS-271618#! DE-MUS-271618 Schloß Paffendorf - Energieausstellung der RWE Power AG +http://lobid.org/organisations/DE-MUS-272517#! DE-MUS-272517 Heimatmuseum Beuel +http://lobid.org/organisations/DE-MUS-272913#! DE-MUS-272913 Mahn- und Gedenkstätte Steinwache +http://lobid.org/organisations/DE-MUS-273312#! DE-MUS-273312 Mühle Bagband +http://lobid.org/organisations/DE-MUS-274117#! DE-MUS-274117 Nordwestdeutsches Schulmuseum +http://lobid.org/organisations/DE-MUS-274815#! DE-MUS-274815 Ernst-Thälmann-Gedenkstätte +http://lobid.org/organisations/DE-MUS-275714#! DE-MUS-275714 Schloß Stolzenfels +http://lobid.org/organisations/DE-MUS-276415#! DE-MUS-276415 Stefan-Andres-Ausstellung im Kulturzentrum +http://lobid.org/organisations/DE-MUS-276613#! DE-MUS-276613 Burg Rheinstein +http://lobid.org/organisations/DE-MUS-277418#! DE-MUS-277418 Schloß Reinbek +http://lobid.org/organisations/DE-MUS-278119#! DE-MUS-278119 Heimatmuseum Berkatal +http://lobid.org/organisations/DE-MUS-279612#! DE-MUS-279612 Margret-Knoop-Schellbach-Museum +http://lobid.org/organisations/DE-MUS-280013#! DE-MUS-280013 Heimatmuseum Naumburg +http://lobid.org/organisations/DE-MUS-280315#! DE-MUS-280315 Karpatendeutsches Heimatmuseum +http://lobid.org/organisations/DE-MUS-281214#! DE-MUS-281214 Museum im Alten Pfarrhaus +http://lobid.org/organisations/DE-MUS-284619#! DE-MUS-284619 Feuerwehrmuseum Hannover +http://lobid.org/organisations/DE-MUS-284817#! DE-MUS-284817 Kloster Isenhagen +http://lobid.org/organisations/DE-MUS-285112#! DE-MUS-285112 Turmmuseum in St. Magnus +http://lobid.org/organisations/DE-MUS-285216#! DE-MUS-285216 Museum 'Leben am Meer' +http://lobid.org/organisations/DE-MUS-286011#! DE-MUS-286011 Dorfmuseum Badenhausen +http://lobid.org/organisations/DE-MUS-286615#! DE-MUS-286615 Geschichtliches und landwirt. Museum +http://lobid.org/organisations/DE-MUS-287212#! DE-MUS-287212 Schulgeschichtliche Sammlung im Main-Taunus-Kreis +http://lobid.org/organisations/DE-MUS-288017#! DE-MUS-288017 Heimatmuseum Grötzingen +http://lobid.org/organisations/DE-MUS-288319#! DE-MUS-288319 Geologische Sammlung Eselsmühle +http://lobid.org/organisations/DE-MUS-288413#! DE-MUS-288413 Sammlung Domnick Nürtingen +http://lobid.org/organisations/DE-MUS-289416#! DE-MUS-289416 Burgmuseum Krautheim +http://lobid.org/organisations/DE-MUS-289916#! DE-MUS-289916 Museum im Amtshaus Grünsfeld +http://lobid.org/organisations/DE-MUS-290119#! DE-MUS-290119 Deutsches Spielemuseum e.V. +http://lobid.org/organisations/DE-MUS-292115#! DE-MUS-292115 Historisches Museum Wallerfangen +http://lobid.org/organisations/DE-MUS-292511#! DE-MUS-292511 Adolf-Bender-Zentrum +http://lobid.org/organisations/DE-MUS-292615#! DE-MUS-292615 Historisches Museum Saar +http://lobid.org/organisations/DE-MUS-292917#! DE-MUS-292917 Museum Pachten +http://lobid.org/organisations/DE-MUS-293410#! DE-MUS-293410 Museum Schloss Fellenberg +http://lobid.org/organisations/DE-MUS-293514#! DE-MUS-293514 Glas- und Heimatmuseum Warndt +http://lobid.org/organisations/DE-MUS-293910#! DE-MUS-293910 Heimattreff Gersweiler +http://lobid.org/organisations/DE-MUS-295218#! DE-MUS-295218 Bauernhofmuseum des Landkreises Fürstenfeldbruck im Jexhof +http://lobid.org/organisations/DE-MUS-296117#! DE-MUS-296117 Bilderbuchmuseum & MUSIT +http://lobid.org/organisations/DE-MUS-298217#! DE-MUS-298217 Hammerschmiede Vogler +http://lobid.org/organisations/DE-MUS-298415#! DE-MUS-298415 Museum für Klosterkultur +http://lobid.org/organisations/DE-MUS-299012#! DE-MUS-299012 Heinrich-Blickle-Museum +http://lobid.org/organisations/DE-MUS-299210#! DE-MUS-299210 Boxenstop Museum+Auto - Zweirad - Spielzeug +http://lobid.org/organisations/DE-MUS-299512#! DE-MUS-299512 Dorfmuseum Pliezhausen ""Ahnenhaus"" +http://lobid.org/organisations/DE-MUS-300018#! DE-MUS-300018 Museum Küssaberg +http://lobid.org/organisations/DE-MUS-300612#! DE-MUS-300612 Museum im Schloßpark Hilzingen +http://lobid.org/organisations/DE-MUS-300914#! DE-MUS-300914 Heimatmuseum Bad Dürrheim +http://lobid.org/organisations/DE-MUS-301719#! DE-MUS-301719 Heimatmuseum Menton +http://lobid.org/organisations/DE-MUS-302014#! DE-MUS-302014 Johanniter-Malteser-Museum +http://lobid.org/organisations/DE-MUS-302410#! DE-MUS-302410 Kerwe-Haus +http://lobid.org/organisations/DE-MUS-304114#! DE-MUS-304114 Murgtal-Museum +http://lobid.org/organisations/DE-MUS-304312#! DE-MUS-304312 Rechtshistorisches Museum +http://lobid.org/organisations/DE-MUS-304614#! DE-MUS-304614 Automuseum Asendorf +http://lobid.org/organisations/DE-MUS-304718#! DE-MUS-304718 Georg-August-Universität Göttingen / Museum der Göttinger Chemie +http://lobid.org/organisations/DE-MUS-305419#! DE-MUS-305419 FöV Bergbau- und Heimatmuseum e.V.+Schachtanlage Knesebeck +http://lobid.org/organisations/DE-MUS-305513#! DE-MUS-305513 Heimatmuseum Bad Laer +http://lobid.org/organisations/DE-MUS-305815#! DE-MUS-305815 Sammlung des Niedersächsischen Landesinstituts für Bienenkunde +http://lobid.org/organisations/DE-MUS-306016#! DE-MUS-306016 Städtische Galerie Delmenhorst und Sammlung Stuckenberg +http://lobid.org/organisations/DE-MUS-306412#! DE-MUS-306412 Findorff Hof +http://lobid.org/organisations/DE-MUS-307019#! DE-MUS-307019 Stiftung Albert-König-Museum +http://lobid.org/organisations/DE-MUS-307415#! DE-MUS-307415 Haus der Natur +http://lobid.org/organisations/DE-MUS-308012#! DE-MUS-308012 Wein- und Heimatmuseum der Stadt Zell (Mosel) +http://lobid.org/organisations/DE-MUS-308116#! DE-MUS-308116 Heimatstube Hänigsen und Teermuseum +http://lobid.org/organisations/DE-MUS-308918#! DE-MUS-308918 Römische Kalkbrennerei Iversheim +http://lobid.org/organisations/DE-MUS-309515#! DE-MUS-309515 Museum Wolfram von Eschenbach +http://lobid.org/organisations/DE-MUS-310010#! DE-MUS-310010 Brauereimuseum Irsee +http://lobid.org/organisations/DE-MUS-311617#! DE-MUS-311617 Fischerhaus Leimersheim +http://lobid.org/organisations/DE-MUS-312110#! DE-MUS-312110 Keltensiedlung Altburg +http://lobid.org/organisations/DE-MUS-312516#! DE-MUS-312516 Heimatmuseum Esterau +http://lobid.org/organisations/DE-MUS-313311#! DE-MUS-313311 Mahn- und Gedenkstätte für die Opfer nationalsozial. Gewaltherrschaft in Düsseldorf +http://lobid.org/organisations/DE-MUS-314512#! DE-MUS-314512 Heimatmuseum ""Christinas Stuben"" +http://lobid.org/organisations/DE-MUS-315411#! DE-MUS-315411 Museum Abenheim +http://lobid.org/organisations/DE-MUS-316310#! DE-MUS-316310 Karnevalsmuseum der K.G. Paohlbürger +http://lobid.org/organisations/DE-MUS-318712#! DE-MUS-318712 Skulpturenpark im Landschaftspark Nortorf +http://lobid.org/organisations/DE-MUS-318816#! DE-MUS-318816 Museum im Rathaus Dunningen +http://lobid.org/organisations/DE-MUS-319111#! DE-MUS-319111 Schönbuchmuseum +http://lobid.org/organisations/DE-MUS-320210#! DE-MUS-320210 Kunstmuseum Reutlingen - konkret +http://lobid.org/organisations/DE-MUS-320314#! DE-MUS-320314 Museum Betzingen, Zweigstelle Heimatmuseum +http://lobid.org/organisations/DE-MUS-320418#! DE-MUS-320418 Deutsches Zeitungsmuseum +http://lobid.org/organisations/DE-MUS-321015#! DE-MUS-321015 Ludwig Galerie Saarlouis +http://lobid.org/organisations/DE-MUS-323219#! DE-MUS-323219 Heimatmuseum Eriskirch +http://lobid.org/organisations/DE-MUS-325611#! DE-MUS-325611 Joseph-Maria-Lutz-Museum +http://lobid.org/organisations/DE-MUS-326010#! DE-MUS-326010 Museum 3. Dimension +http://lobid.org/organisations/DE-MUS-326218#! DE-MUS-326218 Museum im Kleihues-Bau+Museum der Stadt Kornwestheim +http://lobid.org/organisations/DE-MUS-326312#! DE-MUS-326312 Museum im Schlössle +http://lobid.org/organisations/DE-MUS-327815#! DE-MUS-327815 Literaturmuseum der Stadtbibliothek +http://lobid.org/organisations/DE-MUS-328016#! DE-MUS-328016 Museum Bad Rappenau +http://lobid.org/organisations/DE-MUS-328318#! DE-MUS-328318 Eisenbahnfreunde Zollernbahn e.V. +http://lobid.org/organisations/DE-MUS-329217#! DE-MUS-329217 Heimatmuseum Untergrombach +http://lobid.org/organisations/DE-MUS-329311#! DE-MUS-329311 Hermann-Hesse-Museum +http://lobid.org/organisations/DE-MUS-330118#! DE-MUS-330118 Museum am Odenwaldlimes +http://lobid.org/organisations/DE-MUS-330316#! DE-MUS-330316 Weinbaumuseum Erlenbach-Binswangen +http://lobid.org/organisations/DE-MUS-330910#! DE-MUS-330910 Inst. für Archäol. Wiss. der Albert-Ludwigs-Universität +http://lobid.org/organisations/DE-MUS-332416#! DE-MUS-332416 Heimatmuseum Karlsdorf +http://lobid.org/organisations/DE-MUS-332812#! DE-MUS-332812 Dorfmuseum Buchenberg +http://lobid.org/organisations/DE-MUS-333815#! DE-MUS-333815 Härtsfeldbahn-Museum +http://lobid.org/organisations/DE-MUS-334110#! DE-MUS-334110 Ottenhöfener Mühlenrundweg +http://lobid.org/organisations/DE-MUS-334516#! DE-MUS-334516 Stiftsmuseum St. Morizkirche +http://lobid.org/organisations/DE-MUS-334818#! DE-MUS-334818 Apothekenmuseum Schiltach +http://lobid.org/organisations/DE-MUS-335311#! DE-MUS-335311 Galerie der Stadt Sindelfingen – Lütze-Museum +http://lobid.org/organisations/DE-MUS-336616#! DE-MUS-336616 Haus der Stadtgeschichte im Rieder Tor +http://lobid.org/organisations/DE-MUS-338112#! DE-MUS-338112 Schulmuseum Bremen e.V. +http://lobid.org/organisations/DE-MUS-339313#! DE-MUS-339313 Stiftung Kloster Eberbach +http://lobid.org/organisations/DE-MUS-340016#! DE-MUS-340016 Stadtmuseum Hofheim am Taunus +http://lobid.org/organisations/DE-MUS-341613#! DE-MUS-341613 Filmmuseum Bendestorf +http://lobid.org/organisations/DE-MUS-343213#! DE-MUS-343213 Heimatmuseum Geversdorf +http://lobid.org/organisations/DE-MUS-343817#! DE-MUS-343817 Dorfmuseum Tündern +http://lobid.org/organisations/DE-MUS-344810#! DE-MUS-344810 Heimatmuseum Weiler +http://lobid.org/organisations/DE-MUS-345011#! DE-MUS-345011 Frankenstudio Kitzingen +http://lobid.org/organisations/DE-MUS-347319#! DE-MUS-347319 Stift Fischbeck +http://lobid.org/organisations/DE-MUS-347611#! DE-MUS-347611 Lieblinger Heimatstube +http://lobid.org/organisations/DE-MUS-348416#! DE-MUS-348416 Schulmuseum Lilienthal +http://lobid.org/organisations/DE-MUS-348812#! DE-MUS-348812 Stadtmuseum Meppen +http://lobid.org/organisations/DE-MUS-348916#! DE-MUS-348916 Mühlenmuseum Moisburg +http://lobid.org/organisations/DE-MUS-350810#! DE-MUS-350810 Handwerksmuseum am Mühlenberg +http://lobid.org/organisations/DE-MUS-351219#! DE-MUS-351219 Peetshof Wietzendorf +http://lobid.org/organisations/DE-MUS-351417#! DE-MUS-351417 Dorfmuseum Windhausen +http://lobid.org/organisations/DE-MUS-352014#! DE-MUS-352014 Kunsthaus NRW +http://lobid.org/organisations/DE-MUS-353017#! DE-MUS-353017 Medizinhistorische Sammlung +http://lobid.org/organisations/DE-MUS-353819#! DE-MUS-353819 1. Niederrheinisches Karnevalmuseum des HA Duisburger Karneval e.V. +http://lobid.org/organisations/DE-MUS-354218#! DE-MUS-354218 Bergbau- und Heimatmuseum im Paulushof +http://lobid.org/organisations/DE-MUS-354718#! DE-MUS-354718 Heimathaus Dingden +http://lobid.org/organisations/DE-MUS-355513#! DE-MUS-355513 Heimatstube Bielitz-Biela +http://lobid.org/organisations/DE-MUS-355919#! DE-MUS-355919 Pängelanton Eisenbahn-Museum +http://lobid.org/organisations/DE-MUS-356818#! DE-MUS-356818 Schleifermuseum+Balkhauser Kotten +http://lobid.org/organisations/DE-MUS-356912#! DE-MUS-356912 Wipperkotten +http://lobid.org/organisations/DE-MUS-357019#! DE-MUS-357019 Heimatverein Heimathaus Borghorst e.V. +http://lobid.org/organisations/DE-MUS-357217#! DE-MUS-357217 Deichdorfmuseum Bislich +http://lobid.org/organisations/DE-MUS-357519#! DE-MUS-357519 Besucherbergwerk Schmittenstollen +http://lobid.org/organisations/DE-MUS-357613#! DE-MUS-357613 Hein's Mühle +http://lobid.org/organisations/DE-MUS-358418#! DE-MUS-358418 Pellenz-Museum Nickenich +http://lobid.org/organisations/DE-MUS-358512#! DE-MUS-358512 Museum im Kannenofen 'Der Schlondes' +http://lobid.org/organisations/DE-MUS-359213#! DE-MUS-359213 Saarlandmuseum - Alte Sammlung +http://lobid.org/organisations/DE-MUS-359713#! DE-MUS-359713 Heimatmuseum +http://lobid.org/organisations/DE-MUS-360010#! DE-MUS-360010 Museum MMK +http://lobid.org/organisations/DE-MUS-360416#! DE-MUS-360416 Museum jüdischer Geschichte und Kultur +http://lobid.org/organisations/DE-MUS-361419#! DE-MUS-361419 Coburger Puppenmuseum +http://lobid.org/organisations/DE-MUS-362412#! DE-MUS-362412 Harmonika-Museum International +http://lobid.org/organisations/DE-MUS-362818#! DE-MUS-362818 Feuerwehrmuseum Kaufbeuren-Ostallgäu e.V. +http://lobid.org/organisations/DE-MUS-364012#! DE-MUS-364012 Kunstsammlung des Herzoglichen Georgianums +http://lobid.org/organisations/DE-MUS-365015#! DE-MUS-365015 Museum für historische Wehrtechnik e.V. +http://lobid.org/organisations/DE-MUS-365119#! DE-MUS-365119 Heimatmuseum Eisenbach +http://lobid.org/organisations/DE-MUS-365619#! DE-MUS-365619 Mineralien- und Fossiliensammlung Klein +http://lobid.org/organisations/DE-MUS-366112#! DE-MUS-366112 Schäfertanz-Kabinett +http://lobid.org/organisations/DE-MUS-367115#! DE-MUS-367115 Feuerwehrmuseum Spalt +http://lobid.org/organisations/DE-MUS-368118#! DE-MUS-368118 Städtische Galerie Traunstein +http://lobid.org/organisations/DE-MUS-370314#! DE-MUS-370314 Werkstatt-Museum -+Karl-Mayer-Haus +http://lobid.org/organisations/DE-MUS-370814#! DE-MUS-370814 Museumslogger AE7 Emden +http://lobid.org/organisations/DE-MUS-370918#! DE-MUS-370918 Schatzkammer Propstei Belecke +http://lobid.org/organisations/DE-MUS-371911#! DE-MUS-371911 Oberrheinisches Heimat- und Bädermuseum +http://lobid.org/organisations/DE-MUS-372018#! DE-MUS-372018 Stadtmuseum Klostermühle +http://lobid.org/organisations/DE-MUS-372112#! DE-MUS-372112 Bauernhausmuseum Gebersheim +http://lobid.org/organisations/DE-MUS-372216#! DE-MUS-372216 Heimatmuseum Mehrstetten +http://lobid.org/organisations/DE-MUS-373417#! DE-MUS-373417 Keltenmuseum Hochdorf/Enz +http://lobid.org/organisations/DE-MUS-374118#! DE-MUS-374118 Bernhard-Wolff-Schulmuseum der Stadt Büren +http://lobid.org/organisations/DE-MUS-374410#! DE-MUS-374410 GeoMuseum der Universität +http://lobid.org/organisations/DE-MUS-375819#! DE-MUS-375819 Abteimuseum +http://lobid.org/organisations/DE-MUS-376010#! DE-MUS-376010 Mineralogisches Museum Oberkirchen +http://lobid.org/organisations/DE-MUS-376218#! DE-MUS-376218 Deutsches Auswandererhaus +http://lobid.org/organisations/DE-MUS-376718#! DE-MUS-376718 Museumseisenbahn Hespertalbahn +http://lobid.org/organisations/DE-MUS-377419#! DE-MUS-377419 Haus Schlesien, Dokumentations- und Informationszentrum für schlesische Landeskunde +http://lobid.org/organisations/DE-MUS-378016#! DE-MUS-378016 Schulmuseum Bergisch Gladbach - Sammlung Cüppers +http://lobid.org/organisations/DE-MUS-378714#! DE-MUS-378714 Museum Modern Art Hünfeld +http://lobid.org/organisations/DE-MUS-380316#! DE-MUS-380316 Museum Haus Dix +http://lobid.org/organisations/DE-MUS-380514#! DE-MUS-380514 Museum Hegel-Haus +http://lobid.org/organisations/DE-MUS-380910#! DE-MUS-380910 EFA Museum für Deutsche Automobilgeschichte +http://lobid.org/organisations/DE-MUS-381215#! DE-MUS-381215 Localbahnmuseum Bayerisch Eisenstein +http://lobid.org/organisations/DE-MUS-382114#! DE-MUS-382114 Handwerker- und Kolpingmuseum im Faltertor +http://lobid.org/organisations/DE-MUS-382416#! DE-MUS-382416 Museum im Hollerhaus +http://lobid.org/organisations/DE-MUS-383315#! DE-MUS-383315 Stiftung Dokumentations- und Forschungszentrum des Deutschen Chorwesens / Sängermuseum +http://lobid.org/organisations/DE-MUS-383513#! DE-MUS-383513 Heimatsammlung Winterberg im Böhmerwald +http://lobid.org/organisations/DE-MUS-383815#! DE-MUS-383815 freies Reichsdorfmuseum Gochsheim +http://lobid.org/organisations/DE-MUS-384214#! DE-MUS-384214 Sparkassen-Museum Greding +http://lobid.org/organisations/DE-MUS-384714#! DE-MUS-384714 Jura-Bauernhof-Museum +http://lobid.org/organisations/DE-MUS-384818#! DE-MUS-384818 Schlossmuseum +http://lobid.org/organisations/DE-MUS-385811#! DE-MUS-385811 Herkomer-Museum am Mutterturm +http://lobid.org/organisations/DE-MUS-386012#! DE-MUS-386012 Kelten Römer Museum Manching +http://lobid.org/organisations/DE-MUS-386116#! DE-MUS-386116 Künstlerhaus Marktoberdorf +http://lobid.org/organisations/DE-MUS-387213#! DE-MUS-387213 Grenzland Heimatstuben des Heimatkreises Marienbad +http://lobid.org/organisations/DE-MUS-387911#! DE-MUS-387911 Rotkreuz-Museum +http://lobid.org/organisations/DE-MUS-388216#! DE-MUS-388216 Deutsches Museum - Flugwerft Schleißheim +http://lobid.org/organisations/DE-MUS-388914#! DE-MUS-388914 Heimatmuseum +http://lobid.org/organisations/DE-MUS-389417#! DE-MUS-389417 Heimatmuseum Eltmann +http://lobid.org/organisations/DE-MUS-389813#! DE-MUS-389813 Klostermuseum +http://lobid.org/organisations/DE-MUS-390516#! DE-MUS-390516 Heimathaus u. Handwerkermuseum +http://lobid.org/organisations/DE-MUS-390714#! DE-MUS-390714 Naturkundliches Museum i. Harmonie-Geb. +http://lobid.org/organisations/DE-MUS-390912#! DE-MUS-390912 Heimatmuseum Seeg +http://lobid.org/organisations/DE-MUS-391811#! DE-MUS-391811 Museum 'Goldener Steig' +http://lobid.org/organisations/DE-MUS-392012#! DE-MUS-392012 Fluvius - Museum Fluss und Teich +http://lobid.org/organisations/DE-MUS-392116#! DE-MUS-392116 Internationales Keramik-Museum +http://lobid.org/organisations/DE-MUS-392512#! DE-MUS-392512 Ur-Donautal-Museum +http://lobid.org/organisations/DE-MUS-392710#! DE-MUS-392710 Hudetz-Turm +http://lobid.org/organisations/DE-MUS-393213#! DE-MUS-393213 Schwules Museum +http://lobid.org/organisations/DE-2244#! DE-2244 Hamburgisches Architekturarchiv +http://lobid.org/organisations/DE-MUS-394112#! DE-MUS-394112 Dorfmuseum Dornburg-Wilsenroth +http://lobid.org/organisations/DE-MUS-395615#! DE-MUS-395615 Froschgass-Museum +http://lobid.org/organisations/DE-MUS-396014#! DE-MUS-396014 Celler Schützenmuseum +http://lobid.org/organisations/DE-MUS-398812#! DE-MUS-398812 Heimatmuseum Neuenwalde +http://lobid.org/organisations/DE-MUS-399117#! DE-MUS-399117 Heimatstube Odisheim +http://lobid.org/organisations/DE-MUS-399419#! DE-MUS-399419 Schortenser Heimatstuben +http://lobid.org/organisations/DE-MUS-399513#! DE-MUS-399513 Heimatstube Schweringen +http://lobid.org/organisations/DE-MUS-399815#! DE-MUS-399815 Burg Neuhaus +http://lobid.org/organisations/DE-MUS-399919#! DE-MUS-399919 Ludwig Forum für internationale Kunst +http://lobid.org/organisations/DE-MUS-402619#! DE-MUS-402619 Museum Theulegium +http://lobid.org/organisations/DE-MUS-402911#! DE-MUS-402911 Atrium u. Museum an der Schleuse +http://lobid.org/organisations/DE-MUS-403914#! DE-MUS-403914 Museumzentrum Rehau +http://lobid.org/organisations/DE-MUS-405316#! DE-MUS-405316 Papiermuseum Düren +http://lobid.org/organisations/DE-MUS-405514#! DE-MUS-405514 Heimatmuseum Linnich +http://lobid.org/organisations/DE-MUS-406611#! DE-MUS-406611 Dorfmuseum Ostheim +http://lobid.org/organisations/DE-MUS-407114#! DE-MUS-407114 Technoseum+Landesmuseum für Technik und Arbeit mit Museumsschiff +http://lobid.org/organisations/DE-MUS-407812#! DE-MUS-407812 Heimatmuseum Burladingen +http://lobid.org/organisations/DE-MUS-408211#! DE-MUS-408211 Waldhufen-Heimatmuseum +http://lobid.org/organisations/DE-MUS-410417#! DE-MUS-410417 Museum im Hexenturm +http://lobid.org/organisations/DE-MUS-412215#! DE-MUS-412215 Stadtmuseum im Rathaus +http://lobid.org/organisations/DE-MUS-412517#! DE-MUS-412517 Postmuseum Rheinhausen +http://lobid.org/organisations/DE-MUS-413114#! DE-MUS-413114 Freunde zur Erhaltung historischer Schienenfahrzeuge e.V. +http://lobid.org/organisations/DE-MUS-413614#! DE-MUS-413614 Natur- und Heimatmuseum Vellberg +http://lobid.org/organisations/DE-MUS-414013#! DE-MUS-414013 Georg Scholz Haus+Kunstforum Waldkirch e.V +http://lobid.org/organisations/DE-MUS-414211#! DE-MUS-414211 Museum in der Kulturscheune +http://lobid.org/organisations/DE-MUS-414617#! DE-MUS-414617 Käthe-Kruse-Puppen-Museum +http://lobid.org/organisations/DE-MUS-415516#! DE-MUS-415516 Kunsthalle Schweinfurt +http://lobid.org/organisations/DE-MUS-416113#! DE-MUS-416113 Bockwindmühle Vehlefanz +http://lobid.org/organisations/DE-MUS-417210#! DE-MUS-417210 Pilzkundliches Museum der Stadt Bad Laasphe +http://lobid.org/organisations/DE-MUS-417814#! DE-MUS-417814 Museum für Kindheits- und Jugendwerke bedeutender Künstler +http://lobid.org/organisations/DE-MUS-418713#! DE-MUS-418713 Mausefallen Museum +http://lobid.org/organisations/DE-MUS-420419#! DE-MUS-420419 Viermastbark 'Passat' +http://lobid.org/organisations/DE-MUS-420815#! DE-MUS-420815 Kindheitsmuseum Schönberg +http://lobid.org/organisations/DE-MUS-421110#! DE-MUS-421110 Industriemuseum Kupfermühle +http://lobid.org/organisations/DE-MUS-422113#! DE-MUS-422113 Tuchmacher Museum Bramsche +http://lobid.org/organisations/DE-MUS-422717#! DE-MUS-422717 Deutsches Luftschiff- und Marinefliegermuseum Nordholz +http://lobid.org/organisations/DE-MUS-423210#! DE-MUS-423210 Schulmuseum +http://lobid.org/organisations/DE-MUS-423512#! DE-MUS-423512 Schulmuseum Hundisburg +http://lobid.org/organisations/DE-MUS-424119#! DE-MUS-424119 Schulmuseum der Grundschule +http://lobid.org/organisations/DE-MUS-426219#! DE-MUS-426219 Friedrich-Wolf-Gedenkstätte +http://lobid.org/organisations/DE-MUS-427514#! DE-MUS-427514 Städtische Galerie Rastatt +http://lobid.org/organisations/DE-MUS-427910#! DE-MUS-427910 Dauerausstellung: Jüdisches Leben in Bad Kissingen +http://lobid.org/organisations/DE-MUS-428517#! DE-MUS-428517 Schloßmuseum Murnau +http://lobid.org/organisations/DE-MUS-428819#! DE-MUS-428819 Trachtenmuseum Ochsenfurt +http://lobid.org/organisations/DE-MUS-429312#! DE-MUS-429312 Gedenkstätte ""Opfer politischer Gewaltherrschaft"" +http://lobid.org/organisations/DE-MUS-432011#! DE-MUS-432011 Museum Wendener Hütte +http://lobid.org/organisations/DE-MUS-432417#! DE-MUS-432417 Schieferschaubergwerk Bad Berleburg +http://lobid.org/organisations/DE-MUS-432511#! DE-MUS-432511 Filmmuseum Düsseldorf +http://lobid.org/organisations/DE-MUS-432917#! DE-MUS-432917 Museum Europäische Kunst - Schloss Nörvenich +http://lobid.org/organisations/DE-MUS-433212#! DE-MUS-433212 Feuerwehrmuseum Soest +http://lobid.org/organisations/DE-MUS-434017#! DE-MUS-434017 Mühlenberger Stollen +http://lobid.org/organisations/DE-MUS-434413#! DE-MUS-434413 Dorfmuseum Dierscheid +http://lobid.org/organisations/DE-MUS-434715#! DE-MUS-434715 Papiermacher- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-435114#! DE-MUS-435114 Ortsgeschichtsausstellung im Mattheiser Hof +http://lobid.org/organisations/DE-MUS-435614#! DE-MUS-435614 Schulmuseum Immerath +http://lobid.org/organisations/DE-MUS-435812#! DE-MUS-435812 Kenner Heimatmuseum und Römische Ausgrabungen +http://lobid.org/organisations/DE-MUS-436419#! DE-MUS-436419 Ludwig Museum im Deutschherrenhaus +http://lobid.org/organisations/DE-MUS-436815#! DE-MUS-436815 Hospitalkapelle St. Jakobus, Ausstellungsraum des Museums im Hexenturm +http://lobid.org/organisations/DE-MUS-437516#! DE-MUS-437516 Wein- und Heimatmuseum Mehring +http://lobid.org/organisations/DE-MUS-437610#! DE-MUS-437610 Deutsches Vulkanmuseum +http://lobid.org/organisations/DE-MUS-438311#! DE-MUS-438311 Museum Kloster Disibodenberg +http://lobid.org/organisations/DE-MUS-438415#! DE-MUS-438415 NS-Dokumentationszentrum Rheinland-Pfalz+Gedenkstätte KZ Osthofen +http://lobid.org/organisations/DE-MUS-438519#! DE-MUS-438519 ""Wilhelm Panetzky-Museum"" - Sammlung zur Geschichte des Steinbruchs +http://lobid.org/organisations/DE-MUS-438717#! DE-MUS-438717 Töpfermuseum im Alten Kannenofen +http://lobid.org/organisations/DE-MUS-439210#! DE-MUS-439210 Museum für Ortsgeschichte und Heimatkunde e.V. +http://lobid.org/organisations/DE-MUS-439418#! DE-MUS-439418 Heimatmuseum Büchelberg +http://lobid.org/organisations/DE-MUS-439918#! DE-MUS-439918 Kampffmeyer'sche Holzlöffelsammlung +http://lobid.org/organisations/DE-MUS-440819#! DE-MUS-440819 Heimatmuseum Preetz +http://lobid.org/organisations/DE-MUS-441312#! DE-MUS-441312 Gorch Fock Haus/ Kinau Haus +http://lobid.org/organisations/DE-MUS-442919#! DE-MUS-442919 Museum Burg Creuzburg +http://lobid.org/organisations/DE-MUS-443110#! DE-MUS-443110 Eisenerzgrube ""St. Anna Stollen"" +http://lobid.org/organisations/DE-MUS-443412#! DE-MUS-443412 Korbmachermuseum Beiseförth +http://lobid.org/organisations/DE-MUS-443516#! DE-MUS-443516 Werra-Kalibergbau-Museum (WKM) +http://lobid.org/organisations/DE-MUS-443714#! DE-MUS-443714 Landesfeuerwehrmuseum Sachsen-Anhalt +http://lobid.org/organisations/DE-MUS-444217#! DE-MUS-444217 Handwerksmuseum Deggendorf +http://lobid.org/organisations/DE-MUS-445116#! DE-MUS-445116 Heimatstube Choren +http://lobid.org/organisations/DE-MUS-445210#! DE-MUS-445210 Erstes Deutsches Strumpfmuseum +http://lobid.org/organisations/DE-MUS-445314#! DE-MUS-445314 Deutsches Uhrenmuseum Glashütte +http://lobid.org/organisations/DE-MUS-445616#! DE-MUS-445616 Bauernmuseum Liebenau +http://lobid.org/organisations/DE-MUS-445710#! DE-MUS-445710 Esche-Museum +http://lobid.org/organisations/DE-MUS-446411#! DE-MUS-446411 Stadtmuseum Lennestadt +http://lobid.org/organisations/DE-MUS-446713#! DE-MUS-446713 Töpfereimuseum Ochtrup +http://lobid.org/organisations/DE-MUS-446817#! DE-MUS-446817 Museum der historischen Waschtechnik +http://lobid.org/organisations/DE-MUS-447216#! DE-MUS-447216 Kunstverein Emmerich e.V. +http://lobid.org/organisations/DE-MUS-447310#! DE-MUS-447310 Museum Teuchern +http://lobid.org/organisations/DE-MUS-447414#! DE-MUS-447414 Alte Dorfschmiede +http://lobid.org/organisations/DE-MUS-448219#! DE-MUS-448219 Heimatstube Calbe +http://lobid.org/organisations/DE-MUS-449118#! DE-MUS-449118 Euthanasie-Gedenkstätte +http://lobid.org/organisations/DE-MUS-449316#! DE-MUS-449316 Technikmuseum Magdeburg +http://lobid.org/organisations/DE-MUS-449410#! DE-MUS-449410 Gedenkstätte Moritzplatz Magdeburg +http://lobid.org/organisations/DE-MUS-451418#! DE-MUS-451418 Museum Weiler Textilgeschichte +http://lobid.org/organisations/DE-MUS-452911#! DE-MUS-452911 Brandenburgisches Textilmuseum Forst (Lausitz) +http://lobid.org/organisations/DE-MUS-453810#! DE-MUS-453810 Ofen- und Keramikmuseum Velten+Hedwig Bollhagen Museum +http://lobid.org/organisations/DE-MUS-454719#! DE-MUS-454719 Papiertheatermuseum Hanau +http://lobid.org/organisations/DE-MUS-455212#! DE-MUS-455212 Museum der Stadt Pasewalk+Künstlergedenkstätte+Paul Holz +http://lobid.org/organisations/DE-MUS-457312#! DE-MUS-457312 Heimatstube Watzum +http://lobid.org/organisations/DE-MUS-458211#! DE-MUS-458211 Historisches Klassenzimmer Geilenkirchen +http://lobid.org/organisations/DE-MUS-458513#! DE-MUS-458513 Stiftung Museum Schloss Moyland Sammlung Van der Grinten +http://lobid.org/organisations/DE-MUS-459516#! DE-MUS-459516 Heimatmuseum Föhren +http://lobid.org/organisations/DE-MUS-460917#! DE-MUS-460917 Museum alter Buchdruckmaschinen +http://lobid.org/organisations/DE-MUS-461212#! DE-MUS-461212 Museumsbrauerei Schmitt +http://lobid.org/organisations/DE-MUS-461618#! DE-MUS-461618 Neue Mühle Erfurt +http://lobid.org/organisations/DE-MUS-462413#! DE-MUS-462413 Deutsch-Deutsches Museum Mödlareuth, Freilandbereich +http://lobid.org/organisations/DE-MUS-462715#! DE-MUS-462715 Klassik Stiftung Weimar / Wielandgut Oßmannstedt +http://lobid.org/organisations/DE-MUS-463312#! DE-MUS-463312 Schloss Wildeck, Motorradmuseum, Stadt- u. Schlossmuseum m. Mineraliensammlung +http://lobid.org/organisations/DE-MUS-463812#! DE-MUS-463812 Holm-Museum +http://lobid.org/organisations/DE-MUS-464117#! DE-MUS-464117 Gedenkstätte Pauline von Mallinckrodt +http://lobid.org/organisations/DE-MUS-465318#! DE-MUS-465318 Freilichtmuseum 'Geo-Park Tannenbusch' +http://lobid.org/organisations/DE-MUS-465912#! DE-MUS-465912 Stadtmuseum Nürtingen +http://lobid.org/organisations/DE-MUS-466019#! DE-MUS-466019 Dokumentationsstätte ""Gelsenkirchen im Nationalsozialismus"" +http://lobid.org/organisations/DE-MUS-466113#! DE-MUS-466113 Stadtmuseum Ludwigsfelde +http://lobid.org/organisations/DE-MUS-467918#! DE-MUS-467918 Uhrenindustriemuseum +http://lobid.org/organisations/DE-MUS-468213#! DE-MUS-468213 Römische Villa Rustica Möckenlohe +http://lobid.org/organisations/DE-MUS-469518#! DE-MUS-469518 Museum Fürstenfeldbruck +http://lobid.org/organisations/DE-MUS-471412#! DE-MUS-471412 Heimatmuseum Bischoffen +http://lobid.org/organisations/DE-MUS-471714#! DE-MUS-471714 Cornberger Sandsteinmuseum +http://lobid.org/organisations/DE-MUS-473210#! DE-MUS-473210 Überwälder Heimatmuseum +http://lobid.org/organisations/DE-MUS-473512#! DE-MUS-473512 Stadtmuseum Bergen +http://lobid.org/organisations/DE-MUS-474015#! DE-MUS-474015 Heimatstube Wehrstedt +http://lobid.org/organisations/DE-MUS-474119#! DE-MUS-474119 Museumsschiff FMS Gera +http://lobid.org/organisations/DE-MUS-474213#! DE-MUS-474213 Varusschlacht im Osnabrücker Land - Museum und Park Kalkriese +http://lobid.org/organisations/DE-MUS-474411#! DE-MUS-474411 Haesler-Museum +http://lobid.org/organisations/DE-MUS-474817#! DE-MUS-474817 August-Gottschalk-Haus+Gedenkstätte z. Geschichte d. ostfriesischen Juden +http://lobid.org/organisations/DE-MUS-475518#! DE-MUS-475518 Nordhannoversches Bauernhaus-Museum Isernhagen +http://lobid.org/organisations/DE-MUS-476115#! DE-MUS-476115 Stiftung Gedenkstätte Esterwegen +http://lobid.org/organisations/DE-MUS-476313#! DE-MUS-476313 Dinosaurier-Freilichtmuseum Münchehagen +http://lobid.org/organisations/DE-MUS-476417#! DE-MUS-476417 Grenzlandmuseum Schnackenburg +http://lobid.org/organisations/DE-MUS-477118#! DE-MUS-477118 Kunstgewerbesammlung der Stadt Bielefeld Stiftung Huelsmann +http://lobid.org/organisations/DE-MUS-477712#! DE-MUS-477712 Westfälisches Imkereimuseum +http://lobid.org/organisations/DE-MUS-477910#! DE-MUS-477910 Privatmuseum ""Brauchtum zur Taufe"" +http://lobid.org/organisations/DE-MUS-478517#! DE-MUS-478517 Residenzmuseum +Museen im Marstall +http://lobid.org/organisations/DE-MUS-480119#! DE-MUS-480119 Heimatstube im Haus Dassel +http://lobid.org/organisations/DE-MUS-480911#! DE-MUS-480911 Gedenkstätte Museum in der ""Runden Ecke"" +http://lobid.org/organisations/DE-MUS-481112#! DE-MUS-481112 MiBERZ - Museum für mittelalterlichen Bergbau im Erzgebirge +http://lobid.org/organisations/DE-MUS-484111#! DE-MUS-484111 Technisches Denkmal Schillingschmiede +http://lobid.org/organisations/DE-MUS-485010#! DE-MUS-485010 Kupfererzbergwerk Düppenweiler +http://lobid.org/organisations/DE-MUS-485510#! DE-MUS-485510 Heimatmuseum Wemmetsweiler +http://lobid.org/organisations/DE-MUS-488113#! DE-MUS-488113 Heimatstube Derenburg +http://lobid.org/organisations/DE-MUS-488217#! DE-MUS-488217 Heimatmuseum Ditfurt +http://lobid.org/organisations/DE-MUS-490215#! DE-MUS-490215 Museum / Nietzsche Gedenkstätte Röcken +http://lobid.org/organisations/DE-MUS-490913#! DE-MUS-490913 Schussenrieder Bierkrugmuseum +http://lobid.org/organisations/DE-MUS-491812#! DE-MUS-491812 Reichsstädtisches Museum im Alten Spital +http://lobid.org/organisations/DE-MUS-491916#! DE-MUS-491916 Heimatmuseum Sandweier +http://lobid.org/organisations/DE-MUS-492117#! DE-MUS-492117 Max Böhlen Museum +http://lobid.org/organisations/DE-MUS-492315#! DE-MUS-492315 Museum Villa Rot +http://lobid.org/organisations/DE-MUS-493016#! DE-MUS-493016 Museum für Ortsgeschichte der Gemeinde Neulußheim +http://lobid.org/organisations/DE-MUS-493214#! DE-MUS-493214 Karl-Wörn-Haus - Museum der Stadt Schwetzingen +http://lobid.org/organisations/DE-MUS-494311#! DE-MUS-494311 Ziegel- und Kalk Museum Flintsbach +http://lobid.org/organisations/DE-MUS-495210#! DE-MUS-495210 Flugplatzmuseum Cottbus e.V. +http://lobid.org/organisations/DE-MUS-495616#! DE-MUS-495616 Grüttert Uhren Museum Bremen +http://lobid.org/organisations/DE-MUS-498115#! DE-MUS-498115 Feuerwehrmuseum Kirchlengern-Quernheim +http://lobid.org/organisations/DE-MUS-498615#! DE-MUS-498615 Heimathaus Rietberg mit Ostdeutscher Heimatstube +http://lobid.org/organisations/DE-MUS-499410#! DE-MUS-499410 Ehemalige Synagoge Ahrweiler +http://lobid.org/organisations/DE-MUS-607210#! DE-MUS-607210 Kloster St. Marienberg +http://lobid.org/organisations/DE-MUS-621612#! DE-MUS-621612 Museum der St. Nikolai-Kirche Spandau +http://lobid.org/organisations/DE-MUS-627110#! DE-MUS-627110 Villa Römer+Haus der Stadtgeschiche +http://lobid.org/organisations/DE-MUS-654513#! DE-MUS-654513 Heimatstube Radegast +http://lobid.org/organisations/DE-MUS-670119#! DE-MUS-670119 Stiftung Christliche Kunst Wittenberg +http://lobid.org/organisations/DE-MUS-703615#! DE-MUS-703615 Museum Terra Triassica +http://lobid.org/organisations/DE-MUS-703813#! DE-MUS-703813 Museum Film - Photo - Ton +http://lobid.org/organisations/DE-MUS-704118#! DE-MUS-704118 MEWO Kunsthalle Memmingen +http://lobid.org/organisations/DE-MUS-706010#! DE-MUS-706010 Liebermann-Villa +http://lobid.org/organisations/DE-MUS-706312#! DE-MUS-706312 DDR Museum Berlin +http://lobid.org/organisations/DE-MUS-707013#! DE-MUS-707013 Museum der Oberzent +http://lobid.org/organisations/DE-MUS-712510#! DE-MUS-712510 Schleswig-Holsteinisches Eiszeitmuseum +http://lobid.org/organisations/DE-MUS-712718#! DE-MUS-712718 Obstmuseum 'Pomarium Anglicum' in Winderatt +http://lobid.org/organisations/DE-MUS-712916#! DE-MUS-712916 Zeitgeschichtliches Forum Leipzig +http://lobid.org/organisations/DE-MUS-716616#! DE-MUS-716616 Landwirtschaftsmuseum Böckwitz und Grenzlehrpfad +http://lobid.org/organisations/DE-MUS-716814#! DE-MUS-716814 Dokumentationszentrum zur deutschen Nachkriegsgeschichte +http://lobid.org/organisations/DE-MUS-717713#! DE-MUS-717713 LWL - Industriemuseum Henrichshütte in Hattingen +http://lobid.org/organisations/DE-MUS-718310#! DE-MUS-718310 Thüringer Kloß-Welt +http://lobid.org/organisations/DE-MUS-718612#! DE-MUS-718612 Städtische Museen Schwedt/Oder+Tabakmuseum Vierraden +http://lobid.org/organisations/DE-MUS-718810#! DE-MUS-718810 Naturkundemuseum im Arlau-Schöpfwerk +http://lobid.org/organisations/DE-MUS-718914#! DE-MUS-718914 Museum der Unerhörten Dinge +http://lobid.org/organisations/DE-MUS-719511#! DE-MUS-719511 Geschichts- und Heimatmuseum Altshausen ""Alte Post"" +http://lobid.org/organisations/DE-MUS-720318#! DE-MUS-720318 Dr. Berger-Heimatmuseum +http://lobid.org/organisations/DE-MUS-720412#! DE-MUS-720412 Heimatmuseum Gschwend im altes Rathaus +http://lobid.org/organisations/DE-MUS-720912#! DE-MUS-720912 Jünger-Haus +http://lobid.org/organisations/DE-MUS-722012#! DE-MUS-722012 Historische Mühle Glatz +http://lobid.org/organisations/DE-MUS-722418#! DE-MUS-722418 Museum Schloß Filseck - Dokumentation zur Schloßgeschichte +http://lobid.org/organisations/DE-MUS-722616#! DE-MUS-722616 Klosteranlage Wiblingen, Museum im Konventgebäude +http://lobid.org/organisations/DE-MUS-722710#! DE-MUS-722710 Flößermuseum +http://lobid.org/organisations/DE-MUS-723317#! DE-MUS-723317 Walderlebniszentrum Ehrhorn +http://lobid.org/organisations/DE-MUS-724518#! DE-MUS-724518 LANGES HAUS Altfriedland +http://lobid.org/organisations/DE-MUS-724716#! DE-MUS-724716 Glashütte Annenwalde +http://lobid.org/organisations/DE-MUS-725219#! DE-MUS-725219 Heimatstube Bleyen +http://lobid.org/organisations/DE-MUS-725719#! DE-MUS-725719 Heimatstube Burg +http://lobid.org/organisations/DE-MUS-728510#! DE-MUS-728510 Heimatstube Kostebrau +http://lobid.org/organisations/DE-MUS-728812#! DE-MUS-728812 Heimatmuseumim Liebenwalde im ehemaligen Stadtgefängnis +http://lobid.org/organisations/DE-MUS-730018#! DE-MUS-730018 Technisches Denkmal 'Gaswerk' +http://lobid.org/organisations/DE-MUS-730810#! DE-MUS-730810 Elstermühle Plessa +http://lobid.org/organisations/DE-MUS-731917#! DE-MUS-731917 Heimatmuseum und Stadtarchiv +http://lobid.org/organisations/DE-MUS-732316#! DE-MUS-732316 Heimatstube Vietmannsdorf +http://lobid.org/organisations/DE-MUS-732514#! DE-MUS-732514 Heimatstube Waldsieversdorf +http://lobid.org/organisations/DE-MUS-733215#! DE-MUS-733215 Schul- und Bethaus Wuschewier +http://lobid.org/organisations/DE-MUS-733715#! DE-MUS-733715 Historische Mühle von Sanssouci +http://lobid.org/organisations/DE-MUS-734114#! DE-MUS-734114 Gramzower Heimatstuben +http://lobid.org/organisations/DE-MUS-734718#! DE-MUS-734718 Brückturmmuseum +http://lobid.org/organisations/DE-MUS-735117#! DE-MUS-735117 Museen im Schloß Augustusburg/Schlosskerker mit Ausstellung ""Richter, Henker, Missetäter"" +http://lobid.org/organisations/DE-MUS-735419#! DE-MUS-735419 Kulturstiftung DessauWörlitz, Schloß Luisium +http://lobid.org/organisations/DE-MUS-737915#! DE-MUS-737915 Luftfahrttechnisches Museum Rechlin +http://lobid.org/organisations/DE-MUS-738210#! DE-MUS-738210 Darßer Arche +http://lobid.org/organisations/DE-MUS-739515#! DE-MUS-739515 Evangel. Diakonissenhaus Berlin Teltow Lehnin/Museum im Zisterzienserkloster Lehnin +http://lobid.org/organisations/DE-MUS-741419#! DE-MUS-741419 Kornbrennerei-Museum Saerbeck +http://lobid.org/organisations/DE-MUS-741513#! DE-MUS-741513 Museum für Westfälische Literatur +http://lobid.org/organisations/DE-MUS-741617#! DE-MUS-741617 Museum Bochum - Bauernhausmuseum +http://lobid.org/organisations/DE-MUS-741711#! DE-MUS-741711 Alte Ziegelei Wiesenbach +http://lobid.org/organisations/DE-MUS-743311#! DE-MUS-743311 Ausstellungsraum ""Stöpenkieker""+Historische Fähre Kronsnest +http://lobid.org/organisations/DE-MUS-743811#! DE-MUS-743811 Wassermühle Schaalby +http://lobid.org/organisations/DE-MUS-743915#! DE-MUS-743915 Dorfgeschichtliche Sammlung +http://lobid.org/organisations/DE-MUS-744418#! DE-MUS-744418 Dorfmuseum Ulsnis +http://lobid.org/organisations/DE-MUS-746914#! DE-MUS-746914 Museum u. Puppensammlung Burg Wendelstein +http://lobid.org/organisations/DE-MUS-747011#! DE-MUS-747011 Pavillon-Presse Weimar +http://lobid.org/organisations/DE-MUS-747917#! DE-MUS-747917 Zentrum für Internationale Lichtkunst Unna +http://lobid.org/organisations/DE-MUS-748712#! DE-MUS-748712 Riff-Museum Gerstetten +http://lobid.org/organisations/DE-MUS-749017#! DE-MUS-749017 Dieselmuseum im Gewerbepark H.A.U. +http://lobid.org/organisations/DE-MUS-749517#! DE-MUS-749517 Kunstmuseum Bayreuth +http://lobid.org/organisations/DE-MUS-750210#! DE-MUS-750210 Museum für Militär- und Zeitgeschichte Stammheim +http://lobid.org/organisations/DE-MUS-751411#! DE-MUS-751411 Müllner-Peter-Museum +http://lobid.org/organisations/DE-MUS-752914#! DE-MUS-752914 Otto Ubbelohdes Wohn- und Atelierhaus +http://lobid.org/organisations/DE-MUS-753011#! DE-MUS-753011 Judaica-Museum +http://lobid.org/organisations/DE-MUS-753917#! DE-MUS-753917 Rookhus +http://lobid.org/organisations/DE-MUS-755111#! DE-MUS-755111 K21 Kunstsammlung im Ständehaus +http://lobid.org/organisations/DE-MUS-757013#! DE-MUS-757013 Museum Friedensau+Kultur- und Museumsscheune +http://lobid.org/organisations/DE-MUS-757419#! DE-MUS-757419 Museum am Meer +http://lobid.org/organisations/DE-MUS-758016#! DE-MUS-758016 Traktoren und historische Landmaschinen Grönegau-Buer e.V. +http://lobid.org/organisations/DE-MUS-758214#! DE-MUS-758214 Kutschen-, Wagen- und Schlittenmuseum +http://lobid.org/organisations/DE-MUS-759311#! DE-MUS-759311 Museumsscheune Kremmen +http://lobid.org/organisations/DE-MUS-759717#! DE-MUS-759717 Museum Am Salzmarkt +http://lobid.org/organisations/DE-MUS-760910#! DE-MUS-760910 Fischereimuseum unterer Aischgrund +http://lobid.org/organisations/DE-MUS-761319#! DE-MUS-761319 Mühlenmuseum Katzbrui +http://lobid.org/organisations/DE-MUS-761715#! DE-MUS-761715 Die Kiste+Augsburger Puppentheatermuseum +http://lobid.org/organisations/DE-MUS-761819#! DE-MUS-761819 Diözesanmuseum St. Afra +http://lobid.org/organisations/DE-MUS-762916#! DE-MUS-762916 Klostermühlenmuseum Gnadenberg +http://lobid.org/organisations/DE-MUS-763211#! DE-MUS-763211 Grabungsmuseum Kirchhof +http://lobid.org/organisations/DE-MUS-766012#! DE-MUS-766012 Orgelmuseum Kelheim +http://lobid.org/organisations/DE-MUS-766512#! DE-MUS-766512 Museum Quintana - Archäologie in Künzing +http://lobid.org/organisations/DE-MUS-767015#! DE-MUS-767015 Heimatmuseum Lenggries +http://lobid.org/organisations/DE-MUS-767119#! DE-MUS-767119 Sammlung Fossilien des Jura +http://lobid.org/organisations/DE-MUS-767317#! DE-MUS-767317 Stadtmuseum Marktoberdorf +http://lobid.org/organisations/DE-MUS-767911#! DE-MUS-767911 Kinder- und Jugendmuseum München +http://lobid.org/organisations/DE-MUS-768018#! DE-MUS-768018 Lesemuseum mit Michael-Ende-Museum +http://lobid.org/organisations/DE-MUS-769313#! DE-MUS-769313 Krankenhausmuseum Klinikum Nürnberg +http://lobid.org/organisations/DE-MUS-769511#! DE-MUS-769511 Heimatmuseum Ebenhausen +http://lobid.org/organisations/DE-MUS-769615#! DE-MUS-769615 Katharinas Puppenhaus +http://lobid.org/organisations/DE-MUS-769719#! DE-MUS-769719 Rottauer Museum für Fahrzeuge, Wehrtechnik und Zeitgeschichte +http://lobid.org/organisations/DE-MUS-770214#! DE-MUS-770214 Rotkreuz-Museum Ostbayern +http://lobid.org/organisations/DE-MUS-770412#! DE-MUS-770412 Hexenmuseum +http://lobid.org/organisations/DE-MUS-773411#! DE-MUS-773411 Haus der Donauschwaben +http://lobid.org/organisations/DE-MUS-774112#! DE-MUS-774112 Brauereimuseum +http://lobid.org/organisations/DE-MUS-774414#! DE-MUS-774414 Thüringer Landesmuseum Heidecksburg / Jagdschloß Paulinzella +http://lobid.org/organisations/DE-MUS-774716#! DE-MUS-774716 Theodor-Heuss-Haus +http://lobid.org/organisations/DE-MUS-776118#! DE-MUS-776118 Karlsgraben-Ausstellung +http://lobid.org/organisations/DE-MUS-776514#! DE-MUS-776514 Schloß Obernzenn +http://lobid.org/organisations/DE-MUS-776618#! DE-MUS-776618 Museum Barockscheune +http://lobid.org/organisations/DE-MUS-776910#! DE-MUS-776910 Wilhelm-Leuschner-Gedenkstätte +http://lobid.org/organisations/DE-MUS-777715#! DE-MUS-777715 Museum am Dom +http://lobid.org/organisations/DE-MUS-778416#! DE-MUS-778416 Kunstmuseum Schwaan +http://lobid.org/organisations/DE-MUS-779117#! DE-MUS-779117 Bernsteinmuseum Sellin +http://lobid.org/organisations/DE-MUS-779513#! DE-MUS-779513 Lotsenausstellung Thiessow +http://lobid.org/organisations/DE-MUS-781219#! DE-MUS-781219 Heimatstube +http://lobid.org/organisations/DE-MUS-781615#! DE-MUS-781615 Uns Heimatstuf Gielow +http://lobid.org/organisations/DE-MUS-781719#! DE-MUS-781719 Heimatstube Ferdinandshof +http://lobid.org/organisations/DE-MUS-782316#! DE-MUS-782316 Schulmuseum im Schloss Ahaus +http://lobid.org/organisations/DE-MUS-782410#! DE-MUS-782410 Bergbau-Museum Grube Friedrichssegen +http://lobid.org/organisations/DE-MUS-782816#! DE-MUS-782816 Informations- und Dokumentationszentrum des BSTU - Außenstelle Halle +http://lobid.org/organisations/DE-MUS-783413#! DE-MUS-783413 Thüringer Karneval Museum +http://lobid.org/organisations/DE-MUS-783611#! DE-MUS-783611 Düshorner Dorfmuseum +http://lobid.org/organisations/DE-MUS-784114#! DE-MUS-784114 Landesmuseum, Prinzenpalais +http://lobid.org/organisations/DE-MUS-784416#! DE-MUS-784416 Kurioses Muschelmuseum +http://lobid.org/organisations/DE-MUS-785013#! DE-MUS-785013 Museum und Galerie im Aschingerhaus +http://lobid.org/organisations/DE-MUS-785315#! DE-MUS-785315 Vehikelsammlung Eppelheim +http://lobid.org/organisations/DE-MUS-785617#! DE-MUS-785617 Wuseum +http://lobid.org/organisations/DE-MUS-786214#! DE-MUS-786214 Heimatmuseum Mittelbuchen +http://lobid.org/organisations/DE-MUS-786318#! DE-MUS-786318 Straßenbahnmuseum Kassel +http://lobid.org/organisations/DE-MUS-786818#! DE-MUS-786818 Hutmuseum +http://lobid.org/organisations/DE-MUS-788210#! DE-MUS-788210 Langen Foundation +http://lobid.org/organisations/DE-MUS-788314#! DE-MUS-788314 Druckerei Museum Weiss +http://lobid.org/organisations/DE-MUS-788918#! DE-MUS-788918 Stadthistorisches Museum Mainz +http://lobid.org/organisations/DE-MUS-789713#! DE-MUS-789713 Metallhandwerksmuseum +http://lobid.org/organisations/DE-MUS-789817#! DE-MUS-789817 Angermuseum - Margaretha-Reichardt-Haus +http://lobid.org/organisations/DE-MUS-792318#! DE-MUS-792318 Web- und Textilmuseum Loccum +http://lobid.org/organisations/DE-MUS-792818#! DE-MUS-792818 Ziegeleimuseum Gut Daren +http://lobid.org/organisations/DE-MUS-793311#! DE-MUS-793311 Die Kranzbinder Beckdorf e.V. +http://lobid.org/organisations/DE-MUS-793811#! DE-MUS-793811 Stiftung Schulmuseum der Universität Hildesheim +http://lobid.org/organisations/DE-MUS-794314#! DE-MUS-794314 Matthias Erzberger Erinnerungsstätte +http://lobid.org/organisations/DE-MUS-794512#! DE-MUS-794512 Museum des MC Bergring Teterow e.V. +http://lobid.org/organisations/DE-MUS-794616#! DE-MUS-794616 HBB Abt. Themenpark ""Kohle & Energie""""/""Borkener See"" +http://lobid.org/organisations/DE-MUS-795317#! DE-MUS-795317 Museum Lothar Fischer +http://lobid.org/organisations/DE-MUS-796216#! DE-MUS-796216 Kleines Bienenmuseum Oberlichtenau +http://lobid.org/organisations/DE-MUS-796414#! DE-MUS-796414 Braumuseum +http://lobid.org/organisations/DE-MUS-796612#! DE-MUS-796612 phaeno gGmbh +http://lobid.org/organisations/DE-MUS-796716#! DE-MUS-796716 Aussichtsturm Kranichsberg+Filmgeschichte Woltersdorf +http://lobid.org/organisations/DE-MUS-797615#! DE-MUS-797615 Grenz- und Heimatmuseum Gräfenthal +http://lobid.org/organisations/DE-MUS-797719#! DE-MUS-797719 Tischlereimuseum Jacob Hansen +http://lobid.org/organisations/DE-MUS-799017#! DE-MUS-799017 Brachttal-Museum +http://lobid.org/organisations/DE-MUS-799819#! DE-MUS-799819 Kunstsammlungen Chemnitz, Museum Gunzenhauser +http://lobid.org/organisations/DE-MUS-800013#! DE-MUS-800013 Heimatmuseum Aken +http://lobid.org/organisations/DE-MUS-802613#! DE-MUS-802613 Museum Schloß Delitzsch / Breiter Turm +http://lobid.org/organisations/DE-MUS-802811#! DE-MUS-802811 Kulturstiftung DessauWörlitz, Museum Schloß Mosigkau +http://lobid.org/organisations/DE-MUS-803012#! DE-MUS-803012 Museum für Naturkunde und Vorgeschichte +http://lobid.org/organisations/DE-MUS-803616#! DE-MUS-803616 Stiftung Luthergedenkstätten / Luthers Geburtshaus +http://lobid.org/organisations/DE-MUS-804015#! DE-MUS-804015 Jahn-Museum Freyburg +http://lobid.org/organisations/DE-MUS-805612#! DE-MUS-805612 Händel-Haus Halle mit Musikinstrumentensammlung +http://lobid.org/organisations/DE-MUS-805716#! DE-MUS-805716 Zentralmagazin Naturwiss. Sammlungen +http://lobid.org/organisations/DE-MUS-806219#! DE-MUS-806219 Stadtmuseum Halle / Oberburg Giebichenstein +http://lobid.org/organisations/DE-MUS-808413#! DE-MUS-808413 Museum der Stadt Naumburg / Wenzelsturm +http://lobid.org/organisations/DE-MUS-812511#! DE-MUS-812511 Himmelskundliches Museum (Archenhold-Sternwarte) +http://lobid.org/organisations/DE-MUS-813514#! DE-MUS-813514 Stadtmuseum Berlin / Museum Nikolaikirche +http://lobid.org/organisations/DE-MUS-814819#! DE-MUS-814819 Münzkabinett SMB +http://lobid.org/organisations/DE-MUS-815614#! DE-MUS-815614 Skulpturen-Sammlung SMB +http://lobid.org/organisations/DE-MUS-819814#! DE-MUS-819814 Mitteldeutsches Marionettentheatermuseum +http://lobid.org/organisations/DE-MUS-821218#! DE-MUS-821218 brechtweigelhaus +http://lobid.org/organisations/DE-MUS-822419#! DE-MUS-822419 Gerhart-Hauptmann-Museum Erkner +http://lobid.org/organisations/DE-MUS-822513#! DE-MUS-822513 Museum und Galerie Falkensee +http://lobid.org/organisations/DE-MUS-822617#! DE-MUS-822617 Sänger- und Kaufmannsmuseum +http://lobid.org/organisations/DE-MUS-823818#! DE-MUS-823818 Museum im Mönchenkloster +http://lobid.org/organisations/DE-MUS-824113#! DE-MUS-824113 Museum des Landkreises Oberspreewald-Spreewaldmuseum Lübbenau /Abt. Freilandmuseum Lehde +http://lobid.org/organisations/DE-MUS-824915#! DE-MUS-824915 Heimatmuseum im Haus des Gastes +http://lobid.org/organisations/DE-MUS-826817#! DE-MUS-826817 SPSG / Neue Kammern +http://lobid.org/organisations/DE-MUS-828719#! DE-MUS-828719 Museum Schloss und Festung Senftenberg +http://lobid.org/organisations/DE-MUS-830019#! DE-MUS-830019 Heimatmuseum ""Sprucker Mühle"" +http://lobid.org/organisations/DE-MUS-830915#! DE-MUS-830915 Dorfmuseum Zeißholz +http://lobid.org/organisations/DE-MUS-832713#! DE-MUS-832713 Historische Handwerkerstuben Gingst +http://lobid.org/organisations/DE-MUS-832817#! DE-MUS-832817 Mönchguter Heimatmuseum +http://lobid.org/organisations/DE-MUS-833914#! DE-MUS-833914 Staatliche Schlösser, Gärten und Kunstsammlungen Mecklenburg-Vorpommern, Schloss Güstrow +http://lobid.org/organisations/DE-MUS-834115#! DE-MUS-834115 Museum 'Villa Irmgard' Heringsdorf +http://lobid.org/organisations/DE-MUS-834719#! DE-MUS-834719 Atelier Niemeyer - Holstein Lüttenort Koserow +http://lobid.org/organisations/DE-MUS-835618#! DE-MUS-835618 Kunstsammlung Neubrandenburg +http://lobid.org/organisations/DE-MUS-837010#! DE-MUS-837010 Kulturhistorisches Museum Rostock / Kloster zum Heiligen Kreuz +http://lobid.org/organisations/DE-MUS-837510#! DE-MUS-837510 Heimatmuseum Warnemünde +http://lobid.org/organisations/DE-MUS-837718#! DE-MUS-837718 Heimatstube Sassen +http://lobid.org/organisations/DE-MUS-837812#! DE-MUS-837812 Volkskundemuseum des Ratzeburger Landes +http://lobid.org/organisations/DE-MUS-838919#! DE-MUS-838919 Stralsund Museum, Katharinenkloster +http://lobid.org/organisations/DE-MUS-839516#! DE-MUS-839516 Haffmuseum +http://lobid.org/organisations/DE-MUS-840115#! DE-MUS-840115 Mahn- und Gedenkstätten Wöbbelin +http://lobid.org/organisations/DE-MUS-840219#! DE-MUS-840219 Mühlenmuseum Woldegk +http://lobid.org/organisations/DE-MUS-840615#! DE-MUS-840615 Bergbaumuseum Altenberg +http://lobid.org/organisations/DE-MUS-840719#! DE-MUS-840719 Schloß Nossen +http://lobid.org/organisations/DE-MUS-841014#! DE-MUS-841014 Technisches Museum+'Silberwäsche' Antonsthal +http://lobid.org/organisations/DE-MUS-841712#! DE-MUS-841712 Museen im Schloß Augustusburg/Lindenhaus: Baugeschichtsausstellung u. Aussichtsturm mit Kunstgalerie +http://lobid.org/organisations/DE-MUS-842413#! DE-MUS-842413 Heimatmuseum Bernstadt a.d. Eigen +http://lobid.org/organisations/DE-MUS-842517#! DE-MUS-842517 Deutsches Landwirtschaftsmuseum +http://lobid.org/organisations/DE-MUS-843218#! DE-MUS-843218 Museum für Naturkunde+Das Tietz +http://lobid.org/organisations/DE-MUS-843812#! DE-MUS-843812 Karrasburg Museum Coswig +http://lobid.org/organisations/DE-MUS-845214#! DE-MUS-845214 Gedenkstätte Münchner Platz Dresden +http://lobid.org/organisations/DE-MUS-845714#! DE-MUS-845714 Staatliche Kunstsammlungen Dresden / Rüstkammer +http://lobid.org/organisations/DE-MUS-846019#! DE-MUS-846019 Staatliche Kunstsammlungen Dresden / Porzellansammlung +http://lobid.org/organisations/DE-MUS-846613#! DE-MUS-846613 Deutsches Hygiene-Museum +http://lobid.org/organisations/DE-MUS-847210#! DE-MUS-847210 Museen der Stadt Dresden - Stadtmuseum Dresden +http://lobid.org/organisations/DE-MUS-847512#! DE-MUS-847512 Museen der Stadt Dresden+Stadtmuseum, Kügelgenhaus-Museum der Dresdner Romantik +http://lobid.org/organisations/DE-MUS-847918#! DE-MUS-847918 1963 Stickereimuseum Eibenstock +http://lobid.org/organisations/DE-MUS-851214#! DE-MUS-851214 Karl-May-Haus Hohenstein-Ernstthal +http://lobid.org/organisations/DE-MUS-851516#! DE-MUS-851516 Lehr- und Schaubergwerk Frisch Glück 'Glöckl' +http://lobid.org/organisations/DE-MUS-851610#! DE-MUS-851610 Städtische Sammlungen Kamenz+Lessing-Museum Kamenz +http://lobid.org/organisations/DE-MUS-852019#! DE-MUS-852019 Festung Königstein +http://lobid.org/organisations/DE-MUS-853418#! DE-MUS-853418 Stadtgeschichtliches Museum Leipzig +http://lobid.org/organisations/DE-MUS-854317#! DE-MUS-854317 Naturkundemuseum Leipzig +http://lobid.org/organisations/DE-MUS-854515#! DE-MUS-854515 Stadtgeschichtliches Museum Leipzig, Abt: Schillerhaus +http://lobid.org/organisations/DE-MUS-854619#! DE-MUS-854619 Burg Mildenstein +http://lobid.org/organisations/DE-MUS-855018#! DE-MUS-855018 Stadtmuseum Löbau +http://lobid.org/organisations/DE-MUS-855810#! DE-MUS-855810 Albrechtsburg Meissen +http://lobid.org/organisations/DE-MUS-856115#! DE-MUS-856115 Museum ""Alte Pfarrhäuser"" +http://lobid.org/organisations/DE-MUS-858017#! DE-MUS-858017 Schloß Voigtsberg +http://lobid.org/organisations/DE-MUS-859010#! DE-MUS-859010 Vogtlandmuseum Plauen +http://lobid.org/organisations/DE-MUS-859114#! DE-MUS-859114 Schaubergwerk Molchner Stolln +http://lobid.org/organisations/DE-MUS-860119#! DE-MUS-860119 Sächsisches Weinbaumuseum Hoflößnitz +http://lobid.org/organisations/DE-MUS-861414#! DE-MUS-861414 Heimatmuseum Roßwein +http://lobid.org/organisations/DE-MUS-861518#! DE-MUS-861518 Rothenburger Stadtmuseum +http://lobid.org/organisations/DE-MUS-863712#! DE-MUS-863712 Volkskunde- und Mühlenmuseum Waltersdorf +http://lobid.org/organisations/DE-MUS-864111#! DE-MUS-864111 Museum der Stadt Weißenberg+""Alte Pfefferküchlerei"" +http://lobid.org/organisations/DE-MUS-864517#! DE-MUS-864517 Heimatmuseum der Stadt Wilsdruff +http://lobid.org/organisations/DE-MUS-866617#! DE-MUS-866617 Thüringer Landesmuseum Heidecksburg / Fröbelmuseum Bad Blankenburg +http://lobid.org/organisations/DE-MUS-866919#! DE-MUS-866919 Saline- und Heimatmuseum +http://lobid.org/organisations/DE-MUS-867214#! DE-MUS-867214 Keramik-Museum Bürgel +http://lobid.org/organisations/DE-MUS-867516#! DE-MUS-867516 Stadtmuseum Camburg +http://lobid.org/organisations/DE-MUS-867610#! DE-MUS-867610 Museum 1806 +http://lobid.org/organisations/DE-MUS-868217#! DE-MUS-868217 Gedenkstätte 'Goldener Löwe' +http://lobid.org/organisations/DE-MUS-869012#! DE-MUS-869012 Museum 'Otto Ludwig' Eisfeld / Otto-Ludwig-Gedenkstätte +http://lobid.org/organisations/DE-MUS-870017#! DE-MUS-870017 Deutsches Gartenbaumuseum Erfurt +http://lobid.org/organisations/DE-MUS-871114#! DE-MUS-871114 Heimatstube Gößnitz +http://lobid.org/organisations/DE-MUS-872315#! DE-MUS-872315 Dorfmuseum Haynrode +http://lobid.org/organisations/DE-MUS-873318#! DE-MUS-873318 Friedrich-Schiller-Universität / Schiller-Gedenkstätte-Jena +http://lobid.org/organisations/DE-MUS-873412#! DE-MUS-873412 Phyletisches Museum Jena +http://lobid.org/organisations/DE-MUS-874613#! DE-MUS-874613 Schloss Molsdorf+Schlossmuseum +http://lobid.org/organisations/DE-MUS-874915#! DE-MUS-874915 Kunsthaus Meyenburg +http://lobid.org/organisations/DE-MUS-875210#! DE-MUS-875210 Museum Schloss Ehrenstein Ohrdruf +http://lobid.org/organisations/DE-MUS-875814#! DE-MUS-875814 Fürstliche Erlebniswelten Schloss Schwarzburg +http://lobid.org/organisations/DE-MUS-876213#! DE-MUS-876213 Feengrotten Saalfeld +http://lobid.org/organisations/DE-MUS-876515#! DE-MUS-876515 Museum Schloß Wilhelmsburg +http://lobid.org/organisations/DE-MUS-876713#! DE-MUS-876713 Technisches Museum Neue Hütte +http://lobid.org/organisations/DE-MUS-877216#! DE-MUS-877216 Heimatmuseum Stadtilm +http://lobid.org/organisations/DE-MUS-877414#! DE-MUS-877414 Waffenmuseum Suhl +http://lobid.org/organisations/DE-MUS-877914#! DE-MUS-877914 Museum Schloß Tenneberg +http://lobid.org/organisations/DE-MUS-878511#! DE-MUS-878511 Klassik Stiftung Weimar / Schloßmuseum +http://lobid.org/organisations/DE-MUS-878615#! DE-MUS-878615 Klassik Stiftung Weimar / Bauhaus-Museum Weimar +http://lobid.org/organisations/DE-MUS-879118#! DE-MUS-879118 Deutsches Bienenmuseum +http://lobid.org/organisations/DE-MUS-879410#! DE-MUS-879410 Klassik Stiftung Weimar / Goethes Gartenhaus +http://lobid.org/organisations/DE-MUS-879816#! DE-MUS-879816 Klassik Stiftung Weimar / Wittumspalais +http://lobid.org/organisations/DE-MUS-880019#! DE-MUS-880019 Gedenkstätte Buchenwald +http://lobid.org/organisations/DE-MUS-880519#! DE-MUS-880519 Städtisches Museum Zeulenroda +http://lobid.org/organisations/DE-MUS-880613#! DE-MUS-880613 VE-G Wasserkraftmuseum +http://lobid.org/organisations/DE-MUS-883018#! DE-MUS-883018 Burg Kriebstein +http://lobid.org/organisations/DE-MUS-884313#! DE-MUS-884313 Kleine Galerie und Naturschutzausstellung +http://lobid.org/organisations/DE-MUS-884511#! DE-MUS-884511 Klosterpark Altzella +http://lobid.org/organisations/DE-MUS-885014#! DE-MUS-885014 Forstbotanische Ausstellung im 'Schweizerhaus' Tharandt +http://lobid.org/organisations/DE-MUS-886111#! DE-MUS-886111 Windmühle Stove +http://lobid.org/organisations/DE-MUS-889412#! DE-MUS-889412 Erlebniszentrum Bergbau Röhrigschacht Wettelrode +http://lobid.org/organisations/DE-MUS-891618#! DE-MUS-891618 Heimatstube +http://lobid.org/organisations/DE-MUS-891712#! DE-MUS-891712 Schul- und Heimatmuseum Schönermark +http://lobid.org/organisations/DE-MUS-893218#! DE-MUS-893218 Stadtmuseum Teterow +http://lobid.org/organisations/DE-MUS-893312#! DE-MUS-893312 Kunstsammlung Gera 'Otto-Dix-Haus' +http://lobid.org/organisations/DE-MUS-893416#! DE-MUS-893416 Doppelkapelle-Museum-Archiv Landsberg, Abt. Doppelkapelle ""St. Crucis"" +http://lobid.org/organisations/DE-MUS-896717#! DE-MUS-896717 Kunsthalle Bad Kösen +http://lobid.org/organisations/DE-MUS-900118#! DE-MUS-900118 Museumsanlage Gadebusch +http://lobid.org/organisations/DE-MUS-900316#! DE-MUS-900316 Staatliche Schlösser, Gärten und Kunstsammlungen Mecklenburg- Vorpommern+Schlossmuseum +http://lobid.org/organisations/DE-MUS-903117#! DE-MUS-903117 Städtische Sammlungen Cottbus - Wendisches Museum +http://lobid.org/organisations/DE-MUS-903617#! DE-MUS-903617 Schlesisches Museum zu Görlitz +http://lobid.org/organisations/DE-MUS-905113#! DE-MUS-905113 Mühlhäuser Museen - Kulturhistorisches Museum +http://lobid.org/organisations/DE-MUS-906210#! DE-MUS-906210 Museum Berggruen SMB +http://lobid.org/organisations/DE-MUS-907817#! DE-MUS-907817 Heimatmuseum Bisingen +http://lobid.org/organisations/DE-MUS-908112#! DE-MUS-908112 Museum im Schweizer Hof +http://lobid.org/organisations/DE-MUS-908518#! DE-MUS-908518 Dorfmuseum Eichstetten +http://lobid.org/organisations/DE-MUS-908716#! DE-MUS-908716 Waldmuseum Reichental +http://lobid.org/organisations/DE-MUS-909011#! DE-MUS-909011 Heimatkundliche Sammlung Bergendorf +http://lobid.org/organisations/DE-MUS-909115#! DE-MUS-909115 Heimatmuseum Neuthard +http://lobid.org/organisations/DE-MUS-909219#! DE-MUS-909219 Literarische Gedenkstätte im Max-Eyth-Haus +http://lobid.org/organisations/DE-MUS-909313#! DE-MUS-909313 Gedenkstätte Abraham a Santa Clara +http://lobid.org/organisations/DE-MUS-911811#! DE-MUS-911811 Burg Abenberg - Haus fränkischer Geschichte +http://lobid.org/organisations/DE-MUS-912814#! DE-MUS-912814 Archäologisches Museum Burgheim +http://lobid.org/organisations/DE-MUS-913119#! DE-MUS-913119 Heimatmuseum Glonn +http://lobid.org/organisations/DE-MUS-913213#! DE-MUS-913213 Heimschneidermuseum +http://lobid.org/organisations/DE-MUS-914216#! DE-MUS-914216 Archäologischer Park mit Museums-Turm +http://lobid.org/organisations/DE-MUS-914810#! DE-MUS-914810 Erwin-von-Kreibig-Museum +http://lobid.org/organisations/DE-MUS-915115#! DE-MUS-915115 Dokumentationszentrum Reichsparteitagsgelände +http://lobid.org/organisations/DE-MUS-918614#! DE-MUS-918614 D'r Isenhardts Hoff +http://lobid.org/organisations/DE-MUS-919815#! DE-MUS-919815 Heimatstube 1813 im Schloß Möckern +http://lobid.org/organisations/DE-MUS-921615#! DE-MUS-921615 Stadtmuseum Brakel +http://lobid.org/organisations/DE-MUS-921719#! DE-MUS-921719 Deutsches Faecher Museum +http://lobid.org/organisations/DE-MUS-923517#! DE-MUS-923517 Spintestube +http://lobid.org/organisations/DE-MUS-924510#! DE-MUS-924510 Angelner Dampfeisenbahn +http://lobid.org/organisations/DE-MUS-924614#! DE-MUS-924614 Medizin- und Pharmaziehistorische Sammlung Kiel der CAU +http://lobid.org/organisations/DE-MUS-924812#! DE-MUS-924812 Eisenbahnmuseum Lokschuppen Aumühle +http://lobid.org/organisations/DE-MUS-925513#! DE-MUS-925513 Glasmuseum Steina +http://lobid.org/organisations/DE-MUS-925815#! DE-MUS-925815 Historischer Moorhof Augustendorf +http://lobid.org/organisations/DE-MUS-926016#! DE-MUS-926016 Landarbeitermuseum Suurhusen e.V. +http://lobid.org/organisations/DE-MUS-926516#! DE-MUS-926516 Kloster Lüne - Textilmuseum +http://lobid.org/organisations/DE-MUS-926610#! DE-MUS-926610 Emsland Archäologie Museum +http://lobid.org/organisations/DE-MUS-926714#! DE-MUS-926714 Gedenkstätte KZ Moringen +http://lobid.org/organisations/DE-MUS-926818#! DE-MUS-926818 Museum zur Stadtgeschichte +http://lobid.org/organisations/DE-MUS-927019#! DE-MUS-927019 Niedersächsisches Museum für Kali- und Salzbergbau +http://lobid.org/organisations/DE-MUS-927415#! DE-MUS-927415 Druckereimuseum +http://lobid.org/organisations/DE-MUS-929713#! DE-MUS-929713 Puppenmuseum Gaby Spitzmüller +http://lobid.org/organisations/DE-MUS-930010#! DE-MUS-930010 Heimatmuseum Rangendingen+""s"" Mahles Haus"" +http://lobid.org/organisations/DE-MUS-930218#! DE-MUS-930218 Gedenkstätte Ehemalige Synagoge Sulzburg +http://lobid.org/organisations/DE-MUS-930312#! DE-MUS-930312 Heimatmuseum Waldachtal +http://lobid.org/organisations/DE-MUS-930614#! DE-MUS-930614 Peterstormuseum +http://lobid.org/organisations/DE-MUS-933113#! DE-MUS-933113 Bergbaumuseum Niedermoschel +http://lobid.org/organisations/DE-MUS-934012#! DE-MUS-934012 Waagenmuseum Wachenheim +http://lobid.org/organisations/DE-MUS-934418#! DE-MUS-934418 Viehstrichmuseum Schaidt +http://lobid.org/organisations/DE-MUS-935317#! DE-MUS-935317 Vorderhunsrückmuseum +http://lobid.org/organisations/DE-MUS-935713#! DE-MUS-935713 Heimatmuseum Hillscheid +http://lobid.org/organisations/DE-MUS-936310#! DE-MUS-936310 Fasnachtsmuseum CCO Lahnstein +http://lobid.org/organisations/DE-MUS-937219#! DE-MUS-937219 Tuffsteinmuseum - Steinmetzbahnhof +http://lobid.org/organisations/DE-MUS-937511#! DE-MUS-937511 Ehemalige Synagoge Polch +http://lobid.org/organisations/DE-MUS-937615#! DE-MUS-937615 Museum für historische Traktoren +http://lobid.org/organisations/DE-MUS-938316#! DE-MUS-938316 Naturkundliches Museum Simmertal +http://lobid.org/organisations/DE-MUS-939017#! DE-MUS-939017 Alte Dorfschmiede +http://lobid.org/organisations/DE-MUS-939819#! DE-MUS-939819 Dampflokmuseum Hermeskeil +http://lobid.org/organisations/DE-MUS-940314#! DE-MUS-940314 Wein- und Heimatmuseum Leiwen +http://lobid.org/organisations/DE-MUS-940512#! DE-MUS-940512 Heimatmuseum Manderscheid +http://lobid.org/organisations/DE-MUS-940616#! DE-MUS-940616 Maarmuseum Manderscheid / Landessammlung für Naturkunde Rheinland-Pfalz +http://lobid.org/organisations/DE-MUS-940710#! DE-MUS-940710 Privatmuseum 'Die Steinkiste' +http://lobid.org/organisations/DE-MUS-941119#! DE-MUS-941119 AMÜSEUM Saarburg +http://lobid.org/organisations/DE-MUS-943615#! DE-MUS-943615 Archäologisches Museum Essenbach +http://lobid.org/organisations/DE-MUS-944618#! DE-MUS-944618 Heimatmuseum Hebertsfelden +http://lobid.org/organisations/DE-MUS-944816#! DE-MUS-944816 Ehemalige Synagoge Ichenhausen +http://lobid.org/organisations/DE-MUS-945413#! DE-MUS-945413 Skulpturenmuseum im Hofberg +http://lobid.org/organisations/DE-MUS-945715#! DE-MUS-945715 Strötzbacher Mühle +http://lobid.org/organisations/DE-MUS-946614#! DE-MUS-946614 Malura-Museum +http://lobid.org/organisations/DE-MUS-947711#! DE-MUS-947711 Landmaschinenmuseum - Sammlung Speer +http://lobid.org/organisations/DE-MUS-949113#! DE-MUS-949113 Heimatmuseum Heinrich Zoller +http://lobid.org/organisations/DE-MUS-949415#! DE-MUS-949415 Siebold-Palais / Siebold-Museum +http://lobid.org/organisations/DE-MUS-949613#! DE-MUS-949613 Heimat- und Braunkohlemuseum Steinberg +http://lobid.org/organisations/DE-MUS-949915#! DE-MUS-949915 Heimatmuseum 'Schwarzes Tor' +http://lobid.org/organisations/DE-MUS-950014#! DE-MUS-950014 Schwanen-Apotheken-Museum +http://lobid.org/organisations/DE-MUS-950910#! DE-MUS-950910 Dampffährschiff ""Stralsund"" +http://lobid.org/organisations/DE-MUS-952614#! DE-MUS-952614 Ölmühle Neckargröningen +http://lobid.org/organisations/DE-MUS-953013#! DE-MUS-953013 Hammerschmiede Gnuse +http://lobid.org/organisations/DE-MUS-954110#! DE-MUS-954110 Kurioses Muschel-Museum+Nordseebad Wremen +http://lobid.org/organisations/DE-MUS-954318#! DE-MUS-954318 Museum Gruberhof +http://lobid.org/organisations/DE-MUS-954610#! DE-MUS-954610 Agrarhistorisches Museum ""Hof Pingel"" +http://lobid.org/organisations/DE-MUS-955613#! DE-MUS-955613 Regionalmuseum Hans Joachim Bötefür +http://lobid.org/organisations/DE-MUS-955915#! DE-MUS-955915 Heimatstube +http://lobid.org/organisations/DE-MUS-956116#! DE-MUS-956116 Heimatstube Marlow +http://lobid.org/organisations/DE-MUS-956314#! DE-MUS-956314 Fischerstube Mönkebude (Heimatmuseum) +http://lobid.org/organisations/DE-MUS-956710#! DE-MUS-956710 NATUREUM Darßer Ort +http://lobid.org/organisations/DE-MUS-958518#! DE-MUS-958518 Berliner S-Bahn-Museum +http://lobid.org/organisations/DE-MUS-959313#! DE-MUS-959313 Sächsisches Bademuseum Bad Elster +http://lobid.org/organisations/DE-MUS-959615#! DE-MUS-959615 Historische Schauweberei +http://lobid.org/organisations/DE-MUS-960110#! DE-MUS-960110 Sammlungen der TU Dresden / Kustodie +http://lobid.org/organisations/DE-MUS-960214#! DE-MUS-960214 Zinngrube Ehrenfriedersdorf+Besucherbergwerk+Mineralogisches Museum +http://lobid.org/organisations/DE-MUS-961113#! DE-MUS-961113 Trachtenausstellung im Trachtenhaus Jatzwauk +http://lobid.org/organisations/DE-MUS-963119#! DE-MUS-963119 Erlichthof Rietschen +http://lobid.org/organisations/DE-MUS-963619#! DE-MUS-963619 Museum Uranbergbau +http://lobid.org/organisations/DE-MUS-964216#! DE-MUS-964216 Sächsisches Strafvollzugsmuseum +http://lobid.org/organisations/DE-MUS-964310#! DE-MUS-964310 Raritätensammlung ""Bruno Gebhardt"" +http://lobid.org/organisations/DE-MUS-964810#! DE-MUS-964810 Museum für russlanddeutsche Kulturgeschichte +http://lobid.org/organisations/DE-MUS-964914#! DE-MUS-964914 Holzhandwerksmuseum Hiddenhausen +http://lobid.org/organisations/DE-MUS-965011#! DE-MUS-965011 torhausmuseum schloß ahaus +http://lobid.org/organisations/DE-MUS-965115#! DE-MUS-965115 Koptisches Museum +http://lobid.org/organisations/DE-MUS-968312#! DE-MUS-968312 Verein Braunschweiger Verkehrsfreunde e.V.+Sammlung historischer Schienen-Fahrzeuge +http://lobid.org/organisations/DE-MUS-968416#! DE-MUS-968416 Gedenkstätte KZ-Außenlager Schillstraße +http://lobid.org/organisations/DE-MUS-968614#! DE-MUS-968614 Dollartmuseum +http://lobid.org/organisations/DE-MUS-969617#! DE-MUS-969617 Schloß und Heimatstube Wiesenburg +http://lobid.org/organisations/DE-MUS-969919#! DE-MUS-969919 Postgeschichtliches Museum Friesoythe +http://lobid.org/organisations/DE-MUS-970216#! DE-MUS-970216 Museum der Arbeit I Hagelturm +http://lobid.org/organisations/DE-MUS-970414#! DE-MUS-970414 Gedenkstätte Ahlem +http://lobid.org/organisations/DE-MUS-971417#! DE-MUS-971417 Friesisches Brauhaus zu Jever - Brauereimuseum +http://lobid.org/organisations/DE-MUS-971615#! DE-MUS-971615 Heimatmuseum Lauenstein +http://lobid.org/organisations/DE-MUS-972316#! DE-MUS-972316 Ausstellung für Seenotrettungsgeräte +http://lobid.org/organisations/DE-MUS-973111#! DE-MUS-973111 Städtische Kunstsammlungen Schloß Salder +http://lobid.org/organisations/DE-MUS-973215#! DE-MUS-973215 Grenzlandmuseum ""Swinmark"" +http://lobid.org/organisations/DE-MUS-973517#! DE-MUS-973517 Patenschaftsmuseum Goldap in Ostpreußen +http://lobid.org/organisations/DE-MUS-973715#! DE-MUS-973715 Nationalpark-Besucherzentrum TorfHaus +http://lobid.org/organisations/DE-MUS-974812#! DE-MUS-974812 ""Magda-Heyken-Haus""+Archiv & Heimatkundliche Sammlung +http://lobid.org/organisations/DE-MUS-975711#! DE-MUS-975711 Museum 'Kolonistenhof' im Heimat-Haus-Großderschau +http://lobid.org/organisations/DE-MUS-976610#! DE-MUS-976610 Stadtgeschichtliches Museum Leipzig/Museum zum Arabischen Coffe Baum +http://lobid.org/organisations/DE-MUS-977113#! DE-MUS-977113 Gedenkstätte Berliner Mauer - Kapelle der Versöhnung +http://lobid.org/organisations/DE-MUS-977811#! DE-MUS-977811 Heimatmuseum Althütte +http://lobid.org/organisations/DE-MUS-978116#! DE-MUS-978116 Zavelstein - im Gang der Zeiten +http://lobid.org/organisations/DE-MUS-978210#! DE-MUS-978210 Kirchenschatz-Museum +http://lobid.org/organisations/DE-MUS-978418#! DE-MUS-978418 Museum Sophie La Roche +http://lobid.org/organisations/DE-MUS-978616#! DE-MUS-978616 Narrenringstube des Narrenrings Main-Neckar +http://lobid.org/organisations/DE-MUS-978710#! DE-MUS-978710 Kalimuseum-Stollen +http://lobid.org/organisations/DE-MUS-978918#! DE-MUS-978918 'Der Lange' +http://lobid.org/organisations/DE-MUS-979015#! DE-MUS-979015 Lindleinturm-Museum +http://lobid.org/organisations/DE-MUS-980614#! DE-MUS-980614 Carl Bosch Museum Heidelberg +http://lobid.org/organisations/DE-MUS-981815#! DE-MUS-981815 Elektro-technisches Museum +http://lobid.org/organisations/DE-MUS-982412#! DE-MUS-982412 KZ-Gedenkstätte Neckarelz e. V. +http://lobid.org/organisations/DE-MUS-983415#! DE-MUS-983415 Heimatmuseum Plankstadt +http://lobid.org/organisations/DE-MUS-983717#! DE-MUS-983717 Archäologisches Landesmuseum Brandenburg im Paulikloster +http://lobid.org/organisations/DE-MUS-984616#! DE-MUS-984616 Alte Schmiede +http://lobid.org/organisations/DE-MUS-986810#! DE-MUS-986810 Villa Haiss+Museum für Zeitgenössische Kunst +http://lobid.org/organisations/DE-MUS-987011#! DE-MUS-987011 Haus der Veener Geschichte +http://lobid.org/organisations/DE-MUS-987615#! DE-MUS-987615 Karnevalsmuseum +http://lobid.org/organisations/DE-MUS-988618#! DE-MUS-988618 MKM Museum Küppersmühle für Moderne Kunst +http://lobid.org/organisations/DE-MUS-989111#! DE-MUS-989111 Feuerwehrmuseum Flamersheim e.V. +http://lobid.org/organisations/DE-MUS-989215#! DE-MUS-989215 LVR-Industriemuseum, Schauplatz Euskirchen +http://lobid.org/organisations/DE-MUS-990012#! DE-MUS-990012 Ehemaliges Jüdisches Gemeindezentrum Issum +http://lobid.org/organisations/DE-MUS-990210#! DE-MUS-990210 Bürgerbegegnungsstätte Oermterberg +http://lobid.org/organisations/DE-MUS-990512#! DE-MUS-990512 Stiftsmuseum Wissel +http://lobid.org/organisations/DE-MUS-990710#! DE-MUS-990710 Kolping Geburtshaus Kerpen +http://lobid.org/organisations/DE-MUS-992018#! DE-MUS-992018 Schloß Drachenburg +http://lobid.org/organisations/DE-MUS-992310#! DE-MUS-992310 Historische Verkehrsmittelschau Krefeld +http://lobid.org/organisations/DE-MUS-992914#! DE-MUS-992914 Besucherbergwerk Mechernicher Bleiberg - Grube Günnersdorf - und Bergbaumuseum +http://lobid.org/organisations/DE-MUS-993115#! DE-MUS-993115 Holzleitner-Museum - Unser kleines Museum zur Waschgeschichte +http://lobid.org/organisations/DE-MUS-993219#! DE-MUS-993219 Römisches Museum Haus Bürgel +http://lobid.org/organisations/DE-MUS-993417#! DE-MUS-993417 Dorfmuseum Uraalt Scholl +http://lobid.org/organisations/DE-MUS-993719#! DE-MUS-993719 Kinderbauernhof der Stadt Neuss +http://lobid.org/organisations/DE-MUS-995017#! DE-MUS-995017 Heimatkundliches Museum im Oetkerpark Schiefbahn +http://lobid.org/organisations/DE-MUS-995215#! DE-MUS-995215 Manuelskotten +http://lobid.org/organisations/DE-MUS-995319#! DE-MUS-995319 Waldinformationszentrum Heidhof +http://lobid.org/organisations/DE-MUS-998214#! DE-MUS-998214 NaturParkHaus Stechlin +http://lobid.org/organisations/DE-MUS-999217#! DE-MUS-999217 Museum Funkerberg +http://lobid.org/organisations/DE-MUS-999717#! DE-MUS-999717 Evangel. Diakonissenhaus Berlin Teltow Lehnin/Zisterzienserkloster+Klosterkirche +http://lobid.org/organisations/DE-1874#! DE-1874 1874 Bismarck-Gymnasium Karlsruhe, Historische Bibliothek +http://lobid.org/organisations/DE-1880#! DE-1880 1880 Bibliothek im Ludwig Forum für Internationale Kunst +http://lobid.org/organisations/DE-MUS-042326#! DE-MUS-042326 Klassik Stiftung Weimar / Graphische Sammlungen +http://lobid.org/organisations/DE-MUS-872211#! DE-MUS-872211 Klassik Stiftung Weimar/Schloß Kochberg +http://lobid.org/organisations/DE-26-960#! DE-26-960 26/960 Universität Gießen, Retrokatalog +http://lobid.org/organisations/DE-M516#! DE-M516 M 516 Bibliothek des Bayerischen Obersten Rechnungshofs +http://lobid.org/organisations/DE-1883#! DE-1883 1883 Stadtbücherei Schortens +http://lobid.org/organisations/DE-1885#! DE-1885 1885 Stadtbibliothek Bad Vilbel +http://lobid.org/organisations/DE-960#! DE-960 960 Bibliothek der Hochschule Hannover +http://lobid.org/organisations/DE-1891#! DE-1891 1891 Christian-Wagner-Bibliothek +http://lobid.org/organisations/DE-959-3#! DE-959-3 959/3 Hochschule Osnabrück, Bibliothek Campus Lingen +http://lobid.org/organisations/DE-1892#! DE-1892 1892 Marktbibliothek Kallmünz +http://lobid.org/organisations/DE-1893#! DE-1893 1893 Otto-Rombach-Bücherei +http://lobid.org/organisations/DE-Pfo2#! DE-Pfo2 Pfo 2 Kreisarchiv des Enzkreises, Bibliothek +http://lobid.org/organisations/DE-1896#! DE-1896 1896 Stadtbibliothek Kröpelin +http://lobid.org/organisations/DE-255#! DE-255 255 Zentralinstitut für Kunstgeschichte, Bibliothek +http://lobid.org/organisations/DE-1903#! DE-1903 1903 Stadtbibliothek Mücheln (Geiseltal) +http://lobid.org/organisations/DE-B1597#! DE-B1597 B 1597 Walter de Gruyter GmbH & Co. KG +http://lobid.org/organisations/DE-Y11#! DE-Y11 Y 11 Orient-Institut Istanbul +http://lobid.org/organisations/DE-82-232#! DE-82-232 82/232 Lehr- und Forschungsgebiet Gender und Diversity in den Ingenieurwissenschaften, Bibliothek +http://lobid.org/organisations/DE-Kls1#! DE-Kls1 Kls 1 Alte Klosterbibliothek Klausen/Katholische Pfarrbibliothek +http://lobid.org/organisations/DE-Hil8#! DE-Hil8 Hil 8 Center for World Music, Bibliothek +http://lobid.org/organisations/DE-1907#! DE-1907 1907 Medienzentrum Unstrut-Hainich-Kreis +http://lobid.org/organisations/DE-Ei7#! DE-Ei7 Ei 7 Bachhaus Eisenach, Bibliothek +http://lobid.org/organisations/DE-1910#! DE-1910 1910 Stadtbibliothek Bad Dürrenberg +http://lobid.org/organisations/DE-MUS-044520#! DE-MUS-044520 Dud 2 Sammlung der Schützengesellschaft Duderstadt +http://lobid.org/organisations/DE-Sam3#! DE-Sam3 Sam 3 Kreiskulturamt Bodenseekreis, Kurt-Hahn-Archiv +http://lobid.org/organisations/DE-1911#! DE-1911 1911 Hochschule für Künste im Sozialen, Ottersberg, Bibliothek +http://lobid.org/organisations/DE-1914#! DE-1914 1914 Gemeindebücherei Simmerath +http://lobid.org/organisations/DE-Aug14#! DE-Aug14 Aug 14 Stiftsbibliothek St. Stephan Augsburg +http://lobid.org/organisations/DE-1916#! DE-1916 1916 Carl-Stumpf-Bibliothek Wiesentheid +http://lobid.org/organisations/DE-B1599#! DE-B1599 B 1599 Rosa-Luxemburg-Stiftung, Bibliothek +http://lobid.org/organisations/DE-MUS-019212#! DE-MUS-019212 Museum für Vor- und Frühgeschichte SMB +http://lobid.org/organisations/DE-MUS-042420#! DE-MUS-042420 Spielzeugmuseum im Havelland +http://lobid.org/organisations/DE-MUS-047623#! DE-MUS-047623 Museum des Saarländischen Aberglaubens +http://lobid.org/organisations/DE-MUS-700027#! DE-MUS-700027 Rathgen Forschungslabor, Staatliche Museen zu Berlin +http://lobid.org/organisations/DE-MUS-865218#! DE-MUS-865218 Robert-Schumann-Haus Zwickau +http://lobid.org/organisations/DE-1924#! DE-1924 1924 Bibliothek Mihla +http://lobid.org/organisations/DE-Kn41-50#! DE-Kn41-50 Kn 41/50 Deutsche Sporthochschule Köln, Institut für Vermittlungskompetenz in den Sportarten, Bibliothek +http://lobid.org/organisations/DE-Hag4-E#! DE-Hag4-E Hag 4/E Fachhochschule Südwestfalen, Elektronische Ressourcen +http://lobid.org/organisations/DE-1929#! DE-1929 LWL-Denkmalpflege, Landschafts- und Baukultur +http://lobid.org/organisations/DE-1938#! DE-1938 1938 Landgericht Hannover, Bibliothek +http://lobid.org/organisations/DE-B177#! DE-B177 B 177 Kammergericht, Bibliothek +http://lobid.org/organisations/DE-1947#! DE-1947 1947 Goethe-Gymnasium Hamburg, Schulbibliothek +http://lobid.org/organisations/DE-66-5#! DE-66-5 66/5 Hochschul- und Landesbibliothek Fulda, Standort Campus, Magazin, Bestand Heinrich-von-Bibra-Platz +http://lobid.org/organisations/DE-66-6#! DE-66-6 66/6 Hochschul- und Landesbibliothek Fulda, Standort Campus, Bestand Heinrich-von-Bibra-Platz +http://lobid.org/organisations/DE-1955#! DE-1955 1955 Europäisches Romanik Zentrum e.V., Bibliothek +http://lobid.org/organisations/DE-1960#! DE-1960 1960 Bücherei im FORUM +http://lobid.org/organisations/DE-1969#! DE-1969 NEWBOOKS Services GbR +http://lobid.org/organisations/DE-Ful2b#! DE-Ful2b Ful 2b Bibliothek des Bischöflichen Kirchenmusikinstitutes +http://lobid.org/organisations/DE-MUS-052620#! DE-MUS-052620 Sammlung zeitgenössischer Kunst der Bundesrepublik Deutschland +http://lobid.org/organisations/DE-1980#! DE-1980 1980 Deutsch-Italienisches Zentrum Villa Vigoni, Bibliothek +http://lobid.org/organisations/DE-1982#! DE-1982 1982 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern, Landesdenkmalpflege, Fachbibliothek +http://lobid.org/organisations/DE-960-1#! DE-960-1 960/1 Bibliothek der Hochschule Hannover, Zentralbibliothek +http://lobid.org/organisations/DE-960-4#! DE-960-4 960/4 Bibliothek der Hochschule Hannover, Teilbibliothek Bioverfahrenstechnik +http://lobid.org/organisations/DE-1990#! DE-1990 1990 Propylaeum - Fachinformationsdienst Altertumswissenschaften +http://lobid.org/organisations/DE-1994#! DE-1994 1994 Stadtbücherei im Kulturbahnhof Bad Salzdetfurth +http://lobid.org/organisations/DE-616#! DE-616 616 Arbeitsgemeinschaft Niedersächsischer Behördenbibliotheken +http://lobid.org/organisations/DE-1996#! DE-1996 1996 kbs, Die Akademie für Gesundheitsberufe, Bibliothek +http://lobid.org/organisations/DE-MUS-055421#! DE-MUS-055421 Rotkreuz-Museum Vogelsang ip +http://lobid.org/organisations/DE-1997#! DE-1997 1997 Gemeindebücherei Burgthann +http://lobid.org/organisations/DE-2006#! DE-2006 2006 Stadtbibliothek Freiberg a.N. +http://lobid.org/organisations/DE-2015#! DE-2015 2015 Stadtbibliothek Leutkirch +http://lobid.org/organisations/DE-8-3#! DE-8-3 8/3 Universitätsbibliothek Kiel, Fachbibliothek am Juristischen Seminar +http://lobid.org/organisations/DE-8-6#! DE-8-6 8/6 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Osteuropäisches Recht +http://lobid.org/organisations/DE-8-37#! DE-8-37 8/37 Universitätsbibliothek Kiel, Fachbibliothek am Philosophischen Seminar +http://lobid.org/organisations/DE-8-38#! DE-8-38 8/38 Universitätsbibliothek Kiel, Fachbibliothek für Pädagogik +http://lobid.org/organisations/DE-2020#! DE-2020 2020 Ortsbücherei Gäufelden +http://lobid.org/organisations/DE-8-47#! DE-8-47 8/47 Universitätsbibliothek Kiel, Fachbibliothek am Seminar für Europäische Ethnologie/Volkskunde +http://lobid.org/organisations/DE-2024#! DE-2024 2024 Stadtbücherei Brackenheim +http://lobid.org/organisations/DE-2025#! DE-2025 2025 Stadtbücherei Burgau +http://lobid.org/organisations/DE-8-70#! DE-8-70 8/70 Universitätsbibliothek Kiel, Fachbibliothek am Geographischen Institut +http://lobid.org/organisations/DE-8-74#! DE-8-74 8/74 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Tierernährung, Stoffwechselphysiologie +http://lobid.org/organisations/DE-8-75#! DE-8-75 8/75 Universitätsbibliothek Kiel, Fachbibliothek am Institut für Tierzucht und Tierhaltung +http://lobid.org/organisations/DE-8-51b#! DE-8-51b 8/51b Universitätsbibliothek Kiel, Fachbibliothek am Seminar für Orientalistik +http://lobid.org/organisations/DE-2027#! DE-2027 2027 Stadtbücherei Künzelsau +http://lobid.org/organisations/CH-000653-4#! CH-000653-4 Universität Zürich, Medizinhistorisches Institut und Museum, Bibliothek +http://lobid.org/organisations/DE-2033#! DE-2033 2033 Bücherei im Alten Schulhaus Bad Boll +http://lobid.org/organisations/DE-2035#! DE-2035 2035 Stadtbücherei Vaihingen +http://lobid.org/organisations/DE-2038#! DE-2038 2038 Bücherei Denkendorf +http://lobid.org/organisations/US-CSt#! US-CSt Stanford University Libraries, Cecil H. Green Library +http://lobid.org/organisations/DE-2039#! DE-2039 2039 Müritzeum gGmbH, Bibliothek +http://lobid.org/organisations/DE-2046#! DE-2046 Staatsarchiv Bamberg +http://lobid.org/organisations/DE-2049#! DE-2049 Staatsarchiv Würzburg +http://lobid.org/organisations/DE-2053#! DE-2053 2053 Stadtbücherei Murrhardt +http://lobid.org/organisations/DE-2057#! DE-2057 2057 Stadtbibliothek Ebersbach +http://lobid.org/organisations/DE-2062#! DE-2062 2062 Stadtbücherei Esslingen am Neckar +http://lobid.org/organisations/DE-2069#! DE-2069 2069 Evangelische Gemeindebücherei Bad Wörishofen +http://lobid.org/organisations/DE-2071#! DE-2071 Stadtarchiv Heilbronn +http://lobid.org/organisations/DE-2074#! DE-2074 2074 Stadtbibliothek Böblingen ""Im Höfle"" +http://lobid.org/organisations/DE-2078#! DE-2078 2078 Stadtbuecherei Gundelsheim +http://lobid.org/organisations/DE-2059#! DE-2059 2059 Von Bodelschwinghsche Stiftungen Bethel, Zentrale Bibliothek +http://lobid.org/organisations/DE-2086#! DE-2086 2086 LVR-Institut für Landeskunde und Regionalgeschichte +http://lobid.org/organisations/DE-2092#! DE-2092 Universitätsarchiv Greifswald +http://lobid.org/organisations/DE-2099#! DE-2099 Kreisarchiv Nordwestmecklenburg +http://lobid.org/organisations/DE-2114#! DE-2114 Kreisarchiv Zwickau +http://lobid.org/organisations/DE-2063#! DE-2063 2063 Klinikum Bielefeld, Ärztebibliothek +http://lobid.org/organisations/DE-2116#! DE-2116 Kommunalarchiv Schalksmühle +http://lobid.org/organisations/DE-2117#! DE-2117 2117 Stadtbücherei Gerlingen +http://lobid.org/organisations/DE-MUS-058722#! DE-MUS-058722 Fernmeldemuseum Aachen +http://lobid.org/organisations/DE-MUS-059725#! DE-MUS-059725 Stiftung Schloss Dyck - Zentrum für Gartenkunst und Landschaftskultur +http://lobid.org/organisations/DE-MUS-060824#! DE-MUS-060824 Dorfstube Wankum +http://lobid.org/organisations/DE-2129#! DE-2129 Gemeindearchiv Kirchhundem +http://lobid.org/organisations/DE-2130#! DE-2130 Stadtarchiv Kassel +http://lobid.org/organisations/DE-38-466#! DE-38-466 38/466 Sprachlabor der Philosophischen Fakultät der Universität zu Köln, Bibliothek +http://lobid.org/organisations/DE-2137#! DE-2137 Stadtarchiv Rheinberg +http://lobid.org/organisations/DE-2138#! DE-2138 Stadtarchiv Borgentreich +http://lobid.org/organisations/DE-620#! DE-620 Universitätsbibliothek Johann Christian Senckenberg Frankfurt am Main, Transportzentrum Hessen +http://lobid.org/organisations/DE-2140#! DE-2140 2140 Stadtbücherei Weikersheim +http://lobid.org/organisations/DE-2146#! DE-2146 2146 Gemeindebücherei Wennigsen +http://lobid.org/organisations/DE-2152#! DE-2152 2152 Gemeindebücherei Trauchgau +http://lobid.org/organisations/DE-2153#! DE-2153 2153 Bibliothek des Religionspädagogischen Seminars Augsburg +http://lobid.org/organisations/DE-2161#! DE-2161 2161 Historische Bibliothek des Museums der Barlachstadt Güstrow +http://lobid.org/organisations/DE-2165#! DE-2165 2165 SRH Wilhelm Löhe Hochschule, Bibliothek +http://lobid.org/organisations/DE-2188#! DE-2188 Landesarchiv Nordrhein-Westfalen, Abteilung Ostwestfalen-Lippe +http://lobid.org/organisations/DE-2189#! DE-2189 Landesarchiv Nordrhein-Westfalen, Abteilung Rheinland +http://lobid.org/organisations/DE-2194#! DE-2194 Thüringisches Staatsarchiv Meiningen +http://lobid.org/organisations/DE-2202#! DE-2202 Institut für Stadtgeschichte Worms +http://lobid.org/organisations/DE-2208#! DE-2208 Thüringisches Hauptstaatsarchiv Weimar +http://lobid.org/organisations/DE-2222#! DE-2222 Universitätsarchiv Regensburg +http://lobid.org/organisations/DE-Zw1#! DE-Zw1 Zw 1 Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina +http://lobid.org/organisations/DE-2225#! DE-2225 Kreisarchiv Siegen-Wittgenstein +http://lobid.org/organisations/DE-MUS-062028#! DE-MUS-062028 Haus der Natur Goldisthal +http://lobid.org/organisations/DE-MUS-062122#! DE-MUS-062122 Heimatbund Thüringen +http://lobid.org/organisations/DE-2236#! DE-2236 2236 Archiv des Jugendhauses Düsseldorf e.V. +http://lobid.org/organisations/DE-473-TB1#! DE-473-TB1 473/TB1 Universitätsbibliothek Bamberg, Teilbibliothek 1 (Theologie und Philosophie) +http://lobid.org/organisations/DE-473-TB2#! DE-473-TB2 473/TB2 Universitätsbibliothek Bamberg, Teilbibliothek 2 (Humanwissenschaften) +http://lobid.org/organisations/DE-2242#! DE-2242 Politisches Archiv des Auswärtigen Amts +http://lobid.org/organisations/DE-2243#! DE-2243 Kreisarchiv Coesfeld +http://lobid.org/organisations/DE-2249#! DE-2249 Gemeinde Kürten, Archiv +http://lobid.org/organisations/DE-2250#! DE-2250 Archiv der Lippischen Landeskirche +http://lobid.org/organisations/DE-MUS-058128#! DE-MUS-058128 Museum Geißlerhaus +http://lobid.org/organisations/DE-2263#! DE-2263 2263 Bibliothek des Studienzentrums der Finanzverwaltung und Justiz in Rotenburg a. d. Fulda +http://lobid.org/organisations/DE-25-179#! DE-25-179 25/179 Universitätsarchiv Freiburg, Bibliothek +http://lobid.org/organisations/DE-2274#! DE-2274 Stadtarchiv Willich +http://lobid.org/organisations/DE-2277#! DE-2277 2277 Deutsche Historische Bibliografie +http://lobid.org/organisations/DE-2282#! DE-2282 Haus des Dokumentarfilms - Landesfilmsammlung Baden-Württemberg +http://lobid.org/organisations/DE-2284#! DE-2284 2284 Johann-Andreas-Schmeller Gymnasium Nabburg, Bibliothek +http://lobid.org/organisations/DE-2292#! DE-2292 ZEIT-Stiftung Ebelin und Gerd Bucerius +http://lobid.org/organisations/DE-90-8#! DE-90-8 90/8 Fachbibliothek der Dualen Hochschule Baden-Württemberg Karlsruhe (FBD) +http://lobid.org/organisations/DE-2299#! DE-2299 Niedersächsisches Landesamt für Denkmalpflege +http://lobid.org/organisations/DE-2300#! DE-2300 2300 Niedersächsisches Landesamt für Denkmalpflege, Bibliothek +http://lobid.org/organisations/DE-MUS-044822#! DE-MUS-044822 Friedrich-Schiller-Universität / Orientalisches Münzkabinett Jena +http://lobid.org/organisations/DE-2302#! DE-2302 2302 Stadtbibliothek Sigmaringen +http://lobid.org/organisations/DE-2303#! DE-2303 2303 Bibliothek Beetzendorf +http://lobid.org/organisations/DE-MUS-068526#! DE-MUS-068526 Galileo Rügen +http://lobid.org/organisations/DE-2309#! DE-2309 2309 Hochschule für Musik Franz Liszt Weimar / Hochschularchiv | Thüringisches Landesmusikarchiv +http://lobid.org/organisations/DE-2314#! DE-2314 Sorbisches Institut e. V., Serbski institut z. t., Sorbisches Kulturarchiv, Serbski kulturny archiw +http://lobid.org/organisations/DE-2315#! DE-2315 2315 Gemeindebücherei Oberstenfeld +http://lobid.org/organisations/DE-2316#! DE-2316 2316 Kreisarchiv Calw, Archivbibliothek +http://lobid.org/organisations/DE-526#! DE-526 526 Technische Hochschule Wildau, Hochschulbibliothek +http://lobid.org/organisations/DE-Aug10#! DE-Aug10 Aug 10 Archiv des Bistums Augsburg +http://lobid.org/organisations/DE-2325#! DE-2325 Kreisarchiv Freudenstadt +http://lobid.org/organisations/DE-2326#! DE-2326 Universitätsarchiv Freiburg +http://lobid.org/organisations/DE-MUS-069425#! DE-MUS-069425 Georg-August-Universität: Sammlung des Seminars für Ur- und Frühgeschichte +http://lobid.org/organisations/DE-2331#! DE-2331 FAU Erlangen-Nürnberg, Lehrstuhl für Politische Wissenschaft II: Abteilung Geistesgeschichte, Gerlach-Archiv +http://lobid.org/organisations/DE-2333#! DE-2333 2333 informationsstelle südliches afrika e.v., Fachbibliothek +http://lobid.org/organisations/DE-2343#! DE-2343 Gemeindearchiv Oberstreu +http://lobid.org/organisations/DE-4-888#! DE-4-888 4/888 Universität Marburg, Handapparate +http://lobid.org/organisations/DE-48#! DE-48 48 Bibliothek der Hansestadt Lübeck +http://lobid.org/organisations/DE-633#! DE-633 633 RISM +http://lobid.org/organisations/DE-2368#! DE-2368 2368 Deutsches Evangelisches Institut für Altertumswissenschaft des Heiligen Landes (DEI) Jerusalem, Bibliothek +http://lobid.org/organisations/DE-2376#! DE-2376 2376 Max-Samuel-Haus, Stiftung Begegnungsstätte für jüdische Geschichte und Kultur in Rostock, Bibliothek +http://lobid.org/organisations/DE-2378#! DE-2378 2378 Kriminologische Zentralstelle, Bibliothek +http://lobid.org/organisations/DE-2381#! DE-2381 2381 Bibliothek der Verwaltungsgemeinschaft Bad Tennstedt +http://lobid.org/organisations/DE-2382#! DE-2382 2382 Japanisches Kulturinstitut (The Japan Foundation), Bibliothek +http://lobid.org/organisations/DE-451#! DE-451 451 Stadtarchiv Pforzheim, Bibliothek +http://lobid.org/organisations/DE-2386#! DE-2386 Kunsthistorisches Institut in Florenz, Max-Planck-Institut, Photothek +http://lobid.org/organisations/DE-2389#! DE-2389 Universitätsarchiv der Freien Universität Berlin +http://lobid.org/organisations/DE-2395#! DE-2395 Universitätsarchiv Tübingen +http://lobid.org/organisations/DE-2397#! DE-2397 2397 Stadtarchiv Mainz, Bibliothek +http://lobid.org/organisations/AT-SFU#! AT-SFU AT-SFU Sigmund Freud Privatuniversität Wien, Bibliothek +http://lobid.org/organisations/DE-2404#! DE-2404 2404 Herbarium der Universität Halle-Wittenberg +http://lobid.org/organisations/DE-2406#! DE-2406 2406 Kreisfahrbücherei Dillingen/Do. +http://lobid.org/organisations/DE-2408#! DE-2408 2408 Zentrum Verkündigung der Evangelischen Kirche in Hessen und Nassau, Bibliothek +http://lobid.org/organisations/DE-2411#! DE-2411 2411 Gemeindebücherei im Bürgerzentrum Heroldsberg +http://lobid.org/organisations/DE-2412#! DE-2412 Numismatische Sammlung der Heinrich-Heine-Universität Düsseldorf +http://lobid.org/organisations/DE-2417#! DE-2417 transmediale - Festival für Kunst und digitale Kultur +http://lobid.org/organisations/DE-576-3#! DE-576-3 Bibliotheksservice-Zentrum Baden-Württemberg (BSZ) / MusIS +http://lobid.org/organisations/DE-2429#! DE-2429 2429 Gemeindebücherei Waldbüttelbrunn +http://lobid.org/organisations/DE-4-433#! DE-4-433 4/433 Universität Marburg, Dr. Rolf H. Krauss-Forschungsbibliothek +http://lobid.org/organisations/DE-2433#! DE-2433 2433 Burkhart-Gymnasium Mallersdorf-Pfaffenberg, Schulbibliothek +http://lobid.org/organisations/DE-2435#! DE-2435 2435 Stadtarchiv Bad Homburg vor der Höhe +http://lobid.org/organisations/DE-627-1#! DE-627-1 E-Book-Pool +http://lobid.org/organisations/DE-2447#! DE-2447 2447 Archiv der Stadt Erftstadt, Bibliothek +http://lobid.org/organisations/DE-2455#! DE-2455 2455 Stadtbibliothek Rottenburg am Neckar +http://lobid.org/organisations/DE-2456#! DE-2456 2456 Gemeindebücherei Ortenburg +http://lobid.org/organisations/DE-2460#! DE-2460 2460 Ludwig-Erhard-Schule Mosbach, Bibliothek +http://lobid.org/organisations/DE-2461#! DE-2461 2461 Bibliothek des Priesterseminars Regensburg +http://lobid.org/organisations/CH-000095-1#! CH-000095-1 Kantonsbibliothek Appenzell Ausserrhoden +http://lobid.org/organisations/CH-000086-2#! CH-000086-2 Kantonsbibliothek Thurgau +http://lobid.org/organisations/DE-2464#! DE-2464 2464 Fachhochschule für Verwaltung des Saarlandes, Bibliothek +http://lobid.org/organisations/DE-2475#! DE-2475 2475 Biblisch-Archäologisches Institut Wuppertal, Bibliothek +http://lobid.org/organisations/DE-2478#! DE-2478 2478 Landschaftsverband Rheinland, LVR-Bibliothek der Zentralverwaltung +http://lobid.org/organisations/DE-2490#! DE-2490 2490 Deutsches Archäologisches Institut, Abteilung Rom, Archiv +http://lobid.org/organisations/DE-100-791#! DE-100-791 100/791 Universität Hohenheim, Food Security Center, Bibliothek +http://lobid.org/organisations/DE-2514#! DE-2514 2514 Pfarr- und Gemeindearchive Parochie St. Bartholomäi +http://lobid.org/organisations/DE-2517#! DE-2517 Kreisarchiv Bautzen +http://lobid.org/organisations/DE-2531#! DE-2531 2531 Bremer Universitätsarchiv +http://lobid.org/organisations/DE-26-374#! DE-26-374 26/374 Universität Gießen, Zweigbibliothek im Philosophikum II, Lernwerkstatt Inklusion / Zentrum für Lehrerbildung +http://lobid.org/organisations/DE-2538#! DE-2538 Herder-Institut für historische Ostmitteleuropaforschung, Abteilung Digitale Geschichte und IT +http://lobid.org/organisations/DE-2540#! DE-2540 2540 Bücherei Markt Roßtal +http://lobid.org/organisations/DE-2543#! DE-2543 2543 Gewerbeschule Bad Säckingen, Bibliothek +http://lobid.org/organisations/DE-2549#! DE-2549 Stiftung Niedersächsisches Wirtschaftsarchiv +http://lobid.org/organisations/DE-2552#! DE-2552 2552 Potsdam Museum - Forum für Geschichte und Kunst, Bibliothek +http://lobid.org/organisations/DE-2559#! DE-2559 2559 Bibliothek Theologisches Studienjahr Jerusalem Abtei Dormitio +http://lobid.org/organisations/DE-2560#! DE-2560 2560 Stadtbibliothek Reinbek +http://lobid.org/organisations/DE-MUS-158114#! DE-MUS-158114 Antiken- und Abgußsammlung des archäologischen Seminars +http://lobid.org/organisations/DE-2572#! DE-2572 2572 Deutsches Historisches Institut London, Bibliothek +http://lobid.org/organisations/DE-2573#! DE-2573 2573 Kirchenbibliothek Sankt Marien Barth +http://lobid.org/organisations/DE-MUS-045325#! DE-MUS-045325 Friedrich-Schiller-Universität / Dr. Windfeld-Hansen-Archiv +http://lobid.org/organisations/DE-MUS-047529#! DE-MUS-047529 Friedrich-Schiller-Universität / Lehr- und Forschungssammlung experimentelle Wissenschaftsgeschichte +http://lobid.org/organisations/DE-MUS-046026#! DE-MUS-046026 Friedrich-Schiller-Universität / Lehrsammlung Botanik +http://lobid.org/organisations/DE-MUS-045023#! DE-MUS-045023 Friedrich-Schiller-Universität / Sammlung von Abgüssen Antiker Plastiken +http://lobid.org/organisations/DE-MUS-046828#! DE-MUS-046828 Friedrich-Schiller-Universität / Sternwarte mit astronomischer Sammlung am Astrophysikalischen Institut +http://lobid.org/organisations/DE-2581#! DE-2581 Gnomon Bibliographische Datenbank – Thesaurus +http://lobid.org/organisations/DE-30-334#! DE-30-334 30/334 Universitätsbibliothek J. C. Senckenberg, BSP, Didaktische Werkstatt +http://lobid.org/organisations/DE-MUS-124527#! DE-MUS-124527 Sammlung des Lehrstuhls für Alte Geschichte der Katholischen Universität Eichstätt-Ingolstadt +http://lobid.org/organisations/DE-2589#! DE-2589 2589 Stadtbücherei Überlingen +http://lobid.org/organisations/DE-MUS-124621#! DE-MUS-124621 Künstlernachlässe Mannheim +http://lobid.org/organisations/DE-MUS-124725#! DE-MUS-124725 Fischerhaus Museum +http://lobid.org/organisations/DE-2600#! DE-2600 2600 Technische Universität Dresden, Kunstgeschichte / Digitale Diathek +http://lobid.org/organisations/DE-2604#! DE-2604 2604 Stadtbücherei Teublitz +http://lobid.org/organisations/DE-2605#! DE-2605 2605 Martinus-Bibliothek, Fachbereichsbibliothek Pastoral-Spiritualität +http://lobid.org/organisations/DE-2608#! DE-2608 Institut Papst Benedikt XVI., Archiv +http://lobid.org/organisations/DE-2611#! DE-2611 documenta archiv +http://lobid.org/organisations/DE-30-335#! DE-30-335 30/335 Universität Frankfurt, Sammlungen, Sammlung Politische Bildgedächtnisse +http://lobid.org/organisations/DE-30-336#! DE-30-336 30/336 Universität Frankfurt, Forschungskolleg Humanwissenschaften, Referenzbibliothek +http://lobid.org/organisations/DE-2615#! DE-2615 2615 Kreisarchiv Konstanz +http://lobid.org/organisations/DE-2618#! DE-2618 2618 Stadtarchiv Engen +http://lobid.org/organisations/DE-627#! DE-627 K10plus +http://lobid.org/organisations/DE-2626#! DE-2626 2626 Stadtarchiv Mettmann +http://lobid.org/organisations/DE-2628#! DE-2628 2628 Bibliothek des Studienzentrums von Studium in Israel +http://lobid.org/organisations/DE-2670#! DE-2670 2670 Fraunhofer-Institut für Umwelt-, Sicherheits- und Energietechnik UMSICHT, Bibliothek +http://lobid.org/organisations/DE-2672#! DE-2672 2672 Stadtbücherei Osterhofen +http://lobid.org/organisations/DE-2683#! DE-2683 2683 Stadtbücherei Ansbach +http://lobid.org/organisations/DE-2689#! DE-2689 2689 Gemeindebücherei Bubenreuth +http://lobid.org/organisations/DE-2695#! DE-2695 2695 Gemeindebücherei Knetzgau +http://lobid.org/organisations/DE-2697#! DE-2697 2697 Gemeindebücherei Maisach +http://lobid.org/organisations/DE-2700#! DE-2700 2700 Stadtbücherei Neutraubling +http://lobid.org/organisations/DE-2702#! DE-2702 2702 Gemeindebücherei Nüdlingen +http://lobid.org/organisations/DE-2706#! DE-2706 2706 Gemeindebücherei Schäftlarn OT. Ebenhausen +http://lobid.org/organisations/DE-2707#! DE-2707 2707 Gemeindebücherei Schirnding +http://lobid.org/organisations/DE-2708#! DE-2708 2708 Gemeindebücherei Schönau am Königssee +http://lobid.org/organisations/DE-2712#! DE-2712 2712 KOMM Bibliothek Untermerzbach +http://lobid.org/organisations/DE-2716#! DE-2716 2716 Mediathek Winkelhaid +http://lobid.org/organisations/DE-2717#! DE-2717 2717 Gemeindebücherei Zolling +http://lobid.org/organisations/DE-2724#! DE-2724 Gemeindearchiv Alfter +http://lobid.org/organisations/DE-2728#! DE-2728 2728 Gemeindebibliothek Lülsfeld +http://lobid.org/organisations/DE-2731#! DE-2731 2731 Digitales Forum Mittel- und Osteuropa e.V. +http://lobid.org/organisations/DE-2733#! DE-2733 2733 Archiv für alternatives Schrifttum +http://lobid.org/organisations/DE-2747#! DE-2747 2747 Initiative Internet und Bildung e.V., Bibliothek +http://lobid.org/organisations/DE-2751#! DE-2751 2751 Berlin-Brandenburgisches Wirtschaftsarchiv +http://lobid.org/organisations/DE-2755#! DE-2755 2755 Schule ABC-Abwehr und Gesetzliche Schutzaufgaben, Bibliothek +http://lobid.org/organisations/DE-2756#! DE-2756 2756 Stadtbücherei Eckernförde +http://lobid.org/organisations/DE-2760#! DE-2760 2760 Duale Hochschule Schleswig-Holstein, Bibliothek +http://lobid.org/organisations/DE-2762#! DE-2762 Kreisarchiv Emmendingen +http://lobid.org/organisations/DE-2764#! DE-2764 2764 Gemeindebücherei Utting am Ammersee +http://lobid.org/organisations/DE-2774#! DE-2774 2774 Stadtbücherei Maxhütte-Haidhof +http://lobid.org/organisations/DE-2775#! DE-2775 2775 Kinder- und Jugendbücherei Icking +http://lobid.org/organisations/DE-MUS-056528#! DE-MUS-056528 Industriesalon Schöneweide - Forum für Industrie-Technik-Kultur +http://lobid.org/organisations/DE-2779#! DE-2779 2779 Katholische Öffentliche Bücherei St. Laurentius +http://lobid.org/organisations/DE-2782#! DE-2782 2782 Bibliothek der Hochschule der bildenden Künste Essen +http://lobid.org/organisations/DE-MUS-135626#! DE-MUS-135626 NaTour Centrum und Heimatmuseum des Kirchspiels Lunden +http://lobid.org/organisations/DE-MUS-135522#! DE-MUS-135522 Kunsthaus der Achim Freyer Stiftung +http://lobid.org/organisations/DE-2785#! DE-2785 2785 Klinikum der Landeshauptstadt Stuttgart gKAöR, Bibliothek +http://lobid.org/organisations/DE-MUS-136025#! DE-MUS-136025 Münzsammlung des Fachbereichs Alte Geschichte der Universität Trier +http://lobid.org/organisations/DE-2788#! DE-2788 Staatliche Akademie der Bildenden Künste Stuttgart, Sammlung und Archiv +http://lobid.org/organisations/DE-2795#! DE-2795 2795 Deutsches Historisches Institut Paris, Bibliothek +http://lobid.org/organisations/DE-2799#! DE-2799 2799 Stadtbibliothek Nebra +http://lobid.org/organisations/DE-M335#! DE-M335 M 335 Staatsarchiv München, Bibliothek +http://lobid.org/organisations/DE-483#! DE-483 483 Staatsarchiv Amberg, Bibliothek +http://lobid.org/organisations/DE-2806#! DE-2806 2806 Stadtbücherei Elmshorn +http://lobid.org/organisations/DE-MUS-136525#! DE-MUS-136525 Museum Schloss Heringen +http://lobid.org/organisations/DE-2808#! DE-2808 2808 Stadtbücherei Hofheim +http://lobid.org/organisations/DE-2810#! DE-2810 2810 Heinrich-Schickhardt-Schule Freudenstadt, Bibliothek +http://lobid.org/organisations/DE-2812#! DE-2812 2812 Bücherei der Gemeinde Salem +http://lobid.org/organisations/DE-2813#! DE-2813 Baltische Historische Kommission e.V. +http://lobid.org/organisations/DE-2815#! DE-2815 2815 DWA-Bibliothek +http://lobid.org/organisations/DE-2819#! DE-2819 Museumsverband Thüringen e.V. +http://lobid.org/organisations/DE-2833#! DE-2833 2833 CLVA - Centrales Ländliches Vereinsarchiv e.V. +http://lobid.org/organisations/DE-627-2#! DE-627-2 Verbundkatalog Öffentlicher Bibliotheken +http://lobid.org/organisations/DE-2844#! DE-2844 2844 Städtische Museen Heilbronn, Bibliothek +http://lobid.org/organisations/DE-2845#! DE-2845 2845 Deutsche Hochschule für Gesundheit und Sport - Bibliothek +http://lobid.org/organisations/DE-2846#! DE-2846 2846 Hochschule für angewandtes Management und Deutsche Hochschule für Gesundheit und Sport - Bibliothek +http://lobid.org/organisations/DE-2848#! DE-2848 Collegium Polonicum, Karl Dedecius Archiv +http://lobid.org/organisations/DE-2849#! DE-2849 2849 Hochschule für angewandtes Management - Bibliothek +http://lobid.org/organisations/DE-2859#! DE-2859 Deutsches Archäologisches Institut, Eurasienabteilung, Archiv +http://lobid.org/organisations/DE-2873#! DE-2873 Dokumentationsstelle ""Religiöser und weltanschaulicher Pluralismus in Deutschland"" +http://lobid.org/organisations/DE-MUS-145826#! DE-MUS-145826 Museum Zinsspeicher Thalbürgel +http://lobid.org/organisations/DE-30-161#! DE-30-161 30/161 Anna-Freud-Institut, Bibliothek +http://lobid.org/organisations/DE-840-2#! DE-840-2 840/2 Bibliothek LIV Schwäbisch Hall +http://lobid.org/organisations/DE-2889#! DE-2889 Universitätsarchiv Heidelberg +http://lobid.org/organisations/DE-2892#! DE-2892 2892 reelport GmbH +http://lobid.org/organisations/DE-1156c#! DE-1156c 1156c Folkwang Universität der Künste, Campus Welterbe Zollverein | Quartier Nord, Bibliothek +http://lobid.org/organisations/DE-5-228#! DE-5-228 Maya Image Archive - Projekt ""Textdatenbank und Wörterbuch des Klassischen Maya"" +http://lobid.org/organisations/DE-2899#! DE-2899 2899 Mediathek Willstätt +http://lobid.org/organisations/DE-2900#! DE-2900 Madonna - Archiv und Dokumentationszentrum SEXARBEIT +http://lobid.org/organisations/DE-2902#! DE-2902 Frauenstadtarchiv Dresden/ FrauenBildungsHaus Dresden e.V. +http://lobid.org/organisations/DE-2904#! DE-2904 2904 Seminar für Sprache und Kultur, Bibliothek +http://lobid.org/organisations/DE-Bok2#! DE-Bok2 Stadtarchiv Borken/Westfalen +http://lobid.org/organisations/DE-641#! DE-641 LEO-BW-Regional +http://lobid.org/organisations/DE-MUS-871347#! DE-MUS-871347 Stiftung Schloss Friedenstein Gotha +http://lobid.org/organisations/DE-2919#! DE-2919 Berliner Künstlerprogramm des Deutschen Akademischen Austauschdienstes +http://lobid.org/organisations/DE-2920#! DE-2920 2920 Fichte-Gymnasium Karlsruhe, Bibliothek +http://lobid.org/organisations/DE-Hef3#! DE-Hef3 Stadtarchiv Enger +http://lobid.org/organisations/DE-2929#! DE-2929 2929 Bibliothek Diesdorf +http://lobid.org/organisations/DE-2934#! DE-2934 2934 Bildung- und Begegnungzentrum für jüd-chr Geschichte und Kultur +http://lobid.org/organisations/DE-2938#! DE-2938 Klosterschule vom Hl. Grab +http://lobid.org/organisations/DE-573n#! DE-573n 573n Hochschulbibliothek Ingolstadt / Standort Neuburg +http://lobid.org/organisations/DE-2943#! DE-2943 Bayerisches Wirtschaftsarchiv +http://lobid.org/organisations/DE-B1533#! DE-B1533 B 1533 Alice Salomon Hochschule Berlin, Bibliothek +http://lobid.org/organisations/DE-2951#! DE-2951 2951 Stadtbücherei Winnenden +http://lobid.org/organisations/DE-2952#! DE-2952 Heimatverein Appen und Umgebung im Schleswig-Holsteinischen Heimatbund e.V. +http://lobid.org/organisations/DE-2966#! DE-2966 2966 Stadtbibliothek Varel +http://lobid.org/organisations/DE-2973#! DE-2973 2973 Fahrbücherei 3 im Kreis Steinburg +http://lobid.org/organisations/DE-2975#! DE-2975 2975 Fahrbücherei 5 im Kreis Nordfriesland +http://lobid.org/organisations/DE-Alz1-1#! DE-Alz1-1 Alz 1/1 Fachhochschule für Verwaltung und Dienstleistung, Fachbereich Rentenversicherung +http://lobid.org/organisations/DE-2998#! DE-2998 2998 Produktdatenbank Alphabetisierung und Grundbildung +http://lobid.org/organisations/DE-3011#! DE-3011 3011 Stadtbibliothek Crimmitschau +http://lobid.org/organisations/DE-3017#! DE-3017 3017 Gemeindebibliothek Hartmannsdorf +http://lobid.org/organisations/DE-3027#! DE-3027 3027 Gemeindebibliothek Olbersdorf +http://lobid.org/organisations/DE-3040#! DE-3040 Heinrich-Hertz-Schule Karlsruhe +http://lobid.org/organisations/DE-3042#! DE-3042 3042 Fraunhofer-Institut für Schicht- und Oberflächentechnik IST, Bibliothek +http://lobid.org/organisations/DE-3048#! DE-3048 3048 Schülerlesebibliothek Gymnasium Mering +http://lobid.org/organisations/DE-93-125#! DE-93-125 93/125 Universität Stuttgart, Institut für Grundlagen Moderner Architektur und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-132#! DE-93-132 93/132 Universität Stuttgart, Institut für Baubetriebslehre, Bibliothek +http://lobid.org/organisations/DE-93-133#! DE-93-133 93/133 Universität Stuttgart, Institut für Navigation, Bibliothek +http://lobid.org/organisations/DE-93-134#! DE-93-134 93/134 Universität Stuttgart, Institut für Leichtbau, Entwerfen und Konstruieren, Bibliothek Pfaffenwaldring 14 +http://lobid.org/organisations/DE-93-147#! DE-93-147 93/147 Universität Stuttgart, Institut für Hochfrequenztechnik, Bibliothek +http://lobid.org/organisations/DE-93-149#! DE-93-149 93/149 Universität Stuttgart, Institut für Signalverarbeitung und Systemtheorie, Bibliothek +http://lobid.org/organisations/DE-93-151#! DE-93-151 93/151 Universität Stuttgart, Institut für Steuerungstechnik der Werkzeugmaschinen und Fertigungseinrichtungen, Bibliothek +http://lobid.org/organisations/DE-93-167#! DE-93-167 93/167 Universität Stuttgart, Physikalisches Institut, 1. Physikalisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-180#! DE-93-180 93/180 Universität Stuttgart, Sprachenzentrum, Bibliothek +http://lobid.org/organisations/DE-93-182#! DE-93-182 93/182 Universität Stuttgart, Institut für Erziehungswissenschaft, Abteilung Berufs-, Wirtschafts- und Technikpädagogik, Bibliothek +http://lobid.org/organisations/DE-100-110#! DE-100-110 100/110 Institut für Angewandte Mathematik und Statistik der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-403#! DE-100-403 100/403 Versuchsstation Agrarwissenschaften der Universität Hohenheim, Standort Ihinger Hof, Bibliothek +http://lobid.org/organisations/DE-100-320#! DE-100-320 100/320 Institut für Landschafts- und Pflanzenökologie der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-350#! DE-100-350 100/350 Institut für Pflanzenzüchtung, Saatgutforschung und Populationsgenetik der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-410#! DE-100-410 100/410 Institut für Landwirtschaftliche Betriebslehre der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-421#! DE-100-421 100/421 Forschungsstelle für Genossenschaftswesen der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-540#! DE-100-540 100/540 Institut für Kommunikationswissenschaft der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-100-551#! DE-100-551 100/551 Forschungsstelle für Agrar- und Umweltrecht der Universität Hohenheim, Bibliothek +http://lobid.org/organisations/DE-212#! DE-212 212 Institut für Auslandsbeziehungen, Bibliothek +http://lobid.org/organisations/DE-Lg1#! DE-Lg1 Lg 1 Pädagogische Hochschulbibliothek Ludwigsburg +http://lobid.org/organisations/DE-21#! DE-21 21 Universitätsbibliothek der Eberhard Karls Universität +http://lobid.org/organisations/DE-21-1#! DE-21-1 21/1 Universitätsklinik für Psychiatrie und Psychotherapie, Bibliothek +http://lobid.org/organisations/DE-21-20#! DE-21-20 21/20 Frauenklinik, Bibliothek +http://lobid.org/organisations/DE-21-26#! DE-21-26 21/26 Universität Tübingen, Anatomisches Institut, Bibliothek +http://lobid.org/organisations/DE-21-31#! DE-21-31 21/31 Theologicum, Evangelisches u. Katholisches Seminar, Bibliothek +http://lobid.org/organisations/DE-21-34#! DE-21-34 21/34 Seminar für Indologie und vergleichende Religionswissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-35#! DE-21-35 21/35 Theologicum, Evangelisches und Katholisches Seminar, Bibliothek +http://lobid.org/organisations/DE-21-38#! DE-21-38 21/38 Leibniz Kolleg, Bibliothek +http://lobid.org/organisations/DE-21-39#! DE-21-39 21/39 Fachbibliothek Mathematik und Physik / Bereich Mathematik - Universität Tübingen +http://lobid.org/organisations/DE-21-42#! DE-21-42 21/42 Asien-Orient-Institut, Abteilung für Orient und Islamwissenschaft, Bibliothek +http://lobid.org/organisations/DE-21-51#! DE-21-51 21/51 Universität Tübingen, Fachbereich Psychologie, Bibliothek +http://lobid.org/organisations/DE-21-93#! DE-21-93 21/93 Universität Tübingen, Institut für Ethik und Geschichte der Medizin, Bibliothek +http://lobid.org/organisations/DE-21-95#! DE-21-95 21/95 Institut für Hirnforschung, Bibliothek +http://lobid.org/organisations/DE-21-121#! DE-21-121 21/121 Universität Tübingen, Internationales Zentrum für Ethik in den Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-Tue16#! DE-Tue16 Tü 16 Tropenklinik Paul-Lechler-Krankenhaus, Ärztliche Bibliothek +http://lobid.org/organisations/DE-449#! DE-449 449 Stadtarchiv Tübingen, Bibliothek +http://lobid.org/organisations/DE-90-22#! DE-90-22 90/22 KIT-Bibliothek, Bibliothek des Instituts für Experimentelle Teilchenphysik +http://lobid.org/organisations/DE-90-26#! DE-90-26 90/26 KIT-Bibliothek, Bibliothek des Instituts für Theoretische Teilchenphysik +http://lobid.org/organisations/DE-90-27#! DE-90-27 90/27 KIT-Bibliothek, TKM-TFP-Bibliothek (Gemeinsame Bibliothek des Instituts für Theorie der Kondensierten Materie und des Instituts für Theoretische Festkörperphysik) +http://lobid.org/organisations/DE-90-80#! DE-90-80 90/80 KIT-Bibliothek, Bibliothek des Instituts für Strassen- und Eisenbahnwesen, Abteilung Eisenbahnwesen +http://lobid.org/organisations/DE-90-130#! DE-90-130 90/130 KIT-Bibliothek, Bibliothek des Instituts für Regelungs- und Steuerungssysteme +http://lobid.org/organisations/DE-90-131#! DE-90-131 90/131 KIT-Bibliothek, Bibliothek des Instituts für Angewandte Materialien - Elektrochemische Technologien +http://lobid.org/organisations/DE-90-135#! DE-90-135 90/135 KIT-Bibliothek, Bibliothek des Instituts für Photonik und Quantenelektronik +http://lobid.org/organisations/DE-90-156#! DE-90-156 90/156 KIT-Bibliothek, Bibliothek des Instituts für Entwerfen, Kunst und Theorie, Fachgebiet Bauplanung +http://lobid.org/organisations/DE-90-174#! DE-90-174 90/174 KIT-Bibliothek, Bibliothek des Instituts für Angewandte Materialien / Keramik im Maschinenbau +http://lobid.org/organisations/DE-462#! DE-462 462 Stadtbibliothek Baden-Baden +http://lobid.org/organisations/DE-Fm1#! DE-Fm1 Fm 1 Landwirtschaftliches Technologiezentrum Augustenberg, Außenstelle Forchheim, Bibliothek +http://lobid.org/organisations/DE-25-6#! DE-25-6 25/6 Department Innere Medizin, Bibliothek +http://lobid.org/organisations/DE-25-9#! DE-25-9 25/9 Universität Freiburg, Bibliotheken der Rechtswissenschaftlichen Fakultät +http://lobid.org/organisations/DE-25-19#! DE-25-19 25/19 Chirurgische Universitätsklinik, Bibliothek +http://lobid.org/organisations/DE-25-29#! DE-25-29 25/29 Universität Freiburg, Orientalisches Seminar, Bibliothek +http://lobid.org/organisations/DE-25-30a#! DE-25-30a 25/30a Deutsches Seminar, Germanistische Linguistik/Mediävistik, Bibliothek +http://lobid.org/organisations/DE-25-31b#! DE-25-31b 25/31b Universität Freiburg, Bibliothek im KG IV, Bereiche Geschichte, Osteuropäische Geschichte, Politik, Soziologie +http://lobid.org/organisations/DE-25-42#! DE-25-42 25/42 Bibliothek Geologie und Mineralogie - Geochemie +http://lobid.org/organisations/DE-25-43#! DE-25-43 25/43 Universität Freiburg, Medizin-Lesesaal Weismannhaus +http://lobid.org/organisations/DE-25-55#! DE-25-55 25/55 Institut für Forstbotanik und Baumphysiologie, Professur für Forstbotanik, Bibliothek +http://lobid.org/organisations/DE-25-63#! DE-25-63 25/63 Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde, Bibliothek +http://lobid.org/organisations/DE-25-65#! DE-25-65 25/65 Institut für Kriminologie und Wirtschaftsstrafrecht, Bibliothek +http://lobid.org/organisations/DE-25-86#! DE-25-86 25/86 Institut für Archäologische Wissenschaften, Abt. Urgeschichtliche Archäologie, Abt. Frühgeschichtliche Archäologie und Archäologie des Mittelalters, Bibliothek +http://lobid.org/organisations/DE-25-139#! DE-25-139 25/139 Institut für Forstbenutzung und forstliche Arbeitswissenschaft, Bibliothek +http://lobid.org/organisations/DE-25-163#! DE-25-163 25/163 Rechenzentrum der Universität, Handbibliothek +http://lobid.org/organisations/DE-25-4a#! DE-25-4a 25/4a Kristallographisches Institut, Bibliothek +http://lobid.org/organisations/DE-25-19z#! DE-25-19z 25/19z Anästhesiologische Universitätsklinik, Bibliothek +http://lobid.org/organisations/DE-25-3b#! DE-25-3b 25/3b Mathematisches Institut, Bibliothek / Abteilung für Angewandte Mathematik +http://lobid.org/organisations/DE-Frei101#! DE-Frei101 Frei 101 Stadtarchiv Freiburg, Bibliothek +http://lobid.org/organisations/DE-Frei110#! DE-Frei110 Frei 110 Fraunhofer-Institut für Kurzzeitdynamik, Ernst-Mach-Institut, Bibliothek +http://lobid.org/organisations/DE-Frei127#! DE-Frei127 Frei 127 Alemannisches Institut, Bibliothek +http://lobid.org/organisations/DE-Frei143#! DE-Frei143 Frei 143 Carl-Schurz-Haus, Deutsch-Amerikanisches Institut e.V., Bibliothek +http://lobid.org/organisations/DE-Frei200#! DE-Frei200 Frei 200 Fraunhofer-Institut für Solare Energiesysteme, Bibliothek +http://lobid.org/organisations/DE-289#! DE-289 289 Universität Ulm, Kommunikations- und Informationszentrum, Bibliotheksservices +http://lobid.org/organisations/DE-19#! DE-19 19 Universitätsbibliothek der LMU München +http://lobid.org/organisations/DE-91#! DE-91 91 Technische Universität München, Universitätsbibliothek +http://lobid.org/organisations/DE-M49#! DE-M49 M 49 Technische Universität München, Universitätsbibliothek, Teilbibliothek Weihenstephan +http://lobid.org/organisations/DE-M12#! DE-M12 M 12 Akademie der Bildenden Künste, Bibliothek +http://lobid.org/organisations/DE-M27#! DE-M27 M 27 Industrie- und Handelskammer für München und Oberbayern, Bibliothek +http://lobid.org/organisations/DE-M39#! DE-M39 M 39 Bayerisches Staatsministerium der Justiz, Bibliothek +http://lobid.org/organisations/DE-M153#! DE-M153 M 153 Landeskirchenamt München, Bibliothek +http://lobid.org/organisations/DE-M158a#! DE-M158a M 158a ifo Institut für Wirtschaftsforschung an der Universität München, Bibliothek +http://lobid.org/organisations/DE-739#! DE-739 739 Universitätsbibliothek Passau +http://lobid.org/organisations/DE-703#! DE-703 703 Universitätsbibliothek Bayreuth +http://lobid.org/organisations/DE-N2#! DE-N2 N 2 Universitätsbibliothek Erlangen-Nürnberg, Wirtschafts- und Sozialwissenschaftliche Zweigbibliothek +http://lobid.org/organisations/DE-75#! DE-75 75 Stadtbibliothek im Bildungscampus Nürnberg +http://lobid.org/organisations/DE-N1#! DE-N1 N 1 Germanisches Nationalmuseum, Bibliothek +http://lobid.org/organisations/DE-11-68#! DE-11-68 11/68 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Rechtswissenschaft +http://lobid.org/organisations/DE-B424#! DE-B424 B 424 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin, Wissenschaftliche Information - Fachbibliothek +http://lobid.org/organisations/DE-B464#! DE-B464 B 464 Hochschule für Musik 'Hanns Eisler', Bibliothek +http://lobid.org/organisations/DE-Bd4#! DE-Bd4 Bd 4 Asklepios Fachklinikum Brandenburg, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Eb15#! DE-Eb15 Eb 15 Martin Gropius Krankenhaus GmbH, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Fr5#! DE-Fr5 Fr 5 Kleist-Museum im Kleist-Gedenk- und Forschungsstätte e.V., Bibliothek +http://lobid.org/organisations/DE-Lbn1#! DE-Lbn1 Lbn 1 Klinikum Dahme - Spreewald GmbH, Spreewaldklinik Lübben, Archiv / Bibliothek +http://lobid.org/organisations/DE-Lbn2#! DE-Lbn2 Lbn 2 Asklepios Fachklinikum Lübben, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Ner1#! DE-Ner1 Ner 1 Ruppiner Kliniken GmbH, Medizinische Bibliothek +http://lobid.org/organisations/DE-Po25#! DE-Po25 Po 25 IGV Institut für Getreideverarbeitung GmbH, Bibliothek +http://lobid.org/organisations/DE-Po55#! DE-Po55 Po 55 Landesinstitut für Schule und Medien Berlin-Brandenburg, Bibliothek +http://lobid.org/organisations/DE-Po57#! DE-Po57 Po 57 Landesamt für Ländliche Entwicklung, Landwirtschaft und Flurneuordnung Dienstsitz Ruhlsdorf (LELF), Bibliothek +http://lobid.org/organisations/DE-Spr9#! DE-Spr9 Spr 9 Spremberger Krankenhausgesellschaft mbH, Bibliothek +http://lobid.org/organisations/DE-9#! DE-9 9 Universitätsbibliothek Greifswald +http://lobid.org/organisations/DE-28#! DE-28 28 Universitätsbibliothek Rostock +http://lobid.org/organisations/DE-Wis4#! DE-Wis4 Wis 4 Sana Hanse-Klinikum Wismar GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Bbg7#! DE-Bbg7 Bbg 7 AMEOS Klinikum Bernburg, Fachbibliothek +http://lobid.org/organisations/DE-De5#! DE-De5 De 5 Museum für Naturkunde und Vorgeschichte, Bibliothek +http://lobid.org/organisations/DE-Gen3#! DE-Gen3 Gen 3 AWO Fachkrankenhaus Jerichow, Fachbibliothek +http://lobid.org/organisations/DE-3-1#! DE-3-1 3/1 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Vorderer Orient / Ethnologie +http://lobid.org/organisations/DE-3-18#! DE-3-18 3/18 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Steintorcampus +http://lobid.org/organisations/DE-3-38#! DE-3-38 3/38 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Musik +http://lobid.org/organisations/DE-3-76#! DE-3-76 3/76 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Physiologische Chemie +http://lobid.org/organisations/DE-Ha91#! DE-Ha91 Ha 91 Landesamt für Denkmalpflege und Archäologie, Sachsen-Anhalt, Landesmuseum für Vorgeschichte, Bibliothek +http://lobid.org/organisations/DE-Ha117#! DE-Ha117 Ha 117 Kulturstiftung Sachsen-Anhalt, Zentralbibliothek Halle (Saale) +http://lobid.org/organisations/DE-Ha125#! DE-Ha125 Ha 125 Burg Giebichenstein Kunsthochschule Halle, Hochschulbibliothek +http://lobid.org/organisations/DE-Ma12#! DE-Ma12 Ma 12 WTZ Motoren- und Maschinenforschung Roßlau gGmbH, Fachbibliothek +http://lobid.org/organisations/DE-Ma13#! DE-Ma13 Ma 13 Institut für Lacke und Farben e.V., Bibliothek +http://lobid.org/organisations/DE-Ma40#! DE-Ma40 Ma 40 Landeskirchenamt Magdeburg, Bibliothek +http://lobid.org/organisations/DE-Ste1#! DE-Ste1 Ste 1 Salus gGmbH , Fachklinikum Uchtspringe, wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Sw3#! DE-Sw3 Sw 3 Altmark-Klinikum gGmbH, Krankenhaus Salzwedel, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Al1#! DE-Al1 Al 1 Landesarchiv Thüringen - Staatsarchiv Altenburg, Bibliothek +http://lobid.org/organisations/DE-D123#! DE-D123 D 123 Landesamt für Denkmalpflege Sachsen, Bibliothek +http://lobid.org/organisations/DE-D164#! DE-D164 D 164 Verkehrsmuseum Dresden gGmbH, Wissenschaftliche Fachbibliothek +http://lobid.org/organisations/DE-D172#! DE-D172 D 172 Städtisches Klinikum Dresden-Neustadt, Medizinische Bibliothek +http://lobid.org/organisations/DE-D188#! DE-D188 D 188 Sächsisches Krankenhaus Arnsdorf, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Fb61#! DE-Fb61 Fb 61 PAMA Papiermaschinen GmbH, Dokumentationsstelle +http://lobid.org/organisations/DE-Ch50#! DE-Ch50 Ch 50 Landesuntersuchungsanstalt für das Gesundheits- und Veterinärwesen Sachsen, Standort Chemnitz, Bibliothek +http://lobid.org/organisations/DE-Ch63#! DE-Ch63 Ch 63 Erzgebirgsklinikum gGmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-L191#! DE-L191 L 191 Bundesamt für Kartographie und Geodäsie, Außenstelle Leipzig, Bibliothek +http://lobid.org/organisations/DE-L243#! DE-L243 L 243 Stadtgeschichtliches Museum Leipzig, Bibliothek +http://lobid.org/organisations/DE-15-292#! DE-15-292 15/292 Universität Leipzig, Universitätsbibliothek, Bibliothek Medizin/Naturwissenschaften +http://lobid.org/organisations/DE-Pl4#! DE-Pl4 Pl 4 DRK-Blutspendedienst Sachsen gGmbH, Institut für Transfusionsmedizin Plauen, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Ro2#! DE-Ro2 Ro 2 Sächsisches Krankenhaus für Psychiatrie und Neurologie Rodewisch, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-Arn1#! DE-Arn1 Arn 1 Ilm-Kreis-Kliniken Arnstadt-Ilmenau gGmbH, Medizinische Bibliothek +http://lobid.org/organisations/DE-Ef10#! DE-Ef10 Ef 10 Eichsfeld Klinikum gGmbH, Haus Reifenstein, Fachbibliothek +http://lobid.org/organisations/DE-Ga13#! DE-Ga13 Ga 13 Asklepios Fachklinikum Stadtroda, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Ga16#! DE-Ga16 Ga 16 Thüringen-Klinik gGmbH 'Georgius Agricola', Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Ga18#! DE-Ga18 Ga 18 Thüringen-Kliniken ""Georgius Agricola"" GmbH, Standort Pößneck, Fach- und Patientenbibliothek +http://lobid.org/organisations/DE-Hr2#! DE-Hr2 Hr 2 Fraunhofer-Institut für Keramische Technologien und Systeme (IKTS), Institutsteil Hermsdorf, Bibliothek +http://lobid.org/organisations/DE-27-1#! DE-27-1 27/1 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Neuere Fremdsprachenphilologien (Anglistik / Amerikanistik, Slawistik, Indonesistik, Kaukasiologie) +http://lobid.org/organisations/DE-27-8#! DE-27-8 27/8 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Hautklinik +http://lobid.org/organisations/DE-27-9#! DE-27-9 27/9 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Anatomie +http://lobid.org/organisations/DE-27-11#! DE-27-11 27/11 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Chirurgische Klinik +http://lobid.org/organisations/DE-27-16#! DE-27-16 27/16 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Physik +http://lobid.org/organisations/DE-27-19#! DE-27-19 27/19 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Astronomie +http://lobid.org/organisations/DE-27-21#! DE-27-21 27/21 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Kunstgeschichte +http://lobid.org/organisations/DE-27-32#! DE-27-32 27/32 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Pathologie +http://lobid.org/organisations/DE-27-50#! DE-27-50 27/50 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Mathematik und Informatik +http://lobid.org/organisations/DE-27-64#! DE-27-64 27/64 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Soziologie und Politikwissenschaft +http://lobid.org/organisations/DE-27-84#! DE-27-84 27/84 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Ur- und Frühgeschichte +http://lobid.org/organisations/DE-27-116#! DE-27-116 27/116 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Beutenberg +http://lobid.org/organisations/DE-27-136#! DE-27-136 27/136 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Klinik für Urologie +http://lobid.org/organisations/DE-27-142#! DE-27-142 27/142 Thüringer Universitäts- und Landesbibliothek, Teilbibliothek Rechtswissenschaft / Wirtschaftswissenschaften (Wirtschaftswissenschaften) +http://lobid.org/organisations/DE-27-147#! DE-27-147 27/147 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Allgemeine Mikrobiologie +http://lobid.org/organisations/DE-Shz1#! DE-Shz1 Shz 1 Museum Schloß Burgk, Bibliothek +http://lobid.org/organisations/DE-Sob1#! DE-Sob1 Sob 1 Sternwarte Sonneberg, Bibliothek +http://lobid.org/organisations/DE-Su12#! DE-Su12 Su 12 REGIOMED Klinikum, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Un2#! DE-Un2 Un 2 E.S.C.H. Engineering Service Center und Handel GmbH, Zweigstelle Saalfeld, Bibliothek +http://lobid.org/organisations/DE-Wim19#! DE-Wim19 Wim 19 Informationsleitstelle Land- und Meliorationsbau für Thüringen +http://lobid.org/organisations/DE-B184#! DE-B184 B 184 Verein für die Geschichte Berlins e.V., Bibliothek +http://lobid.org/organisations/DE-B11c#! DE-B11c B 11c Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Museum Europäischer Kulturen, Bibliothek +http://lobid.org/organisations/DE-B787#! DE-B787 B 787 Max-Planck-Institut für molekulare Genetik, Bibliothek +http://lobid.org/organisations/DE-Y1#! DE-Y1 Y 1 Deutsches Archäologisches Institut, Istituto Archeologico Germanico, Biblioteca +http://lobid.org/organisations/DE-Kn41-26#! DE-Kn41-26 Kn 41/26 Deutsche Sporthochschule Köln, Institut für Natursport und Ökologie, Abteilung Wasserfahrsport, Bibliothek +http://lobid.org/organisations/DE-82-764#! DE-82-764 82/764 Medizinische Klinik IV, Bibliothek +http://lobid.org/organisations/DE-93-201#! DE-93-201 93/201 Universität Stuttgart, Institut für Arbeitswissenschaft und Technologiemanagement, Bibliothek +http://lobid.org/organisations/DE-93-204#! DE-93-204 93/204 Universität Stuttgart, Institut für Biochemie und Technische Biochemie (IBTB), Abteilung für Technische Biochemie (ITB), Bibliothek +http://lobid.org/organisations/DE-93-206#! DE-93-206 93/206 Universität Stuttgart, Institut für Bioverfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-992#! DE-992 992 WHU - Otto Beisheim School of Management, Bibliothek +http://lobid.org/organisations/DE-F197#! DE-F197 F 197 Hessische Stiftung Friedens- und Konfliktforschung, Bibliothek +http://lobid.org/organisations/DE-Wi24#! DE-Wi24 Wi 24 Hessische Landeszentrale für politische Bildung, Bibliothek +http://lobid.org/organisations/DE-14-02#! DE-14-02 14/02 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. ZwB Geistes- und Sozialwissenschaften) +http://lobid.org/organisations/DE-14-04#! DE-14-04 14/04 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem. ZwB Wirtschaftswissenschaften) +http://lobid.org/organisations/DE-14-07#! DE-14-07 14/07 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. ZwB Mathematik) +http://lobid.org/organisations/DE-14-17#! DE-14-17 14/17 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Bereichsbibliothek Drepunct (ehem.ZwB Bauingenieurwesen / Verkehrswissenschaften) +http://lobid.org/organisations/DE-14-18#! DE-14-18 14/18 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. Zweigbibliothek Architektur) +http://lobid.org/organisations/DE-14-22#! DE-14-22 14/22 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, (ehem. Zweigbibliothek Psychologie / Humanbiologie) +http://lobid.org/organisations/DE-14-01#! DE-14-01 14/01 Sächsische Landesbibliothek - Staats- und Universitätsbibliothek Dresden, Zweigbibliothek Rechtswissenschaft +http://lobid.org/organisations/DE-25-113#! DE-25-113 25/113 Freiburger Materialforschungszentrum, Bibliothek +http://lobid.org/organisations/DE-38-622#! DE-38-622 38/622 Institut für Katholische Theologie, Bibliothek +http://lobid.org/organisations/DE-122#! DE-122 122 Stadtbibliothek Ulm +http://lobid.org/organisations/DE-972#! DE-972 972 Hochschule Esslingen, Standort Göppingen, Bibliothek +http://lobid.org/organisations/DE-521#! DE-521 521 Europa-Universität Viadrina, Universitätsbibliothek +http://lobid.org/organisations/DE-Kon4#! DE-Kon4 Kon 4 HTWG Hochschule Konstanz Technik, Wirtschaft und Gestaltung, Bibliothek +http://lobid.org/organisations/DE-Ch1-S4#! DE-Ch1-S4 Ch 1/S4 Technische Universität Chemnitz, Campus-Bibliothek II B +http://lobid.org/organisations/DE-294-56#! DE-294-56 294/56 Ruhr-Universität Bochum, Institut für Deutschlandforschung, Bibliothek +http://lobid.org/organisations/DE-B664#! DE-B664 B 664 Bundesministerium für Verkehr und digitale Infrastruktur, Bibliothek +http://lobid.org/organisations/DE-27-36#! DE-27-36 27/36 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Pharmazie +http://lobid.org/organisations/DE-7-118#! DE-7-118 7/118 Institut für Landwirtschaftsrecht, Bibliothek +http://lobid.org/organisations/DE-7-200#! DE-7-200 7/200 Institut für Arbeitsrecht, Bibliothek +http://lobid.org/organisations/DE-7-052#! DE-7-052 7/052 Universität Göttingen, Seminar für Deutsche Philologie, Bibliothek +http://lobid.org/organisations/DE-7-051#! DE-7-051 7/051 Ostasiatisches Seminar, Bibliothek +http://lobid.org/organisations/DE-7-165#! DE-7-165 7/165 Ibero-Amerika Institut für Wirtschaftsforschung, Bibliothek +http://lobid.org/organisations/DE-7-160#! DE-7-160 7/160 Georg-August-Universität Göttingen, Bibliothek Waldweg +http://lobid.org/organisations/DE-25-91#! DE-25-91 25/91 Bibliothek der Technischen Fakultät +http://lobid.org/organisations/DE-27-135#! DE-27-135 27/135 Thüringer Universitäts- und Landesbibliothek, Zweigbibliothek Indogermanistik / Orientalistik +http://lobid.org/organisations/DE-4-340#! DE-4-340 4/340 Fachbereich Wirtschaftswissenschaften, Institut für Kooperation in Entwicklungsländern, Bibliothek +http://lobid.org/organisations/DE-790#! DE-790 790 Stadtbücherei Meinerzhagen +http://lobid.org/organisations/DE-1018#! DE-1018 1018 Universitätsbibliothek Witten / Herdecke +http://lobid.org/organisations/DE-542#! DE-542 542 Hochschule Merseburg, Bibliothek +http://lobid.org/organisations/DE-7-012#! DE-7-012 7/012 Zentrum Anatomie, Bibliothek +http://lobid.org/organisations/DE-7-009#! DE-7-009 7/009 Zentrum Pharmakologie und Toxikologie, Bibliothek +http://lobid.org/organisations/DE-7-702#! DE-7-702 7/702 Zentrum Hygiene und Humangenetik, Abteilung Immunologie, Bibliothek +http://lobid.org/organisations/DE-7-709#! DE-7-709 7/709 Zentrum Radiologie, Abteilung Strahlentherapie, Bibliothek +http://lobid.org/organisations/DE-7-710#! DE-7-710 7/710 Zentrum Radiologie, Abteilung Röntgendiagnostik, Bibliothek +http://lobid.org/organisations/DE-7-046#! DE-7-046 7/046 Zentrum Frauenheilkunde / Abteilung Gynäkologie und Geburtshilfe, Bibliothek +http://lobid.org/organisations/DE-7-010#! DE-7-010 7/010 Zentrum Augenheilkunde und Hals-Nasen-Ohrenheilkunde, Abteilung Hals-Nasen-Ohrenheilkunde, Bibliothek +http://lobid.org/organisations/DE-7-716#! DE-7-716 7/716 Zentrum Neurologische Medizin, Abteilung Klinische Neurophysiologie, Bibliothek +http://lobid.org/organisations/DE-7-718#! DE-7-718 7/718 Zentrum Neurologische Medizin, Abteilung Neuropathologie, Bibliothek +http://lobid.org/organisations/DE-7-725#! DE-7-725 7/725 Zentrum Psychologische Medizin, Abteilung Psychosomatik und Psychotherapie, Ärztlich-Psychologische Beratungsstelle für Studierende der Universität, Bibliothek +http://lobid.org/organisations/DE-7-049#! DE-7-049 7/049 Zentrum Zahn-, Mund- und Kieferheilkunde, Bibliothek +http://lobid.org/organisations/DE-7-737#! DE-7-737 7/737 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, Krankenpflegeschule, Bibliothek +http://lobid.org/organisations/DE-7-740#! DE-7-740 7/740 Zentrum der Lehranstalten und Schulen für Fachberufe des Gesundheitswesens, MTA-Schule (Labor), Bibliothek +http://lobid.org/organisations/DE-Kn41-99#! DE-Kn41-99 Kn 41/99 Deutsche Sporthochschule Köln, Institut für Europäische Sportentwicklung und Freizeitforschung, Bereich Europäische Sport- und Freizeitstudien, Bibliothek +http://lobid.org/organisations/DE-7-404#! DE-7-404 7/404 4. Physikalisches Institut, Halbleiterphysik, Institutsbibliothek +http://lobid.org/organisations/DE-7-407#! DE-7-407 7/407 Institut für Mikrobiologie und Genetik, Abteilung Molekulare Genetik und Präparative Molekularbiologie, Bibliothek +http://lobid.org/organisations/DE-7-166#! DE-7-166 7/166 Institut für Forstgenetik, Forstpflanzenzüchtung, Forstliche Biometrie und Informatik, Abteilung Forstliche Biometrie und Informatik, Bibliothek +http://lobid.org/organisations/DE-4-363#! DE-4-363 4/363 Universität Marburg, Bibliothek Philosophie +http://lobid.org/organisations/DE-4-406#! DE-4-406 4/406 Universität Marburg, Bibliothek des Hessischen Instituts für Landesgeschichte, Abt. Forschungsstelle für geschichtliche Landeskunde Mitteldeutschlands +http://lobid.org/organisations/DE-4-579#! DE-4-579 4/579 Universität Marburg, Bibliothek Kunst- und Kulturwissenschaften, Hessisches Musikarchiv, Bibliothek +http://lobid.org/organisations/DE-4-590#! DE-4-590 4/590 Institut für Physiologische Chemie, Bibliothek +http://lobid.org/organisations/DE-26-084#! DE-26-084 26/084 Universität Gießen, Fachbibliothek Geschichts- und Kulturwissenschaften / Bibliothek im Historischen Institut +http://lobid.org/organisations/DE-26-122#! DE-26-122 26/122 Universität Gießen, Fachbibliothek Mathematik und Informatik / Informatik +http://lobid.org/organisations/DE-26-236#! DE-26-236 26/236 Universität Gießen, Bibliothek Geschichte der Medizin +http://lobid.org/organisations/DE-26-322#! DE-26-322 26/322 Akademisches Auslandsamt, Deutsch als Fremdsprache, Bibliothek +http://lobid.org/organisations/DE-26-345#! DE-26-345 26/345 Universität Gießen, Zweigbibliothek Recht und Wirtschaft / VWL 4, Transformations- und Integrationsökonomik +http://lobid.org/organisations/DE-26-372#! DE-26-372 26/372 Universität Gießen, Zweigbibliothek im Philosophikum II / Ökologischer Landbau +http://lobid.org/organisations/DE-77-054#! DE-77-054 77/054 Universität Mainz, Bereichsbibliothek Universitätsmedizin, Zahnklinik +http://lobid.org/organisations/DE-18-114#! DE-18-114 18/114 Universität Hamburg, Musikwissenschaftliches Institut, Bibliothek +http://lobid.org/organisations/DE-18-174#! DE-18-174 18/174 Hans-Bredow-Institut für Medienforschung an der Universität Hamburg, Bibliothek +http://lobid.org/organisations/DE-18-261#! DE-18-261 18/261 Fakultät für Wirtschafts- und Sozialwissenschaften der Universität Hamburg, Fachbibliothek Wirtschaftswissenschaften +http://lobid.org/organisations/DE-18-290#! DE-18-290 18/290 Universität Hamburg , Fachbereichsbibliothek Sprache Literatur Medien, Teilbibliothek Exilliteratur +http://lobid.org/organisations/DE-18-26#! DE-18-26 18/26 Hochschule für Bildende Künste, Bibliothek +http://lobid.org/organisations/DE-77-071#! DE-77-071 77/071 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Allgemeine und Vergleichende Literaturwissenschaft +http://lobid.org/organisations/DE-77-077#! DE-77-077 77/077 Universität Mainz, Bereichsbibliothek Philosophicum, Standort Klassische Philologie +http://lobid.org/organisations/DE-77-079#! DE-77-079 77/079 Universität Mainz, Bereichsbibliothek Georg Forster-Gebäude / Kunstgeschichte +http://lobid.org/organisations/DE-F10#! DE-F10 F 10 Städel Museum, Bibliothek +http://lobid.org/organisations/DE-30-87#! DE-30-87 30/87 Universität Frankfurt, Institut für Empirische Sprachwissenschaft, Bibliothek +http://lobid.org/organisations/DE-30-204#! DE-30-204 30/204 Institut für Medizinische Soziologie, Bibliothek +http://lobid.org/organisations/DE-30-208#! DE-30-208 30/208 Institut für Sozialforschung +http://lobid.org/organisations/DE-Ds114#! DE-Ds114 Ds 114 Bibliothek der Hochschule Darmstadt, Zentralbibliothek +http://lobid.org/organisations/DE-Ds82#! DE-Ds82 Ds 82 Hessisches Landesmuseum Darmstadt, Bibliothek +http://lobid.org/organisations/DE-17-29#! DE-17-29 17/29 TU Darmstadt, Fachgebiet Hochspannungstechnik +http://lobid.org/organisations/DE-17-33#! DE-17-33 17/33 TU Darmstadt, Institut für Werkstoffkunde und Staatliche Materialprüfungsanstalt +http://lobid.org/organisations/DE-17-34#! DE-17-34 17/34 TU Darmstadt, Fachbereich Mathematik +http://lobid.org/organisations/DE-17-66#! DE-17-66 17/66 TU Darmstadt, Fachgebiet Gasturbinen, Luft- und Raumfahrtantriebe +http://lobid.org/organisations/DE-17-73#! DE-17-73 17/73 TU Darmstadt, Institut Sprach- und Literaturwissenschaft +http://lobid.org/organisations/DE-17-77#! DE-17-77 17/77 TU Darmstadt, Institut für Verkehr +http://lobid.org/organisations/DE-17-94#! DE-17-94 17/94 TU Darmstadt, Institut für Allgemeine Pädagogik und Berufsädagogik +http://lobid.org/organisations/DE-17-117#! DE-17-117 17/117 TU Darmstadt, Institut Theologie und Sozialethik +http://lobid.org/organisations/DE-17-119#! DE-17-119 17/119 TU Darmstadt, Hochschuldidaktische Arbeitsstelle +http://lobid.org/organisations/DE-38-007#! DE-38-007 38/007 Bibliothek GeStiK - Gender Studies in Köln +http://lobid.org/organisations/DE-38-438#! DE-38-438 38/438 Gemeinsame Fachbibliothek Archäologien, Institut für Ur- und Frühgeschichte, Forschungsstelle Afrika +http://lobid.org/organisations/DE-Sp3#! DE-Sp3 Sp 3 Deutsche Universität für Verwaltungswissenschaften Speyer, Universitätsbibliothek +http://lobid.org/organisations/DE-B243#! DE-B243 B 243 Stadtbibliothek Treptow-Köpenick, Mittelpunktbibliothek Köpenick +http://lobid.org/organisations/DE-858#! DE-858 858 Hochschule Coburg, Zentralbibliothek +http://lobid.org/organisations/DE-Ds114-1#! DE-Ds114-1 Ds 114/1 Bibliothek der Hochschule Darmstadt, Teilbibliothek Chemie und Biotechnologie +http://lobid.org/organisations/DE-294-60#! DE-294-60 294/60 Ruhr-Universität Bochum, Institut für Arbeitswissenschaft, Bibliothek +http://lobid.org/organisations/DE-38-304#! DE-38-304 38/304 Fachbibliothek Allgemeine Didaktik und Schulforschung (Schulpädagogik) +http://lobid.org/organisations/DE-38-308#! DE-38-308 38/308 Institut für Vergleichende Bildungsforschung und Sozialwissenschaften - Politikwissenschaft, Bildungspolitik und Politische Bildung, Bibliothek +http://lobid.org/organisations/DE-38-309#! DE-38-309 38/309 Bibliothek Sozialwissenschaften, Soziologie/Ökonomische Bildung +http://lobid.org/organisations/DE-38-315#! DE-38-315 38/315 Institut für Mathematikdidaktik, Bibliothek +http://lobid.org/organisations/DE-860#! DE-860 860 Hochschule Landshut, Hochschule für Angewandte Wissenschaften, Bibliothek +http://lobid.org/organisations/DE-Bo404#! DE-Bo404 Bo 404 Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation +http://lobid.org/organisations/DE-82-781#! DE-82-781 82/781 Pflegedirektion, Bibliothek +http://lobid.org/organisations/DE-Ben1#! DE-Ben1 Ben 1 Institut für Salesianische Spiritualität der Salesianer Don Boscos, Bibliothek +http://lobid.org/organisations/DE-947#! DE-947 947 Stadtbibliothek Buxtehude +http://lobid.org/organisations/DE-18-295#! DE-18-295 18/295 Universität Hamburg, Institut für Deutsche Gebärdensprache und Kommunikation Gehörloser, Bibliothek +http://lobid.org/organisations/DE-M481#! DE-M481 M 481 Hanns-Seidel-Stiftung e.V., Politisch-historische Fachbibliothek +http://lobid.org/organisations/DE-82-632#! DE-82-632 82/632 Lehrstuhl für Wirtschaftsdidaktik, Bibliothek +http://lobid.org/organisations/DE-82-783#! DE-82-783 82/783 Neuropsychologie, Bibliothek +http://lobid.org/organisations/DE-82-319#! DE-82-319 82/319 Lehrstuhl für Systemverfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-82-003#! DE-82-003 82/003 Gemeinschaftslabor für Elektronenmikroskopie, Bibliothek +http://lobid.org/organisations/DE-H227#! DE-H227 H 227 Institut für die Geschichte der deutschen Juden, Bibliothek +http://lobid.org/organisations/DE-Bue1#! DE-Bue1 Bü 1 Stadtgeschichtliches Institut, Bibliothek +http://lobid.org/organisations/DE-1046#! DE-1046 1046 Ostbayerische Technische Hochschule Amberg-Weiden / Hochschulbibliothek Amberg +http://lobid.org/organisations/DE-82-718#! DE-82-718 82/718 Medizinische Fakultät, Dekanat, Bibliothek +http://lobid.org/organisations/DE-82-420#! DE-82-420 82/420 Lehrstuhl für Applied Geophysics and Geothermal Energy (E.ON Energy Research Center), Bibliothek +http://lobid.org/organisations/DE-34-23#! DE-34-23 34/23 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-34-24#! DE-34-24 34/24 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-34-25#! DE-34-25 34/25 Universitätsbibliothek Kassel, Standort Holländischer Platz +http://lobid.org/organisations/DE-Stg264#! DE-Stg264 Stg 264 Evangelisches Medienhaus GmbH, Bibliothek +http://lobid.org/organisations/DE-955#! DE-955 955 Hochschule für Forstwirtschaft Rottenburg, Bibliothek +http://lobid.org/organisations/DE-25-168#! DE-25-168 25/168 Patientenbibliothek Freiburger Universitätsklinikum, Medizinische Klinik +http://lobid.org/organisations/DE-Hed1#! DE-Hed1 Hed 1 Stadtarchiv Heidenheim, Bibliothek +http://lobid.org/organisations/DE-294-62#! DE-294-62 294/62 Knappschafts-Krankenhaus Bochum-Langendreer - Universitätsklinik, Bibliothek +http://lobid.org/organisations/DE-26-189#! DE-26-189 26/189 Universität Gießen / Bibliothek Virologie (Bereich Veterinärmedizin) +http://lobid.org/organisations/DE-Kn41-46#! DE-Kn41-46 Kn 41/46 Deutsche Sporthochschule Köln, Institut für Natursport und Ökologie, Abteilung Ökologie, Bibliothek +http://lobid.org/organisations/DE-H357#! DE-H357 H 357 Hamburger Institut für Sozialforschung, Bibliothek +http://lobid.org/organisations/DE-27-161#! DE-27-161 27/161 Thüringer Universitäts- und Landesbibliothek, Medienwissenschaften +http://lobid.org/organisations/DE-93-218#! DE-93-218 93/218 Universität Stuttgart, Heizkraftwerk Pfaffenwald, Bibliothek +http://lobid.org/organisations/DE-25-55a#! DE-25-55a 25/55a Institut für Forstbotanik und Baumphysiologie, Professur für Baumphysiologie, Bibliothek +http://lobid.org/organisations/DE-38-325#! DE-38-325 38/325 Bibliothek für Systematische Theologie, Institut für Katholische Theologie, Abt. Klosterstrasse +http://lobid.org/organisations/DE-D266#! DE-D266 D 266 Herbert-Wehner-Bibliothek +http://lobid.org/organisations/DE-3-179#! DE-3-179 3/179 Universitäts- und Landesbibliothek Sachsen-Anhalt, Zweigbibliothek Europäische Aufklärung / Interdisziplinäres Zentrum für die Erforschung der Europäischen Aufklärung +http://lobid.org/organisations/DE-25-95#! DE-25-95 25/95 Tierhygienisches Institut, Bibliothek +http://lobid.org/organisations/DE-38-302#! DE-38-302 38/302 Fachbibliothek Heilpädagogik und Rehabilitation +http://lobid.org/organisations/DE-82-739b#! DE-82-739b 82/739b Konservierende Zahnheilkunde, Bibliothek +http://lobid.org/organisations/DE-112#! DE-112 112 Stadtbibliothek Eisenach +http://lobid.org/organisations/DE-148#! DE-148 148 Stadtarchiv und Ehemals Reichsstädtische Bibliothek Lindau am Bodensee +http://lobid.org/organisations/DE-151#! DE-151 151 Stadtbücherei Neumünster +http://lobid.org/organisations/DE-162#! DE-162 162 Stadtbibliothek Bad Windsheim +http://lobid.org/organisations/DE-173#! DE-173 173 Stadtbibliothek Flensburg +http://lobid.org/organisations/DE-232#! DE-232 232 Stadtbibliothek im Glashaus Herten +http://lobid.org/organisations/DE-248#! DE-248 248 Stadtbücherei Lünen +http://lobid.org/organisations/DE-264#! DE-264 264 Stadtbibliothek Offenbach +http://lobid.org/organisations/DE-296#! DE-296 296 Hegau-Bibliothek +http://lobid.org/organisations/DE-358#! DE-358 358 Stadtbücherei Bad Arolsen +http://lobid.org/organisations/DE-373#! DE-373 373 Stadtbücherei Meschede +http://lobid.org/organisations/DE-374#! DE-374 374 Stadtbibliothek Rheine +http://lobid.org/organisations/DE-383#! DE-383 383 Stadtbücherei Erbach +http://lobid.org/organisations/DE-387#! DE-387 387 Stadtbücherei Altena +http://lobid.org/organisations/DE-395#! DE-395 395 Stadtbücherei Espelkamp +http://lobid.org/organisations/DE-397#! DE-397 397 Stadtbücherei Dülmen +http://lobid.org/organisations/DE-423#! DE-423 423 Stadtbücherei Warendorf +http://lobid.org/organisations/DE-441#! DE-441 441 Stadtbibliothek Weinheim +http://lobid.org/organisations/DE-445#! DE-445 445 Stadtbücherei Gladbeck +http://lobid.org/organisations/DE-450#! DE-450 450 Landesarchiv Baden-Württemberg - Hohenlohe-Zentralarchiv Neuenstein, Bibliothek +http://lobid.org/organisations/DE-454#! DE-454 454 Stadtbücherei Soest +http://lobid.org/organisations/DE-490#! DE-490 490 Niedersächsisches Landesarchiv, Standort Oldenburg, Dienstbibliothek +http://lobid.org/organisations/DE-497#! DE-497 497 Stadtbücherei Geesthacht +http://lobid.org/organisations/DE-507#! DE-507 507 Bibliothek Nauen +http://lobid.org/organisations/DE-518#! DE-518 518 Stadtbücherei Weimar +http://lobid.org/organisations/DE-527#! DE-527 527 Hochschule Harz, Hauptbibliothek, Standort Wernigerode / Harz +http://lobid.org/organisations/DE-536#! DE-536 536 Medienzentrum Potsdam-Mittelmark Kloster Lehnin +http://lobid.org/organisations/DE-545#! DE-545 545 Stadtbibliothek Sebnitz +http://lobid.org/organisations/DE-546#! DE-546 546 Fachhochschule Erfurt, Hochschulbibliothek +http://lobid.org/organisations/DE-550#! DE-550 550 HHL Leipzig Graduate School of Management, Hochschulbibliothek +http://lobid.org/organisations/DE-560#! DE-560 560 Stadt- und Kreisbibliothek ""Heinrich Heine"" +http://lobid.org/organisations/DE-562#! DE-562 562 Forschungs- und Gedenkstätte Heinrich-Schütz-Haus, Bibliothek +http://lobid.org/organisations/DE-565#! DE-565 565 Stadt- und Kreisbibliothek 'Joseph Meyer' +http://lobid.org/organisations/DE-570#! DE-570 570 Stadtbibliothek Zeulenroda-Triebes +http://lobid.org/organisations/DE-702#! DE-702 702 Stadtbibliothek Heidenheim +http://lobid.org/organisations/DE-731#! DE-731 731 Stadtbibliothek Wilhelmshaven +http://lobid.org/organisations/DE-733#! DE-733 733 Stadtbücherei Höxter +http://lobid.org/organisations/DE-738#! DE-738 738 Stadtbücherei Steinfurt +http://lobid.org/organisations/DE-747-1#! DE-747-1 747/1 Pädagogische Hochschule Weingarten, Forschungsstelle für Schulgeschichte, Bibliothek +http://lobid.org/organisations/DE-755#! DE-755 755 Hochschule Emden/Leer, Hochschulbibliothek +http://lobid.org/organisations/DE-764#! DE-764 764 Remigius-Bücherei +http://lobid.org/organisations/DE-765#! DE-765 765 Stadtbibliothek Brilon +http://lobid.org/organisations/DE-772#! DE-772 772 Stadtbücherei Erftstadt +http://lobid.org/organisations/DE-775#! DE-775 775 Stadtbücherei Goch +http://lobid.org/organisations/DE-784#! DE-784 784 Erzbistum Köln - Referat Katholische öffentliche Büchereien +http://lobid.org/organisations/DE-789#! DE-789 789 Stadtbibliothek Meerbusch +http://lobid.org/organisations/DE-793#! DE-793 793 Bischöfliches Generalvikariat, Fachstelle Büchereien +http://lobid.org/organisations/DE-797#! DE-797 797 Stadtbücherei Rees +http://lobid.org/organisations/DE-799#! DE-799 799 Stadtbücherei Sankt Augustin +http://lobid.org/organisations/DE-802#! DE-802 802 Öffentliche Bücherei St. Otger +http://lobid.org/organisations/DE-807#! DE-807 807 Stadtbibliothek City Center +http://lobid.org/organisations/DE-811#! DE-811 811 Stadtbücherei Waldbröl +http://lobid.org/organisations/DE-812#! DE-812 812 Waltroper Bücherei in der Mediothek der Gesamtschule +http://lobid.org/organisations/DE-815#! DE-815 815 Stadtbücherei Wiehl +http://lobid.org/organisations/DE-817#! DE-817 817 Wülfrather Medien Welt +http://lobid.org/organisations/DE-821#! DE-821 821 Öffentliche Bücherei Sankt Martin +http://lobid.org/organisations/DE-826#! DE-826 826 Stadtbibliotheken der Landeshauptstadt Wiesbaden +http://lobid.org/organisations/DE-833#! DE-833 833 Stadtbibliothek Heilbronn +http://lobid.org/organisations/DE-847#! DE-847 847 Stadtbücherei Rothenburg +http://lobid.org/organisations/DE-848#! DE-848 848 Stadtbücherei Traunstein +http://lobid.org/organisations/DE-853#! DE-853 853 Stadtbibliothek Burghausen +http://lobid.org/organisations/DE-854#! DE-854 854 Stadtbibliothek Gerolzhofen +http://lobid.org/organisations/DE-868#! DE-868 868 Stadtbücherei Marktoberdorf +http://lobid.org/organisations/DE-875#! DE-875 875 Stadtbücherei Löhne +http://lobid.org/organisations/DE-891#! DE-891 891 Stadtbücherei Neuenrade +http://lobid.org/organisations/DE-892#! DE-892 892 Stadtbücherei Radevormwald +http://lobid.org/organisations/DE-893#! DE-893 893 Stadtbibliothek Lörrach +http://lobid.org/organisations/DE-896#! DE-896 896 Stadtbibliothek Stade +http://lobid.org/organisations/DE-911#! DE-911 911 Gemeindebibliothek Elsenfeld +http://lobid.org/organisations/DE-923#! DE-923 923 Stadtbücherei Neu-Ulm +http://lobid.org/organisations/DE-926#! DE-926 926 Stadtbücherei Frankenberg +http://lobid.org/organisations/DE-931#! DE-931 931 Öffentliche Bücherei Alpen +http://lobid.org/organisations/DE-937#! DE-937 937 Stadtbibliothek Unterschleißheim +http://lobid.org/organisations/DE-944#! DE-944 944 Hochschule Aalen, Bibliothek +http://lobid.org/organisations/DE-950#! DE-950 950 Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen, Bibliothek Nürtingen +http://lobid.org/organisations/DE-958#! DE-958 958 Hochschule der Medien, Bibliothek Standort Nobelstr. +http://lobid.org/organisations/DE-963#! DE-963 963 Hochschule 21, Bibliothek +http://lobid.org/organisations/DE-966#! DE-966 966 Stadtbibliothek Syke +http://lobid.org/organisations/DE-967#! DE-967 967 Stadtbibliothek Greven +http://lobid.org/organisations/DE-968#! DE-968 968 Gemeindebibliothek Wedemark, Ausleihstelle Bissendorf +http://lobid.org/organisations/DE-976#! DE-976 976 Stadtbibliothek Schotten +http://lobid.org/organisations/DE-978#! DE-978 978 Stadtbibliothek Bad Neuenahr-Ahrweiler +http://lobid.org/organisations/DE-985#! DE-985 985 Klinikum Wolfsburg, Medizinische Bibliothek +http://lobid.org/organisations/DE-1008#! DE-1008 1008 Stadtbibliothek Freising +http://lobid.org/organisations/DE-1015#! DE-1015 1015 Evangelische Hochschule Darmstadt, Bibliothek +http://lobid.org/organisations/DE-1020#! DE-1020 1020 Stadtbücherei Neukirchen-Vluyn +http://lobid.org/organisations/DE-1022#! DE-1022 1022 Bücherei im Bahnhof +http://lobid.org/organisations/DE-1026#! DE-1026 1026 Stadtbücherei Delmenhorst +http://lobid.org/organisations/DE-1037#! DE-1037 1037 BIB, Bibliothek Information Begegnung, im FoKuS Selm +http://lobid.org/organisations/DE-1045#! DE-1045 1045 Gemeindebücherei Ottersberg +http://lobid.org/organisations/DE-1055#! DE-1055 1055 Konrad-Duden-Stadtbibliothek +http://lobid.org/organisations/DE-1059#! DE-1059 1059 Stadtbibliothek Eschwege +http://lobid.org/organisations/DE-1067#! DE-1067 1067 Stadtbücherei Schwalmstadt +http://lobid.org/organisations/DE-1069#! DE-1069 1069 Stadtbibliothek Wetzlar +http://lobid.org/organisations/DE-1071#! DE-1071 1071 Landesbibliothekszentrum Rheinland-Pfalz / Landesbüchereistelle Neustadt +http://lobid.org/organisations/DE-1072#! DE-1072 1072 Stadtbibliothek Kreuztal +http://lobid.org/organisations/DE-1075#! DE-1075 1075 Stadtbücherei Hachenburg +http://lobid.org/organisations/DE-1077#! DE-1077 1077 Stadtbibliothek am Holzmarkt +http://lobid.org/organisations/DE-1086#! DE-1086 1086 Stadtbücherei Burscheid +http://lobid.org/organisations/DE-1087#! DE-1087 1087 Gemeindebücherei Grasberg +http://lobid.org/organisations/DE-1089#! DE-1089 1089 Stadtbücherei Rösrath +http://lobid.org/organisations/DE-1091#! DE-1091 1091 Nicolas Born Bibliothek Hitzacker +http://lobid.org/organisations/DE-1097#! DE-1097 1097 Stadtbibliothek im Torhaus +http://lobid.org/organisations/DE-1106#! DE-1106 1106 Bücherei Elbmarsch +http://lobid.org/organisations/DE-1107#! DE-1107 1107 Stadtbücherei Dietzenbach +http://lobid.org/organisations/DE-Al3#! DE-Al3 Al 3 Klinikum Altenburger Land GmbH, Medizinische Fachbibliothek +http://lobid.org/organisations/DE-Aug3#! DE-Aug3 Aug 3 Kunstsammlungen und Museen Augsburg, Bibliothek +http://lobid.org/organisations/DE-B161a#! DE-B161a B 161a Astrobibliothek, Max-Planck-Institut für Astrophysik; Institute für Astrophysik und für extraterrestrische Physik +http://lobid.org/organisations/DE-B314#! DE-B314 B 314 DECHEMA Gesellschaft für Chemische Technik und Biotechnologie e.V., Bibliothek +http://lobid.org/organisations/DE-B404#! DE-B404 B 404 Fraunhofer-Institut für Nachrichtentechnik, Heinrich-Hertz-Institut, Bibliothek +http://lobid.org/organisations/DE-B554#! DE-B554 B 554 DIW Berlin, Bibliothek +http://lobid.org/organisations/DE-B1518#! DE-B1518 B 1518 Archiv der Max-Planck-Gesellschaft, Bibliothek +http://lobid.org/organisations/DE-B1528#! DE-B1528 B 1528 Deutsche Kinemathek - Museum für Film und Fernsehen, Bibliothek +http://lobid.org/organisations/DE-B1559#! DE-B1559 B 1559 Wilhelm-Foerster-Sternwarte mit Zeiss-Planetarium, Bibliothek +http://lobid.org/organisations/DE-B2226#! DE-B2226 B 2226 Max-Planck-Institut für Wissenschaftsgeschichte, Bibliothek +http://lobid.org/organisations/DE-Bb3#! DE-Bb3 Bb 3 Karmelitenbibliothek +http://lobid.org/organisations/DE-Bg1#! DE-Bg1 Bg 1 Gymnasium Arnoldinum Steinfurt, Historische Bibliothek +http://lobid.org/organisations/DE-Bo104#! DE-Bo104 Bo 104 Bundesministerium für Wirtschaft und Klimaschutz, Medien- und Informationszentrum +http://lobid.org/organisations/DE-Bo109#! DE-Bo109 Bo 109 Bundesministerium des Innern, Bibliothek +http://lobid.org/organisations/DE-Bo130#! DE-Bo130 Bo 130 Bundesverband der Deutschen Ziegelindustrie e.V., Bibliothek +http://lobid.org/organisations/DE-Bo152#! DE-Bo152 Bo 152 Bundesministerium für Ernährung und Landwirtschaft, Bibliothek +http://lobid.org/organisations/DE-Bre11#! DE-Bre11 Bre 11 Max-Planck-Institut für Marine Mikrobiologie, Bibliothek +http://lobid.org/organisations/DE-Brg1#! DE-Brg1 Brg 1 Stadtbibliothek ""Brigitte Reimann""; Burg +http://lobid.org/organisations/DE-Cla1#! DE-Cla1 Cla 1 Pfarrgemeinde St. Laurentius, Bibliothek +http://lobid.org/organisations/DE-Co22#! DE-Co22 Co 22 Mediathek Herzberg +http://lobid.org/organisations/DE-D161#! DE-D161 D 161 Berufsakademie Sachsen, Staatliche Studienakademie Dresden, Bibliothek +http://lobid.org/organisations/DE-D182#! DE-D182 D 182 IMA Materialforschung und Anwendungstechnik GmbH, Technisch-Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-D264#! DE-D264 D 264 Hannah-Arendt-Institut für Totalitarismusforschung e.V., Bibliothek +http://lobid.org/organisations/DE-Db6#! DE-Db6 Db 6 Wilhelm Lehmbruck Museum Duisburg, Bibliothek +http://lobid.org/organisations/DE-Dip2#! DE-Dip2 Dip 2 Stadtbibliothek Dippoldiswalde +http://lobid.org/organisations/DE-Drue1#! DE-Drue1 Drü 1 Medienzentrum der EKM - Bibliothek Kloster Drübeck +http://lobid.org/organisations/DE-Ds106#! DE-Ds106 Ds 106 Fraunhofer-Institut für Betriebsfestigkeit und Systemzuverlässigkeit LBF, Bibliothek +http://lobid.org/organisations/DE-Ds108#! DE-Ds108 Ds 108 Rat für Formgebung - German Design Council, Bibliothek +http://lobid.org/organisations/DE-Ds109#! DE-Ds109 Ds 109 Bundesverband der Gipsindustrie e.V., Bibliothek +http://lobid.org/organisations/DE-Due66#! DE-Due66 Dü 66 Industrie- und Handelskammer, Bibliothek +http://lobid.org/organisations/DE-E2#! DE-E2 E 2 Evonik Industries AG, Wissenschaftliche Bibliothek +http://lobid.org/organisations/DE-E12#! DE-E12 E 12 TÜV NORD Service GmbH, Bibliothek +http://lobid.org/organisations/DE-83#! DE-83 83 TU Berlin, Universitätsbibliothek +http://lobid.org/organisations/DE-83-1003#! DE-83-1003 83/1003 TU Berlin, Universitätsbibliothek, Bereichsbibliothek Architektur und Kunstwissenschaft +http://lobid.org/organisations/DE-83-1039#! DE-83-1039 83/1039 TU Berlin, Institut für Bauingenieurwesen, Fachgebiet Bauphysik und Baukonstruktionen, Bibliothek +http://lobid.org/organisations/DE-83-1052#! DE-83-1052 83/1052 TU Berlin, Institut für Energie- und Automatisierungstechnik, Fachgebiet Elektrische Maschinen/Erneuerbare Energien und Antriebstechnik, Bibliothek +http://lobid.org/organisations/DE-83-1057#! DE-83-1057 83/1057 TU Berlin, Fachgebiet Konstruktives Entwerfen und Klimagerechtes Bauen, Bibliothek +http://lobid.org/organisations/DE-83-1060#! DE-83-1060 83/1060 TU Berlin, Institut für Bauingenieurwesen der TU Berlin, Fachgebiet Entwerfen und Konstruieren - Stahlbau, Bibliothek +http://lobid.org/organisations/DE-83-1107#! DE-83-1107 83/1107 TU Berlin, Institut für Technische Akustik, Bibliothek +http://lobid.org/organisations/DE-83-1108#! DE-83-1108 83/1108 TU Berlin, Institut für Architektur, Fachgebiet Bildende Kunst, Plastisches Gestalten / Intermediäre künstlerische Praxis, Bibliothek +http://lobid.org/organisations/DE-83-1115#! DE-83-1115 83/1115 TU Berlin, Institut für Prozess- und Verfahrenstechnik, Fachgebiet Mechanische Verfahrenstechnik und Aufbereitung, Bibliothek +http://lobid.org/organisations/DE-83-1179#! DE-83-1179 83/1179 TU Berlin, Institut für Konstruktion, Mikro- und Medizintechnik, Fachgebiet Elektromechanische Konstruktionen, Bibliothek +http://lobid.org/organisations/DE-83-1191#! DE-83-1191 83/1191 TU Berlin, Institut für Entwerfen, Baukonstruktion und Städtebau, Fachgebiet Baukonstruktion und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-83-1232#! DE-83-1232 83/1232 TU Berlin, Institut für Werkstoffwissenschaften und Technologien, Fachgebiete Polymerphysik und Polymertechnik, Bibliothek +http://lobid.org/organisations/DE-83-1236#! DE-83-1236 83/1236 TU Berlin, Institut für Theoretische Physik, Bibliothek +http://lobid.org/organisations/DE-188-820#! DE-188-820 188/820 Freie Universität Berlin, Fachbereich Wirtschaftswissenschaft, Wirtschaftswissenschaftliche Bibliothek +http://lobid.org/organisations/DE-B11r#! DE-B11r B 11r Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Neue Nationalgalerie, Bibliothek +http://lobid.org/organisations/DE-B702#! DE-B702 B 702 Stadtbibliothek Steglitz-Zehlendorf, Ingeborg-Drewitz-Bibliothek, Bezirkszentralbibliothek +http://lobid.org/organisations/DE-B703#! DE-B703 B 703 Mittelpunktbibliothek Adalbertstraße +http://lobid.org/organisations/DE-B704#! DE-B704 B 704 Stadtbibliothek Tempelhof-Schöneberg, Mittelpunktbibliothek Schöneberg ""Theodor-Heuss-Bibliothek"" +http://lobid.org/organisations/DE-B707#! DE-B707 B 707 Stadtbibliothek Berlin-Mitte, Bruno-Lösche-Bibliothek +http://lobid.org/organisations/DE-B712#! DE-B712 B 712 Stadtbibliothek Steglitz-Zehlendorf, Gottfried-Benn-Bibliothek, Mittelpunktbibliothek +http://lobid.org/organisations/DE-188-24#! DE-188-24 188/24 Freie Universität Berlin, Bibliothek am Botanischen Garten und Botanischen Museum +http://lobid.org/organisations/DE-B113#! DE-B113 B 113 Fritz-Haber-Institut der Max-Planck-Gesellschaft, Bibliothek +http://lobid.org/organisations/DE-B1514#! DE-B1514 B 1514 Fachbibliothek Umwelt des Umweltbundesamtes, Standort Berlin +http://lobid.org/organisations/DE-11-133#! DE-11-133 11/133 Humboldt-Universität zu Berlin, Universitätsbibliothek, Zweigbibliothek Theologie +http://lobid.org/organisations/DE-B11d#! DE-B11d B 11d Staatliche Museen zu Berlin, Preußischer Kulturbesitz, Kunstbibliothek, Archäologische Bibliothek +http://lobid.org/organisations/DE-18-12#! DE-18-12 18/12 Universität Hamburg, Institut für Romanistik, Französisch-Italienische Abteilung, Bibliothek +http://lobid.org/organisations/DE-18-24#! DE-18-24 18/24 Universität Hamburg, Bibliothek des Instituts für Geologie +http://lobid.org/organisations/DE-18-59#! DE-18-59 18/59 Universität Hamburg, Institut für Slavistik, Bibliothek +http://lobid.org/organisations/DE-H140#! DE-H140 H 140 Thünen-Institut, Zentrum für Informationsmanagement, Bibliothek Fischerei +http://lobid.org/organisations/DE-376#! DE-376 376 Stadtbücherei Barmstedt +http://lobid.org/organisations/DE-46#! DE-46 46 Staats- und Universitätsbibliothek Bremen +http://lobid.org/organisations/DE-715#! DE-715 715 Bibliotheks-und Informationssystem der Carl von Ossietzky Universität Oldenburg (BIS) +http://lobid.org/organisations/DE-45#! DE-45 45 Landesbibliothek Oldenburg +http://lobid.org/organisations/DE-89#! DE-89 89 Technische Informationsbibliothek (TIB) / Leibniz-Informationszentrum Technik und Naturwissenschaften und Universitätsbibliothek +http://lobid.org/organisations/DE-23#! DE-23 23 Herzog August Bibliothek Wolfenbüttel +http://lobid.org/organisations/DE-Bs72#! DE-Bs72 Bs 72 Bibliothek des Oberlandesgerichts Braunschweig +http://lobid.org/organisations/DE-Bs77#! DE-Bs77 Bs 77 Evangelisch-Lutherischen Landeskirche in Braunschweig, Theologisches Zentrum, Bibliothek +http://lobid.org/organisations/DE-7-003#! DE-7-003 7/003 Universität Göttingen, Mathematisches Institut, Bibliothek +http://lobid.org/organisations/DE-7-007#! DE-7-007 7/007 Zentrum Dermatologie und Venerologie, Bibliothek +http://lobid.org/organisations/DE-7-141#! DE-7-141 7/141 Seminar für Indologie und Tibetologie, Bibliothek +http://lobid.org/organisations/DE-7-0001#! DE-7-0001 7/0001 Niedersächsische Staats- und Universitätsbibliothek, Bereichsbibliothek Forstwissenschaften und Waldökologie +http://lobid.org/organisations/DE-285#! DE-285 285 Stadtbibliothek Göttingen +http://lobid.org/organisations/DE-4#! DE-4 4 Universität Marburg, Universitätsbibliothek +http://lobid.org/organisations/DE-4-141#! DE-4-141 4/141 Universität Marburg, Bibliothek Pharmazie, Institut für Pharmazeutische Chemie +http://lobid.org/organisations/DE-4-170#! DE-4-170 4/170 Fachbereichsbibliothek Geographie +http://lobid.org/organisations/DE-4-182#! DE-4-182 4/182 Bibliothek des Instituts für Klinische Zytobiologie und Zytopathologie +http://lobid.org/organisations/DE-4-192#! DE-4-192 4/192 Fachgebiet Geschichte der Medizin, Bibliothek +http://lobid.org/organisations/DE-4-206#! DE-4-206 4/206 Universität Marburg, Klinik für Kinder- und Jugendpsychiatrie und -psychotherapie, Bibliothek +http://lobid.org/organisations/DE-4-301#! DE-4-301 4/301 Universität Marburg, Bibliothek Rechtswissenschaften, Juristisches Seminar +http://lobid.org/organisations/DE-4-302#! DE-4-302 4/302 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Rechtsgeschichte, Germanistische Abteilung +http://lobid.org/organisations/DE-4-305#! DE-4-305 4/305 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Handels-, Wirtschafts- und Arbeitsrecht, Abt. Handel- und Wirtschaftsrecht +http://lobid.org/organisations/DE-4-309#! DE-4-309 4/309 Universität Marburg, Bibliothek Rechtswissenschaften, Institut für Rechtsvergleichung, Allgemeine Abteilung +http://lobid.org/organisations/DE-4-364#! DE-4-364 4/364 Universität Marburg, Bibliothek Fachgebiets Europäische Ethnologie / Kulturwissenschaft +http://lobid.org/organisations/DE-4-370#! DE-4-370 4/370 Universität Marburg, Bibliothek Psychologie +http://lobid.org/organisations/DE-4-382#! DE-4-382 4/382 Universität Marburg, Bibliothek Kunst und Kulturwissenschaften, Christliche Archäologie +http://lobid.org/organisations/DE-4-412#! DE-4-412 4/412 Universität Marburg, Bibliothek des Fachgebiets Klassische Archäologie +http://lobid.org/organisations/DE-4-421#! DE-4-421 4/421 Bibliothek Germanistik und Medienwissenschaft +http://lobid.org/organisations/DE-4-441#! DE-4-441 4/441 Universität Marburg, Bibliothek Fremdsprachliche Philologien, Anglistik und Amerikanistik +http://lobid.org/organisations/DE-4-454#! DE-4-454 4/454 Universität Marburg, Bibliothek Fremdsprachliche Philologien, Indologie +http://lobid.org/organisations/DE-34-20#! DE-34-20 34/20 Universitätsbibliothek Kassel, Campusbibliothek Holländischer Platz +http://lobid.org/organisations/DE-396#! DE-396 396 Stadtbücherei im Bürgerhaus +http://lobid.org/organisations/DE-262#! DE-262 262 Stadtbibliothek Oberhausen, Zentralbibliothek +http://lobid.org/organisations/DE-221#! DE-221 221 Stadtbibliothek Bocholt +http://lobid.org/organisations/DE-6-015#! DE-6-015 6/015 Universität Münster, Philosophisches Seminar, Bibliothek +http://lobid.org/organisations/DE-6-193#! DE-6-193 6/193 Universität Münster, Institut für Ethnologie, Bibliothek +http://lobid.org/organisations/DE-Mue59#! DE-Mue59 Mü 59 Bezirksregierung, Bibliothek +http://lobid.org/organisations/DE-Mue78#! DE-Mue78 Mü 78 Bibliothek der Kapuziner +http://lobid.org/organisations/DE-Mue129#! DE-Mue129 Mü 129 Landwirtschaftskammer Nordrhein-Westfalen, Bibliothek +http://lobid.org/organisations/DE-Mue140#! DE-Mue140 Mü 140 LWL-Archäologie für Westfalen, Zentrale Dienste, Bibliothek +http://lobid.org/organisations/DE-294#! DE-294 294 Ruhr-Universität Bochum, Universitätsbibliothek +http://lobid.org/organisations/DE-294-8#! DE-294-8 294/8 Ruhr-Universität Bochum, Fakultät für Chemie und Biochemie, Bibliothek +http://lobid.org/organisations/DE-294-15#! DE-294-15 294/15 Ruhr-Universität Bochum, Fakultät für Ostasienwissenschaften, Bibliothek +http://lobid.org/organisations/DE-294-18#! DE-294-18 294/18 Ruhr-Universität Bochum, Fakultät für Wirtschaftswissenschaft, Bibliothek +http://lobid.org/organisations/DE-294-21#! DE-294-21 294/21 Ruhr-Universität Bochum, Evangelisch-theologisches Seminar, Bibliothek +http://lobid.org/organisations/DE-294-23#! DE-294-23 294/23 Ruhr-Universität Bochum, Fakultät für Philologie, Germanistisches Institut, Bibliothek +http://lobid.org/organisations/DE-294-27#! DE-294-27 294/27 Ruhr-Universität Bochum, Institut für Erziehungswissenschaft, Bibliothek +http://lobid.org/organisations/DE-294-30#! DE-294-30 294/30 Ruhr-Universität Bochum, Kunstgeschichtliches Institut, Bibliothek +http://lobid.org/organisations/DE-294-37#! DE-294-37 294/37 Ruhr-Universität Bochum, Fakultät für Philologie, Sprachwissenschaftliches Institut, Bibliothek +http://lobid.org/organisations/DE-294-46#! DE-294-46 294/46 Ruhr-Universität Bochum, Fakultät für Maschinenbau, Bibliothek +http://lobid.org/organisations/DE-294-52#! DE-294-52 294/52 Ruhr-Universität Bochum, Institut für Mechanik, Bibliothek +http://lobid.org/organisations/DE-211#! DE-211 211 Erzbischöfliche Akademische Bibliothek Paderborn +http://lobid.org/organisations/DE-Bi12#! DE-Bi12 Bi 12 Kunsthalle Bielefeld, Bibliothek +http://lobid.org/organisations/DE-38-006#! DE-38-006 38/006 Bibliothek für Informatik und Wirtschaftsinformatik und Bibliothek des Regionalen Rechenzentrums (RRZK) +http://lobid.org/organisations/DE-38-106#! DE-38-106 38/106 Betriebswirtschaftliche Bibliothek der Universität zu Köln +http://lobid.org/organisations/DE-38-205#! DE-38-205 38/205 Institut für Strafrecht und Strafprozessrecht, Bibliothek +http://lobid.org/organisations/DE-38-209#! DE-38-209 38/209 Institut für Kirchenrecht und rheinische Kirchenrechtsgeschichte, Bibliothek +http://lobid.org/organisations/DE-38-212#! DE-38-212 38/212 Institut für Luft- und Weltraumrecht und Cyberrecht, Lehrstuhl für Völkerrecht, Europarecht, Europäisches und Internationales Wirtschaftsrecht, Gemeinsame Bibliothek +http://lobid.org/organisations/DE-38-222#! DE-38-222 38/222 Institut für Medienrecht und Kommunikationsrecht, Bibliothek +http://lobid.org/organisations/DE-38-223#! DE-38-223 38/223 Universität Köln, Institut für Kriminologie, Bibliothek +http://lobid.org/organisations/DE-38-225#! DE-38-225 38/225 Institut für Staatsrecht, Bibliothek +http://lobid.org/organisations/DE-38-408#! DE-38-408 38/408 Institut für Südasien- und Südostasien-Studien (SASOA), Bibliothek +http://lobid.org/organisations/DE-38-414#! DE-38-414 38/414 Orientalisches Seminar, Seminarbibliothek mit Malaiologischem Apparat, Schiabibliothek und Max Freiherr von Oppenheim Stiftung +http://lobid.org/organisations/DE-38-425#! DE-38-425 38/425 Historisches Institut, Abteilung für Osteuropäische Geschichte, Bibliothek +http://lobid.org/organisations/DE-38-429#! DE-38-429 38/429 Gemeinsame Fachbibliothek Medienkultur und Theater, Theaterwissenschaftliche Sammlung +http://lobid.org/organisations/DE-38-448#! DE-38-448 38/448 Gemeinsame Fachbibliothek Medienkultur und Theater, Institutsbibliothek Medienkultur und Theater +http://lobid.org/organisations/DE-38-507#! DE-38-507 38/507 Gemeinsame Fachbibliothek Chemie, Bibliothek der Universitäts- und Stadtbibliothek und der Institute für Anorganische, Organische und Physikalische Chemie sowie Biochemie mit Abt. Nuklearchemie +http://lobid.org/organisations/DE-Kn41#! DE-Kn41 Kn 41 Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln +http://lobid.org/organisations/DE-Kn41-17#! DE-Kn41-17 Kn 41/17 Deutsche Sporthochschule Köln, Institut für Pädagogik und Philosophie, Abteilung 2: Philosophie / Sportphilosophie, Bibliothek +http://lobid.org/organisations/DE-Kn41-15#! DE-Kn41-15 Kn 41/15 Deutsche Sporthochschule Köln, Institut für Tanz und Bewegungskultur +http://lobid.org/organisations/DE-238#! DE-238 238 Stadtbibliothek Leverkusen +http://lobid.org/organisations/DE-Kn125#! DE-Kn125 Kn 125 Germania Judaica, Kölner Bibliothek zur Geschichte des deutschen Judentums e.V. +http://lobid.org/organisations/DE-82-102#! DE-82-102 82/102 Lehrstuhl für Statistik und Institut für Statistik u. Wirtschaftsmathematik, Bibliothek +http://lobid.org/organisations/DE-82-108#! DE-82-108 82/108 Institut für Technische Verbrennung, Bibliothek +http://lobid.org/organisations/DE-82-119#! DE-82-119 82/119 Fachbibliothek Chemie +http://lobid.org/organisations/DE-82-127#! DE-82-127 82/127 Lehrstuhl für Biotechnologie, Bibliothek +http://lobid.org/organisations/DE-82-222#! DE-82-222 82/222 Institut für Wasserbau und Wasserwirtschaft, Bibliothek +http://lobid.org/organisations/DE-82-314#! DE-82-314 82/314 Lehrstuhl und Institut für Schweißtechnik und Fügetechnik, Bibliothek +http://lobid.org/organisations/DE-82-317#! DE-82-317 82/317 Lehrstuhl für Chemische Verfahrenstechnik und Institut für Verfahrenstechnik, Bibliothek +http://lobid.org/organisations/DE-82-412#! DE-82-412 82/412 Lehrstuhl für Keramik und feuerfeste Werkstoffe und Institut für Gesteinshüttenkunde, Bibliothek +http://lobid.org/organisations/DE-82-413#! DE-82-413 82/413 Lehrstuhl für Metallurgische Prozesstechnik und Metallrecycling und Institut für Metallhüttenkunde und Elektrometallurgie, Bibliothek +http://lobid.org/organisations/DE-82-419#! DE-82-419 82/419 Lehrstuhl für Geologie, Geochemie und Lagerstätten des Erdöls und der Kohle, Bibliothek +http://lobid.org/organisations/DE-82-505#! DE-82-505 82/505 Lehrstuhl für Elektromagnetische Energiewandlung und Institut für Elektrische Maschinen, Bibliothek +http://lobid.org/organisations/DE-82-508#! DE-82-508 82/508 Lehrstuhl und Institut für Nachrichtentechnik, Bibliothek +http://lobid.org/organisations/DE-82-601#! DE-82-601 82/601 Lehrstuhl für Theoretische Philosophie und Philosophisches Institut, Bibliothek +http://lobid.org/organisations/DE-82-618#! DE-82-618 82/618 Theologie-Bibliothek +http://lobid.org/organisations/DE-82-702#! DE-82-702 82/702 Physiologie, Bibliothek +http://lobid.org/organisations/DE-82-710#! DE-82-710 82/710 Medizinische Informatik, Bibliothek +http://lobid.org/organisations/DE-82-714#! DE-82-714 82/714 Kinderkardiologie, Bibliothek +http://lobid.org/organisations/DE-82-727#! DE-82-727 82/727 Dermatologie, Bibliothek +http://lobid.org/organisations/DE-82-728#! DE-82-728 82/728 Chirurgie, Bibliothek +http://lobid.org/organisations/DE-82-730#! DE-82-730 82/730 Orthopädische Klinik, Bibliothek +http://lobid.org/organisations/DE-82-740#! DE-82-740 82/740 Klinik für Anästhesiologie, Bibliothek +http://lobid.org/organisations/DE-82-741#! DE-82-741 82/741 Lehrstuhl für Biomedizinische Technik, Helmholtz-Institut der TH, Bibliothek +http://lobid.org/organisations/DE-82-743#! DE-82-743 82/743 Klinik für Thorax-, Herz-, Gefäßchirurgie, Bibliothek +http://lobid.org/organisations/DE-82-746#! DE-82-746 82/746 Institut für Transfusionsmedizin, Bibliothek +http://lobid.org/organisations/DE-82-758#! DE-82-758 82/758 Nuklearmedizin, Bibliothek +http://lobid.org/organisations/DE-82-759#! DE-82-759 82/759 Personalrat Universitätsklinikum Aachen, Bibliothek +http://lobid.org/organisations/DE-82-761#! DE-82-761 82/761 Plastische Chirurgie, Hand- und Verbrennungschirurgie, Bibliothek +http://lobid.org/organisations/DE-5-32#! DE-5-32 5/32 Universität Bonn, Zentrum für Infektiologie und Infektionsschutz, Institut für Hygiene und Öffentliche Gesundheit, Bibliothek +http://lobid.org/organisations/DE-5-41#! DE-5-41 5/41 Universität Bonn, Institute for Medical Humanities, Bibliothek +http://lobid.org/organisations/DE-5-58#! DE-5-58 5/58 Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft +http://lobid.org/organisations/DE-5-95#! DE-5-95 5/95 Universität Bonn, Institut für deutsche und rheinische Rechtsgeschichte, Bibliothek +http://lobid.org/organisations/DE-5-97#! DE-5-97 5/97 Universität Bonn, Institut für Archäologie und Kulturanthropologie / Abt. Altamerikanistik, Bibliothek +http://lobid.org/organisations/DE-5-113#! DE-5-113 5/113 Universität Bonn, Institut für Geowissenschaften und Meteorologie, Bereich Meteorologie, Bibliothek +http://lobid.org/organisations/DE-5-121#! DE-5-121 5/121 Universität Bonn, Forschungsinstitut für Diskrete Mathematik, Institut für Ökonometrie und Operations Research, Abteilung Operations Research, Bibliothek +http://lobid.org/organisations/DE-5-183#! DE-5-183 5/183 Universität Bonn, Institut für Öffentliches Recht, Bibliothek +http://lobid.org/organisations/DE-Rn1#! DE-Rn1 Rn 1 Bundesinstitut für Bau-, Stadt- und Raumforschung (BBSR) im Bundesamt für Bauwesen und Raumordnung (BBR), Bibliothek +http://lobid.org/organisations/DE-Bo129#! DE-Bo129 Bo 129 Forschungsstelle für Jagdkunde und Wildschadenverhütung, Bibliothek +http://lobid.org/organisations/DE-Bo133#! DE-Bo133 Bo 133 Bibliothek der Friedrich-Ebert-Stiftung +http://lobid.org/organisations/DE-Bo146#! DE-Bo146 Bo 146 Max-Planck-Institut für Radioastronomie, Bibliothek +http://lobid.org/organisations/DE-Walb1#! DE-Walb1 Walb 1 Bibliothek St. Albert +http://lobid.org/organisations/DE-69#! DE-69 69 Stadtbibliothek Koblenz +http://lobid.org/organisations/DE-Tr1#! DE-Tr1 Tr 1 Rheinisches Landesmuseum Trier, Bibliothek +http://lobid.org/organisations/DE-Tr19#! DE-Tr19 Tr 19 Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union, Bibliothek +http://lobid.org/organisations/DE-708#! DE-708 708 Universitätsbibliothek der Fernuniversität +http://lobid.org/organisations/DE-101b#! DE-101b 101b Deutsche Nationalbibliothek Frankfurt am Main +http://lobid.org/organisations/DE-30-34#! DE-30-34 30/34 Universitätsbibliothek J. C. Senckenberg, Bibliothek Recht und Wirtschaft (BRuW) +http://lobid.org/organisations/DE-F67#! DE-F67 F 67 Max-Planck-Institut für Biophysik, Bibliothek +http://lobid.org/organisations/DE-17-10#! DE-17-10 17/10 TU Darmstadt, Fachbereich Physik +http://lobid.org/organisations/DE-17-11#! DE-17-11 17/11 TU Darmstadt, Fachbibliothek Zellstoff und Papier +http://lobid.org/organisations/DE-282#! DE-282 282 Statistisches Bundesamt, Bibliothek +http://lobid.org/organisations/DE-26-174#! DE-26-174 26/174 Universität Gießen / Bibliothek Veterinär-Anatomie, -Histologie und -Embryologie +http://lobid.org/organisations/DE-26-185#! DE-26-185 26/185 Universität Gießen, Bibliothek Pferdeklinik (Innere und Chirurgie) +http://lobid.org/organisations/DE-26-237#! DE-26-237 26/237 Universität Gießen, Bibliothek Hygiene und Umweltmedizin +http://lobid.org/organisations/DE-26-250#! DE-26-250 26/250 Universität Gießen, Bibliothek Dermatologie und Andrologie +http://lobid.org/organisations/DE-26-258#! DE-26-258 26/258 Universität Gießen, Bibliothek Augenheilkunde +http://lobid.org/organisations/DE-26-259#! DE-26-259 26/259 Universität Gießen, Bibliothek Psychiatrie und Neurologie +http://lobid.org/organisations/DE-77#! DE-77 77 Universität Mainz, Zentralbibliothek +http://lobid.org/organisations/DE-36#! DE-36 36 Wissenschaftliche Stadtbibliothek +http://lobid.org/organisations/DE-291#! DE-291 291 Saarländische Universitäts- und Landesbibliothek +http://lobid.org/organisations/DE-291-114#! DE-291-114 291/114 Universität des Saarlandes, Wirtschaftswissenschaftliche Seminarbibliothek, Betriebswirtschaftliche Abteilung +http://lobid.org/organisations/DE-291-309#! DE-291-309 291/309 Universität des Saarlandes, Fachrichtung Anglistik, Amerikanistik und Anglophone Kulturen, Bibliothek +http://lobid.org/organisations/DE-291-310#! DE-291-310 291/310 Universität, Fachrichtung Allgemeine und Vergleichende Literaturwissenschaft (Komparatistik), Bibliothek +http://lobid.org/organisations/DE-291-350#! DE-291-350 291/350 Institut für Landeskunde im Saarland, Bibliothek +http://lobid.org/organisations/DE-Sa16-1#! DE-Sa16-1 Sa 16/1 Hochschule für Technik und Wirtschaft des Saarlandes, Bibliothek / Bereich Waldhausweg +http://lobid.org/organisations/DE-Sa17#! DE-Sa17 Sa 17 Hochschule für Musik Saar, Bibliothek +http://lobid.org/organisations/DE-180#! DE-180 180 Universitätsbibliothek Mannheim +http://lobid.org/organisations/DE-16#! DE-16 16 Universitätsbibliothek Heidelberg +http://lobid.org/organisations/DE-16-13#! DE-16-13 16/13 Bibliothek der Juristischen Fakultät +http://lobid.org/organisations/DE-16-14#! DE-16-14 16/14 Institut für ausländisches und internationales Privat- und Wirtschaftsrecht der Universität, Bibliothek +http://lobid.org/organisations/DE-16-29#! DE-16-29 16/29 Germanistisches Seminar der Universität, Bibliothek +http://lobid.org/organisations/DE-16-32#! DE-16-32 16/32 Fakultätsbibliothek Theologie +http://lobid.org/organisations/DE-16-35#! DE-16-35 16/35 Geographisches Institut der Universität Heidelberg, Bibliothek +http://lobid.org/organisations/DE-16-52#! DE-16-52 16/52 Bereichsbibliothek Altertumswissenschaften, Abteilung Ur- und Frühgeschichte und Vorderasiatische Archäologie +http://lobid.org/organisations/DE-16-64#! DE-16-64 16/64 Slavisches Institut der Universität, Bibliothek +http://lobid.org/organisations/DE-16-65#! DE-16-65 16/65 Zentrum für Psychosoziale Medizin (ZPM) der Universität, Klinik für Allgemeine Innere Medizin und Psychosomatik, Bibliothek +http://lobid.org/organisations/DE-16-101#! DE-16-101 16/101 Seminar für Osteuropäische Geschichte der Universität, Bibliothek +http://lobid.org/organisations/DE-16-108#! DE-16-108 16/108 Bereichsbibliothek Physik und Astronomie (BPA) der Universität, Zentrale +http://lobid.org/organisations/DE-16-121#! DE-16-121 16/121 Universität Heidelberg, Physikalisches Institut, Bibliothek +http://lobid.org/organisations/DE-16-154#! DE-16-154 16/154 Zentrum für Astronomie Heidelberg (ZAH), Landessternwarte, Bibliothek +http://lobid.org/organisations/DE-He73#! DE-He73 He 73 Julius Kühn-Institut, Bundesforschungsinstitut für Kulturpflanzen, Institut für Pflanzenschutz in Obst- und Weinbau, Bibliothek +http://lobid.org/organisations/DE-He129#! DE-He129 He 129 Heidelberger Kunstverein e.V., Bibliothek +http://lobid.org/organisations/DE-24#! DE-24 24 Württembergische Landesbibliothek +http://lobid.org/organisations/DE-93#! DE-93 93 Universitätsbibliothek Stuttgart +http://lobid.org/organisations/DE-93-24#! DE-93-24 93/24 Universität Stuttgart, Institut für Entwerfen und Konstruieren, Bibliothek +http://lobid.org/organisations/DE-93-26#! DE-93-26 93/26 Universität Stuttgart, Institut für Leichtbau, Entwerfen und Konstruieren, Bibliothek Pfaffenwaldring 7 +http://lobid.org/organisations/DE-93-29#! DE-93-29 93/29 Universität Stuttgart, Institut für Anorganische Chemie, Bibliothek +http://lobid.org/organisations/DE-93-40#! DE-93-40 93/40 Universität Stuttgart, Institut für Wohnen und Entwerfen, Bibliothek +http://lobid.org/organisations/DE-93-49#! DE-93-49 93/49 Universität Stuttgart, Institut für Thermische Strömungsmaschinen und Maschinenlaboratorium, Bibliothek +http://lobid.org/organisations/DE-93-54#! DE-93-54 93/54 Universität Stuttgart, Institut für Elektrische und Optische Nachrichtentechnik, Bibliothek +http://lobid.org/organisations/DE-93-65#! DE-93-65 93/65 Universität Stuttgart, Institut für Strömungsmechanik und Hydraulische Strömungsmaschinen, Bibliothek +http://lobid.org/organisations/DE-93-68#! DE-93-68 93/68 Institut für Darstellen und Gestalten, Bibliothek +http://lobid.org/organisations/DE-93-94#! DE-93-94 93/94 Universität Stuttgart, Bibliothek der Institute für Linguistik und Literaturwissenschaft +http://lobid.org/organisations/DE-93-96#! DE-93-96 93/96 Universität Stuttgart, Institut für Thermodynamik der Luft- und Raumfahrt, Bibliothek +http://lobid.org/organisations/DE-93-108#! DE-93-108 93/108 Universität Stuttgart, Institut für Straßen- und Verkehrswesen, Bibliothek +http://lobid.org/organisations/DE-93-110#! DE-93-110 93/110 Universität Stuttgart, Institut für Geotechnik, Bibliothek +http://lobid.org/organisations/DE-93-114#! DE-93-114 93/114 Universität Stuttgart, Historisches Institut, Bibliothek +http://lobid.org/organisations/DE-93-124#! DE-93-124 93/124 Universität Stuttgart, Institut für Bauökonomie, Bibliothek +http://lobid.org/organisations/DE%5F4050#! DE%5F4050 Gemeindebücherei +http://lobid.org/organisations/DE-3063#! DE-3063 Lippmann+Rau-Musikarchiv Eisenach +http://lobid.org/organisations/DE-3065#! DE-3065 3065 Seminar für Ausbildung und Fortbildung der Lehrkräfte Freiburg (Berufliche Schulen), Bibliothek +http://lobid.org/organisations/DE-3074#! DE-3074 Stadtarchiv Vaihingen an der Enz +http://lobid.org/organisations/DE-3075#! DE-3075 3075 Stadtbibliothek Wasldshut-Tiengen, Standort Waldshut +http://lobid.org/organisations/DE-3077#! DE-3077 Klosterkammer Hannover +http://lobid.org/organisations/DE-3079#! DE-3079 Stadtarchiv Kalkar +http://lobid.org/organisations/DE-3080#! DE-3080 3080 Stadtbibliothek Frohburg +http://lobid.org/organisations/DE-3083#! DE-3083 3083 Schulbibliothek Berufliche Schulen Kirchheim/Teck +http://lobid.org/organisations/DE-3095#! DE-3095 Schulverbund Blaustein +http://lobid.org/organisations/DE-3096#! DE-3096 3096 Gemeindebücherei Forst +http://lobid.org/organisations/DE-3099#! DE-3099 3099 Stadtbibliothek Dahlen +http://lobid.org/organisations/DE-287#! DE-287 287 Zentrum Informationsarbeit Bundeswehr, Bibliothek +http://lobid.org/organisations/DE-59#! DE-59 59 Stadt Chemnitz, Kulturbetrieb, Stadtbibliothek +http://lobid.org/organisations/DE-B523#! DE-B523 B 523 Deutsches Archäologisches Institut, Eurasien-Abteilung, Bibliothek +http://lobid.org/organisations/DE-Rag1#! DE-Rag1 Rag 1 Stiftung Haus Oberschlesien, Fachinformationszentrum +http://lobid.org/organisations/DE-4007#! DE-4007 Archiv der behindertenpolitischen Selbsthilfe +http://lobid.org/organisations/DE-4008#! DE-4008 4008 Internationale Hochschule Liebenzell - Bibliothek +http://lobid.org/organisations/DE-4012#! DE-4012 4012 Kreisergänzungsbibliothek Torgau +http://lobid.org/organisations/DE-4014#! DE-4014 Stadtarchiv Herne +http://lobid.org/organisations/DE-4019#! DE-4019 4019 Bibliothek der Hospitalstiftung Sophia Hedwig +http://lobid.org/organisations/DE-4026#! DE-4026 4026 Gemeindebücherei Laaber +http://lobid.org/organisations/DE-4042#! DE-4042 Stadtarchiv Griesheim +http://lobid.org/organisations/DE-4050#! DE-4050 4050 Gemeindebücherei Lauben +http://lobid.org/organisations/DE-7-225#! DE-7-225 7/225 Feministische Sammlung ""Blaustrumpf"" +http://lobid.org/organisations/DE-7-413#! DE-7-413 7/413 Institut für Mikrobiologie und Genetik, Abteilung Bioinformatik, Bibliothek +http://lobid.org/organisations/DE-4052#! DE-4052 Universitätsarchiv der Technischen Universität Braunschweig +http://lobid.org/organisations/DE-4055#! DE-4055 Bibliothek Libken +http://lobid.org/organisations/DE-4060#! DE-4060 4060 Stiftung Bauhaus Dessau, Bauforschungsarchiv +http://lobid.org/organisations/DE-7-606#! DE-7-606 7/606 Department für Nutzpflanzenwissenschaften, Abteilung Agrarökologie, Bibliothek +http://lobid.org/organisations/DE-7-763#! DE-7-763 7/763 Klinik für Palliativmedizin, Bibliothek +http://lobid.org/organisations/DE-7-749#! DE-7-749 7/749 Zentrale Tierexperimentelle Einrichtung, Bibliothek +http://lobid.org/organisations/DE-7-751#! DE-7-751 7/751 UniversitätsKrebszentrum, Bibliothek +http://lobid.org/organisations/DE-4065#! DE-4065 Universitätsarchiv Vechta +http://lobid.org/organisations/DE-7-754#! DE-7-754 7/754 Institut für Genetische Epidemiologie, Bibliothek +http://lobid.org/organisations/DE-4077#! DE-4077 Hochschule für Bildende Künste - Städelschule, Archiv +http://lobid.org/organisations/DE-4082#! DE-4082 4082 LVR-Industriemuseum Oberhausen, Bibliothek +http://lobid.org/organisations/DE-4085#! DE-4085 4085 Institut M.-Dominique Chenu, Institutsbibliothek +http://lobid.org/organisations/DE-4084#! DE-4084 European Mathematical Society - EMS - Publishing House GmbH +http://lobid.org/organisations/DE-4088#! DE-4088 4088 Carl-Bosch-Schule Heidelberg +http://lobid.org/organisations/DE-4092#! DE-4092 4092 Restaurierungszentrum Düsseldorf, Bibliothek +http://lobid.org/organisations/DE-4105#! DE-4105 Ludwig-Uhland Realschule +http://lobid.org/organisations/DE-4106#! DE-4106 4106 Bezirk Oberbayern +http://lobid.org/organisations/DE-Ful2-2#! DE-Ful2-2 Ful2-2 Bibliothek des Bischöflichen Priesterseminars - Sammlung Kloster Frauenberg +http://lobid.org/organisations/DE-MUS-007630#! DE-MUS-007630 Staatliche Schlösser und Gärten Hessen +http://lobid.org/organisations/DE-4114#! DE-4114 Battl Victory Records +http://lobid.org/organisations/DE-4120#! DE-4120 Archiv Museum für Naturkunde Berlin, Leibniz-Institut für Evolutions- und Biodiversitätsforschung +http://lobid.org/organisations/DE-4125#! DE-4125 Schule für Feldjäger und Stabsdienst der Bundeswehr, Fachinformationsstelle +http://lobid.org/organisations/DE-MUS-160127#! DE-MUS-160127 Dentalmuseum +http://lobid.org/organisations/DE-MUS-036920#! DE-MUS-036920 U-Bootmuseum Hamburg +http://lobid.org/organisations/DE-MUS-037621#! DE-MUS-037621 Polizeimuseum München +http://lobid.org/organisations/DE-MUS-037829#! DE-MUS-037829 DialogMuseum +http://lobid.org/organisations/DE-MUS-038728#! DE-MUS-038728 GrenzErfahrungen. Alltag der deutschen Teilung. Tränenpalast +http://lobid.org/organisations/DE-MUS-038926#! DE-MUS-038926 Jüdisches Museum Schwabach +http://lobid.org/organisations/DE-MUS-039023#! DE-MUS-039023 Museum im Wasserschloss +http://lobid.org/organisations/DE-MUS-039221#! DE-MUS-039221 Altenkirchzimmer und Turmgalerie Bismarckhöhe +http://lobid.org/organisations/DE-MUS-039825#! DE-MUS-039825 Schloss Krobnitz +http://lobid.org/organisations/DE-MUS-040226#! DE-MUS-040226 Nationalpark-Tor Nideggen +http://lobid.org/organisations/DE-MUS-040528#! DE-MUS-040528 Stiftung Kloster und Kaiserpfalz Memleben +http://lobid.org/organisations/DE-MUS-041229#! DE-MUS-041229 Museum Schloss Plötzkau +http://lobid.org/organisations/DE-MUS-041729#! DE-MUS-041729 Industriemuseum Howaldtsche Metallgiesserei e.V. +http://lobid.org/organisations/DE-MUS-042128#! DE-MUS-042128 Geschichtspark Bärnau-Tachov +http://lobid.org/organisations/DE-MUS-043725#! DE-MUS-043725 Museum für Regionalgesch. der Gemeinde Scharbeutz und Umgebung +http://lobid.org/organisations/DE-MUS-044020#! DE-MUS-044020 Sparkassenstiftung Schleswig-Holstein +http://lobid.org/organisations/DE-MUS-044124#! DE-MUS-044124 Walter Stöhrer-Stiftung +http://lobid.org/organisations/DE-MUS-044322#! DE-MUS-044322 Forums für Künstlernachlässe Hamburg +http://lobid.org/organisations/DE-MUS-049223#! DE-MUS-049223 mondo mio! Kindermuseum e.V. +http://lobid.org/organisations/DE-MUS-049421#! DE-MUS-049421 MVG Museum +http://lobid.org/organisations/DE-MUS-049629#! DE-MUS-049629 Archiv Geiger +http://lobid.org/organisations/DE-MUS-050426#! DE-MUS-050426 Kasseler Bademuseum im Kurbad Jungborn +http://lobid.org/organisations/DE-MUS-050728#! DE-MUS-050728 Alpirsbacher Klosterbräu im Brauereimuseum +http://lobid.org/organisations/DE-MUS-051127#! DE-MUS-051127 Mecklenburgisches Eisenbahn- und Technikmuseum am Schweriner Hauptbahnhof +http://lobid.org/organisations/DE-MUS-051325#! DE-MUS-051325 Societät Rostock maritim e.V. +http://lobid.org/organisations/DE-MUS-051929#! DE-MUS-051929 Historisches Handwerkerhaus +http://lobid.org/organisations/DE-MUS-052813#! DE-MUS-052813 Kreisheimatmuseum +http://lobid.org/organisations/DE-MUS-053529#! DE-MUS-053529 Steinzeitdorf Randau +http://lobid.org/organisations/DE-MUS-054126#! DE-MUS-054126 form gestaltung in der ddr +http://lobid.org/organisations/DE-MUS-054220#! DE-MUS-054220 Weimarhaus +http://lobid.org/organisations/DE-MUS-054626#! DE-MUS-054626 LWL-Industriemuseum Witten Zeche Nachtigall +http://lobid.org/organisations/DE-MUS-055525#! DE-MUS-055525 Potsdam Museum - Forum für Kunst und Geschichte +http://lobid.org/organisations/DE-MUS-056028#! DE-MUS-056028 Museum der Gartenkultur +http://lobid.org/organisations/DE-MUS-056424#! DE-MUS-056424 Lippenstiftmuseum +http://lobid.org/organisations/DE-MUS-056622#! DE-MUS-056622 Ruppiner Tor +http://lobid.org/organisations/DE-MUS-057125#! DE-MUS-057125 Paul-Clemen-Museum +http://lobid.org/organisations/DE-MUS-057229#! DE-MUS-057229 Forschungsmuseum Schöningen +http://lobid.org/organisations/DE-MUS-058524#! DE-MUS-058524 Militärhistorisches Museum Wolkenstein +http://lobid.org/organisations/DE-MUS-064420#! DE-MUS-064420 Gießkannenmuseum +http://lobid.org/organisations/DE-MUS-065027#! DE-MUS-065027 Bullimuseum +http://lobid.org/organisations/DE-MUS-065121#! DE-MUS-065121 Moorwelten - Europäisches Fachzentrum Moor und Klima +http://lobid.org/organisations/DE-MUS-067127#! DE-MUS-067127 Denkmalpfad Zollverein +http://lobid.org/organisations/DE-MUS-067325#! DE-MUS-067325 Thüringer Apothekenmuseum im Haus Rosenthal +http://lobid.org/organisations/DE-MUS-067429#! DE-MUS-067429 Galerie im Rathaus +http://lobid.org/organisations/DE-MUS-068828#! DE-MUS-068828 Caspar Ritter von Zumbusch-Museum +http://lobid.org/organisations/DE-MUS-072322#! DE-MUS-072322 Historische Olympia-Bobbahn Riessersee +http://lobid.org/organisations/DE-MUS-072624#! DE-MUS-072624 Heimatmuseum im Reichenbach-Haus +http://lobid.org/organisations/DE-MUS-072728#! DE-MUS-072728 Heimathaus Walkmühle +http://lobid.org/organisations/DE-MUS-073127#! DE-MUS-073127 Dorfmuseum Wendschott +http://lobid.org/organisations/DE-MUS-073627#! DE-MUS-073627 Heimatmuseum Stolzenau +http://lobid.org/organisations/DE-MUS-076626#! DE-MUS-076626 Heimatstube +http://lobid.org/organisations/DE-MUS-078622#! DE-MUS-078622 Heimat- und Kulturhaus Meyer-Köster +http://lobid.org/organisations/DE-MUS-078820#! DE-MUS-078820 Hopfenmuseum +http://lobid.org/organisations/DE-MUS-079125#! DE-MUS-079125 Krumbacher Wachsmuseum +http://lobid.org/organisations/DE-MUS-079521#! DE-MUS-079521 Muna-Museum +http://lobid.org/organisations/DE-MUS-081623#! DE-MUS-081623 Kaiserin Elisabeth Museum +http://lobid.org/organisations/DE-MUS-081821#! DE-MUS-081821 Naturkundliches Heimatmuseum +http://lobid.org/organisations/DE-MUS-083421#! DE-MUS-083421 Deutsches Burgenmuseum +http://lobid.org/organisations/DE-MUS-084622#! DE-MUS-084622 Heimatmuseum Alflen +http://lobid.org/organisations/DE-MUS-085021#! DE-MUS-085021 Staubsauger-Museum +http://lobid.org/organisations/DE-MUS-085125#! DE-MUS-085125 Heimatmuseum ""Das hohe Haus"" +http://lobid.org/organisations/DE-MUS-086628#! DE-MUS-086628 Eckelsheimer Museum +http://lobid.org/organisations/DE-MUS-086920#! DE-MUS-086920 Dinotherium-Museum +http://lobid.org/organisations/DE-MUS-087923#! DE-MUS-087923 Mühlenmuseum ""Alte Dorfmühle"" +http://lobid.org/organisations/DE-MUS-088228#! DE-MUS-088228 Brauerei Museum Malsfeld +http://lobid.org/organisations/DE-MUS-088728#! DE-MUS-088728 Puzzleum im Theater Zauberkasten +http://lobid.org/organisations/DE-MUS-089221#! DE-MUS-089221 Historische Schuhmacherwerkstatt Blomberg +http://lobid.org/organisations/DE-MUS-089523#! DE-MUS-089523 Mafa Museum/ Archiv/ Forum Arminia +http://lobid.org/organisations/DE-MUS-090726#! DE-MUS-090726 Dorfmuseum Mellen +http://lobid.org/organisations/DE-MUS-090820#! DE-MUS-090820 Westfälische Salzwelten +http://lobid.org/organisations/DE-MUS-090924#! DE-MUS-090924 Umweltzentrum Heerser Mühle +http://lobid.org/organisations/DE-MUS-091021#! DE-MUS-091021 Wöhrener Heimatstube +http://lobid.org/organisations/DE-MUS-091125#! DE-MUS-091125 Dehmer Heimatstube +http://lobid.org/organisations/DE-MUS-091729#! DE-MUS-091729 Militärgeschichtliche Sammlung Lippische Rose e.V. +http://lobid.org/organisations/DE-MUS-092628#! DE-MUS-092628 Glockenmuseum im historischen Rathaus +http://lobid.org/organisations/DE-MUS-093621#! DE-MUS-093621 Mosellum +http://lobid.org/organisations/DE-MUS-094426#! DE-MUS-094426 Geschichte in Weisenau +http://lobid.org/organisations/DE-MUS-095325#! DE-MUS-095325 Minimobil Modellmuseum +http://lobid.org/organisations/DE-MUS-096224#! DE-MUS-096224 Heimatmuseum - Vom Bronzeschwert zur Turbine +http://lobid.org/organisations/DE-MUS-096922#! DE-MUS-096922 Feuerwehrmuseum Bayern +http://lobid.org/organisations/DE-MUS-097123#! DE-MUS-097123 Glas-Knopf-Museum +http://lobid.org/organisations/DE-MUS-098220#! DE-MUS-098220 Wassermuseum +http://lobid.org/organisations/DE-MUS-098720#! DE-MUS-098720 Illenau Arkaden Museum +http://lobid.org/organisations/DE-MUS-099129#! DE-MUS-099129 Sammlung Waagen und Gewichte +http://lobid.org/organisations/DE-MUS-099327#! DE-MUS-099327 Alpirsbacher Offizin historische Druckerei +http://lobid.org/organisations/DE-MUS-099827#! DE-MUS-099827 Weinbaumuseum Asperg +http://lobid.org/organisations/DE-MUS-100229#! DE-MUS-100229 Schwarzwälder Moped & Roller Museum +http://lobid.org/organisations/DE-MUS-100625#! DE-MUS-100625 Spätzlemuseum +http://lobid.org/organisations/DE-MUS-100729#! DE-MUS-100729 Römische Badruine +http://lobid.org/organisations/DE-MUS-100927#! DE-MUS-100927 Schmiedemuseum Königshammer +http://lobid.org/organisations/DE-MUS-101128#! DE-MUS-101128 Kloster Bonlanden Krippenweg +http://lobid.org/organisations/DE-MUS-101326#! DE-MUS-101326 Medizinhistorisches Museum zur Zahnheilkunde des 20. Jahrhunderts +http://lobid.org/organisations/DE-MUS-101920#! DE-MUS-101920 Heimatmuseum Hansmeyerhof +http://lobid.org/organisations/DE-MUS-102225#! DE-MUS-102225 Polizeimuseum Dettenhausen +http://lobid.org/organisations/DE-MUS-102527#! DE-MUS-102527 Historische Einungsmeisterstube +http://lobid.org/organisations/DE-MUS-103926#! DE-MUS-103926 Museum der Stadt Ettenheim +http://lobid.org/organisations/DE-MUS-104325#! DE-MUS-104325 Augustiner Chorherren-Museum +http://lobid.org/organisations/DE-MUS-104429#! DE-MUS-104429 Klostermuseum Heidenheim +http://lobid.org/organisations/DE-MUS-106727#! DE-MUS-106727 Pfälzisches Bibelmuseum Neustadt +http://lobid.org/organisations/DE-MUS-107220#! DE-MUS-107220 Historische Zeit(t)räume - Ober-Hilbersheimer Museum im Schrothaus +http://lobid.org/organisations/DE-MUS-107324#! DE-MUS-107324 Westwallmuseum Bad Bergzabern +http://lobid.org/organisations/DE-MUS-107626#! DE-MUS-107626 Oppenheimer Stadtmuseum +http://lobid.org/organisations/DE-MUS-107720#! DE-MUS-107720 Heimatmuseum Osthofen +http://lobid.org/organisations/DE-MUS-107824#! DE-MUS-107824 Forum Alte Post +http://lobid.org/organisations/DE-MUS-110429#! DE-MUS-110429 Handwerkermuseum der Stadt Wolfstein +http://lobid.org/organisations/DE-MUS-110523#! DE-MUS-110523 Synagoge und Mikwe +http://lobid.org/organisations/DE-MUS-110721#! DE-MUS-110721 MuSeele - Geschichte der Psychatrie +http://lobid.org/organisations/DE-MUS-111224#! DE-MUS-111224 Besucherbergwerk Segen Gottes +http://lobid.org/organisations/DE-MUS-111724#! DE-MUS-111724 Heimatstube Bad Rotenfels mit Dauerausstellung +http://lobid.org/organisations/DE-MUS-113824#! DE-MUS-113824 Bergbaumuseum Erzpoche +http://lobid.org/organisations/DE-MUS-114025#! DE-MUS-114025 SEH - Süddeutsches Eisenbahnmuseum Heilbronn +http://lobid.org/organisations/DE-MUS-114223#! DE-MUS-114223 Fastnachtsmuseum Narrenburg +http://lobid.org/organisations/DE-MUS-114525#! DE-MUS-114525 Hüfinger Schulmuseum +http://lobid.org/organisations/DE-MUS-115122#! DE-MUS-115122 Feuerwehrmuseum Kirchheim +http://lobid.org/organisations/DE-MUS-116021#! DE-MUS-116021 Nagelmuseum Löchgau +http://lobid.org/organisations/DE-MUS-116625#! DE-MUS-116625 Museum auf dem Schafhof +http://lobid.org/organisations/DE-MUS-116823#! DE-MUS-116823 Obstbaumuseum Glems +http://lobid.org/organisations/DE-MUS-116927#! DE-MUS-116927 Heimatkundliche Sammlung Pfarrscheuer und Micheleshaus +http://lobid.org/organisations/DE-MUS-117326#! DE-MUS-117326 Atelierwerkstatt Albert Volz +http://lobid.org/organisations/DE-MUS-118527#! DE-MUS-118527 Hardesvogtei Fleckeby Heimat- und Kulturstätte +http://lobid.org/organisations/DE-MUS-118725#! DE-MUS-118725 Weihnachtshaus +http://lobid.org/organisations/DE-MUS-119124#! DE-MUS-119124 Motoren-Museum Lütjensee +http://lobid.org/organisations/DE-MUS-119520#! DE-MUS-119520 Museum Vergessene Arbeit +http://lobid.org/organisations/DE-MUS-119822#! DE-MUS-119822 Stadtgeschichtliches Heimatmuseum Historisches Uetersen +http://lobid.org/organisations/DE-MUS-120629#! DE-MUS-120629 SchichtWerk, Zeitreisen im Werson Haus +http://lobid.org/organisations/DE-MUS-120723#! DE-MUS-120723 Jurahaus +http://lobid.org/organisations/DE-MUS-120921#! DE-MUS-120921 Radio- und Telefonmuseum Wertingen +http://lobid.org/organisations/DE-MUS-121622#! DE-MUS-121622 Museum Barberini +http://lobid.org/organisations/DE-MUS-121726#! DE-MUS-121726 Bargheer-Museum +http://lobid.org/organisations/DE-MUS-123420#! DE-MUS-123420 Dinkelbergmuseum Minseln +http://lobid.org/organisations/DE-MUS-124121#! DE-MUS-124121 Sieger Köder Zentrum +http://lobid.org/organisations/DE-MUS-125520#! DE-MUS-125520 Heimatstube Oberreute - Das Museum im Rathaus +http://lobid.org/organisations/DE-MUS-125728#! DE-MUS-125728 Christian Schad Museum +http://lobid.org/organisations/DE-MUS-125822#! DE-MUS-125822 Heimatmuseum Altenbuch +http://lobid.org/organisations/DE-MUS-126429#! DE-MUS-126429 Otto Erich Döbele Museum +http://lobid.org/organisations/DE-MUS-126929#! DE-MUS-126929 Mühlen- und Heimatmuseum Fessler Mühle +http://lobid.org/organisations/DE-MUS-127724#! DE-MUS-127724 Heimatmuseum St. Leon-Rot +http://lobid.org/organisations/DE-MUS-128425#! DE-MUS-128425 Schutzbauten Stuttgart +http://lobid.org/organisations/DE-MUS-128529#! DE-MUS-128529 Heimatmuseum Stammheim +http://lobid.org/organisations/DE-MUS-128925#! DE-MUS-128925 Museum für alte Landtechnik +http://lobid.org/organisations/DE-MUS-129022#! DE-MUS-129022 Chirurgiemuseum Asklepios +http://lobid.org/organisations/DE-MUS-129428#! DE-MUS-129428 Moped-Technikwelt Blumberg +http://lobid.org/organisations/DE-MUS-129720#! DE-MUS-129720 Heimatstube Alte Schule +http://lobid.org/organisations/DE-MUS-130423#! DE-MUS-130423 Hofgut Kudach - Museum in der Grünkerndarre Altheim +http://lobid.org/organisations/DE-MUS-130621#! DE-MUS-130621 Stadtmuseum im Gänsturm +http://lobid.org/organisations/DE-MUS-130725#! DE-MUS-130725 Narrenmuseum der Narrenzunft AHA +http://lobid.org/organisations/DE-MUS-130829#! DE-MUS-130829 Fasnetsmuseum +http://lobid.org/organisations/DE-MUS-131322#! DE-MUS-131322 Feldbahn- und Industriemuseum Wiesloch +http://lobid.org/organisations/DE-MUS-131624#! DE-MUS-131624 Heimatstube Habelschwerdt +http://lobid.org/organisations/DE-MUS-132127#! DE-MUS-132127 Klostergartenmuseum Oelinghausen +http://lobid.org/organisations/DE-MUS-132429#! DE-MUS-132429 Telefonmuseum +http://lobid.org/organisations/DE-MUS-132721#! DE-MUS-132721 Museum Borgholzhausen +http://lobid.org/organisations/DE-MUS-133526#! DE-MUS-133526 Puppen- und Spielzeugmuseum Coesfeld +http://lobid.org/organisations/DE-MUS-133620#! DE-MUS-133620 Heimatstube Delbrück +http://lobid.org/organisations/DE-MUS-133922#! DE-MUS-133922 Automobil Museum Dortmund +http://lobid.org/organisations/DE-MUS-134227#! DE-MUS-134227 Samurai Art Museum +http://lobid.org/organisations/DE-MUS-134623#! DE-MUS-134623 StadtPalais - Museum für Stuttgart +http://lobid.org/organisations/DE-MUS-134821#! DE-MUS-134821 Museum Peter August Böckstiegel +http://lobid.org/organisations/DE-MUS-134925#! DE-MUS-134925 Schloss Bothmer-Museum +http://lobid.org/organisations/DE-MUS-135126#! DE-MUS-135126 Pergamonmuseum. Das Panorama +http://lobid.org/organisations/DE-MUS-135220#! DE-MUS-135220 Tridelta Magnetmuseum +http://lobid.org/organisations/DE-MUS-136129#! DE-MUS-136129 CASA Tony M.-museum +http://lobid.org/organisations/DE-MUS-163611#! DE-MUS-163611 Museum Schloss Herrenhausen +http://lobid.org/organisations/DE-MUS-611516#! DE-MUS-611516 Sudetendeutsches Haus +http://lobid.org/organisations/DE-MUS-646215#! DE-MUS-646215 Städtische Galerie Bremen +http://lobid.org/organisations/DE-MUS-661214#! DE-MUS-661214 Städtische Galerie +http://lobid.org/organisations/DE-MUS-665112#! DE-MUS-665112 Sakralmuseum in der Klosterkirche ""St. Annen"" Kamenz +http://lobid.org/organisations/DE-MUS-920518#! DE-MUS-920518 Landesarchiv Schleswig-Holstein +http://lobid.org/organisations/DE-MUS-969315#! DE-MUS-969315 Johannes a Lasco Bibliothek +http://lobid.org/organisations/DE-MUS-136723#! DE-MUS-136723 Museum für Bildende Kunst +http://lobid.org/organisations/DE-MUS-137122#! DE-MUS-137122 Japanisches Palais - Sonderausstellungsbereich +http://lobid.org/organisations/DE-MUS-138927#! DE-MUS-138927 Industriemuseum Menden +http://lobid.org/organisations/DE-MUS-139128#! DE-MUS-139128 KINDL-Zentrum für zeitgenössische Kunst +http://lobid.org/organisations/DE-MUS-139222#! DE-MUS-139222 Gedenkstätte Günter Litfin +http://lobid.org/organisations/DE-MUS-139420#! DE-MUS-139420 Braun-Sammlung Ettel +http://lobid.org/organisations/DE-MUS-139722#! DE-MUS-139722 Otto Modersohn Museum Tecklenburg +http://lobid.org/organisations/DE-MUS-140925#! DE-MUS-140925 Rundfunkmuseum Holtstiege +http://lobid.org/organisations/DE-MUS-141522#! DE-MUS-141522 Heimathaus Hartum +http://lobid.org/organisations/DE-MUS-141720#! DE-MUS-141720 Landmaschinenmuseum Riesenbeck +http://lobid.org/organisations/DE-MUS-141824#! DE-MUS-141824 Dorfschulmuseum Hövelriege +http://lobid.org/organisations/DE-MUS-142421#! DE-MUS-142421 Ostdeutsche Heimatstuben und Heimatmuseum Ohlau +http://lobid.org/organisations/DE-MUS-142827#! DE-MUS-142827 Schleiper Hammer +http://lobid.org/organisations/DE-MUS-143122#! DE-MUS-143122 Draiflessen Collection +http://lobid.org/organisations/DE-MUS-143320#! DE-MUS-143320 Deutsches Zentrifugen-Museum +http://lobid.org/organisations/DE-MUS-144625#! DE-MUS-144625 WLE Eisenbahnmuseum Stadtlohn +http://lobid.org/organisations/DE-MUS-146225#! DE-MUS-146225 Ernst-Alt-Kunstforum +http://lobid.org/organisations/DE-MUS-146329#! DE-MUS-146329 Erlebnisbergwerk Velsen +http://lobid.org/organisations/DE-MUS-146621#! DE-MUS-146621 Mechanischer Musiksalon +http://lobid.org/organisations/DE-MUS-147020#! DE-MUS-147020 Homburger Schlossberghöhlen +http://lobid.org/organisations/DE-MUS-147228#! DE-MUS-147228 Gemäldegalerie Otto von Pidoll zu Quintenbach +http://lobid.org/organisations/DE-MUS-147728#! DE-MUS-147728 James-Simon-Galerie - Sonderausstellungen +http://lobid.org/organisations/DE-MUS-147926#! DE-MUS-147926 Fritz Genkinger Kunsthaus +http://lobid.org/organisations/DE-MUS-087210#! DE-MUS-087210 Kloster Lorch +http://lobid.org/organisations/DE-MUS-149828#! DE-MUS-149828 Museum Pankow - Dunckerstraße +http://lobid.org/organisations/DE-4135#! DE-4135 4135 Berlin-Brandenburgische Akademie der Wissenschaften, Corpus Inscriptionum Latinarum +http://lobid.org/organisations/DE-4139#! DE-4139 4139 Landeskriminalamt Niedersachsen, Bibliothek +http://lobid.org/organisations/DE-4142#! DE-4142 4042 Bibliothek der Hochschule Weserbergland +http://lobid.org/organisations/DE-MUS-150823#! DE-MUS-150823 Museum-Deutsche-Einheit Bad Bodenteich +http://lobid.org/organisations/DE-4146#! DE-4146 Gemeindearchiv Gangelt +http://lobid.org/organisations/DE-4154#! DE-4154 Stadtarchiv Lage +http://lobid.org/organisations/DE-4161#! DE-4161 Bischöfliches Zentralarchiv Regensburg +http://lobid.org/organisations/DE-MUS-670411#! DE-MUS-670411 Kulturforum Schleswig-Holstein-Haus +http://lobid.org/organisations/DE-4167#! DE-4167 4167 Stadtbücherei Friedrichstadt +http://lobid.org/organisations/DE-MUS-161026#! DE-MUS-161026 Mark Twain Center Heidelberg +http://lobid.org/organisations/DE-4176#! DE-4176 Künstlernachlässe Kassel e.V. +http://lobid.org/organisations/DE-4177#! DE-4177 Brandenburgische Genealogische Gesellschaft ""Roter Adler"" e. V. +http://lobid.org/organisations/DE-MUS-161724#! DE-MUS-161724 Disgusting Food Museum +http://lobid.org/organisations/DE-MUS-162529#! DE-MUS-162529 Museum Atelierhaus Rösler-Kröhnke +http://lobid.org/organisations/DE-MUS-162925#! DE-MUS-162925 Bunker Eichenthal +http://lobid.org/organisations/DE-MUS-164025#! DE-MUS-164025 Puppen- und Spielzeugmuseum im Trinsenturm +http://lobid.org/organisations/DE-4178#! DE-4178 4178 Dominikanerkonvent Mainz, Konventsbibliothek +http://lobid.org/organisations/DE-MUS-164525#! DE-MUS-164525 Schumann-Haus Leipzig +http://lobid.org/organisations/DE-MUS-164921#! DE-MUS-164921 Maskeum +http://lobid.org/organisations/DE-MUS-165028#! DE-MUS-165028 Dinosaurier Museum Altmühltal +http://lobid.org/organisations/DE-MUS-165528#! DE-MUS-165528 Museum Vohburg +http://lobid.org/organisations/DE-MUS-164327#! DE-MUS-164327 Kellereimuseum Schloss Wachenheim +http://lobid.org/organisations/DE-4186#! DE-4186 4186 Schleswig-Holsteinischer Landtag - Bibliothek +http://lobid.org/organisations/DE-MUS-168329#! DE-MUS-168329 Waisenhaus-Museum Potsdam +http://lobid.org/organisations/DE-MUS-167420#! DE-MUS-167420 Schmidt-Haus +http://lobid.org/organisations/DE-MUS-168423#! DE-MUS-168423 Johann-Flierl-Museum +http://lobid.org/organisations/DE-4197#! DE-4197 Hauptarchiv der v. Bodelschwinghsche Stiftungen Bethel +http://lobid.org/organisations/DE-4200#! DE-4200 4200 Bibliothek des Selma Stern Zentrums für Jüdische Studien Berlin-Brandenburg (ZJS) +http://lobid.org/organisations/DE-4203#! DE-4203 4203 Kölner Hochschule für Katholische Theologie, Bibliothek +http://lobid.org/organisations/DE-4211#! DE-4211 Stadtarchiv Nagold +http://lobid.org/organisations/DE-MUS-196423#! DE-MUS-196423 Hanseforum im Berliner Tor +http://lobid.org/organisations/DE-1a#! DE-1a 1a Staatsbibliothek zu Berlin - Preußischer Kulturbesitz, Haus Potsdamer Straße +http://lobid.org/organisations/DE-6-136#! DE-6-136 6/136 Universität Münster, Heribert Meffert Bibliothek - Marketing-Centrum Münster (MCM), Bibliothek +http://lobid.org/organisations/DE-Due62#! DE-Due62 Dü 62 Hochschulbibliothek der Hochschule Düsseldorf +http://lobid.org/organisations/DE-Vil1#! DE-Vil1 Vil 1 Kreisarchiv Schwarzwald-Baar-Kreis, Regionalgeschichtliche Bibliothek +http://lobid.org/organisations/DE-Mro1#! DE-Mro1 Mro 1 Flößermuseum Unterrodach, Bibliothek +http://lobid.org/organisations/DE-291-417#! DE-291-417 291/417 Universität des Saarlandes, NTNM-Bibliothek +http://lobid.org/organisations/DE-4227#! DE-4227 Knabenchorarchiv +http://lobid.org/organisations/DE-4100#! DE-4100 4100 HMU Health and Medical University Erfurt +http://lobid.org/organisations/DE-MUS-073716#! DE-MUS-073716 Hessen Kassel Heritage - Neue Galerie +http://lobid.org/organisations/DE-6-022#! DE-6-022 6/022 Universität Münster, Bibliothek des Fachbereichs Mathematik und Informatik +http://lobid.org/organisations/DE-988#! DE-988 988 Hochschule Offenburg, University of Applied Sciences, Bibliothek Campus Gengenbach +http://lobid.org/organisations/DE-Bo412#! DE-Bo412 Bo 412 Kunst- und Ausstellungshalle der Bundesrepublik Deutschland, Bibliothek +http://lobid.org/organisations/DE-6-154#! DE-6-154 6/154 Universität Münster, Institut für Arabistik und Islamwissenschaft, Bibliothek +http://lobid.org/organisations/DE-2065#! DE-2065 Lili Elbe Archiv - Forschungsstätte zur Inter, Trans und Queer Geschichte e.V. +http://lobid.org/organisations/DE-6-152#! DE-6-152 6/152 Universität Münster, Institut für Ägyptologie und Koptologie, Bibliothek +http://lobid.org/organisations/DE-MUS-253516#! DE-MUS-253516 Käthe-Kollwitz-Museum +http://lobid.org/organisations/DE-M36a#! DE-M36a M 36a Münchner Stadtbibliothek, Monacensia im Hildebrandhaus, Literaturachiv +http://lobid.org/organisations/DE-MUS-136010#! DE-MUS-136010 Flößermuseum Unterrodach +http://lobid.org/organisations/DE-206H#! DE-206H 206 H ZBW - Leibniz-Informationszentrum Wirtschaft, Standort Hamburg +http://lobid.org/organisations/DE-Wes3#! DE-Wes3 Wes 3 Stadtarchiv Wesel +http://lobid.org/organisations/DE-18-258#! DE-18-258 18/258 Hochschule für Musik und Theater, Bibliothek +http://lobid.org/organisations/DE-101a#! DE-101a 101a Deutsche Nationalbibliothek Leipzig +http://lobid.org/organisations/DE-Bo174#! DE-Bo174 Bo 174 Stiftung Haus der Geschichte der Bundesrepublik, Informationszentrum - Bibliothek und Mediathek zur Zeitgeschichte +http://lobid.org/organisations/DE-4219#! DE-4219 Geschichtsbibliothek Horst Gaiser Neu-Ulm +http://lobid.org/organisations/DE-Hil5#! DE-Hil5 Hil 5 Niedersächsischer Landesrechnungshof, Bibliothek und Informationsdienste +http://lobid.org/organisations/DE-6-050#! DE-6-050 6/050 Universität Münster, Haus der Niederlande, Institut für Niederländische Philologie, Bibliothek +http://lobid.org/organisations/DE-G11#! DE-G11 G 11 Bildungszentrum der Thüringer Landesverwaltung in Gotha und Verwaltungsfachhochschule für die öffentliche Verwaltung, Bibliothek +http://lobid.org/organisations/DE-6-339#! DE-6-339 6/339 Universität Münster, Gemeinsame Bibliothek des Centrums für Religionsbezogene Studien (CRS) und des Zentrums für Islamische Theologie (ZIT) +http://lobid.org/organisations/DE-6-123#! DE-6-123 6/123 Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft +http://lobid.org/organisations/DE-2297#! DE-2297 Landesarchiv Berlin +http://lobid.org/organisations/DE-MUS-995517#! DE-MUS-995517 Stadtmuseum Battenberg +http://lobid.org/organisations/DE-272#! DE-272 272 Stadtbücherei Schwelm +http://lobid.org/organisations/DE-4233#! DE-4233 Kreis Stormarn +http://lobid.org/organisations/DE-43#! DE-43 43 Hochschul- und Landesbibliothek RheinMain, Rheinstraße +http://lobid.org/organisations/DE-MUS-267010#! DE-MUS-267010 Museum der Gemeinde Stockstadt am Rhein +http://lobid.org/organisations/DE-Hil7#! DE-Hil7 Hil 7 Stadtarchiv Hildesheim, Bibliothek +http://lobid.org/organisations/DE-7-115#! DE-7-115 7/115 Seminar für Arabistik / Islamwissenschaft, Bibliothek +http://lobid.org/organisations/DE-Hv122a#! DE-Hv122a Hv 122a Niedersächsisches Landesmuseum Hannover, Bibliothek +http://lobid.org/organisations/DE-979#! DE-979 979 Stadtbücherei Boppard +http://lobid.org/organisations/DE-MUS-416915#! DE-MUS-416915 Hessen Kassel Heritage - Planetarium in der Orangerie +http://lobid.org/organisations/DE-MUS-831814#! DE-MUS-831814 Heimat- und Auswanderungsmuseum der Stadt Brüssow (Uckermark) +http://lobid.org/organisations/DE-6-258#! DE-6-258 6/258 Universität Münster, Institut für Sprachwissenschaft, Bibliothek +http://lobid.org/organisations/DE-4223#! DE-4223 Thomas-Mann-Gymnasium Stutensee, Bibliothek +http://lobid.org/organisations/DE-1868#! DE-1868 1868 Stadtbücherei Hilchenbach diff --git a/conf/hebisMarc2lobid-transformation/maps/marcRel.tsv b/conf/hebisMarc2lobid-transformation/maps/marcRel.tsv new file mode 100644 index 0000000..30a0ac9 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/marcRel.tsv @@ -0,0 +1,146 @@ +uri label multiLangLabelDe multiLangLabelEn +http://id.loc.gov/vocabulary/relators/abr Kürzende/r Kürzende/r Abridger +http://id.loc.gov/vocabulary/relators/act Schauspieler/in Schauspieler/in Actor +http://id.loc.gov/vocabulary/relators/adi Art Director Art Director Art director +http://id.loc.gov/vocabulary/relators/aft Verfasser/in eines Nachworts Verfasser/in eines Nachworts Writer of afterword +http://id.loc.gov/vocabulary/relators/anm Animation Animation Animator +http://id.loc.gov/vocabulary/relators/ann Annotationen Annotationen Annotator +http://id.loc.gov/vocabulary/relators/ant Basiert auf einem Werk von Basiert auf einem Werk von Bibliographic antecedent +http://id.loc.gov/vocabulary/relators/ape Berufungsbeklagte/r / Revisionsbeklagte/r Berufungsbeklagte/r / Revisionsbeklagte/r Appellee +http://id.loc.gov/vocabulary/relators/apl Berufungskläger/in / Revisionskläger/in Berufungskläger/in / Revisionskläger/in Appellant +http://id.loc.gov/vocabulary/relators/arc Architekt/in Architekt/in Architect +http://id.loc.gov/vocabulary/relators/arr Arrangement Arrangement Arranger of music +http://id.loc.gov/vocabulary/relators/art Künstler/in Künstler/in Artist +http://id.loc.gov/vocabulary/relators/ato Unterzeichner/in Unterzeichner/in Autographer +http://id.loc.gov/vocabulary/relators/aui Vorwort Vorwort Writer of foreword +http://id.loc.gov/vocabulary/relators/aus Drehbuch Drehbuch Screenwriter +http://id.loc.gov/vocabulary/relators/aut Autor/in Autor/in Author +http://id.loc.gov/vocabulary/relators/bkd Buchgestaltung Buchgestaltung Book designer +http://id.loc.gov/vocabulary/relators/bnd Buchbinder/in Buchbinder/in Binder +http://id.loc.gov/vocabulary/relators/brd Sender Sender Broadcaster +http://id.loc.gov/vocabulary/relators/brl Brailleprägung Braillesprägung Braille embosser +http://id.loc.gov/vocabulary/relators/cas Formguß Formguß Caster +http://id.loc.gov/vocabulary/relators/chr Choreographie Choreographie Choreographer +http://id.loc.gov/vocabulary/relators/clb Mitarbeit Mitarbeit Collaborator +http://id.loc.gov/vocabulary/relators/cll Kalligrafie Kalligrafie Calligrapher +http://id.loc.gov/vocabulary/relators/clr Kolorierung Kolorierung Colourist +http://id.loc.gov/vocabulary/relators/clt Lichtdruck Lichtdruck Collotyper +http://id.loc.gov/vocabulary/relators/cmm Kommentar Kommentar Commentator +http://id.loc.gov/vocabulary/relators/cmp Komposition Komposition Composer +http://id.loc.gov/vocabulary/relators/cnd Dirigent/in / Leitung Dirigent/in / Leitung Conductor +http://id.loc.gov/vocabulary/relators/cng Kamera Kamera Cinematographer +http://id.loc.gov/vocabulary/relators/cns Zensor/in Zensor/in Censor +http://id.loc.gov/vocabulary/relators/col Sammler/in Sammler/in Collector +http://id.loc.gov/vocabulary/relators/com Zusammengestellt von Zusammengestellt von Compiler +http://id.loc.gov/vocabulary/relators/cor Registrar/in Registrar/in Collection registrar +http://id.loc.gov/vocabulary/relators/cou Durch Verfahrensvorschriften geregeltes Gericht Durch Verfahrensvorschriften geregeltes Gericht Court governed +http://id.loc.gov/vocabulary/relators/cre Schöpfer/in Schöpfer/in Creator +http://id.loc.gov/vocabulary/relators/crt Gerichtsstenograf/in Gerichtsstenograf/in Court reporter +http://id.loc.gov/vocabulary/relators/csl Beratung Beratung Consultant +http://id.loc.gov/vocabulary/relators/cst Kostümdesign Kostümdesign Costume designer +http://id.loc.gov/vocabulary/relators/ctb Beitragende/r Beitragende/r Contributor +http://id.loc.gov/vocabulary/relators/ctg Kartografie Kartografie Cartographer +http://id.loc.gov/vocabulary/relators/ctr Vertragspartner/in Vertragspartner/in Participant in a treaty +http://id.loc.gov/vocabulary/relators/cur Kurator/in Kurator/in Curator +http://id.loc.gov/vocabulary/relators/dfd Angeklagte/r Angeklagte/r Defendant +http://id.loc.gov/vocabulary/relators/dgg Grad-verleihende Institution Grad-verleihende Institution Degree granting institution +http://id.loc.gov/vocabulary/relators/dgs Akademische Betreuung Akademische Betreuung Degree supervisor +http://id.loc.gov/vocabulary/relators/dnc Tänzer/in Tänzer/in Dancer +http://id.loc.gov/vocabulary/relators/dnr Stifter/in Stifter/in Donor +http://id.loc.gov/vocabulary/relators/dpt Leihgabe von Leihgabe von Depositor +http://id.loc.gov/vocabulary/relators/drm Technische Zeichnungen Technische Zeichnungen Draftsman +http://id.loc.gov/vocabulary/relators/drt Regie Regie Director +http://id.loc.gov/vocabulary/relators/dsr Design Design Designer +http://id.loc.gov/vocabulary/relators/dst Vertrieb Vertrieb Distributor +http://id.loc.gov/vocabulary/relators/dte Gewidmet Gewidmet Dedicatee +http://id.loc.gov/vocabulary/relators/dto Widmende/r Widmende/r Dedicator +http://id.loc.gov/vocabulary/relators/edm Schnitt Schnitt Editor of moving image work +http://id.loc.gov/vocabulary/relators/edt Herausgeber/in Herausgeber/in Editor +http://id.loc.gov/vocabulary/relators/egr Stecher/in Stecher/in Engraver +http://id.loc.gov/vocabulary/relators/enj Normerlassende Gebietskörperschaft Normerlassende Gebietskörperschaft Enacting jurisdiction +http://id.loc.gov/vocabulary/relators/etr Radierer/in Radierer/in Etcher +http://id.loc.gov/vocabulary/relators/fds Filmvertrieb Filmvertrieb Film distributor +http://id.loc.gov/vocabulary/relators/fmd Filmregie Filmregie Film director +http://id.loc.gov/vocabulary/relators/fmk Filmemacher/in Filmemacher/in Filmmaker +http://id.loc.gov/vocabulary/relators/fmo frühere/r Eigentümer/in frühere/r Eigentümer/in Former owner +http://id.loc.gov/vocabulary/relators/fmp Filmproduktion Filmproduktion Film producer +http://id.loc.gov/vocabulary/relators/his Gastgebende Institution Gastgebende Institution Host institution +http://id.loc.gov/vocabulary/relators/hnr Gefeierte Person Gefeierte Person Honouree +http://id.loc.gov/vocabulary/relators/hst Gastgeber/in Gastgeber/in Host +http://id.loc.gov/vocabulary/relators/ill Illustration Illustration Illustrator +http://id.loc.gov/vocabulary/relators/ilu Illuminator/in Illuminator/in Illuminator +http://id.loc.gov/vocabulary/relators/ins Beschriftende Person Beschriftende Person Inscriber +http://id.loc.gov/vocabulary/relators/inv Erfinder/in Erfinder/in Inventor +http://id.loc.gov/vocabulary/relators/isb Herausgeber/in Herausgeber/in Issuing body +http://id.loc.gov/vocabulary/relators/itr Instrumentalmusiker/in Instrumentalmusiker/in Instrumentalist +http://id.loc.gov/vocabulary/relators/ive Interviewte/r Interviewte/r Interviewee +http://id.loc.gov/vocabulary/relators/ivr Interviewer/in Interviewer/in Interviewer +http://id.loc.gov/vocabulary/relators/jud Richter/in Richter/in Judge +http://id.loc.gov/vocabulary/relators/jug Geregelte Gebietskörperschaft Geregelte Gebietskörperschaft Jurisdiction governed +http://id.loc.gov/vocabulary/relators/lbt Libretto Libretto Librettist +http://id.loc.gov/vocabulary/relators/led Leitung Leitung Lead +http://id.loc.gov/vocabulary/relators/lgd Lichtgestaltung Lichtgestaltung Lighting designer +http://id.loc.gov/vocabulary/relators/lsa Landschaftsarchitekt/in Landschaftsarchitekt/in Landscape architect +http://id.loc.gov/vocabulary/relators/ltg Lithografie Lithografie Lithographer +http://id.loc.gov/vocabulary/relators/lyr Textdichter/in Textdichter/in Lyricist +http://id.loc.gov/vocabulary/relators/med Medium Medium Medium +http://id.loc.gov/vocabulary/relators/mfr Herstellung Herstellung Manufacturer +http://id.loc.gov/vocabulary/relators/mod Moderation Moderation Moderator +http://id.loc.gov/vocabulary/relators/msd Musikalische Leitung Musikalische Leitung Musical director +http://id.loc.gov/vocabulary/relators/mtk Protokoll Protokoll Minute taker +http://id.loc.gov/vocabulary/relators/mus Musiker/in Musiker/in Musician +http://id.loc.gov/vocabulary/relators/nrt Erzähler/in Erzähler/in Narrator +http://id.loc.gov/vocabulary/relators/org Begründet durch Begründet durch Originator +http://id.loc.gov/vocabulary/relators/orm Veranstalter/in Veranstalter/in Organizer +http://id.loc.gov/vocabulary/relators/osp On-Screen-Präsentator/in On-Screen-Präsentator/in On-screen presenter +http://id.loc.gov/vocabulary/relators/oth Sonstige Sonstige Other agent associated with a work +http://id.loc.gov/vocabulary/relators/own Eigentümer/in Eigentümer/in Owner +http://id.loc.gov/vocabulary/relators/pan Diskussionsteilnehmer/in Diskussionsteilnehmer/in Panelist +http://id.loc.gov/vocabulary/relators/pat Im Auftrag von Im Auftrag von Commissioning body +http://id.loc.gov/vocabulary/relators/pbd Chefredaktion Chefredaktion Editorial director +http://id.loc.gov/vocabulary/relators/pbl Verlag Verlag Publisher +http://id.loc.gov/vocabulary/relators/pht Fotografie Fotografie Photographer +http://id.loc.gov/vocabulary/relators/plt Druckformherstellung Druckformherstellung Platemaker +http://id.loc.gov/vocabulary/relators/ppm Papiermacher/in Papiermacher/in Papermaker +http://id.loc.gov/vocabulary/relators/ppt Puppenspieler/in Puppenspieler/in Puppeteer +http://id.loc.gov/vocabulary/relators/pra Praeses Praeses Praeses +http://id.loc.gov/vocabulary/relators/pre Präsentation Präsentation Presenter +http://id.loc.gov/vocabulary/relators/prf Ausführende/r Ausführende/r Performer +http://id.loc.gov/vocabulary/relators/prg Programmiererung Programmiererung Programmer +http://id.loc.gov/vocabulary/relators/prm Druckgrafik Druckgrafik Printmaker +http://id.loc.gov/vocabulary/relators/prn Produktionsfirma Produktionsfirma Production company +http://id.loc.gov/vocabulary/relators/pro Produktion Produktion Producer +http://id.loc.gov/vocabulary/relators/prs Produktionsdesign Produktionsdesign Production designer +http://id.loc.gov/vocabulary/relators/prt Druck Druck Printer +http://id.loc.gov/vocabulary/relators/ptf Zivilkläger/in Zivilkläger/in Plaintiff +http://id.loc.gov/vocabulary/relators/rcd Ton Ton Recordist +http://id.loc.gov/vocabulary/relators/rce Aufnahmetechniker/in Aufnahmetechniker/in Recording engineer +http://id.loc.gov/vocabulary/relators/rcp Adressat/in Adressat/in Addressee +http://id.loc.gov/vocabulary/relators/rdd Hörfunkregisseur/in Hörfunkregisseur/in Radio director +http://id.loc.gov/vocabulary/relators/red Redaktion Redaktion Redaktor +http://id.loc.gov/vocabulary/relators/res Forscher/in Forscher/in Researcher +http://id.loc.gov/vocabulary/relators/rpc Hörfunkproduktion Hörfunkproduktion Radio producer +http://id.loc.gov/vocabulary/relators/rsp Respondent/in Respondent/in Respondent +http://id.loc.gov/vocabulary/relators/rsr Restaurator/in Restaurator/in Restorationist +http://id.loc.gov/vocabulary/relators/scl Bildhauer/in Bildhauer/in Sculptor +http://id.loc.gov/vocabulary/relators/sds Tongestaltung Tongestaltung Sound designer +http://id.loc.gov/vocabulary/relators/sgd Bühnenregie Bühnenregie Stage director +http://id.loc.gov/vocabulary/relators/sll Verkäufer/in Verkäufer/in Seller +http://id.loc.gov/vocabulary/relators/sng Gesang Gesang Singer +http://id.loc.gov/vocabulary/relators/spk Redner/in Redner/in Speaker +http://id.loc.gov/vocabulary/relators/spn Träger/in Träger/in Sponsoring body +http://id.loc.gov/vocabulary/relators/srv Landvermessung Landvermessung Surveyor +http://id.loc.gov/vocabulary/relators/stl Geschichtenerzähler/in Geschichtenerzähler/in Storyteller +http://id.loc.gov/vocabulary/relators/tch Ausbilder/in Ausbilder/in Teacher +http://id.loc.gov/vocabulary/relators/tld Fernsehregie Fernsehregie Television director +http://id.loc.gov/vocabulary/relators/tlp Fernsehproduktion Fernsehproduktion Television producer +http://id.loc.gov/vocabulary/relators/trc Transkription Transkription Transcriber +http://id.loc.gov/vocabulary/relators/trl Übersetzung Übersetzung Translator +http://id.loc.gov/vocabulary/relators/vac Synchronsprecher/in Synchronsprecher/in Voice actor +http://id.loc.gov/vocabulary/relators/vdg Kamera Kamera Director of photography +http://id.loc.gov/vocabulary/relators/wac Zusätzlicher Kommentar Zusätzlicher Kommentar Writer of added commentary +http://id.loc.gov/vocabulary/relators/wal Verfasser/in von zusätzlichen Lyrics Verfasser/in von zusätzlichen Lyrics Writer of added lyrics +http://id.loc.gov/vocabulary/relators/wat Zusätzlicher Text Zusätzlicher Text Writer of added text +http://id.loc.gov/vocabulary/relators/win Einleitung Einleitung Writer of introduction +http://id.loc.gov/vocabulary/relators/wpr Vorwort Vorwort Writer of preface +http://id.loc.gov/vocabulary/relators/wst Verfasser/in von ergänzendem Text Verfasser/in von ergänzendem Text Writer of supplementary textual content diff --git a/conf/hebisMarc2lobid-transformation/maps/nwbib-spatial.ttl b/conf/hebisMarc2lobid-transformation/maps/nwbib-spatial.ttl new file mode 100644 index 0000000..41df772 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/nwbib-spatial.ttl @@ -0,0 +1,31793 @@ +@prefix dct: . +@prefix nwbib-spatial: . +@prefix skos: . +@prefix vann: . +@prefix wd: . +@prefix foaf: . + +nwbib-spatial:Q2259617 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Schötmar"@de ; + foaf:focus wd:Q2259617 . + +nwbib-spatial:Q2103 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05911" ; + skos:prefLabel "Bochum"@de ; + foaf:focus wd:Q2103 . + +nwbib-spatial:Q1250674 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Lütgendortmund"@de ; + foaf:focus wd:Q1250674 . + +nwbib-spatial:N4-7 a skos:Concept ; + skos:inScheme ; + skos:notation "4-7" ; + skos:prefLabel "Historische Territorien und Gebiete"@de . + +nwbib-spatial:Q985113 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Meißen"@de ; + foaf:focus wd:Q985113 . + +nwbib-spatial:Q1250589 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326741 ; + skos:inScheme ; + skos:prefLabel "Brackel"@de ; + foaf:focus wd:Q1250589 . + +nwbib-spatial:Q832411 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Bettenhoven"@de ; + foaf:focus wd:Q832411 . + +nwbib-spatial:Q6136 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974056" ; + skos:prefLabel "Wickede"@de ; + foaf:focus wd:Q6136 . + +nwbib-spatial:Q1551893 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Grüne (Iserlohn)"@de ; + foaf:focus wd:Q1551893 . + +nwbib-spatial:Q240039 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366040" ; + skos:prefLabel "Weilerswist"@de ; + foaf:focus wd:Q240039 . + +nwbib-spatial:Q798710 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Bad Holzhausen"@de ; + foaf:focus wd:Q798710 . + +nwbib-spatial:Q1342525 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Gronau"@de ; + foaf:focus wd:Q1342525 . + +nwbib-spatial:Q644860 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Brüntrup"@de ; + foaf:focus wd:Q644860 . + +nwbib-spatial:Q834780 + a skos:Concept ; + skos:broader nwbib-spatial:Q5644 ; + skos:inScheme ; + skos:prefLabel "Braunshausen"@de ; + foaf:focus wd:Q834780 . + +nwbib-spatial:Q5535 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962048" ; + skos:prefLabel "Neuenrade"@de ; + foaf:focus wd:Q5535 . + +nwbib-spatial:Q57727510 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Beyenburg"@de ; + foaf:focus wd:Q57727510 . + +nwbib-spatial:Q61727598 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Essenberg"@de ; + foaf:focus wd:Q61727598 . + +nwbib-spatial:Q119520676 + a skos:Concept ; + skos:broader nwbib-spatial:Q161729 ; + skos:inScheme ; + skos:prefLabel "Rohdenhaus"@de ; + foaf:focus wd:Q119520676 . + +nwbib-spatial:Q2130385 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Ramscheid"@de ; + foaf:focus wd:Q2130385 . + +nwbib-spatial:Q1272451 + a skos:Concept ; + skos:broader nwbib-spatial:Q200138 ; + skos:inScheme ; + skos:prefLabel "Düttling"@de ; + foaf:focus wd:Q1272451 . + +nwbib-spatial:Q56033167 + a skos:Concept ; + skos:broader nwbib-spatial:Q1700 ; + skos:inScheme ; + skos:prefLabel "Südmünsterland"@de ; + foaf:focus wd:Q56033167 . + +nwbib-spatial:Q1536563 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Golkrath"@de ; + foaf:focus wd:Q1536563 . + +nwbib-spatial:Q1959200 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Müntz (Titz)"@de ; + foaf:focus wd:Q1959200 . + +nwbib-spatial:Q2273757 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Serm"@de ; + foaf:focus wd:Q2273757 . + +nwbib-spatial:Q1318062 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Schmechten"@de ; + foaf:focus wd:Q1318062 . + +nwbib-spatial:Q1251169 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Meiswinkel"@de ; + foaf:focus wd:Q1251169 . + +nwbib-spatial:Q798142 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Bachem"@de ; + foaf:focus wd:Q798142 . + +nwbib-spatial:Q1494684 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Gartenstadt (Krefeld)"@de ; + foaf:focus wd:Q1494684 . + +nwbib-spatial:Q1959115 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Münster-Süd-Ost"@de ; + foaf:focus wd:Q1959115 . + +nwbib-spatial:Q1787416 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Mülheim am Rhein (bis 1932)"@de ; + foaf:focus wd:Q1787416 . + +nwbib-spatial:Q1631641 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Hovestadt"@de ; + foaf:focus wd:Q1631641 . + +nwbib-spatial:Q55498347 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Halden"@de ; + foaf:focus wd:Q55498347 . + +nwbib-spatial:Q881776 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Niedersfeld"@de ; + foaf:focus wd:Q881776 . + +nwbib-spatial:Q256950 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Stadtkern"@de ; + foaf:focus wd:Q256950 . + +nwbib-spatial:Q446870 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Kalk (Stadtbezirk)"@de ; + foaf:focus wd:Q446870 . + +nwbib-spatial:Q762492 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Zündorf"@de ; + foaf:focus wd:Q762492 . + +nwbib-spatial:Q111827768 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Dorp"@de ; + foaf:focus wd:Q111827768 . + +nwbib-spatial:Q1546896 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Grimminghausen"@de ; + foaf:focus wd:Q1546896 . + +nwbib-spatial:Q925319 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Broich (Schleiden)"@de ; + foaf:focus wd:Q925319 . + +nwbib-spatial:Q248822 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Züschen"@de ; + foaf:focus wd:Q248822 . + +nwbib-spatial:Q1271203 + a skos:Concept ; + skos:broader nwbib-spatial:Q4175 ; + skos:inScheme ; + skos:prefLabel "Dörenthe"@de ; + foaf:focus wd:Q1271203 . + +nwbib-spatial:Q1335120 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Lürbke"@de ; + foaf:focus wd:Q1335120 . + +nwbib-spatial:Q1524922 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Gindorf"@de ; + foaf:focus wd:Q1524922 . + +nwbib-spatial:Q56033772 + a skos:Concept ; + skos:broader nwbib-spatial:Q163837 ; + skos:inScheme ; + skos:prefLabel "Laar"@de ; + foaf:focus wd:Q56033772 . + +nwbib-spatial:Q1493919 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Stünzel"@de ; + foaf:focus wd:Q1493919 . + +nwbib-spatial:Q153974 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Barmen"@de ; + foaf:focus wd:Q153974 . + +nwbib-spatial:Q1520236 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Gevelinghausen"@de ; + foaf:focus wd:Q1520236 . + +nwbib-spatial:Q306225 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Abbenroth"@de ; + foaf:focus wd:Q306225 . + +nwbib-spatial:Q925377 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Broichweiden"@de ; + foaf:focus wd:Q925377 . + +nwbib-spatial:Q1959088 + a skos:Concept ; + skos:broader nwbib-spatial:Q1503134 ; + skos:inScheme ; + skos:prefLabel "Gelmer"@de ; + foaf:focus wd:Q1959088 . + +nwbib-spatial:Q1795739 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Esch/Auweiler"@de ; + foaf:focus wd:Q1795739 . + +nwbib-spatial:Q2584531 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Winkeln"@de ; + foaf:focus wd:Q2584531 . + +nwbib-spatial:Q15052453 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Bönning"@de ; + foaf:focus wd:Q15052453 . + +nwbib-spatial:Q1625560 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Holzheim"@de ; + foaf:focus wd:Q1625560 . + +nwbib-spatial:Q1464254 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Niederbergstraße"@de ; + foaf:focus wd:Q1464254 . + +nwbib-spatial:Q27901870 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Berzbach"@de ; + foaf:focus wd:Q27901870 . + +nwbib-spatial:Q64951002 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Salmorth"@de ; + foaf:focus wd:Q64951002 . + +nwbib-spatial:Q814683 + a skos:Concept ; + skos:broader nwbib-spatial:Q10935 ; + skos:inScheme ; + skos:prefLabel "Beifang"@de ; + foaf:focus wd:Q814683 . + +nwbib-spatial:Q1250611 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326757 ; + skos:inScheme ; + skos:prefLabel "Dorstfeld"@de ; + foaf:focus wd:Q1250611 . + +nwbib-spatial:Q1987648 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Niederbreidenbach"@de ; + foaf:focus wd:Q1987648 . + +nwbib-spatial:Q1325222 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Elberfeld (Stadtbezirk)"@de ; + foaf:focus wd:Q1325222 . + +nwbib-spatial:Q1698414 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Müsen"@de ; + foaf:focus wd:Q1698414 . + +nwbib-spatial:Q1254103 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Hürtgen"@de ; + foaf:focus wd:Q1254103 . + +nwbib-spatial:Q2505754 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Vrasselt"@de ; + foaf:focus wd:Q2505754 . + +nwbib-spatial:Q2114412 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Prummern"@de ; + foaf:focus wd:Q2114412 . + +nwbib-spatial:Q991970 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen"@de ; + foaf:focus wd:Q991970 . + +nwbib-spatial:Q1805041 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Langeneicke"@de ; + foaf:focus wd:Q1805041 . + +nwbib-spatial:Q1626140 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Hommersum"@de ; + foaf:focus wd:Q1626140 . + +nwbib-spatial:Q33133655 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Neuengeseke"@de ; + foaf:focus wd:Q33133655 . + +nwbib-spatial:Q897472 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Brake"@de ; + foaf:focus wd:Q897472 . + +nwbib-spatial:Q1552972 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Gubisrath"@de ; + foaf:focus wd:Q1552972 . + +nwbib-spatial:Q2254325 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Schwarzmaar"@de ; + foaf:focus wd:Q2254325 . + +nwbib-spatial:Q2647416 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Alkenrath"@de ; + foaf:focus wd:Q2647416 . + +nwbib-spatial:Q1385691 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Glehn"@de ; + foaf:focus wd:Q1385691 . + +nwbib-spatial:Q6597667 + a skos:Concept ; + skos:broader nwbib-spatial:Q11331 ; + skos:inScheme ; + skos:prefLabel "Asbeck"@de ; + foaf:focus wd:Q6597667 . + +nwbib-spatial:Q3821604 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn-Wittgenstein-Wittgenstein (bis 1657)"@de ; + foaf:focus wd:Q3821604 . + +nwbib-spatial:Q1250584 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Benninghofen"@de ; + foaf:focus wd:Q1250584 . + +nwbib-spatial:Q779108 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Höfen"@de ; + foaf:focus wd:Q779108 . + +nwbib-spatial:Q19687905 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Frielinghausen"@de ; + foaf:focus wd:Q19687905 . + +nwbib-spatial:Q1800778 + a skos:Concept ; + skos:broader nwbib-spatial:Q3905 ; + skos:inScheme ; + skos:prefLabel "Rentfort"@de ; + foaf:focus wd:Q1800778 . + +nwbib-spatial:Q1020946 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Büren"@de ; + foaf:focus wd:Q1020946 . + +nwbib-spatial:Q1533439 + a skos:Concept ; + skos:broader nwbib-spatial:Q14863 ; + skos:inScheme ; + skos:prefLabel "Ulenburg"@de ; + foaf:focus wd:Q1533439 . + +nwbib-spatial:Q1366459 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Schleiden (bis 1971)"@de ; + foaf:focus wd:Q1366459 . + +nwbib-spatial:Q151621 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Giesenkirchen"@de ; + foaf:focus wd:Q151621 . + +nwbib-spatial:Q1587067 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Hartefeld"@de ; + foaf:focus wd:Q1587067 . + +nwbib-spatial:Q19834165 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Afferde"@de ; + foaf:focus wd:Q19834165 . + +nwbib-spatial:Q902128 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Braunsrath"@de ; + foaf:focus wd:Q902128 . + +nwbib-spatial:Q1627261 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Villigst"@de ; + foaf:focus wd:Q1627261 . + +nwbib-spatial:Q56395068 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Lippe"@de ; + foaf:focus wd:Q56395068 . + +nwbib-spatial:Q1271134 + a skos:Concept ; + skos:broader nwbib-spatial:Q1719793 ; + skos:inScheme ; + skos:prefLabel "Dönberg"@de ; + foaf:focus wd:Q1271134 . + +nwbib-spatial:Q1787411 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Monschau (bis 1971)"@de ; + foaf:focus wd:Q1787411 . + +nwbib-spatial:Q1795755 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Klettenberg"@de ; + foaf:focus wd:Q1795755 . + +nwbib-spatial:Q1534645 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Nippes"@de ; + foaf:focus wd:Q1534645 . + +nwbib-spatial:Q1499802 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140331 ; + skos:inScheme ; + skos:prefLabel "Beckhausen"@de ; + foaf:focus wd:Q1499802 . + +nwbib-spatial:Q56008581 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Bell"@de ; + foaf:focus wd:Q56008581 . + +nwbib-spatial:Q1925987 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Metternich (Weilerswist)"@de ; + foaf:focus wd:Q1925987 . + +nwbib-spatial:Q1326799 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803603 ; + skos:inScheme ; + skos:prefLabel "Horst"@de ; + foaf:focus wd:Q1326799 . + +nwbib-spatial:Q1356971 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Ernsdorf"@de ; + foaf:focus wd:Q1356971 . + +nwbib-spatial:Q1988748 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Niederwennerscheid"@de ; + foaf:focus wd:Q1988748 . + +nwbib-spatial:Q15815887 + a skos:Concept ; + skos:broader nwbib-spatial:Q6968 ; + skos:inScheme ; + skos:prefLabel "Honschaft Millrath"@de ; + foaf:focus wd:Q15815887 . + +nwbib-spatial:Q1604680 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Hamm (bis 1930)"@de ; + foaf:focus wd:Q1604680 . + +nwbib-spatial:Q831067 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 10 (Düsseldorf)"@de ; + foaf:focus wd:Q831067 . + +nwbib-spatial:Q1248779 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Milse"@de ; + foaf:focus wd:Q1248779 . + +nwbib-spatial:Q2534952 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Voßhagen"@de ; + foaf:focus wd:Q2534952 . + +nwbib-spatial:Q2034601 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Ossendorf"@de ; + foaf:focus wd:Q2034601 . + +nwbib-spatial:Q895356 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Bovert"@de ; + foaf:focus wd:Q895356 . + +nwbib-spatial:Q33514680 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Wemb"@de ; + foaf:focus wd:Q33514680 . + +nwbib-spatial:Q1321518 + a skos:Concept ; + skos:broader nwbib-spatial:Q200640 ; + skos:inScheme ; + skos:prefLabel "Hochmoor (Gescher)"@de ; + foaf:focus wd:Q1321518 . + +nwbib-spatial:Q56009018 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Lürrip"@de ; + foaf:focus wd:Q56009018 . + +nwbib-spatial:Q1523684 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Chorweiler"@de ; + foaf:focus wd:Q1523684 . + +nwbib-spatial:Q1548555 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Großeneder"@de ; + foaf:focus wd:Q1548555 . + +nwbib-spatial:Q56042007 + a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Westsauerland"@de ; + foaf:focus wd:Q56042007 . + +nwbib-spatial:Q1453792 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Freialdenhoven"@de ; + foaf:focus wd:Q1453792 . + +nwbib-spatial:Q1184710 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Delrath"@de ; + foaf:focus wd:Q1184710 . + +nwbib-spatial:Q878277 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Stotzheim"@de ; + foaf:focus wd:Q878277 . + +nwbib-spatial:Q881607 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Blankenheimerdorf"@de ; + foaf:focus wd:Q881607 . + +nwbib-spatial:Q1959083 + a skos:Concept ; + skos:broader nwbib-spatial:Q1959115 ; + skos:inScheme ; + skos:prefLabel "Angelmodde"@de ; + foaf:focus wd:Q1959083 . + +nwbib-spatial:Q200836 + a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334028" ; + skos:prefLabel "Simmerath"@de ; + foaf:focus wd:Q200836 . + +nwbib-spatial:Q2233712 + a skos:Concept ; + skos:broader nwbib-spatial:Q3985 ; + skos:inScheme ; + skos:prefLabel "Scherlebeck"@de ; + foaf:focus wd:Q2233712 . + +nwbib-spatial:Q1623663 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Hohenbudberg"@de ; + foaf:focus wd:Q1623663 . + +nwbib-spatial:Q1795734 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Buchforst"@de ; + foaf:focus wd:Q1795734 . + +nwbib-spatial:Q27027146 + a skos:Concept ; + skos:broader nwbib-spatial:Q243177 ; + skos:inScheme ; + skos:prefLabel "Keppeln"@de ; + foaf:focus wd:Q27027146 . + +nwbib-spatial:Q1471934 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Sinthern"@de ; + foaf:focus wd:Q1471934 . + +nwbib-spatial:Q5965 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05974" ; + skos:prefLabel "Kreis Soest"@de ; + foaf:focus wd:Q5965 . + +nwbib-spatial:Q1507753 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Heiderhof"@de ; + foaf:focus wd:Q1507753 . + +nwbib-spatial:Q1796876 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Kückelheim"@de ; + foaf:focus wd:Q1796876 . + +nwbib-spatial:Q1378663 + a skos:Concept ; + skos:broader nwbib-spatial:Q313969 ; + skos:inScheme ; + skos:prefLabel "Kreis Bünde (bis 1831)"@de ; + foaf:focus wd:Q1378663 . + +nwbib-spatial:Q2564772 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Westerhausen"@de ; + foaf:focus wd:Q2564772 . + +nwbib-spatial:Q50778182 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Scherpemich"@de ; + foaf:focus wd:Q50778182 . + +nwbib-spatial:Q212520 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Niederrheinisches Tiefland"@de ; + foaf:focus wd:Q212520 . + +nwbib-spatial:Q865488 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Birkelbach"@de ; + foaf:focus wd:Q865488 . + +nwbib-spatial:Q200894 + a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334008" ; + skos:prefLabel "Baesweiler"@de ; + foaf:focus wd:Q200894 . + +nwbib-spatial:Q1875959 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Materborn"@de ; + foaf:focus wd:Q1875959 . + +nwbib-spatial:Q1695433 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Scheiderhöhe"@de ; + foaf:focus wd:Q1695433 . + +nwbib-spatial:Q1446244 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Waldorf"@de ; + foaf:focus wd:Q1446244 . + +nwbib-spatial:Q2526320 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Vilvenich"@de ; + foaf:focus wd:Q2526320 . + +nwbib-spatial:Q1750246 + a skos:Concept ; + skos:broader nwbib-spatial:Q1761685 ; + skos:inScheme ; + skos:prefLabel "Coerde"@de ; + foaf:focus wd:Q1750246 . + +nwbib-spatial:Q1258067 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Nettelstedt"@de ; + foaf:focus wd:Q1258067 . + +nwbib-spatial:Q1221275 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Dieringhausen"@de ; + foaf:focus wd:Q1221275 . + +nwbib-spatial:Q2170995 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Schneppenheim"@de ; + foaf:focus wd:Q2170995 . + +nwbib-spatial:Q884073 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Bliesheim"@de ; + foaf:focus wd:Q884073 . + +nwbib-spatial:Q117898 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Pivitsheide V. H."@de ; + foaf:focus wd:Q117898 . + +nwbib-spatial:Q544579 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn-Altenkirchen (bis 1803)"@de ; + foaf:focus wd:Q544579 . + +nwbib-spatial:Q56007789 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn-Wittgenstein"@de ; + foaf:focus wd:Q56007789 . + +nwbib-spatial:Q1670477 + a skos:Concept ; + skos:broader nwbib-spatial:Q14939 ; + skos:inScheme ; + skos:prefLabel "Schapdetten"@de ; + foaf:focus wd:Q1670477 . + +nwbib-spatial:Q1989307 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Nierswalde"@de ; + foaf:focus wd:Q1989307 . + +nwbib-spatial:Q1119843 + a skos:Concept ; + skos:broader nwbib-spatial:Q182753 ; + skos:inScheme ; + skos:prefLabel "Tengern"@de ; + foaf:focus wd:Q1119843 . + +nwbib-spatial:Q17124794 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Moese"@de ; + foaf:focus wd:Q17124794 . + +nwbib-spatial:Q47462234 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Recklinghausen"@de ; + foaf:focus wd:Q47462234 . + +nwbib-spatial:Q811538 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Baumen"@de ; + foaf:focus wd:Q811538 . + +nwbib-spatial:Q1788909 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Neuenkirchen"@de ; + foaf:focus wd:Q1788909 . + +nwbib-spatial:Q3007 a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Altstadt-Süd"@de ; + foaf:focus wd:Q3007 . + +nwbib-spatial:Q1281908 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Eckum"@de ; + foaf:focus wd:Q1281908 . + +nwbib-spatial:Q200247 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554040" ; + skos:prefLabel "Raesfeld"@de ; + foaf:focus wd:Q200247 . + +nwbib-spatial:Q1884 a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358008" ; + skos:prefLabel "Düren"@de ; + foaf:focus wd:Q1884 . + +nwbib-spatial:Q1225940 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Kirchherten"@de ; + foaf:focus wd:Q1225940 . + +nwbib-spatial:Q1795771 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Urbach"@de ; + foaf:focus wd:Q1795771 . + +nwbib-spatial:Q1659265 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Ilvese"@de ; + foaf:focus wd:Q1659265 . + +nwbib-spatial:Q897382 + a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Ehrenfeld"@de ; + foaf:focus wd:Q897382 . + +nwbib-spatial:Q20826156 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573614 ; + skos:inScheme ; + skos:prefLabel "Herringen"@de ; + foaf:focus wd:Q20826156 . + +nwbib-spatial:Q10938 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978008" ; + skos:prefLabel "Bönen"@de ; + foaf:focus wd:Q10938 . + +nwbib-spatial:Q1262603 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Thieringhausen"@de ; + foaf:focus wd:Q1262603 . + +nwbib-spatial:Q56008369 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Ruhrfeld"@de ; + foaf:focus wd:Q56008369 . + +nwbib-spatial:Q895229 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Bourheim"@de ; + foaf:focus wd:Q895229 . + +nwbib-spatial:Q1524784 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Gimmersdorf"@de ; + foaf:focus wd:Q1524784 . + +nwbib-spatial:Q857181 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Biefang"@de ; + foaf:focus wd:Q857181 . + +nwbib-spatial:Q1646561 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Krekel"@de ; + foaf:focus wd:Q1646561 . + +nwbib-spatial:Q1494531 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Garsdorf"@de ; + foaf:focus wd:Q1494531 . + +nwbib-spatial:Q461819 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Ameln"@de ; + foaf:focus wd:Q461819 . + +nwbib-spatial:Q47462213 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Münster"@de ; + foaf:focus wd:Q47462213 . + +nwbib-spatial:Q2535484 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Vussem"@de ; + foaf:focus wd:Q2535484 . + +nwbib-spatial:Q1987680 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Niederdielfen"@de ; + foaf:focus wd:Q1987680 . + +nwbib-spatial:Q723699 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Asendorf"@de ; + foaf:focus wd:Q723699 . + +nwbib-spatial:Q1443311 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Heißen"@de ; + foaf:focus wd:Q1443311 . + +nwbib-spatial:Q11120 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974052" ; + skos:prefLabel "Werl"@de ; + foaf:focus wd:Q11120 . + +nwbib-spatial:Q1658102 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Ikenhausen"@de ; + foaf:focus wd:Q1658102 . + +nwbib-spatial:Q893544 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Borghees"@de ; + foaf:focus wd:Q893544 . + +nwbib-spatial:Q2147516 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Rhein-Wupper-Kreis (bis 1974)"@de ; + foaf:focus wd:Q2147516 . + +nwbib-spatial:Q688373 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Kloster Werden"@de ; + foaf:focus wd:Q688373 . + +nwbib-spatial:Q153757 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Graurheindorf"@de ; + foaf:focus wd:Q153757 . + +nwbib-spatial:Q1573614 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Herringen"@de ; + foaf:focus wd:Q1573614 . + +nwbib-spatial:Q955007 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140253 ; + skos:inScheme ; + skos:prefLabel "Scholven"@de ; + foaf:focus wd:Q955007 . + +nwbib-spatial:Q1312504 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Schweinheim"@de ; + foaf:focus wd:Q1312504 . + +nwbib-spatial:Q2015379 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Ofden"@de ; + foaf:focus wd:Q2015379 . + +nwbib-spatial:Q1987595 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Niederbachem"@de ; + foaf:focus wd:Q1987595 . + +nwbib-spatial:Q1525990 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Vahlhausen"@de ; + foaf:focus wd:Q1525990 . + +nwbib-spatial:Q2009808 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Oberhees"@de ; + foaf:focus wd:Q2009808 . + +nwbib-spatial:Q811575 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Baumheide"@de ; + foaf:focus wd:Q811575 . + +nwbib-spatial:Q997015 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Brünen"@de ; + foaf:focus wd:Q997015 . + +nwbib-spatial:Q1623594 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Hoheleye"@de ; + foaf:focus wd:Q1623594 . + +nwbib-spatial:Q3821487 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn-Wittgenstein-Berleburg (bis 1806)"@de ; + foaf:focus wd:Q3821487 . + +nwbib-spatial:Q1295 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05913" ; + skos:prefLabel "Dortmund"@de ; + foaf:focus wd:Q1295 . + +nwbib-spatial:Q219964 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Zons"@de ; + foaf:focus wd:Q219964 . + +nwbib-spatial:Q1742395 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Kipshoven"@de ; + foaf:focus wd:Q1742395 . + +nwbib-spatial:Q242149 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762016" ; + skos:prefLabel "Brakel"@de ; + foaf:focus wd:Q242149 . + +nwbib-spatial:Q2443 a skos:Concept ; + skos:broader nwbib-spatial:Q1132 ; + skos:inScheme ; + skos:prefLabel "Vorhelm"@de ; + foaf:focus wd:Q2443 . + +nwbib-spatial:Q27916647 + a skos:Concept ; + skos:broader nwbib-spatial:Q254774 ; + skos:inScheme ; + skos:prefLabel "Gielsdorf"@de ; + foaf:focus wd:Q27916647 . + +nwbib-spatial:Q26208587 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Obrighoven-Lackhausen"@de ; + foaf:focus wd:Q26208587 . + +nwbib-spatial:Q19310542 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Uedelhoven"@de ; + foaf:focus wd:Q19310542 . + +nwbib-spatial:Q1295229 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Hagen (Viersen)"@de ; + foaf:focus wd:Q1295229 . + +nwbib-spatial:Q1625258 + a skos:Concept ; + skos:broader nwbib-spatial:Q14949 ; + skos:inScheme ; + skos:prefLabel "Holtwick"@de ; + foaf:focus wd:Q1625258 . + +nwbib-spatial:Q153736 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Lessenich/Meßdorf"@de ; + foaf:focus wd:Q153736 . + +nwbib-spatial:Q1588183 + a skos:Concept ; + skos:broader nwbib-spatial:Q225432 ; + skos:inScheme ; + skos:prefLabel "Sende"@de ; + foaf:focus wd:Q1588183 . + +nwbib-spatial:Q978734 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Rimbeck"@de ; + foaf:focus wd:Q978734 . + +nwbib-spatial:Q889291 + a skos:Concept ; + skos:broader nwbib-spatial:Q881495 ; + skos:inScheme ; + skos:prefLabel "Bockum"@de ; + foaf:focus wd:Q889291 . + +nwbib-spatial:Q2176735 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Rurberg"@de ; + foaf:focus wd:Q2176735 . + +nwbib-spatial:Q1452958 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sternberg"@de ; + foaf:focus wd:Q1452958 . + +nwbib-spatial:Q323607 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 4 (Düsseldorf)"@de ; + foaf:focus wd:Q323607 . + +nwbib-spatial:Q642199 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Stetternich"@de ; + foaf:focus wd:Q642199 . + +nwbib-spatial:Q1963851 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Pier (bis 2015)"@de ; + foaf:focus wd:Q1963851 . + +nwbib-spatial:Q819732 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de ; + foaf:focus wd:Q819732 . + +nwbib-spatial:Q1271023 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Döhren"@de ; + foaf:focus wd:Q1271023 . + +nwbib-spatial:Q1368638 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Ostviertel"@de ; + foaf:focus wd:Q1368638 . + +nwbib-spatial:Q1879713 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Löllinghausen"@de ; + foaf:focus wd:Q1879713 . + +nwbib-spatial:Q205465 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Selgersdorf"@de ; + foaf:focus wd:Q205465 . + +nwbib-spatial:Q1607101 + a skos:Concept ; + skos:broader nwbib-spatial:Q182691 ; + skos:inScheme ; + skos:prefLabel "Isenstedt"@de ; + foaf:focus wd:Q1607101 . + +nwbib-spatial:Q1493739 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Gerkerath"@de ; + foaf:focus wd:Q1493739 . + +nwbib-spatial:Q2899 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05117" ; + skos:prefLabel "Mülheim an der Ruhr"@de ; + foaf:focus wd:Q2899 . + +nwbib-spatial:Q14929 a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166012" ; + skos:prefLabel "Kempen"@de ; + foaf:focus wd:Q14929 . + +nwbib-spatial:Q534481 + a skos:Concept ; + skos:broader nwbib-spatial:Q200138 ; + skos:inScheme ; + skos:prefLabel "Hergarten"@de ; + foaf:focus wd:Q534481 . + +nwbib-spatial:Q704209 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Arsbeck"@de ; + foaf:focus wd:Q704209 . + +nwbib-spatial:Q50107681 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Hasenbach"@de ; + foaf:focus wd:Q50107681 . + +nwbib-spatial:Q1390848 + a skos:Concept ; + skos:broader nwbib-spatial:Q10958 ; + skos:inScheme ; + skos:prefLabel "Salchendorf"@de ; + foaf:focus wd:Q1390848 . + +nwbib-spatial:N68 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "68" ; + skos:prefLabel "Grafschaft Mark"@de ; + foaf:focus wd:Q700198 . + +nwbib-spatial:Q1879628 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Löcken"@de ; + foaf:focus wd:Q1879628 . + +nwbib-spatial:Q2161088 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Rodert"@de ; + foaf:focus wd:Q2161088 . + +nwbib-spatial:Q1583744 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Hanselaer"@de ; + foaf:focus wd:Q1583744 . + +nwbib-spatial:Q1725602 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Obermörmter"@de ; + foaf:focus wd:Q1725602 . + +nwbib-spatial:Q22565057 + a skos:Concept ; + skos:broader nwbib-spatial:Q243337 ; + skos:inScheme ; + skos:prefLabel "Sevelen"@de ; + foaf:focus wd:Q22565057 . + +nwbib-spatial:Q1514479 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Gernsdorf"@de ; + foaf:focus wd:Q1514479 . + +nwbib-spatial:Q653282 + a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:prefLabel "Kreis Beckum (bis 1974)"@de ; + foaf:focus wd:Q653282 . + +nwbib-spatial:Q1464557 + a skos:Concept ; + skos:broader nwbib-spatial:Q1232709 ; + skos:inScheme ; + skos:prefLabel "Heckinghausen"@de ; + foaf:focus wd:Q1464557 . + +nwbib-spatial:Q47037449 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Bergerhausen"@de ; + foaf:focus wd:Q47037449 . + +nwbib-spatial:Q1511953 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Möllbergen"@de ; + foaf:focus wd:Q1511953 . + +nwbib-spatial:Q1297577 + a skos:Concept ; + skos:broader nwbib-spatial:Q200190 ; + skos:inScheme ; + skos:prefLabel "Eggerode"@de ; + foaf:focus wd:Q1297577 . + +nwbib-spatial:Q2555026 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Weide (Bad Laasphe)"@de ; + foaf:focus wd:Q2555026 . + +nwbib-spatial:Q1694116 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Koslar"@de ; + foaf:focus wd:Q1694116 . + +nwbib-spatial:Q2675355 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Deutmecke"@de ; + foaf:focus wd:Q2675355 . + +nwbib-spatial:Q896387 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Stommeln"@de ; + foaf:focus wd:Q896387 . + +nwbib-spatial:Q1633730 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Huckenbröl"@de ; + foaf:focus wd:Q1633730 . + +nwbib-spatial:Q1468675 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Straeten"@de ; + foaf:focus wd:Q1468675 . + +nwbib-spatial:Q20820284 + a skos:Concept ; + skos:broader nwbib-spatial:Q449632 ; + skos:inScheme ; + skos:prefLabel "Aldenrade"@de ; + foaf:focus wd:Q20820284 . + +nwbib-spatial:Q1451370 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Frasselt"@de ; + foaf:focus wd:Q1451370 . + +nwbib-spatial:Q151319 + a skos:Concept ; + skos:broader nwbib-spatial:Q200018 ; + skos:inScheme ; + skos:prefLabel "Wenau"@de ; + foaf:focus wd:Q151319 . + +nwbib-spatial:Q10933 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978012" ; + skos:prefLabel "Fröndenberg/Ruhr"@de ; + foaf:focus wd:Q10933 . + +nwbib-spatial:Q29960537 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Schultheismühle"@de ; + foaf:focus wd:Q29960537 . + +nwbib-spatial:N47 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "47" ; + skos:prefLabel "Grafschaft, Herzogtum Geldern"@de ; + foaf:focus wd:Q152420 . + +nwbib-spatial:Q1625216 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Holtheim"@de ; + foaf:focus wd:Q1625216 . + +nwbib-spatial:Q183052 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770044" ; + skos:prefLabel "Stemwede"@de ; + foaf:focus wd:Q183052 . + +nwbib-spatial:Q200783 + a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334020" ; + skos:prefLabel "Monschau"@de ; + foaf:focus wd:Q200783 . + +nwbib-spatial:Q1377951 + a skos:Concept ; + skos:broader nwbib-spatial:Q11050 ; + skos:inScheme ; + skos:prefLabel "Lichtenberg"@de ; + foaf:focus wd:Q1377951 . + +nwbib-spatial:Q2133595 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Rauxel"@de ; + foaf:focus wd:Q2133595 . + +nwbib-spatial:Q44290573 + a skos:Concept ; + skos:broader nwbib-spatial:Q200581 ; + skos:inScheme ; + skos:prefLabel "Büngern"@de ; + foaf:focus wd:Q44290573 . + +nwbib-spatial:Q1823811 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Lieberhausen"@de ; + foaf:focus wd:Q1823811 . + +nwbib-spatial:Q1651003 + a skos:Concept ; + skos:broader nwbib-spatial:Q225774 ; + skos:inScheme ; + skos:prefLabel "Hörste"@de ; + foaf:focus wd:Q1651003 . + +nwbib-spatial:Q1568387 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Hagen"@de ; + foaf:focus wd:Q1568387 . + +nwbib-spatial:Q2942 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05122" ; + skos:prefLabel "Solingen"@de ; + foaf:focus wd:Q2942 . + +nwbib-spatial:Q1343424 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Wülfte"@de ; + foaf:focus wd:Q1343424 . + +nwbib-spatial:Q884445 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Duisburg-Süd (Stadtbezirk)"@de ; + foaf:focus wd:Q884445 . + +nwbib-spatial:Q2016458 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Ohl"@de ; + foaf:focus wd:Q2016458 . + +nwbib-spatial:Q255416 + a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162012" ; + skos:prefLabel "Jüchen"@de ; + foaf:focus wd:Q255416 . + +nwbib-spatial:Q200698 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Glehn"@de ; + foaf:focus wd:Q200698 . + +nwbib-spatial:Q1243986 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Niederrheinische Bucht"@de ; + foaf:focus wd:Q1243986 . + +nwbib-spatial:Q1738258 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Kellershohn"@de ; + foaf:focus wd:Q1738258 . + +nwbib-spatial:Q2512937 + a skos:Concept ; + skos:broader nwbib-spatial:Q14926 ; + skos:inScheme ; + skos:prefLabel "Venne"@de ; + foaf:focus wd:Q2512937 . + +nwbib-spatial:Q1281876 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Eckmannshausen"@de ; + foaf:focus wd:Q1281876 . + +nwbib-spatial:Q2380291 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Süchterscheid"@de ; + foaf:focus wd:Q2380291 . + +nwbib-spatial:Q4606 a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Niederau"@de ; + foaf:focus wd:Q4606 . + +nwbib-spatial:Q995744 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Bröl"@de ; + foaf:focus wd:Q995744 . + +nwbib-spatial:Q10912 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966028" ; + skos:prefLabel "Wenden"@de ; + foaf:focus wd:Q10912 . + +nwbib-spatial:Q15055866 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Drüpt"@de ; + foaf:focus wd:Q15055866 . + +nwbib-spatial:Q2498723 + a skos:Concept ; + skos:broader nwbib-spatial:Q831039 ; + skos:inScheme ; + skos:prefLabel "Unterrath"@de ; + foaf:focus wd:Q2498723 . + +nwbib-spatial:Q50607911 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Klieve"@de ; + foaf:focus wd:Q50607911 . + +nwbib-spatial:Q2249233 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Schotthock"@de ; + foaf:focus wd:Q2249233 . + +nwbib-spatial:Q1722101 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Kaldauen"@de ; + foaf:focus wd:Q1722101 . + +nwbib-spatial:Q1371978 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Kleinenbroich"@de ; + foaf:focus wd:Q1371978 . + +nwbib-spatial:Q1451890 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Frauenthal"@de ; + foaf:focus wd:Q1451890 . + +nwbib-spatial:Q1860350 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Steinhorst"@de ; + foaf:focus wd:Q1860350 . + +nwbib-spatial:Q1448338 + a skos:Concept ; + skos:broader nwbib-spatial:Q14940 ; + skos:inScheme ; + skos:prefLabel "Meckinghoven"@de ; + foaf:focus wd:Q1448338 . + +nwbib-spatial:Q15715108 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Altstadt"@de ; + foaf:focus wd:Q15715108 . + +nwbib-spatial:Q1520072 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Tenholt"@de ; + foaf:focus wd:Q1520072 . + +nwbib-spatial:Q54785790 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Überruhr-Holthausen"@de ; + foaf:focus wd:Q54785790 . + +nwbib-spatial:Q1687167 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Oberholzklau"@de ; + foaf:focus wd:Q1687167 . + +nwbib-spatial:Q1524673 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Gilsbach"@de ; + foaf:focus wd:Q1524673 . + +nwbib-spatial:Q2539433 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Wahlbach"@de ; + foaf:focus wd:Q2539433 . + +nwbib-spatial:Q875774 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Friedrichstadt"@de ; + foaf:focus wd:Q875774 . + +nwbib-spatial:Q26208582 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Lackhausen"@de ; + foaf:focus wd:Q26208582 . + +nwbib-spatial:Q1311631 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Meindorf"@de ; + foaf:focus wd:Q1311631 . + +nwbib-spatial:Q4181 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374012" ; + skos:prefLabel "Gummersbach"@de ; + foaf:focus wd:Q4181 . + +nwbib-spatial:Q1355865 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Tente"@de ; + foaf:focus wd:Q1355865 . + +nwbib-spatial:Q519650 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140253 ; + skos:inScheme ; + skos:prefLabel "Buer"@de ; + foaf:focus wd:Q519650 . + +nwbib-spatial:Q1736409 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Rehringhausen"@de ; + foaf:focus wd:Q1736409 . + +nwbib-spatial:Q889058 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Eppendorf"@de ; + foaf:focus wd:Q889058 . + +nwbib-spatial:Q3978 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162004" ; + skos:prefLabel "Dormagen"@de ; + foaf:focus wd:Q3978 . + +nwbib-spatial:N05 a skos:Concept ; + skos:broader nwbib-spatial:N0 ; + skos:inScheme ; + skos:notation "05" ; + skos:prefLabel "Regierungsbezirke, Kreise, Orte"@de . + +nwbib-spatial:Q1334185 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Elvekum"@de ; + foaf:focus wd:Q1334185 . + +nwbib-spatial:Q2168602 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Rothe (Beverungen)"@de ; + foaf:focus wd:Q2168602 . + +nwbib-spatial:Q55500735 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Esbeck"@de ; + foaf:focus wd:Q55500735 . + +nwbib-spatial:Q1122285 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Ferndorf"@de ; + foaf:focus wd:Q1122285 . + +nwbib-spatial:Q445288 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Altschermbeck"@de ; + foaf:focus wd:Q445288 . + +nwbib-spatial:Q2271723 + a skos:Concept ; + skos:broader nwbib-spatial:Q14934 ; + skos:inScheme ; + skos:prefLabel "Seppenrade"@de ; + foaf:focus wd:Q2271723 . + +nwbib-spatial:Q1321879 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Leese"@de ; + foaf:focus wd:Q1321879 . + +nwbib-spatial:N63 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "63" ; + skos:prefLabel "Fürstbistum und Hochstift Paderborn"@de ; + foaf:focus wd:Q649192 . + +nwbib-spatial:Q2815 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570012" ; + skos:prefLabel "Beelen"@de ; + foaf:focus wd:Q2815 . + +nwbib-spatial:Q882086 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Nordstadt"@de ; + foaf:focus wd:Q882086 . + +nwbib-spatial:Q19259110 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Altfinnentrop"@de ; + foaf:focus wd:Q19259110 . + +nwbib-spatial:Q1309525 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Königsdorf"@de ; + foaf:focus wd:Q1309525 . + +nwbib-spatial:Q896382 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Orsoy"@de ; + foaf:focus wd:Q896382 . + +nwbib-spatial:Q2416466 + a skos:Concept ; + skos:broader nwbib-spatial:Q32750 ; + skos:inScheme ; + skos:prefLabel "Theenhausen"@de ; + foaf:focus wd:Q2416466 . + +nwbib-spatial:Q1544862 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Grefrath"@de ; + foaf:focus wd:Q1544862 . + +nwbib-spatial:Q47190461 + a skos:Concept ; + skos:broader nwbib-spatial:Q14946 ; + skos:inScheme ; + skos:prefLabel "Gerleve"@de ; + foaf:focus wd:Q47190461 . + +nwbib-spatial:Q1491338 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Rosauel"@de ; + foaf:focus wd:Q1491338 . + +nwbib-spatial:Q1786041 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Merkenich"@de ; + foaf:focus wd:Q1786041 . + +nwbib-spatial:Q996844 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Brügge"@de ; + foaf:focus wd:Q996844 . + +nwbib-spatial:Q1543152 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Lemgo (bis 1972)"@de ; + foaf:focus wd:Q1543152 . + +nwbib-spatial:Q241978 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762012" ; + skos:prefLabel "Borgentreich"@de ; + foaf:focus wd:Q241978 . + +nwbib-spatial:Q787920 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Hermülheim"@de ; + foaf:focus wd:Q787920 . + +nwbib-spatial:Q1110161 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Lüllingen"@de ; + foaf:focus wd:Q1110161 . + +nwbib-spatial:Q14903 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170044" ; + skos:prefLabel "Voerde"@de ; + foaf:focus wd:Q14903 . + +nwbib-spatial:Q1652076 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Hücheln"@de ; + foaf:focus wd:Q1652076 . + +nwbib-spatial:N42 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "42" ; + skos:prefLabel "Kurfürstentum und Erzbistum Köln"@de ; + foaf:focus wd:Q7904317 . + +nwbib-spatial:Q876248 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Kalkum"@de ; + foaf:focus wd:Q876248 . + +nwbib-spatial:Q1374344 + a skos:Concept ; + skos:broader nwbib-spatial:N07 ; + skos:inScheme ; + skos:prefLabel "Euregio Rhein-Maas-Nord (Sitz: Mönchengladbach)"@de ; + foaf:focus wd:Q1374344 . + +nwbib-spatial:Q1602083 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Helfe"@de ; + foaf:focus wd:Q1602083 . + +nwbib-spatial:Q57726512 + a skos:Concept ; + skos:broader nwbib-spatial:Q769183 ; + skos:inScheme ; + skos:prefLabel "Cronenberg"@de ; + foaf:focus wd:Q57726512 . + +nwbib-spatial:Q105745680 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Vornick"@de ; + foaf:focus wd:Q105745680 . + +nwbib-spatial:Q1734761 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Kneblinghausen"@de ; + foaf:focus wd:Q1734761 . + +nwbib-spatial:Q1172719 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Dattenfeld"@de ; + foaf:focus wd:Q1172719 . + +nwbib-spatial:Q320095 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Hüls"@de ; + foaf:focus wd:Q320095 . + +nwbib-spatial:Q117782 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Vahlhausen"@de ; + foaf:focus wd:Q117782 . + +nwbib-spatial:Q629048 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Breitenbruch"@de ; + foaf:focus wd:Q629048 . + +nwbib-spatial:Q63078887 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis An der Ruhr"@de ; + foaf:focus wd:Q63078887 . + +nwbib-spatial:Q437203 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Altenheerse"@de ; + foaf:focus wd:Q437203 . + +nwbib-spatial:Q2255282 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q2255282 . + +nwbib-spatial:Q59140331 + a skos:Concept ; + skos:broader nwbib-spatial:Q2765 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gelsenkirchen-West"@de ; + foaf:focus wd:Q59140331 . + +nwbib-spatial:Q1325414 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Elbrinxen"@de ; + foaf:focus wd:Q1325414 . + +nwbib-spatial:Q151287 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Brand (Stadtbezirk)"@de ; + foaf:focus wd:Q151287 . + +nwbib-spatial:Q889074 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973016 ; + skos:inScheme ; + skos:prefLabel "Weitmar"@de ; + foaf:focus wd:Q889074 . + +nwbib-spatial:Q1917394 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Mehr"@de ; + foaf:focus wd:Q1917394 . + +nwbib-spatial:Q114559747 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Roder"@de ; + foaf:focus wd:Q114559747 . + +nwbib-spatial:Q917022 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Brill"@de ; + foaf:focus wd:Q917022 . + +nwbib-spatial:Q225002 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754040" ; + skos:prefLabel "Steinhagen"@de ; + foaf:focus wd:Q225002 . + +nwbib-spatial:Q868907 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Wewelsburg"@de ; + foaf:focus wd:Q868907 . + +nwbib-spatial:Q896823 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Gievenbeck"@de ; + foaf:focus wd:Q896823 . + +nwbib-spatial:Q257616 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Bochold"@de ; + foaf:focus wd:Q257616 . + +nwbib-spatial:Q1699891 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Höhenberg"@de ; + foaf:focus wd:Q1699891 . + +nwbib-spatial:Q2015199 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Oesdorf"@de ; + foaf:focus wd:Q2015199 . + +nwbib-spatial:Q1428910 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Nateln"@de ; + foaf:focus wd:Q1428910 . + +nwbib-spatial:Q14940 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562008" ; + skos:prefLabel "Datteln"@de ; + foaf:focus wd:Q14940 . + +nwbib-spatial:Q248483 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Oberdollendorf"@de ; + foaf:focus wd:Q248483 . + +nwbib-spatial:Q850187 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Bettrath-Hoven"@de ; + foaf:focus wd:Q850187 . + +nwbib-spatial:Q2779256 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Mesum"@de ; + foaf:focus wd:Q2779256 . + +nwbib-spatial:Q15450305 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Herne"@de ; + foaf:focus wd:Q15450305 . + +nwbib-spatial:Q17591153 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Pommenich"@de ; + foaf:focus wd:Q17591153 . + +nwbib-spatial:Q151266 + a skos:Concept ; + skos:broader nwbib-spatial:Q200743 ; + skos:inScheme ; + skos:prefLabel "Rott"@de ; + foaf:focus wd:Q151266 . + +nwbib-spatial:Q1395976 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Oberelvenich"@de ; + foaf:focus wd:Q1395976 . + +nwbib-spatial:Q1570999 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Halft"@de ; + foaf:focus wd:Q1570999 . + +nwbib-spatial:Q3973 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162008" ; + skos:prefLabel "Grevenbroich"@de ; + foaf:focus wd:Q3973 . + +nwbib-spatial:Q1988478 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Niederseßmar"@de ; + foaf:focus wd:Q1988478 . + +nwbib-spatial:Q1593462 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Heedfeld"@de ; + foaf:focus wd:Q1593462 . + +nwbib-spatial:Q1880470 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Lüttingen"@de ; + foaf:focus wd:Q1880470 . + +nwbib-spatial:Q1331608 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Elkeringhausen"@de ; + foaf:focus wd:Q1331608 . + +nwbib-spatial:Q893343 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Borbeck"@de ; + foaf:focus wd:Q893343 . + +nwbib-spatial:Q1815004 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Leifringhausen"@de ; + foaf:focus wd:Q1815004 . + +nwbib-spatial:Q1589008 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Hatterscheid"@de ; + foaf:focus wd:Q1589008 . + +nwbib-spatial:Q1824274 + a skos:Concept ; + skos:broader nwbib-spatial:Q2834 ; + skos:inScheme ; + skos:prefLabel "Liesborn"@de ; + foaf:focus wd:Q1824274 . + +nwbib-spatial:Q1259051 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Dringenberg"@de ; + foaf:focus wd:Q1259051 . + +nwbib-spatial:Q2037705 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Ottfingen"@de ; + foaf:focus wd:Q2037705 . + +nwbib-spatial:Q1538414 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Gorspen-Vahlsen"@de ; + foaf:focus wd:Q1538414 . + +nwbib-spatial:Q258254 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Heidhausen"@de ; + foaf:focus wd:Q258254 . + +nwbib-spatial:Q1618724 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Hillensberg"@de ; + foaf:focus wd:Q1618724 . + +nwbib-spatial:Q722335 + a skos:Concept ; + skos:broader nwbib-spatial:Q225774 ; + skos:inScheme ; + skos:prefLabel "Ascheloh"@de ; + foaf:focus wd:Q722335 . + +nwbib-spatial:Q7927 a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:notation "053" ; + skos:prefLabel "Regierungsbezirk Köln"@de ; + foaf:focus wd:Q7927 . + +nwbib-spatial:Q326318 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Bentrup"@de ; + foaf:focus wd:Q326318 . + +nwbib-spatial:Q1567171 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Hackenbroich"@de ; + foaf:focus wd:Q1567171 . + +nwbib-spatial:Q162890 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170052" ; + skos:prefLabel "Xanten"@de ; + foaf:focus wd:Q162890 . + +nwbib-spatial:Q819467 + a skos:Concept ; + skos:broader nwbib-spatial:Q11331 ; + skos:inScheme ; + skos:prefLabel "Berge"@de ; + foaf:focus wd:Q819467 . + +nwbib-spatial:Q1921016 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Menzelen"@de ; + foaf:focus wd:Q1921016 . + +nwbib-spatial:Q813664 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Becke"@de ; + foaf:focus wd:Q813664 . + +nwbib-spatial:Q56660352 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Achterhoek"@de ; + foaf:focus wd:Q56660352 . + +nwbib-spatial:Q2548428 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Wanlo"@de ; + foaf:focus wd:Q2548428 . + +nwbib-spatial:Q1618782 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Niese"@de ; + foaf:focus wd:Q1618782 . + +nwbib-spatial:Q16292802 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Repelen"@de ; + foaf:focus wd:Q16292802 . + +nwbib-spatial:Q1495366 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Lützel"@de ; + foaf:focus wd:Q1495366 . + +nwbib-spatial:Q2473635 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Uelzen"@de ; + foaf:focus wd:Q2473635 . + +nwbib-spatial:Q1604708 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Hembsen"@de ; + foaf:focus wd:Q1604708 . + +nwbib-spatial:Q6275 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05358" ; + skos:prefLabel "Kreis Düren"@de ; + foaf:focus wd:Q6275 . + +nwbib-spatial:Q20826937 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Süddinker"@de ; + foaf:focus wd:Q20826937 . + +nwbib-spatial:Q52545286 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Wildnis"@de ; + foaf:focus wd:Q52545286 . + +nwbib-spatial:Q15106862 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Asberg"@de ; + foaf:focus wd:Q15106862 . + +nwbib-spatial:Q1250649 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Kirchderne"@de ; + foaf:focus wd:Q1250649 . + +nwbib-spatial:Q48196317 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Milspe"@de ; + foaf:focus wd:Q48196317 . + +nwbib-spatial:Q702259 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325222 ; + skos:inScheme ; + skos:prefLabel "Elberfeld"@de ; + foaf:focus wd:Q702259 . + +nwbib-spatial:Q1659080 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Ilse"@de ; + foaf:focus wd:Q1659080 . + +nwbib-spatial:Q1382121 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Eversen"@de ; + foaf:focus wd:Q1382121 . + +nwbib-spatial:Q614447 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Anzhausen"@de ; + foaf:focus wd:Q614447 . + +nwbib-spatial:Q3846 a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770024" ; + skos:prefLabel "Minden"@de ; + foaf:focus wd:Q3846 . + +nwbib-spatial:Q1158611 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Damm"@de ; + foaf:focus wd:Q1158611 . + +nwbib-spatial:Q151282 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Zweifall"@de ; + foaf:focus wd:Q151282 . + +nwbib-spatial:Q1457938 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Senne"@de ; + foaf:focus wd:Q1457938 . + +nwbib-spatial:Q2309721 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Spich"@de ; + foaf:focus wd:Q2309721 . + +nwbib-spatial:Q14517846 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Wardhausen"@de ; + foaf:focus wd:Q14517846 . + +nwbib-spatial:Q1880258 + a skos:Concept ; + skos:broader nwbib-spatial:Q12464 ; + skos:inScheme ; + skos:prefLabel "Lüftelberg"@de ; + foaf:focus wd:Q1880258 . + +nwbib-spatial:Q880989 + a skos:Concept ; + skos:broader nwbib-spatial:Q1761685 ; + skos:inScheme ; + skos:prefLabel "Kinderhaus"@de ; + foaf:focus wd:Q880989 . + +nwbib-spatial:Q19299173 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Rimburg"@de ; + foaf:focus wd:Q19299173 . + +nwbib-spatial:Q146853 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Zange"@de ; + foaf:focus wd:Q146853 . + +nwbib-spatial:Q460550 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Amecke"@de ; + foaf:focus wd:Q460550 . + +nwbib-spatial:Q1917708 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Meierberg"@de ; + foaf:focus wd:Q1917708 . + +nwbib-spatial:Q1524435 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Nierentrop"@de ; + foaf:focus wd:Q1524435 . + +nwbib-spatial:Q2462352 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Twisteden"@de ; + foaf:focus wd:Q2462352 . + +nwbib-spatial:Q1550705 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Grundsteinheim"@de ; + foaf:focus wd:Q1550705 . + +nwbib-spatial:Q1370173 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Estinghausen"@de ; + foaf:focus wd:Q1370173 . + +nwbib-spatial:Q117045 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Dorlar"@de ; + foaf:focus wd:Q117045 . + +nwbib-spatial:Q1975079 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Paustenbach"@de ; + foaf:focus wd:Q1975079 . + +nwbib-spatial:Q1000355 + a skos:Concept ; + skos:broader nwbib-spatial:Q14936 ; + skos:inScheme ; + skos:prefLabel "Hembergen"@de ; + foaf:focus wd:Q1000355 . + +nwbib-spatial:Q18714017 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Hollenbock"@de ; + foaf:focus wd:Q18714017 . + +nwbib-spatial:Q1285735 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Winkel"@de ; + foaf:focus wd:Q1285735 . + +nwbib-spatial:Q1326530 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Neusserfurth"@de ; + foaf:focus wd:Q1326530 . + +nwbib-spatial:Q2531558 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Volkringhausen"@de ; + foaf:focus wd:Q2531558 . + +nwbib-spatial:Q1623813 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Kaule"@de ; + foaf:focus wd:Q1623813 . + +nwbib-spatial:Q822005 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Bermensfeld"@de ; + foaf:focus wd:Q822005 . + +nwbib-spatial:Q1638807 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Welldorf"@de ; + foaf:focus wd:Q1638807 . + +nwbib-spatial:Q1340873 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Freilingen"@de ; + foaf:focus wd:Q1340873 . + +nwbib-spatial:Q1627299 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Honsberg"@de ; + foaf:focus wd:Q1627299 . + +nwbib-spatial:Q5632 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958032" ; + skos:prefLabel "Meschede"@de ; + foaf:focus wd:Q5632 . + +nwbib-spatial:Q896712 + a skos:Concept ; + skos:broader nwbib-spatial:Q1959115 ; + skos:inScheme ; + skos:prefLabel "Gremmendorf"@de ; + foaf:focus wd:Q896712 . + +nwbib-spatial:Q4936257 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Westenfeld"@de ; + foaf:focus wd:Q4936257 . + +nwbib-spatial:Q815827 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Belle"@de ; + foaf:focus wd:Q815827 . + +nwbib-spatial:Q47457873 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Hultrop"@de ; + foaf:focus wd:Q47457873 . + +nwbib-spatial:Q1715175 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138453 ; + skos:inScheme ; + skos:prefLabel "Jöllenbeck"@de ; + foaf:focus wd:Q1715175 . + +nwbib-spatial:Q1735628 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Röttgen"@de ; + foaf:focus wd:Q1735628 . + +nwbib-spatial:Q991966 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen"@de ; + foaf:focus wd:Q991966 . + +nwbib-spatial:Q1271719 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Dümpten"@de ; + foaf:focus wd:Q1271719 . + +nwbib-spatial:Q1414798 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Obereip"@de ; + foaf:focus wd:Q1414798 . + +nwbib-spatial:Q315288 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Arnsberg (bis 1368)"@de ; + foaf:focus wd:Q315288 . + +nwbib-spatial:Q225432 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754036" ; + skos:prefLabel "Schloß Holte-Stukenbrock"@de ; + foaf:focus wd:Q225432 . + +nwbib-spatial:Q1805663 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Lirich"@de ; + foaf:focus wd:Q1805663 . + +nwbib-spatial:Q835940 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Roitzheim"@de ; + foaf:focus wd:Q835940 . + +nwbib-spatial:Q326313 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Hiddesen"@de ; + foaf:focus wd:Q326313 . + +nwbib-spatial:Q56008057 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Raadt"@de ; + foaf:focus wd:Q56008057 . + +nwbib-spatial:Q56374605 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Rheine"@de ; + foaf:focus wd:Q56374605 . + +nwbib-spatial:Q1879926 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Löwendorf"@de ; + foaf:focus wd:Q1879926 . + +nwbib-spatial:Q15061704 + a skos:Concept ; + skos:broader nwbib-spatial:Q4192 ; + skos:inScheme ; + skos:prefLabel "Weddinghofen"@de ; + foaf:focus wd:Q15061704 . + +nwbib-spatial:Q1295023 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Meggen"@de ; + foaf:focus wd:Q1295023 . + +nwbib-spatial:Q1021771 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Büschergrund"@de ; + foaf:focus wd:Q1021771 . + +nwbib-spatial:Q2132687 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Ratheim"@de ; + foaf:focus wd:Q2132687 . + +nwbib-spatial:Q59240473 + a skos:Concept ; + skos:broader nwbib-spatial:Q2871 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hagen-Nord"@de ; + foaf:focus wd:Q59240473 . + +nwbib-spatial:Q5995083 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Oberhagen"@de ; + foaf:focus wd:Q5995083 . + +nwbib-spatial:Q1169719 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Dürscheid"@de ; + foaf:focus wd:Q1169719 . + +nwbib-spatial:Q637807 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Oppum"@de ; + foaf:focus wd:Q637807 . + +nwbib-spatial:Q1673035 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Irmgarteichen"@de ; + foaf:focus wd:Q1673035 . + +nwbib-spatial:Q890256 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Boelerheide"@de ; + foaf:focus wd:Q890256 . + +nwbib-spatial:Q162089 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Hordel"@de ; + foaf:focus wd:Q162089 . + +nwbib-spatial:Q1333866 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Elspe"@de ; + foaf:focus wd:Q1333866 . + +nwbib-spatial:Q278675 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Kalk"@de ; + foaf:focus wd:Q278675 . + +nwbib-spatial:Q19965776 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Siddinghausen"@de ; + foaf:focus wd:Q19965776 . + +nwbib-spatial:Q1509057 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Hützemert"@de ; + foaf:focus wd:Q1509057 . + +nwbib-spatial:Q61727112 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Kempener Feld/Baackeshof"@de ; + foaf:focus wd:Q61727112 . + +nwbib-spatial:Q1651863 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Hörste"@de ; + foaf:focus wd:Q1651863 . + +nwbib-spatial:Q2050613 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Papenhöfen"@de ; + foaf:focus wd:Q2050613 . + +nwbib-spatial:Q26833669 + a skos:Concept ; + skos:broader nwbib-spatial:Q161729 ; + skos:inScheme ; + skos:prefLabel "Rützkausen"@de ; + foaf:focus wd:Q26833669 . + +nwbib-spatial:Q1746143 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139024 ; + skos:inScheme ; + skos:prefLabel "Ubbedissen"@de ; + foaf:focus wd:Q1746143 . + +nwbib-spatial:Q1019908 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Bönninghardt"@de ; + foaf:focus wd:Q1019908 . + +nwbib-spatial:Q19687959 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Weltersbach"@de ; + foaf:focus wd:Q19687959 . + +nwbib-spatial:Q47021505 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Bonn"@de ; + foaf:focus wd:Q47021505 . + +nwbib-spatial:Q47454940 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Jülicher Börde"@de ; + foaf:focus wd:Q47454940 . + +nwbib-spatial:Q1522623 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Hagedorn"@de ; + foaf:focus wd:Q1522623 . + +nwbib-spatial:Q56395213 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Recklinghausen"@de ; + foaf:focus wd:Q56395213 . + +nwbib-spatial:Q2570691 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Wildewiese"@de ; + foaf:focus wd:Q2570691 . + +nwbib-spatial:Q322147 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Straßfeld"@de ; + foaf:focus wd:Q322147 . + +nwbib-spatial:Q41516300 + a skos:Concept ; + skos:broader nwbib-spatial:Q254774 ; + skos:inScheme ; + skos:prefLabel "Impekoven"@de ; + foaf:focus wd:Q41516300 . + +nwbib-spatial:Q21039789 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Hochlarmark"@de ; + foaf:focus wd:Q21039789 . + +nwbib-spatial:Q204488 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Wormbach"@de ; + foaf:focus wd:Q204488 . + +nwbib-spatial:Q759074 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Aue"@de ; + foaf:focus wd:Q759074 . + +nwbib-spatial:Q1572674 + a skos:Concept ; + skos:broader nwbib-spatial:Q163100 ; + skos:inScheme ; + skos:prefLabel "Hamb"@de ; + foaf:focus wd:Q1572674 . + +nwbib-spatial:Q1118320 + a skos:Concept ; + skos:broader nwbib-spatial:Q181851 ; + skos:inScheme ; + skos:prefLabel "Halverde"@de ; + foaf:focus wd:Q1118320 . + +nwbib-spatial:Q1316766 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Rheinkassel"@de ; + foaf:focus wd:Q1316766 . + +nwbib-spatial:Q2136699 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Refflingsen"@de ; + foaf:focus wd:Q2136699 . + +nwbib-spatial:Q1402170 + a skos:Concept ; + skos:broader nwbib-spatial:Q163017 ; + skos:inScheme ; + skos:prefLabel "Krudenburg"@de ; + foaf:focus wd:Q1402170 . + +nwbib-spatial:Q243526 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154032" ; + skos:prefLabel "Kevelaer"@de ; + foaf:focus wd:Q243526 . + +nwbib-spatial:Q206380 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Annen"@de ; + foaf:focus wd:Q206380 . + +nwbib-spatial:Q56395271 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Vechta"@de ; + foaf:focus wd:Q56395271 . + +nwbib-spatial:Q1455537 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Frenz"@de ; + foaf:focus wd:Q1455537 . + +nwbib-spatial:Q56476182 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Alpsray"@de ; + foaf:focus wd:Q56476182 . + +nwbib-spatial:Q2553834 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Weckhoven"@de ; + foaf:focus wd:Q2553834 . + +nwbib-spatial:Q1918845 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Hochelten"@de ; + foaf:focus wd:Q1918845 . + +nwbib-spatial:Q1362040 + a skos:Concept ; + skos:broader nwbib-spatial:Q182691 ; + skos:inScheme ; + skos:prefLabel "Gestringen"@de ; + foaf:focus wd:Q1362040 . + +nwbib-spatial:Q17127787 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Utfort"@de ; + foaf:focus wd:Q17127787 . + +nwbib-spatial:Q1302352 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Eickhoff"@de ; + foaf:focus wd:Q1302352 . + +nwbib-spatial:Q153397 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Dom-Esch"@de ; + foaf:focus wd:Q153397 . + +nwbib-spatial:Q2046093 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Paffrath"@de ; + foaf:focus wd:Q2046093 . + +nwbib-spatial:Q1250681 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Oestrich"@de ; + foaf:focus wd:Q1250681 . + +nwbib-spatial:Q702291 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Bistum Essen"@de ; + foaf:focus wd:Q702291 . + +nwbib-spatial:Q1003241 + a skos:Concept ; + skos:broader nwbib-spatial:Q183262 ; + skos:inScheme ; + skos:prefLabel "Buke"@de ; + foaf:focus wd:Q1003241 . + +nwbib-spatial:Q1184764 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Delstern"@de ; + foaf:focus wd:Q1184764 . + +nwbib-spatial:Q1897680 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Marienfeld"@de ; + foaf:focus wd:Q1897680 . + +nwbib-spatial:Q2585664 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Wirme"@de ; + foaf:focus wd:Q2585664 . + +nwbib-spatial:Q1254173 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Drabenderhöhe"@de ; + foaf:focus wd:Q1254173 . + +nwbib-spatial:Q1827489 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Lippern"@de ; + foaf:focus wd:Q1827489 . + +nwbib-spatial:Q2220521 + a skos:Concept ; + skos:broader nwbib-spatial:Q59243186 ; + skos:inScheme ; + skos:prefLabel "Sande"@de ; + foaf:focus wd:Q2220521 . + +nwbib-spatial:Q15549893 + a skos:Concept ; + skos:broader nwbib-spatial:Q14863 ; + skos:inScheme ; + skos:prefLabel "Jöllenbeck"@de ; + foaf:focus wd:Q15549893 . + +nwbib-spatial:Q1355054 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Erkensruhr"@de ; + foaf:focus wd:Q1355054 . + +nwbib-spatial:Q436878 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Altenburg (Jülich)"@de ; + foaf:focus wd:Q436878 . + +nwbib-spatial:Q1250602 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Derne"@de ; + foaf:focus wd:Q1250602 . + +nwbib-spatial:Q1379807 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Obersalwey"@de ; + foaf:focus wd:Q1379807 . + +nwbib-spatial:Q19687917 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Hülstrung"@de ; + foaf:focus wd:Q19687917 . + +nwbib-spatial:Q13446935 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Bylerward"@de ; + foaf:focus wd:Q13446935 . + +nwbib-spatial:Q3167 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970040" ; + skos:prefLabel "Siegen"@de ; + foaf:focus wd:Q3167 . + +nwbib-spatial:Q1686779 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Twismecke"@de ; + foaf:focus wd:Q1686779 . + +nwbib-spatial:Q1923800 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Stadt Blankenberg"@de ; + foaf:focus wd:Q1923800 . + +nwbib-spatial:Q5542 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962052" ; + skos:prefLabel "Plettenberg"@de ; + foaf:focus wd:Q5542 . + +nwbib-spatial:Q894873 + a skos:Concept ; + skos:broader nwbib-spatial:Q2194016 ; + skos:inScheme ; + skos:prefLabel "Bottenbroich (bis 1949)"@de ; + foaf:focus wd:Q894873 . + +nwbib-spatial:Q188425 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Niedermarsberg"@de ; + foaf:focus wd:Q188425 . + +nwbib-spatial:Q1987697 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Niederdresselndorf"@de ; + foaf:focus wd:Q1987697 . + +nwbib-spatial:Q1250660 + a skos:Concept ; + skos:broader nwbib-spatial:Q17543808 ; + skos:inScheme ; + skos:prefLabel "Kruckel"@de ; + foaf:focus wd:Q1250660 . + +nwbib-spatial:Q1464224 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Friedrichsfeld"@de ; + foaf:focus wd:Q1464224 . + +nwbib-spatial:Q45026167 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Rahmede"@de ; + foaf:focus wd:Q45026167 . + +nwbib-spatial:Q2326759 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Scharnhorst"@de ; + foaf:focus wd:Q2326759 . + +nwbib-spatial:Q317755 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Buschhoven"@de ; + foaf:focus wd:Q317755 . + +nwbib-spatial:Q56557716 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Gill"@de ; + foaf:focus wd:Q56557716 . + +nwbib-spatial:Q1807021 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Latrop"@de ; + foaf:focus wd:Q1807021 . + +nwbib-spatial:Q2025899 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Saßmicke"@de ; + foaf:focus wd:Q2025899 . + +nwbib-spatial:Q11280 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05954" ; + skos:prefLabel "Ennepe-Ruhr-Kreis"@de ; + foaf:focus wd:Q11280 . + +nwbib-spatial:Q1239299 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Venrath"@de ; + foaf:focus wd:Q1239299 . + +nwbib-spatial:Q1332008 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Elleringhausen"@de ; + foaf:focus wd:Q1332008 . + +nwbib-spatial:Q881783 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Rheda"@de ; + foaf:focus wd:Q881783 . + +nwbib-spatial:Q1691251 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Rahm"@de ; + foaf:focus wd:Q1691251 . + +nwbib-spatial:Q1543933 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Gravenhorst"@de ; + foaf:focus wd:Q1543933 . + +nwbib-spatial:Q883532 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Bleibuir"@de ; + foaf:focus wd:Q883532 . + +nwbib-spatial:Q182054 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566052" ; + skos:prefLabel "Metelen"@de ; + foaf:focus wd:Q182054 . + +nwbib-spatial:Q1168004 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Aplerbeck"@de ; + foaf:focus wd:Q1168004 . + +nwbib-spatial:Q28009265 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Öttershagen"@de ; + foaf:focus wd:Q28009265 . + +nwbib-spatial:Q1285056 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Hävern"@de ; + foaf:focus wd:Q1285056 . + +nwbib-spatial:Q19310644 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Unterthal"@de ; + foaf:focus wd:Q19310644 . + +nwbib-spatial:Q1499729 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138732 ; + skos:inScheme ; + skos:prefLabel "Gellershagen"@de ; + foaf:focus wd:Q1499729 . + +nwbib-spatial:Q11026135 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Fürstentum Salm (bis 1793)"@de ; + foaf:focus wd:Q11026135 . + +nwbib-spatial:Q1526672 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Hollen"@de ; + foaf:focus wd:Q1526672 . + +nwbib-spatial:Q317108 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Tecklenburger Land"@de ; + foaf:focus wd:Q317108 . + +nwbib-spatial:Q876546 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Fürstentum Minden (bis 1807)"@de ; + foaf:focus wd:Q876546 . + +nwbib-spatial:Q1392863 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Maaslingen"@de ; + foaf:focus wd:Q1392863 . + +nwbib-spatial:Q2051124 + a skos:Concept ; + skos:broader nwbib-spatial:Q163570 ; + skos:inScheme ; + skos:prefLabel "Sankt Tönis"@de ; + foaf:focus wd:Q2051124 . + +nwbib-spatial:Q1520243 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Gevelsdorf"@de ; + foaf:focus wd:Q1520243 . + +nwbib-spatial:Q220420 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Zopp"@de ; + foaf:focus wd:Q220420 . + +nwbib-spatial:Q1544513 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Holzen"@de ; + foaf:focus wd:Q1544513 . + +nwbib-spatial:Q1405657 + a skos:Concept ; + skos:broader nwbib-spatial:Q6219 ; + skos:inScheme ; + skos:prefLabel "Roderath"@de ; + foaf:focus wd:Q1405657 . + +nwbib-spatial:Q45352487 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Schreibershof"@de ; + foaf:focus wd:Q45352487 . + +nwbib-spatial:Q1260647 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Drove"@de ; + foaf:focus wd:Q1260647 . + +nwbib-spatial:Q1428603 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Flierich"@de ; + foaf:focus wd:Q1428603 . + +nwbib-spatial:Q204966 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370028" ; + skos:prefLabel "Übach-Palenberg"@de ; + foaf:focus wd:Q204966 . + +nwbib-spatial:Q16292537 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Rathmecke"@de ; + foaf:focus wd:Q16292537 . + +nwbib-spatial:Q1951765 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Muffendorf"@de ; + foaf:focus wd:Q1951765 . + +nwbib-spatial:Q47446722 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Husen"@de ; + foaf:focus wd:Q47446722 . + +nwbib-spatial:Q1367173 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Eschweiler"@de ; + foaf:focus wd:Q1367173 . + +nwbib-spatial:Q1988256 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Niedermehnen"@de ; + foaf:focus wd:Q1988256 . + +nwbib-spatial:Q896574 + a skos:Concept ; + skos:broader nwbib-spatial:Q5573 ; + skos:inScheme ; + skos:prefLabel "Valbert"@de ; + foaf:focus wd:Q896574 . + +nwbib-spatial:Q1490832 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gadderbaum"@de ; + foaf:focus wd:Q1490832 . + +nwbib-spatial:Q883426 + a skos:Concept ; + skos:broader nwbib-spatial:Q2974 ; + skos:inScheme ; + skos:prefLabel "Gruiten"@de ; + foaf:focus wd:Q883426 . + +nwbib-spatial:Q1541601 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Grafschaft"@de ; + foaf:focus wd:Q1541601 . + +nwbib-spatial:Q1906190 + a skos:Concept ; + skos:broader nwbib-spatial:Q512233 ; + skos:inScheme ; + skos:prefLabel "Marxloh"@de ; + foaf:focus wd:Q1906190 . + +nwbib-spatial:Q2299820 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Wey"@de ; + foaf:focus wd:Q2299820 . + +nwbib-spatial:Q47012203 + a skos:Concept ; + skos:broader nwbib-spatial:Q449632 ; + skos:inScheme ; + skos:prefLabel "Walsum"@de ; + foaf:focus wd:Q47012203 . + +nwbib-spatial:Q2474035 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Weidenhausen"@de ; + foaf:focus wd:Q2474035 . + +nwbib-spatial:Q1680366 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Oberhenneborn"@de ; + foaf:focus wd:Q1680366 . + +nwbib-spatial:Q1100658 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Cleve"@de ; + foaf:focus wd:Q1100658 . + +nwbib-spatial:Q2099540 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Plittershagen"@de ; + foaf:focus wd:Q2099540 . + +nwbib-spatial:Q873692 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Lendersdorf"@de ; + foaf:focus wd:Q873692 . + +nwbib-spatial:Q2034024 + a skos:Concept ; + skos:broader nwbib-spatial:Q200549 ; + skos:inScheme ; + skos:prefLabel "Ramsdorf"@de ; + foaf:focus wd:Q2034024 . + +nwbib-spatial:Q1989319 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Niesen"@de ; + foaf:focus wd:Q1989319 . + +nwbib-spatial:Q2649433 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Allrath"@de ; + foaf:focus wd:Q2649433 . + +nwbib-spatial:Q1770070 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Langwaden"@de ; + foaf:focus wd:Q1770070 . + +nwbib-spatial:Q819728 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de ; + foaf:focus wd:Q819728 . + +nwbib-spatial:Q15282657 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Vorst (Viersen)"@de ; + foaf:focus wd:Q15282657 . + +nwbib-spatial:Q1414098 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Hausdülmen"@de ; + foaf:focus wd:Q1414098 . + +nwbib-spatial:Q1601674 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Helberg"@de ; + foaf:focus wd:Q1601674 . + +nwbib-spatial:Q1786291 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Krahwinkel"@de ; + foaf:focus wd:Q1786291 . + +nwbib-spatial:Q2637330 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Albaum"@de ; + foaf:focus wd:Q2637330 . + +nwbib-spatial:Q1265044 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Dortmund"@de ; + foaf:focus wd:Q1265044 . + +nwbib-spatial:Q2265208 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Seelenfeld"@de ; + foaf:focus wd:Q2265208 . + +nwbib-spatial:Q1628288 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Horn"@de ; + foaf:focus wd:Q1628288 . + +nwbib-spatial:Q57652427 + a skos:Concept ; + skos:broader nwbib-spatial:Q1719793 ; + skos:inScheme ; + skos:prefLabel "Uellendahl"@de ; + foaf:focus wd:Q57652427 . + +nwbib-spatial:Q1614442 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Steinfurt"@de ; + foaf:focus wd:Q1614442 . + +nwbib-spatial:Q1503684 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Niederottersbach"@de ; + foaf:focus wd:Q1503684 . + +nwbib-spatial:Q181809 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566004" ; + skos:prefLabel "Altenberge"@de ; + foaf:focus wd:Q181809 . + +nwbib-spatial:Q1648884 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Niedersorpe"@de ; + foaf:focus wd:Q1648884 . + +nwbib-spatial:Q1250591 + a skos:Concept ; + skos:broader nwbib-spatial:Q989822 ; + skos:inScheme ; + skos:prefLabel "Brechten"@de ; + foaf:focus wd:Q1250591 . + +nwbib-spatial:Q1465382 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Styrum"@de ; + foaf:focus wd:Q1465382 . + +nwbib-spatial:Q257972 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Schönebeck"@de ; + foaf:focus wd:Q257972 . + +nwbib-spatial:Q2054052 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Buschdorf"@de ; + foaf:focus wd:Q2054052 . + +nwbib-spatial:Q1681572 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Neudorf"@de ; + foaf:focus wd:Q1681572 . + +nwbib-spatial:Q19965161 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Kessebüren"@de ; + foaf:focus wd:Q19965161 . + +nwbib-spatial:Q1246438 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Keylaer"@de ; + foaf:focus wd:Q1246438 . + +nwbib-spatial:Q1940783 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Alendorf"@de ; + foaf:focus wd:Q1940783 . + +nwbib-spatial:Q1506575 + a skos:Concept ; + skos:broader nwbib-spatial:Q11337 ; + skos:inScheme ; + skos:prefLabel "Ende"@de ; + foaf:focus wd:Q1506575 . + +nwbib-spatial:Q1602737 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Hellefeld"@de ; + foaf:focus wd:Q1602737 . + +nwbib-spatial:Q56041996 + a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Nordsauerland"@de ; + foaf:focus wd:Q56041996 . + +nwbib-spatial:Q1361890 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Kellen"@de ; + foaf:focus wd:Q1361890 . + +nwbib-spatial:Q1742434 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Oedingen"@de ; + foaf:focus wd:Q1742434 . + +nwbib-spatial:Q1738986 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Lüdenscheid (bis 1974)"@de ; + foaf:focus wd:Q1738986 . + +nwbib-spatial:Q55987237 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Rupelrath"@de ; + foaf:focus wd:Q55987237 . + +nwbib-spatial:Q1977189 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Nemmenich"@de ; + foaf:focus wd:Q1977189 . + +nwbib-spatial:Q873586 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Rheder"@de ; + foaf:focus wd:Q873586 . + +nwbib-spatial:Q2264182 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Till-Moyland"@de ; + foaf:focus wd:Q2264182 . + +nwbib-spatial:Q814022 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Beeckerheide"@de ; + foaf:focus wd:Q814022 . + +nwbib-spatial:Q866685 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Bissingheim"@de ; + foaf:focus wd:Q866685 . + +nwbib-spatial:Q1796363 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Königshardt"@de ; + foaf:focus wd:Q1796363 . + +nwbib-spatial:Q54803604 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk VIII (Essen)"@de ; + foaf:focus wd:Q54803604 . + +nwbib-spatial:Q881635 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Wipperfeld"@de ; + foaf:focus wd:Q881635 . + +nwbib-spatial:Q54803598 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk II (Essen)"@de ; + foaf:focus wd:Q54803598 . + +nwbib-spatial:Q1320462 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Eissen"@de ; + foaf:focus wd:Q1320462 . + +nwbib-spatial:Q1795762 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Mauenheim"@de ; + foaf:focus wd:Q1795762 . + +nwbib-spatial:Q818140 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Benrad"@de ; + foaf:focus wd:Q818140 . + +nwbib-spatial:Q11047 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374020" ; + skos:prefLabel "Lindlar"@de ; + foaf:focus wd:Q11047 . + +nwbib-spatial:Q10929 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958016" ; + skos:prefLabel "Eslohe"@de ; + foaf:focus wd:Q10929 . + +nwbib-spatial:Q73110 a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Stahle"@de ; + foaf:focus wd:Q73110 . + +nwbib-spatial:Q610165 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Antweiler"@de ; + foaf:focus wd:Q610165 . + +nwbib-spatial:Q1602716 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Helle"@de ; + foaf:focus wd:Q1602716 . + +nwbib-spatial:Q2120972 + a skos:Concept ; + skos:broader nwbib-spatial:Q4175 ; + skos:inScheme ; + skos:prefLabel "Püsselbüren"@de ; + foaf:focus wd:Q2120972 . + +nwbib-spatial:Q2230503 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Schallern"@de ; + foaf:focus wd:Q2230503 . + +nwbib-spatial:Q2420122 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Wüsten"@de ; + foaf:focus wd:Q2420122 . + +nwbib-spatial:Q2938 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05316" ; + skos:prefLabel "Leverkusen"@de ; + foaf:focus wd:Q2938 . + +nwbib-spatial:Q1347623 + a skos:Concept ; + skos:broader nwbib-spatial:Q3939 ; + skos:inScheme ; + skos:prefLabel "Eppinghoven"@de ; + foaf:focus wd:Q1347623 . + +nwbib-spatial:Q1627730 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Hoppecke"@de ; + foaf:focus wd:Q1627730 . + +nwbib-spatial:Q2035124 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Osterath"@de ; + foaf:focus wd:Q2035124 . + +nwbib-spatial:Q981347 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Selfkant"@de ; + foaf:focus wd:Q981347 . + +nwbib-spatial:Q1776372 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Klosterbauerschaft"@de ; + foaf:focus wd:Q1776372 . + +nwbib-spatial:Q63191391 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Monschauer Land"@de ; + foaf:focus wd:Q63191391 . + +nwbib-spatial:Q1951696 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Muddenhagen"@de ; + foaf:focus wd:Q1951696 . + +nwbib-spatial:Q1573605 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Hamm-Bossendorf"@de ; + foaf:focus wd:Q1573605 . + +nwbib-spatial:Q1628872 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Horrem"@de ; + foaf:focus wd:Q1628872 . + +nwbib-spatial:Q1795741 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Ensen"@de ; + foaf:focus wd:Q1795741 . + +nwbib-spatial:Q14906980 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Kraudorf"@de ; + foaf:focus wd:Q14906980 . + +nwbib-spatial:Q181910 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566036" ; + skos:prefLabel "Laer"@de ; + foaf:focus wd:Q181910 . + +nwbib-spatial:Q1796883 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Kückhoven"@de ; + foaf:focus wd:Q1796883 . + +nwbib-spatial:Q1558895 + a skos:Concept ; + skos:broader nwbib-spatial:Q1761685 ; + skos:inScheme ; + skos:prefLabel "Sandrup"@de ; + foaf:focus wd:Q1558895 . + +nwbib-spatial:Q200275 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554028" ; + skos:prefLabel "Heiden"@de ; + foaf:focus wd:Q200275 . + +nwbib-spatial:Q182426 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566080" ; + skos:prefLabel "Saerbeck"@de ; + foaf:focus wd:Q182426 . + +nwbib-spatial:Q2340815 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Steinhausen"@de ; + foaf:focus wd:Q2340815 . + +nwbib-spatial:Q1310002 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Wichlinghausen"@de ; + foaf:focus wd:Q1310002 . + +nwbib-spatial:Q19965660 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Oelkinghausen"@de ; + foaf:focus wd:Q19965660 . + +nwbib-spatial:Q181825 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Holsterhausen"@de ; + foaf:focus wd:Q181825 . + +nwbib-spatial:Q647477 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Iggenhausen"@de ; + foaf:focus wd:Q647477 . + +nwbib-spatial:Q2034979 + a skos:Concept ; + skos:broader nwbib-spatial:Q2760 ; + skos:inScheme ; + skos:prefLabel "Ostenfelde"@de ; + foaf:focus wd:Q2034979 . + +nwbib-spatial:Q1614856 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Herweg"@de ; + foaf:focus wd:Q1614856 . + +nwbib-spatial:Q655526 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Merheim"@de ; + foaf:focus wd:Q655526 . + +nwbib-spatial:Q55585995 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Hasperbach"@de ; + foaf:focus wd:Q55585995 . + +nwbib-spatial:Q1594292 + a skos:Concept ; + skos:broader nwbib-spatial:Q200602 ; + skos:inScheme ; + skos:prefLabel "Werth"@de ; + foaf:focus wd:Q1594292 . + +nwbib-spatial:Q891203 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Boke"@de ; + foaf:focus wd:Q891203 . + +nwbib-spatial:Q1524733 + a skos:Concept ; + skos:broader nwbib-spatial:Q14917 ; + skos:inScheme ; + skos:prefLabel "Gimbte"@de ; + foaf:focus wd:Q1524733 . + +nwbib-spatial:Q615951 + a skos:Concept ; + skos:broader nwbib-spatial:Q14888 ; + skos:inScheme ; + skos:prefLabel "Ottenstein"@de ; + foaf:focus wd:Q615951 . + +nwbib-spatial:Q2006319 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Nächstebreck"@de ; + foaf:focus wd:Q2006319 . + +nwbib-spatial:Q1480479 + a skos:Concept ; + skos:broader nwbib-spatial:Q2794 ; + skos:inScheme ; + skos:prefLabel "Füchtorf"@de ; + foaf:focus wd:Q1480479 . + +nwbib-spatial:Q1245768 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Dornheim"@de ; + foaf:focus wd:Q1245768 . + +nwbib-spatial:Q1920665 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Mennrath"@de ; + foaf:focus wd:Q1920665 . + +nwbib-spatial:Q29960549 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Dörnchen"@de ; + foaf:focus wd:Q29960549 . + +nwbib-spatial:Q64004191 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Reeserward"@de ; + foaf:focus wd:Q64004191 . + +nwbib-spatial:Q163100 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170040" ; + skos:prefLabel "Sonsbeck"@de ; + foaf:focus wd:Q163100 . + +nwbib-spatial:Q162976 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170004" ; + skos:prefLabel "Alpen"@de ; + foaf:focus wd:Q162976 . + +nwbib-spatial:Q153223 + a skos:Concept ; + skos:broader nwbib-spatial:Q200138 ; + skos:inScheme ; + skos:prefLabel "Hausen"@de ; + foaf:focus wd:Q153223 . + +nwbib-spatial:Q2036224 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Wolperath"@de ; + foaf:focus wd:Q2036224 . + +nwbib-spatial:Q1689034 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Gladbach (bis 1929)"@de ; + foaf:focus wd:Q1689034 . + +nwbib-spatial:Q2587716 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Woffelsbach"@de ; + foaf:focus wd:Q2587716 . + +nwbib-spatial:Q55585491 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Schoneberg"@de ; + foaf:focus wd:Q55585491 . + +nwbib-spatial:Q18411952 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Oberbachem"@de ; + foaf:focus wd:Q18411952 . + +nwbib-spatial:Q2565736 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Westönnen"@de ; + foaf:focus wd:Q2565736 . + +nwbib-spatial:Q551530 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Herzogtum Arenberg (bis 1810)"@de ; + foaf:focus wd:Q551530 . + +nwbib-spatial:Q55499826 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Haßley"@de ; + foaf:focus wd:Q55499826 . + +nwbib-spatial:Q1347554 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Eppenhausen"@de ; + foaf:focus wd:Q1347554 . + +nwbib-spatial:Q1636311 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Sönnern"@de ; + foaf:focus wd:Q1636311 . + +nwbib-spatial:Q18589583 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Lich-Steinstraß"@de ; + foaf:focus wd:Q18589583 . + +nwbib-spatial:Q19687880 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Altendorf"@de ; + foaf:focus wd:Q19687880 . + +nwbib-spatial:Q2147438 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Rheidt-Hüchelhoven"@de ; + foaf:focus wd:Q2147438 . + +nwbib-spatial:Q872901 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Mödrath"@de ; + foaf:focus wd:Q872901 . + +nwbib-spatial:Q151453 + a skos:Concept ; + skos:broader nwbib-spatial:Q2760 ; + skos:inScheme ; + skos:prefLabel "Westkirchen"@de ; + foaf:focus wd:Q151453 . + +nwbib-spatial:Q1622857 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Hoetmar"@de ; + foaf:focus wd:Q1622857 . + +nwbib-spatial:Q2565168 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Westfeld"@de ; + foaf:focus wd:Q2565168 . + +nwbib-spatial:Q1345243 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Entrup"@de ; + foaf:focus wd:Q1345243 . + +nwbib-spatial:Q2132359 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Rath-Anhoven"@de ; + foaf:focus wd:Q2132359 . + +nwbib-spatial:Q721316 + a skos:Concept ; + skos:broader nwbib-spatial:Q200256 ; + skos:inScheme ; + skos:prefLabel "Asbeck"@de ; + foaf:focus wd:Q721316 . + +nwbib-spatial:Q319807 + a skos:Concept ; + skos:broader nwbib-spatial:Q1168004 ; + skos:inScheme ; + skos:prefLabel "Aplerbeck"@de ; + foaf:focus wd:Q319807 . + +nwbib-spatial:Q594680 + a skos:Concept ; + skos:broader nwbib-spatial:Q880944 ; + skos:inScheme ; + skos:prefLabel "Sevinghausen"@de ; + foaf:focus wd:Q594680 . + +nwbib-spatial:Q665088 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Walberberg"@de ; + foaf:focus wd:Q665088 . + +nwbib-spatial:Q693107 + a skos:Concept ; + skos:broader nwbib-spatial:Q14956 ; + skos:inScheme ; + skos:prefLabel "Berzdorf"@de ; + foaf:focus wd:Q693107 . + +nwbib-spatial:Q1319918 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Kleinvernich"@de ; + foaf:focus wd:Q1319918 . + +nwbib-spatial:Q400407 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Ahle"@de ; + foaf:focus wd:Q400407 . + +nwbib-spatial:Q1573594 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Hamlingdorf"@de ; + foaf:focus wd:Q1573594 . + +nwbib-spatial:Q1360552 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803603 ; + skos:inScheme ; + skos:prefLabel "Kray"@de ; + foaf:focus wd:Q1360552 . + +nwbib-spatial:Q1776765 + a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:prefLabel "Klüppelberg (bis 1974)"@de ; + foaf:focus wd:Q1776765 . + +nwbib-spatial:Q153260 + a skos:Concept ; + skos:broader nwbib-spatial:Q586 ; + skos:inScheme ; + skos:prefLabel "Bad Godesberg (Stadtbezirk)"@de ; + foaf:focus wd:Q153260 . + +nwbib-spatial:Q1637915 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Oerath"@de ; + foaf:focus wd:Q1637915 . + +nwbib-spatial:Q869732 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Heppendorf"@de ; + foaf:focus wd:Q869732 . + +nwbib-spatial:Q10903 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966012" ; + skos:prefLabel "Finnentrop"@de ; + foaf:focus wd:Q10903 . + +nwbib-spatial:Q1585135 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Hardt"@de ; + foaf:focus wd:Q1585135 . + +nwbib-spatial:Q2563404 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Werste"@de ; + foaf:focus wd:Q2563404 . + +nwbib-spatial:Q1678593 + a skos:Concept ; + skos:broader nwbib-spatial:Q183262 ; + skos:inScheme ; + skos:prefLabel "Schwaney"@de ; + foaf:focus wd:Q1678593 . + +nwbib-spatial:Q16138 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562028" ; + skos:prefLabel "Oer-Erkenschwick"@de ; + foaf:focus wd:Q16138 . + +nwbib-spatial:Q740743 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Fischeln"@de ; + foaf:focus wd:Q740743 . + +nwbib-spatial:Q1335345 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Holten"@de ; + foaf:focus wd:Q1335345 . + +nwbib-spatial:Q43872971 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Elsey"@de ; + foaf:focus wd:Q43872971 . + +nwbib-spatial:Q56402341 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Steinheim"@de ; + foaf:focus wd:Q56402341 . + +nwbib-spatial:Q1440777 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Reusrath"@de ; + foaf:focus wd:Q1440777 . + +nwbib-spatial:Q1745129 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Schönholthausen"@de ; + foaf:focus wd:Q1745129 . + +nwbib-spatial:Q14936 a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566008" ; + skos:prefLabel "Emsdetten"@de ; + foaf:focus wd:Q14936 . + + + a skos:ConceptScheme ; + dct:description "This controlled vocabulary for areas in Northrhine-Westphalia was created for use in the North Rhine-Westphalian bibliography. The initial transformation to SKOS was carried out by Felix Ostrowski for the hbz." ; + dct:issued "2014-01-28" ; + dct:license ; + dct:modified "2023-09-07" ; + dct:publisher ; + dct:title "Raumsystematik der Nordrhein-Westfälischen Bibliographie"@de , "Spatial classification scheme of the North Rhine-Westphalian bibliography"@en ; + vann:preferredNamespacePrefix "nwbib-spatial" ; + vann:preferredNamespaceUri "https://nwbib.de/spatial#" ; + skos:hasTopConcept nwbib-spatial:N3 , nwbib-spatial:N4-7 , nwbib-spatial:N1-2 , nwbib-spatial:N0 . + +nwbib-spatial:Q442473 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Altlünen"@de ; + foaf:focus wd:Q442473 . + +nwbib-spatial:Q19964826 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Heeren"@de ; + foaf:focus wd:Q19964826 . + +nwbib-spatial:Q2327223 + a skos:Concept ; + skos:broader nwbib-spatial:Q8856 ; + skos:inScheme ; + skos:prefLabel "Niederdorf"@de ; + foaf:focus wd:Q2327223 . + +nwbib-spatial:Q1624160 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Hoholz"@de ; + foaf:focus wd:Q1624160 . + +nwbib-spatial:Q1601919 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Helenabrunn"@de ; + foaf:focus wd:Q1601919 . + +nwbib-spatial:Q1673853 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Odenkirchen"@de ; + foaf:focus wd:Q1673853 . + +nwbib-spatial:Q26835689 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Bonsfeld"@de ; + foaf:focus wd:Q26835689 . + +nwbib-spatial:Q1787280 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Erkelenz (bis 1971)"@de ; + foaf:focus wd:Q1787280 . + +nwbib-spatial:Q1568819 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Hahn (Aachen)"@de ; + foaf:focus wd:Q1568819 . + +nwbib-spatial:Q1534520 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Golbach"@de ; + foaf:focus wd:Q1534520 . + +nwbib-spatial:Q225120 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754020" ; + skos:prefLabel "Herzebrock-Clarholz"@de ; + foaf:focus wd:Q225120 . + +nwbib-spatial:Q939035 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Hohenhausen"@de ; + foaf:focus wd:Q939035 . + +nwbib-spatial:Q47462151 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Hagen"@de ; + foaf:focus wd:Q47462151 . + +nwbib-spatial:Q1465627 + a skos:Concept ; + skos:broader nwbib-spatial:Q245579 ; + skos:inScheme ; + skos:prefLabel "Hilgen"@de ; + foaf:focus wd:Q1465627 . + +nwbib-spatial:Q7967973 + a skos:Concept ; + skos:broader nwbib-spatial:Q243139 ; + skos:inScheme ; + skos:prefLabel "Wankum"@de ; + foaf:focus wd:Q7967973 . + +nwbib-spatial:Q17542219 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Kirchhörde-Löttringhausen"@de ; + foaf:focus wd:Q17542219 . + +nwbib-spatial:Q895714 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Elten"@de ; + foaf:focus wd:Q895714 . + +nwbib-spatial:Q578558 + a skos:Concept ; + skos:broader nwbib-spatial:Q1808050 ; + skos:inScheme ; + skos:prefLabel "Soers"@de ; + foaf:focus wd:Q578558 . + +nwbib-spatial:N54 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "54" ; + skos:prefLabel "Kleinere Territorien im Rheinland"@de . + +nwbib-spatial:Q1344515 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Neukirchen"@de ; + foaf:focus wd:Q1344515 . + +nwbib-spatial:Q96877974 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Belmen"@de ; + foaf:focus wd:Q96877974 . + +nwbib-spatial:Q1290287 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Karken"@de ; + foaf:focus wd:Q1290287 . + +nwbib-spatial:Q14516259 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Immendorf"@de ; + foaf:focus wd:Q14516259 . + +nwbib-spatial:Q808046 + a skos:Concept ; + skos:broader nwbib-spatial:Q53904 ; + skos:inScheme ; + skos:prefLabel "Bardüttingdorf"@de ; + foaf:focus wd:Q808046 . + +nwbib-spatial:Q776527 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Bredenborn"@de ; + foaf:focus wd:Q776527 . + +nwbib-spatial:Q620752 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Appeldorn"@de ; + foaf:focus wd:Q620752 . + +nwbib-spatial:Q2132375 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Rath"@de ; + foaf:focus wd:Q2132375 . + +nwbib-spatial:Q1870653 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Rumeln-Kaldenhausen"@de ; + foaf:focus wd:Q1870653 . + +nwbib-spatial:Q6924 a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554020" ; + skos:prefLabel "Gronau"@de ; + foaf:focus wd:Q6924 . + +nwbib-spatial:Q1521099 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Geyen"@de ; + foaf:focus wd:Q1521099 . + +nwbib-spatial:Q643789 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Arfeld"@de ; + foaf:focus wd:Q643789 . + +nwbib-spatial:Q1464458 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Frielinghausen"@de ; + foaf:focus wd:Q1464458 . + +nwbib-spatial:Q23560847 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Nümmen"@de ; + foaf:focus wd:Q23560847 . + +nwbib-spatial:Q55985393 + a skos:Concept ; + skos:broader nwbib-spatial:Q243301 ; + skos:inScheme ; + skos:prefLabel "Rahm"@de ; + foaf:focus wd:Q55985393 . + +nwbib-spatial:Q1343346 + a skos:Concept ; + skos:broader nwbib-spatial:Q2760 ; + skos:inScheme ; + skos:prefLabel "Enniger"@de ; + foaf:focus wd:Q1343346 . + +nwbib-spatial:Q49720038 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Birken"@de ; + foaf:focus wd:Q49720038 . + +nwbib-spatial:Q2596720 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Würgendorf"@de ; + foaf:focus wd:Q2596720 . + +nwbib-spatial:Q1345089 + a skos:Concept ; + skos:broader nwbib-spatial:Q8856 ; + skos:inScheme ; + skos:prefLabel "Herongen"@de ; + foaf:focus wd:Q1345089 . + +nwbib-spatial:Q740616 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Lüttringhausen"@de ; + foaf:focus wd:Q740616 . + +nwbib-spatial:Q47190993 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Oelinghausen"@de ; + foaf:focus wd:Q47190993 . + +nwbib-spatial:Q14888 a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554004" ; + skos:prefLabel "Ahaus"@de ; + foaf:focus wd:Q14888 . + +nwbib-spatial:Q1643423 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Oekoven"@de ; + foaf:focus wd:Q1643423 . + +nwbib-spatial:N33 a skos:Concept ; + skos:broader nwbib-spatial:N3 ; + skos:inScheme ; + skos:notation "33" ; + skos:prefLabel "Evangelische Kirche von Westfalen"@de ; + foaf:focus wd:Q1381014 . + +nwbib-spatial:Q1625196 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Holterhöfe"@de ; + foaf:focus wd:Q1625196 . + +nwbib-spatial:Q1721358 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Venn"@de ; + foaf:focus wd:Q1721358 . + +nwbib-spatial:Q1961903 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Naaf"@de ; + foaf:focus wd:Q1961903 . + +nwbib-spatial:Q1268302 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Schophoven"@de ; + foaf:focus wd:Q1268302 . + +nwbib-spatial:Q1593495 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Heepen"@de ; + foaf:focus wd:Q1593495 . + +nwbib-spatial:Q7021 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758004" ; + skos:prefLabel "Bünde"@de ; + foaf:focus wd:Q7021 . + +nwbib-spatial:Q55584721 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Hellinghausen"@de ; + foaf:focus wd:Q55584721 . + +nwbib-spatial:Q27842229 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Neuenhof bei Ruppichteroth"@de ; + foaf:focus wd:Q27842229 . + +nwbib-spatial:Q15295042 + a skos:Concept ; + skos:broader nwbib-spatial:Q3905 ; + skos:inScheme ; + skos:prefLabel "Zweckel"@de ; + foaf:focus wd:Q15295042 . + +nwbib-spatial:Q1322031 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Menne"@de ; + foaf:focus wd:Q1322031 . + +nwbib-spatial:Q812014 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Bavenhausen"@de ; + foaf:focus wd:Q812014 . + +nwbib-spatial:Q909629 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Brenscheid"@de ; + foaf:focus wd:Q909629 . + +nwbib-spatial:Q1769716 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Neesen"@de ; + foaf:focus wd:Q1769716 . + +nwbib-spatial:Q31553414 + a skos:Concept ; + skos:broader nwbib-spatial:Q56041996 ; + skos:inScheme ; + skos:prefLabel "Arnsberger Wald"@de ; + foaf:focus wd:Q31553414 . + +nwbib-spatial:Q6961 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382020" ; + skos:prefLabel "Hennef"@de ; + foaf:focus wd:Q6961 . + +nwbib-spatial:N12 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "12" ; + skos:prefLabel "Weserbergland"@de ; + foaf:focus wd:Q72931 . + +nwbib-spatial:Q19834454 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Altenbögge"@de ; + foaf:focus wd:Q19834454 . + +nwbib-spatial:Q56099483 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Dortmund"@de ; + foaf:focus wd:Q56099483 . + +nwbib-spatial:Q3985 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562020" ; + skos:prefLabel "Herten"@de ; + foaf:focus wd:Q3985 . + +nwbib-spatial:Q883745 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Langerfeld"@de ; + foaf:focus wd:Q883745 . + +nwbib-spatial:Q200122 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358036" ; + skos:prefLabel "Linnich"@de ; + foaf:focus wd:Q200122 . + +nwbib-spatial:Q2758 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05116" ; + skos:prefLabel "Mönchengladbach"@de ; + foaf:focus wd:Q2758 . + +nwbib-spatial:Q56025323 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Trompet"@de ; + foaf:focus wd:Q56025323 . + +nwbib-spatial:Q2035427 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Osterwald"@de ; + foaf:focus wd:Q2035427 . + +nwbib-spatial:Q893838 + a skos:Concept ; + skos:broader nwbib-spatial:Q10935 ; + skos:inScheme ; + skos:prefLabel "Bork"@de ; + foaf:focus wd:Q893838 . + +nwbib-spatial:Q1018968 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Bäingsen"@de ; + foaf:focus wd:Q1018968 . + +nwbib-spatial:Q882661 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Grieth"@de ; + foaf:focus wd:Q882661 . + +nwbib-spatial:Q884410 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140358 ; + skos:inScheme ; + skos:prefLabel "Erle"@de ; + foaf:focus wd:Q884410 . + +nwbib-spatial:Q1264221 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Hanxleden"@de ; + foaf:focus wd:Q1264221 . + +nwbib-spatial:Q1310867 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Eisbergen"@de ; + foaf:focus wd:Q1310867 . + +nwbib-spatial:Q1668814 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Rölsdorf"@de ; + foaf:focus wd:Q1668814 . + +nwbib-spatial:Q44080563 + a skos:Concept ; + skos:broader nwbib-spatial:Q14936 ; + skos:inScheme ; + skos:prefLabel "Ahlintel"@de ; + foaf:focus wd:Q44080563 . + +nwbib-spatial:Q1226729 + a skos:Concept ; + skos:broader nwbib-spatial:Q3939 ; + skos:inScheme ; + skos:prefLabel "Lohberg"@de ; + foaf:focus wd:Q1226729 . + +nwbib-spatial:N70 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "70" ; + skos:prefLabel "Grafschaft, Fürstentum und Freistaat Lippe"@de ; + foaf:focus wd:Q835382 . + +nwbib-spatial:N1-2 a skos:Concept ; + skos:inScheme ; + skos:notation "1-2" ; + skos:prefLabel "Landschaften in Nordrhein-Westfalen"@de . + +nwbib-spatial:Q254774 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382004" ; + skos:prefLabel "Alfter"@de ; + foaf:focus wd:Q254774 . + +nwbib-spatial:Q1761517 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Oidtweiler"@de ; + foaf:focus wd:Q1761517 . + +nwbib-spatial:Q805086 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Balkhausen"@de ; + foaf:focus wd:Q805086 . + +nwbib-spatial:Q1354624 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Eringerfeld"@de ; + foaf:focus wd:Q1354624 . + +nwbib-spatial:Q4082 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954016" ; + skos:prefLabel "Hattingen"@de ; + foaf:focus wd:Q4082 . + +nwbib-spatial:Q2009136 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Oberbantenberg"@de ; + foaf:focus wd:Q2009136 . + +nwbib-spatial:Q318612 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Odendorf"@de ; + foaf:focus wd:Q318612 . + +nwbib-spatial:Q1369618 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Niedermörmter"@de ; + foaf:focus wd:Q1369618 . + +nwbib-spatial:Q1952096 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Muldenau"@de ; + foaf:focus wd:Q1952096 . + +nwbib-spatial:Q2880 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05915" ; + skos:prefLabel "Hamm"@de ; + foaf:focus wd:Q2880 . + +nwbib-spatial:Q20183677 + a skos:Concept ; + skos:broader nwbib-spatial:Q2904 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Eickel"@de ; + foaf:focus wd:Q20183677 . + +nwbib-spatial:Q1987868 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Niederholzklau"@de ; + foaf:focus wd:Q1987868 . + +nwbib-spatial:Q5628 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958040" ; + skos:prefLabel "Schmallenberg"@de ; + foaf:focus wd:Q5628 . + +nwbib-spatial:Q50317506 + a skos:Concept ; + skos:broader nwbib-spatial:Q2036224 ; + skos:inScheme ; + skos:prefLabel "Schönau"@de ; + foaf:focus wd:Q50317506 . + +nwbib-spatial:Q1455745 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Frettermühle"@de ; + foaf:focus wd:Q1455745 . + +nwbib-spatial:Q1368051 + a skos:Concept ; + skos:broader nwbib-spatial:Q183449 ; + skos:inScheme ; + skos:prefLabel "Espeln"@de ; + foaf:focus wd:Q1368051 . + +nwbib-spatial:Q1651965 + a skos:Concept ; + skos:broader nwbib-spatial:Q183449 ; + skos:inScheme ; + skos:prefLabel "Hövelsenne"@de ; + foaf:focus wd:Q1651965 . + +nwbib-spatial:Q1651482 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Nammen"@de ; + foaf:focus wd:Q1651482 . + +nwbib-spatial:Q882072 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Königshoven"@de ; + foaf:focus wd:Q882072 . + +nwbib-spatial:Q1459863 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Harmonie"@de ; + foaf:focus wd:Q1459863 . + +nwbib-spatial:Q6287 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05382" ; + skos:prefLabel "Rhein-Sieg-Kreis"@de ; + foaf:focus wd:Q6287 . + +nwbib-spatial:Q16064919 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Grünewiese"@de ; + foaf:focus wd:Q16064919 . + +nwbib-spatial:Q3943 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974028" ; + skos:prefLabel "Lippstadt"@de ; + foaf:focus wd:Q3943 . + +nwbib-spatial:Q1787509 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Schwelm (bis 1929)"@de ; + foaf:focus wd:Q1787509 . + +nwbib-spatial:Q56597338 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Blauenstein"@de ; + foaf:focus wd:Q56597338 . + +nwbib-spatial:Q797634 + a skos:Concept ; + skos:broader nwbib-spatial:Q884493 ; + skos:inScheme ; + skos:prefLabel "Babenhausen"@de ; + foaf:focus wd:Q797634 . + +nwbib-spatial:Q1556866 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Gustorf"@de ; + foaf:focus wd:Q1556866 . + +nwbib-spatial:Q1294497 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Südhemmern"@de ; + foaf:focus wd:Q1294497 . + +nwbib-spatial:Q1921007 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Menzel"@de ; + foaf:focus wd:Q1921007 . + +nwbib-spatial:Q891081 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Boisheim"@de ; + foaf:focus wd:Q891081 . + +nwbib-spatial:Q322875 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 3 (Düsseldorf)"@de ; + foaf:focus wd:Q322875 . + +nwbib-spatial:Q16006 a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154016" ; + skos:prefLabel "Goch"@de ; + foaf:focus wd:Q16006 . + +nwbib-spatial:Q29878907 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Forsten"@de ; + foaf:focus wd:Q29878907 . + +nwbib-spatial:Q1595722 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Lipperbruch"@de ; + foaf:focus wd:Q1595722 . + +nwbib-spatial:Q59140253 + a skos:Concept ; + skos:broader nwbib-spatial:Q2765 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gelsenkirchen-Nord"@de ; + foaf:focus wd:Q59140253 . + +nwbib-spatial:Q1541708 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Kerpen und Lommersum"@de ; + foaf:focus wd:Q1541708 . + +nwbib-spatial:Q56022363 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Stessen"@de ; + foaf:focus wd:Q56022363 . + +nwbib-spatial:Q636321 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Humboldt/Gremberg"@de ; + foaf:focus wd:Q636321 . + +nwbib-spatial:Q1250725 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326745 ; + skos:inScheme ; + skos:prefLabel "Wischlingen"@de ; + foaf:focus wd:Q1250725 . + +nwbib-spatial:Q162717 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170012" ; + skos:prefLabel "Hamminkeln"@de ; + foaf:focus wd:Q162717 . + +nwbib-spatial:Q56240302 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Wupperfeld"@de ; + foaf:focus wd:Q56240302 . + +nwbib-spatial:Q3922 a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766020" ; + skos:prefLabel "Detmold"@de ; + foaf:focus wd:Q3922 . + +nwbib-spatial:Q1464915 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Frimmersdorf"@de ; + foaf:focus wd:Q1464915 . + +nwbib-spatial:Q512233 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Hamborn (Stadtbezirk)"@de ; + foaf:focus wd:Q512233 . + +nwbib-spatial:Q1157454 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Dahlhausen"@de ; + foaf:focus wd:Q1157454 . + +nwbib-spatial:Q437666 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Altenvalbert"@de ; + foaf:focus wd:Q437666 . + +nwbib-spatial:Q2564472 + a skos:Concept ; + skos:broader nwbib-spatial:Q2789 ; + skos:inScheme ; + skos:prefLabel "Westbevern"@de ; + foaf:focus wd:Q2564472 . + +nwbib-spatial:Q1366743 + a skos:Concept ; + skos:broader nwbib-spatial:Q11343 ; + skos:inScheme ; + skos:prefLabel "Esborn"@de ; + foaf:focus wd:Q1366743 . + +nwbib-spatial:Q15114720 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Herringhausen"@de ; + foaf:focus wd:Q15114720 . + +nwbib-spatial:Q1569914 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Hakenberg"@de ; + foaf:focus wd:Q1569914 . + +nwbib-spatial:Q1457929 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Friedrich-Wilhelms-Hütte"@de ; + foaf:focus wd:Q1457929 . + +nwbib-spatial:Q2521301 + a skos:Concept ; + skos:broader nwbib-spatial:Q1808050 ; + skos:inScheme ; + skos:prefLabel "Vetschau"@de ; + foaf:focus wd:Q2521301 . + +nwbib-spatial:Q1738154 + a skos:Concept ; + skos:broader nwbib-spatial:Q14956 ; + skos:inScheme ; + skos:prefLabel "Keldenich"@de ; + foaf:focus wd:Q1738154 . + +nwbib-spatial:Q446857 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Innenstadt (Stadtbezirk)"@de ; + foaf:focus wd:Q446857 . + +nwbib-spatial:Q1547007 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Gripekoven"@de ; + foaf:focus wd:Q1547007 . + +nwbib-spatial:Q1739779 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Kessel"@de ; + foaf:focus wd:Q1739779 . + +nwbib-spatial:Q152421 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Altenrath"@de ; + foaf:focus wd:Q152421 . + +nwbib-spatial:Q257681 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Borbeck-Mitte"@de ; + foaf:focus wd:Q257681 . + +nwbib-spatial:Q15057590 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Löhnen"@de ; + foaf:focus wd:Q15057590 . + +nwbib-spatial:Q2340651 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Steinforth-Rubbelrath"@de ; + foaf:focus wd:Q2340651 . + +nwbib-spatial:Q870887 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Günnigfeld"@de ; + foaf:focus wd:Q870887 . + +nwbib-spatial:Q6245 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05170" ; + skos:prefLabel "Kreis Wesel"@de ; + foaf:focus wd:Q6245 . + +nwbib-spatial:Q1897697 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Marienhagen"@de ; + foaf:focus wd:Q1897697 . + +nwbib-spatial:Q1569346 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Hain"@de ; + foaf:focus wd:Q1569346 . + +nwbib-spatial:Q1591015 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Hausberge"@de ; + foaf:focus wd:Q1591015 . + +nwbib-spatial:Q175458 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Leversbach"@de ; + foaf:focus wd:Q175458 . + +nwbib-spatial:Q5644 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958020" ; + skos:prefLabel "Hallenberg"@de ; + foaf:focus wd:Q5644 . + +nwbib-spatial:Q1674778 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Isselhorst"@de ; + foaf:focus wd:Q1674778 . + +nwbib-spatial:Q258118 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Heisingen"@de ; + foaf:focus wd:Q258118 . + +nwbib-spatial:Q1674301 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Wickrathberg"@de ; + foaf:focus wd:Q1674301 . + +nwbib-spatial:Q1547065 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Grissenbach"@de ; + foaf:focus wd:Q1547065 . + +nwbib-spatial:Q866394 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Bislich"@de ; + foaf:focus wd:Q866394 . + +nwbib-spatial:Q2258621 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Schöller"@de ; + foaf:focus wd:Q2258621 . + +nwbib-spatial:Q16857717 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Velsen"@de ; + foaf:focus wd:Q16857717 . + +nwbib-spatial:Q1115398 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Commerden"@de ; + foaf:focus wd:Q1115398 . + +nwbib-spatial:Q2058341 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Pattscheid"@de ; + foaf:focus wd:Q2058341 . + +nwbib-spatial:Q2596582 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Wülfer-Bexten"@de ; + foaf:focus wd:Q2596582 . + +nwbib-spatial:Q2041996 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Langenholzhausen"@de ; + foaf:focus wd:Q2041996 . + +nwbib-spatial:Q6224 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05774" ; + skos:prefLabel "Kreis Paderborn"@de ; + foaf:focus wd:Q6224 . + +nwbib-spatial:Q59138211 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Brackwede"@de ; + foaf:focus wd:Q59138211 . + +nwbib-spatial:Q1458567 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Volkholz"@de ; + foaf:focus wd:Q1458567 . + +nwbib-spatial:Q815897 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Bellenberg"@de ; + foaf:focus wd:Q815897 . + +nwbib-spatial:Q56009217 + a skos:Concept ; + skos:broader nwbib-spatial:Q243206 ; + skos:inScheme ; + skos:prefLabel "Lind"@de ; + foaf:focus wd:Q56009217 . + +nwbib-spatial:Q1021783 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Büsdorf"@de ; + foaf:focus wd:Q1021783 . + +nwbib-spatial:Q166787 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Halle (bis 1972)"@de ; + foaf:focus wd:Q166787 . + +nwbib-spatial:Q1655309 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Stockheim"@de ; + foaf:focus wd:Q1655309 . + +nwbib-spatial:Q1896592 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Marialinden"@de ; + foaf:focus wd:Q1896592 . + +nwbib-spatial:Q56150614 + a skos:Concept ; + skos:broader nwbib-spatial:Q8856 ; + skos:inScheme ; + skos:prefLabel "Dam"@de ; + foaf:focus wd:Q56150614 . + +nwbib-spatial:Q1801536 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Lamersdorf"@de ; + foaf:focus wd:Q1801536 . + +nwbib-spatial:Q1614586 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Herstelle"@de ; + foaf:focus wd:Q1614586 . + +nwbib-spatial:Q1761485 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Lindweiler"@de ; + foaf:focus wd:Q1761485 . + +nwbib-spatial:Q1632330 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Spitze"@de ; + foaf:focus wd:Q1632330 . + +nwbib-spatial:Q1773509 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Rösenbeck"@de ; + foaf:focus wd:Q1773509 . + +nwbib-spatial:Q1958681 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Heimaterde"@de ; + foaf:focus wd:Q1958681 . + +nwbib-spatial:Q862796 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Billerbeck"@de ; + foaf:focus wd:Q862796 . + +nwbib-spatial:Q1751131 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Voßwinkel"@de ; + foaf:focus wd:Q1751131 . + +nwbib-spatial:Q2534498 + a skos:Concept ; + skos:broader nwbib-spatial:Q163570 ; + skos:inScheme ; + skos:prefLabel "Vorst (Tönisvorst)"@de ; + foaf:focus wd:Q2534498 . + +nwbib-spatial:Q339549 + a skos:Concept ; + skos:broader nwbib-spatial:Q323826 ; + skos:inScheme ; + skos:prefLabel "Grafenberg"@de ; + foaf:focus wd:Q339549 . + +nwbib-spatial:Q1766125 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Margarethenhöhe"@de ; + foaf:focus wd:Q1766125 . + +nwbib-spatial:Q1547585 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Grotenrath"@de ; + foaf:focus wd:Q1547585 . + +nwbib-spatial:Q1625526 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Holzhausen"@de ; + foaf:focus wd:Q1625526 . + +nwbib-spatial:Q1880207 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Lückerath"@de ; + foaf:focus wd:Q1880207 . + +nwbib-spatial:Q1454571 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Freimersdorf"@de ; + foaf:focus wd:Q1454571 . + +nwbib-spatial:Q3853 a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Bayenthal"@de ; + foaf:focus wd:Q3853 . + +nwbib-spatial:Q9177531 + a skos:Concept ; + skos:broader nwbib-spatial:Q16018 ; + skos:inScheme ; + skos:prefLabel "Borghorst"@de ; + foaf:focus wd:Q9177531 . + +nwbib-spatial:Q1987842 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Niederhelden"@de ; + foaf:focus wd:Q1987842 . + +nwbib-spatial:Q1959118 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Uhlenbrock"@de ; + foaf:focus wd:Q1959118 . + +nwbib-spatial:Q1437975 + a skos:Concept ; + skos:broader nwbib-spatial:Q245376 ; + skos:inScheme ; + skos:prefLabel "Forsbach"@de ; + foaf:focus wd:Q1437975 . + +nwbib-spatial:Q1641919 + a skos:Concept ; + skos:broader nwbib-spatial:Q32750 ; + skos:inScheme ; + skos:prefLabel "Häger"@de ; + foaf:focus wd:Q1641919 . + +nwbib-spatial:Q1880350 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Lünern"@de ; + foaf:focus wd:Q1880350 . + +nwbib-spatial:Q1347709 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Epsingsen"@de ; + foaf:focus wd:Q1347709 . + +nwbib-spatial:Q1509133 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Georghausen"@de ; + foaf:focus wd:Q1509133 . + +nwbib-spatial:Q153919 + a skos:Concept ; + skos:broader nwbib-spatial:Q200528 ; + skos:inScheme ; + skos:prefLabel "Zwillbrock"@de ; + foaf:focus wd:Q153919 . + +nwbib-spatial:Q29878896 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Busch"@de ; + foaf:focus wd:Q29878896 . + +nwbib-spatial:Q1252946 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Doveren"@de ; + foaf:focus wd:Q1252946 . + +nwbib-spatial:Q1402750 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Feldmark"@de ; + foaf:focus wd:Q1402750 . + +nwbib-spatial:Q1787562 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Waldbröl (bis 1932)"@de ; + foaf:focus wd:Q1787562 . + +nwbib-spatial:Q47192504 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Welte"@de ; + foaf:focus wd:Q47192504 . + +nwbib-spatial:Q1987757 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Niederembt"@de ; + foaf:focus wd:Q1987757 . + +nwbib-spatial:Q2010339 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Oberlübbe"@de ; + foaf:focus wd:Q2010339 . + +nwbib-spatial:Q798686 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Bad Fredeburg"@de ; + foaf:focus wd:Q798686 . + +nwbib-spatial:Q2554532 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Wehrden"@de ; + foaf:focus wd:Q2554532 . + +nwbib-spatial:Q1371747 + a skos:Concept ; + skos:broader nwbib-spatial:Q183374 ; + skos:inScheme ; + skos:prefLabel "Etteln"@de ; + foaf:focus wd:Q1371747 . + +nwbib-spatial:Q1794679 + a skos:Concept ; + skos:broader nwbib-spatial:Q53901 ; + skos:inScheme ; + skos:prefLabel "Siele"@de ; + foaf:focus wd:Q1794679 . + +nwbib-spatial:Q1251236 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Dottel"@de ; + foaf:focus wd:Q1251236 . + +nwbib-spatial:Q1225592 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Dillnhütten"@de ; + foaf:focus wd:Q1225592 . + +nwbib-spatial:Q1615713 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Hesselbach"@de ; + foaf:focus wd:Q1615713 . + +nwbib-spatial:Q857805 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Bierenbachtal"@de ; + foaf:focus wd:Q857805 . + +nwbib-spatial:Q1743158 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Minden"@de ; + foaf:focus wd:Q1743158 . + +nwbib-spatial:Q1394210 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Falkenhagen"@de ; + foaf:focus wd:Q1394210 . + +nwbib-spatial:Q11340 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954028" ; + skos:prefLabel "Sprockhövel"@de ; + foaf:focus wd:Q11340 . + +nwbib-spatial:Q1826927 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Linnepe"@de ; + foaf:focus wd:Q1826927 . + +nwbib-spatial:Q808328 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Barlo"@de ; + foaf:focus wd:Q808328 . + +nwbib-spatial:Q2034752 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Ossum-Bösinghoven"@de ; + foaf:focus wd:Q2034752 . + +nwbib-spatial:Q818831 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Berchum"@de ; + foaf:focus wd:Q818831 . + +nwbib-spatial:Q1494183 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Garenfeld"@de ; + foaf:focus wd:Q1494183 . + +nwbib-spatial:Q15899917 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Langenhorst"@de ; + foaf:focus wd:Q15899917 . + +nwbib-spatial:Q5575 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962060" ; + skos:prefLabel "Werdohl"@de ; + foaf:focus wd:Q5575 . + +nwbib-spatial:Q799749 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Baerl"@de ; + foaf:focus wd:Q799749 . + +nwbib-spatial:Q1708785 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Schreckenberg"@de ; + foaf:focus wd:Q1708785 . + +nwbib-spatial:Q1124848 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Föckinghausen"@de ; + foaf:focus wd:Q1124848 . + +nwbib-spatial:Q1805065 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Langenholdinghausen"@de ; + foaf:focus wd:Q1805065 . + +nwbib-spatial:Q602330 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Padberg"@de ; + foaf:focus wd:Q602330 . + +nwbib-spatial:Q1410629 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Griesemert"@de ; + foaf:focus wd:Q1410629 . + +nwbib-spatial:Q1566450 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Haarbrück"@de ; + foaf:focus wd:Q1566450 . + +nwbib-spatial:Q1355151 + a skos:Concept ; + skos:broader nwbib-spatial:Q6968 ; + skos:inScheme ; + skos:prefLabel "Hochdahl"@de ; + foaf:focus wd:Q1355151 . + +nwbib-spatial:Q1987736 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Niedereimer"@de ; + foaf:focus wd:Q1987736 . + +nwbib-spatial:Q1250693 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Schnee"@de ; + foaf:focus wd:Q1250693 . + +nwbib-spatial:Q1403245 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Millingen"@de ; + foaf:focus wd:Q1403245 . + +nwbib-spatial:Q225375 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754044" ; + skos:prefLabel "Verl"@de ; + foaf:focus wd:Q225375 . + +nwbib-spatial:Q2179384 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Rödingen"@de ; + foaf:focus wd:Q2179384 . + +nwbib-spatial:Q880975 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Ippendorf"@de ; + foaf:focus wd:Q880975 . + +nwbib-spatial:Q3890 a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566076" ; + skos:prefLabel "Rheine"@de ; + foaf:focus wd:Q3890 . + +nwbib-spatial:Q1869600 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Welschen Ennest"@de ; + foaf:focus wd:Q1869600 . + +nwbib-spatial:Q1258786 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Drewer"@de ; + foaf:focus wd:Q1258786 . + +nwbib-spatial:Q56398420 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Iserlohn"@de ; + foaf:focus wd:Q56398420 . + +nwbib-spatial:Q1310629 + a skos:Concept ; + skos:broader nwbib-spatial:Q5542 ; + skos:inScheme ; + skos:prefLabel "Eiringhausen"@de ; + foaf:focus wd:Q1310629 . + +nwbib-spatial:Q877265 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Vörden"@de ; + foaf:focus wd:Q877265 . + +nwbib-spatial:Q56373947 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Borken"@de ; + foaf:focus wd:Q56373947 . + +nwbib-spatial:Q248236 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Dünnwald"@de ; + foaf:focus wd:Q248236 . + +nwbib-spatial:Q55587347 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Pöppinghausen"@de ; + foaf:focus wd:Q55587347 . + +nwbib-spatial:Q797502 + a skos:Concept ; + skos:broader nwbib-spatial:Q241048 ; + skos:inScheme ; + skos:prefLabel "Baasem"@de ; + foaf:focus wd:Q797502 . + +nwbib-spatial:Q1411352 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Lieck"@de ; + foaf:focus wd:Q1411352 . + +nwbib-spatial:Q436954 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Altenbüren"@de ; + foaf:focus wd:Q436954 . + +nwbib-spatial:Q1631517 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Houverath"@de ; + foaf:focus wd:Q1631517 . + +nwbib-spatial:Q1250672 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Marten"@de ; + foaf:focus wd:Q1250672 . + +nwbib-spatial:Q1625542 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Holzhausen"@de ; + foaf:focus wd:Q1625542 . + +nwbib-spatial:Q447973 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Uerdingen"@de ; + foaf:focus wd:Q447973 . + +nwbib-spatial:Q1719698 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Stallberg"@de ; + foaf:focus wd:Q1719698 . + +nwbib-spatial:Q885372 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Rodenkirchen"@de ; + foaf:focus wd:Q885372 . + +nwbib-spatial:Q1250587 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Bittermark"@de ; + foaf:focus wd:Q1250587 . + +nwbib-spatial:Q1747717 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Meschede (bis 1974)"@de ; + foaf:focus wd:Q1747717 . + +nwbib-spatial:Q1599076 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1599076 . + +nwbib-spatial:Q781737 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Roisdorf"@de ; + foaf:focus wd:Q781737 . + +nwbib-spatial:Q1021693 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Bürrig"@de ; + foaf:focus wd:Q1021693 . + +nwbib-spatial:Q432815 + a skos:Concept ; + skos:broader nwbib-spatial:Q14888 ; + skos:inScheme ; + skos:prefLabel "Alstätte"@de ; + foaf:focus wd:Q432815 . + +nwbib-spatial:Q114961 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Qualburg"@de ; + foaf:focus wd:Q114961 . + +nwbib-spatial:Q1521339 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Jülich (bis 1971)"@de ; + foaf:focus wd:Q1521339 . + +nwbib-spatial:Q2700729 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Brachthausen"@de ; + foaf:focus wd:Q2700729 . + +nwbib-spatial:Q314047 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139996 ; + skos:inScheme ; + skos:prefLabel "Kirchhellen"@de ; + foaf:focus wd:Q314047 . + +nwbib-spatial:Q894381 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Boscheln"@de ; + foaf:focus wd:Q894381 . + +nwbib-spatial:Q437051 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Altenfeld"@de ; + foaf:focus wd:Q437051 . + +nwbib-spatial:Q1250651 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326745 ; + skos:inScheme ; + skos:prefLabel "Kirchlinde"@de ; + foaf:focus wd:Q1250651 . + +nwbib-spatial:Q1408098 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Uentrop"@de ; + foaf:focus wd:Q1408098 . + +nwbib-spatial:Q243554 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154024" ; + skos:prefLabel "Kalkar"@de ; + foaf:focus wd:Q243554 . + +nwbib-spatial:Q3708105 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Fürstbistum Corvey"@de ; + foaf:focus wd:Q3708105 . + +nwbib-spatial:Q652822 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Finkenberg"@de ; + foaf:focus wd:Q652822 . + +nwbib-spatial:Q1430700 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Paffendorf"@de ; + foaf:focus wd:Q1430700 . + +nwbib-spatial:Q25158536 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Obersteeg"@de ; + foaf:focus wd:Q25158536 . + +nwbib-spatial:Q1799335 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Laar"@de ; + foaf:focus wd:Q1799335 . + +nwbib-spatial:Q1959113 + a skos:Concept ; + skos:broader nwbib-spatial:Q1959104 ; + skos:inScheme ; + skos:prefLabel "Münster-Südviertel"@de ; + foaf:focus wd:Q1959113 . + +nwbib-spatial:Q242953 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766012" ; + skos:prefLabel "Barntrup"@de ; + foaf:focus wd:Q242953 . + +nwbib-spatial:Q48200720 + a skos:Concept ; + skos:broader nwbib-spatial:Q3905 ; + skos:inScheme ; + skos:prefLabel "Butendorf"@de ; + foaf:focus wd:Q48200720 . + +nwbib-spatial:Q2651466 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Alstaden"@de ; + foaf:focus wd:Q2651466 . + +nwbib-spatial:Q15130492 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Stift Corvey"@de ; + foaf:focus wd:Q15130492 . + +nwbib-spatial:Q2554378 + a skos:Concept ; + skos:broader nwbib-spatial:Q182979 ; + skos:inScheme ; + skos:prefLabel "Wehe"@de ; + foaf:focus wd:Q2554378 . + +nwbib-spatial:Q1519397 + a skos:Concept ; + skos:broader nwbib-spatial:Q257023 ; + skos:inScheme ; + skos:prefLabel "Gesseln"@de ; + foaf:focus wd:Q1519397 . + +nwbib-spatial:Q1520802 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Lülsdorf"@de ; + foaf:focus wd:Q1520802 . + +nwbib-spatial:Q573387 + a skos:Concept ; + skos:broader nwbib-spatial:Q6219 ; + skos:inScheme ; + skos:prefLabel "Tondorf"@de ; + foaf:focus wd:Q573387 . + +nwbib-spatial:Q1589986 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Rinsdorf"@de ; + foaf:focus wd:Q1589986 . + +nwbib-spatial:Q1957911 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Möllen"@de ; + foaf:focus wd:Q1957911 . + +nwbib-spatial:Q1656425 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Ickern"@de ; + foaf:focus wd:Q1656425 . + +nwbib-spatial:Q242385 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766048" ; + skos:prefLabel "Leopoldshöhe"@de ; + foaf:focus wd:Q242385 . + +nwbib-spatial:Q61725747 + a skos:Concept ; + skos:broader nwbib-spatial:Q151287 ; + skos:inScheme ; + skos:prefLabel "Niederforstbach"@de ; + foaf:focus wd:Q61725747 . + +nwbib-spatial:Q1740478 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Mittelottersbach"@de ; + foaf:focus wd:Q1740478 . + +nwbib-spatial:Q1236378 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Weidenpesch"@de ; + foaf:focus wd:Q1236378 . + +nwbib-spatial:Q1879885 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Löwen"@de ; + foaf:focus wd:Q1879885 . + +nwbib-spatial:Q1250630 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Holzen"@de ; + foaf:focus wd:Q1250630 . + +nwbib-spatial:Q2203145 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Rüblinghausen"@de ; + foaf:focus wd:Q2203145 . + +nwbib-spatial:Q1367106 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Eschmar"@de ; + foaf:focus wd:Q1367106 . + +nwbib-spatial:Q2564717 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Westereiden"@de ; + foaf:focus wd:Q2564717 . + +nwbib-spatial:Q881030 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Tecklenburg (bis 1808)"@de ; + foaf:focus wd:Q881030 . + +nwbib-spatial:Q1827438 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Lippe"@de ; + foaf:focus wd:Q1827438 . + +nwbib-spatial:Q1981056 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Neunkirchen"@de ; + foaf:focus wd:Q1981056 . + +nwbib-spatial:Q1959086 + a skos:Concept ; + skos:broader nwbib-spatial:Q59207767 ; + skos:inScheme ; + skos:prefLabel "Berg Fidel"@de ; + foaf:focus wd:Q1959086 . + +nwbib-spatial:Q2134395 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Wichterich"@de ; + foaf:focus wd:Q2134395 . + +nwbib-spatial:Q277492 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Homberg"@de ; + foaf:focus wd:Q277492 . + +nwbib-spatial:Q1619115 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Himmelgeist"@de ; + foaf:focus wd:Q1619115 . + +nwbib-spatial:Q58317 a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Mosebeck"@de ; + foaf:focus wd:Q58317 . + +nwbib-spatial:Q832361 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Bettendorf"@de ; + foaf:focus wd:Q832361 . + +nwbib-spatial:Q1815335 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Lüdenhausen"@de ; + foaf:focus wd:Q1815335 . + +nwbib-spatial:Q28923830 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Pannesheide"@de ; + foaf:focus wd:Q28923830 . + +nwbib-spatial:Q2308867 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Speldorf"@de ; + foaf:focus wd:Q2308867 . + +nwbib-spatial:Q1436154 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Overbeck"@de ; + foaf:focus wd:Q1436154 . + +nwbib-spatial:Q2473510 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Udorf"@de ; + foaf:focus wd:Q2473510 . + +nwbib-spatial:Q2010854 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Oberschledorn"@de ; + foaf:focus wd:Q2010854 . + +nwbib-spatial:Q1229456 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Distelrath"@de ; + foaf:focus wd:Q1229456 . + +nwbib-spatial:Q1265603 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Göstrup"@de ; + foaf:focus wd:Q1265603 . + +nwbib-spatial:Q1171839 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Daseburg"@de ; + foaf:focus wd:Q1171839 . + +nwbib-spatial:Q1156588 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Dabringhausen"@de ; + foaf:focus wd:Q1156588 . + +nwbib-spatial:Q56033664 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Dorp"@de ; + foaf:focus wd:Q56033664 . + +nwbib-spatial:Q19369359 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Widdert"@de ; + foaf:focus wd:Q19369359 . + +nwbib-spatial:Q1503134 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Münster-Ost"@de ; + foaf:focus wd:Q1503134 . + +nwbib-spatial:Q318846 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Abenden"@de ; + foaf:focus wd:Q318846 . + +nwbib-spatial:Q25391997 + a skos:Concept ; + skos:broader nwbib-spatial:Q25392878 ; + skos:inScheme ; + skos:prefLabel "Holsterhausen"@de ; + foaf:focus wd:Q25391997 . + +nwbib-spatial:Q50388833 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Ohlig"@de ; + foaf:focus wd:Q50388833 . + +nwbib-spatial:Q1679505 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Jakobsberg"@de ; + foaf:focus wd:Q1679505 . + +nwbib-spatial:Q2233609 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Scherfede"@de ; + foaf:focus wd:Q2233609 . + +nwbib-spatial:Q25158552 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Holderberg"@de ; + foaf:focus wd:Q25158552 . + +nwbib-spatial:Q1606083 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Henrichenburg"@de ; + foaf:focus wd:Q1606083 . + +nwbib-spatial:Q1352064 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Kalthof"@de ; + foaf:focus wd:Q1352064 . + +nwbib-spatial:Q127660 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Ruhrort"@de ; + foaf:focus wd:Q127660 . + +nwbib-spatial:Q1795774 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Wahnheide"@de ; + foaf:focus wd:Q1795774 . + +nwbib-spatial:Q10779976 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Ostentrop"@de ; + foaf:focus wd:Q10779976 . + +nwbib-spatial:Q1805501 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Ripsdorf"@de ; + foaf:focus wd:Q1805501 . + +nwbib-spatial:Q449632 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Walsum (Stadtbezirk)"@de ; + foaf:focus wd:Q449632 . + +nwbib-spatial:Q1521817 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Huckingen"@de ; + foaf:focus wd:Q1521817 . + +nwbib-spatial:Q1184182 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Delhoven"@de ; + foaf:focus wd:Q1184182 . + +nwbib-spatial:Q2593915 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Wormersdorf"@de ; + foaf:focus wd:Q2593915 . + +nwbib-spatial:Q1158316 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Dambroich"@de ; + foaf:focus wd:Q1158316 . + +nwbib-spatial:Q1778701 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Kohlscheid"@de ; + foaf:focus wd:Q1778701 . + +nwbib-spatial:Q2318781 + a skos:Concept ; + skos:broader nwbib-spatial:Q14929 ; + skos:inScheme ; + skos:prefLabel "St. Hubert"@de ; + foaf:focus wd:Q2318781 . + +nwbib-spatial:Q2546591 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Emmericher Eyland"@de ; + foaf:focus wd:Q2546591 . + +nwbib-spatial:Q1123568 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Mülheim an der Ruhr (bis 1910)"@de ; + foaf:focus wd:Q1123568 . + +nwbib-spatial:Q1567402 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Hadem"@de ; + foaf:focus wd:Q1567402 . + +nwbib-spatial:Q24035846 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Hasseldelle"@de ; + foaf:focus wd:Q24035846 . + +nwbib-spatial:Q537359 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Angelsdorf"@de ; + foaf:focus wd:Q537359 . + +nwbib-spatial:Q1573702 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Hammer (Simmerath)"@de ; + foaf:focus wd:Q1573702 . + +nwbib-spatial:Q2334065 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Witzhelden"@de ; + foaf:focus wd:Q2334065 . + +nwbib-spatial:Q15131753 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Südlengern"@de ; + foaf:focus wd:Q15131753 . + +nwbib-spatial:Q519764 + a skos:Concept ; + skos:broader nwbib-spatial:Q27994630 ; + skos:inScheme ; + skos:prefLabel "Haspe"@de ; + foaf:focus wd:Q519764 . + +nwbib-spatial:Q1453185 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Ispei"@de ; + foaf:focus wd:Q1453185 . + +nwbib-spatial:Q1182172 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Dedenborn"@de ; + foaf:focus wd:Q1182172 . + +nwbib-spatial:Q1771665 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Selbeck"@de ; + foaf:focus wd:Q1771665 . + +nwbib-spatial:Q1738494 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Kemmerich"@de ; + foaf:focus wd:Q1738494 . + +nwbib-spatial:Q1019910 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Bönninghausen"@de ; + foaf:focus wd:Q1019910 . + +nwbib-spatial:Q20916410 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Steinsiepen"@de ; + foaf:focus wd:Q20916410 . + +nwbib-spatial:Q19687961 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Werries"@de ; + foaf:focus wd:Q19687961 . + +nwbib-spatial:Q317741 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Losheimergraben"@de ; + foaf:focus wd:Q317741 . + +nwbib-spatial:Q893547 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Borgholz"@de ; + foaf:focus wd:Q893547 . + +nwbib-spatial:Q245292 + a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362004" ; + skos:prefLabel "Bedburg"@de ; + foaf:focus wd:Q245292 . + +nwbib-spatial:Q2326745 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Huckarde"@de ; + foaf:focus wd:Q2326745 . + +nwbib-spatial:Q1573617 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Uentrop"@de ; + foaf:focus wd:Q1573617 . + +nwbib-spatial:Q1673976 + a skos:Concept ; + skos:broader nwbib-spatial:Q32750 ; + skos:inScheme ; + skos:prefLabel "Isingdorf"@de ; + foaf:focus wd:Q1673976 . + +nwbib-spatial:Q15109999 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Dürscheider Hütte"@de ; + foaf:focus wd:Q15109999 . + +nwbib-spatial:Q3132 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170024" ; + skos:prefLabel "Moers"@de ; + foaf:focus wd:Q3132 . + +nwbib-spatial:Q1469327 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Frixheim"@de ; + foaf:focus wd:Q1469327 . + +nwbib-spatial:Q1019825 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Bökendorf"@de ; + foaf:focus wd:Q1019825 . + +nwbib-spatial:Q11038 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374016" ; + skos:prefLabel "Hückeswagen"@de ; + foaf:focus wd:Q11038 . + +nwbib-spatial:Q2459842 + a skos:Concept ; + skos:broader nwbib-spatial:Q200640 ; + skos:inScheme ; + skos:prefLabel "Tungerloh-Capellen"@de ; + foaf:focus wd:Q2459842 . + +nwbib-spatial:Q1624198 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Hoisten"@de ; + foaf:focus wd:Q1624198 . + +nwbib-spatial:Q15823609 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis An Sieg und Rhein"@de ; + foaf:focus wd:Q15823609 . + +nwbib-spatial:Q884517 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326741 ; + skos:inScheme ; + skos:prefLabel "Wickede"@de ; + foaf:focus wd:Q884517 . + +nwbib-spatial:Q56009101 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Güdderath"@de ; + foaf:focus wd:Q56009101 . + +nwbib-spatial:Q628609 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Fürstentum Rheina-Wolbeck (bis 1806)"@de ; + foaf:focus wd:Q628609 . + +nwbib-spatial:Q1235231 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Niederaden"@de ; + foaf:focus wd:Q1235231 . + +nwbib-spatial:Q402942 + a skos:Concept ; + skos:broader nwbib-spatial:Q14940 ; + skos:inScheme ; + skos:prefLabel "Ahsen"@de ; + foaf:focus wd:Q402942 . + +nwbib-spatial:Q204490 + a skos:Concept ; + skos:broader nwbib-spatial:Q6219 ; + skos:inScheme ; + skos:prefLabel "Zingsheim"@de ; + foaf:focus wd:Q204490 . + +nwbib-spatial:Q1567375 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Haddenhausen"@de ; + foaf:focus wd:Q1567375 . + +nwbib-spatial:Q820672 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Beringhausen"@de ; + foaf:focus wd:Q820672 . + +nwbib-spatial:Q1266697 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Volmerswerth"@de ; + foaf:focus wd:Q1266697 . + +nwbib-spatial:Q1787239 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Brilon (bis 1974)"@de ; + foaf:focus wd:Q1787239 . + +nwbib-spatial:Q2446 a skos:Concept ; + skos:broader nwbib-spatial:Q1132 ; + skos:inScheme ; + skos:prefLabel "Dolberg"@de ; + foaf:focus wd:Q2446 . + +nwbib-spatial:Q19965672 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Osterbönen"@de ; + foaf:focus wd:Q19965672 . + +nwbib-spatial:Q11102 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974020" ; + skos:prefLabel "Geseke"@de ; + foaf:focus wd:Q11102 . + +nwbib-spatial:Q61275196 + a skos:Concept ; + skos:broader nwbib-spatial:Q181609 ; + skos:inScheme ; + skos:prefLabel "Wechte"@de ; + foaf:focus wd:Q61275196 . + +nwbib-spatial:Q200208 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554044" ; + skos:prefLabel "Reken"@de ; + foaf:focus wd:Q200208 . + +nwbib-spatial:Q55721822 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Anholt (bis 1810)"@de ; + foaf:focus wd:Q55721822 . + +nwbib-spatial:Q1713705 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Lucherberg"@de ; + foaf:focus wd:Q1713705 . + +nwbib-spatial:Q1401343 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Fehrenbracht"@de ; + foaf:focus wd:Q1401343 . + +nwbib-spatial:Q182979 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770040" ; + skos:prefLabel "Rahden"@de ; + foaf:focus wd:Q182979 . + +nwbib-spatial:Q1541523 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139996 ; + skos:inScheme ; + skos:prefLabel "Grafenwald"@de ; + foaf:focus wd:Q1541523 . + +nwbib-spatial:Q18028189 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q18028189 . + +nwbib-spatial:Q2648514 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Allerheiligen"@de ; + foaf:focus wd:Q2648514 . + +nwbib-spatial:Q19968080 + a skos:Concept ; + skos:broader nwbib-spatial:Q449632 ; + skos:inScheme ; + skos:prefLabel "Vierlinden"@de ; + foaf:focus wd:Q19968080 . + +nwbib-spatial:Q1675619 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Konradsheim"@de ; + foaf:focus wd:Q1675619 . + +nwbib-spatial:Q1183214 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Deilinghofen"@de ; + foaf:focus wd:Q1183214 . + +nwbib-spatial:Q1793898 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Nalhof"@de ; + foaf:focus wd:Q1793898 . + +nwbib-spatial:Q1283272 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Thülen"@de ; + foaf:focus wd:Q1283272 . + +nwbib-spatial:Q1802000 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Landenbeck"@de ; + foaf:focus wd:Q1802000 . + +nwbib-spatial:Q904720 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Bredelar"@de ; + foaf:focus wd:Q904720 . + +nwbib-spatial:Q1497945 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Salchendorf"@de ; + foaf:focus wd:Q1497945 . + +nwbib-spatial:Q1269652 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Dämmerwald"@de ; + foaf:focus wd:Q1269652 . + +nwbib-spatial:Q1958401 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Mühleip"@de ; + foaf:focus wd:Q1958401 . + +nwbib-spatial:Q47449149 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Habinghorst"@de ; + foaf:focus wd:Q47449149 . + +nwbib-spatial:Q1704010 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Lippling"@de ; + foaf:focus wd:Q1704010 . + +nwbib-spatial:Q1516942 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Oberwiehl"@de ; + foaf:focus wd:Q1516942 . + +nwbib-spatial:Q242757 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766056" ; + skos:prefLabel "Oerlinghausen"@de ; + foaf:focus wd:Q242757 . + +nwbib-spatial:Q32945246 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Wamge"@de ; + foaf:focus wd:Q32945246 . + +nwbib-spatial:Q2125576 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Raderhorst"@de ; + foaf:focus wd:Q2125576 . + +nwbib-spatial:Q1318888 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Münster-West"@de ; + foaf:focus wd:Q1318888 . + +nwbib-spatial:Q1787361 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Kempen-Krefeld (bis 1974)"@de ; + foaf:focus wd:Q1787361 . + +nwbib-spatial:Q1559466 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Kierberg"@de ; + foaf:focus wd:Q1559466 . + +nwbib-spatial:Q1560239 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Günne"@de ; + foaf:focus wd:Q1560239 . + +nwbib-spatial:Q324333 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Ruitzhof"@de ; + foaf:focus wd:Q324333 . + +nwbib-spatial:Q314456 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Vohwinkel (Stadtbezirk)"@de ; + foaf:focus wd:Q314456 . + +nwbib-spatial:Q3005 a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Altstadt-Nord"@de ; + foaf:focus wd:Q3005 . + +nwbib-spatial:Q1646501 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Sedansberg"@de ; + foaf:focus wd:Q1646501 . + +nwbib-spatial:Q243337 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154020" ; + skos:prefLabel "Issum"@de ; + foaf:focus wd:Q243337 . + +nwbib-spatial:Q1329345 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Niederlaasphe"@de ; + foaf:focus wd:Q1329345 . + +nwbib-spatial:Q2404696 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Terheeg"@de ; + foaf:focus wd:Q2404696 . + +nwbib-spatial:Q1292925 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Niederhemer"@de ; + foaf:focus wd:Q1292925 . + +nwbib-spatial:Q1575376 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Hanemicke"@de ; + foaf:focus wd:Q1575376 . + +nwbib-spatial:Q967272 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Stemmer"@de ; + foaf:focus wd:Q967272 . + +nwbib-spatial:Q2547670 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Waltringen"@de ; + foaf:focus wd:Q2547670 . + +nwbib-spatial:Q1019841 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Bölhorst"@de ; + foaf:focus wd:Q1019841 . + +nwbib-spatial:Q20826154 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573607 ; + skos:inScheme ; + skos:prefLabel "Heessen"@de ; + foaf:focus wd:Q20826154 . + +nwbib-spatial:Q10936 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978040" ; + skos:prefLabel "Werne"@de ; + foaf:focus wd:Q10936 . + +nwbib-spatial:Q45033207 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Corvey"@de ; + foaf:focus wd:Q45033207 . + +nwbib-spatial:Q28543311 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Grunewald"@de ; + foaf:focus wd:Q28543311 . + +nwbib-spatial:Q1487002 + a skos:Concept ; + skos:broader nwbib-spatial:Q56042224 ; + skos:inScheme ; + skos:prefLabel "Homert"@de ; + foaf:focus wd:Q1487002 . + +nwbib-spatial:Q1718 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05111" ; + skos:prefLabel "Düsseldorf"@de ; + foaf:focus wd:Q1718 . + +nwbib-spatial:Q1783581 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Konzen"@de ; + foaf:focus wd:Q1783581 . + +nwbib-spatial:Q870602 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Leithe"@de ; + foaf:focus wd:Q870602 . + +nwbib-spatial:Q895768 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Dahl"@de ; + foaf:focus wd:Q895768 . + +nwbib-spatial:Q1471805 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Frönsberg"@de ; + foaf:focus wd:Q1471805 . + +nwbib-spatial:Q2406907 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Tetz"@de ; + foaf:focus wd:Q2406907 . + +nwbib-spatial:Q906819 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Breitscheid"@de ; + foaf:focus wd:Q906819 . + +nwbib-spatial:Q2564643 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Westenholz"@de ; + foaf:focus wd:Q2564643 . + +nwbib-spatial:Q1713636 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Junkermühle"@de ; + foaf:focus wd:Q1713636 . + +nwbib-spatial:Q1228176 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Dirmerzheim"@de ; + foaf:focus wd:Q1228176 . + +nwbib-spatial:Q383229 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Afholderbach"@de ; + foaf:focus wd:Q383229 . + +nwbib-spatial:Q1652212 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Hülhoven"@de ; + foaf:focus wd:Q1652212 . + +nwbib-spatial:Q806421 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Banfe"@de ; + foaf:focus wd:Q806421 . + +nwbib-spatial:Q2284594 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Sievernich"@de ; + foaf:focus wd:Q2284594 . + +nwbib-spatial:Q117769 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Schönemark"@de ; + foaf:focus wd:Q117769 . + +nwbib-spatial:Q1625256 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Holtum"@de ; + foaf:focus wd:Q1625256 . + +nwbib-spatial:Q2839 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05570" ; + skos:prefLabel "Kreis Warendorf"@de ; + foaf:focus wd:Q2839 . + +nwbib-spatial:Q47462099 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Gelsenkirchen und Wattenscheid"@de ; + foaf:focus wd:Q47462099 . + +nwbib-spatial:Q892920 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Bonzel"@de ; + foaf:focus wd:Q892920 . + +nwbib-spatial:Q4105 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162022" ; + skos:prefLabel "Meerbusch"@de ; + foaf:focus wd:Q4105 . + +nwbib-spatial:Q1744683 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Klaswipper"@de ; + foaf:focus wd:Q1744683 . + +nwbib-spatial:Q894180 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Borschemich"@de ; + foaf:focus wd:Q894180 . + +nwbib-spatial:Q56024320 + a skos:Concept ; + skos:broader nwbib-spatial:Q881495 ; + skos:inScheme ; + skos:prefLabel "Einbrungen"@de ; + foaf:focus wd:Q56024320 . + +nwbib-spatial:Q1368636 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803603 ; + skos:inScheme ; + skos:prefLabel "Leithe"@de ; + foaf:focus wd:Q1368636 . + +nwbib-spatial:Q1543659 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Gratzfeld"@de ; + foaf:focus wd:Q1543659 . + +nwbib-spatial:Q1558881 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Ostönnen"@de ; + foaf:focus wd:Q1558881 . + +nwbib-spatial:Q1731353 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Schlüsselburg"@de ; + foaf:focus wd:Q1731353 . + +nwbib-spatial:Q245579 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378008" ; + skos:prefLabel "Burscheid"@de ; + foaf:focus wd:Q245579 . + +nwbib-spatial:Q2568740 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Wiemeringhausen"@de ; + foaf:focus wd:Q2568740 . + +nwbib-spatial:Q59138859 + a skos:Concept ; + skos:broader nwbib-spatial:Q512233 ; + skos:inScheme ; + skos:prefLabel "Hamborn"@de ; + foaf:focus wd:Q59138859 . + +nwbib-spatial:Q1614216 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Herrig"@de ; + foaf:focus wd:Q1614216 . + +nwbib-spatial:Q570295 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Anstel"@de ; + foaf:focus wd:Q570295 . + +nwbib-spatial:Q32750 a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754052" ; + skos:prefLabel "Werther (Westf.)"@de ; + foaf:focus wd:Q32750 . + +nwbib-spatial:Q621848 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Apricke"@de ; + foaf:focus wd:Q621848 . + +nwbib-spatial:Q459769 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Benrath"@de ; + foaf:focus wd:Q459769 . + +nwbib-spatial:Q1808919 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Lavesum"@de ; + foaf:focus wd:Q1808919 . + +nwbib-spatial:Q2563936 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Weslarn"@de ; + foaf:focus wd:Q2563936 . + +nwbib-spatial:Q1547300 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Gronau (Bergisch Gladbach)"@de ; + foaf:focus wd:Q1547300 . + +nwbib-spatial:Q2109576 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Priesterath"@de ; + foaf:focus wd:Q2109576 . + +nwbib-spatial:Q10952 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970008" ; + skos:prefLabel "Burbach"@de ; + foaf:focus wd:Q10952 . + +nwbib-spatial:N66 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "66" ; + skos:prefLabel "Vest Recklinghausen"@de ; + foaf:focus wd:Q514557 . + +nwbib-spatial:Q1631836 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Wulmeringhausen"@de ; + foaf:focus wd:Q1631836 . + +nwbib-spatial:Q2300600 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Sommersell"@de ; + foaf:focus wd:Q2300600 . + +nwbib-spatial:Q973810 + a skos:Concept ; + skos:broader nwbib-spatial:Q53904 ; + skos:inScheme ; + skos:prefLabel "Hücker-Aschen"@de ; + foaf:focus wd:Q973810 . + +nwbib-spatial:Q1955153 + a skos:Concept ; + skos:broader nwbib-spatial:Q200528 ; + skos:inScheme ; + skos:prefLabel "Ammeloe"@de ; + foaf:focus wd:Q1955153 . + +nwbib-spatial:Q1523571 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Rhedebrügge"@de ; + foaf:focus wd:Q1523571 . + +nwbib-spatial:Q2015961 + a skos:Concept ; + skos:broader nwbib-spatial:Q182208 ; + skos:inScheme ; + skos:prefLabel "Offlum"@de ; + foaf:focus wd:Q2015961 . + +nwbib-spatial:Q199292 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Zieverich"@de ; + foaf:focus wd:Q199292 . + +nwbib-spatial:Q45710346 + a skos:Concept ; + skos:broader nwbib-spatial:Q5569 ; + skos:inScheme ; + skos:prefLabel "Rönsahl"@de ; + foaf:focus wd:Q45710346 . + +nwbib-spatial:Q1737135 + a skos:Concept ; + skos:broader nwbib-spatial:Q225375 ; + skos:inScheme ; + skos:prefLabel "Kaunitz"@de ; + foaf:focus wd:Q1737135 . + +nwbib-spatial:Q1027189 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Calle"@de ; + foaf:focus wd:Q1027189 . + +nwbib-spatial:Q1355364 + a skos:Concept ; + skos:broader nwbib-spatial:Q200247 ; + skos:inScheme ; + skos:prefLabel "Erle"@de ; + foaf:focus wd:Q1355364 . + +nwbib-spatial:Q177500 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Hülscheid"@de ; + foaf:focus wd:Q177500 . + +nwbib-spatial:Q1296974 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Paderborn"@de ; + foaf:focus wd:Q1296974 . + +nwbib-spatial:Q1261123 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Druffel"@de ; + foaf:focus wd:Q1261123 . + +nwbib-spatial:Q691386 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Vilich-Müldorf"@de ; + foaf:focus wd:Q691386 . + +nwbib-spatial:Q1726657 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Krauthausen"@de ; + foaf:focus wd:Q1726657 . + +nwbib-spatial:Q1797990 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Wiesdorf"@de ; + foaf:focus wd:Q1797990 . + +nwbib-spatial:Q1235576 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Eudenbach"@de ; + foaf:focus wd:Q1235576 . + +nwbib-spatial:Q807998 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Bardenberg"@de ; + foaf:focus wd:Q807998 . + +nwbib-spatial:Q1524634 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Gillrath"@de ; + foaf:focus wd:Q1524634 . + +nwbib-spatial:Q55498123 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Kabel"@de ; + foaf:focus wd:Q55498123 . + +nwbib-spatial:Q1230192 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Müddersheim"@de ; + foaf:focus wd:Q1230192 . + +nwbib-spatial:N45 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "45" ; + skos:prefLabel "Grafschaft, Herzogtum Kleve"@de ; + foaf:focus wd:Q641138 . + +nwbib-spatial:Q813821 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Beddelhausen"@de ; + foaf:focus wd:Q813821 . + +nwbib-spatial:Q3939 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170008" ; + skos:prefLabel "Dinslaken"@de ; + foaf:focus wd:Q3939 . + +nwbib-spatial:Q179699 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Kaldenkirchen"@de ; + foaf:focus wd:Q179699 . + +nwbib-spatial:Q2559604 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Wennigloh"@de ; + foaf:focus wd:Q2559604 . + +nwbib-spatial:Q15056550 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Hardterbroich-Pesch"@de ; + foaf:focus wd:Q15056550 . + +nwbib-spatial:Q1455805 + a skos:Concept ; + skos:broader nwbib-spatial:Q151287 ; + skos:inScheme ; + skos:prefLabel "Freund (Aachen)"@de ; + foaf:focus wd:Q1455805 . + +nwbib-spatial:Q59259446 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Geisweid"@de ; + foaf:focus wd:Q59259446 . + +nwbib-spatial:Q1321925 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Gruissem"@de ; + foaf:focus wd:Q1321925 . + +nwbib-spatial:Q55623694 + a skos:Concept ; + skos:broader nwbib-spatial:Q5839 ; + skos:inScheme ; + skos:prefLabel "Kiesbert"@de ; + foaf:focus wd:Q55623694 . + +nwbib-spatial:Q1471794 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Frömern"@de ; + foaf:focus wd:Q1471794 . + +nwbib-spatial:Q1917397 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Mehr"@de ; + foaf:focus wd:Q1917397 . + +nwbib-spatial:Q23835486 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Burlo"@de ; + foaf:focus wd:Q23835486 . + +nwbib-spatial:Q2350846 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q2350846 . + +nwbib-spatial:N24 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "24" ; + skos:prefLabel "Niederrhein-Gebiet"@de ; + foaf:focus wd:Q445609 . + +nwbib-spatial:Q45744530 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Großkönigsdorf"@de ; + foaf:focus wd:Q45744530 . + +nwbib-spatial:Q31312912 + a skos:Concept ; + skos:broader nwbib-spatial:Q109773 ; + skos:inScheme ; + skos:prefLabel "Lippischer Wald"@de ; + foaf:focus wd:Q31312912 . + +nwbib-spatial:Q1265317 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Neustadt"@de ; + foaf:focus wd:Q1265317 . + +nwbib-spatial:Q2009801 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Oberhausen"@de ; + foaf:focus wd:Q2009801 . + +nwbib-spatial:Q1368652 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803603 ; + skos:inScheme ; + skos:prefLabel "Steele"@de ; + foaf:focus wd:Q1368652 . + +nwbib-spatial:Q20182568 + a skos:Concept ; + skos:broader nwbib-spatial:Q181541 ; + skos:inScheme ; + skos:prefLabel "Haltern"@de ; + foaf:focus wd:Q20182568 . + +nwbib-spatial:Q1271918 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Dünschede"@de ; + foaf:focus wd:Q1271918 . + +nwbib-spatial:Q56373173 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Beckum"@de ; + foaf:focus wd:Q56373173 . + +nwbib-spatial:Q1683673 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Mönekind"@de ; + foaf:focus wd:Q1683673 . + +nwbib-spatial:Q1785480 + a skos:Concept ; + skos:broader nwbib-spatial:Q11049 ; + skos:inScheme ; + skos:prefLabel "Kotthausen"@de ; + foaf:focus wd:Q1785480 . + +nwbib-spatial:Q1349119 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Erder"@de ; + foaf:focus wd:Q1349119 . + +nwbib-spatial:Q15122844 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Niederdrees"@de ; + foaf:focus wd:Q15122844 . + +nwbib-spatial:Q865895 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Birth"@de ; + foaf:focus wd:Q865895 . + +nwbib-spatial:Q14943 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558020" ; + skos:prefLabel "Havixbeck"@de ; + foaf:focus wd:Q14943 . + +nwbib-spatial:Q2834 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570048" ; + skos:prefLabel "Wadersloh"@de ; + foaf:focus wd:Q2834 . + +nwbib-spatial:Q817833 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Bennerscheid"@de ; + foaf:focus wd:Q817833 . + +nwbib-spatial:Q1028921 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Langenich"@de ; + foaf:focus wd:Q1028921 . + +nwbib-spatial:Q204793 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370008" ; + skos:prefLabel "Gangelt"@de ; + foaf:focus wd:Q204793 . + +nwbib-spatial:Q56570939 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Roggendorf"@de ; + foaf:focus wd:Q56570939 . + +nwbib-spatial:Q56398585 + a skos:Concept ; + skos:broader nwbib-spatial:Q702291 ; + skos:inScheme ; + skos:prefLabel "Dekanat Wattenscheid"@de ; + foaf:focus wd:Q56398585 . + +nwbib-spatial:N0 a skos:Concept ; + skos:inScheme ; + skos:notation "0" ; + skos:prefLabel "Nordrhein-Westfalen insgesamt. Landesteile"@de . + +nwbib-spatial:Q29547959 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Broch"@de ; + foaf:focus wd:Q29547959 . + +nwbib-spatial:Q1418553 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Ohmig"@de ; + foaf:focus wd:Q1418553 . + +nwbib-spatial:Q998691 + a skos:Concept ; + skos:broader nwbib-spatial:Q163017 ; + skos:inScheme ; + skos:prefLabel "Bucholtwelmen"@de ; + foaf:focus wd:Q998691 . + +nwbib-spatial:Q4094 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158016" ; + skos:prefLabel "Hilden"@de ; + foaf:focus wd:Q4094 . + +nwbib-spatial:Q2498068 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Untermaubach"@de ; + foaf:focus wd:Q2498068 . + +nwbib-spatial:N03 a skos:Concept ; + skos:broader nwbib-spatial:N0 ; + skos:inScheme ; + skos:notation "03" ; + skos:prefLabel "Rheinland"@de ; + foaf:focus wd:Q152243 . + +nwbib-spatial:Q269297 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Hörde"@de ; + foaf:focus wd:Q269297 . + +nwbib-spatial:Q895174 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Bourauel"@de ; + foaf:focus wd:Q895174 . + +nwbib-spatial:Q1368631 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Huttrop"@de ; + foaf:focus wd:Q1368631 . + +nwbib-spatial:Q1805215 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Langewiese"@de ; + foaf:focus wd:Q1805215 . + +nwbib-spatial:Q1622822 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Hoengen"@de ; + foaf:focus wd:Q1622822 . + +nwbib-spatial:Q1891167 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Manstedten"@de ; + foaf:focus wd:Q1891167 . + +nwbib-spatial:Q2596605 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Wülpke"@de ; + foaf:focus wd:Q2596605 . + +nwbib-spatial:Q1643934 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Höingen"@de ; + foaf:focus wd:Q1643934 . + +nwbib-spatial:Q1528807 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Oelgershausen"@de ; + foaf:focus wd:Q1528807 . + +nwbib-spatial:Q882652 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Wiedenbrück"@de ; + foaf:focus wd:Q882652 . + +nwbib-spatial:Q1743366 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Kirchrarbach"@de ; + foaf:focus wd:Q1743366 . + +nwbib-spatial:Q12547 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382048" ; + skos:prefLabel "Rheinbach"@de ; + foaf:focus wd:Q12547 . + +nwbib-spatial:Q653132 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Einruhr"@de ; + foaf:focus wd:Q653132 . + +nwbib-spatial:Q151333 + a skos:Concept ; + skos:broader nwbib-spatial:Q200743 ; + skos:inScheme ; + skos:prefLabel "Mulartshütte"@de ; + foaf:focus wd:Q151333 . + +nwbib-spatial:Q1400419 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Rheinbach (bis 1932)"@de ; + foaf:focus wd:Q1400419 . + +nwbib-spatial:Q24390299 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Haffen"@de ; + foaf:focus wd:Q24390299 . + +nwbib-spatial:Q182805 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770020" ; + skos:prefLabel "Lübbecke"@de ; + foaf:focus wd:Q182805 . + +nwbib-spatial:Q324657 + a skos:Concept ; + skos:broader nwbib-spatial:Q181981 ; + skos:inScheme ; + skos:prefLabel "Kattenvenne"@de ; + foaf:focus wd:Q324657 . + +nwbib-spatial:Q59139996 + a skos:Concept ; + skos:broader nwbib-spatial:Q3069 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Kirchhellen"@de ; + foaf:focus wd:Q59139996 . + +nwbib-spatial:Q10719 a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Lessenich"@de ; + foaf:focus wd:Q10719 . + +nwbib-spatial:Q1979269 + a skos:Concept ; + skos:broader nwbib-spatial:Q2707 ; + skos:inScheme ; + skos:prefLabel "Neubeckum"@de ; + foaf:focus wd:Q1979269 . + +nwbib-spatial:Q8856 a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154052" ; + skos:prefLabel "Straelen"@de ; + foaf:focus wd:Q8856 . + +nwbib-spatial:Q2120762 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Pömbsen"@de ; + foaf:focus wd:Q2120762 . + +nwbib-spatial:Q2729570 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Hüthum"@de ; + foaf:focus wd:Q2729570 . + +nwbib-spatial:Q2015245 + a skos:Concept ; + skos:broader nwbib-spatial:Q242320 ; + skos:inScheme ; + skos:prefLabel "Oesterholz-Haustenbeck"@de ; + foaf:focus wd:Q2015245 . + +nwbib-spatial:Q1595187 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Heiligenhaus"@de ; + foaf:focus wd:Q1595187 . + +nwbib-spatial:Q378206 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Adscheid"@de ; + foaf:focus wd:Q378206 . + +nwbib-spatial:Q2871 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05914" ; + skos:prefLabel "Hagen"@de ; + foaf:focus wd:Q2871 . + +nwbib-spatial:Q1276112 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Vellinghausen-Eilmsen"@de ; + foaf:focus wd:Q1276112 . + +nwbib-spatial:Q1541799 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Schwalenberg"@de ; + foaf:focus wd:Q1541799 . + +nwbib-spatial:Q15056481 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Götterswickerhamm"@de ; + foaf:focus wd:Q15056481 . + +nwbib-spatial:Q2407434 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Teveren"@de ; + foaf:focus wd:Q2407434 . + +nwbib-spatial:Q14895 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170020" ; + skos:prefLabel "Kamp-Lintfort"@de ; + foaf:focus wd:Q14895 . + +nwbib-spatial:Q907346 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Bremen"@de ; + foaf:focus wd:Q907346 . + +nwbib-spatial:Q16018 a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566084" ; + skos:prefLabel "Steinfurt"@de ; + foaf:focus wd:Q16018 . + +nwbib-spatial:Q1301886 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Eichhagen"@de ; + foaf:focus wd:Q1301886 . + +nwbib-spatial:Q152937 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Niederaußem"@de ; + foaf:focus wd:Q152937 . + +nwbib-spatial:Q19588522 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Wambeln"@de ; + foaf:focus wd:Q19588522 . + +nwbib-spatial:Q14901 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334036" ; + skos:prefLabel "Würselen"@de ; + foaf:focus wd:Q14901 . + +nwbib-spatial:Q1034547 + a skos:Concept ; + skos:broader nwbib-spatial:Q14923 ; + skos:inScheme ; + skos:prefLabel "Capelle"@de ; + foaf:focus wd:Q1034547 . + +nwbib-spatial:Q1686522 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Wehringhausen"@de ; + foaf:focus wd:Q1686522 . + +nwbib-spatial:Q2442166 + a skos:Concept ; + skos:broader nwbib-spatial:Q182979 ; + skos:inScheme ; + skos:prefLabel "Tonnenheide"@de ; + foaf:focus wd:Q2442166 . + +nwbib-spatial:Q880621 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Miel"@de ; + foaf:focus wd:Q880621 . + +nwbib-spatial:Q2362403 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Wingeshausen"@de ; + foaf:focus wd:Q2362403 . + +nwbib-spatial:Q759109 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Auenhausen"@de ; + foaf:focus wd:Q759109 . + +nwbib-spatial:Q2563342 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Werringsen"@de ; + foaf:focus wd:Q2563342 . + +nwbib-spatial:Q832070 + a skos:Concept ; + skos:broader nwbib-spatial:Q53907 ; + skos:inScheme ; + skos:prefLabel "Exter"@de ; + foaf:focus wd:Q832070 . + +nwbib-spatial:Q6910 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558016" ; + skos:prefLabel "Dülmen"@de ; + foaf:focus wd:Q6910 . + +nwbib-spatial:Q432959 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Alt-Marl"@de ; + foaf:focus wd:Q432959 . + +nwbib-spatial:Q2707 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570008" ; + skos:prefLabel "Beckum"@de ; + foaf:focus wd:Q2707 . + +nwbib-spatial:Q2473781 + a skos:Concept ; + skos:broader nwbib-spatial:Q53907 ; + skos:inScheme ; + skos:prefLabel "Uffeln"@de ; + foaf:focus wd:Q2473781 . + +nwbib-spatial:Q5677 a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Blumenberg"@de ; + foaf:focus wd:Q5677 . + +nwbib-spatial:Q1695713 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Kesternich"@de ; + foaf:focus wd:Q1695713 . + +nwbib-spatial:Q2123006 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Quettingen"@de ; + foaf:focus wd:Q2123006 . + +nwbib-spatial:Q1980790 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Neukirchen"@de ; + foaf:focus wd:Q1980790 . + +nwbib-spatial:Q2015224 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Oesinghausen"@de ; + foaf:focus wd:Q2015224 . + +nwbib-spatial:Q117780 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Remmighausen"@de ; + foaf:focus wd:Q117780 . + +nwbib-spatial:Q1280016 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Gnadental"@de ; + foaf:focus wd:Q1280016 . + +nwbib-spatial:Q941000 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Garzweiler"@de ; + foaf:focus wd:Q941000 . + +nwbib-spatial:Q56008187 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Baal"@de ; + foaf:focus wd:Q56008187 . + +nwbib-spatial:Q2473696 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Uetterath"@de ; + foaf:focus wd:Q2473696 . + +nwbib-spatial:Q165763 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Waldeck (bis 1918)"@de ; + foaf:focus wd:Q165763 . + +nwbib-spatial:Q151285 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Bensberg"@de ; + foaf:focus wd:Q151285 . + +nwbib-spatial:Q790589 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Avenwedde"@de ; + foaf:focus wd:Q790589 . + +nwbib-spatial:Q702411 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Rheydt"@de ; + foaf:focus wd:Q702411 . + +nwbib-spatial:Q55585785 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Brockhausen"@de ; + foaf:focus wd:Q55585785 . + +nwbib-spatial:Q808488 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Barnhausen"@de ; + foaf:focus wd:Q808488 . + +nwbib-spatial:Q56008108 + a skos:Concept ; + skos:broader nwbib-spatial:Q7062 ; + skos:inScheme ; + skos:prefLabel "Laacherhof"@de ; + foaf:focus wd:Q56008108 . + +nwbib-spatial:Q1172775 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Daubenrath"@de ; + foaf:focus wd:Q1172775 . + +nwbib-spatial:Q2765 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05513" ; + skos:prefLabel "Gelsenkirchen"@de ; + foaf:focus wd:Q2765 . + +nwbib-spatial:Q1778914 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Mecklinghausen"@de ; + foaf:focus wd:Q1778914 . + +nwbib-spatial:Q181673 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566068" ; + skos:prefLabel "Ochtrup"@de ; + foaf:focus wd:Q181673 . + +nwbib-spatial:Q1414992 + a skos:Concept ; + skos:broader nwbib-spatial:Q14921 ; + skos:inScheme ; + skos:prefLabel "Herbern"@de ; + foaf:focus wd:Q1414992 . + +nwbib-spatial:Q1470000 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Marienberghausen"@de ; + foaf:focus wd:Q1470000 . + +nwbib-spatial:Q1575260 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Lockhausen"@de ; + foaf:focus wd:Q1575260 . + +nwbib-spatial:Q1313406 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Eiserfey"@de ; + foaf:focus wd:Q1313406 . + +nwbib-spatial:Q6257 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05158" ; + skos:prefLabel "Kreis Mettmann"@de ; + foaf:focus wd:Q6257 . + +nwbib-spatial:Q899490 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Brassert"@de ; + foaf:focus wd:Q899490 . + +nwbib-spatial:Q18668419 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Berkum (Wachtberg)"@de ; + foaf:focus wd:Q18668419 . + +nwbib-spatial:Q1971675 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Natzungen"@de ; + foaf:focus wd:Q1971675 . + +nwbib-spatial:Q1733988 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Lenningsen"@de ; + foaf:focus wd:Q1733988 . + +nwbib-spatial:Q200044 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358040" ; + skos:prefLabel "Merzenich"@de ; + foaf:focus wd:Q200044 . + +nwbib-spatial:Q55587449 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Essel"@de ; + foaf:focus wd:Q55587449 . + +nwbib-spatial:Q127709 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Kirchilpe"@de ; + foaf:focus wd:Q127709 . + +nwbib-spatial:Q2282613 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Siedlung Eisenheim"@de ; + foaf:focus wd:Q2282613 . + +nwbib-spatial:Q2569665 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Wietersheim"@de ; + foaf:focus wd:Q2569665 . + +nwbib-spatial:Q391177 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Agathaberg"@de ; + foaf:focus wd:Q391177 . + +nwbib-spatial:Q2529646 + a skos:Concept ; + skos:broader nwbib-spatial:Q200138 ; + skos:inScheme ; + skos:prefLabel "Vlatten"@de ; + foaf:focus wd:Q2529646 . + +nwbib-spatial:Q894908 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139867 ; + skos:inScheme ; + skos:prefLabel "Boy"@de ; + foaf:focus wd:Q894908 . + +nwbib-spatial:Q3971 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758012" ; + skos:prefLabel "Herford"@de ; + foaf:focus wd:Q3971 . + +nwbib-spatial:Q2357464 + a skos:Concept ; + skos:broader nwbib-spatial:Q10958 ; + skos:inScheme ; + skos:prefLabel "Struthütten"@de ; + foaf:focus wd:Q2357464 . + +nwbib-spatial:Q20826977 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Uentrop"@de ; + foaf:focus wd:Q20826977 . + +nwbib-spatial:Q766190 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Junkersdorf"@de ; + foaf:focus wd:Q766190 . + +nwbib-spatial:Q1428340 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Fley"@de ; + foaf:focus wd:Q1428340 . + +nwbib-spatial:Q19294919 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Listerscheid"@de ; + foaf:focus wd:Q19294919 . + +nwbib-spatial:Q314234 + a skos:Concept ; + skos:broader nwbib-spatial:Q2904 ; + skos:inScheme ; + skos:prefLabel "Wanne-Eickel"@de ; + foaf:focus wd:Q314234 . + +nwbib-spatial:Q17124968 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Oberkollenbach"@de ; + foaf:focus wd:Q17124968 . + +nwbib-spatial:Q929643 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Horrem"@de ; + foaf:focus wd:Q929643 . + +nwbib-spatial:Q2303894 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Sottenbach"@de ; + foaf:focus wd:Q2303894 . + +nwbib-spatial:Q2192405 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Weine"@de ; + foaf:focus wd:Q2192405 . + +nwbib-spatial:Q3886 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562012" ; + skos:prefLabel "Dorsten"@de ; + foaf:focus wd:Q3886 . + +nwbib-spatial:Q432917 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Alt-Godesberg"@de ; + foaf:focus wd:Q432917 . + +nwbib-spatial:Q242514 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766028" ; + skos:prefLabel "Extertal"@de ; + foaf:focus wd:Q242514 . + +nwbib-spatial:Q15115285 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Huck"@de ; + foaf:focus wd:Q15115285 . + +nwbib-spatial:Q1495868 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Gatzweiler"@de ; + foaf:focus wd:Q1495868 . + +nwbib-spatial:Q1498844 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Geisecke"@de ; + foaf:focus wd:Q1498844 . + +nwbib-spatial:Q833170 + a skos:Concept ; + skos:broader nwbib-spatial:Q53913 ; + skos:inScheme ; + skos:prefLabel "Schwenningdorf"@de ; + foaf:focus wd:Q833170 . + +nwbib-spatial:Q1353462 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Wulwesort"@de ; + foaf:focus wd:Q1353462 . + +nwbib-spatial:Q1646188 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Neulouisendorf"@de ; + foaf:focus wd:Q1646188 . + +nwbib-spatial:Q19965806 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Stockhausen"@de ; + foaf:focus wd:Q19965806 . + +nwbib-spatial:Q151243 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Castrop"@de ; + foaf:focus wd:Q151243 . + +nwbib-spatial:Q44939213 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Müllingsen"@de ; + foaf:focus wd:Q44939213 . + +nwbib-spatial:Q1747394 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Rehme"@de ; + foaf:focus wd:Q1747394 . + +nwbib-spatial:Q450087 + a skos:Concept ; + skos:broader nwbib-spatial:Q586 ; + skos:inScheme ; + skos:prefLabel "Hardtberg (Stadtbezirk)"@de ; + foaf:focus wd:Q450087 . + +nwbib-spatial:Q1250668 + a skos:Concept ; + skos:broader nwbib-spatial:Q989822 ; + skos:inScheme ; + skos:prefLabel "Lindenhorst"@de ; + foaf:focus wd:Q1250668 . + +nwbib-spatial:Q2015240 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Oestereiden"@de ; + foaf:focus wd:Q2015240 . + +nwbib-spatial:Q2428477 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Thomasberg (Königswinter)"@de ; + foaf:focus wd:Q2428477 . + +nwbib-spatial:Q1625538 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Holzhausen"@de ; + foaf:focus wd:Q1625538 . + +nwbib-spatial:Q242572 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766024" ; + skos:prefLabel "Dörentrup"@de ; + foaf:focus wd:Q242572 . + +nwbib-spatial:Q183374 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774012" ; + skos:prefLabel "Borchen"@de ; + foaf:focus wd:Q183374 . + +nwbib-spatial:Q61726052 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Beek (Xanten)"@de ; + foaf:focus wd:Q61726052 . + +nwbib-spatial:Q55585175 + a skos:Concept ; + skos:broader nwbib-spatial:Q200581 ; + skos:inScheme ; + skos:prefLabel "Krommert"@de ; + foaf:focus wd:Q55585175 . + +nwbib-spatial:Q1946909 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Moorshoven"@de ; + foaf:focus wd:Q1946909 . + +nwbib-spatial:Q593784 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Dahlbruch"@de ; + foaf:focus wd:Q593784 . + +nwbib-spatial:Q1271297 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Dörnberg"@de ; + foaf:focus wd:Q1271297 . + +nwbib-spatial:Q19835476 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Billmerich"@de ; + foaf:focus wd:Q19835476 . + +nwbib-spatial:Q1593980 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Heidelbeck"@de ; + foaf:focus wd:Q1593980 . + +nwbib-spatial:Q294673 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Öhde"@de ; + foaf:focus wd:Q294673 . + +nwbib-spatial:Q469928 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Rheinhausen (Stadtbezirk)"@de ; + foaf:focus wd:Q469928 . + +nwbib-spatial:Q1523312 + a skos:Concept ; + skos:broader nwbib-spatial:Q242572 ; + skos:inScheme ; + skos:prefLabel "Hillentrup"@de ; + foaf:focus wd:Q1523312 . + +nwbib-spatial:Q1739728 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Kervenheim"@de ; + foaf:focus wd:Q1739728 . + +nwbib-spatial:Q20826935 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573609 ; + skos:inScheme ; + skos:prefLabel "Lerche"@de ; + foaf:focus wd:Q20826935 . + +nwbib-spatial:Q56372838 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Ahlen"@de ; + foaf:focus wd:Q56372838 . + +nwbib-spatial:Q2538692 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Wadelheim"@de ; + foaf:focus wd:Q2538692 . + +nwbib-spatial:Q2010494 + a skos:Concept ; + skos:broader nwbib-spatial:Q14863 ; + skos:inScheme ; + skos:prefLabel "Obernbeck"@de ; + foaf:focus wd:Q2010494 . + +nwbib-spatial:Q1469641 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Frohnhausen"@de ; + foaf:focus wd:Q1469641 . + +nwbib-spatial:Q2051360 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Paradiese"@de ; + foaf:focus wd:Q2051360 . + +nwbib-spatial:Q254171 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382040" ; + skos:prefLabel "Neunkirchen-Seelscheid"@de ; + foaf:focus wd:Q254171 . + +nwbib-spatial:Q1237145 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Walbrecken"@de ; + foaf:focus wd:Q1237145 . + +nwbib-spatial:Q2543282 + a skos:Concept ; + skos:broader nwbib-spatial:Q2713 ; + skos:inScheme ; + skos:prefLabel "Walstedde"@de ; + foaf:focus wd:Q2543282 . + +nwbib-spatial:Q889550 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Bodenheim (Weilerswist)"@de ; + foaf:focus wd:Q889550 . + +nwbib-spatial:Q2237935 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Schladern"@de ; + foaf:focus wd:Q2237935 . + +nwbib-spatial:Q1959109 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Roxel"@de ; + foaf:focus wd:Q1959109 . + +nwbib-spatial:Q2455470 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Trophagen"@de ; + foaf:focus wd:Q2455470 . + +nwbib-spatial:Q446864 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Chorweiler (Stadtbezirk)"@de ; + foaf:focus wd:Q446864 . + +nwbib-spatial:Q894441 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Boslar"@de ; + foaf:focus wd:Q894441 . + +nwbib-spatial:Q2760 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570020" ; + skos:prefLabel "Ennigerloh"@de ; + foaf:focus wd:Q2760 . + +nwbib-spatial:Q1360719 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Refrath"@de ; + foaf:focus wd:Q1360719 . + +nwbib-spatial:Q583886 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Rurdorf"@de ; + foaf:focus wd:Q583886 . + +nwbib-spatial:Q1304125 + a skos:Concept ; + skos:broader nwbib-spatial:Q2871 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Eilpe/Dahl"@de ; + foaf:focus wd:Q1304125 . + +nwbib-spatial:Q1250711 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Westrich"@de ; + foaf:focus wd:Q1250711 . + +nwbib-spatial:Q1374714 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Rodder"@de ; + foaf:focus wd:Q1374714 . + +nwbib-spatial:Q2179402 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Röhe"@de ; + foaf:focus wd:Q2179402 . + +nwbib-spatial:Q759077 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Aue"@de ; + foaf:focus wd:Q759077 . + +nwbib-spatial:Q1743149 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Hattingen-Witten"@de ; + foaf:focus wd:Q1743149 . + +nwbib-spatial:Q1758854 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Schönhausen"@de ; + foaf:focus wd:Q1758854 . + +nwbib-spatial:Q1572677 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Hambach"@de ; + foaf:focus wd:Q1572677 . + +nwbib-spatial:Q1739707 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Päpinghausen"@de ; + foaf:focus wd:Q1739707 . + +nwbib-spatial:Q1316769 + a skos:Concept ; + skos:broader nwbib-spatial:Q323826 ; + skos:inScheme ; + skos:prefLabel "Ludenberg"@de ; + foaf:focus wd:Q1316769 . + +nwbib-spatial:Q1764346 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Niederntudorf"@de ; + foaf:focus wd:Q1764346 . + +nwbib-spatial:Q11331 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954012" ; + skos:prefLabel "Gevelsberg"@de ; + foaf:focus wd:Q11331 . + +nwbib-spatial:Q1250626 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Hacheney"@de ; + foaf:focus wd:Q1250626 . + +nwbib-spatial:Q3823 a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Neustadt-Nord"@de ; + foaf:focus wd:Q3823 . + +nwbib-spatial:Q1483781 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Füssenich"@de ; + foaf:focus wd:Q1483781 . + +nwbib-spatial:Q1397086 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Flerke"@de ; + foaf:focus wd:Q1397086 . + +nwbib-spatial:Q900023 + a skos:Concept ; + skos:broader nwbib-spatial:Q3905 ; + skos:inScheme ; + skos:prefLabel "Brauck"@de ; + foaf:focus wd:Q900023 . + +nwbib-spatial:Q181504 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566016" ; + skos:prefLabel "Hörstel"@de ; + foaf:focus wd:Q181504 . + +nwbib-spatial:Q56395189 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Dorsten"@de ; + foaf:focus wd:Q56395189 . + +nwbib-spatial:Q326332 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Heiligenkirchen"@de ; + foaf:focus wd:Q326332 . + +nwbib-spatial:Q23785305 + a skos:Concept ; + skos:broader nwbib-spatial:Q15114696 ; + skos:inScheme ; + skos:prefLabel "Horsthausen"@de ; + foaf:focus wd:Q23785305 . + +nwbib-spatial:Q153406 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Worringen"@de ; + foaf:focus wd:Q153406 . + +nwbib-spatial:Q447359 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Lobberich"@de ; + foaf:focus wd:Q447359 . + +nwbib-spatial:Q1343221 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Enkhausen"@de ; + foaf:focus wd:Q1343221 . + +nwbib-spatial:Q58456 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962056" ; + skos:prefLabel "Schalksmühle"@de ; + foaf:focus wd:Q58456 . + +nwbib-spatial:Q17592686 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Aachen"@de ; + foaf:focus wd:Q17592686 . + +nwbib-spatial:Q1258777 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Landkreis Dortmund (bis 1928)"@de ; + foaf:focus wd:Q1258777 . + +nwbib-spatial:Q1805120 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Langenstraße-Heddinghausen"@de ; + foaf:focus wd:Q1805120 . + +nwbib-spatial:Q1343762 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Hecken"@de ; + foaf:focus wd:Q1343762 . + +nwbib-spatial:Q1724607 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Mettinghausen"@de ; + foaf:focus wd:Q1724607 . + +nwbib-spatial:Q1157817 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Dalborn"@de ; + foaf:focus wd:Q1157817 . + +nwbib-spatial:Q547481 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Lindenthal"@de ; + foaf:focus wd:Q547481 . + +nwbib-spatial:Q432827 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Alswede"@de ; + foaf:focus wd:Q432827 . + +nwbib-spatial:Q56008538 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Buchholz"@de ; + foaf:focus wd:Q56008538 . + +nwbib-spatial:Q7920 a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:notation "055" ; + skos:prefLabel "Regierungsbezirk Münster"@de ; + foaf:focus wd:Q7920 . + +nwbib-spatial:Q1339126 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Empel"@de ; + foaf:focus wd:Q1339126 . + +nwbib-spatial:Q1271860 + a skos:Concept ; + skos:broader nwbib-spatial:Q2707 ; + skos:inScheme ; + skos:prefLabel "Dünninghausen"@de ; + foaf:focus wd:Q1271860 . + +nwbib-spatial:Q1268007 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Dutum"@de ; + foaf:focus wd:Q1268007 . + +nwbib-spatial:Q6210 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05558" ; + skos:prefLabel "Kreis Coesfeld"@de ; + foaf:focus wd:Q6210 . + +nwbib-spatial:Q881871 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Blasheim"@de ; + foaf:focus wd:Q881871 . + +nwbib-spatial:Q30074363 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Herringsen"@de ; + foaf:focus wd:Q30074363 . + +nwbib-spatial:Q1554715 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Lütgendortmund"@de ; + foaf:focus wd:Q1554715 . + +nwbib-spatial:Q1602809 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Hellersen"@de ; + foaf:focus wd:Q1602809 . + +nwbib-spatial:Q1250578 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Barop"@de ; + foaf:focus wd:Q1250578 . + +nwbib-spatial:Q1628424 + a skos:Concept ; + skos:broader nwbib-spatial:Q14940 ; + skos:inScheme ; + skos:prefLabel "Horneburg"@de ; + foaf:focus wd:Q1628424 . + +nwbib-spatial:Q199988 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358028" ; + skos:prefLabel "Kreuzau"@de ; + foaf:focus wd:Q199988 . + +nwbib-spatial:Q181541 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566024" ; + skos:prefLabel "Horstmar"@de ; + foaf:focus wd:Q181541 . + +nwbib-spatial:Q2512628 + a skos:Concept ; + skos:broader nwbib-spatial:Q182471 ; + skos:inScheme ; + skos:prefLabel "Hambüren"@de ; + foaf:focus wd:Q2512628 . + +nwbib-spatial:Q1558532 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Harzberg"@de ; + foaf:focus wd:Q1558532 . + +nwbib-spatial:Q831793 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Pütz"@de ; + foaf:focus wd:Q831793 . + +nwbib-spatial:Q1920323 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Menden-Holthausen"@de ; + foaf:focus wd:Q1920323 . + +nwbib-spatial:Q15123706 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Ostviertel"@de ; + foaf:focus wd:Q15123706 . + +nwbib-spatial:Q1651861 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Hörste"@de ; + foaf:focus wd:Q1651861 . + +nwbib-spatial:Q1296078 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Effeln"@de ; + foaf:focus wd:Q1296078 . + +nwbib-spatial:Q1000709 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Budberg"@de ; + foaf:focus wd:Q1000709 . + +nwbib-spatial:Q1250642 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Höchsten"@de ; + foaf:focus wd:Q1250642 . + +nwbib-spatial:Q2268372 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Selkentrop"@de ; + foaf:focus wd:Q2268372 . + +nwbib-spatial:Q11119 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974044" ; + skos:prefLabel "Warstein"@de ; + foaf:focus wd:Q11119 . + +nwbib-spatial:Q1520246 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Gevenich"@de ; + foaf:focus wd:Q1520246 . + +nwbib-spatial:Q446716 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Rodenkirchen (Stadtbezirk)"@de ; + foaf:focus wd:Q446716 . + +nwbib-spatial:Q1959104 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Münster-Mitte"@de ; + foaf:focus wd:Q1959104 . + +nwbib-spatial:Q30602340 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Osning"@de ; + foaf:focus wd:Q30602340 . + +nwbib-spatial:Q1868316 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Loikum"@de ; + foaf:focus wd:Q1868316 . + +nwbib-spatial:Q1529265 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Maumke"@de ; + foaf:focus wd:Q1529265 . + +nwbib-spatial:Q2142939 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Remerscheid"@de ; + foaf:focus wd:Q2142939 . + +nwbib-spatial:Q1795749 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Hahnwald"@de ; + foaf:focus wd:Q1795749 . + +nwbib-spatial:Q974597 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Hermerath"@de ; + foaf:focus wd:Q974597 . + +nwbib-spatial:Q1253050 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Lannesdorf"@de ; + foaf:focus wd:Q1253050 . + +nwbib-spatial:Q1774701 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Klinkum"@de ; + foaf:focus wd:Q1774701 . + +nwbib-spatial:Q2194016 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Türnich"@de ; + foaf:focus wd:Q2194016 . + +nwbib-spatial:Q1434906 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Flüren"@de ; + foaf:focus wd:Q1434906 . + +nwbib-spatial:Q27890124 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Hohr"@de ; + foaf:focus wd:Q27890124 . + +nwbib-spatial:Q1601704 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Helden"@de ; + foaf:focus wd:Q1601704 . + +nwbib-spatial:Q1019964 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Börninghausen"@de ; + foaf:focus wd:Q1019964 . + +nwbib-spatial:Q1301770 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Vinxel"@de ; + foaf:focus wd:Q1301770 . + +nwbib-spatial:Q59263010 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Weidenau"@de ; + foaf:focus wd:Q59263010 . + +nwbib-spatial:Q1523280 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Gierath"@de ; + foaf:focus wd:Q1523280 . + +nwbib-spatial:Q1250621 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326752 ; + skos:inScheme ; + skos:prefLabel "Gartenstadt"@de ; + foaf:focus wd:Q1250621 . + +nwbib-spatial:Q1594385 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Heidkamp"@de ; + foaf:focus wd:Q1594385 . + +nwbib-spatial:Q13388983 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Barmen (Stadtbezirk)"@de ; + foaf:focus wd:Q13388983 . + +nwbib-spatial:Q1376993 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Röthgen"@de ; + foaf:focus wd:Q1376993 . + +nwbib-spatial:Q2229149 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Schaag"@de ; + foaf:focus wd:Q2229149 . + +nwbib-spatial:Q2559249 + a skos:Concept ; + skos:broader nwbib-spatial:Q242572 ; + skos:inScheme ; + skos:prefLabel "Wendlinghausen"@de ; + foaf:focus wd:Q2559249 . + +nwbib-spatial:Q1675217 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Niederbellinghausen"@de ; + foaf:focus wd:Q1675217 . + +nwbib-spatial:Q917238 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Brilon-Wald"@de ; + foaf:focus wd:Q917238 . + +nwbib-spatial:Q683292 + a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Neuehrenfeld"@de ; + foaf:focus wd:Q683292 . + +nwbib-spatial:Q1282752 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Scheven"@de ; + foaf:focus wd:Q1282752 . + +nwbib-spatial:Q262410 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Obergartzem"@de ; + foaf:focus wd:Q262410 . + +nwbib-spatial:Q254458 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382036" ; + skos:prefLabel "Much"@de ; + foaf:focus wd:Q254458 . + +nwbib-spatial:Q59259723 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Siegen-Ost"@de ; + foaf:focus wd:Q59259723 . + +nwbib-spatial:Q1426353 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Flaesheim"@de ; + foaf:focus wd:Q1426353 . + +nwbib-spatial:Q1601677 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Helberhausen"@de ; + foaf:focus wd:Q1601677 . + +nwbib-spatial:Q15059086 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Queckenberg"@de ; + foaf:focus wd:Q15059086 . + +nwbib-spatial:Q15056742 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Honsdorf"@de ; + foaf:focus wd:Q15056742 . + +nwbib-spatial:Q2233764 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Scherpenseel"@de ; + foaf:focus wd:Q2233764 . + +nwbib-spatial:Q1250600 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326745 ; + skos:inScheme ; + skos:prefLabel "Deusen"@de ; + foaf:focus wd:Q1250600 . + +nwbib-spatial:Q1821058 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Leteln-Aminghausen"@de ; + foaf:focus wd:Q1821058 . + +nwbib-spatial:Q315138 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Opladen"@de ; + foaf:focus wd:Q315138 . + +nwbib-spatial:Q2597021 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Wüschheim"@de ; + foaf:focus wd:Q2597021 . + +nwbib-spatial:Q865631 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Birkesdorf"@de ; + foaf:focus wd:Q865631 . + +nwbib-spatial:Q3791 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158028" ; + skos:prefLabel "Ratingen"@de ; + foaf:focus wd:Q3791 . + +nwbib-spatial:Q1664979 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Vonderort"@de ; + foaf:focus wd:Q1664979 . + +nwbib-spatial:Q56398321 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Olpe"@de ; + foaf:focus wd:Q56398321 . + +nwbib-spatial:Q382268 + a skos:Concept ; + skos:broader nwbib-spatial:Q5535 ; + skos:inScheme ; + skos:prefLabel "Affeln"@de ; + foaf:focus wd:Q382268 . + +nwbib-spatial:Q1382464 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Evingsen"@de ; + foaf:focus wd:Q1382464 . + +nwbib-spatial:Q200326 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554024" ; + skos:prefLabel "Heek"@de ; + foaf:focus wd:Q200326 . + +nwbib-spatial:Q1823348 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Lichtenberg"@de ; + foaf:focus wd:Q1823348 . + +nwbib-spatial:Q1743181 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Unna"@de ; + foaf:focus wd:Q1743181 . + +nwbib-spatial:Q1514770 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Kepplerburg"@de ; + foaf:focus wd:Q1514770 . + +nwbib-spatial:Q1685614 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Landkreis Bonn (bis 1969)"@de ; + foaf:focus wd:Q1685614 . + +nwbib-spatial:Q2326757 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Innenstadt-West"@de ; + foaf:focus wd:Q2326757 . + +nwbib-spatial:Q614228 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Bochum (bis 1929)"@de ; + foaf:focus wd:Q614228 . + +nwbib-spatial:Q47012158 + a skos:Concept ; + skos:broader nwbib-spatial:Q6968 ; + skos:inScheme ; + skos:prefLabel "Neandertal"@de ; + foaf:focus wd:Q47012158 . + +nwbib-spatial:Q1792312 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Kunst Wittgenstein"@de ; + foaf:focus wd:Q1792312 . + +nwbib-spatial:Q1587141 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Harth"@de ; + foaf:focus wd:Q1587141 . + +nwbib-spatial:Q783466 + a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Ossendorf"@de ; + foaf:focus wd:Q783466 . + +nwbib-spatial:Q1251721 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Oberrarbach"@de ; + foaf:focus wd:Q1251721 . + +nwbib-spatial:Q437520 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Altenrüthen"@de ; + foaf:focus wd:Q437520 . + +nwbib-spatial:Q1119816 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Steckenborn"@de ; + foaf:focus wd:Q1119816 . + +nwbib-spatial:Q2586698 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Heven"@de ; + foaf:focus wd:Q2586698 . + +nwbib-spatial:Q2015458 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Offelten"@de ; + foaf:focus wd:Q2015458 . + +nwbib-spatial:Q2040103 + a skos:Concept ; + skos:broader nwbib-spatial:Q53904 ; + skos:inScheme ; + skos:prefLabel "Wallenbrück"@de ; + foaf:focus wd:Q2040103 . + +nwbib-spatial:Q1654121 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Velmede"@de ; + foaf:focus wd:Q1654121 . + +nwbib-spatial:Q2102669 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Polsum"@de ; + foaf:focus wd:Q2102669 . + +nwbib-spatial:Q1548565 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Großenheerse"@de ; + foaf:focus wd:Q1548565 . + +nwbib-spatial:Q1319045 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Weiershagen"@de ; + foaf:focus wd:Q1319045 . + +nwbib-spatial:Q11114 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974036" ; + skos:prefLabel "Rüthen"@de ; + foaf:focus wd:Q11114 . + +nwbib-spatial:Q1341823 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Ihmert"@de ; + foaf:focus wd:Q1341823 . + +nwbib-spatial:Q1697213 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Kirchscheid"@de ; + foaf:focus wd:Q1697213 . + +nwbib-spatial:Q15908975 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Obermeiderich"@de ; + foaf:focus wd:Q15908975 . + +nwbib-spatial:Q1570860 + a skos:Concept ; + skos:broader nwbib-spatial:Q182018 ; + skos:inScheme ; + skos:prefLabel "Halen"@de ; + foaf:focus wd:Q1570860 . + +nwbib-spatial:Q1356817 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Hegensdorf"@de ; + foaf:focus wd:Q1356817 . + +nwbib-spatial:Q21039639 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Schwafheim"@de ; + foaf:focus wd:Q21039639 . + +nwbib-spatial:Q1795744 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Flittard"@de ; + foaf:focus wd:Q1795744 . + +nwbib-spatial:Q1659238 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Ilserheide"@de ; + foaf:focus wd:Q1659238 . + +nwbib-spatial:Q851588 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Bevergern"@de ; + foaf:focus wd:Q851588 . + +nwbib-spatial:Q1754395 + a skos:Concept ; + skos:broader nwbib-spatial:Q225375 ; + skos:inScheme ; + skos:prefLabel "Sürenheide"@de ; + foaf:focus wd:Q1754395 . + +nwbib-spatial:Q2281699 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Siddinghausen"@de ; + foaf:focus wd:Q2281699 . + +nwbib-spatial:Q1558904 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Algert"@de ; + foaf:focus wd:Q1558904 . + +nwbib-spatial:Q2517719 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Verr"@de ; + foaf:focus wd:Q2517719 . + +nwbib-spatial:Q1228321 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Waldenrath"@de ; + foaf:focus wd:Q1228321 . + +nwbib-spatial:Q600902 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Arnsberg (bis 1974)"@de ; + foaf:focus wd:Q600902 . + +nwbib-spatial:Q2136692 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Referinghausen"@de ; + foaf:focus wd:Q2136692 . + +nwbib-spatial:Q1548544 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Großenbaum"@de ; + foaf:focus wd:Q1548544 . + +nwbib-spatial:Q56006657 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Lanzerath"@de ; + foaf:focus wd:Q56006657 . + +nwbib-spatial:Q19687931 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Mark"@de ; + foaf:focus wd:Q19687931 . + +nwbib-spatial:Q1276304 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Mönninghausen"@de ; + foaf:focus wd:Q1276304 . + +nwbib-spatial:Q1229463 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Disternich"@de ; + foaf:focus wd:Q1229463 . + +nwbib-spatial:Q1644223 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Höntrup"@de ; + foaf:focus wd:Q1644223 . + +nwbib-spatial:Q1737863 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Nierbachtal"@de ; + foaf:focus wd:Q1737863 . + +nwbib-spatial:Q1562711 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Hücheln"@de ; + foaf:focus wd:Q1562711 . + +nwbib-spatial:Q1652266 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Hülsenbusch"@de ; + foaf:focus wd:Q1652266 . + +nwbib-spatial:Q47462244 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Siegen"@de ; + foaf:focus wd:Q47462244 . + +nwbib-spatial:Q1948600 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Morsbach"@de ; + foaf:focus wd:Q1948600 . + +nwbib-spatial:Q1624800 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Hollerath"@de ; + foaf:focus wd:Q1624800 . + +nwbib-spatial:Q1110266 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Hilfarth"@de ; + foaf:focus wd:Q1110266 . + +nwbib-spatial:Q1746571 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Kleinenberg"@de ; + foaf:focus wd:Q1746571 . + +nwbib-spatial:Q1309211 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Kalenberg"@de ; + foaf:focus wd:Q1309211 . + +nwbib-spatial:Q2148291 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Spyck"@de ; + foaf:focus wd:Q2148291 . + +nwbib-spatial:Q470160 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Amern"@de ; + foaf:focus wd:Q470160 . + +nwbib-spatial:Q1946283 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Obspringen"@de ; + foaf:focus wd:Q1946283 . + +nwbib-spatial:Q1411667 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Mahlberg"@de ; + foaf:focus wd:Q1411667 . + +nwbib-spatial:Q27998647 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Kreutzhäuschen"@de ; + foaf:focus wd:Q27998647 . + +nwbib-spatial:Q1644202 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Hönnepel"@de ; + foaf:focus wd:Q1644202 . + +nwbib-spatial:Q2016558 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Ohmbach"@de ; + foaf:focus wd:Q2016558 . + +nwbib-spatial:Q56033650 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Wupperhof"@de ; + foaf:focus wd:Q56033650 . + +nwbib-spatial:Q1259204 + a skos:Concept ; + skos:broader nwbib-spatial:Q870865 ; + skos:inScheme ; + skos:prefLabel "Eller"@de ; + foaf:focus wd:Q1259204 . + +nwbib-spatial:Q1625374 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Holz"@de ; + foaf:focus wd:Q1625374 . + +nwbib-spatial:Q142350 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Auerberg"@de ; + foaf:focus wd:Q142350 . + +nwbib-spatial:Q2291534 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Hillmicke"@de ; + foaf:focus wd:Q2291534 . + +nwbib-spatial:Q1787267 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Düsseldorf-Mettmann (bis 1974)"@de ; + foaf:focus wd:Q1787267 . + +nwbib-spatial:Q11130 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974008" ; + skos:prefLabel "Bad Sassendorf"@de ; + foaf:focus wd:Q11130 . + +nwbib-spatial:Q15122405 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Mützenich"@de ; + foaf:focus wd:Q15122405 . + +nwbib-spatial:Q2326752 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Innenstadt-Ost"@de ; + foaf:focus wd:Q2326752 . + +nwbib-spatial:Q54803602 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk VI (Essen)"@de ; + foaf:focus wd:Q54803602 . + +nwbib-spatial:Q2493621 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Unglinghausen"@de ; + foaf:focus wd:Q2493621 . + +nwbib-spatial:Q10780109 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Schöndelt"@de ; + foaf:focus wd:Q10780109 . + +nwbib-spatial:Q11045 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374052" ; + skos:prefLabel "Wipperfürth"@de ; + foaf:focus wd:Q11045 . + +nwbib-spatial:Q15992012 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Isingheim"@de ; + foaf:focus wd:Q15992012 . + +nwbib-spatial:Q19687883 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Berge"@de ; + foaf:focus wd:Q19687883 . + +nwbib-spatial:Q2255451 + a skos:Concept ; + skos:broader nwbib-spatial:Q53908 ; + skos:inScheme ; + skos:prefLabel "Schweicheln-Bermbeck"@de ; + foaf:focus wd:Q2255451 . + +nwbib-spatial:Q1020930 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259723 ; + skos:inScheme ; + skos:prefLabel "Bürbach"@de ; + foaf:focus wd:Q1020930 . + +nwbib-spatial:Q510099 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Bimmen"@de ; + foaf:focus wd:Q510099 . + +nwbib-spatial:Q1543215 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Granterath"@de ; + foaf:focus wd:Q1543215 . + +nwbib-spatial:Q2586693 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Bommern"@de ; + foaf:focus wd:Q2586693 . + +nwbib-spatial:Q1609984 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Heringhausen"@de ; + foaf:focus wd:Q1609984 . + +nwbib-spatial:Q2386902 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Tackenberg"@de ; + foaf:focus wd:Q2386902 . + +nwbib-spatial:Q1805402 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Langst-Kierst"@de ; + foaf:focus wd:Q1805402 . + +nwbib-spatial:Q1787246 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Büren (bis 1974)"@de ; + foaf:focus wd:Q1787246 . + +nwbib-spatial:Q44915697 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Bladenhorst"@de ; + foaf:focus wd:Q44915697 . + +nwbib-spatial:Q1588676 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Hasselsweiler"@de ; + foaf:focus wd:Q1588676 . + +nwbib-spatial:Q1877734 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Lustheide"@de ; + foaf:focus wd:Q1877734 . + +nwbib-spatial:Q893533 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Borgeln"@de ; + foaf:focus wd:Q893533 . + +nwbib-spatial:Q2230416 + a skos:Concept ; + skos:broader nwbib-spatial:Q163772 ; + skos:inScheme ; + skos:prefLabel "Vinkrath"@de ; + foaf:focus wd:Q2230416 . + +nwbib-spatial:Q1546106 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Grevenhagen"@de ; + foaf:focus wd:Q1546106 . + +nwbib-spatial:Q866662 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Bissen"@de ; + foaf:focus wd:Q866662 . + +nwbib-spatial:Q1573603 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hamm-Bockum-Hövel"@de ; + foaf:focus wd:Q1573603 . + +nwbib-spatial:Q47483940 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Marl-Hüls"@de ; + foaf:focus wd:Q47483940 . + +nwbib-spatial:Q10906 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966016" ; + skos:prefLabel "Kirchhundem"@de ; + foaf:focus wd:Q10906 . + +nwbib-spatial:Q27994630 + a skos:Concept ; + skos:broader nwbib-spatial:Q2871 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Haspe"@de ; + foaf:focus wd:Q27994630 . + +nwbib-spatial:Q1624184 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Hoinkhausen"@de ; + foaf:focus wd:Q1624184 . + +nwbib-spatial:Q2380832 + a skos:Concept ; + skos:broader nwbib-spatial:Q14923 ; + skos:inScheme ; + skos:prefLabel "Südkirchen"@de ; + foaf:focus wd:Q2380832 . + +nwbib-spatial:Q436744 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Altenbergen"@de ; + foaf:focus wd:Q436744 . + +nwbib-spatial:Q1538519 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261667 ; + skos:inScheme ; + skos:prefLabel "Gosenbach"@de ; + foaf:focus wd:Q1538519 . + +nwbib-spatial:Q2430669 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Thöningsen"@de ; + foaf:focus wd:Q2430669 . + +nwbib-spatial:Q884418 + a skos:Concept ; + skos:broader nwbib-spatial:Q5535 ; + skos:inScheme ; + skos:prefLabel "Blintrop"@de ; + foaf:focus wd:Q884418 . + +nwbib-spatial:Q1808050 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Laurensberg (Stadtbezirk)"@de ; + foaf:focus wd:Q1808050 . + +nwbib-spatial:Q4175 a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566028" ; + skos:prefLabel "Ibbenbüren"@de ; + foaf:focus wd:Q4175 . + +nwbib-spatial:Q14939 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558032" ; + skos:prefLabel "Nottuln"@de ; + foaf:focus wd:Q14939 . + +nwbib-spatial:Q1625873 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Homburg-Bröl"@de ; + foaf:focus wd:Q1625873 . + +nwbib-spatial:Q1297587 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Eggerscheidt"@de ; + foaf:focus wd:Q1297587 . + +nwbib-spatial:Q1300846 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Ehringhausen"@de ; + foaf:focus wd:Q1300846 . + +nwbib-spatial:Q380934 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Aengenesch"@de ; + foaf:focus wd:Q380934 . + +nwbib-spatial:Q1918122 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Meiningsen"@de ; + foaf:focus wd:Q1918122 . + +nwbib-spatial:Q1183194 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Deifeld"@de ; + foaf:focus wd:Q1183194 . + +nwbib-spatial:Q2036158 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Osttünnen"@de ; + foaf:focus wd:Q2036158 . + +nwbib-spatial:Q15055982 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Emmelsum"@de ; + foaf:focus wd:Q15055982 . + +nwbib-spatial:Q1033650 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Canstein"@de ; + foaf:focus wd:Q1033650 . + +nwbib-spatial:Q1628281 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Horn-Millinghausen"@de ; + foaf:focus wd:Q1628281 . + +nwbib-spatial:Q1283656 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Ederen"@de ; + foaf:focus wd:Q1283656 . + +nwbib-spatial:Q920467 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Wertherbruch"@de ; + foaf:focus wd:Q920467 . + +nwbib-spatial:Q1489320 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Gleierbrück"@de ; + foaf:focus wd:Q1489320 . + +nwbib-spatial:Q878240 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Kuchenheim"@de ; + foaf:focus wd:Q878240 . + +nwbib-spatial:N57 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "57" ; + skos:prefLabel "Preußische Provinz Rheinland"@de ; + foaf:focus wd:Q698162 . + +nwbib-spatial:Q1258051 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Dreis-Tiefenbach"@de ; + foaf:focus wd:Q1258051 . + +nwbib-spatial:Q2809 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570024" ; + skos:prefLabel "Everswinkel"@de ; + foaf:focus wd:Q2809 . + +nwbib-spatial:Q14906310 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Apweiler"@de ; + foaf:focus wd:Q14906310 . + +nwbib-spatial:Q1604956 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Lütmarsen"@de ; + foaf:focus wd:Q1604956 . + +nwbib-spatial:Q620755 + a skos:Concept ; + skos:broader nwbib-spatial:Q14939 ; + skos:inScheme ; + skos:prefLabel "Appelhülsen"@de ; + foaf:focus wd:Q620755 . + +nwbib-spatial:Q1753604 + a skos:Concept ; + skos:broader nwbib-spatial:Q204919 ; + skos:inScheme ; + skos:prefLabel "Orsbeck"@de ; + foaf:focus wd:Q1753604 . + +nwbib-spatial:Q1968389 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Pfalzdorf"@de ; + foaf:focus wd:Q1968389 . + +nwbib-spatial:Q56024767 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Vernich"@de ; + foaf:focus wd:Q56024767 . + +nwbib-spatial:Q16061696 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Dünnebrett"@de ; + foaf:focus wd:Q16061696 . + +nwbib-spatial:Q1544856 + a skos:Concept ; + skos:broader nwbib-spatial:Q225729 ; + skos:inScheme ; + skos:prefLabel "Greffen"@de ; + foaf:focus wd:Q1544856 . + +nwbib-spatial:Q61726764 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Schaan"@de ; + foaf:focus wd:Q61726764 . + +nwbib-spatial:Q59282655 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Hochlar"@de ; + foaf:focus wd:Q59282655 . + +nwbib-spatial:Q1550974 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Mühlhausen"@de ; + foaf:focus wd:Q1550974 . + +nwbib-spatial:Q55586409 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Oberbauer"@de ; + foaf:focus wd:Q55586409 . + +nwbib-spatial:Q1372191 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Euchen"@de ; + foaf:focus wd:Q1372191 . + +nwbib-spatial:Q19964866 + a skos:Concept ; + skos:broader nwbib-spatial:Q10941 ; + skos:inScheme ; + skos:prefLabel "Hengsen"@de ; + foaf:focus wd:Q19964866 . + +nwbib-spatial:Q2348460 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Stieldorf"@de ; + foaf:focus wd:Q2348460 . + +nwbib-spatial:Q723625 + a skos:Concept ; + skos:broader nwbib-spatial:Q242385 ; + skos:inScheme ; + skos:prefLabel "Asemissen"@de ; + foaf:focus wd:Q723625 . + +nwbib-spatial:Q11040 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374044" ; + skos:prefLabel "Waldbröl"@de ; + foaf:focus wd:Q11040 . + +nwbib-spatial:Q1625205 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1625205 . + +nwbib-spatial:N36 a skos:Concept ; + skos:broader nwbib-spatial:N3 ; + skos:inScheme ; + skos:notation "36" ; + skos:prefLabel "Katholische Kirche. Diözesen"@de . + +nwbib-spatial:Q1746460 + a skos:Concept ; + skos:broader nwbib-spatial:Q1700 ; + skos:inScheme ; + skos:prefLabel "Westmünsterland"@de ; + foaf:focus wd:Q1746460 . + +nwbib-spatial:Q1735839 + a skos:Concept ; + skos:broader nwbib-spatial:Q1719793 ; + skos:inScheme ; + skos:prefLabel "Katernberg"@de ; + foaf:focus wd:Q1735839 . + +nwbib-spatial:Q1961906 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Naaferberg"@de ; + foaf:focus wd:Q1961906 . + +nwbib-spatial:Q2136560 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Reelsen"@de ; + foaf:focus wd:Q2136560 . + +nwbib-spatial:Q9182180 + a skos:Concept ; + skos:broader nwbib-spatial:Q16018 ; + skos:inScheme ; + skos:prefLabel "Burgsteinfurt"@de ; + foaf:focus wd:Q9182180 . + +nwbib-spatial:Q7507 a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378032" ; + skos:prefLabel "Wermelskirchen"@de ; + foaf:focus wd:Q7507 . + +nwbib-spatial:Q1603708 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Scharfenberg"@de ; + foaf:focus wd:Q1603708 . + +nwbib-spatial:Q907968 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Bremerberg"@de ; + foaf:focus wd:Q907968 . + +nwbib-spatial:Q1817500 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Lendringsen"@de ; + foaf:focus wd:Q1817500 . + +nwbib-spatial:Q4048 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158020" ; + skos:prefLabel "Langenfeld"@de ; + foaf:focus wd:Q4048 . + +nwbib-spatial:Q1330162 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Enzen"@de ; + foaf:focus wd:Q1330162 . + +nwbib-spatial:Q856819 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Bickenbach"@de ; + foaf:focus wd:Q856819 . + +nwbib-spatial:Q1021839 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Büttenberg"@de ; + foaf:focus wd:Q1021839 . + +nwbib-spatial:Q22694545 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Wallen"@de ; + foaf:focus wd:Q22694545 . + +nwbib-spatial:Q1241123 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Dondorf"@de ; + foaf:focus wd:Q1241123 . + +nwbib-spatial:Q1331787 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Ellen"@de ; + foaf:focus wd:Q1331787 . + +nwbib-spatial:Q2009245 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Oberbrügge"@de ; + foaf:focus wd:Q2009245 . + +nwbib-spatial:Q23787866 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Hillerheide"@de ; + foaf:focus wd:Q23787866 . + +nwbib-spatial:Q1887998 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Malzhagen"@de ; + foaf:focus wd:Q1887998 . + +nwbib-spatial:Q1670981 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Rorup"@de ; + foaf:focus wd:Q1670981 . + +nwbib-spatial:Q902505 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Brauweiler"@de ; + foaf:focus wd:Q902505 . + +nwbib-spatial:Q2259877 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Seelscheid"@de ; + foaf:focus wd:Q2259877 . + +nwbib-spatial:Q2018737 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Oldendorf"@de ; + foaf:focus wd:Q2018737 . + +nwbib-spatial:Q732391 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Forst"@de ; + foaf:focus wd:Q732391 . + +nwbib-spatial:Q1946634 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Traar"@de ; + foaf:focus wd:Q1946634 . + +nwbib-spatial:Q55986040 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Volmarstein"@de ; + foaf:focus wd:Q55986040 . + +nwbib-spatial:Q769183 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Cronenberg (Stadtbezirk)"@de ; + foaf:focus wd:Q769183 . + +nwbib-spatial:Q32860696 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Rieflinghausen"@de ; + foaf:focus wd:Q32860696 . + +nwbib-spatial:Q492224 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Wattenscheid (Stadtbezirk)"@de ; + foaf:focus wd:Q492224 . + +nwbib-spatial:Q142780 + a skos:Concept ; + skos:broader nwbib-spatial:Q14888 ; + skos:inScheme ; + skos:prefLabel "Wüllen"@de ; + foaf:focus wd:Q142780 . + +nwbib-spatial:Q2541604 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Waldhausen"@de ; + foaf:focus wd:Q2541604 . + +nwbib-spatial:Q53908 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758016" ; + skos:prefLabel "Hiddenhausen"@de ; + foaf:focus wd:Q53908 . + +nwbib-spatial:Q1603204 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Helmern"@de ; + foaf:focus wd:Q1603204 . + +nwbib-spatial:Q1677990 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Oberwennerscheid"@de ; + foaf:focus wd:Q1677990 . + +nwbib-spatial:Q26836856 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Engeldorf"@de ; + foaf:focus wd:Q26836856 . + +nwbib-spatial:Q249710 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Dellwig"@de ; + foaf:focus wd:Q249710 . + +nwbib-spatial:Q518491 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Lindenthal (Stadtbezirk)"@de ; + foaf:focus wd:Q518491 . + +nwbib-spatial:Q316951 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Kalterherberg"@de ; + foaf:focus wd:Q316951 . + +nwbib-spatial:Q14934 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558024" ; + skos:prefLabel "Lüdinghausen"@de ; + foaf:focus wd:Q14934 . + +nwbib-spatial:Q22691691 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Dormecke"@de ; + foaf:focus wd:Q22691691 . + +nwbib-spatial:Q2342466 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Stemmen (Kalletal)"@de ; + foaf:focus wd:Q2342466 . + +nwbib-spatial:Q2154289 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Rintgen"@de ; + foaf:focus wd:Q2154289 . + +nwbib-spatial:Q262644 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Fürstenberg"@de ; + foaf:focus wd:Q262644 . + +nwbib-spatial:Q29642630 + a skos:Concept ; + skos:broader nwbib-spatial:Q181609 ; + skos:inScheme ; + skos:prefLabel "Hohne (Lengerich)"@de ; + foaf:focus wd:Q29642630 . + +nwbib-spatial:Q1368622 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803603 ; + skos:inScheme ; + skos:prefLabel "Freisenbruch"@de ; + foaf:focus wd:Q1368622 . + +nwbib-spatial:Q881495 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Wittlaer"@de ; + foaf:focus wd:Q881495 . + +nwbib-spatial:Q889190 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Bockert"@de ; + foaf:focus wd:Q889190 . + +nwbib-spatial:Q586 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05314" ; + skos:prefLabel "Bonn"@de ; + foaf:focus wd:Q586 . + +nwbib-spatial:Q2100725 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Thorr"@de ; + foaf:focus wd:Q2100725 . + +nwbib-spatial:Q2431870 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Tiefenbroich"@de ; + foaf:focus wd:Q2431870 . + +nwbib-spatial:Q402668 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Ahrdorf"@de ; + foaf:focus wd:Q402668 . + +nwbib-spatial:Q6858 a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770004" ; + skos:prefLabel "Bad Oeynhausen"@de ; + foaf:focus wd:Q6858 . + +nwbib-spatial:Q501505 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Andreasberg"@de ; + foaf:focus wd:Q501505 . + +nwbib-spatial:Q992168 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Scharnhorst-Ost"@de ; + foaf:focus wd:Q992168 . + +nwbib-spatial:Q8249663 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Oberbilk"@de ; + foaf:focus wd:Q8249663 . + +nwbib-spatial:Q1546536 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Griethausen"@de ; + foaf:focus wd:Q1546536 . + +nwbib-spatial:Q1173415 + a skos:Concept ; + skos:broader nwbib-spatial:Q14921 ; + skos:inScheme ; + skos:prefLabel "Davensberg"@de ; + foaf:focus wd:Q1173415 . + +nwbib-spatial:Q163570 + a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166028" ; + skos:prefLabel "Tönisvorst"@de ; + foaf:focus wd:Q163570 . + +nwbib-spatial:Q1243933 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Ville"@de ; + foaf:focus wd:Q1243933 . + +nwbib-spatial:Q1019615 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Böddeken"@de ; + foaf:focus wd:Q1019615 . + +nwbib-spatial:Q2804 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570032" ; + skos:prefLabel "Ostbevern"@de ; + foaf:focus wd:Q2804 . + +nwbib-spatial:Q437149 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Altenhagen"@de ; + foaf:focus wd:Q437149 . + +nwbib-spatial:Q2342445 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Stemel"@de ; + foaf:focus wd:Q2342445 . + +nwbib-spatial:Q2132373 + a skos:Concept ; + skos:broader nwbib-spatial:Q831039 ; + skos:inScheme ; + skos:prefLabel "Rath"@de ; + foaf:focus wd:Q2132373 . + +nwbib-spatial:Q23758642 + a skos:Concept ; + skos:broader nwbib-spatial:Q2904 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Wanne"@de ; + foaf:focus wd:Q23758642 . + +nwbib-spatial:Q2230278 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Schalbruch"@de ; + foaf:focus wd:Q2230278 . + +nwbib-spatial:Q45748448 + a skos:Concept ; + skos:broader nwbib-spatial:Q243301 ; + skos:inScheme ; + skos:prefLabel "Aldekerk"@de ; + foaf:focus wd:Q45748448 . + +nwbib-spatial:Q2352538 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Straberg"@de ; + foaf:focus wd:Q2352538 . + +nwbib-spatial:Q50377255 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Rengert"@de ; + foaf:focus wd:Q50377255 . + +nwbib-spatial:Q2135747 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Recklingsen"@de ; + foaf:focus wd:Q2135747 . + +nwbib-spatial:Q258391 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Werden"@de ; + foaf:focus wd:Q258391 . + +nwbib-spatial:Q1880443 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Lütringhausen"@de ; + foaf:focus wd:Q1880443 . + +nwbib-spatial:Q15056329 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Gevelndorf"@de ; + foaf:focus wd:Q15056329 . + +nwbib-spatial:Q1636155 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Huisberden"@de ; + foaf:focus wd:Q1636155 . + +nwbib-spatial:Q436691 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Altenberg"@de ; + foaf:focus wd:Q436691 . + +nwbib-spatial:Q1631254 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Hottorf"@de ; + foaf:focus wd:Q1631254 . + +nwbib-spatial:Q1414463 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Ralshoven"@de ; + foaf:focus wd:Q1414463 . + +nwbib-spatial:Q1234818 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Marbeck"@de ; + foaf:focus wd:Q1234818 . + +nwbib-spatial:Q19310961 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Vogelsang"@de ; + foaf:focus wd:Q19310961 . + +nwbib-spatial:Q151303 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Embken"@de ; + foaf:focus wd:Q151303 . + +nwbib-spatial:Q151297 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Velau"@de ; + foaf:focus wd:Q151297 . + +nwbib-spatial:Q1456954 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Friedenthal"@de ; + foaf:focus wd:Q1456954 . + +nwbib-spatial:Q1704362 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Kastor"@de ; + foaf:focus wd:Q1704362 . + +nwbib-spatial:Q182286 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566072" ; + skos:prefLabel "Recke"@de ; + foaf:focus wd:Q182286 . + +nwbib-spatial:Q21839544 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Lichtenbusch"@de ; + foaf:focus wd:Q21839544 . + +nwbib-spatial:Q2310026 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Spiel"@de ; + foaf:focus wd:Q2310026 . + +nwbib-spatial:Q16054325 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Altroggenrahmede"@de ; + foaf:focus wd:Q16054325 . + +nwbib-spatial:Q242632 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766004" ; + skos:prefLabel "Augustdorf"@de ; + foaf:focus wd:Q242632 . + +nwbib-spatial:Q1818011 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Lenne"@de ; + foaf:focus wd:Q1818011 . + +nwbib-spatial:Q1017277 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Busch"@de ; + foaf:focus wd:Q1017277 . + +nwbib-spatial:Q864049 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Binsfeld"@de ; + foaf:focus wd:Q864049 . + +nwbib-spatial:Q263744 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Ülpenich"@de ; + foaf:focus wd:Q263744 . + +nwbib-spatial:Q2009240 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Oberbruch"@de ; + foaf:focus wd:Q2009240 . + +nwbib-spatial:Q1020124 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Bösingfeld"@de ; + foaf:focus wd:Q1020124 . + +nwbib-spatial:Q2139844 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Reichswalde"@de ; + foaf:focus wd:Q2139844 . + +nwbib-spatial:Q1501653 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Großhau"@de ; + foaf:focus wd:Q1501653 . + +nwbib-spatial:N10 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "10" ; + skos:prefLabel "Westfälische Bucht"@de ; + foaf:focus wd:Q462011 . + +nwbib-spatial:Q820982 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Berlar"@de ; + foaf:focus wd:Q820982 . + +nwbib-spatial:Q1614154 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Herrenstrunden"@de ; + foaf:focus wd:Q1614154 . + +nwbib-spatial:Q889063 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973169 ; + skos:inScheme ; + skos:prefLabel "Hiltrop"@de ; + foaf:focus wd:Q889063 . + +nwbib-spatial:Q1251308 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Dotzlar"@de ; + foaf:focus wd:Q1251308 . + +nwbib-spatial:Q999703 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Mörmter"@de ; + foaf:focus wd:Q999703 . + +nwbib-spatial:Q245438 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378024" ; + skos:prefLabel "Overath"@de ; + foaf:focus wd:Q245438 . + +nwbib-spatial:Q2152380 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Riesenbeck"@de ; + foaf:focus wd:Q2152380 . + +nwbib-spatial:Q10890 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966008" ; + skos:prefLabel "Drolshagen"@de ; + foaf:focus wd:Q10890 . + +nwbib-spatial:Q1017341 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Buschhausen"@de ; + foaf:focus wd:Q1017341 . + +nwbib-spatial:Q32860691 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Neu-Listernohl"@de ; + foaf:focus wd:Q32860691 . + +nwbib-spatial:Q2554519 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Wehr"@de ; + foaf:focus wd:Q2554519 . + +nwbib-spatial:Q2015273 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Oestinghausen"@de ; + foaf:focus wd:Q2015273 . + +nwbib-spatial:Q1412529 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Filde"@de ; + foaf:focus wd:Q1412529 . + +nwbib-spatial:Q1562398 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Oberdreisbach"@de ; + foaf:focus wd:Q1562398 . + +nwbib-spatial:Q3898 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562004" ; + skos:prefLabel "Castrop-Rauxel"@de ; + foaf:focus wd:Q3898 . + +nwbib-spatial:Q1613468 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Krebsöge"@de ; + foaf:focus wd:Q1613468 . + +nwbib-spatial:Q1250850 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Dorweiler"@de ; + foaf:focus wd:Q1250850 . + +nwbib-spatial:Q881250 + a skos:Concept ; + skos:broader nwbib-spatial:Q3641512 ; + skos:inScheme ; + skos:prefLabel "Stiepel"@de ; + foaf:focus wd:Q881250 . + +nwbib-spatial:Q1020097 + a skos:Concept ; + skos:broader nwbib-spatial:Q14926 ; + skos:inScheme ; + skos:prefLabel "Bösensell"@de ; + foaf:focus wd:Q1020097 . + +nwbib-spatial:Q1775987 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Eslohe (bis 1831)"@de ; + foaf:focus wd:Q1775987 . + +nwbib-spatial:Q15114696 + a skos:Concept ; + skos:broader nwbib-spatial:Q2904 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Sodingen"@de ; + foaf:focus wd:Q15114696 . + +nwbib-spatial:Q27907265 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Hufe"@de ; + foaf:focus wd:Q27907265 . + +nwbib-spatial:Q59594697 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Scheuren"@de ; + foaf:focus wd:Q59594697 . + +nwbib-spatial:Q892667 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Bonn-Castell"@de ; + foaf:focus wd:Q892667 . + +nwbib-spatial:Q1027191 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Calle"@de ; + foaf:focus wd:Q1027191 . + +nwbib-spatial:Q1464472 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Frielingsdorf"@de ; + foaf:focus wd:Q1464472 . + +nwbib-spatial:Q161673 + a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158012" ; + skos:prefLabel "Heiligenhaus"@de ; + foaf:focus wd:Q161673 . + +nwbib-spatial:Q1746811 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Kleingladbach"@de ; + foaf:focus wd:Q1746811 . + +nwbib-spatial:Q851239 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Beusingsen"@de ; + foaf:focus wd:Q851239 . + +nwbib-spatial:Q269204 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Friesheim"@de ; + foaf:focus wd:Q269204 . + +nwbib-spatial:Q2352469 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Stoßdorf"@de ; + foaf:focus wd:Q2352469 . + +nwbib-spatial:Q200640 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554016" ; + skos:prefLabel "Gescher"@de ; + foaf:focus wd:Q200640 . + +nwbib-spatial:Q1405932 + a skos:Concept ; + skos:broader nwbib-spatial:Q200138 ; + skos:inScheme ; + skos:prefLabel "Blens"@de ; + foaf:focus wd:Q1405932 . + +nwbib-spatial:Q1651963 + a skos:Concept ; + skos:broader nwbib-spatial:Q183449 ; + skos:inScheme ; + skos:prefLabel "Hövelriege"@de ; + foaf:focus wd:Q1651963 . + +nwbib-spatial:Q45733932 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Orbroich"@de ; + foaf:focus wd:Q45733932 . + +nwbib-spatial:Q183307 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774008" ; + skos:prefLabel "Bad Lippspringe"@de ; + foaf:focus wd:Q183307 . + +nwbib-spatial:Q1258922 + a skos:Concept ; + skos:broader nwbib-spatial:Q7088 ; + skos:inScheme ; + skos:prefLabel "Driesch"@de ; + foaf:focus wd:Q1258922 . + +nwbib-spatial:Q43161685 + a skos:Concept ; + skos:broader nwbib-spatial:Q200640 ; + skos:inScheme ; + skos:prefLabel "Tungerloh-Pröbsting"@de ; + foaf:focus wd:Q43161685 . + +nwbib-spatial:Q1626841 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Saalhausen"@de ; + foaf:focus wd:Q1626841 . + +nwbib-spatial:Q2245352 + a skos:Concept ; + skos:broader nwbib-spatial:Q6136 ; + skos:inScheme ; + skos:prefLabel "Schlückingen"@de ; + foaf:focus wd:Q2245352 . + +nwbib-spatial:Q857431 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Biemenhorst"@de ; + foaf:focus wd:Q857431 . + +nwbib-spatial:Q2166105 + a skos:Concept ; + skos:broader nwbib-spatial:Q681425 ; + skos:inScheme ; + skos:prefLabel "Ronsdorf"@de ; + foaf:focus wd:Q2166105 . + +nwbib-spatial:Q1796601 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Körbecke"@de ; + foaf:focus wd:Q1796601 . + +nwbib-spatial:Q2534024 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Vorhalle"@de ; + foaf:focus wd:Q2534024 . + +nwbib-spatial:Q778810 + a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Ebbegebirge"@de ; + foaf:focus wd:Q778810 . + +nwbib-spatial:Q1710815 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Blankenstein"@de ; + foaf:focus wd:Q1710815 . + +nwbib-spatial:Q243079 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154064" ; + skos:prefLabel "Weeze"@de ; + foaf:focus wd:Q243079 . + +nwbib-spatial:Q831391 + a skos:Concept ; + skos:broader nwbib-spatial:Q5644 ; + skos:inScheme ; + skos:prefLabel "Hesborn"@de ; + foaf:focus wd:Q831391 . + +nwbib-spatial:Q2054178 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Parsit"@de ; + foaf:focus wd:Q2054178 . + +nwbib-spatial:Q164458 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366028" ; + skos:prefLabel "Mechernich"@de ; + foaf:focus wd:Q164458 . + +nwbib-spatial:Q1531431 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Glimbach"@de ; + foaf:focus wd:Q1531431 . + +nwbib-spatial:Q1221477 + a skos:Concept ; + skos:broader nwbib-spatial:Q2834 ; + skos:inScheme ; + skos:prefLabel "Diestedde"@de ; + foaf:focus wd:Q1221477 . + +nwbib-spatial:Q29878899 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Durhaus"@de ; + foaf:focus wd:Q29878899 . + +nwbib-spatial:Q28037590 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Forst"@de ; + foaf:focus wd:Q28037590 . + +nwbib-spatial:Q1427624 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Fleckenberg"@de ; + foaf:focus wd:Q1427624 . + +nwbib-spatial:Q48220 a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Hakedahl"@de ; + foaf:focus wd:Q48220 . + +nwbib-spatial:Q1304137 + a skos:Concept ; + skos:broader nwbib-spatial:Q53908 ; + skos:inScheme ; + skos:prefLabel "Eilshausen"@de ; + foaf:focus wd:Q1304137 . + +nwbib-spatial:Q3641512 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bochum-Süd"@de ; + foaf:focus wd:Q3641512 . + +nwbib-spatial:Q1792939 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Oppendorf"@de ; + foaf:focus wd:Q1792939 . + +nwbib-spatial:Q6264 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05370" ; + skos:prefLabel "Kreis Heinsberg"@de ; + foaf:focus wd:Q6264 . + +nwbib-spatial:Q1313413 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261667 ; + skos:inScheme ; + skos:prefLabel "Eisern"@de ; + foaf:focus wd:Q1313413 . + +nwbib-spatial:Q43869610 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Bentlage"@de ; + foaf:focus wd:Q43869610 . + +nwbib-spatial:Q1675398 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Pattern"@de ; + foaf:focus wd:Q1675398 . + +nwbib-spatial:Q1907926 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Mastholte"@de ; + foaf:focus wd:Q1907926 . + +nwbib-spatial:Q1236620 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Stedefreund"@de ; + foaf:focus wd:Q1236620 . + +nwbib-spatial:Q11343 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954032" ; + skos:prefLabel "Wetter"@de ; + foaf:focus wd:Q11343 . + +nwbib-spatial:Q1250638 + a skos:Concept ; + skos:broader nwbib-spatial:Q17679522 ; + skos:inScheme ; + skos:prefLabel "Husen"@de ; + foaf:focus wd:Q1250638 . + +nwbib-spatial:Q315410 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Langscheid"@de ; + foaf:focus wd:Q315410 . + +nwbib-spatial:Q1675319 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Itter"@de ; + foaf:focus wd:Q1675319 . + +nwbib-spatial:Q1562961 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Niederense"@de ; + foaf:focus wd:Q1562961 . + +nwbib-spatial:Q325202 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Reichsabtei Burtscheid"@de ; + foaf:focus wd:Q325202 . + +nwbib-spatial:Q1921610 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Merfeld"@de ; + foaf:focus wd:Q1921610 . + +nwbib-spatial:Q1756856 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Meiste"@de ; + foaf:focus wd:Q1756856 . + +nwbib-spatial:Q894915 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139867 ; + skos:inScheme ; + skos:prefLabel "Welheim"@de ; + foaf:focus wd:Q894915 . + +nwbib-spatial:Q1805068 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Langenholthausen"@de ; + foaf:focus wd:Q1805068 . + +nwbib-spatial:Q1464345 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Quernheim"@de ; + foaf:focus wd:Q1464345 . + +nwbib-spatial:Q820266 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Bergstein"@de ; + foaf:focus wd:Q820266 . + +nwbib-spatial:Q1760219 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Kohlhagen"@de ; + foaf:focus wd:Q1760219 . + +nwbib-spatial:Q822015 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Bermershausen"@de ; + foaf:focus wd:Q822015 . + +nwbib-spatial:Q1632285 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Lindenberg"@de ; + foaf:focus wd:Q1632285 . + +nwbib-spatial:Q11805 a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Erzbistum Köln"@de ; + foaf:focus wd:Q11805 . + +nwbib-spatial:Q43054377 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Mellrich"@de ; + foaf:focus wd:Q43054377 . + +nwbib-spatial:Q28823622 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Klagebach"@de ; + foaf:focus wd:Q28823622 . + +nwbib-spatial:Q2540361 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Wahlscheid"@de ; + foaf:focus wd:Q2540361 . + +nwbib-spatial:Q3893 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962032" ; + skos:prefLabel "Lüdenscheid"@de ; + foaf:focus wd:Q3893 . + +nwbib-spatial:Q1356001 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Ermsinghausen"@de ; + foaf:focus wd:Q1356001 . + +nwbib-spatial:Q882426 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Grevenstein"@de ; + foaf:focus wd:Q882426 . + +nwbib-spatial:Q5642 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958012" ; + skos:prefLabel "Brilon"@de ; + foaf:focus wd:Q5642 . + +nwbib-spatial:Q317314 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Duisburg-Mitte (Stadtbezirk)"@de ; + foaf:focus wd:Q317314 . + +nwbib-spatial:Q2015183 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Oesbern"@de ; + foaf:focus wd:Q2015183 . + +nwbib-spatial:Q26271345 + a skos:Concept ; + skos:broader nwbib-spatial:N10 ; + skos:inScheme ; + skos:prefLabel "Emscher-Lippe-Region"@de ; + foaf:focus wd:Q26271345 . + +nwbib-spatial:Q993810 + a skos:Concept ; + skos:broader nwbib-spatial:Q1457938 ; + skos:inScheme ; + skos:prefLabel "Windelsbleiche"@de ; + foaf:focus wd:Q993810 . + +nwbib-spatial:Q896722 + a skos:Concept ; + skos:broader nwbib-spatial:Q450087 ; + skos:inScheme ; + skos:prefLabel "Brüser Berg"@de ; + foaf:focus wd:Q896722 . + +nwbib-spatial:Q14212620 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Kalkeifel"@de ; + foaf:focus wd:Q14212620 . + +nwbib-spatial:Q12464 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382032" ; + skos:prefLabel "Meckenheim"@de ; + foaf:focus wd:Q12464 . + +nwbib-spatial:Q2268490 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Sellinghausen"@de ; + foaf:focus wd:Q2268490 . + +nwbib-spatial:Q1332187 + a skos:Concept ; + skos:broader nwbib-spatial:Q3905 ; + skos:inScheme ; + skos:prefLabel "Ellinghorst"@de ; + foaf:focus wd:Q1332187 . + +nwbib-spatial:Q1504995 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Ottenheim"@de ; + foaf:focus wd:Q1504995 . + +nwbib-spatial:Q1651894 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Hösel"@de ; + foaf:focus wd:Q1651894 . + +nwbib-spatial:Q1988945 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Niel"@de ; + foaf:focus wd:Q1988945 . + +nwbib-spatial:Q819472 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Berge"@de ; + foaf:focus wd:Q819472 . + +nwbib-spatial:Q1250675 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Mengede"@de ; + foaf:focus wd:Q1250675 . + +nwbib-spatial:Q814270 + a skos:Concept ; + skos:broader nwbib-spatial:Q242572 ; + skos:inScheme ; + skos:prefLabel "Bega"@de ; + foaf:focus wd:Q814270 . + +nwbib-spatial:Q897478 + a skos:Concept ; + skos:broader nwbib-spatial:Q50889 ; + skos:inScheme ; + skos:prefLabel "Brakelsiek"@de ; + foaf:focus wd:Q897478 . + +nwbib-spatial:Q1347813 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138211 ; + skos:inScheme ; + skos:prefLabel "Holtkamp"@de ; + foaf:focus wd:Q1347813 . + +nwbib-spatial:Q11301 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954008" ; + skos:prefLabel "Ennepetal"@de ; + foaf:focus wd:Q11301 . + +nwbib-spatial:Q534710 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Grottenherten"@de ; + foaf:focus wd:Q534710 . + +nwbib-spatial:Q2252731 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Schwadorf"@de ; + foaf:focus wd:Q2252731 . + +nwbib-spatial:Q896695 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Pützchen-Bechlinghoven"@de ; + foaf:focus wd:Q896695 . + +nwbib-spatial:Q1592134 + a skos:Concept ; + skos:broader nwbib-spatial:Q11340 ; + skos:inScheme ; + skos:prefLabel "Haßlinghausen"@de ; + foaf:focus wd:Q1592134 . + +nwbib-spatial:Q1566490 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Haaren (Stadtbezirk)"@de ; + foaf:focus wd:Q1566490 . + +nwbib-spatial:Q1722366 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Kalkkuhl"@de ; + foaf:focus wd:Q1722366 . + +nwbib-spatial:Q1593759 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Heggen"@de ; + foaf:focus wd:Q1593759 . + +nwbib-spatial:Q1803277 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Landkreis Köln (bis 1974)"@de ; + foaf:focus wd:Q1803277 . + +nwbib-spatial:Q432818 + a skos:Concept ; + skos:broader nwbib-spatial:Q512233 ; + skos:inScheme ; + skos:prefLabel "Alsum"@de ; + foaf:focus wd:Q432818 . + +nwbib-spatial:Q6280 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05366" ; + skos:prefLabel "Kreis Euskirchen"@de ; + foaf:focus wd:Q6280 . + +nwbib-spatial:Q2202653 + a skos:Concept ; + skos:broader nwbib-spatial:Q248483 ; + skos:inScheme ; + skos:prefLabel "Römlinghoven"@de ; + foaf:focus wd:Q2202653 . + +nwbib-spatial:Q1250654 + a skos:Concept ; + skos:broader nwbib-spatial:Q17542219 ; + skos:inScheme ; + skos:prefLabel "Kirchhörde"@de ; + foaf:focus wd:Q1250654 . + +nwbib-spatial:Q2559367 + a skos:Concept ; + skos:broader nwbib-spatial:Q11343 ; + skos:inScheme ; + skos:prefLabel "Wengern"@de ; + foaf:focus wd:Q2559367 . + +nwbib-spatial:Q47454950 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Zülpicher Börde"@de ; + foaf:focus wd:Q47454950 . + +nwbib-spatial:Q2137878 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Schwarzenau"@de ; + foaf:focus wd:Q2137878 . + +nwbib-spatial:Q114402 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Langerfeld-Beyenburg (Stadtbezirk)"@de ; + foaf:focus wd:Q114402 . + +nwbib-spatial:Q876078 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Nehden"@de ; + foaf:focus wd:Q876078 . + +nwbib-spatial:Q1169310 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Vennebeck"@de ; + foaf:focus wd:Q1169310 . + +nwbib-spatial:Q1959116 + a skos:Concept ; + skos:broader nwbib-spatial:Q1761685 ; + skos:inScheme ; + skos:prefLabel "Sprakel"@de ; + foaf:focus wd:Q1959116 . + +nwbib-spatial:Q1800365 + a skos:Concept ; + skos:broader nwbib-spatial:Q4175 ; + skos:inScheme ; + skos:prefLabel "Laggenbeck"@de ; + foaf:focus wd:Q1800365 . + +nwbib-spatial:Q2268305 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Selikum"@de ; + foaf:focus wd:Q2268305 . + +nwbib-spatial:Q1499808 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140275 ; + skos:inScheme ; + skos:prefLabel "Bulmke-Hüllen"@de ; + foaf:focus wd:Q1499808 . + +nwbib-spatial:Q17127824 + a skos:Concept ; + skos:broader nwbib-spatial:Q2707 ; + skos:inScheme ; + skos:prefLabel "Vellern"@de ; + foaf:focus wd:Q17127824 . + +nwbib-spatial:Q2719987 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Niederfleckenberg"@de ; + foaf:focus wd:Q2719987 . + +nwbib-spatial:Q1523775 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Puderbach"@de ; + foaf:focus wd:Q1523775 . + +nwbib-spatial:Q1756787 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Ossenberg"@de ; + foaf:focus wd:Q1756787 . + +nwbib-spatial:Q2246325 + a skos:Concept ; + skos:broader nwbib-spatial:Q241048 ; + skos:inScheme ; + skos:prefLabel "Schmidtheim"@de ; + foaf:focus wd:Q2246325 . + +nwbib-spatial:Q19965282 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Kruberg"@de ; + foaf:focus wd:Q19965282 . + +nwbib-spatial:Q2225754 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Sassenhausen"@de ; + foaf:focus wd:Q2225754 . + +nwbib-spatial:Q43865697 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Overhagen"@de ; + foaf:focus wd:Q43865697 . + +nwbib-spatial:Q1771254 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Wissersheim"@de ; + foaf:focus wd:Q1771254 . + +nwbib-spatial:Q1428761 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Günhoven"@de ; + foaf:focus wd:Q1428761 . + +nwbib-spatial:Q857803 + a skos:Concept ; + skos:broader nwbib-spatial:Q53913 ; + skos:inScheme ; + skos:prefLabel "Bieren"@de ; + foaf:focus wd:Q857803 . + +nwbib-spatial:Q47022089 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Gladbach-Neuss"@de ; + foaf:focus wd:Q47022089 . + +nwbib-spatial:Q1250633 + a skos:Concept ; + skos:broader nwbib-spatial:Q989822 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1250633 . + +nwbib-spatial:Q1149796 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Weiden"@de ; + foaf:focus wd:Q1149796 . + +nwbib-spatial:Q1576176 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Ostwig"@de ; + foaf:focus wd:Q1576176 . + +nwbib-spatial:Q327423 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Tannenbusch"@de ; + foaf:focus wd:Q327423 . + +nwbib-spatial:Q3830 a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Neustadt-Süd"@de ; + foaf:focus wd:Q3830 . + +nwbib-spatial:Q1631621 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Hoven (Düren)"@de ; + foaf:focus wd:Q1631621 . + +nwbib-spatial:Q1402578 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Oberagger"@de ; + foaf:focus wd:Q1402578 . + +nwbib-spatial:Q5573 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962036" ; + skos:prefLabel "Meinerzhagen"@de ; + foaf:focus wd:Q5573 . + +nwbib-spatial:Q1455064 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Neuwerk"@de ; + foaf:focus wd:Q1455064 . + +nwbib-spatial:Q894910 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139715 ; + skos:inScheme ; + skos:prefLabel "Eigen"@de ; + foaf:focus wd:Q894910 . + +nwbib-spatial:Q21042078 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Meerbeck"@de ; + foaf:focus wd:Q21042078 . + +nwbib-spatial:Q1804945 + a skos:Concept ; + skos:broader nwbib-spatial:Q1786041 ; + skos:inScheme ; + skos:prefLabel "Langel"@de ; + foaf:focus wd:Q1804945 . + +nwbib-spatial:Q6089 a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Bocklemünd/Mengenich"@de ; + foaf:focus wd:Q6089 . + +nwbib-spatial:Q313969 + a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:prefLabel "Regierungsbezirk Minden (bis 1947)"@de ; + foaf:focus wd:Q313969 . + +nwbib-spatial:Q1464738 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Friesenrath"@de ; + foaf:focus wd:Q1464738 . + +nwbib-spatial:Q1307081 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Einern"@de ; + foaf:focus wd:Q1307081 . + +nwbib-spatial:Q1019955 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Börnhausen"@de ; + foaf:focus wd:Q1019955 . + +nwbib-spatial:Q27901871 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Derscheid"@de ; + foaf:focus wd:Q27901871 . + +nwbib-spatial:Q1743618 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Kirspenich"@de ; + foaf:focus wd:Q1743618 . + +nwbib-spatial:Q878973 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Henglarn"@de ; + foaf:focus wd:Q878973 . + +nwbib-spatial:Q40719211 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Berlinghausen"@de ; + foaf:focus wd:Q40719211 . + +nwbib-spatial:Q1553033 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Gudenhagen-Petersborn"@de ; + foaf:focus wd:Q1553033 . + +nwbib-spatial:Q1439048 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Fortuna"@de ; + foaf:focus wd:Q1439048 . + +nwbib-spatial:Q1406857 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Rureifel"@de ; + foaf:focus wd:Q1406857 . + +nwbib-spatial:Q300703 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Aachen-Mitte (Stadtbezirk)"@de ; + foaf:focus wd:Q300703 . + +nwbib-spatial:Q258026 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803601 ; + skos:inScheme ; + skos:prefLabel "Vogelheim"@de ; + foaf:focus wd:Q258026 . + +nwbib-spatial:Q2147628 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Rheindorf"@de ; + foaf:focus wd:Q2147628 . + +nwbib-spatial:Q1697729 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Lauthausen"@de ; + foaf:focus wd:Q1697729 . + +nwbib-spatial:Q33133656 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Opmünden"@de ; + foaf:focus wd:Q33133656 . + +nwbib-spatial:Q1250670 + a skos:Concept ; + skos:broader nwbib-spatial:Q17542971 ; + skos:inScheme ; + skos:prefLabel "Lücklemberg"@de ; + foaf:focus wd:Q1250670 . + +nwbib-spatial:Q1271639 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Düffelward"@de ; + foaf:focus wd:Q1271639 . + +nwbib-spatial:Q897473 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Brake"@de ; + foaf:focus wd:Q897473 . + +nwbib-spatial:Q879553 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Hochneukirch"@de ; + foaf:focus wd:Q879553 . + +nwbib-spatial:Q1747794 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Leopoldstal"@de ; + foaf:focus wd:Q1747794 . + +nwbib-spatial:Q57952577 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Mülheim"@de ; + foaf:focus wd:Q57952577 . + +nwbib-spatial:Q1292052 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Lanzenbach"@de ; + foaf:focus wd:Q1292052 . + +nwbib-spatial:Q1250585 + a skos:Concept ; + skos:broader nwbib-spatial:Q1168004 ; + skos:inScheme ; + skos:prefLabel "Berghofen"@de ; + foaf:focus wd:Q1250585 . + +nwbib-spatial:Q1474327 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Kutenhausen"@de ; + foaf:focus wd:Q1474327 . + +nwbib-spatial:Q1987628 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Niederbergheim"@de ; + foaf:focus wd:Q1987628 . + +nwbib-spatial:Q17122489 + a skos:Concept ; + skos:broader nwbib-spatial:Q245376 ; + skos:inScheme ; + skos:prefLabel "Bleifeld"@de ; + foaf:focus wd:Q17122489 . + +nwbib-spatial:Q174197 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Sandebeck"@de ; + foaf:focus wd:Q174197 . + +nwbib-spatial:Q1795777 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Westhoven"@de ; + foaf:focus wd:Q1795777 . + +nwbib-spatial:Q896690 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Holtorf"@de ; + foaf:focus wd:Q896690 . + +nwbib-spatial:Q1258280 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Westtünnen"@de ; + foaf:focus wd:Q1258280 . + +nwbib-spatial:Q1020947 + a skos:Concept ; + skos:broader nwbib-spatial:Q200640 ; + skos:inScheme ; + skos:prefLabel "Büren"@de ; + foaf:focus wd:Q1020947 . + +nwbib-spatial:Q2177050 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Vinsebeck"@de ; + foaf:focus wd:Q2177050 . + +nwbib-spatial:Q1020464 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Büderich"@de ; + foaf:focus wd:Q1020464 . + +nwbib-spatial:Q1617327 + a skos:Concept ; + skos:broader nwbib-spatial:Q11340 ; + skos:inScheme ; + skos:prefLabel "Hiddinghausen"@de ; + foaf:focus wd:Q1617327 . + +nwbib-spatial:Q2530373 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Vohren"@de ; + foaf:focus wd:Q2530373 . + +nwbib-spatial:Q2584967 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Winterborn"@de ; + foaf:focus wd:Q2584967 . + +nwbib-spatial:Q1924305 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Messinghausen"@de ; + foaf:focus wd:Q1924305 . + +nwbib-spatial:Q1615095 + a skos:Concept ; + skos:broader nwbib-spatial:Q225120 ; + skos:inScheme ; + skos:prefLabel "Herzebrock"@de ; + foaf:focus wd:Q1615095 . + +nwbib-spatial:Q1642592 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Häverstädt"@de ; + foaf:focus wd:Q1642592 . + +nwbib-spatial:Q1922073 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Mersch (Jülich)"@de ; + foaf:focus wd:Q1922073 . + +nwbib-spatial:Q201061 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Silberg"@de ; + foaf:focus wd:Q201061 . + +nwbib-spatial:Q1749999 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Schwerfen"@de ; + foaf:focus wd:Q1749999 . + +nwbib-spatial:Q1743172 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261667 ; + skos:inScheme ; + skos:prefLabel "Oberschelden"@de ; + foaf:focus wd:Q1743172 . + +nwbib-spatial:Q1741344 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Lürken"@de ; + foaf:focus wd:Q1741344 . + +nwbib-spatial:Q257398 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Margarethenhöhe"@de ; + foaf:focus wd:Q257398 . + +nwbib-spatial:Q4219 a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Rothaargebirge"@de ; + foaf:focus wd:Q4219 . + +nwbib-spatial:Q28109555 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Spormecke"@de ; + foaf:focus wd:Q28109555 . + +nwbib-spatial:Q11126 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974004" ; + skos:prefLabel "Anröchte"@de ; + foaf:focus wd:Q11126 . + +nwbib-spatial:Q2126553 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Radlinghausen"@de ; + foaf:focus wd:Q2126553 . + +nwbib-spatial:Q2165971 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Ronnewinkel"@de ; + foaf:focus wd:Q2165971 . + +nwbib-spatial:Q376205 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Linn"@de ; + foaf:focus wd:Q376205 . + +nwbib-spatial:Q939872 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Vossenack"@de ; + foaf:focus wd:Q939872 . + +nwbib-spatial:Q2326748 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Innenstadt-Nord"@de ; + foaf:focus wd:Q2326748 . + +nwbib-spatial:Q871980 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Wyler"@de ; + foaf:focus wd:Q871980 . + +nwbib-spatial:Q225729 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754016" ; + skos:prefLabel "Harsewinkel"@de ; + foaf:focus wd:Q225729 . + +nwbib-spatial:Q1959111 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Sentrup"@de ; + foaf:focus wd:Q1959111 . + +nwbib-spatial:Q2155793 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Rixen"@de ; + foaf:focus wd:Q2155793 . + +nwbib-spatial:Q1675728 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Iversheim"@de ; + foaf:focus wd:Q1675728 . + +nwbib-spatial:Q1455080 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Hebborn"@de ; + foaf:focus wd:Q1455080 . + +nwbib-spatial:Q1738418 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Kelzenberg"@de ; + foaf:focus wd:Q1738418 . + +nwbib-spatial:Q2554376 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Wehdem"@de ; + foaf:focus wd:Q2554376 . + +nwbib-spatial:Q6111 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974012" ; + skos:prefLabel "Ense"@de ; + foaf:focus wd:Q6111 . + +nwbib-spatial:Q56008582 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Emmelkamp"@de ; + foaf:focus wd:Q56008582 . + +nwbib-spatial:Q199974 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358016" ; + skos:prefLabel "Hürtgenwald"@de ; + foaf:focus wd:Q199974 . + +nwbib-spatial:Q1570787 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Haldern"@de ; + foaf:focus wd:Q1570787 . + +nwbib-spatial:Q151680 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Hersel"@de ; + foaf:focus wd:Q151680 . + +nwbib-spatial:Q882288 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Blatzheim"@de ; + foaf:focus wd:Q882288 . + +nwbib-spatial:Q518604 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Nippes (Stadtbezirk)"@de ; + foaf:focus wd:Q518604 . + +nwbib-spatial:Q1997843 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Nordeifel"@de ; + foaf:focus wd:Q1997843 . + +nwbib-spatial:Q2534953 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Voßheide"@de ; + foaf:focus wd:Q2534953 . + +nwbib-spatial:Q1748353 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Nordrheda-Ems"@de ; + foaf:focus wd:Q1748353 . + +nwbib-spatial:Q2568286 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Wiedenfeld"@de ; + foaf:focus wd:Q2568286 . + +nwbib-spatial:Q1551698 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Grötzenberg"@de ; + foaf:focus wd:Q1551698 . + +nwbib-spatial:Q1607669 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Heppen"@de ; + foaf:focus wd:Q1607669 . + +nwbib-spatial:Q2570532 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Wilden"@de ; + foaf:focus wd:Q2570532 . + +nwbib-spatial:Q1910973 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Mauel (Windeck)"@de ; + foaf:focus wd:Q1910973 . + +nwbib-spatial:Q1291886 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Veltheim"@de ; + foaf:focus wd:Q1291886 . + +nwbib-spatial:Q440267 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Altglück"@de ; + foaf:focus wd:Q440267 . + +nwbib-spatial:Q2498315 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Wunderthausen"@de ; + foaf:focus wd:Q2498315 . + +nwbib-spatial:Q52458367 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Plitschard"@de ; + foaf:focus wd:Q52458367 . + +nwbib-spatial:Q153885 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Vingst"@de ; + foaf:focus wd:Q153885 . + +nwbib-spatial:Q19968083 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Voerde"@de ; + foaf:focus wd:Q19968083 . + +nwbib-spatial:Q55501092 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Röllinghausen"@de ; + foaf:focus wd:Q55501092 . + +nwbib-spatial:Q1536368 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Imgenbroich"@de ; + foaf:focus wd:Q1536368 . + +nwbib-spatial:Q699441 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Arrenkamp"@de ; + foaf:focus wd:Q699441 . + +nwbib-spatial:Q1817623 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Lengenbeck"@de ; + foaf:focus wd:Q1817623 . + +nwbib-spatial:Q1304021 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Eilendorf (Stadtbezirk)"@de ; + foaf:focus wd:Q1304021 . + +nwbib-spatial:Q5398 a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366044" ; + skos:prefLabel "Zülpich"@de ; + foaf:focus wd:Q5398 . + +nwbib-spatial:Q241761 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762028" ; + skos:prefLabel "Nieheim"@de ; + foaf:focus wd:Q241761 . + +nwbib-spatial:Q878257 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Großbüllesheim"@de ; + foaf:focus wd:Q878257 . + +nwbib-spatial:Q2438685 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Todtenhausen"@de ; + foaf:focus wd:Q2438685 . + +nwbib-spatial:Q15059640 + a skos:Concept ; + skos:broader nwbib-spatial:Q4192 ; + skos:inScheme ; + skos:prefLabel "Rünthe"@de ; + foaf:focus wd:Q15059640 . + +nwbib-spatial:Q317702 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Obermarsberg"@de ; + foaf:focus wd:Q317702 . + +nwbib-spatial:Q2454680 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Trockenbrück"@de ; + foaf:focus wd:Q2454680 . + +nwbib-spatial:Q1422698 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Rahser"@de ; + foaf:focus wd:Q1422698 . + +nwbib-spatial:Q44816683 + a skos:Concept ; + skos:broader nwbib-spatial:Q6136 ; + skos:inScheme ; + skos:prefLabel "Wiehagen"@de ; + foaf:focus wd:Q44816683 . + +nwbib-spatial:Q477038 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Gemen"@de ; + foaf:focus wd:Q477038 . + +nwbib-spatial:Q2348419 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139024 ; + skos:inScheme ; + skos:prefLabel "Stieghorst"@de ; + foaf:focus wd:Q2348419 . + +nwbib-spatial:Q1687932 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Schwarzenmoor"@de ; + foaf:focus wd:Q1687932 . + +nwbib-spatial:Q1689675 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Osberghausen"@de ; + foaf:focus wd:Q1689675 . + +nwbib-spatial:Q1873166 + a skos:Concept ; + skos:broader nwbib-spatial:Q200018 ; + skos:inScheme ; + skos:prefLabel "Luchem"@de ; + foaf:focus wd:Q1873166 . + +nwbib-spatial:Q2549984 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Warth"@de ; + foaf:focus wd:Q2549984 . + +nwbib-spatial:Q2322464 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Sankt Peter"@de ; + foaf:focus wd:Q2322464 . + +nwbib-spatial:Q181877 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566032" ; + skos:prefLabel "Ladbergen"@de ; + foaf:focus wd:Q181877 . + +nwbib-spatial:Q153779 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Mülheim (Stadtbezirk)"@de ; + foaf:focus wd:Q153779 . + +nwbib-spatial:Q1987623 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Niederberndorf"@de ; + foaf:focus wd:Q1987623 . + +nwbib-spatial:Q1795772 + a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Vogelsang"@de ; + foaf:focus wd:Q1795772 . + +nwbib-spatial:Q1387208 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Lank-Latum"@de ; + foaf:focus wd:Q1387208 . + +nwbib-spatial:Q818150 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Benroth"@de ; + foaf:focus wd:Q818150 . + +nwbib-spatial:Q878236 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Kirchheim"@de ; + foaf:focus wd:Q878236 . + +nwbib-spatial:Q44069021 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Altenrheine"@de ; + foaf:focus wd:Q44069021 . + +nwbib-spatial:Q461905 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Amelunxen"@de ; + foaf:focus wd:Q461905 . + +nwbib-spatial:Q15857371 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Hombruch"@de ; + foaf:focus wd:Q15857371 . + +nwbib-spatial:Q18924524 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Biekhofen"@de ; + foaf:focus wd:Q18924524 . + +nwbib-spatial:Q907110 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Brelen"@de ; + foaf:focus wd:Q907110 . + +nwbib-spatial:Q1859610 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Obermaubach"@de ; + foaf:focus wd:Q1859610 . + +nwbib-spatial:Q241655 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762024" ; + skos:prefLabel "Marienmünster"@de ; + foaf:focus wd:Q241655 . + +nwbib-spatial:Q2948 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162024" ; + skos:prefLabel "Neuss"@de ; + foaf:focus wd:Q2948 . + +nwbib-spatial:Q19309648 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Stöppel"@de ; + foaf:focus wd:Q19309648 . + +nwbib-spatial:Q1618464 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Hildfeld"@de ; + foaf:focus wd:Q1618464 . + +nwbib-spatial:Q1419894 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Fischelbach"@de ; + foaf:focus wd:Q1419894 . + +nwbib-spatial:Q1627740 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Hoppengarten"@de ; + foaf:focus wd:Q1627740 . + +nwbib-spatial:Q15125849 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Ramscheid"@de ; + foaf:focus wd:Q15125849 . + +nwbib-spatial:Q242320 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766064" ; + skos:prefLabel "Schlangen"@de ; + foaf:focus wd:Q242320 . + +nwbib-spatial:Q857097 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Bieberstein"@de ; + foaf:focus wd:Q857097 . + +nwbib-spatial:Q245290 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Zyfflich"@de ; + foaf:focus wd:Q245290 . + +nwbib-spatial:Q5839 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962020" ; + skos:prefLabel "Herscheid"@de ; + foaf:focus wd:Q5839 . + +nwbib-spatial:Q1220086 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Diebrock"@de ; + foaf:focus wd:Q1220086 . + +nwbib-spatial:Q1552236 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Grüngürtel"@de ; + foaf:focus wd:Q1552236 . + +nwbib-spatial:Q1795751 + a skos:Concept ; + skos:broader nwbib-spatial:Q1786041 ; + skos:inScheme ; + skos:prefLabel "Kasselberg"@de ; + foaf:focus wd:Q1795751 . + +nwbib-spatial:Q5982 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05970" ; + skos:prefLabel "Kreis Siegen-Wittgenstein"@de ; + foaf:focus wd:Q5982 . + +nwbib-spatial:Q819754 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Bergheim"@de ; + foaf:focus wd:Q819754 . + +nwbib-spatial:Q1235712 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Dollendorf"@de ; + foaf:focus wd:Q1235712 . + +nwbib-spatial:Q1787322 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Gummersbach (bis 1932)"@de ; + foaf:focus wd:Q1787322 . + +nwbib-spatial:Q163693 + a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166004" ; + skos:prefLabel "Brüggen"@de ; + foaf:focus wd:Q163693 . + +nwbib-spatial:Q1602705 + a skos:Concept ; + skos:broader nwbib-spatial:Q17558355 ; + skos:inScheme ; + skos:prefLabel "Rahm"@de ; + foaf:focus wd:Q1602705 . + +nwbib-spatial:Q2035192 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Osterhagen"@de ; + foaf:focus wd:Q2035192 . + +nwbib-spatial:Q1762849 + a skos:Concept ; + skos:broader nwbib-spatial:Q200018 ; + skos:inScheme ; + skos:prefLabel "Schlich"@de ; + foaf:focus wd:Q1762849 . + +nwbib-spatial:Q1908910 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Matorf-Kirchheide"@de ; + foaf:focus wd:Q1908910 . + +nwbib-spatial:Q1646541 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Rothebusch"@de ; + foaf:focus wd:Q1646541 . + +nwbib-spatial:Q26208588 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Diersfordt"@de ; + foaf:focus wd:Q26208588 . + +nwbib-spatial:Q55499395 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Oege"@de ; + foaf:focus wd:Q55499395 . + +nwbib-spatial:Q1417419 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Hedem"@de ; + foaf:focus wd:Q1417419 . + +nwbib-spatial:Q10976 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374004" ; + skos:prefLabel "Bergneustadt"@de ; + foaf:focus wd:Q10976 . + +nwbib-spatial:Q15055936 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Eickelborn"@de ; + foaf:focus wd:Q15055936 . + +nwbib-spatial:Q15908961 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Mittelmeiderich"@de ; + foaf:focus wd:Q15908961 . + +nwbib-spatial:Q1827431 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Lippborg"@de ; + foaf:focus wd:Q1827431 . + +nwbib-spatial:Q56556446 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Hagenbroich"@de ; + foaf:focus wd:Q56556446 . + +nwbib-spatial:Q4108 a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766008" ; + skos:prefLabel "Bad Salzuflen"@de ; + foaf:focus wd:Q4108 . + +nwbib-spatial:Q936159 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Keyenberg"@de ; + foaf:focus wd:Q936159 . + +nwbib-spatial:Q2301766 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Sonnborn"@de ; + foaf:focus wd:Q2301766 . + +nwbib-spatial:Q1258005 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Dreimühlen"@de ; + foaf:focus wd:Q1258005 . + +nwbib-spatial:Q2016507 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Ohlerath"@de ; + foaf:focus wd:Q2016507 . + +nwbib-spatial:Q1368639 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803598 ; + skos:inScheme ; + skos:prefLabel "Rüttenscheid"@de ; + foaf:focus wd:Q1368639 . + +nwbib-spatial:Q1673868 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Quirrenbach"@de ; + foaf:focus wd:Q1673868 . + +nwbib-spatial:Q1639801 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Schlebusch"@de ; + foaf:focus wd:Q1639801 . + +nwbib-spatial:Q1520057 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Reuschenberg"@de ; + foaf:focus wd:Q1520057 . + +nwbib-spatial:Q47462166 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Hamm"@de ; + foaf:focus wd:Q47462166 . + +nwbib-spatial:Q829042 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Strümp"@de ; + foaf:focus wd:Q829042 . + +nwbib-spatial:Q1359609 + a skos:Concept ; + skos:broader nwbib-spatial:Q2740 ; + skos:inScheme ; + skos:prefLabel "Albersloh"@de ; + foaf:focus wd:Q1359609 . + +nwbib-spatial:Q1732504 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Neu-Elfgen"@de ; + foaf:focus wd:Q1732504 . + +nwbib-spatial:Q670362 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Brück"@de ; + foaf:focus wd:Q670362 . + +nwbib-spatial:Q1609471 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Herbram"@de ; + foaf:focus wd:Q1609471 . + +nwbib-spatial:Q2297827 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Sohlbach"@de ; + foaf:focus wd:Q2297827 . + +nwbib-spatial:N69 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "69" ; + skos:prefLabel "Grafschaft Ravensberg"@de ; + foaf:focus wd:Q573290 . + +nwbib-spatial:Q2300597 + a skos:Concept ; + skos:broader nwbib-spatial:Q242953 ; + skos:inScheme ; + skos:prefLabel "Sommersell"@de ; + foaf:focus wd:Q2300597 . + +nwbib-spatial:Q56397874 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Bigge-Medebach"@de ; + foaf:focus wd:Q56397874 . + +nwbib-spatial:Q117900 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Pivitsheide V. L."@de ; + foaf:focus wd:Q117900 . + +nwbib-spatial:Q1667729 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Kuckum"@de ; + foaf:focus wd:Q1667729 . + +nwbib-spatial:Q1633099 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Istrup"@de ; + foaf:focus wd:Q1633099 . + +nwbib-spatial:Q1937561 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Mintard"@de ; + foaf:focus wd:Q1937561 . + +nwbib-spatial:Q1475395 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Broich"@de ; + foaf:focus wd:Q1475395 . + +nwbib-spatial:Q1230763 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Dörpe"@de ; + foaf:focus wd:Q1230763 . + +nwbib-spatial:Q1390913 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Frankenberger Viertel"@de ; + foaf:focus wd:Q1390913 . + +nwbib-spatial:Q1254407 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Wockerath"@de ; + foaf:focus wd:Q1254407 . + +nwbib-spatial:Q1278273 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Kelz"@de ; + foaf:focus wd:Q1278273 . + +nwbib-spatial:Q1301502 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Eichen"@de ; + foaf:focus wd:Q1301502 . + +nwbib-spatial:Q153774 + a skos:Concept ; + skos:broader nwbib-spatial:Q450087 ; + skos:inScheme ; + skos:prefLabel "Duisdorf"@de ; + foaf:focus wd:Q153774 . + +nwbib-spatial:Q458126 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Ehrenfeld (Stadtbezirk)"@de ; + foaf:focus wd:Q458126 . + +nwbib-spatial:Q59140358 + a skos:Concept ; + skos:broader nwbib-spatial:Q2765 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gelsenkirchen-Ost"@de ; + foaf:focus wd:Q59140358 . + +nwbib-spatial:Q895708 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Diedenshausen"@de ; + foaf:focus wd:Q895708 . + +nwbib-spatial:Q11052 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374032" ; + skos:prefLabel "Nümbrecht"@de ; + foaf:focus wd:Q11052 . + +nwbib-spatial:Q19687890 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Braam-Ostwennemar"@de ; + foaf:focus wd:Q19687890 . + +nwbib-spatial:Q1740827 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Kickenbach"@de ; + foaf:focus wd:Q1740827 . + +nwbib-spatial:N48 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "48" ; + skos:prefLabel "Niederrheinisch-Westfälischer Reichskreis"@de ; + foaf:focus wd:Q708742 . + +nwbib-spatial:Q2312202 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Sporke"@de ; + foaf:focus wd:Q2312202 . + +nwbib-spatial:Q2554785 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Weiberg"@de ; + foaf:focus wd:Q2554785 . + +nwbib-spatial:Q7036 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362012" ; + skos:prefLabel "Brühl"@de ; + foaf:focus wd:Q7036 . + +nwbib-spatial:Q26836889 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Fuhr"@de ; + foaf:focus wd:Q26836889 . + +nwbib-spatial:Q315660 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Erp"@de ; + foaf:focus wd:Q315660 . + +nwbib-spatial:Q1457153 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Friedewalde"@de ; + foaf:focus wd:Q1457153 . + +nwbib-spatial:Q253185 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382076" ; + skos:prefLabel "Windeck"@de ; + foaf:focus wd:Q253185 . + +nwbib-spatial:Q181851 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566020" ; + skos:prefLabel "Hopsten"@de ; + foaf:focus wd:Q181851 . + +nwbib-spatial:Q23788002 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bochum-Ost"@de ; + foaf:focus wd:Q23788002 . + +nwbib-spatial:Q1917485 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Mehrhoog"@de ; + foaf:focus wd:Q1917485 . + +nwbib-spatial:Q1414459 + a skos:Concept ; + skos:broader nwbib-spatial:Q225334 ; + skos:inScheme ; + skos:prefLabel "Peckeloh"@de ; + foaf:focus wd:Q1414459 . + +nwbib-spatial:Q240964 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366020" ; + skos:prefLabel "Hellenthal"@de ; + foaf:focus wd:Q240964 . + +nwbib-spatial:Q1500671 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Blankenheim (bis 1818)"@de ; + foaf:focus wd:Q1500671 . + +nwbib-spatial:Q865442 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Birk"@de ; + foaf:focus wd:Q865442 . + +nwbib-spatial:Q1554457 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Wilgersdorf"@de ; + foaf:focus wd:Q1554457 . + +nwbib-spatial:Q2596714 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Würgassen"@de ; + foaf:focus wd:Q2596714 . + +nwbib-spatial:Q14208738 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk IX (Essen)"@de ; + foaf:focus wd:Q14208738 . + +nwbib-spatial:Q1753653 + a skos:Concept ; + skos:broader nwbib-spatial:Q182979 ; + skos:inScheme ; + skos:prefLabel "Preußisch Ströhen"@de ; + foaf:focus wd:Q1753653 . + +nwbib-spatial:Q44652837 + a skos:Concept ; + skos:broader nwbib-spatial:Q14929 ; + skos:inScheme ; + skos:prefLabel "Schmalbroich"@de ; + foaf:focus wd:Q44652837 . + +nwbib-spatial:Q183515 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774036" ; + skos:prefLabel "Salzkotten"@de ; + foaf:focus wd:Q183515 . + +nwbib-spatial:Q1750200 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Sohl"@de ; + foaf:focus wd:Q1750200 . + +nwbib-spatial:Q1368655 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Westviertel"@de ; + foaf:focus wd:Q1368655 . + +nwbib-spatial:Q815546 + a skos:Concept ; + skos:broader nwbib-spatial:Q3823 ; + skos:inScheme ; + skos:prefLabel "Belgisches Viertel"@de ; + foaf:focus wd:Q815546 . + +nwbib-spatial:Q1345232 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Entrup"@de ; + foaf:focus wd:Q1345232 . + +nwbib-spatial:Q923471 + a skos:Concept ; + skos:broader nwbib-spatial:Q181745 ; + skos:inScheme ; + skos:prefLabel "Brochterbeck"@de ; + foaf:focus wd:Q923471 . + +nwbib-spatial:Q1805382 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Langschede"@de ; + foaf:focus wd:Q1805382 . + +nwbib-spatial:Q1621762 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Hochemmerich"@de ; + foaf:focus wd:Q1621762 . + +nwbib-spatial:Q26208583 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Schepersfeld"@de ; + foaf:focus wd:Q26208583 . + +nwbib-spatial:Q1720900 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Kachtenhausen"@de ; + foaf:focus wd:Q1720900 . + +nwbib-spatial:Q14946 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558008" ; + skos:prefLabel "Billerbeck"@de ; + foaf:focus wd:Q14946 . + +nwbib-spatial:Q44023866 + a skos:Concept ; + skos:broader nwbib-spatial:Q323826 ; + skos:inScheme ; + skos:prefLabel "Knittkuhl"@de ; + foaf:focus wd:Q17351610 . + +nwbib-spatial:Q2125590 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Radewig"@de ; + foaf:focus wd:Q2125590 . + +nwbib-spatial:Q883341 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Porz"@de ; + foaf:focus wd:Q883341 . + +nwbib-spatial:N3 a skos:Concept ; + skos:inScheme ; + skos:notation "3" ; + skos:prefLabel "Kirchliche Gebiete in Nordrhein-Westfalen"@de . + +nwbib-spatial:Q61726649 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Mürmeln"@de ; + foaf:focus wd:Q61726649 . + +nwbib-spatial:Q181745 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566088" ; + skos:prefLabel "Tecklenburg"@de ; + foaf:focus wd:Q181745 . + +nwbib-spatial:Q2340252 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Steinbüchel"@de ; + foaf:focus wd:Q2340252 . + +nwbib-spatial:Q2564620 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Westenfeld"@de ; + foaf:focus wd:Q2564620 . + +nwbib-spatial:Q1119627 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Riemke"@de ; + foaf:focus wd:Q1119627 . + +nwbib-spatial:Q612354 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Hüngersdorf"@de ; + foaf:focus wd:Q612354 . + +nwbib-spatial:Q1368634 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803601 ; + skos:inScheme ; + skos:prefLabel "Karnap"@de ; + foaf:focus wd:Q1368634 . + +nwbib-spatial:Q2015269 + a skos:Concept ; + skos:broader nwbib-spatial:Q225334 ; + skos:inScheme ; + skos:prefLabel "Oesterweg"@de ; + foaf:focus wd:Q2015269 . + +nwbib-spatial:Q1257393 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Dreiborn"@de ; + foaf:focus wd:Q1257393 . + +nwbib-spatial:Q2130101 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Ramersdorf"@de ; + foaf:focus wd:Q2130101 . + +nwbib-spatial:Q251069 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Landkreis Hagen (bis 1929)"@de ; + foaf:focus wd:Q251069 . + +nwbib-spatial:Q1947767 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Morgensternsheide"@de ; + foaf:focus wd:Q1947767 . + +nwbib-spatial:Q204860 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370040" ; + skos:prefLabel "Wegberg"@de ; + foaf:focus wd:Q204860 . + +nwbib-spatial:Q243266 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154040" ; + skos:prefLabel "Kranenburg"@de ; + foaf:focus wd:Q243266 . + +nwbib-spatial:Q10950 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970032" ; + skos:prefLabel "Netphen"@de ; + foaf:focus wd:Q10950 . + +nwbib-spatial:N64 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "64" ; + skos:prefLabel "Bistum und Fürstbistum Minden"@de ; + foaf:focus wd:Q650645 . + +nwbib-spatial:Q56034025 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Stahldorf"@de ; + foaf:focus wd:Q56034025 . + +nwbib-spatial:Q61725003 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Geildorf"@de ; + foaf:focus wd:Q61725003 . + +nwbib-spatial:Q883320 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Rath/Heumar"@de ; + foaf:focus wd:Q883320 . + +nwbib-spatial:Q2035002 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Ostenwalde"@de ; + foaf:focus wd:Q2035002 . + +nwbib-spatial:Q1641626 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Westig"@de ; + foaf:focus wd:Q1641626 . + +nwbib-spatial:Q1486892 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Hangelar"@de ; + foaf:focus wd:Q1486892 . + +nwbib-spatial:Q1252653 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Haarzopf"@de ; + foaf:focus wd:Q1252653 . + +nwbib-spatial:Q1643995 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Höllen"@de ; + foaf:focus wd:Q1643995 . + +nwbib-spatial:Q15126859 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Sallinghausen"@de ; + foaf:focus wd:Q15126859 . + +nwbib-spatial:Q1922249 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Merzenhausen"@de ; + foaf:focus wd:Q1922249 . + +nwbib-spatial:Q6992 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334004" ; + skos:prefLabel "Alsdorf"@de ; + foaf:focus wd:Q6992 . + +nwbib-spatial:Q2009188 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Oberbergstraße"@de ; + foaf:focus wd:Q2009188 . + +nwbib-spatial:N43 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "43" ; + skos:prefLabel "Niederrheinische Herzogtümer"@de . + +nwbib-spatial:Q1625212 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1625212 . + +nwbib-spatial:Q2018765 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Oldentrup"@de ; + foaf:focus wd:Q2018765 . + +nwbib-spatial:Q2789 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570044" ; + skos:prefLabel "Telgte"@de ; + foaf:focus wd:Q2789 . + +nwbib-spatial:Q2350382 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Stirpe"@de ; + foaf:focus wd:Q2350382 . + +nwbib-spatial:Q1020704 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Bülgenauel"@de ; + foaf:focus wd:Q1020704 . + +nwbib-spatial:Q1248160 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Merbeck"@de ; + foaf:focus wd:Q1248160 . + +nwbib-spatial:Q1650249 + a skos:Concept ; + skos:broader nwbib-spatial:Q200044 ; + skos:inScheme ; + skos:prefLabel "Morschenich"@de ; + foaf:focus wd:Q1650249 . + +nwbib-spatial:Q2229979 + a skos:Concept ; + skos:broader nwbib-spatial:Q243206 ; + skos:inScheme ; + skos:prefLabel "Schaephuysen"@de ; + foaf:focus wd:Q2229979 . + +nwbib-spatial:Q200068 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358052" ; + skos:prefLabel "Nörvenich"@de ; + foaf:focus wd:Q200068 . + +nwbib-spatial:Q1021846 + a skos:Concept ; + skos:broader nwbib-spatial:Q7088 ; + skos:inScheme ; + skos:prefLabel "Büttgen"@de ; + foaf:focus wd:Q1021846 . + +nwbib-spatial:Q1534965 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Sürth"@de ; + foaf:focus wd:Q1534965 . + +nwbib-spatial:Q1533738 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Godelheim"@de ; + foaf:focus wd:Q1533738 . + +nwbib-spatial:Q25392878 + a skos:Concept ; + skos:broader nwbib-spatial:Q2904 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Herne-Mitte"@de ; + foaf:focus wd:Q25392878 . + +nwbib-spatial:Q1262424 + a skos:Concept ; + skos:broader nwbib-spatial:Q512233 ; + skos:inScheme ; + skos:prefLabel "Obermarxloh"@de ; + foaf:focus wd:Q1262424 . + +nwbib-spatial:Q1265400 + a skos:Concept ; + skos:broader nwbib-spatial:Q32750 ; + skos:inScheme ; + skos:prefLabel "Rotingdorf"@de ; + foaf:focus wd:Q1265400 . + +nwbib-spatial:Q2645404 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Speelberg"@de ; + foaf:focus wd:Q2645404 . + +nwbib-spatial:Q27479182 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Schmitzbüchel"@de ; + foaf:focus wd:Q27479182 . + +nwbib-spatial:Q881204 + a skos:Concept ; + skos:broader nwbib-spatial:Q23788002 ; + skos:inScheme ; + skos:prefLabel "Werne"@de ; + foaf:focus wd:Q881204 . + +nwbib-spatial:Q1589115 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Havert"@de ; + foaf:focus wd:Q1589115 . + +nwbib-spatial:N22 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "22" ; + skos:prefLabel "Bergisches Land"@de ; + foaf:focus wd:Q153464 . + +nwbib-spatial:Q2532818 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259723 ; + skos:inScheme ; + skos:prefLabel "Volnsberg"@de ; + foaf:focus wd:Q2532818 . + +nwbib-spatial:Q1585140 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Hardt"@de ; + foaf:focus wd:Q1585140 . + +nwbib-spatial:Q1622841 + a skos:Concept ; + skos:broader nwbib-spatial:Q14895 ; + skos:inScheme ; + skos:prefLabel "Hoerstgen"@de ; + foaf:focus wd:Q1622841 . + +nwbib-spatial:Q2271193 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138834 ; + skos:inScheme ; + skos:prefLabel "Sennestadt"@de ; + foaf:focus wd:Q2271193 . + +nwbib-spatial:Q990936 + a skos:Concept ; + skos:broader nwbib-spatial:Q5573 ; + skos:inScheme ; + skos:prefLabel "Krummenerl"@de ; + foaf:focus wd:Q990936 . + +nwbib-spatial:Q15058127 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Niederheid"@de ; + foaf:focus wd:Q15058127 . + +nwbib-spatial:Q879119 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Bitze"@de ; + foaf:focus wd:Q879119 . + +nwbib-spatial:Q243139 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154060" ; + skos:prefLabel "Wachtendonk"@de ; + foaf:focus wd:Q243139 . + +nwbib-spatial:Q12809655 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140275 ; + skos:inScheme ; + skos:prefLabel "Feldmark"@de ; + foaf:focus wd:Q12809655 . + +nwbib-spatial:Q284005 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Dalhausen"@de ; + foaf:focus wd:Q284005 . + +nwbib-spatial:Q2015206 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Oese"@de ; + foaf:focus wd:Q2015206 . + +nwbib-spatial:Q61790257 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Rennekoven"@de ; + foaf:focus wd:Q61790257 . + +nwbib-spatial:Q2662781 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bochum-Mitte"@de ; + foaf:focus wd:Q2662781 . + +nwbib-spatial:Q200190 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554052" ; + skos:prefLabel "Schöppingen"@de ; + foaf:focus wd:Q200190 . + +nwbib-spatial:Q109703178 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Gipperich"@de ; + foaf:focus wd:Q109703178 . + +nwbib-spatial:Q688115 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Heimerzheim"@de ; + foaf:focus wd:Q688115 . + +nwbib-spatial:Q78855747 + a skos:Concept ; + skos:broader nwbib-spatial:Q1490832 ; + skos:inScheme ; + skos:prefLabel "Gadderbaum"@de ; + foaf:focus wd:Q78855747 . + +nwbib-spatial:Q2380038 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Sötenich"@de ; + foaf:focus wd:Q2380038 . + +nwbib-spatial:Q830139 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Bessenich"@de ; + foaf:focus wd:Q830139 . + +nwbib-spatial:Q736209 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Asperden"@de ; + foaf:focus wd:Q736209 . + +nwbib-spatial:Q1553204 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Rhonard"@de ; + foaf:focus wd:Q1553204 . + +nwbib-spatial:Q889054 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973169 ; + skos:inScheme ; + skos:prefLabel "Bergen"@de ; + foaf:focus wd:Q889054 . + +nwbib-spatial:Q1745675 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Oberfischbach"@de ; + foaf:focus wd:Q1745675 . + +nwbib-spatial:Q798266 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Bachum"@de ; + foaf:focus wd:Q798266 . + +nwbib-spatial:Q1591088 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Hausen"@de ; + foaf:focus wd:Q1591088 . + +nwbib-spatial:Q183483 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774028" ; + skos:prefLabel "Lichtenau"@de ; + foaf:focus wd:Q183483 . + +nwbib-spatial:N01 a skos:Concept ; + skos:broader nwbib-spatial:N0 ; + skos:inScheme ; + skos:notation "01" ; + skos:prefLabel "Nordrhein-Westfalen"@de ; + foaf:focus wd:Q1198 . + +nwbib-spatial:Q663159 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Millen"@de ; + foaf:focus wd:Q663159 . + +nwbib-spatial:Q1803464 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Solingen (bis 1929)"@de ; + foaf:focus wd:Q1803464 . + +nwbib-spatial:Q163917 + a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166024" ; + skos:prefLabel "Schwalmtal"@de ; + foaf:focus wd:Q163917 . + +nwbib-spatial:Q2594854 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Wulferdingsen"@de ; + foaf:focus wd:Q2594854 . + +nwbib-spatial:Q6239 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05770" ; + skos:prefLabel "Kreis Minden-Lübbecke"@de ; + foaf:focus wd:Q6239 . + +nwbib-spatial:Q16854899 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Neuwarendorf"@de ; + foaf:focus wd:Q16854899 . + +nwbib-spatial:Q1339298 + a skos:Concept ; + skos:broader nwbib-spatial:Q59243186 ; + skos:inScheme ; + skos:prefLabel "Schloß Neuhaus"@de ; + foaf:focus wd:Q1339298 . + +nwbib-spatial:Q183404 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774016" ; + skos:prefLabel "Büren"@de ; + foaf:focus wd:Q183404 . + +nwbib-spatial:Q883649 + a skos:Concept ; + skos:broader nwbib-spatial:Q59243186 ; + skos:inScheme ; + skos:prefLabel "Sennelager"@de ; + foaf:focus wd:Q883649 . + +nwbib-spatial:Q2534683 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Vorweiden"@de ; + foaf:focus wd:Q2534683 . + +nwbib-spatial:Q151331 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Schevenhütte"@de ; + foaf:focus wd:Q151331 . + +nwbib-spatial:Q1281198 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Echtrop"@de ; + foaf:focus wd:Q1281198 . + +nwbib-spatial:Q1541341 + a skos:Concept ; + skos:broader nwbib-spatial:Q14888 ; + skos:inScheme ; + skos:prefLabel "Graes"@de ; + foaf:focus wd:Q1541341 . + +nwbib-spatial:Q1989144 + a skos:Concept ; + skos:broader nwbib-spatial:Q200326 ; + skos:inScheme ; + skos:prefLabel "Nienborg"@de ; + foaf:focus wd:Q1989144 . + +nwbib-spatial:Q1412180 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Minden (bis 1972)"@de ; + foaf:focus wd:Q1412180 . + +nwbib-spatial:Q1565912 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Varensell"@de ; + foaf:focus wd:Q1565912 . + +nwbib-spatial:Q1741053 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Kierdorf"@de ; + foaf:focus wd:Q1741053 . + +nwbib-spatial:Q1280120 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Hömel"@de ; + foaf:focus wd:Q1280120 . + +nwbib-spatial:Q200567 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554056" ; + skos:prefLabel "Stadtlohn"@de ; + foaf:focus wd:Q200567 . + +nwbib-spatial:Q1796692 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Körrenzig"@de ; + foaf:focus wd:Q1796692 . + +nwbib-spatial:Q257028 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Nordviertel"@de ; + foaf:focus wd:Q257028 . + +nwbib-spatial:Q2568563 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Wiehagen"@de ; + foaf:focus wd:Q2568563 . + +nwbib-spatial:Q15052036 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Bauchem"@de ; + foaf:focus wd:Q15052036 . + +nwbib-spatial:Q15059789 + a skos:Concept ; + skos:broader nwbib-spatial:Q204793 ; + skos:inScheme ; + skos:prefLabel "Schierwaldenrath"@de ; + foaf:focus wd:Q15059789 . + +nwbib-spatial:Q1522735 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Obersdorf"@de ; + foaf:focus wd:Q1522735 . + +nwbib-spatial:Q1343208 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Enkesen im Klei"@de ; + foaf:focus wd:Q1343208 . + +nwbib-spatial:Q6218 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05754" ; + skos:prefLabel "Kreis Gütersloh"@de ; + foaf:focus wd:Q6218 . + +nwbib-spatial:Q10775 a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Kommern"@de ; + foaf:focus wd:Q10775 . + +nwbib-spatial:Q245466 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378020" ; + skos:prefLabel "Odenthal"@de ; + foaf:focus wd:Q245466 . + +nwbib-spatial:Q1353444 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Nuttlar"@de ; + foaf:focus wd:Q1353444 . + +nwbib-spatial:Q1300657 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Ehrentrup"@de ; + foaf:focus wd:Q1300657 . + +nwbib-spatial:Q905595 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Breidtersteegsmühle"@de ; + foaf:focus wd:Q905595 . + +nwbib-spatial:Q862875 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Billinghausen"@de ; + foaf:focus wd:Q862875 . + +nwbib-spatial:Q897140 + a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:prefLabel "Kreis Tecklenburg (bis 1974)"@de ; + foaf:focus wd:Q897140 . + +nwbib-spatial:Q998498 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Buchholz"@de ; + foaf:focus wd:Q998498 . + +nwbib-spatial:Q317432 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Eversberg"@de ; + foaf:focus wd:Q317432 . + +nwbib-spatial:Q1821825 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Levern"@de ; + foaf:focus wd:Q1821825 . + +nwbib-spatial:Q20826938 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Osterflierich"@de ; + foaf:focus wd:Q20826938 . + +nwbib-spatial:Q2132757 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Ratingen-West"@de ; + foaf:focus wd:Q2132757 . + +nwbib-spatial:Q2559591 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Wennemen"@de ; + foaf:focus wd:Q2559591 . + +nwbib-spatial:Q2512296 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Veldrom/Feldrom/Kempen"@de ; + foaf:focus wd:Q2512296 . + +nwbib-spatial:Q52545287 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Berensberg"@de ; + foaf:focus wd:Q52545287 . + +nwbib-spatial:Q42409368 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Bredenscheid-Stüter"@de ; + foaf:focus wd:Q42409368 . + +nwbib-spatial:Q2058314 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Pattern"@de ; + foaf:focus wd:Q2058314 . + +nwbib-spatial:Q1265872 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Girkhausen"@de ; + foaf:focus wd:Q1265872 . + +nwbib-spatial:Q1258345 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Drenke"@de ; + foaf:focus wd:Q1258345 . + +nwbib-spatial:Q2168948 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Rott"@de ; + foaf:focus wd:Q2168948 . + +nwbib-spatial:Q177864 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Bausenhagen"@de ; + foaf:focus wd:Q177864 . + +nwbib-spatial:Q6823 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362024" ; + skos:prefLabel "Frechen"@de ; + foaf:focus wd:Q6823 . + +nwbib-spatial:Q1200174 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Derichsweiler"@de ; + foaf:focus wd:Q1200174 . + +nwbib-spatial:Q2380054 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Söven"@de ; + foaf:focus wd:Q2380054 . + +nwbib-spatial:Q55936383 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Canstein"@de ; + foaf:focus wd:Q55936383 . + +nwbib-spatial:Q1871068 + a skos:Concept ; + skos:broader nwbib-spatial:Q50889 ; + skos:inScheme ; + skos:prefLabel "Lothe"@de ; + foaf:focus wd:Q1871068 . + +nwbib-spatial:Q32059172 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Hochfeld"@de ; + foaf:focus wd:Q32059172 . + +nwbib-spatial:Q1485554 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Hermesdorf"@de ; + foaf:focus wd:Q1485554 . + +nwbib-spatial:Q1337428 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Volkhoven/Weiler"@de ; + foaf:focus wd:Q1337428 . + +nwbib-spatial:Q1523373 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Giesendorf"@de ; + foaf:focus wd:Q1523373 . + +nwbib-spatial:Q862854 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Billig"@de ; + foaf:focus wd:Q862854 . + +nwbib-spatial:Q474482 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Ampen"@de ; + foaf:focus wd:Q474482 . + +nwbib-spatial:Q2148416 + a skos:Concept ; + skos:broader nwbib-spatial:Q12434 ; + skos:inScheme ; + skos:prefLabel "Rhöndorf"@de ; + foaf:focus wd:Q2148416 . + +nwbib-spatial:Q1380920 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Schöning"@de ; + foaf:focus wd:Q1380920 . + +nwbib-spatial:Q1250714 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Wellinghofen"@de ; + foaf:focus wd:Q1250714 . + +nwbib-spatial:Q1313398 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261667 ; + skos:inScheme ; + skos:prefLabel "Eiserfeld"@de ; + foaf:focus wd:Q1313398 . + +nwbib-spatial:Q2691247 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Ehrsen-Breden"@de ; + foaf:focus wd:Q2691247 . + +nwbib-spatial:Q59139867 + a skos:Concept ; + skos:broader nwbib-spatial:Q3069 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bottrop-Süd"@de ; + foaf:focus wd:Q59139867 . + +nwbib-spatial:Q5654 a skos:Concept ; + skos:broader nwbib-spatial:Q458126 ; + skos:inScheme ; + skos:prefLabel "Bickendorf"@de ; + foaf:focus wd:Q5654 . + +nwbib-spatial:Q1394198 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Falkendiek"@de ; + foaf:focus wd:Q1394198 . + +nwbib-spatial:Q1250629 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Groppenbruch"@de ; + foaf:focus wd:Q1250629 . + +nwbib-spatial:Q1232709 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Heckinghausen (Stadtbezirk)"@de ; + foaf:focus wd:Q1232709 . + +nwbib-spatial:Q1242103 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Donrath"@de ; + foaf:focus wd:Q1242103 . + +nwbib-spatial:Q1643237 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Vogelsmühle"@de ; + foaf:focus wd:Q1643237 . + +nwbib-spatial:Q1865555 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Littfeld"@de ; + foaf:focus wd:Q1865555 . + +nwbib-spatial:Q5569 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962028" ; + skos:prefLabel "Kierspe"@de ; + foaf:focus wd:Q5569 . + +nwbib-spatial:Q22691465 + a skos:Concept ; + skos:broader nwbib-spatial:Q8856 ; + skos:inScheme ; + skos:prefLabel "Brüxken"@de ; + foaf:focus wd:Q22691465 . + +nwbib-spatial:Q1601287 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Heisberg"@de ; + foaf:focus wd:Q1601287 . + +nwbib-spatial:Q2290569 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Sittardheide"@de ; + foaf:focus wd:Q2290569 . + +nwbib-spatial:Q835962 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Kleinbüllesheim"@de ; + foaf:focus wd:Q835962 . + +nwbib-spatial:Q2742 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05515" ; + skos:prefLabel "Münster"@de ; + foaf:focus wd:Q2742 . + +nwbib-spatial:Q1250687 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Renninghausen"@de ; + foaf:focus wd:Q1250687 . + +nwbib-spatial:Q6234 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05758" ; + skos:prefLabel "Kreis Herford"@de ; + foaf:focus wd:Q6234 . + +nwbib-spatial:Q1889160 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Manfort"@de ; + foaf:focus wd:Q1889160 . + +nwbib-spatial:Q1157899 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Dalheim"@de ; + foaf:focus wd:Q1157899 . + +nwbib-spatial:Q1586028 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Harperscheid"@de ; + foaf:focus wd:Q1586028 . + +nwbib-spatial:Q15052593 + a skos:Concept ; + skos:broader nwbib-spatial:Q10935 ; + skos:inScheme ; + skos:prefLabel "Cappenberg"@de ; + foaf:focus wd:Q15052593 . + +nwbib-spatial:Q6149 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974040" ; + skos:prefLabel "Soest"@de ; + foaf:focus wd:Q6149 . + +nwbib-spatial:Q1601351 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Heisterbacherrott"@de ; + foaf:focus wd:Q1601351 . + +nwbib-spatial:Q10712 a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Satzvey"@de ; + foaf:focus wd:Q10712 . + +nwbib-spatial:Q882560 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Wersten"@de ; + foaf:focus wd:Q882560 . + +nwbib-spatial:Q1987788 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Niedergaul"@de ; + foaf:focus wd:Q1987788 . + +nwbib-spatial:Q1616345 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Hetzerath"@de ; + foaf:focus wd:Q1616345 . + +nwbib-spatial:Q6292 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05362" ; + skos:prefLabel "Rhein-Erft-Kreis"@de ; + foaf:focus wd:Q6292 . + +nwbib-spatial:Q257023 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Elsen"@de ; + foaf:focus wd:Q257023 . + +nwbib-spatial:Q7923 a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:notation "057" ; + skos:prefLabel "Regierungsbezirk Detmold"@de ; + foaf:focus wd:Q7923 . + +nwbib-spatial:Q15056814 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Hünshoven"@de ; + foaf:focus wd:Q15056814 . + +nwbib-spatial:Q17558355 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326745 ; + skos:inScheme ; + skos:prefLabel "Jungferntal-Rahm"@de ; + foaf:focus wd:Q17558355 . + +nwbib-spatial:Q1787514 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Siegen (bis 1974)"@de ; + foaf:focus wd:Q1787514 . + +nwbib-spatial:Q56008058 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Grönebach"@de ; + foaf:focus wd:Q56008058 . + +nwbib-spatial:Q2548986 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Warburger Börde"@de ; + foaf:focus wd:Q2548986 . + +nwbib-spatial:Q2554478 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Wehnrath"@de ; + foaf:focus wd:Q2554478 . + +nwbib-spatial:Q1772435 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Weringhausen"@de ; + foaf:focus wd:Q1772435 . + +nwbib-spatial:Q1801610 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Lammersdorf"@de ; + foaf:focus wd:Q1801610 . + +nwbib-spatial:Q879066 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Morenhoven"@de ; + foaf:focus wd:Q879066 . + +nwbib-spatial:Q814659 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Beienbach"@de ; + foaf:focus wd:Q814659 . + +nwbib-spatial:Q1797750 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Upsprunge"@de ; + foaf:focus wd:Q1797750 . + +nwbib-spatial:Q1728485 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Kapellen"@de ; + foaf:focus wd:Q1728485 . + +nwbib-spatial:Q2105340 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Rövenich"@de ; + foaf:focus wd:Q2105340 . + +nwbib-spatial:Q432809 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Alstädten-Burbach"@de ; + foaf:focus wd:Q432809 . + +nwbib-spatial:Q12434 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382008" ; + skos:prefLabel "Bad Honnef"@de ; + foaf:focus wd:Q12434 . + +nwbib-spatial:Q178317 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Oberkassel"@de ; + foaf:focus wd:Q178317 . + +nwbib-spatial:Q1433123 + a skos:Concept ; + skos:broader nwbib-spatial:Q50889 ; + skos:inScheme ; + skos:prefLabel "Wöbbel"@de ; + foaf:focus wd:Q1433123 . + +nwbib-spatial:Q1444625 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Frankenforst"@de ; + foaf:focus wd:Q1444625 . + +nwbib-spatial:Q1673662 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Geldern (bis 1974)"@de ; + foaf:focus wd:Q1673662 . + +nwbib-spatial:Q797469 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Baal"@de ; + foaf:focus wd:Q797469 . + +nwbib-spatial:Q16064897 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Großendrescheid"@de ; + foaf:focus wd:Q16064897 . + +nwbib-spatial:Q2067436 + a skos:Concept ; + skos:broader nwbib-spatial:Q4171 ; + skos:inScheme ; + skos:prefLabel "Schiefbahn"@de ; + foaf:focus wd:Q2067436 . + +nwbib-spatial:Q245376 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378028" ; + skos:prefLabel "Rösrath"@de ; + foaf:focus wd:Q245376 . + +nwbib-spatial:Q1656583 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Reinshagen"@de ; + foaf:focus wd:Q1656583 . + +nwbib-spatial:Q1739726 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Kervendonk"@de ; + foaf:focus wd:Q1739726 . + +nwbib-spatial:Q19284594 + a skos:Concept ; + skos:broader nwbib-spatial:Q2834 ; + skos:inScheme ; + skos:prefLabel "Göttingen (Wadersloh)"@de ; + foaf:focus wd:Q19284594 . + +nwbib-spatial:Q2534487 + a skos:Concept ; + skos:broader nwbib-spatial:Q7088 ; + skos:inScheme ; + skos:prefLabel "Vorst"@de ; + foaf:focus wd:Q2534487 . + +nwbib-spatial:Q1988432 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261667 ; + skos:inScheme ; + skos:prefLabel "Niederschelden"@de ; + foaf:focus wd:Q1988432 . + +nwbib-spatial:Q1311410 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Fürstenau"@de ; + foaf:focus wd:Q1311410 . + +nwbib-spatial:Q1605363 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Hennen"@de ; + foaf:focus wd:Q1605363 . + +nwbib-spatial:Q1797097 + a skos:Concept ; + skos:broader nwbib-spatial:Q225774 ; + skos:inScheme ; + skos:prefLabel "Künsebeck"@de ; + foaf:focus wd:Q1797097 . + +nwbib-spatial:Q1514274 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Germete"@de ; + foaf:focus wd:Q1514274 . + +nwbib-spatial:Q1959107 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Mecklenbeck"@de ; + foaf:focus wd:Q1959107 . + +nwbib-spatial:Q21039875 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Delling"@de ; + foaf:focus wd:Q21039875 . + +nwbib-spatial:Q22691481 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Büemke"@de ; + foaf:focus wd:Q22691481 . + +nwbib-spatial:Q1618131 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Hilbeck"@de ; + foaf:focus wd:Q1618131 . + +nwbib-spatial:Q1504397 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Manrode"@de ; + foaf:focus wd:Q1504397 . + +nwbib-spatial:Q65182530 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Groin"@de ; + foaf:focus wd:Q65182530 . + +nwbib-spatial:Q153908 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Ostheim"@de ; + foaf:focus wd:Q153908 . + +nwbib-spatial:Q2543195 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Walpersdorf"@de ; + foaf:focus wd:Q2543195 . + +nwbib-spatial:Q859622 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Bigge"@de ; + foaf:focus wd:Q859622 . + +nwbib-spatial:Q151193 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Büsbach"@de ; + foaf:focus wd:Q151193 . + +nwbib-spatial:Q821904 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Berlingsen"@de ; + foaf:focus wd:Q821904 . + +nwbib-spatial:Q44229223 + a skos:Concept ; + skos:broader nwbib-spatial:Q14878 ; + skos:inScheme ; + skos:prefLabel "Metzkausen"@de ; + foaf:focus wd:Q44229223 . + +nwbib-spatial:Q675820 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Arloff"@de ; + foaf:focus wd:Q675820 . + +nwbib-spatial:Q56033764 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Lindental"@de ; + foaf:focus wd:Q56033764 . + +nwbib-spatial:Q1524914 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Ginderich"@de ; + foaf:focus wd:Q1524914 . + +nwbib-spatial:Q2259078 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Schönenberg"@de ; + foaf:focus wd:Q2259078 . + +nwbib-spatial:Q44291935 + a skos:Concept ; + skos:broader nwbib-spatial:Q200602 ; + skos:inScheme ; + skos:prefLabel "Heelden"@de ; + foaf:focus wd:Q44291935 . + +nwbib-spatial:Q18746973 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Ennepe"@de ; + foaf:focus wd:Q18746973 . + +nwbib-spatial:Q1250624 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Großholthausen"@de ; + foaf:focus wd:Q1250624 . + +nwbib-spatial:Q879507 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Lingen"@de ; + foaf:focus wd:Q879507 . + +nwbib-spatial:Q678079 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Pesch"@de ; + foaf:focus wd:Q678079 . + +nwbib-spatial:Q1377603 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Almena"@de ; + foaf:focus wd:Q1377603 . + +nwbib-spatial:Q1736872 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Katzem"@de ; + foaf:focus wd:Q1736872 . + +nwbib-spatial:Q1021730 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Bürvenich"@de ; + foaf:focus wd:Q1021730 . + +nwbib-spatial:Q1452079 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Frauwüllesheim"@de ; + foaf:focus wd:Q1452079 . + +nwbib-spatial:Q2268269 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Seligenthal"@de ; + foaf:focus wd:Q2268269 . + +nwbib-spatial:Q56117566 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Sankt Anton"@de ; + foaf:focus wd:Q56117566 . + +nwbib-spatial:Q1719793 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Uellendahl-Katernberg (Stadtbezirk)"@de ; + foaf:focus wd:Q1719793 . + +nwbib-spatial:Q2166611 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Rosbach"@de ; + foaf:focus wd:Q2166611 . + +nwbib-spatial:Q1304096 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Eilhausen"@de ; + foaf:focus wd:Q1304096 . + +nwbib-spatial:Q182018 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566048" ; + skos:prefLabel "Lotte"@de ; + foaf:focus wd:Q182018 . + +nwbib-spatial:Q1261376 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Harlinghausen"@de ; + foaf:focus wd:Q1261376 . + +nwbib-spatial:Q1250682 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326741 ; + skos:inScheme ; + skos:prefLabel "Neuasseln"@de ; + foaf:focus wd:Q1250682 . + +nwbib-spatial:Q56238742 + a skos:Concept ; + skos:broader nwbib-spatial:Q245579 ; + skos:inScheme ; + skos:prefLabel "Dürscheid"@de ; + foaf:focus wd:Q56238742 . + +nwbib-spatial:Q1157900 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Dalheim"@de ; + foaf:focus wd:Q1157900 . + +nwbib-spatial:Q20181706 + a skos:Concept ; + skos:broader nwbib-spatial:Q181541 ; + skos:inScheme ; + skos:prefLabel "Ostendorf"@de ; + foaf:focus wd:Q20181706 . + +nwbib-spatial:Q1959144 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Münsterbrock"@de ; + foaf:focus wd:Q1959144 . + +nwbib-spatial:Q1448695 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Spradow"@de ; + foaf:focus wd:Q1448695 . + +nwbib-spatial:Q124705 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Südstadt"@de ; + foaf:focus wd:Q124705 . + +nwbib-spatial:Q1250597 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Brünninghausen"@de ; + foaf:focus wd:Q1250597 . + +nwbib-spatial:Q2009449 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Oberembt"@de ; + foaf:focus wd:Q2009449 . + +nwbib-spatial:Q736029 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Nassau-Siegen (bis 1743)"@de ; + foaf:focus wd:Q736029 . + +nwbib-spatial:Q1805516 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Lankern"@de ; + foaf:focus wd:Q1805516 . + +nwbib-spatial:Q105455560 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Uedding"@de ; + foaf:focus wd:Q105455560 . + +nwbib-spatial:Q1719629 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138732 ; + skos:inScheme ; + skos:prefLabel "Sudbrack"@de ; + foaf:focus wd:Q1719629 . + +nwbib-spatial:Q2072911 + a skos:Concept ; + skos:broader nwbib-spatial:Q6219 ; + skos:inScheme ; + skos:prefLabel "Pesch"@de ; + foaf:focus wd:Q2072911 . + +nwbib-spatial:Q1396319 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Holtrup"@de ; + foaf:focus wd:Q1396319 . + +nwbib-spatial:Q1689273 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Schwerin"@de ; + foaf:focus wd:Q1689273 . + +nwbib-spatial:Q1778716 + a skos:Concept ; + skos:broader nwbib-spatial:Q242320 ; + skos:inScheme ; + skos:prefLabel "Kohlstädt"@de ; + foaf:focus wd:Q1778716 . + +nwbib-spatial:Q1986556 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Udenbreth"@de ; + foaf:focus wd:Q1986556 . + +nwbib-spatial:Q1450941 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Langenei"@de ; + foaf:focus wd:Q1450941 . + +nwbib-spatial:Q117595925 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Röckrath"@de ; + foaf:focus wd:Q117595925 . + +nwbib-spatial:Q1478782 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Mariaweiler"@de ; + foaf:focus wd:Q1478782 . + +nwbib-spatial:Q44172870 + a skos:Concept ; + skos:broader nwbib-spatial:Q2789 ; + skos:inScheme ; + skos:prefLabel "Raestrup"@de ; + foaf:focus wd:Q44172870 . + +nwbib-spatial:Q180248 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Wiedenbrück (bis 1972)"@de ; + foaf:focus wd:Q180248 . + +nwbib-spatial:Q1416060 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Medelon"@de ; + foaf:focus wd:Q1416060 . + +nwbib-spatial:Q737320 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Hoven"@de ; + foaf:focus wd:Q737320 . + +nwbib-spatial:Q1652396 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Hünsborn"@de ; + foaf:focus wd:Q1652396 . + +nwbib-spatial:Q908901 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Brenig"@de ; + foaf:focus wd:Q908901 . + +nwbib-spatial:Q818231 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Bentfeld"@de ; + foaf:focus wd:Q818231 . + +nwbib-spatial:Q1166824 + a skos:Concept ; + skos:broader nwbib-spatial:Q14939 ; + skos:inScheme ; + skos:prefLabel "Darup"@de ; + foaf:focus wd:Q1166824 . + +nwbib-spatial:Q1593198 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Heddinghausen"@de ; + foaf:focus wd:Q1593198 . + +nwbib-spatial:Q2382291 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Süsterseel"@de ; + foaf:focus wd:Q2382291 . + +nwbib-spatial:Q464473 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Eggegebirge"@de ; + foaf:focus wd:Q464473 . + +nwbib-spatial:Q572255 + a skos:Concept ; + skos:broader nwbib-spatial:N07 ; + skos:inScheme ; + skos:prefLabel "Euregio Maas-Rhein (Sitz: Eupen)"@de ; + foaf:focus wd:Q572255 . + +nwbib-spatial:Q1499815 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140398 ; + skos:inScheme ; + skos:prefLabel "Rotthausen"@de ; + foaf:focus wd:Q1499815 . + +nwbib-spatial:Q5999 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970024" ; + skos:prefLabel "Kreuztal"@de ; + foaf:focus wd:Q5999 . + +nwbib-spatial:Q1959038 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Mündelheim"@de ; + foaf:focus wd:Q1959038 . + +nwbib-spatial:Q2535566 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Vynen"@de ; + foaf:focus wd:Q2535566 . + +nwbib-spatial:Q257474 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Hagen"@de ; + foaf:focus wd:Q257474 . + +nwbib-spatial:Q1811312 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Lechenich"@de ; + foaf:focus wd:Q1811312 . + +nwbib-spatial:Q881699 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Vilich"@de ; + foaf:focus wd:Q881699 . + +nwbib-spatial:Q1000707 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Budberg"@de ; + foaf:focus wd:Q1000707 . + +nwbib-spatial:Q877774 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Rothe Erde"@de ; + foaf:focus wd:Q877774 . + +nwbib-spatial:Q2436975 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Titmaringhausen"@de ; + foaf:focus wd:Q2436975 . + +nwbib-spatial:Q1587685 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Hartum"@de ; + foaf:focus wd:Q1587685 . + +nwbib-spatial:Q681425 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Ronsdorf (Stadtbezirk)"@de ; + foaf:focus wd:Q681425 . + +nwbib-spatial:Q61790035 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Eppinghofen"@de ; + foaf:focus wd:Q61790035 . + +nwbib-spatial:Q1231010 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Marienburg"@de ; + foaf:focus wd:Q1231010 . + +nwbib-spatial:Q879040 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Bittingen"@de ; + foaf:focus wd:Q879040 . + +nwbib-spatial:Q2309080 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Alt-Spenrath"@de ; + foaf:focus wd:Q2309080 . + +nwbib-spatial:Q153903 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Dorff"@de ; + foaf:focus wd:Q153903 . + +nwbib-spatial:Q1281544 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Eckenhagen"@de ; + foaf:focus wd:Q1281544 . + +nwbib-spatial:Q1491133 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Gahlen"@de ; + foaf:focus wd:Q1491133 . + +nwbib-spatial:Q1265066 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Gilverath"@de ; + foaf:focus wd:Q1265066 . + +nwbib-spatial:Q1337333 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Fischenich"@de ; + foaf:focus wd:Q1337333 . + +nwbib-spatial:Q2567761 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Widdeshoven"@de ; + foaf:focus wd:Q2567761 . + +nwbib-spatial:Q759070 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Aue"@de ; + foaf:focus wd:Q759070 . + +nwbib-spatial:Q19371153 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Horst"@de ; + foaf:focus wd:Q19371153 . + +nwbib-spatial:Q1231466 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Hommerich"@de ; + foaf:focus wd:Q1231466 . + +nwbib-spatial:Q19687934 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573609 ; + skos:inScheme ; + skos:prefLabel "Pelkum"@de ; + foaf:focus wd:Q19687934 . + +nwbib-spatial:Q2421249 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Windrath"@de ; + foaf:focus wd:Q2421249 . + +nwbib-spatial:Q1787376 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Lennep (bis 1929)"@de ; + foaf:focus wd:Q1787376 . + +nwbib-spatial:Q253940 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382052" ; + skos:prefLabel "Ruppichteroth"@de ; + foaf:focus wd:Q253940 . + +nwbib-spatial:Q1592072 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Leckingsen"@de ; + foaf:focus wd:Q1592072 . + +nwbib-spatial:Q25158419 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Obercastrop"@de ; + foaf:focus wd:Q25158419 . + +nwbib-spatial:Q2565365 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Westheim"@de ; + foaf:focus wd:Q2565365 . + +nwbib-spatial:Q806001 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Bamenohl"@de ; + foaf:focus wd:Q806001 . + +nwbib-spatial:Q889209 + a skos:Concept ; + skos:broader nwbib-spatial:Q225334 ; + skos:inScheme ; + skos:prefLabel "Bockhorst"@de ; + foaf:focus wd:Q889209 . + +nwbib-spatial:Q2555187 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Weier"@de ; + foaf:focus wd:Q2555187 . + +nwbib-spatial:Q1389048 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Waldorf"@de ; + foaf:focus wd:Q1389048 . + +nwbib-spatial:Q1627290 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Honrath"@de ; + foaf:focus wd:Q1627290 . + +nwbib-spatial:Q1332110 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Röspe"@de ; + foaf:focus wd:Q1332110 . + +nwbib-spatial:Q2649349 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Allner"@de ; + foaf:focus wd:Q2649349 . + +nwbib-spatial:Q1806112 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Ottenhausen"@de ; + foaf:focus wd:Q1806112 . + +nwbib-spatial:Q1250592 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Bodelschwingh"@de ; + foaf:focus wd:Q1250592 . + +nwbib-spatial:Q19687913 + a skos:Concept ; + skos:broader nwbib-spatial:Q4192 ; + skos:inScheme ; + skos:prefLabel "Heil"@de ; + foaf:focus wd:Q19687913 . + +nwbib-spatial:Q1229445 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Distelkamp"@de ; + foaf:focus wd:Q1229445 . + +nwbib-spatial:Q973411 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Hohenhain"@de ; + foaf:focus wd:Q973411 . + +nwbib-spatial:Q1403770 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Westick"@de ; + foaf:focus wd:Q1403770 . + +nwbib-spatial:Q876022 + a skos:Concept ; + skos:broader nwbib-spatial:Q200018 ; + skos:inScheme ; + skos:prefLabel "Merode"@de ; + foaf:focus wd:Q876022 . + +nwbib-spatial:Q1959054 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Mündt"@de ; + foaf:focus wd:Q1959054 . + +nwbib-spatial:Q1415788 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Oberlar"@de ; + foaf:focus wd:Q1415788 . + +nwbib-spatial:Q1382462 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Evinghoven"@de ; + foaf:focus wd:Q1382462 . + +nwbib-spatial:Q1988294 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Niederndorf"@de ; + foaf:focus wd:Q1988294 . + +nwbib-spatial:Q1347645 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Epprath"@de ; + foaf:focus wd:Q1347645 . + +nwbib-spatial:Q257888 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Gerschede"@de ; + foaf:focus wd:Q257888 . + +nwbib-spatial:Q1526063 + a skos:Concept ; + skos:broader nwbib-spatial:Q242757 ; + skos:inScheme ; + skos:prefLabel "Helpup"@de ; + foaf:focus wd:Q1526063 . + +nwbib-spatial:Q1301094 + a skos:Concept ; + skos:broader nwbib-spatial:Q182753 ; + skos:inScheme ; + skos:prefLabel "Oberbauerschaft"@de ; + foaf:focus wd:Q1301094 . + +nwbib-spatial:Q1207790 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Dhünn"@de ; + foaf:focus wd:Q1207790 . + +nwbib-spatial:Q328928 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Moers"@de ; + foaf:focus wd:Q328928 . + +nwbib-spatial:Q814023 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Beeckerwerth"@de ; + foaf:focus wd:Q814023 . + +nwbib-spatial:Q43273980 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Schrievers"@de ; + foaf:focus wd:Q43273980 . + +nwbib-spatial:Q1921877 + a skos:Concept ; + skos:broader nwbib-spatial:Q12464 ; + skos:inScheme ; + skos:prefLabel "Merl"@de ; + foaf:focus wd:Q1921877 . + +nwbib-spatial:Q54803599 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk III (Essen)"@de ; + foaf:focus wd:Q54803599 . + +nwbib-spatial:Q1890294 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Manheim"@de ; + foaf:focus wd:Q1890294 . + +nwbib-spatial:Q1764291 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Stiefelhagen"@de ; + foaf:focus wd:Q1764291 . + +nwbib-spatial:Q47021915 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Essen"@de ; + foaf:focus wd:Q47021915 . + +nwbib-spatial:Q1569696 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Scheidingen"@de ; + foaf:focus wd:Q1569696 . + +nwbib-spatial:Q1625441 + a skos:Concept ; + skos:broader nwbib-spatial:Q7088 ; + skos:inScheme ; + skos:prefLabel "Holzbüttgen"@de ; + foaf:focus wd:Q1625441 . + +nwbib-spatial:Q2769174 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Bracht"@de ; + foaf:focus wd:Q2769174 . + +nwbib-spatial:Q1499810 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140331 ; + skos:inScheme ; + skos:prefLabel "Horst"@de ; + foaf:focus wd:Q1499810 . + +nwbib-spatial:Q243474 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154044" ; + skos:prefLabel "Rees"@de ; + foaf:focus wd:Q243474 . + +nwbib-spatial:Q29531445 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Meiersberg"@de ; + foaf:focus wd:Q29531445 . + +nwbib-spatial:Q551600 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 1 (Düsseldorf)"@de ; + foaf:focus wd:Q551600 . + +nwbib-spatial:Q47462205 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Lüdenscheid"@de ; + foaf:focus wd:Q47462205 . + +nwbib-spatial:Q225794 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754004" ; + skos:prefLabel "Borgholzhausen"@de ; + foaf:focus wd:Q225794 . + +nwbib-spatial:Q863291 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Bilme"@de ; + foaf:focus wd:Q863291 . + +nwbib-spatial:Q1821093 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Letmathe"@de ; + foaf:focus wd:Q1821093 . + +nwbib-spatial:Q166602 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Hassels"@de ; + foaf:focus wd:Q166602 . + +nwbib-spatial:Q19687950 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Vöckinghausen"@de ; + foaf:focus wd:Q19687950 . + +nwbib-spatial:Q2201799 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Saarn"@de ; + foaf:focus wd:Q2201799 . + +nwbib-spatial:Q1702213 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Siddessen"@de ; + foaf:focus wd:Q1702213 . + +nwbib-spatial:Q1562104 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Gürzenich"@de ; + foaf:focus wd:Q1562104 . + +nwbib-spatial:Q355921 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Adendorf"@de ; + foaf:focus wd:Q355921 . + +nwbib-spatial:Q1502416 + a skos:Concept ; + skos:broader nwbib-spatial:Q11340 ; + skos:inScheme ; + skos:prefLabel "Gennebreck"@de ; + foaf:focus wd:Q1502416 . + +nwbib-spatial:Q21042080 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Scherpenberg"@de ; + foaf:focus wd:Q21042080 . + +nwbib-spatial:Q1400126 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Federath"@de ; + foaf:focus wd:Q1400126 . + +nwbib-spatial:Q1271519 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Dössel"@de ; + foaf:focus wd:Q1271519 . + +nwbib-spatial:Q882757 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Silbach"@de ; + foaf:focus wd:Q882757 . + +nwbib-spatial:Q1258017 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Remlingrade"@de ; + foaf:focus wd:Q1258017 . + +nwbib-spatial:Q47462263 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Tecklenburg"@de ; + foaf:focus wd:Q47462263 . + +nwbib-spatial:Q1966840 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Natingen"@de ; + foaf:focus wd:Q1966840 . + +nwbib-spatial:Q925301 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Broich"@de ; + foaf:focus wd:Q925301 . + +nwbib-spatial:Q2035183 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Osterfeld"@de ; + foaf:focus wd:Q2035183 . + +nwbib-spatial:Q56476212 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Stachelhausen"@de ; + foaf:focus wd:Q56476212 . + +nwbib-spatial:Q59207767 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hiltrup"@de ; + foaf:focus wd:Q59207767 . + +nwbib-spatial:Q2151315 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Richterich (Stadtbezirk)"@de ; + foaf:focus wd:Q2151315 . + +nwbib-spatial:Q26208579 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Bergerfurth"@de ; + foaf:focus wd:Q26208579 . + +nwbib-spatial:Q1034822 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Cappel"@de ; + foaf:focus wd:Q1034822 . + +nwbib-spatial:Q2381500 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Südstadt"@de ; + foaf:focus wd:Q2381500 . + +nwbib-spatial:Q1237987 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Kirdorf"@de ; + foaf:focus wd:Q1237987 . + +nwbib-spatial:Q1262632 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Oberzier"@de ; + foaf:focus wd:Q1262632 . + +nwbib-spatial:Q1827422 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Lipp"@de ; + foaf:focus wd:Q1827422 . + +nwbib-spatial:Q1343543 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Verlar"@de ; + foaf:focus wd:Q1343543 . + +nwbib-spatial:Q180116 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Atteln"@de ; + foaf:focus wd:Q180116 . + +nwbib-spatial:Q1342942 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Engstfeld"@de ; + foaf:focus wd:Q1342942 . + +nwbib-spatial:Q1367005 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Eschendorf"@de ; + foaf:focus wd:Q1367005 . + +nwbib-spatial:Q1668485 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Kotten"@de ; + foaf:focus wd:Q1668485 . + +nwbib-spatial:Q925274 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Broich"@de ; + foaf:focus wd:Q925274 . + +nwbib-spatial:Q870633 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Altenbochum"@de ; + foaf:focus wd:Q870633 . + +nwbib-spatial:Q1458817 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Loope"@de ; + foaf:focus wd:Q1458817 . + +nwbib-spatial:Q18028242 + a skos:Concept ; + skos:broader nwbib-spatial:Q1503134 ; + skos:inScheme ; + skos:prefLabel "Sudmühle"@de ; + foaf:focus wd:Q18028242 . + +nwbib-spatial:Q11064 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974016" ; + skos:prefLabel "Erwitte"@de ; + foaf:focus wd:Q11064 . + +nwbib-spatial:Q10946 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970016" ; + skos:prefLabel "Freudenberg"@de ; + foaf:focus wd:Q10946 . + +nwbib-spatial:Q19962181 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Dellwig"@de ; + foaf:focus wd:Q19962181 . + +nwbib-spatial:Q253765 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Erzbistum Paderborn"@de ; + foaf:focus wd:Q253765 . + +nwbib-spatial:Q334676 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Üdingen"@de ; + foaf:focus wd:Q334676 . + +nwbib-spatial:Q1621880 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Hochheide"@de ; + foaf:focus wd:Q1621880 . + +nwbib-spatial:Q1003545 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Buldern"@de ; + foaf:focus wd:Q1003545 . + +nwbib-spatial:Q54189800 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Sasserath"@de ; + foaf:focus wd:Q54189800 . + +nwbib-spatial:Q882715 + a skos:Concept ; + skos:broader nwbib-spatial:Q3641512 ; + skos:inScheme ; + skos:prefLabel "Wiemelhausen"@de ; + foaf:focus wd:Q882715 . + +nwbib-spatial:Q1498514 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Gehlenbeck"@de ; + foaf:focus wd:Q1498514 . + +nwbib-spatial:Q1603875 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Niedermerz"@de ; + foaf:focus wd:Q1603875 . + +nwbib-spatial:Q1544859 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Grefrath"@de ; + foaf:focus wd:Q1544859 . + +nwbib-spatial:Q1948571 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Suttrop"@de ; + foaf:focus wd:Q1948571 . + +nwbib-spatial:Q2037367 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Ottbergen"@de ; + foaf:focus wd:Q2037367 . + +nwbib-spatial:Q242810 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766052" ; + skos:prefLabel "Lügde"@de ; + foaf:focus wd:Q242810 . + +nwbib-spatial:Q1187959 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Denklingen"@de ; + foaf:focus wd:Q1187959 . + +nwbib-spatial:Q15055964 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Elfringhausen"@de ; + foaf:focus wd:Q15055964 . + +nwbib-spatial:Q153765 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Dransdorf"@de ; + foaf:focus wd:Q153765 . + +nwbib-spatial:Q54803600 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk IV (Essen)"@de ; + foaf:focus wd:Q54803600 . + +nwbib-spatial:Q1209932 + a skos:Concept ; + skos:broader nwbib-spatial:Q4175 ; + skos:inScheme ; + skos:prefLabel "Dickenberg"@de ; + foaf:focus wd:Q1209932 . + +nwbib-spatial:Q886350 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Blumroth"@de ; + foaf:focus wd:Q886350 . + +nwbib-spatial:Q2252473 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Schwaam"@de ; + foaf:focus wd:Q2252473 . + +nwbib-spatial:Q11043 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374048" ; + skos:prefLabel "Wiehl"@de ; + foaf:focus wd:Q11043 . + +nwbib-spatial:Q1525372 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Nievenheim"@de ; + foaf:focus wd:Q1525372 . + +nwbib-spatial:Q15992010 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Oberrahmede"@de ; + foaf:focus wd:Q15992010 . + +nwbib-spatial:Q2301800 + a skos:Concept ; + skos:broader nwbib-spatial:Q242953 ; + skos:inScheme ; + skos:prefLabel "Sonneborn"@de ; + foaf:focus wd:Q2301800 . + +nwbib-spatial:Q1625208 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1625208 . + +nwbib-spatial:Q153203 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Gressenich"@de ; + foaf:focus wd:Q153203 . + +nwbib-spatial:Q161729 + a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158036" ; + skos:prefLabel "Wülfrath"@de ; + foaf:focus wd:Q161729 . + +nwbib-spatial:Q1557059 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Gut Unterdickt"@de ; + foaf:focus wd:Q1557059 . + +nwbib-spatial:Q153197 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Kohlbusch"@de ; + foaf:focus wd:Q153197 . + +nwbib-spatial:Q1632070 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Hoxfeld"@de ; + foaf:focus wd:Q1632070 . + +nwbib-spatial:Q894132 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Borr / Scheuren"@de ; + foaf:focus wd:Q894132 . + +nwbib-spatial:Q1307269 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Sankt Vit"@de ; + foaf:focus wd:Q1307269 . + +nwbib-spatial:Q1564808 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Meinkenbracht"@de ; + foaf:focus wd:Q1564808 . + +nwbib-spatial:Q1626493 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Windheim"@de ; + foaf:focus wd:Q1626493 . + +nwbib-spatial:Q1551074 + a skos:Concept ; + skos:broader nwbib-spatial:Q323607 ; + skos:inScheme ; + skos:prefLabel "Heerdt"@de ; + foaf:focus wd:Q1551074 . + +nwbib-spatial:Q1727374 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Lössel"@de ; + foaf:focus wd:Q1727374 . + +nwbib-spatial:Q2133651 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Ravensberger Land"@de ; + foaf:focus wd:Q2133651 . + +nwbib-spatial:Q1496176 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Rhade"@de ; + foaf:focus wd:Q1496176 . + +nwbib-spatial:Q1240042 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Rossel"@de ; + foaf:focus wd:Q1240042 . + +nwbib-spatial:Q1246869 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Köttingen"@de ; + foaf:focus wd:Q1246869 . + +nwbib-spatial:N18 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "18" ; + skos:prefLabel "Wittgensteiner Land"@de ; + foaf:focus wd:Q881875 . + +nwbib-spatial:Q26220308 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Wittenberg"@de ; + foaf:focus wd:Q26220308 . + +nwbib-spatial:Q441894 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Altkalkar"@de ; + foaf:focus wd:Q441894 . + +nwbib-spatial:Q10898 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966024" ; + skos:prefLabel "Olpe"@de ; + foaf:focus wd:Q10898 . + +nwbib-spatial:Q400551 + a skos:Concept ; + skos:broader nwbib-spatial:Q182753 ; + skos:inScheme ; + skos:prefLabel "Ahlsen-Reineberg"@de ; + foaf:focus wd:Q400551 . + +nwbib-spatial:Q1368646 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Schuir"@de ; + foaf:focus wd:Q1368646 . + +nwbib-spatial:Q1438863 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Kliedbruch"@de ; + foaf:focus wd:Q1438863 . + +nwbib-spatial:Q257215 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Altendorf"@de ; + foaf:focus wd:Q257215 . + +nwbib-spatial:Q2009312 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Oberdrees"@de ; + foaf:focus wd:Q2009312 . + +nwbib-spatial:Q1478496 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Fußhollen"@de ; + foaf:focus wd:Q1478496 . + +nwbib-spatial:Q1621127 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Hitdorf"@de ; + foaf:focus wd:Q1621127 . + +nwbib-spatial:Q1262478 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Rheinheim"@de ; + foaf:focus wd:Q1262478 . + +nwbib-spatial:Q1660062 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Immigrath"@de ; + foaf:focus wd:Q1660062 . + +nwbib-spatial:Q891761 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Bombach"@de ; + foaf:focus wd:Q891761 . + +nwbib-spatial:Q15715243 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Kaßlerfeld"@de ; + foaf:focus wd:Q15715243 . + +nwbib-spatial:Q14937 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558036" ; + skos:prefLabel "Olfen"@de ; + foaf:focus wd:Q14937 . + +nwbib-spatial:N76 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "76" ; + skos:prefLabel "Königreich Westfalen"@de ; + foaf:focus wd:Q153943 . + +nwbib-spatial:Q865412 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Birgte"@de ; + foaf:focus wd:Q865412 . + +nwbib-spatial:Q19279172 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Ennest"@de ; + foaf:focus wd:Q19279172 . + +nwbib-spatial:Q2541039 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Wald"@de ; + foaf:focus wd:Q2541039 . + +nwbib-spatial:Q448824 + a skos:Concept ; + skos:broader nwbib-spatial:Q2809 ; + skos:inScheme ; + skos:prefLabel "Alverskirchen"@de ; + foaf:focus wd:Q448824 . + +nwbib-spatial:Q1670480 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Lützerath (bis 2023)"@de ; + foaf:focus wd:Q1670480 . + +nwbib-spatial:Q1501157 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Schöller-Dornap"@de ; + foaf:focus wd:Q1501157 . + +nwbib-spatial:Q1645841 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Sellmecke"@de ; + foaf:focus wd:Q1645841 . + +nwbib-spatial:Q457468 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Rietberg (bis 1807)"@de ; + foaf:focus wd:Q457468 . + +nwbib-spatial:Q1300844 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Ehringhausen"@de ; + foaf:focus wd:Q1300844 . + +nwbib-spatial:Q1350655 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Ergste"@de ; + foaf:focus wd:Q1350655 . + +nwbib-spatial:Q1367000 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Eschenbruch"@de ; + foaf:focus wd:Q1367000 . + +nwbib-spatial:Q323588 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 5 (Düsseldorf)"@de ; + foaf:focus wd:Q323588 . + +nwbib-spatial:Q2971 a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774032" ; + skos:prefLabel "Paderborn"@de ; + foaf:focus wd:Q2971 . + +nwbib-spatial:Q109773 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Teutoburger Wald"@de ; + foaf:focus wd:Q109773 . + +nwbib-spatial:Q1368625 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Fulerum"@de ; + foaf:focus wd:Q1368625 . + +nwbib-spatial:Q1026604 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Calenberg"@de ; + foaf:focus wd:Q1026604 . + +nwbib-spatial:Q876829 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Geislar"@de ; + foaf:focus wd:Q876829 . + +nwbib-spatial:Q630083 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138211 ; + skos:inScheme ; + skos:prefLabel "Brackwede"@de ; + foaf:focus wd:Q630083 . + +nwbib-spatial:Q817259 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Benhausen"@de ; + foaf:focus wd:Q817259 . + +nwbib-spatial:Q26696030 + a skos:Concept ; + skos:broader nwbib-spatial:Q314660 ; + skos:inScheme ; + skos:prefLabel "Hüsten"@de ; + foaf:focus wd:Q26696030 . + +nwbib-spatial:Q2554251 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Wegeringhausen"@de ; + foaf:focus wd:Q2554251 . + +nwbib-spatial:Q2239953 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Ahausen"@de ; + foaf:focus wd:Q2239953 . + +nwbib-spatial:Q2380724 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Südfelde"@de ; + foaf:focus wd:Q2380724 . + +nwbib-spatial:Q1784044 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Oberense"@de ; + foaf:focus wd:Q1784044 . + +nwbib-spatial:Q2163933 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Rolfzen"@de ; + foaf:focus wd:Q2163933 . + +nwbib-spatial:Q10941 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978016" ; + skos:prefLabel "Holzwickede"@de ; + foaf:focus wd:Q10941 . + +nwbib-spatial:Q478018 + a skos:Concept ; + skos:broader nwbib-spatial:Q225002 ; + skos:inScheme ; + skos:prefLabel "Amshausen"@de ; + foaf:focus wd:Q478018 . + +nwbib-spatial:Q7666409 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Söntgerath"@de ; + foaf:focus wd:Q7666409 . + +nwbib-spatial:Q50374993 + a skos:Concept ; + skos:broader nwbib-spatial:Q32750 ; + skos:inScheme ; + skos:prefLabel "Arrode"@de ; + foaf:focus wd:Q50374993 . + +nwbib-spatial:Q2097533 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Pixwaag"@de ; + foaf:focus wd:Q2097533 . + +nwbib-spatial:Q1556957 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Gut Hospelt"@de ; + foaf:focus wd:Q1556957 . + +nwbib-spatial:Q1989283 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Nierfeld"@de ; + foaf:focus wd:Q1989283 . + +nwbib-spatial:Q1709509 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Engar"@de ; + foaf:focus wd:Q1709509 . + +nwbib-spatial:Q1816286 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Leitmar"@de ; + foaf:focus wd:Q1816286 . + +nwbib-spatial:Q3949 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978036" ; + skos:prefLabel "Unna"@de ; + foaf:focus wd:Q3949 . + +nwbib-spatial:Q2363162 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Suderwich"@de ; + foaf:focus wd:Q2363162 . + +nwbib-spatial:Q2541161 + a skos:Concept ; + skos:broader nwbib-spatial:Q11323 ; + skos:inScheme ; + skos:prefLabel "Waldbauer"@de ; + foaf:focus wd:Q2541161 . + +nwbib-spatial:Q1541878 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Grafwegen"@de ; + foaf:focus wd:Q1541878 . + +nwbib-spatial:Q1787260 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Duisburg (bis 1874)"@de ; + foaf:focus wd:Q1787260 . + +nwbib-spatial:Q1897900 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Marienloh"@de ; + foaf:focus wd:Q1897900 . + +nwbib-spatial:Q182857 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770028" ; + skos:prefLabel "Petershagen"@de ; + foaf:focus wd:Q182857 . + +nwbib-spatial:Q2582726 + a skos:Concept ; + skos:broader nwbib-spatial:Q6136 ; + skos:inScheme ; + skos:prefLabel "Wimbern"@de ; + foaf:focus wd:Q2582726 . + +nwbib-spatial:Q151306 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Münsterbusch"@de ; + foaf:focus wd:Q151306 . + +nwbib-spatial:Q15115491 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Imbach"@de ; + foaf:focus wd:Q15115491 . + +nwbib-spatial:Q1341121 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Grönebach"@de ; + foaf:focus wd:Q1341121 . + +nwbib-spatial:N34 a skos:Concept ; + skos:broader nwbib-spatial:N3 ; + skos:inScheme ; + skos:notation "34" ; + skos:prefLabel "Lippische Landeskirche"@de ; + foaf:focus wd:Q1413205 . + +nwbib-spatial:Q1879111 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139024 ; + skos:inScheme ; + skos:prefLabel "Lämershagen-Gräfinghagen"@de ; + foaf:focus wd:Q1879111 . + +nwbib-spatial:Q112078933 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573609 ; + skos:inScheme ; + skos:prefLabel "Lohauserholz"@de ; + foaf:focus wd:Q112078933 . + +nwbib-spatial:Q1880510 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Lützenkirchen"@de ; + foaf:focus wd:Q1880510 . + +nwbib-spatial:Q55587066 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Brüllingsen"@de ; + foaf:focus wd:Q55587066 . + +nwbib-spatial:Q1577024 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Niederwipper"@de ; + foaf:focus wd:Q1577024 . + +nwbib-spatial:Q16831816 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Hervest"@de ; + foaf:focus wd:Q16831816 . + +nwbib-spatial:Q200059 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358048" ; + skos:prefLabel "Niederzier"@de ; + foaf:focus wd:Q200059 . + +nwbib-spatial:Q2473775 + a skos:Concept ; + skos:broader nwbib-spatial:Q4175 ; + skos:inScheme ; + skos:prefLabel "Uffeln"@de ; + foaf:focus wd:Q2473775 . + +nwbib-spatial:Q45743228 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Kleinkönigsdorf"@de ; + foaf:focus wd:Q45743228 . + +nwbib-spatial:Q1604848 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Hemmerich"@de ; + foaf:focus wd:Q1604848 . + +nwbib-spatial:Q547 a skos:Concept ; + skos:broader nwbib-spatial:Q254774 ; + skos:inScheme ; + skos:prefLabel "Witterschlick"@de ; + foaf:focus wd:Q547 . + +nwbib-spatial:Q14953 a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766040" ; + skos:prefLabel "Lage"@de ; + foaf:focus wd:Q14953 . + +nwbib-spatial:Q181609 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566040" ; + skos:prefLabel "Lengerich"@de ; + foaf:focus wd:Q181609 . + +nwbib-spatial:Q1625261 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Holtwick"@de ; + foaf:focus wd:Q1625261 . + +nwbib-spatial:Q1959336 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Müssen"@de ; + foaf:focus wd:Q1959336 . + +nwbib-spatial:Q1586215 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Helminghausen"@de ; + foaf:focus wd:Q1586215 . + +nwbib-spatial:Q45315764 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Ickten"@de ; + foaf:focus wd:Q45315764 . + +nwbib-spatial:N13 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "13" ; + skos:prefLabel "Ostwestfalen"@de ; + foaf:focus wd:Q2036208 . + +nwbib-spatial:Q19834455 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Altenbögge-Bönen"@de ; + foaf:focus wd:Q19834455 . + +nwbib-spatial:Q15830483 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Poppelsdorf"@de ; + foaf:focus wd:Q15830483 . + +nwbib-spatial:Q2037882 + a skos:Concept ; + skos:broader nwbib-spatial:Q14926 ; + skos:inScheme ; + skos:prefLabel "Ottmarsbocholt"@de ; + foaf:focus wd:Q2037882 . + +nwbib-spatial:Q10893 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966020" ; + skos:prefLabel "Lennestadt"@de ; + foaf:focus wd:Q10893 . + +nwbib-spatial:Q1469698 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Froitzheim"@de ; + foaf:focus wd:Q1469698 . + +nwbib-spatial:Q1926480 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Meßlingen"@de ; + foaf:focus wd:Q1926480 . + +nwbib-spatial:Q1610103 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Hülm"@de ; + foaf:focus wd:Q1610103 . + +nwbib-spatial:Q1385249 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Sindorf"@de ; + foaf:focus wd:Q1385249 . + +nwbib-spatial:Q1109189 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Quadrath-Ichendorf"@de ; + foaf:focus wd:Q1109189 . + +nwbib-spatial:Q2564457 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Westbarthausen"@de ; + foaf:focus wd:Q2564457 . + +nwbib-spatial:Q748446 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Asterlagen"@de ; + foaf:focus wd:Q748446 . + +nwbib-spatial:Q389803 + a skos:Concept ; + skos:broader nwbib-spatial:Q446870 ; + skos:inScheme ; + skos:prefLabel "Neubrück"@de ; + foaf:focus wd:Q389803 . + +nwbib-spatial:Q4083 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334012" ; + skos:prefLabel "Eschweiler"@de ; + foaf:focus wd:Q4083 . + +nwbib-spatial:Q1978678 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Nettelstädt"@de ; + foaf:focus wd:Q1978678 . + +nwbib-spatial:Q1625155 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Holsterhausen"@de ; + foaf:focus wd:Q1625155 . + +nwbib-spatial:Q1263536 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Duckweiler"@de ; + foaf:focus wd:Q1263536 . + +nwbib-spatial:Q910042 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Brenzingen"@de ; + foaf:focus wd:Q910042 . + +nwbib-spatial:Q1706066 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Lohe"@de ; + foaf:focus wd:Q1706066 . + +nwbib-spatial:Q1368620 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Byfang"@de ; + foaf:focus wd:Q1368620 . + +nwbib-spatial:Q1811498 + a skos:Concept ; + skos:broader nwbib-spatial:Q181745 ; + skos:inScheme ; + skos:prefLabel "Ledde"@de ; + foaf:focus wd:Q1811498 . + +nwbib-spatial:Q163425 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Ückesdorf"@de ; + foaf:focus wd:Q163425 . + +nwbib-spatial:Q1300754 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Ehreshoven"@de ; + foaf:focus wd:Q1300754 . + +nwbib-spatial:Q1442978 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Lerbeck"@de ; + foaf:focus wd:Q1442978 . + +nwbib-spatial:Q2351473 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Stommelerbusch"@de ; + foaf:focus wd:Q2351473 . + +nwbib-spatial:Q1770852 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Lintorf"@de ; + foaf:focus wd:Q1770852 . + +nwbib-spatial:Q151322 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Orr"@de ; + foaf:focus wd:Q151322 . + +nwbib-spatial:Q322420 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Ollheim"@de ; + foaf:focus wd:Q322420 . + +nwbib-spatial:Q2197261 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Warbeyen"@de ; + foaf:focus wd:Q2197261 . + +nwbib-spatial:Q1545933 + a skos:Concept ; + skos:broader nwbib-spatial:Q242385 ; + skos:inScheme ; + skos:prefLabel "Greste"@de ; + foaf:focus wd:Q1545933 . + +nwbib-spatial:Q59140275 + a skos:Concept ; + skos:broader nwbib-spatial:Q2765 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gelsenkirchen-Mitte"@de ; + foaf:focus wd:Q59140275 . + +nwbib-spatial:Q1392090 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Fahlenscheid"@de ; + foaf:focus wd:Q1392090 . + +nwbib-spatial:Q44182566 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Hardehausen"@de ; + foaf:focus wd:Q44182566 . + +nwbib-spatial:Q1661576 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Oberrödinghausen"@de ; + foaf:focus wd:Q1661576 . + +nwbib-spatial:Q872196 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Kallenhardt"@de ; + foaf:focus wd:Q872196 . + +nwbib-spatial:Q1017296 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Buschbell"@de ; + foaf:focus wd:Q1017296 . + +nwbib-spatial:Q818460 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Benzelrath"@de ; + foaf:focus wd:Q818460 . + +nwbib-spatial:Q1513775 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Gerlingsen"@de ; + foaf:focus wd:Q1513775 . + +nwbib-spatial:Q16086 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170032" ; + skos:prefLabel "Rheinberg"@de ; + foaf:focus wd:Q16086 . + +nwbib-spatial:Q245542 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378012" ; + skos:prefLabel "Kürten"@de ; + foaf:focus wd:Q245542 . + +nwbib-spatial:Q1806507 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Lasbeck"@de ; + foaf:focus wd:Q1806507 . + +nwbib-spatial:Q2245902 + a skos:Concept ; + skos:broader nwbib-spatial:Q14917 ; + skos:inScheme ; + skos:prefLabel "Schmedehausen"@de ; + foaf:focus wd:Q2245902 . + +nwbib-spatial:Q2536402 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Völlinghausen"@de ; + foaf:focus wd:Q2536402 . + +nwbib-spatial:Q151295 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Vicht"@de ; + foaf:focus wd:Q151295 . + +nwbib-spatial:Q817148 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Benfe"@de ; + foaf:focus wd:Q817148 . + +nwbib-spatial:Q14884 a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370020" ; + skos:prefLabel "Hückelhoven"@de ; + foaf:focus wd:Q14884 . + +nwbib-spatial:Q1245653 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Dornbusch"@de ; + foaf:focus wd:Q1245653 . + +nwbib-spatial:Q1934396 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Milchenbach"@de ; + foaf:focus wd:Q1934396 . + +nwbib-spatial:Q871033 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Dehme"@de ; + foaf:focus wd:Q871033 . + +nwbib-spatial:Q48223 a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Diestelbruch"@de ; + foaf:focus wd:Q48223 . + +nwbib-spatial:Q47462041 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Bielefeld"@de ; + foaf:focus wd:Q47462041 . + +nwbib-spatial:Q1812057 + a skos:Concept ; + skos:broader nwbib-spatial:Q181745 ; + skos:inScheme ; + skos:prefLabel "Leeden"@de ; + foaf:focus wd:Q1812057 . + +nwbib-spatial:Q2549079 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Warden"@de ; + foaf:focus wd:Q2549079 . + +nwbib-spatial:Q1157455 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Dahlhausen"@de ; + foaf:focus wd:Q1157455 . + +nwbib-spatial:Q1242115 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Donsbrüggen"@de ; + foaf:focus wd:Q1242115 . + +nwbib-spatial:Q1342173 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Engelsdorf (Aldenhoven)"@de ; + foaf:focus wd:Q1342173 . + +nwbib-spatial:Q1261080 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Eilversen"@de ; + foaf:focus wd:Q1261080 . + +nwbib-spatial:Q64739586 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Beverau"@de ; + foaf:focus wd:Q64739586 . + +nwbib-spatial:Q915117 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Brienen"@de ; + foaf:focus wd:Q915117 . + +nwbib-spatial:Q59241193 + a skos:Concept ; + skos:broader nwbib-spatial:Q2871 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hohenlimburg"@de ; + foaf:focus wd:Q59241193 . + +nwbib-spatial:Q14863 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758024" ; + skos:prefLabel "Löhne"@de ; + foaf:focus wd:Q14863 . + +nwbib-spatial:Q1469067 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Sythen"@de ; + foaf:focus wd:Q1469067 . + +nwbib-spatial:Q883741 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Niehl"@de ; + foaf:focus wd:Q883741 . + +nwbib-spatial:Q1534383 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Gohr"@de ; + foaf:focus wd:Q1534383 . + +nwbib-spatial:Q1250705 + a skos:Concept ; + skos:broader nwbib-spatial:Q1168004 ; + skos:inScheme ; + skos:prefLabel "Sölde"@de ; + foaf:focus wd:Q1250705 . + +nwbib-spatial:Q1250699 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Somborn"@de ; + foaf:focus wd:Q1250699 . + +nwbib-spatial:Q1632288 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Alhausen"@de ; + foaf:focus wd:Q1632288 . + +nwbib-spatial:Q1746830 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Kleinhau"@de ; + foaf:focus wd:Q1746830 . + +nwbib-spatial:Q6246 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05154" ; + skos:prefLabel "Kreis Kleve"@de ; + foaf:focus wd:Q6246 . + +nwbib-spatial:Q3902 a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166032" ; + skos:prefLabel "Viersen"@de ; + foaf:focus wd:Q3902 . + +nwbib-spatial:Q53901 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758008" ; + skos:prefLabel "Enger"@de ; + foaf:focus wd:Q53901 . + +nwbib-spatial:Q44052318 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Liedern"@de ; + foaf:focus wd:Q44052318 . + +nwbib-spatial:Q646087 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973016 ; + skos:inScheme ; + skos:prefLabel "Dahlhausen"@de ; + foaf:focus wd:Q646087 . + +nwbib-spatial:Q1245547 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Dorn"@de ; + foaf:focus wd:Q1245547 . + +nwbib-spatial:Q1736953 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Katzvey"@de ; + foaf:focus wd:Q1736953 . + +nwbib-spatial:Q56084804 + a skos:Concept ; + skos:broader nwbib-spatial:Q243337 ; + skos:inScheme ; + skos:prefLabel "Niederwald"@de ; + foaf:focus wd:Q56084804 . + +nwbib-spatial:Q47022310 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Moers"@de ; + foaf:focus wd:Q47022310 . + +nwbib-spatial:Q5645 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958024" ; + skos:prefLabel "Marsberg"@de ; + foaf:focus wd:Q5645 . + +nwbib-spatial:Q16218976 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Mühlenrahmede"@de ; + foaf:focus wd:Q16218976 . + +nwbib-spatial:Q1747972 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Raumland"@de ; + foaf:focus wd:Q1747972 . + +nwbib-spatial:Q1376600 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Giershagen"@de ; + foaf:focus wd:Q1376600 . + +nwbib-spatial:Q1297432 + a skos:Concept ; + skos:broader nwbib-spatial:Q225774 ; + skos:inScheme ; + skos:prefLabel "Eggeberg"@de ; + foaf:focus wd:Q1297432 . + +nwbib-spatial:Q19965816 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Strickherdicke"@de ; + foaf:focus wd:Q19965816 . + +nwbib-spatial:Q1723140 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Düren"@de ; + foaf:focus wd:Q1723140 . + +nwbib-spatial:Q621763 + a skos:Concept ; + skos:broader nwbib-spatial:Q161729 ; + skos:inScheme ; + skos:prefLabel "Aprath"@de ; + foaf:focus wd:Q621763 . + +nwbib-spatial:Q1523343 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Giescheid"@de ; + foaf:focus wd:Q1523343 . + +nwbib-spatial:Q893892 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Borlinghausen"@de ; + foaf:focus wd:Q893892 . + +nwbib-spatial:Q1948206 + a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:prefLabel "Morken-Harff"@de ; + foaf:focus wd:Q1948206 . + +nwbib-spatial:Q2107 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05124" ; + skos:prefLabel "Wuppertal"@de ; + foaf:focus wd:Q2107 . + +nwbib-spatial:Q878419 + a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:prefLabel "Kreis Ahaus (bis 1974)"@de ; + foaf:focus wd:Q878419 . + +nwbib-spatial:Q815983 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Bellinghoven"@de ; + foaf:focus wd:Q815983 . + +nwbib-spatial:Q326326 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Brokhausen"@de ; + foaf:focus wd:Q326326 . + +nwbib-spatial:Q1250678 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Nette"@de ; + foaf:focus wd:Q1250678 . + +nwbib-spatial:Q2259764 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Schüllar"@de ; + foaf:focus wd:Q2259764 . + +nwbib-spatial:Q1609702 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Herdringen"@de ; + foaf:focus wd:Q1609702 . + +nwbib-spatial:Q472141 + a skos:Concept ; + skos:broader nwbib-spatial:Q323826 ; + skos:inScheme ; + skos:prefLabel "Gerresheim"@de ; + foaf:focus wd:Q472141 . + +nwbib-spatial:Q1275993 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Mülldorf"@de ; + foaf:focus wd:Q1275993 . + +nwbib-spatial:Q1281184 + a skos:Concept ; + skos:broader nwbib-spatial:Q6136 ; + skos:inScheme ; + skos:prefLabel "Echthausen"@de ; + foaf:focus wd:Q1281184 . + +nwbib-spatial:Q2232281 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Scheel"@de ; + foaf:focus wd:Q2232281 . + +nwbib-spatial:Q1739823 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Kessenich"@de ; + foaf:focus wd:Q1739823 . + +nwbib-spatial:Q1452282 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Wörderfeld"@de ; + foaf:focus wd:Q1452282 . + +nwbib-spatial:Q884294 + a skos:Concept ; + skos:broader nwbib-spatial:Q6219 ; + skos:inScheme ; + skos:prefLabel "Marmagen"@de ; + foaf:focus wd:Q884294 . + +nwbib-spatial:Q1958682 + a skos:Concept ; + skos:broader nwbib-spatial:Q163772 ; + skos:inScheme ; + skos:prefLabel "Mülhausen"@de ; + foaf:focus wd:Q1958682 . + +nwbib-spatial:Q1786904 + a skos:Concept ; + skos:broader nwbib-spatial:Q151287 ; + skos:inScheme ; + skos:prefLabel "Krauthausen"@de ; + foaf:focus wd:Q1786904 . + +nwbib-spatial:Q1589053 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Hattropholsen"@de ; + foaf:focus wd:Q1589053 . + +nwbib-spatial:Q432964 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Alt-Oberhausen"@de ; + foaf:focus wd:Q432964 . + +nwbib-spatial:Q810760 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Batenhorst"@de ; + foaf:focus wd:Q810760 . + +nwbib-spatial:Q47443308 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Reichsherrschaft Homburg (bis 1806)"@de ; + foaf:focus wd:Q1934754 . + +nwbib-spatial:Q2010510 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Oberndorf (Bad Laasphe)"@de ; + foaf:focus wd:Q2010510 . + +nwbib-spatial:Q19277079 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Cappel"@de ; + foaf:focus wd:Q19277079 . + +nwbib-spatial:Q1630503 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Rupperath"@de ; + foaf:focus wd:Q1630503 . + +nwbib-spatial:Q1250657 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Lanstrop"@de ; + foaf:focus wd:Q1250657 . + +nwbib-spatial:Q1513770 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Gerlingen"@de ; + foaf:focus wd:Q1513770 . + +nwbib-spatial:Q818227 + a skos:Concept ; + skos:broader nwbib-spatial:Q225055 ; + skos:inScheme ; + skos:prefLabel "Benteler"@de ; + foaf:focus wd:Q818227 . + +nwbib-spatial:Q1625527 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Holzhausen"@de ; + foaf:focus wd:Q1625527 . + +nwbib-spatial:Q1438577 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Strempt"@de ; + foaf:focus wd:Q1438577 . + +nwbib-spatial:Q17679522 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Kurl-Husen"@de ; + foaf:focus wd:Q17679522 . + +nwbib-spatial:Q2456479 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261814 ; + skos:inScheme ; + skos:prefLabel "Trupbach"@de ; + foaf:focus wd:Q2456479 . + +nwbib-spatial:Q1242046 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Donop"@de ; + foaf:focus wd:Q1242046 . + +nwbib-spatial:Q2128453 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Klein-Netterden"@de ; + foaf:focus wd:Q2128453 . + +nwbib-spatial:Q1787563 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Warburg (bis 1974)"@de ; + foaf:focus wd:Q1787563 . + +nwbib-spatial:Q65388 a skos:Concept ; + skos:broader nwbib-spatial:Q450087 ; + skos:inScheme ; + skos:prefLabel "Hardthöhe"@de ; + foaf:focus wd:Q65388 . + +nwbib-spatial:Q59138732 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Schildesche"@de ; + foaf:focus wd:Q59138732 . + +nwbib-spatial:Q1333858 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Elsoff"@de ; + foaf:focus wd:Q1333858 . + +nwbib-spatial:Q1570318 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Halberg"@de ; + foaf:focus wd:Q1570318 . + +nwbib-spatial:Q1805008 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Langenbroich"@de ; + foaf:focus wd:Q1805008 . + +nwbib-spatial:Q466759 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Schenkenschanz"@de ; + foaf:focus wd:Q466759 . + +nwbib-spatial:Q1157450 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Dahlhaus"@de ; + foaf:focus wd:Q1157450 . + +nwbib-spatial:Q1271833 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Dünne"@de ; + foaf:focus wd:Q1271833 . + +nwbib-spatial:Q1250636 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326745 ; + skos:inScheme ; + skos:prefLabel "Huckarde"@de ; + foaf:focus wd:Q1250636 . + +nwbib-spatial:Q909620 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Brenschede"@de ; + foaf:focus wd:Q909620 . + +nwbib-spatial:Q162771 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170028" ; + skos:prefLabel "Neukirchen-Vluyn"@de ; + foaf:focus wd:Q162771 . + +nwbib-spatial:Q880435 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Hülchrath"@de ; + foaf:focus wd:Q880435 . + +nwbib-spatial:Q1355635 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Erlinghausen"@de ; + foaf:focus wd:Q1355635 . + +nwbib-spatial:Q896173 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Lippramsdorf"@de ; + foaf:focus wd:Q896173 . + +nwbib-spatial:Q258193 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Bredeney"@de ; + foaf:focus wd:Q258193 . + +nwbib-spatial:Q2010945 + a skos:Concept ; + skos:broader nwbib-spatial:Q245376 ; + skos:inScheme ; + skos:prefLabel "Oberschönrath"@de ; + foaf:focus wd:Q2010945 . + +nwbib-spatial:Q1649509 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Illingen"@de ; + foaf:focus wd:Q1649509 . + +nwbib-spatial:Q1444112 + a skos:Concept ; + skos:broader nwbib-spatial:Q59207767 ; + skos:inScheme ; + skos:prefLabel "Vennheide"@de ; + foaf:focus wd:Q1444112 . + +nwbib-spatial:Q808387 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Barmingholten"@de ; + foaf:focus wd:Q808387 . + +nwbib-spatial:Q1647277 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Vormwald"@de ; + foaf:focus wd:Q1647277 . + +nwbib-spatial:Q2585200 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Winz-Baak"@de ; + foaf:focus wd:Q2585200 . + +nwbib-spatial:Q876750 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Wißkirchen"@de ; + foaf:focus wd:Q876750 . + +nwbib-spatial:Q44692662 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Wethmar"@de ; + foaf:focus wd:Q44692662 . + +nwbib-spatial:Q1250615 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Simonskall"@de ; + foaf:focus wd:Q1250615 . + +nwbib-spatial:Q896720 + a skos:Concept ; + skos:broader nwbib-spatial:Q59207767 ; + skos:inScheme ; + skos:prefLabel "Hiltrup"@de ; + foaf:focus wd:Q896720 . + +nwbib-spatial:Q1422940 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Huxel"@de ; + foaf:focus wd:Q1422940 . + +nwbib-spatial:Q1715666 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Jössen"@de ; + foaf:focus wd:Q1715666 . + +nwbib-spatial:Q254537 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Arzdorf"@de ; + foaf:focus wd:Q254537 . + +nwbib-spatial:Q798730 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Bad Meinberg"@de ; + foaf:focus wd:Q798730 . + +nwbib-spatial:Q487549 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140275 ; + skos:inScheme ; + skos:prefLabel "Schalke"@de ; + foaf:focus wd:Q487549 . + +nwbib-spatial:Q911514 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Breyell"@de ; + foaf:focus wd:Q911514 . + +nwbib-spatial:Q1363657 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Erwitzen"@de ; + foaf:focus wd:Q1363657 . + +nwbib-spatial:Q2473574 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Uedorf"@de ; + foaf:focus wd:Q2473574 . + +nwbib-spatial:Q1361431 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Erpentrup"@de ; + foaf:focus wd:Q1361431 . + +nwbib-spatial:Q1030104 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Helgersdorf"@de ; + foaf:focus wd:Q1030104 . + +nwbib-spatial:Q2497218 + a skos:Concept ; + skos:broader nwbib-spatial:Q870865 ; + skos:inScheme ; + skos:prefLabel "Unterbach"@de ; + foaf:focus wd:Q2497218 . + +nwbib-spatial:Q56008691 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Renneperstraße"@de ; + foaf:focus wd:Q56008691 . + +nwbib-spatial:Q2247030 + a skos:Concept ; + skos:broader nwbib-spatial:Q182753 ; + skos:inScheme ; + skos:prefLabel "Schnathorst"@de ; + foaf:focus wd:Q2247030 . + +nwbib-spatial:Q1168579 + a skos:Concept ; + skos:broader nwbib-spatial:Q245376 ; + skos:inScheme ; + skos:prefLabel "Kleineichen"@de ; + foaf:focus wd:Q1168579 . + +nwbib-spatial:Q2361112 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Stürzelberg"@de ; + foaf:focus wd:Q2361112 . + +nwbib-spatial:Q29514553 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Unterbörsch"@de ; + foaf:focus wd:Q29514553 . + +nwbib-spatial:Q11293 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954024" ; + skos:prefLabel "Schwelm"@de ; + foaf:focus wd:Q11293 . + +nwbib-spatial:Q2106829 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Stift Quernheim"@de ; + foaf:focus wd:Q2106829 . + +nwbib-spatial:Q19869 a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Breinigerberg"@de ; + foaf:focus wd:Q19869 . + +nwbib-spatial:Q1716872 + a skos:Concept ; + skos:broader nwbib-spatial:Q200018 ; + skos:inScheme ; + skos:prefLabel "Jüngersdorf"@de ; + foaf:focus wd:Q1716872 . + +nwbib-spatial:Q691694 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Riehl"@de ; + foaf:focus wd:Q691694 . + +nwbib-spatial:Q23362420 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Bergkirchen"@de ; + foaf:focus wd:Q23362420 . + +nwbib-spatial:Q1455025 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Frelenberg"@de ; + foaf:focus wd:Q1455025 . + +nwbib-spatial:Q1020467 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Büderich"@de ; + foaf:focus wd:Q1020467 . + +nwbib-spatial:Q50154175 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Eischeid"@de ; + foaf:focus wd:Q50154175 . + +nwbib-spatial:Q1651871 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Hörstmar"@de ; + foaf:focus wd:Q1651871 . + +nwbib-spatial:Q1526685 + a skos:Concept ; + skos:broader nwbib-spatial:Q200044 ; + skos:inScheme ; + skos:prefLabel "Girbelsrath"@de ; + foaf:focus wd:Q1526685 . + +nwbib-spatial:Q56881361 + a skos:Concept ; + skos:broader nwbib-spatial:Q313969 ; + skos:inScheme ; + skos:prefLabel "Kreis Rahden (bis 1832)"@de ; + foaf:focus wd:Q56881361 . + +nwbib-spatial:Q592477 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Müggenhausen"@de ; + foaf:focus wd:Q592477 . + +nwbib-spatial:Q2046064 + a skos:Concept ; + skos:broader nwbib-spatial:Q182208 ; + skos:inScheme ; + skos:prefLabel "St. Arnold"@de ; + foaf:focus wd:Q2046064 . + +nwbib-spatial:Q2692901 + a skos:Concept ; + skos:broader nwbib-spatial:Q6968 ; + skos:inScheme ; + skos:prefLabel "Unterfeldhaus"@de ; + foaf:focus wd:Q2692901 . + +nwbib-spatial:Q1738506 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Kemna"@de ; + foaf:focus wd:Q1738506 . + +nwbib-spatial:Q814019 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Beeck"@de ; + foaf:focus wd:Q814019 . + +nwbib-spatial:Q1593189 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Hedderhagen"@de ; + foaf:focus wd:Q1593189 . + +nwbib-spatial:Q225334 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754048" ; + skos:prefLabel "Versmold"@de ; + foaf:focus wd:Q225334 . + +nwbib-spatial:Q1749525 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Noithausen"@de ; + foaf:focus wd:Q1749525 . + +nwbib-spatial:Q55647406 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Nahmer"@de ; + foaf:focus wd:Q55647406 . + +nwbib-spatial:Q999478 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Volbringen"@de ; + foaf:focus wd:Q999478 . + +nwbib-spatial:Q732024 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Winden"@de ; + foaf:focus wd:Q732024 . + +nwbib-spatial:Q895928 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Rummenohl"@de ; + foaf:focus wd:Q895928 . + +nwbib-spatial:Q1795759 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Libur"@de ; + foaf:focus wd:Q1795759 . + +nwbib-spatial:Q1637057 + a skos:Concept ; + skos:broader nwbib-spatial:Q242572 ; + skos:inScheme ; + skos:prefLabel "Humfeld"@de ; + foaf:focus wd:Q1637057 . + +nwbib-spatial:Q6114 a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Braunsfeld"@de ; + foaf:focus wd:Q6114 . + +nwbib-spatial:Q1334454 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Uckendorf"@de ; + foaf:focus wd:Q1334454 . + +nwbib-spatial:Q1499806 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140275 ; + skos:inScheme ; + skos:prefLabel "Bismarck"@de ; + foaf:focus wd:Q1499806 . + +nwbib-spatial:Q19968113 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Westerbönen"@de ; + foaf:focus wd:Q19968113 . + +nwbib-spatial:Q199977 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358020" ; + skos:prefLabel "Inden"@de ; + foaf:focus wd:Q199977 . + +nwbib-spatial:Q1982226 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Neviges"@de ; + foaf:focus wd:Q1982226 . + +nwbib-spatial:Q3764 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954036" ; + skos:prefLabel "Witten"@de ; + foaf:focus wd:Q3764 . + +nwbib-spatial:Q2560196 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Werfen"@de ; + foaf:focus wd:Q2560196 . + +nwbib-spatial:Q2010335 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Oberlückerath"@de ; + foaf:focus wd:Q2010335 . + +nwbib-spatial:Q923086 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Eidinghausen"@de ; + foaf:focus wd:Q923086 . + +nwbib-spatial:Q2268218 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Selfkantkreis Geilenkirchen-Heinsberg (bis 1971)"@de ; + foaf:focus wd:Q2268218 . + +nwbib-spatial:Q1256434 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803602 ; + skos:inScheme ; + skos:prefLabel "Stoppenberg"@de ; + foaf:focus wd:Q1256434 . + +nwbib-spatial:Q832298 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Forstwald"@de ; + foaf:focus wd:Q832298 . + +nwbib-spatial:Q56597785 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Annaberg"@de ; + foaf:focus wd:Q56597785 . + +nwbib-spatial:Q23926582 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Grütlohn"@de ; + foaf:focus wd:Q23926582 . + +nwbib-spatial:Q1743154 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Lübbecke"@de ; + foaf:focus wd:Q1743154 . + +nwbib-spatial:Q1333768 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Elsen"@de ; + foaf:focus wd:Q1333768 . + +nwbib-spatial:Q874789 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Ludendorf"@de ; + foaf:focus wd:Q874789 . + +nwbib-spatial:Q1348990 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Mülheim"@de ; + foaf:focus wd:Q1348990 . + +nwbib-spatial:Q1772394 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Neger"@de ; + foaf:focus wd:Q1772394 . + +nwbib-spatial:Q1666361 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Kinzweiler"@de ; + foaf:focus wd:Q1666361 . + +nwbib-spatial:Q819826 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Bergisch Neukirchen"@de ; + foaf:focus wd:Q819826 . + +nwbib-spatial:Q2472931 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Uckerath"@de ; + foaf:focus wd:Q2472931 . + +nwbib-spatial:Q2146499 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Retzen"@de ; + foaf:focus wd:Q2146499 . + +nwbib-spatial:Q1737878 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Kehrum"@de ; + foaf:focus wd:Q1737878 . + +nwbib-spatial:Q1579548 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Hemmerde"@de ; + foaf:focus wd:Q1579548 . + +nwbib-spatial:Q21042076 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Genend"@de ; + foaf:focus wd:Q21042076 . + +nwbib-spatial:Q3117 a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378004" ; + skos:prefLabel "Bergisch Gladbach"@de ; + foaf:focus wd:Q3117 . + +nwbib-spatial:Q24355720 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Jesinghausen"@de ; + foaf:focus wd:Q24355720 . + +nwbib-spatial:Q1272259 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Dürscheven"@de ; + foaf:focus wd:Q1272259 . + +nwbib-spatial:Q1412368 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Mussum"@de ; + foaf:focus wd:Q1412368 . + +nwbib-spatial:Q1742468 + a skos:Concept ; + skos:broader nwbib-spatial:Q183374 ; + skos:inScheme ; + skos:prefLabel "Kirchborchen"@de ; + foaf:focus wd:Q1742468 . + +nwbib-spatial:Q2010314 + a skos:Concept ; + skos:broader nwbib-spatial:Q3939 ; + skos:inScheme ; + skos:prefLabel "Oberlohberg"@de ; + foaf:focus wd:Q2010314 . + +nwbib-spatial:Q44992767 + a skos:Concept ; + skos:broader nwbib-spatial:Q163100 ; + skos:inScheme ; + skos:prefLabel "Labbeck"@de ; + foaf:focus wd:Q44992767 . + +nwbib-spatial:Q2366330 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Sundwig"@de ; + foaf:focus wd:Q2366330 . + +nwbib-spatial:Q24816568 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Bettenkamp"@de ; + foaf:focus wd:Q24816568 . + +nwbib-spatial:Q225371 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Raderthal"@de ; + foaf:focus wd:Q225371 . + +nwbib-spatial:Q2284186 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139024 ; + skos:inScheme ; + skos:prefLabel "Sieker"@de ; + foaf:focus wd:Q2284186 . + +nwbib-spatial:Q56007480 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Winkhausen"@de ; + foaf:focus wd:Q56007480 . + +nwbib-spatial:Q651451 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Dalheim-Rödgen"@de ; + foaf:focus wd:Q651451 . + +nwbib-spatial:Q1258782 + a skos:Concept ; + skos:broader nwbib-spatial:Q11114 ; + skos:inScheme ; + skos:prefLabel "Drewer"@de ; + foaf:focus wd:Q1258782 . + +nwbib-spatial:Q1250610 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Eichlinghofen"@de ; + foaf:focus wd:Q1250610 . + +nwbib-spatial:Q1803148 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Essen (bis 1929)"@de ; + foaf:focus wd:Q1803148 . + +nwbib-spatial:Q2366245 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Sundern"@de ; + foaf:focus wd:Q2366245 . + +nwbib-spatial:Q15965177 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Munscheid"@de ; + foaf:focus wd:Q15965177 . + +nwbib-spatial:Q1980918 + a skos:Concept ; + skos:broader nwbib-spatial:Q512233 ; + skos:inScheme ; + skos:prefLabel "Neumühl"@de ; + foaf:focus wd:Q1980918 . + +nwbib-spatial:Q2257862 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Schwitten"@de ; + foaf:focus wd:Q2257862 . + +nwbib-spatial:Q472948 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Wissel"@de ; + foaf:focus wd:Q472948 . + +nwbib-spatial:Q758375 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Au (Sieg)"@de ; + foaf:focus wd:Q758375 . + +nwbib-spatial:Q2349166 + a skos:Concept ; + skos:broader nwbib-spatial:Q161673 ; + skos:inScheme ; + skos:prefLabel "Hetterscheidt"@de ; + foaf:focus wd:Q2349166 . + +nwbib-spatial:Q1372296 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Euenheim"@de ; + foaf:focus wd:Q1372296 . + +nwbib-spatial:Q2429959 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Wanheim-Angerhausen"@de ; + foaf:focus wd:Q2429959 . + +nwbib-spatial:Q11145 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974048" ; + skos:prefLabel "Welver"@de ; + foaf:focus wd:Q11145 . + +nwbib-spatial:Q25158553 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Vennikel"@de ; + foaf:focus wd:Q25158553 . + +nwbib-spatial:Q47022528 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Wesel"@de ; + foaf:focus wd:Q47022528 . + +nwbib-spatial:Q1795775 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Weiden"@de ; + foaf:focus wd:Q1795775 . + +nwbib-spatial:Q1420937 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Fissenknick"@de ; + foaf:focus wd:Q1420937 . + +nwbib-spatial:Q1617325 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Hiddingsel"@de ; + foaf:focus wd:Q1617325 . + +nwbib-spatial:Q1588776 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Hasten"@de ; + foaf:focus wd:Q1588776 . + +nwbib-spatial:Q1787972 + a skos:Concept ; + skos:broader nwbib-spatial:Q242385 ; + skos:inScheme ; + skos:prefLabel "Krentrup"@de ; + foaf:focus wd:Q1787972 . + +nwbib-spatial:Q3069 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05512" ; + skos:prefLabel "Bottrop"@de ; + foaf:focus wd:Q3069 . + +nwbib-spatial:Q1987684 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Niederdollendorf"@de ; + foaf:focus wd:Q1987684 . + +nwbib-spatial:Q2570408 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Wildbergerhütte"@de ; + foaf:focus wd:Q2570408 . + +nwbib-spatial:Q1413468 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Schwefe"@de ; + foaf:focus wd:Q1413468 . + +nwbib-spatial:Q28109553 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Ramsloh"@de ; + foaf:focus wd:Q28109553 . + +nwbib-spatial:Q1642511 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Gremberghoven"@de ; + foaf:focus wd:Q1642511 . + +nwbib-spatial:Q696909 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Arnoldsweiler"@de ; + foaf:focus wd:Q696909 . + +nwbib-spatial:Q14524602 + a skos:Concept ; + skos:broader nwbib-spatial:Q2899 ; + skos:inScheme ; + skos:prefLabel "Styrum"@de ; + foaf:focus wd:Q14524602 . + +nwbib-spatial:Q1184019 + a skos:Concept ; + skos:broader nwbib-spatial:N10 ; + skos:inScheme ; + skos:prefLabel "Delbrücker Land"@de ; + foaf:focus wd:Q1184019 . + +nwbib-spatial:Q1019826 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Bökenförde"@de ; + foaf:focus wd:Q1019826 . + +nwbib-spatial:Q11039 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374036" ; + skos:prefLabel "Radevormwald"@de ; + foaf:focus wd:Q11039 . + +nwbib-spatial:Q1742484 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Tüddern"@de ; + foaf:focus wd:Q1742484 . + +nwbib-spatial:Q731895 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Häver"@de ; + foaf:focus wd:Q731895 . + +nwbib-spatial:Q1670041 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Puffendorf"@de ; + foaf:focus wd:Q1670041 . + +nwbib-spatial:Q1387816 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Lahde"@de ; + foaf:focus wd:Q1387816 . + +nwbib-spatial:Q740363 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Asseln"@de ; + foaf:focus wd:Q740363 . + +nwbib-spatial:Q1402513 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Hillerscheid"@de ; + foaf:focus wd:Q1402513 . + +nwbib-spatial:Q302578 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Rahrbach"@de ; + foaf:focus wd:Q302578 . + +nwbib-spatial:Q820673 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Beringhausen"@de ; + foaf:focus wd:Q820673 . + +nwbib-spatial:Q1304523 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Schweckhausen"@de ; + foaf:focus wd:Q1304523 . + +nwbib-spatial:Q2583535 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Windhausen"@de ; + foaf:focus wd:Q2583535 . + +nwbib-spatial:Q56577099 + a skos:Concept ; + skos:broader nwbib-spatial:Q245579 ; + skos:inScheme ; + skos:prefLabel "Sträßchen"@de ; + foaf:focus wd:Q56577099 . + +nwbib-spatial:Q46221995 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Möllmicke"@de ; + foaf:focus wd:Q46221995 . + +nwbib-spatial:Q19687941 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Schmehausen"@de ; + foaf:focus wd:Q19687941 . + +nwbib-spatial:Q1955891 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Mutscheid"@de ; + foaf:focus wd:Q1955891 . + +nwbib-spatial:Q437424 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Altenmellrich"@de ; + foaf:focus wd:Q437424 . + +nwbib-spatial:Q825489 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Pyrmont (bis 1848)"@de ; + foaf:focus wd:Q825489 . + +nwbib-spatial:Q819821 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Bergisch Born"@de ; + foaf:focus wd:Q819821 . + +nwbib-spatial:Q1261718 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Dröschede"@de ; + foaf:focus wd:Q1261718 . + +nwbib-spatial:Q1787383 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Lippstadt (bis 1974)"@de ; + foaf:focus wd:Q1787383 . + +nwbib-spatial:Q43109346 + a skos:Concept ; + skos:broader nwbib-spatial:Q14946 ; + skos:inScheme ; + skos:prefLabel "Beerlage"@de ; + foaf:focus wd:Q43109346 . + +nwbib-spatial:Q820111 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Bergrath"@de ; + foaf:focus wd:Q820111 . + +nwbib-spatial:Q181981 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566044" ; + skos:prefLabel "Lienen"@de ; + foaf:focus wd:Q181981 . + +nwbib-spatial:Q737194 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Lind"@de ; + foaf:focus wd:Q737194 . + +nwbib-spatial:Q1652276 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Hülser Berg"@de ; + foaf:focus wd:Q1652276 . + +nwbib-spatial:Q1220700 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Dielingen"@de ; + foaf:focus wd:Q1220700 . + +nwbib-spatial:Q1020897 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Bünghausen"@de ; + foaf:focus wd:Q1020897 . + +nwbib-spatial:Q1805454 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Langweiler"@de ; + foaf:focus wd:Q1805454 . + +nwbib-spatial:Q73075 a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Lüchtringen"@de ; + foaf:focus wd:Q73075 . + +nwbib-spatial:Q2565372 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Westhofen"@de ; + foaf:focus wd:Q2565372 . + +nwbib-spatial:Q1257407 + a skos:Concept ; + skos:broader nwbib-spatial:Q14936 ; + skos:inScheme ; + skos:prefLabel "Sinningen"@de ; + foaf:focus wd:Q1257407 . + +nwbib-spatial:Q819253 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Berg"@de ; + foaf:focus wd:Q819253 . + +nwbib-spatial:Q1206591 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Deuz"@de ; + foaf:focus wd:Q1206591 . + +nwbib-spatial:Q1636345 + a skos:Concept ; + skos:broader nwbib-spatial:Q14900 ; + skos:inScheme ; + skos:prefLabel "Hullern"@de ; + foaf:focus wd:Q1636345 . + +nwbib-spatial:Q1279445 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Friesdorf"@de ; + foaf:focus wd:Q1279445 . + +nwbib-spatial:Q47012184 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Gaesdonk"@de ; + foaf:focus wd:Q47012184 . + +nwbib-spatial:Q32945247 + a skos:Concept ; + skos:broader nwbib-spatial:Q5542 ; + skos:inScheme ; + skos:prefLabel "Siesel"@de ; + foaf:focus wd:Q32945247 . + +nwbib-spatial:Q10958 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970036" ; + skos:prefLabel "Neunkirchen"@de ; + foaf:focus wd:Q10958 . + +nwbib-spatial:Q690961 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Hemschlar"@de ; + foaf:focus wd:Q690961 . + +nwbib-spatial:Q241048 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366012" ; + skos:prefLabel "Dahlem"@de ; + foaf:focus wd:Q241048 . + +nwbib-spatial:Q886298 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Blumenthal (Hellenthal)"@de ; + foaf:focus wd:Q886298 . + +nwbib-spatial:Q2165216 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Rommerscheid"@de ; + foaf:focus wd:Q2165216 . + +nwbib-spatial:Q1164934 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Dansweiler"@de ; + foaf:focus wd:Q1164934 . + +nwbib-spatial:Q19601651 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Holzem"@de ; + foaf:focus wd:Q19601651 . + +nwbib-spatial:Q187678 + a skos:Concept ; + skos:broader nwbib-spatial:Q314234 ; + skos:inScheme ; + skos:prefLabel "Wanne"@de ; + foaf:focus wd:Q187678 . + +nwbib-spatial:Q205050 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370012" ; + skos:prefLabel "Geilenkirchen"@de ; + foaf:focus wd:Q205050 . + +nwbib-spatial:Q11140 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974032" ; + skos:prefLabel "Möhnesee"@de ; + foaf:focus wd:Q11140 . + +nwbib-spatial:Q2265189 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261814 ; + skos:inScheme ; + skos:prefLabel "Seelbach"@de ; + foaf:focus wd:Q2265189 . + +nwbib-spatial:Q1401864 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Heßloh"@de ; + foaf:focus wd:Q1401864 . + +nwbib-spatial:Q27113552 + a skos:Concept ; + skos:broader nwbib-spatial:Q243554 ; + skos:inScheme ; + skos:prefLabel "Reeserschanz"@de ; + foaf:focus wd:Q27113552 . + +nwbib-spatial:Q1309194 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Schanze"@de ; + foaf:focus wd:Q1309194 . + +nwbib-spatial:Q1795770 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Roggendorf/Thenhoven"@de ; + foaf:focus wd:Q1795770 . + +nwbib-spatial:Q881558 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Blankenau"@de ; + foaf:focus wd:Q881558 . + +nwbib-spatial:Q1182508 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Deesem"@de ; + foaf:focus wd:Q1182508 . + +nwbib-spatial:Q531011 + a skos:Concept ; + skos:broader nwbib-spatial:Q23788002 ; + skos:inScheme ; + skos:prefLabel "Laer"@de ; + foaf:focus wd:Q531011 . + +nwbib-spatial:Q242880 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766032" ; + skos:prefLabel "Horn-Bad Meinberg"@de ; + foaf:focus wd:Q242880 . + +nwbib-spatial:Q1826159 + a skos:Concept ; + skos:broader nwbib-spatial:Q11293 ; + skos:inScheme ; + skos:prefLabel "Linderhausen"@de ; + foaf:focus wd:Q1826159 . + +nwbib-spatial:Q182938 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770036" ; + skos:prefLabel "Preußisch Oldendorf"@de ; + foaf:focus wd:Q182938 . + +nwbib-spatial:Q882706 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Freienohl"@de ; + foaf:focus wd:Q882706 . + +nwbib-spatial:Q485684 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Suderwick"@de ; + foaf:focus wd:Q485684 . + +nwbib-spatial:Q315663 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Limburg"@de ; + foaf:focus wd:Q315663 . + +nwbib-spatial:Q317111 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Schwarzrheindorf/Vilich-Rheindorf"@de ; + foaf:focus wd:Q317111 . + +nwbib-spatial:Q44289725 + a skos:Concept ; + skos:broader nwbib-spatial:Q200602 ; + skos:inScheme ; + skos:prefLabel "Vehlingen"@de ; + foaf:focus wd:Q44289725 . + +nwbib-spatial:Q2326741 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Brackel"@de ; + foaf:focus wd:Q2326741 . + +nwbib-spatial:Q1017446 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Busenbach"@de ; + foaf:focus wd:Q1017446 . + +nwbib-spatial:Q1257985 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Nienberge"@de ; + foaf:focus wd:Q1257985 . + +nwbib-spatial:Q832145 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Albachten"@de ; + foaf:focus wd:Q832145 . + +nwbib-spatial:Q73091 a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Albaxen"@de ; + foaf:focus wd:Q73091 . + +nwbib-spatial:Q2508050 + a skos:Concept ; + skos:broader nwbib-spatial:Q53907 ; + skos:inScheme ; + skos:prefLabel "Valdorf"@de ; + foaf:focus wd:Q2508050 . + +nwbib-spatial:Q819752 + a skos:Concept ; + skos:broader nwbib-spatial:Q202377 ; + skos:inScheme ; + skos:prefLabel "Bergheim"@de ; + foaf:focus wd:Q819752 . + +nwbib-spatial:Q799671 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Badorf"@de ; + foaf:focus wd:Q799671 . + +nwbib-spatial:Q20818814 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Mutz"@de ; + foaf:focus wd:Q20818814 . + +nwbib-spatial:Q1353579 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Holtum"@de ; + foaf:focus wd:Q1353579 . + +nwbib-spatial:Q776646 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Grengel"@de ; + foaf:focus wd:Q776646 . + +nwbib-spatial:Q59140398 + a skos:Concept ; + skos:broader nwbib-spatial:Q2765 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Gelsenkirchen-Süd"@de ; + foaf:focus wd:Q59140398 . + +nwbib-spatial:Q1411067 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Rimberg"@de ; + foaf:focus wd:Q1411067 . + +nwbib-spatial:Q44181064 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Lowick"@de ; + foaf:focus wd:Q44181064 . + +nwbib-spatial:Q1436564 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Menden"@de ; + foaf:focus wd:Q1436564 . + +nwbib-spatial:Q14949 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558040" ; + skos:prefLabel "Rosendahl"@de ; + foaf:focus wd:Q14949 . + +nwbib-spatial:Q836178 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Schönau"@de ; + foaf:focus wd:Q836178 . + +nwbib-spatial:Q44023869 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Schwarzbach"@de ; + foaf:focus wd:Q44023869 . + +nwbib-spatial:Q1668349 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Oberdielfen"@de ; + foaf:focus wd:Q1668349 . + +nwbib-spatial:Q2253044 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Schwanenberg"@de ; + foaf:focus wd:Q2253044 . + +nwbib-spatial:Q460145 + a skos:Concept ; + skos:broader nwbib-spatial:Q831067 ; + skos:inScheme ; + skos:prefLabel "Garath"@de ; + foaf:focus wd:Q460145 . + +nwbib-spatial:Q56398029 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Sundern"@de ; + foaf:focus wd:Q56398029 . + +nwbib-spatial:Q817897 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Benninghausen"@de ; + foaf:focus wd:Q817897 . + +nwbib-spatial:Q2904 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05916" ; + skos:prefLabel "Herne"@de ; + foaf:focus wd:Q2904 . + +nwbib-spatial:Q1261771 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Drüpplingsen"@de ; + foaf:focus wd:Q1261771 . + +nwbib-spatial:Q19964897 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Herrntrop"@de ; + foaf:focus wd:Q19964897 . + +nwbib-spatial:Q742001 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Assinghausen"@de ; + foaf:focus wd:Q742001 . + +nwbib-spatial:Q1169505 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Wyenhütte"@de ; + foaf:focus wd:Q1169505 . + +nwbib-spatial:Q200177 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554060" ; + skos:prefLabel "Südlohn"@de ; + foaf:focus wd:Q200177 . + +nwbib-spatial:Q1508810 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Henstorf"@de ; + foaf:focus wd:Q1508810 . + +nwbib-spatial:Q884948 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Pesch"@de ; + foaf:focus wd:Q884948 . + +nwbib-spatial:Q1543241 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Rüppershausen"@de ; + foaf:focus wd:Q1543241 . + +nwbib-spatial:Q182471 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566092" ; + skos:prefLabel "Westerkappeln"@de ; + foaf:focus wd:Q182471 . + +nwbib-spatial:Q1433306 + a skos:Concept ; + skos:broader nwbib-spatial:Q242572 ; + skos:inScheme ; + skos:prefLabel "Schwelentrup"@de ; + foaf:focus wd:Q1433306 . + +nwbib-spatial:Q1350163 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Erfttal"@de ; + foaf:focus wd:Q1350163 . + +nwbib-spatial:Q1625777 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Holzweiler"@de ; + foaf:focus wd:Q1625777 . + +nwbib-spatial:Q1325041 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Elbach"@de ; + foaf:focus wd:Q1325041 . + +nwbib-spatial:Q47021768 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Bad Godesberg-Voreifel"@de ; + foaf:focus wd:Q47021768 . + +nwbib-spatial:Q5764545 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Meiderich/Beeck (Stadtbezirk)"@de ; + foaf:focus wd:Q5764545 . + +nwbib-spatial:Q2042265 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Ovenstädt"@de ; + foaf:focus wd:Q2042265 . + +nwbib-spatial:Q191662 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Zerkall"@de ; + foaf:focus wd:Q191662 . + +nwbib-spatial:Q61725690 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Hackhausen"@de ; + foaf:focus wd:Q61725690 . + +nwbib-spatial:Q394833 + a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Agnesviertel"@de ; + foaf:focus wd:Q394833 . + +nwbib-spatial:Q525183 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Berzbuir"@de ; + foaf:focus wd:Q525183 . + +nwbib-spatial:Q11050 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374028" ; + skos:prefLabel "Morsbach"@de ; + foaf:focus wd:Q11050 . + +nwbib-spatial:Q1374348 + a skos:Concept ; + skos:broader nwbib-spatial:N07 ; + skos:inScheme ; + skos:prefLabel "Euregio Rhein-Waal (Sitz: Kleve)"@de ; + foaf:focus wd:Q1374348 . + +nwbib-spatial:Q29960536 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Schnappe"@de ; + foaf:focus wd:Q29960536 . + +nwbib-spatial:N46 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "46" ; + skos:prefLabel "Grafschaft, Herzogtum, Großherzogtum Berg"@de ; + foaf:focus wd:Q249428 . + +nwbib-spatial:Q2054915 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Rißdorf"@de ; + foaf:focus wd:Q2054915 . + +nwbib-spatial:Q1619541 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Hinsbeck"@de ; + foaf:focus wd:Q1619541 . + +nwbib-spatial:Q1380466 + a skos:Concept ; + skos:broader nwbib-spatial:Q245376 ; + skos:inScheme ; + skos:prefLabel "Hoffnungsthal"@de ; + foaf:focus wd:Q1380466 . + +nwbib-spatial:Q2132367 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Rath"@de ; + foaf:focus wd:Q2132367 . + +nwbib-spatial:Q6916 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334016" ; + skos:prefLabel "Herzogenrath"@de ; + foaf:focus wd:Q6916 . + +nwbib-spatial:Q1719997 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Kallmuth"@de ; + foaf:focus wd:Q1719997 . + +nwbib-spatial:Q1241616 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Donk"@de ; + foaf:focus wd:Q1241616 . + +nwbib-spatial:Q183449 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774024" ; + skos:prefLabel "Hövelhof"@de ; + foaf:focus wd:Q183449 . + +nwbib-spatial:Q1529594 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Windberg"@de ; + foaf:focus wd:Q1529594 . + +nwbib-spatial:Q1015066 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Burgholdinghausen"@de ; + foaf:focus wd:Q1015066 . + +nwbib-spatial:Q1765128 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Hahlen"@de ; + foaf:focus wd:Q1765128 . + +nwbib-spatial:Q1738257 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Kellersberg"@de ; + foaf:focus wd:Q1738257 . + +nwbib-spatial:Q1589197 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Hauenhorst"@de ; + foaf:focus wd:Q1589197 . + +nwbib-spatial:Q819598 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Bergerhof"@de ; + foaf:focus wd:Q819598 . + +nwbib-spatial:Q42387069 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Friedrichsthal"@de ; + foaf:focus wd:Q42387069 . + +nwbib-spatial:Q1911981 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Mawicke"@de ; + foaf:focus wd:Q1911981 . + +nwbib-spatial:Q1642893 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Heimersdorf"@de ; + foaf:focus wd:Q1642893 . + +nwbib-spatial:Q55988759 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Hees"@de ; + foaf:focus wd:Q55988759 . + +nwbib-spatial:Q818997 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Berenbrock"@de ; + foaf:focus wd:Q818997 . + +nwbib-spatial:Q1812138 + a skos:Concept ; + skos:broader nwbib-spatial:Q181541 ; + skos:inScheme ; + skos:prefLabel "Leer"@de ; + foaf:focus wd:Q1812138 . + +nwbib-spatial:Q48219 a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Heidenoldendorf"@de ; + foaf:focus wd:Q48219 . + +nwbib-spatial:Q2147425 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Rheder"@de ; + foaf:focus wd:Q2147425 . + +nwbib-spatial:Q2010569 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Oberntudorf"@de ; + foaf:focus wd:Q2010569 . + +nwbib-spatial:Q1368653 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Südostviertel"@de ; + foaf:focus wd:Q1368653 . + +nwbib-spatial:Q16146 a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774020" ; + skos:prefLabel "Delbrück"@de ; + foaf:focus wd:Q16146 . + +nwbib-spatial:Q884423 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Venusberg"@de ; + foaf:focus wd:Q884423 . + +nwbib-spatial:Q1719493 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259723 ; + skos:inScheme ; + skos:prefLabel "Kaan-Marienborn"@de ; + foaf:focus wd:Q1719493 . + +nwbib-spatial:Q2209031 + a skos:Concept ; + skos:broader nwbib-spatial:Q14895 ; + skos:inScheme ; + skos:prefLabel "Saalhoff"@de ; + foaf:focus wd:Q2209031 . + +nwbib-spatial:Q15844411 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Schlich"@de ; + foaf:focus wd:Q15844411 . + +nwbib-spatial:Q26208581 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Obrighoven"@de ; + foaf:focus wd:Q26208581 . + +nwbib-spatial:Q44085301 + a skos:Concept ; + skos:broader nwbib-spatial:Q200602 ; + skos:inScheme ; + skos:prefLabel "Herzebocholt"@de ; + foaf:focus wd:Q44085301 . + +nwbib-spatial:Q1722641 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Kaltenbach"@de ; + foaf:focus wd:Q1722641 . + +nwbib-spatial:Q881590 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Blankenhagen"@de ; + foaf:focus wd:Q881590 . + +nwbib-spatial:Q1522844 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Klosterhardt"@de ; + foaf:focus wd:Q1522844 . + +nwbib-spatial:Q27479164 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Iseringhausen"@de ; + foaf:focus wd:Q27479164 . + +nwbib-spatial:Q1300851 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Ehringhausen"@de ; + foaf:focus wd:Q1300851 . + +nwbib-spatial:Q323601 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Unterbilk"@de ; + foaf:focus wd:Q323601 . + +nwbib-spatial:N04 a skos:Concept ; + skos:broader nwbib-spatial:N0 ; + skos:inScheme ; + skos:notation "04" ; + skos:prefLabel "Westfalen"@de ; + foaf:focus wd:Q8614 . + +nwbib-spatial:Q243206 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154048" ; + skos:prefLabel "Rheurdt"@de ; + foaf:focus wd:Q243206 . + +nwbib-spatial:Q1368632 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803602 ; + skos:inScheme ; + skos:prefLabel "Katernberg"@de ; + foaf:focus wd:Q1368632 . + +nwbib-spatial:Q1622823 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Hoeningen"@de ; + foaf:focus wd:Q1622823 . + +nwbib-spatial:Q1561876 + a skos:Concept ; + skos:broader nwbib-spatial:Q831067 ; + skos:inScheme ; + skos:prefLabel "Hellerhof"@de ; + foaf:focus wd:Q1561876 . + +nwbib-spatial:Q1281286 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138834 ; + skos:inScheme ; + skos:prefLabel "Eckardtsheim"@de ; + foaf:focus wd:Q1281286 . + +nwbib-spatial:Q1770238 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Fühlingen"@de ; + foaf:focus wd:Q1770238 . + +nwbib-spatial:Q15120449 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Miebach"@de ; + foaf:focus wd:Q15120449 . + +nwbib-spatial:Q659562 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Rinthe"@de ; + foaf:focus wd:Q659562 . + +nwbib-spatial:Q878096 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Kreuzweingarten"@de ; + foaf:focus wd:Q878096 . + +nwbib-spatial:Q547577 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Höhenhaus"@de ; + foaf:focus wd:Q547577 . + +nwbib-spatial:Q1594131 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Heiden"@de ; + foaf:focus wd:Q1594131 . + +nwbib-spatial:Q14923 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558028" ; + skos:prefLabel "Nordkirchen"@de ; + foaf:focus wd:Q14923 . + +nwbib-spatial:N62 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "62" ; + skos:prefLabel "Herzogtum Westfalen"@de ; + foaf:focus wd:Q657241 . + +nwbib-spatial:Q1610635 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Norf"@de ; + foaf:focus wd:Q1610635 . + +nwbib-spatial:Q1358995 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Galkhausen"@de ; + foaf:focus wd:Q1358995 . + +nwbib-spatial:Q1790749 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Schneppenbaum"@de ; + foaf:focus wd:Q1790749 . + +nwbib-spatial:Q260884 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Bielefeld (bis 1972)"@de ; + foaf:focus wd:Q260884 . + +nwbib-spatial:Q1104 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962016" ; + skos:prefLabel "Hemer"@de ; + foaf:focus wd:Q1104 . + +nwbib-spatial:Q4074 a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366016" ; + skos:prefLabel "Euskirchen"@de ; + foaf:focus wd:Q4074 . + +nwbib-spatial:Q1428808 + a skos:Concept ; + skos:broader nwbib-spatial:Q320896 ; + skos:inScheme ; + skos:prefLabel "Flingern"@de ; + foaf:focus wd:Q1428808 . + +nwbib-spatial:Q200087 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358060" ; + skos:prefLabel "Vettweiß"@de ; + foaf:focus wd:Q200087 . + +nwbib-spatial:Q1358916 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Pottenhausen"@de ; + foaf:focus wd:Q1358916 . + +nwbib-spatial:Q1368611 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803598 ; + skos:inScheme ; + skos:prefLabel "Bergerhausen"@de ; + foaf:focus wd:Q1368611 . + +nwbib-spatial:Q201718 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Kofferen"@de ; + foaf:focus wd:Q201718 . + +nwbib-spatial:Q1499032 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Geistingen"@de ; + foaf:focus wd:Q1499032 . + +nwbib-spatial:Q1425975 + a skos:Concept ; + skos:broader nwbib-spatial:Q1808050 ; + skos:inScheme ; + skos:prefLabel "Vaalserquartier"@de ; + foaf:focus wd:Q1425975 . + +nwbib-spatial:Q1098922 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Clausen"@de ; + foaf:focus wd:Q1098922 . + +nwbib-spatial:Q59138834 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Sennestadt"@de ; + foaf:focus wd:Q59138834 . + +nwbib-spatial:Q2042260 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Ovenhausen"@de ; + foaf:focus wd:Q2042260 . + +nwbib-spatial:Q1713505 + a skos:Concept ; + skos:broader nwbib-spatial:Q242757 ; + skos:inScheme ; + skos:prefLabel "Lipperreihe"@de ; + foaf:focus wd:Q1713505 . + +nwbib-spatial:Q29475554 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Neuhurden"@de ; + foaf:focus wd:Q29475554 . + +nwbib-spatial:Q257089 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Südviertel"@de ; + foaf:focus wd:Q257089 . + +nwbib-spatial:Q202377 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762032" ; + skos:prefLabel "Steinheim"@de ; + foaf:focus wd:Q202377 . + +nwbib-spatial:Q1701402 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Limperich"@de ; + foaf:focus wd:Q1701402 . + +nwbib-spatial:Q1530219 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Mausbach"@de ; + foaf:focus wd:Q1530219 . + +nwbib-spatial:Q2015310 + a skos:Concept ; + skos:broader nwbib-spatial:Q53908 ; + skos:inScheme ; + skos:prefLabel "Oetinghausen"@de ; + foaf:focus wd:Q2015310 . + +nwbib-spatial:Q2238627 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Schleckheim"@de ; + foaf:focus wd:Q2238627 . + +nwbib-spatial:Q1316404 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Mollseifen"@de ; + foaf:focus wd:Q1316404 . + +nwbib-spatial:Q200549 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554064" ; + skos:prefLabel "Velen"@de ; + foaf:focus wd:Q200549 . + +nwbib-spatial:Q2064696 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Pavenstädt"@de ; + foaf:focus wd:Q2064696 . + +nwbib-spatial:Q14817 a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766044" ; + skos:prefLabel "Lemgo"@de ; + foaf:focus wd:Q14817 . + +nwbib-spatial:Q2554693 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Wehrstapel"@de ; + foaf:focus wd:Q2554693 . + +nwbib-spatial:Q27894906 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen"@de ; + foaf:focus wd:Q27894906 . + +nwbib-spatial:Q2593731 + a skos:Concept ; + skos:broader nwbib-spatial:Q161673 ; + skos:inScheme ; + skos:prefLabel "Tüschen"@de ; + foaf:focus wd:Q2593731 . + +nwbib-spatial:Q372678 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Schaufenberg"@de ; + foaf:focus wd:Q372678 . + +nwbib-spatial:Q2160922 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Rodderhof"@de ; + foaf:focus wd:Q2160922 . + +nwbib-spatial:Q2350842 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q2350842 . + +nwbib-spatial:N20 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "20" ; + skos:prefLabel "Ruhrgebiet"@de ; + foaf:focus wd:Q151993 . + +nwbib-spatial:Q27909671 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Hohn"@de ; + foaf:focus wd:Q27909671 . + +nwbib-spatial:Q1017351 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Buschhütten"@de ; + foaf:focus wd:Q1017351 . + +nwbib-spatial:Q1872219 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Louisendorf"@de ; + foaf:focus wd:Q1872219 . + +nwbib-spatial:Q200528 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554068" ; + skos:prefLabel "Vreden"@de ; + foaf:focus wd:Q200528 . + +nwbib-spatial:Q1741640 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Schildgen"@de ; + foaf:focus wd:Q1741640 . + +nwbib-spatial:Q2350757 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Stocklarn"@de ; + foaf:focus wd:Q2350757 . + +nwbib-spatial:Q53913 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758028" ; + skos:prefLabel "Rödinghausen"@de ; + foaf:focus wd:Q53913 . + +nwbib-spatial:Q1625098 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Holsen"@de ; + foaf:focus wd:Q1625098 . + +nwbib-spatial:Q5657 a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Bilderstöckchen"@de ; + foaf:focus wd:Q5657 . + +nwbib-spatial:Q607614 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Gemünd"@de ; + foaf:focus wd:Q607614 . + +nwbib-spatial:Q2135715 + a skos:Concept ; + skos:broader nwbib-spatial:Q14917 ; + skos:inScheme ; + skos:prefLabel "Reckenfeld"@de ; + foaf:focus wd:Q2135715 . + +nwbib-spatial:Q18289142 + a skos:Concept ; + skos:broader nwbib-spatial:Q20183677 ; + skos:inScheme ; + skos:prefLabel "Röhlinghausen"@de ; + foaf:focus wd:Q18289142 . + +nwbib-spatial:Q11337 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954020" ; + skos:prefLabel "Herdecke"@de ; + foaf:focus wd:Q11337 . + +nwbib-spatial:Q328649 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Burtscheid"@de ; + foaf:focus wd:Q328649 . + +nwbib-spatial:Q47461972 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Arnsberg"@de ; + foaf:focus wd:Q47461972 . + +nwbib-spatial:Q894909 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139867 ; + skos:inScheme ; + skos:prefLabel "Ebel"@de ; + foaf:focus wd:Q894909 . + +nwbib-spatial:Q893910 + a skos:Concept ; + skos:broader nwbib-spatial:Q163693 ; + skos:inScheme ; + skos:prefLabel "Born"@de ; + foaf:focus wd:Q893910 . + +nwbib-spatial:Q2596680 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Würdinghausen"@de ; + foaf:focus wd:Q2596680 . + +nwbib-spatial:Q2118153 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Pumpe-Stich"@de ; + foaf:focus wd:Q2118153 . + +nwbib-spatial:Q475691 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Bödexen"@de ; + foaf:focus wd:Q475691 . + +nwbib-spatial:Q4090 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382056" ; + skos:prefLabel "Sankt Augustin"@de ; + foaf:focus wd:Q4090 . + +nwbib-spatial:Q2250456 + a skos:Concept ; + skos:broader nwbib-spatial:Q884493 ; + skos:inScheme ; + skos:prefLabel "Schröttinghausen"@de ; + foaf:focus wd:Q2250456 . + +nwbib-spatial:Q4011 a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170048" ; + skos:prefLabel "Wesel"@de ; + foaf:focus wd:Q4011 . + +nwbib-spatial:Q831279 + a skos:Concept ; + skos:broader nwbib-spatial:Q59263010 ; + skos:inScheme ; + skos:prefLabel "Weidenau"@de ; + foaf:focus wd:Q831279 . + +nwbib-spatial:Q1627309 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Honscheid"@de ; + foaf:focus wd:Q1627309 . + +nwbib-spatial:Q6863 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978028" ; + skos:prefLabel "Schwerte"@de ; + foaf:focus wd:Q6863 . + +nwbib-spatial:Q1625077 + a skos:Concept ; + skos:broader nwbib-spatial:Q11050 ; + skos:inScheme ; + skos:prefLabel "Holpe"@de ; + foaf:focus wd:Q1625077 . + +nwbib-spatial:Q2358130 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Stuckenbusch"@de ; + foaf:focus wd:Q2358130 . + +nwbib-spatial:Q152328 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Breinig"@de ; + foaf:focus wd:Q152328 . + +nwbib-spatial:Q191445 + a skos:Concept ; + skos:broader nwbib-spatial:Q10958 ; + skos:inScheme ; + skos:prefLabel "Zeppenfeld"@de ; + foaf:focus wd:Q191445 . + +nwbib-spatial:Q437637 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Altensturmberg"@de ; + foaf:focus wd:Q437637 . + +nwbib-spatial:Q1677263 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Jackerath"@de ; + foaf:focus wd:Q1677263 . + +nwbib-spatial:Q876263 + a skos:Concept ; + skos:broader nwbib-spatial:Q551600 ; + skos:inScheme ; + skos:prefLabel "Golzheim"@de ; + foaf:focus wd:Q876263 . + +nwbib-spatial:Q1848844 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Oberaußem"@de ; + foaf:focus wd:Q1848844 . + +nwbib-spatial:Q1669317 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Merlsheim"@de ; + foaf:focus wd:Q1669317 . + +nwbib-spatial:Q874918 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Hesselbach"@de ; + foaf:focus wd:Q874918 . + +nwbib-spatial:Q19965807 + a skos:Concept ; + skos:broader nwbib-spatial:Q10936 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q19965807 . + +nwbib-spatial:Q182716 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770012" ; + skos:prefLabel "Hille"@de ; + foaf:focus wd:Q182716 . + +nwbib-spatial:Q6295 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05378" ; + skos:prefLabel "Rheinisch-Bergischer Kreis"@de ; + foaf:focus wd:Q6295 . + +nwbib-spatial:Q1301824 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Eicherscheid"@de ; + foaf:focus wd:Q1301824 . + +nwbib-spatial:Q14833 a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370016" ; + skos:prefLabel "Heinsberg"@de ; + foaf:focus wd:Q14833 . + +nwbib-spatial:Q2048240 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Palmersheim"@de ; + foaf:focus wd:Q2048240 . + +nwbib-spatial:Q7926 a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:notation "051" ; + skos:prefLabel "Regierungsbezirk Düsseldorf"@de ; + foaf:focus wd:Q7926 . + +nwbib-spatial:Q204683 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370032" ; + skos:prefLabel "Waldfeucht"@de ; + foaf:focus wd:Q204683 . + +nwbib-spatial:Q18608587 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Ließem"@de ; + foaf:focus wd:Q18608587 . + +nwbib-spatial:Q2143169 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Remshagen"@de ; + foaf:focus wd:Q2143169 . + +nwbib-spatial:Q1278516 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Ebbesloh"@de ; + foaf:focus wd:Q1278516 . + +nwbib-spatial:Q1669858 + a skos:Concept ; + skos:broader nwbib-spatial:Q1503134 ; + skos:inScheme ; + skos:prefLabel "St. Mauritz"@de ; + foaf:focus wd:Q1669858 . + +nwbib-spatial:Q2256779 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Schwelle"@de ; + foaf:focus wd:Q2256779 . + +nwbib-spatial:Q2563757 + a skos:Concept ; + skos:broader nwbib-spatial:Q163068 ; + skos:inScheme ; + skos:prefLabel "Weselerwald"@de ; + foaf:focus wd:Q2563757 . + +nwbib-spatial:Q47445689 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Schwalm-Nette-Platte"@de ; + foaf:focus wd:Q47445689 . + +nwbib-spatial:Q6842 a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154036" ; + skos:prefLabel "Kleve"@de ; + foaf:focus wd:Q6842 . + +nwbib-spatial:Q50889 a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766060" ; + skos:prefLabel "Schieder-Schwalenberg"@de ; + foaf:focus wd:Q50889 . + +nwbib-spatial:Q968 a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762036" ; + skos:prefLabel "Warburg"@de ; + foaf:focus wd:Q968 . + +nwbib-spatial:Q2555954 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Weingartsgasse"@de ; + foaf:focus wd:Q2555954 . + +nwbib-spatial:Q674702 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de ; + foaf:focus wd:Q674702 . + +nwbib-spatial:Q702826 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Wiehengebirge"@de ; + foaf:focus wd:Q702826 . + +nwbib-spatial:Q1427151 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Flape"@de ; + foaf:focus wd:Q1427151 . + +nwbib-spatial:Q2142006 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Reiste"@de ; + foaf:focus wd:Q2142006 . + +nwbib-spatial:Q865138 + a skos:Concept ; + skos:broader nwbib-spatial:Q204793 ; + skos:inScheme ; + skos:prefLabel "Birgden"@de ; + foaf:focus wd:Q865138 . + +nwbib-spatial:Q897536 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Brambauer"@de ; + foaf:focus wd:Q897536 . + +nwbib-spatial:Q15061766 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Wermingsen"@de ; + foaf:focus wd:Q15061766 . + +nwbib-spatial:Q20826936 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573617 ; + skos:inScheme ; + skos:prefLabel "Norddinker"@de ; + foaf:focus wd:Q20826936 . + +nwbib-spatial:Q1988918 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Niehorst"@de ; + foaf:focus wd:Q1988918 . + +nwbib-spatial:Q55984306 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrlichkeit Heessen"@de ; + foaf:focus wd:Q55984306 . + +nwbib-spatial:Q15126199 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Albringhausen"@de ; + foaf:focus wd:Q15126199 . + +nwbib-spatial:Q823188 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Bernberg"@de ; + foaf:focus wd:Q823188 . + +nwbib-spatial:Q1149817 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Hainchen"@de ; + foaf:focus wd:Q1149817 . + +nwbib-spatial:Q24804026 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Hülsdonk"@de ; + foaf:focus wd:Q24804026 . + +nwbib-spatial:Q2350688 + a skos:Concept ; + skos:broader nwbib-spatial:Q182805 ; + skos:inScheme ; + skos:prefLabel "Stockhausen"@de ; + foaf:focus wd:Q2350688 . + +nwbib-spatial:Q1271362 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Dörpfelderhöhe"@de ; + foaf:focus wd:Q1271362 . + +nwbib-spatial:Q1281637 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Eckesey"@de ; + foaf:focus wd:Q1281637 . + +nwbib-spatial:Q2553859 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Wedau"@de ; + foaf:focus wd:Q2553859 . + +nwbib-spatial:Q1628011 + a skos:Concept ; + skos:broader nwbib-spatial:Q2151315 ; + skos:inScheme ; + skos:prefLabel "Horbach (Aachen)"@de ; + foaf:focus wd:Q1628011 . + +nwbib-spatial:Q1980075 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Neuenkleusheim"@de ; + foaf:focus wd:Q1980075 . + +nwbib-spatial:Q182753 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770016" ; + skos:prefLabel "Hüllhorst"@de ; + foaf:focus wd:Q182753 . + +nwbib-spatial:Q1880342 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Lünen-Süd"@de ; + foaf:focus wd:Q1880342 . + +nwbib-spatial:Q1618134 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Hilberath"@de ; + foaf:focus wd:Q1618134 . + +nwbib-spatial:Q1805078 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Oberelspe"@de ; + foaf:focus wd:Q1805078 . + +nwbib-spatial:Q15122771 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Neukirchen (Rheinbach)"@de ; + foaf:focus wd:Q15122771 . + +nwbib-spatial:Q2310669 + a skos:Concept ; + skos:broader nwbib-spatial:Q200177 ; + skos:inScheme ; + skos:prefLabel "Oeding"@de ; + foaf:focus wd:Q2310669 . + +nwbib-spatial:Q1998045 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Nordhemmern"@de ; + foaf:focus wd:Q1998045 . + +nwbib-spatial:Q2100603 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Pohlhausen"@de ; + foaf:focus wd:Q2100603 . + +nwbib-spatial:Q153428 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Weisweiler"@de ; + foaf:focus wd:Q153428 . + +nwbib-spatial:Q14870 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382060" ; + skos:prefLabel "Siegburg"@de ; + foaf:focus wd:Q14870 . + +nwbib-spatial:Q66132704 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Wissen"@de ; + foaf:focus wd:Q66132704 . + +nwbib-spatial:Q255235 + a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162028" ; + skos:prefLabel "Rommerskirchen"@de ; + foaf:focus wd:Q255235 . + +nwbib-spatial:Q835981 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Flamersheim"@de ; + foaf:focus wd:Q835981 . + +nwbib-spatial:Q829778 + a skos:Concept ; + skos:broader nwbib-spatial:Q53901 ; + skos:inScheme ; + skos:prefLabel "Besenkamp"@de ; + foaf:focus wd:Q829778 . + +nwbib-spatial:Q1250712 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Westerfilde"@de ; + foaf:focus wd:Q1250712 . + +nwbib-spatial:Q948181 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Mariadorf"@de ; + foaf:focus wd:Q948181 . + +nwbib-spatial:Q1304126 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Eilpe"@de ; + foaf:focus wd:Q1304126 . + +nwbib-spatial:Q1390078 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Kleinenbreden"@de ; + foaf:focus wd:Q1390078 . + +nwbib-spatial:Q241866 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762040" ; + skos:prefLabel "Willebadessen"@de ; + foaf:focus wd:Q241866 . + +nwbib-spatial:Q1701768 + a skos:Concept ; + skos:broader nwbib-spatial:Q10958 ; + skos:inScheme ; + skos:prefLabel "Wiederstein"@de ; + foaf:focus wd:Q1701768 . + +nwbib-spatial:Q6253 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05162" ; + skos:prefLabel "Rhein-Kreis Neuss"@de ; + foaf:focus wd:Q6253 . + +nwbib-spatial:Q1464902 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Frille"@de ; + foaf:focus wd:Q1464902 . + +nwbib-spatial:Q1652590 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Hüttenheim"@de ; + foaf:focus wd:Q1652590 . + +nwbib-spatial:Q2286101 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Silixen"@de ; + foaf:focus wd:Q2286101 . + +nwbib-spatial:Q59261814 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Siegen-West"@de ; + foaf:focus wd:Q59261814 . + +nwbib-spatial:Q992110 + a skos:Concept ; + skos:broader nwbib-spatial:Q163017 ; + skos:inScheme ; + skos:prefLabel "Bruckhausen"@de ; + foaf:focus wd:Q992110 . + +nwbib-spatial:Q5567 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962012" ; + skos:prefLabel "Halver"@de ; + foaf:focus wd:Q5567 . + +nwbib-spatial:Q1824210 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Lieme"@de ; + foaf:focus wd:Q1824210 . + +nwbib-spatial:Q200581 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554048" ; + skos:prefLabel "Rhede"@de ; + foaf:focus wd:Q200581 . + +nwbib-spatial:Q1557491 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Lohn (bis 1982)"@de ; + foaf:focus wd:Q1557491 . + +nwbib-spatial:Q2740 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570040" ; + skos:prefLabel "Sendenhorst"@de ; + foaf:focus wd:Q2740 . + +nwbib-spatial:Q1551363 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Nonnenbach"@de ; + foaf:focus wd:Q1551363 . + +nwbib-spatial:Q19965738 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573614 ; + skos:inScheme ; + skos:prefLabel "Sandbochum"@de ; + foaf:focus wd:Q19965738 . + +nwbib-spatial:Q863347 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Bilstein"@de ; + foaf:focus wd:Q863347 . + +nwbib-spatial:Q1821149 + a skos:Concept ; + skos:broader nwbib-spatial:Q2752 ; + skos:inScheme ; + skos:prefLabel "Lette"@de ; + foaf:focus wd:Q1821149 . + +nwbib-spatial:Q814280 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Begau"@de ; + foaf:focus wd:Q814280 . + +nwbib-spatial:Q2281440 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Sichtigvor"@de ; + foaf:focus wd:Q2281440 . + +nwbib-spatial:Q1120297 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Haaren"@de ; + foaf:focus wd:Q1120297 . + +nwbib-spatial:Q767106 + a skos:Concept ; + skos:broader nwbib-spatial:N13 ; + skos:inScheme ; + skos:prefLabel "Senne"@de ; + foaf:focus wd:Q767106 . + +nwbib-spatial:Q2282582 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Siedlinghausen"@de ; + foaf:focus wd:Q2282582 . + +nwbib-spatial:Q1157420 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Dahl"@de ; + foaf:focus wd:Q1157420 . + +nwbib-spatial:Q1250606 + a skos:Concept ; + skos:broader nwbib-spatial:Q1369141 ; + skos:inScheme ; + skos:prefLabel "Ellinghausen"@de ; + foaf:focus wd:Q1250606 . + +nwbib-spatial:Q876741 + a skos:Concept ; + skos:broader nwbib-spatial:Q5644 ; + skos:inScheme ; + skos:prefLabel "Liesen"@de ; + foaf:focus wd:Q876741 . + +nwbib-spatial:Q545414 + a skos:Concept ; + skos:broader nwbib-spatial:Q200602 ; + skos:inScheme ; + skos:prefLabel "Anholt"@de ; + foaf:focus wd:Q545414 . + +nwbib-spatial:Q1699153 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Wachendorf"@de ; + foaf:focus wd:Q1699153 . + +nwbib-spatial:Q999517 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Odenspiel"@de ; + foaf:focus wd:Q999517 . + +nwbib-spatial:Q107451916 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Hörn"@de ; + foaf:focus wd:Q107451916 . + +nwbib-spatial:Q576096 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Derschlag"@de ; + foaf:focus wd:Q576096 . + +nwbib-spatial:Q1805036 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Langendorf"@de ; + foaf:focus wd:Q1805036 . + +nwbib-spatial:Q47012334 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Knechtsteden"@de ; + foaf:focus wd:Q47012334 . + +nwbib-spatial:Q2147850 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Rheinkamp"@de ; + foaf:focus wd:Q2147850 . + +nwbib-spatial:Q1494780 + a skos:Concept ; + skos:broader nwbib-spatial:Q163017 ; + skos:inScheme ; + skos:prefLabel "Gartrop-Bühl"@de ; + foaf:focus wd:Q1494780 . + +nwbib-spatial:Q1343678 + a skos:Concept ; + skos:broader nwbib-spatial:Q183374 ; + skos:inScheme ; + skos:prefLabel "Nordborchen"@de ; + foaf:focus wd:Q1343678 . + +nwbib-spatial:Q1546849 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Grimlinghausen"@de ; + foaf:focus wd:Q1546849 . + +nwbib-spatial:Q1359899 + a skos:Concept ; + skos:broader nwbib-spatial:Q182979 ; + skos:inScheme ; + skos:prefLabel "Varl"@de ; + foaf:focus wd:Q1359899 . + +nwbib-spatial:Q819461 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Berge"@de ; + foaf:focus wd:Q819461 . + +nwbib-spatial:Q1250664 + a skos:Concept ; + skos:broader nwbib-spatial:Q17542219 ; + skos:inScheme ; + skos:prefLabel "Löttringhausen"@de ; + foaf:focus wd:Q1250664 . + +nwbib-spatial:Q2563752 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Weseke"@de ; + foaf:focus wd:Q2563752 . + +nwbib-spatial:Q1645504 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138211 ; + skos:inScheme ; + skos:prefLabel "Quelle"@de ; + foaf:focus wd:Q1645504 . + +nwbib-spatial:Q865701 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Birlinghoven"@de ; + foaf:focus wd:Q865701 . + +nwbib-spatial:Q829253 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Berwicke"@de ; + foaf:focus wd:Q829253 . + +nwbib-spatial:Q896058 + a skos:Concept ; + skos:broader nwbib-spatial:N10 ; + skos:inScheme ; + skos:prefLabel "Hellwegbörden"@de ; + foaf:focus wd:Q896058 . + +nwbib-spatial:Q1250579 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326741 ; + skos:inScheme ; + skos:prefLabel "Asseln"@de ; + foaf:focus wd:Q1250579 . + +nwbib-spatial:Q2141962 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Reisholz"@de ; + foaf:focus wd:Q2141962 . + +nwbib-spatial:Q1459702 + a skos:Concept ; + skos:broader nwbib-spatial:Q884493 ; + skos:inScheme ; + skos:prefLabel "Kirchdornberg"@de ; + foaf:focus wd:Q1459702 . + +nwbib-spatial:Q1499818 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140398 ; + skos:inScheme ; + skos:prefLabel "Ückendorf"@de ; + foaf:focus wd:Q1499818 . + +nwbib-spatial:Q2420842 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Thier"@de ; + foaf:focus wd:Q2420842 . + +nwbib-spatial:Q153444 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Kettwig"@de ; + foaf:focus wd:Q153444 . + +nwbib-spatial:Q56033157 + a skos:Concept ; + skos:broader nwbib-spatial:Q1700 ; + skos:inScheme ; + skos:prefLabel "Nordmünsterland"@de ; + foaf:focus wd:Q56033157 . + +nwbib-spatial:Q2066 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05113" ; + skos:prefLabel "Essen"@de ; + foaf:focus wd:Q2066 . + +nwbib-spatial:Q923730 + a skos:Concept ; + skos:broader nwbib-spatial:Q225002 ; + skos:inScheme ; + skos:prefLabel "Brockhagen"@de ; + foaf:focus wd:Q923730 . + +nwbib-spatial:Q955320 + a skos:Concept ; + skos:broader nwbib-spatial:Q4113 ; + skos:inScheme ; + skos:prefLabel "Sinnersdorf"@de ; + foaf:focus wd:Q955320 . + +nwbib-spatial:Q1245570 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Dornap"@de ; + foaf:focus wd:Q1245570 . + +nwbib-spatial:Q1787485 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Ruhrort (bis 1909)"@de ; + foaf:focus wd:Q1787485 . + +nwbib-spatial:Q23854151 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Borkenwirthe"@de ; + foaf:focus wd:Q23854151 . + +nwbib-spatial:Q2050612 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Papenhausen"@de ; + foaf:focus wd:Q2050612 . + +nwbib-spatial:Q910400 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Stockheim"@de ; + foaf:focus wd:Q910400 . + +nwbib-spatial:Q1464207 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Friedrichsdorf"@de ; + foaf:focus wd:Q1464207 . + +nwbib-spatial:Q1014705 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Burg an der Wupper"@de ; + foaf:focus wd:Q1014705 . + +nwbib-spatial:Q1315076 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Alchen"@de ; + foaf:focus wd:Q1315076 . + +nwbib-spatial:Q3840 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158032" ; + skos:prefLabel "Velbert"@de ; + foaf:focus wd:Q3840 . + +nwbib-spatial:Q2008888 + a skos:Concept ; + skos:broader nwbib-spatial:Q4192 ; + skos:inScheme ; + skos:prefLabel "Oberaden"@de ; + foaf:focus wd:Q2008888 . + +nwbib-spatial:Q1564083 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Sistig"@de ; + foaf:focus wd:Q1564083 . + +nwbib-spatial:Q1531266 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Gleuel"@de ; + foaf:focus wd:Q1531266 . + +nwbib-spatial:Q30011679 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Sendschotten"@de ; + foaf:focus wd:Q30011679 . + +nwbib-spatial:Q317255 + a skos:Concept ; + skos:broader nwbib-spatial:Q2752 ; + skos:inScheme ; + skos:prefLabel "Stromberg"@de ; + foaf:focus wd:Q317255 . + +nwbib-spatial:Q639130 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Immendorf"@de ; + foaf:focus wd:Q639130 . + +nwbib-spatial:Q1805073 + a skos:Concept ; + skos:broader nwbib-spatial:Q181673 ; + skos:inScheme ; + skos:prefLabel "Langenhorst"@de ; + foaf:focus wd:Q1805073 . + +nwbib-spatial:Q1410637 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Laaspherhütte"@de ; + foaf:focus wd:Q1410637 . + +nwbib-spatial:Q1263809 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Methler"@de ; + foaf:focus wd:Q1263809 . + +nwbib-spatial:Q199968 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358004" ; + skos:prefLabel "Aldenhoven"@de ; + foaf:focus wd:Q199968 . + +nwbib-spatial:Q1956573 + a skos:Concept ; + skos:broader nwbib-spatial:Q204919 ; + skos:inScheme ; + skos:prefLabel "Myhl"@de ; + foaf:focus wd:Q1956573 . + +nwbib-spatial:Q241235 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366008" ; + skos:prefLabel "Blankenheim"@de ; + foaf:focus wd:Q241235 . + +nwbib-spatial:Q1880735 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Altenhof"@de ; + foaf:focus wd:Q1880735 . + +nwbib-spatial:Q1710714 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Niederwenigern"@de ; + foaf:focus wd:Q1710714 . + +nwbib-spatial:Q1737328 + a skos:Concept ; + skos:broader nwbib-spatial:Q182286 ; + skos:inScheme ; + skos:prefLabel "Steinbeck"@de ; + foaf:focus wd:Q1737328 . + +nwbib-spatial:Q2567764 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Widdig"@de ; + foaf:focus wd:Q2567764 . + +nwbib-spatial:Q2564788 + a skos:Concept ; + skos:broader nwbib-spatial:Q3985 ; + skos:inScheme ; + skos:prefLabel "Westerholt"@de ; + foaf:focus wd:Q2564788 . + +nwbib-spatial:Q1523281 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Gierath"@de ; + foaf:focus wd:Q1523281 . + +nwbib-spatial:Q568552 + a skos:Concept ; + skos:broader nwbib-spatial:Q4171 ; + skos:inScheme ; + skos:prefLabel "Anrath"@de ; + foaf:focus wd:Q568552 . + +nwbib-spatial:Q857786 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Bierde"@de ; + foaf:focus wd:Q857786 . + +nwbib-spatial:Q19965669 + a skos:Concept ; + skos:broader nwbib-spatial:Q10941 ; + skos:inScheme ; + skos:prefLabel "Opherdicke"@de ; + foaf:focus wd:Q19965669 . + +nwbib-spatial:Q2341568 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Steinscheid"@de ; + foaf:focus wd:Q2341568 . + +nwbib-spatial:Q1300061 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Nordenau"@de ; + foaf:focus wd:Q1300061 . + +nwbib-spatial:Q1827032 + a skos:Concept ; + skos:broader nwbib-spatial:Q6896 ; + skos:inScheme ; + skos:prefLabel "Lintel"@de ; + foaf:focus wd:Q1827032 . + +nwbib-spatial:Q6163 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05978" ; + skos:prefLabel "Kreis Unna"@de ; + foaf:focus wd:Q6163 . + +nwbib-spatial:Q2563710 + a skos:Concept ; + skos:broader nwbib-spatial:Q1017 ; + skos:inScheme ; + skos:prefLabel "Kornelimünster/Walheim (Stadtbezirk)"@de ; + foaf:focus wd:Q2563710 . + +nwbib-spatial:Q198799 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Ziegenhardt"@de ; + foaf:focus wd:Q198799 . + +nwbib-spatial:Q2552606 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Watern"@de ; + foaf:focus wd:Q2552606 . + +nwbib-spatial:Q572216 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Antfeld"@de ; + foaf:focus wd:Q572216 . + +nwbib-spatial:Q1667977 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Kirchveischede"@de ; + foaf:focus wd:Q1667977 . + +nwbib-spatial:Q2340484 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Steinenbrück"@de ; + foaf:focus wd:Q2340484 . + +nwbib-spatial:Q2099544 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Plittersdorf"@de ; + foaf:focus wd:Q2099544 . + +nwbib-spatial:Q1795729 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Wildenrath"@de ; + foaf:focus wd:Q1795729 . + +nwbib-spatial:Q1817702 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Lenhausen"@de ; + foaf:focus wd:Q1817702 . + +nwbib-spatial:Q2559393 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Wenholthausen"@de ; + foaf:focus wd:Q2559393 . + +nwbib-spatial:Q1760203 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Stieldorferhohn"@de ; + foaf:focus wd:Q1760203 . + +nwbib-spatial:Q1236434 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Hatzfeld"@de ; + foaf:focus wd:Q1236434 . + +nwbib-spatial:Q2167125 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Rosenhagen"@de ; + foaf:focus wd:Q2167125 . + +nwbib-spatial:Q1980590 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Neuhaus"@de ; + foaf:focus wd:Q1980590 . + +nwbib-spatial:Q745683 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Sieglar"@de ; + foaf:focus wd:Q745683 . + +nwbib-spatial:Q1322719 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Iserlohn (bis 1974)"@de ; + foaf:focus wd:Q1322719 . + +nwbib-spatial:Q1250595 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Bövinghausen"@de ; + foaf:focus wd:Q1250595 . + +nwbib-spatial:Q1340782 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Endorf"@de ; + foaf:focus wd:Q1340782 . + +nwbib-spatial:Q1333255 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Elpe"@de ; + foaf:focus wd:Q1333255 . + +nwbib-spatial:Q2533842 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Voreifel"@de ; + foaf:focus wd:Q2533842 . + +nwbib-spatial:Q1644208 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Hönnetal"@de ; + foaf:focus wd:Q1644208 . + +nwbib-spatial:Q925346 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Broicher Siedlung"@de ; + foaf:focus wd:Q925346 . + +nwbib-spatial:Q2585095 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Winterscheid"@de ; + foaf:focus wd:Q2585095 . + +nwbib-spatial:Q2120997 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Pützlohn"@de ; + foaf:focus wd:Q2120997 . + +nwbib-spatial:Q1612761 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Sögtrop"@de ; + foaf:focus wd:Q1612761 . + +nwbib-spatial:Q1570739 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Haldem"@de ; + foaf:focus wd:Q1570739 . + +nwbib-spatial:Q19968056 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Hofolpe"@de ; + foaf:focus wd:Q19968056 . + +nwbib-spatial:Q1539317 + a skos:Concept ; + skos:broader nwbib-spatial:Q182286 ; + skos:inScheme ; + skos:prefLabel "Obersteinbeck"@de ; + foaf:focus wd:Q1539317 . + +nwbib-spatial:Q1743182 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Liedberg"@de ; + foaf:focus wd:Q1743182 . + +nwbib-spatial:Q1236413 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Hundesossen"@de ; + foaf:focus wd:Q1236413 . + +nwbib-spatial:Q11136 a skos:Concept ; + skos:broader nwbib-spatial:Q5965 ; + skos:inScheme ; + skos:notation "05974024" ; + skos:prefLabel "Lippetal"@de ; + foaf:focus wd:Q11136 . + +nwbib-spatial:Q1880210 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Lückert"@de ; + foaf:focus wd:Q1880210 . + +nwbib-spatial:Q1258126 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Dreislar"@de ; + foaf:focus wd:Q1258126 . + +nwbib-spatial:Q1659971 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Immekeppel"@de ; + foaf:focus wd:Q1659971 . + +nwbib-spatial:Q808352 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Barmen"@de ; + foaf:focus wd:Q808352 . + +nwbib-spatial:Q1508869 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Oberbarmen-Schwarzbach"@de ; + foaf:focus wd:Q1508869 . + +nwbib-spatial:Q895935 + a skos:Concept ; + skos:broader nwbib-spatial:Q3641512 ; + skos:inScheme ; + skos:prefLabel "Querenburg"@de ; + foaf:focus wd:Q895935 . + +nwbib-spatial:Q320896 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 2 (Düsseldorf)"@de ; + foaf:focus wd:Q320896 . + +nwbib-spatial:Q1795766 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Müngersdorf"@de ; + foaf:focus wd:Q1795766 . + +nwbib-spatial:Q1650083 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Ranzel"@de ; + foaf:focus wd:Q1650083 . + +nwbib-spatial:Q1499813 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140358 ; + skos:inScheme ; + skos:prefLabel "Resser Mark"@de ; + foaf:focus wd:Q1499813 . + +nwbib-spatial:Q1272287 + a skos:Concept ; + skos:broader nwbib-spatial:Q161729 ; + skos:inScheme ; + skos:prefLabel "Düssel"@de ; + foaf:focus wd:Q1272287 . + +nwbib-spatial:Q55587313 + a skos:Concept ; + skos:broader nwbib-spatial:Q10936 ; + skos:inScheme ; + skos:prefLabel "Horst"@de ; + foaf:focus wd:Q55587313 . + +nwbib-spatial:Q3771 a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754008" ; + skos:prefLabel "Gütersloh"@de ; + foaf:focus wd:Q3771 . + +nwbib-spatial:Q1675881 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Lüxheim"@de ; + foaf:focus wd:Q1675881 . + +nwbib-spatial:Q56008513 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Hehler"@de ; + foaf:focus wd:Q56008513 . + +nwbib-spatial:Q1674171 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Sabbenhausen"@de ; + foaf:focus wd:Q1674171 . + +nwbib-spatial:Q908246 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Bremscheid"@de ; + foaf:focus wd:Q908246 . + +nwbib-spatial:Q144078 + a skos:Concept ; + skos:broader nwbib-spatial:Q14956 ; + skos:inScheme ; + skos:prefLabel "Urfeld"@de ; + foaf:focus wd:Q144078 . + +nwbib-spatial:Q314660 + a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:prefLabel "Neheim-Hüsten"@de ; + foaf:focus wd:Q314660 . + +nwbib-spatial:Q2517258 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Verne"@de ; + foaf:focus wd:Q2517258 . + +nwbib-spatial:Q1515749 + a skos:Concept ; + skos:broader nwbib-spatial:Q1232709 ; + skos:inScheme ; + skos:prefLabel "Heidt"@de ; + foaf:focus wd:Q1515749 . + +nwbib-spatial:Q1019902 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Bönkhausen"@de ; + foaf:focus wd:Q1019902 . + +nwbib-spatial:Q47200394 + a skos:Concept ; + skos:broader nwbib-spatial:Q6910 ; + skos:inScheme ; + skos:prefLabel "Weddern"@de ; + foaf:focus wd:Q47200394 . + +nwbib-spatial:Q19687953 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Wandhofen"@de ; + foaf:focus wd:Q19687953 . + +nwbib-spatial:Q16830973 + a skos:Concept ; + skos:broader nwbib-spatial:Q2794 ; + skos:inScheme ; + skos:prefLabel "Dackmar"@de ; + foaf:focus wd:Q16830973 . + +nwbib-spatial:Q288376 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Massen"@de ; + foaf:focus wd:Q288376 . + +nwbib-spatial:Q1573609 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Pelkum"@de ; + foaf:focus wd:Q1573609 . + +nwbib-spatial:Q2168708 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Rothenuffeln"@de ; + foaf:focus wd:Q2168708 . + +nwbib-spatial:Q1328322 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Köttingen"@de ; + foaf:focus wd:Q1328322 . + +nwbib-spatial:Q1977321 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Nenkersdorf"@de ; + foaf:focus wd:Q1977321 . + +nwbib-spatial:Q1959100 + a skos:Concept ; + skos:broader nwbib-spatial:Q1318888 ; + skos:inScheme ; + skos:prefLabel "Häger"@de ; + foaf:focus wd:Q1959100 . + +nwbib-spatial:Q65945133 + a skos:Concept ; + skos:broader nwbib-spatial:Q14895 ; + skos:inScheme ; + skos:prefLabel "Rossenray"@de ; + foaf:focus wd:Q65945133 . + +nwbib-spatial:Q163772 + a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166008" ; + skos:prefLabel "Grefrath"@de ; + foaf:focus wd:Q163772 . + +nwbib-spatial:Q1752653 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Weninghausen"@de ; + foaf:focus wd:Q1752653 . + +nwbib-spatial:Q1019817 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Böingsen"@de ; + foaf:focus wd:Q1019817 . + +nwbib-spatial:Q684314 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Bistum Aachen"@de ; + foaf:focus wd:Q684314 . + +nwbib-spatial:Q1573752 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Neuß (bis 1929)"@de ; + foaf:focus wd:Q1573752 . + +nwbib-spatial:Q1587121 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Kreuzkapelle"@de ; + foaf:focus wd:Q1587121 . + +nwbib-spatial:Q23906455 + a skos:Concept ; + skos:broader nwbib-spatial:Q200208 ; + skos:inScheme ; + skos:prefLabel "Groß Reken"@de ; + foaf:focus wd:Q23906455 . + +nwbib-spatial:Q1577244 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Propach"@de ; + foaf:focus wd:Q1577244 . + +nwbib-spatial:Q15123675 + a skos:Concept ; + skos:broader nwbib-spatial:Q182018 ; + skos:inScheme ; + skos:prefLabel "Osterberg"@de ; + foaf:focus wd:Q15123675 . + +nwbib-spatial:Q6015 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958044" ; + skos:prefLabel "Sundern (Sauerland)"@de ; + foaf:focus wd:Q6015 . + +nwbib-spatial:Q1372871 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Siegkreis (bis 1969)"@de ; + foaf:focus wd:Q1372871 . + +nwbib-spatial:Q2235530 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138732 ; + skos:inScheme ; + skos:prefLabel "Schildesche"@de ; + foaf:focus wd:Q2235530 . + +nwbib-spatial:Q60330651 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Bonnenbroich‑Geneicken"@de ; + foaf:focus wd:Q60330651 . + +nwbib-spatial:Q163125 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Randerath"@de ; + foaf:focus wd:Q163125 . + +nwbib-spatial:Q1787374 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Lechenich (bis 1827)"@de ; + foaf:focus wd:Q1787374 . + +nwbib-spatial:Q1621910 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Hochkirchen"@de ; + foaf:focus wd:Q1621910 . + +nwbib-spatial:Q995951 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Brück"@de ; + foaf:focus wd:Q995951 . + +nwbib-spatial:Q1453703 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Rheinen"@de ; + foaf:focus wd:Q1453703 . + +nwbib-spatial:Q3097 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05120" ; + skos:prefLabel "Remscheid"@de ; + foaf:focus wd:Q3097 . + +nwbib-spatial:Q469728 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Hachen"@de ; + foaf:focus wd:Q469728 . + +nwbib-spatial:Q57327312 + a skos:Concept ; + skos:broader nwbib-spatial:Q243079 ; + skos:inScheme ; + skos:prefLabel "Vorselaer"@de ; + foaf:focus wd:Q57327312 . + +nwbib-spatial:Q1742454 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Kirchberg (Jülich)"@de ; + foaf:focus wd:Q1742454 . + +nwbib-spatial:Q1507743 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Rebbeke"@de ; + foaf:focus wd:Q1507743 . + +nwbib-spatial:Q2569338 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573609 ; + skos:inScheme ; + skos:prefLabel "Wiescherhöfen"@de ; + foaf:focus wd:Q2569338 . + +nwbib-spatial:Q326089 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Gräfrath"@de ; + foaf:focus wd:Q326089 . + +nwbib-spatial:Q14400001 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Sange"@de ; + foaf:focus wd:Q14400001 . + +nwbib-spatial:Q1746572 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Kleinenbremen"@de ; + foaf:focus wd:Q1746572 . + +nwbib-spatial:Q257828 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Frintrop"@de ; + foaf:focus wd:Q257828 . + +nwbib-spatial:Q1709198 + a skos:Concept ; + skos:broader nwbib-spatial:Q225120 ; + skos:inScheme ; + skos:prefLabel "Möhler"@de ; + foaf:focus wd:Q1709198 . + +nwbib-spatial:Q1522909 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Scharmede"@de ; + foaf:focus wd:Q1522909 . + +nwbib-spatial:Q2500388 + a skos:Concept ; + skos:broader nwbib-spatial:Q323577 ; + skos:inScheme ; + skos:prefLabel "Urdenbach"@de ; + foaf:focus wd:Q2500388 . + +nwbib-spatial:Q10949 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970020" ; + skos:prefLabel "Hilchenbach"@de ; + foaf:focus wd:Q10949 . + +nwbib-spatial:Q1921817 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Merklinde"@de ; + foaf:focus wd:Q1921817 . + +nwbib-spatial:Q908119 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Bremke"@de ; + foaf:focus wd:Q908119 . + +nwbib-spatial:Q1664975 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Unterbarmen"@de ; + foaf:focus wd:Q1664975 . + +nwbib-spatial:Q1795703 + a skos:Concept ; + skos:broader nwbib-spatial:Q225774 ; + skos:inScheme ; + skos:prefLabel "Kölkebeck"@de ; + foaf:focus wd:Q1795703 . + +nwbib-spatial:Q2586721 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q2586721 . + +nwbib-spatial:Q1233107 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Fettehenne"@de ; + foaf:focus wd:Q1233107 . + +nwbib-spatial:Q769380 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Bistum Münster"@de ; + foaf:focus wd:Q769380 . + +nwbib-spatial:Q2526225 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Villip"@de ; + foaf:focus wd:Q2526225 . + +nwbib-spatial:Q2137735 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Winnekendonk"@de ; + foaf:focus wd:Q2137735 . + +nwbib-spatial:Q1545612 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Kriegsdorf"@de ; + foaf:focus wd:Q1545612 . + +nwbib-spatial:Q595227 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Lindweiler"@de ; + foaf:focus wd:Q595227 . + +nwbib-spatial:Q19279706 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Forsten"@de ; + foaf:focus wd:Q19279706 . + +nwbib-spatial:Q1271623 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Düdinghausen"@de ; + foaf:focus wd:Q1271623 . + +nwbib-spatial:Q814021 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Beeck"@de ; + foaf:focus wd:Q814021 . + +nwbib-spatial:Q54803603 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk VII (Essen)"@de ; + foaf:focus wd:Q54803603 . + +nwbib-spatial:Q896929 + a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:prefLabel "Regierungsbezirk Aachen (bis 1972)"@de ; + foaf:focus wd:Q896929 . + +nwbib-spatial:Q1648862 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Katterbach"@de ; + foaf:focus wd:Q1648862 . + +nwbib-spatial:Q1795761 + a skos:Concept ; + skos:broader nwbib-spatial:Q766190 ; + skos:inScheme ; + skos:prefLabel "Marsdorf"@de ; + foaf:focus wd:Q1795761 . + +nwbib-spatial:Q2791950 + a skos:Concept ; + skos:broader nwbib-spatial:Q453 ; + skos:inScheme ; + skos:prefLabel "Gemen"@de ; + foaf:focus wd:Q2791950 . + +nwbib-spatial:Q11046 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374008" ; + skos:prefLabel "Engelskirchen"@de ; + foaf:focus wd:Q11046 . + +nwbib-spatial:Q10928 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958008" ; + skos:prefLabel "Bestwig"@de ; + foaf:focus wd:Q10928 . + +nwbib-spatial:Q29282808 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Winterberg"@de ; + foaf:focus wd:Q29282808 . + +nwbib-spatial:Q15815893 + a skos:Concept ; + skos:broader nwbib-spatial:Q14878 ; + skos:inScheme ; + skos:prefLabel "Obschwarzbach"@de ; + foaf:focus wd:Q15815893 . + +nwbib-spatial:Q1790957 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Kuchem"@de ; + foaf:focus wd:Q1790957 . + +nwbib-spatial:Q153206 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Venwegen"@de ; + foaf:focus wd:Q153206 . + +nwbib-spatial:Q2142866 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Remblinghausen"@de ; + foaf:focus wd:Q2142866 . + +nwbib-spatial:Q1499723 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Gellep-Stratum"@de ; + foaf:focus wd:Q1499723 . + +nwbib-spatial:Q402865 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Ahrhütte"@de ; + foaf:focus wd:Q402865 . + +nwbib-spatial:Q1366985 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Eschenbach"@de ; + foaf:focus wd:Q1366985 . + +nwbib-spatial:Q153747 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Dottendorf"@de ; + foaf:focus wd:Q153747 . + +nwbib-spatial:Q777806 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Kalkar"@de ; + foaf:focus wd:Q777806 . + +nwbib-spatial:Q7088 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162016" ; + skos:prefLabel "Kaarst"@de ; + foaf:focus wd:Q7088 . + +nwbib-spatial:Q1476033 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Langenberg (Rheinland)"@de ; + foaf:focus wd:Q1476033 . + +nwbib-spatial:Q56005590 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Wittgenstein (bis 1357)"@de ; + foaf:focus wd:Q56005590 . + +nwbib-spatial:Q2023418 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Ommerborn"@de ; + foaf:focus wd:Q2023418 . + +nwbib-spatial:Q1529028 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Gladbach"@de ; + foaf:focus wd:Q1529028 . + +nwbib-spatial:Q182510 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566096" ; + skos:prefLabel "Wettringen"@de ; + foaf:focus wd:Q182510 . + +nwbib-spatial:Q458242 + a skos:Concept ; + skos:broader nwbib-spatial:Q365 ; + skos:inScheme ; + skos:prefLabel "Porz (Stadtbezirk)"@de ; + foaf:focus wd:Q458242 . + +nwbib-spatial:Q1272261 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Dürwiß"@de ; + foaf:focus wd:Q1272261 . + +nwbib-spatial:Q819743 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Bergheim"@de ; + foaf:focus wd:Q819743 . + +nwbib-spatial:Q2268676 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Selsten"@de ; + foaf:focus wd:Q2268676 . + +nwbib-spatial:Q1368649 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803598 ; + skos:inScheme ; + skos:prefLabel "Stadtwald"@de ; + foaf:focus wd:Q1368649 . + +nwbib-spatial:Q2009315 + a skos:Concept ; + skos:broader nwbib-spatial:Q10952 ; + skos:inScheme ; + skos:prefLabel "Oberdresselndorf"@de ; + foaf:focus wd:Q2009315 . + +nwbib-spatial:Q877120 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Küdinghoven"@de ; + foaf:focus wd:Q877120 . + +nwbib-spatial:Q1242335 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Stotzheim"@de ; + foaf:focus wd:Q1242335 . + +nwbib-spatial:Q1737716 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Keeken"@de ; + foaf:focus wd:Q1737716 . + +nwbib-spatial:Q1593632 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Heesfeld"@de ; + foaf:focus wd:Q1593632 . + +nwbib-spatial:Q15063871 + a skos:Concept ; + skos:broader nwbib-spatial:Q14901 ; + skos:inScheme ; + skos:prefLabel "Grevenberg"@de ; + foaf:focus wd:Q15063871 . + +nwbib-spatial:Q253784 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382064" ; + skos:prefLabel "Swisttal"@de ; + foaf:focus wd:Q253784 . + +nwbib-spatial:Q56006170 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Mülfort"@de ; + foaf:focus wd:Q56006170 . + +nwbib-spatial:Q932656 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Rheda (bis 1808)"@de ; + foaf:focus wd:Q932656 . + +nwbib-spatial:Q257276 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803599 ; + skos:inScheme ; + skos:prefLabel "Frohnhausen"@de ; + foaf:focus wd:Q257276 . + +nwbib-spatial:Q1496158 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Leuscheid"@de ; + foaf:focus wd:Q1496158 . + +nwbib-spatial:Q458704 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Ambrock"@de ; + foaf:focus wd:Q458704 . + +nwbib-spatial:Q1146720 + a skos:Concept ; + skos:broader nwbib-spatial:Q182691 ; + skos:inScheme ; + skos:prefLabel "Fiestel"@de ; + foaf:focus wd:Q1146720 . + +nwbib-spatial:Q1300847 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Gehrden"@de ; + foaf:focus wd:Q1300847 . + +nwbib-spatial:Q2974 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158008" ; + skos:prefLabel "Haan"@de ; + foaf:focus wd:Q2974 . + +nwbib-spatial:Q1413348 + a skos:Concept ; + skos:broader nwbib-spatial:Q323607 ; + skos:inScheme ; + skos:prefLabel "Niederkassel"@de ; + foaf:focus wd:Q1413348 . + +nwbib-spatial:Q47462240 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Schwelm"@de ; + foaf:focus wd:Q47462240 . + +nwbib-spatial:Q1376273 + a skos:Concept ; + skos:broader nwbib-spatial:Q11052 ; + skos:inScheme ; + skos:prefLabel "Heide"@de ; + foaf:focus wd:Q1376273 . + +nwbib-spatial:Q334616 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Ückerath"@de ; + foaf:focus wd:Q334616 . + +nwbib-spatial:Q2557412 + a skos:Concept ; + skos:broader nwbib-spatial:Q181673 ; + skos:inScheme ; + skos:prefLabel "Welbergen"@de ; + foaf:focus wd:Q2557412 . + +nwbib-spatial:Q1739523 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Lübbecke (bis 1972)"@de ; + foaf:focus wd:Q1739523 . + +nwbib-spatial:Q15080303 + a skos:Concept ; + skos:broader nwbib-spatial:Q11340 ; + skos:inScheme ; + skos:prefLabel "Niedersprockhövel"@de ; + foaf:focus wd:Q15080303 . + +nwbib-spatial:Q59138453 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Jöllenbeck"@de ; + foaf:focus wd:Q59138453 . + +nwbib-spatial:Q26696033 + a skos:Concept ; + skos:broader nwbib-spatial:Q314660 ; + skos:inScheme ; + skos:prefLabel "Neheim"@de ; + foaf:focus wd:Q26696033 . + +nwbib-spatial:Q1282032 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Kükenbruch"@de ; + foaf:focus wd:Q1282032 . + +nwbib-spatial:Q15052205 + a skos:Concept ; + skos:broader nwbib-spatial:Q204793 ; + skos:inScheme ; + skos:prefLabel "Breberen"@de ; + foaf:focus wd:Q15052205 . + +nwbib-spatial:Q1184042 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Delecke"@de ; + foaf:focus wd:Q1184042 . + +nwbib-spatial:Q1307856 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Laffeld"@de ; + foaf:focus wd:Q1307856 . + +nwbib-spatial:Q10944 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970004" ; + skos:prefLabel "Bad Berleburg"@de ; + foaf:focus wd:Q10944 . + +nwbib-spatial:Q1664344 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Inrath"@de ; + foaf:focus wd:Q1664344 . + +nwbib-spatial:Q1609858 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Herhagen"@de ; + foaf:focus wd:Q1609858 . + +nwbib-spatial:Q908114 + a skos:Concept ; + skos:broader nwbib-spatial:Q242514 ; + skos:inScheme ; + skos:prefLabel "Bremke"@de ; + foaf:focus wd:Q908114 . + +nwbib-spatial:Q1550434 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Grund (Hilchenbach)"@de ; + foaf:focus wd:Q1550434 . + +nwbib-spatial:Q2011352 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Oberveischede"@de ; + foaf:focus wd:Q2011352 . + +nwbib-spatial:Q1610148 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Herlinghausen"@de ; + foaf:focus wd:Q1610148 . + +nwbib-spatial:Q1368607 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803601 ; + skos:inScheme ; + skos:prefLabel "Altenessen"@de ; + foaf:focus wd:Q1368607 . + +nwbib-spatial:Q1253874 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Leuth"@de ; + foaf:focus wd:Q1253874 . + +nwbib-spatial:Q1762392 + a skos:Concept ; + skos:broader nwbib-spatial:Q884493 ; + skos:inScheme ; + skos:prefLabel "Niederdornberg-Deppendorf"@de ; + foaf:focus wd:Q1762392 . + +nwbib-spatial:Q19288345 + a skos:Concept ; + skos:broader nwbib-spatial:Q1803277 ; + skos:inScheme ; + skos:prefLabel "Kriel"@de ; + foaf:focus wd:Q19288345 . + +nwbib-spatial:Q630065 + a skos:Concept ; + skos:broader nwbib-spatial:Q5535 ; + skos:inScheme ; + skos:prefLabel "Küntrop"@de ; + foaf:focus wd:Q630065 . + +nwbib-spatial:Q1573620 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Rhynern"@de ; + foaf:focus wd:Q1573620 . + +nwbib-spatial:Q1429691 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Stein"@de ; + foaf:focus wd:Q1429691 . + +nwbib-spatial:Q1368750 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Essentho"@de ; + foaf:focus wd:Q1368750 . + +nwbib-spatial:Q16858120 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Wulfshof"@de ; + foaf:focus wd:Q16858120 . + +nwbib-spatial:Q18589582 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Lich-Steinstraß"@de ; + foaf:focus wd:Q18589582 . + +nwbib-spatial:Q1638053 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Hunstig"@de ; + foaf:focus wd:Q1638053 . + +nwbib-spatial:Q881219 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Riemke"@de ; + foaf:focus wd:Q881219 . + +nwbib-spatial:Q1020294 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Büchel"@de ; + foaf:focus wd:Q1020294 . + +nwbib-spatial:Q10923 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958048" ; + skos:prefLabel "Winterberg"@de ; + foaf:focus wd:Q10923 . + +nwbib-spatial:Q633582 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Sülz"@de ; + foaf:focus wd:Q633582 . + +nwbib-spatial:Q1286527 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Wasserstraße"@de ; + foaf:focus wd:Q1286527 . + +nwbib-spatial:Q1879740 + a skos:Concept ; + skos:broader nwbib-spatial:Q323607 ; + skos:inScheme ; + skos:prefLabel "Lörick"@de ; + foaf:focus wd:Q1879740 . + +nwbib-spatial:Q7025 a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370004" ; + skos:prefLabel "Erkelenz"@de ; + foaf:focus wd:Q7025 . + +nwbib-spatial:Q5276 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962004" ; + skos:prefLabel "Altena"@de ; + foaf:focus wd:Q5276 . + +nwbib-spatial:Q833294 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Ilverich"@de ; + foaf:focus wd:Q833294 . + +nwbib-spatial:Q998646 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Merten"@de ; + foaf:focus wd:Q998646 . + +nwbib-spatial:Q3050 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562032" ; + skos:prefLabel "Recklinghausen"@de ; + foaf:focus wd:Q3050 . + +nwbib-spatial:Q17542971 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Rombergpark-Lücklemberg"@de ; + foaf:focus wd:Q17542971 . + +nwbib-spatial:Q883208 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Sterkrade"@de ; + foaf:focus wd:Q883208 . + +nwbib-spatial:Q1768089 + a skos:Concept ; + skos:broader nwbib-spatial:Q242098 ; + skos:inScheme ; + skos:prefLabel "Tietelsen"@de ; + foaf:focus wd:Q1768089 . + +nwbib-spatial:Q117777 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Spork-Eichholz"@de ; + foaf:focus wd:Q117777 . + +nwbib-spatial:Q4192 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978004" ; + skos:prefLabel "Bergkamen"@de ; + foaf:focus wd:Q4192 . + +nwbib-spatial:Q15055941 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Eikamp"@de ; + foaf:focus wd:Q15055941 . + +nwbib-spatial:Q14956 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362040" ; + skos:prefLabel "Wesseling"@de ; + foaf:focus wd:Q14956 . + +nwbib-spatial:Q1374403 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Mehrum"@de ; + foaf:focus wd:Q1374403 . + +nwbib-spatial:Q1959339 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Müssingen"@de ; + foaf:focus wd:Q1959339 . + +nwbib-spatial:Q1610668 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Herrentrup"@de ; + foaf:focus wd:Q1610668 . + +nwbib-spatial:N16 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "16" ; + skos:prefLabel "Siegerland"@de ; + foaf:focus wd:Q580471 . + +nwbib-spatial:Q889069 + a skos:Concept ; + skos:broader nwbib-spatial:Q881226 ; + skos:inScheme ; + skos:prefLabel "Stahlhausen"@de ; + foaf:focus wd:Q889069 . + +nwbib-spatial:Q314337 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Belecke"@de ; + foaf:focus wd:Q314337 . + +nwbib-spatial:Q4113 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362036" ; + skos:prefLabel "Pulheim"@de ; + foaf:focus wd:Q4113 . + +nwbib-spatial:Q19275620 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Bonzelerhammer"@de ; + foaf:focus wd:Q19275620 . + +nwbib-spatial:Q2160918 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Rodde"@de ; + foaf:focus wd:Q2160918 . + +nwbib-spatial:Q3989 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362008" ; + skos:prefLabel "Bergheim"@de ; + foaf:focus wd:Q3989 . + +nwbib-spatial:Q1761685 + a skos:Concept ; + skos:broader nwbib-spatial:Q2742 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Münster-Nord"@de ; + foaf:focus wd:Q1761685 . + +nwbib-spatial:Q1334196 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Elverdissen"@de ; + foaf:focus wd:Q1334196 . + +nwbib-spatial:Q2239829 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Schliprüthen"@de ; + foaf:focus wd:Q2239829 . + +nwbib-spatial:Q1368644 + a skos:Concept ; + skos:broader nwbib-spatial:Q257028 ; + skos:inScheme ; + skos:prefLabel "Segeroth"@de ; + foaf:focus wd:Q1368644 . + +nwbib-spatial:Q884493 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Dornberg"@de ; + foaf:focus wd:Q884493 . + +nwbib-spatial:Q56397821 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Wormbach"@de ; + foaf:focus wd:Q56397821 . + +nwbib-spatial:Q2047677 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Palenberg"@de ; + foaf:focus wd:Q2047677 . + +nwbib-spatial:Q1570055 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Untereschbach"@de ; + foaf:focus wd:Q1570055 . + +nwbib-spatial:Q883892 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Blessem"@de ; + foaf:focus wd:Q883892 . + +nwbib-spatial:Q1603205 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Helmern"@de ; + foaf:focus wd:Q1603205 . + +nwbib-spatial:Q1855990 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Richstein"@de ; + foaf:focus wd:Q1855990 . + +nwbib-spatial:Q4171 a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166036" ; + skos:prefLabel "Willich"@de ; + foaf:focus wd:Q4171 . + +nwbib-spatial:Q1959318 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Müschede"@de ; + foaf:focus wd:Q1959318 . + +nwbib-spatial:Q27869680 + a skos:Concept ; + skos:broader nwbib-spatial:Q3813 ; + skos:inScheme ; + skos:prefLabel "Sinsen-Lenkerbeck"@de ; + foaf:focus wd:Q27869680 . + +nwbib-spatial:Q1868132 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Lohausen"@de ; + foaf:focus wd:Q1868132 . + +nwbib-spatial:Q1516717 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Neuenbeken"@de ; + foaf:focus wd:Q1516717 . + +nwbib-spatial:Q1019637 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Bödingen"@de ; + foaf:focus wd:Q1019637 . + +nwbib-spatial:Q10960 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970044" ; + skos:prefLabel "Wilnsdorf"@de ; + foaf:focus wd:Q10960 . + +nwbib-spatial:Q879256 + a skos:Concept ; + skos:broader nwbib-spatial:Q6924 ; + skos:inScheme ; + skos:prefLabel "Epe"@de ; + foaf:focus wd:Q879256 . + +nwbib-spatial:N74 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "74" ; + skos:prefLabel "Kleinere Territorien in Westfalen"@de . + +nwbib-spatial:Q225055 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754024" ; + skos:prefLabel "Langenberg"@de ; + foaf:focus wd:Q225055 . + +nwbib-spatial:Q1200380 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Dersdorf"@de ; + foaf:focus wd:Q1200380 . + +nwbib-spatial:Q2010624 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Oberpleis"@de ; + foaf:focus wd:Q2010624 . + +nwbib-spatial:Q1009459 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Bungenberg"@de ; + foaf:focus wd:Q1009459 . + +nwbib-spatial:Q994082 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Brunskappel"@de ; + foaf:focus wd:Q994082 . + +nwbib-spatial:Q1916852 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Meerhof"@de ; + foaf:focus wd:Q1916852 . + +nwbib-spatial:Q850814 + a skos:Concept ; + skos:broader nwbib-spatial:Q12434 ; + skos:inScheme ; + skos:prefLabel "Beuel"@de ; + foaf:focus wd:Q850814 . + +nwbib-spatial:Q7062 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158026" ; + skos:prefLabel "Monheim am Rhein"@de ; + foaf:focus wd:Q7062 . + +nwbib-spatial:Q4086 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962040" ; + skos:prefLabel "Menden (Sauerland)"@de ; + foaf:focus wd:Q4086 . + +nwbib-spatial:Q200105 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358044" ; + skos:prefLabel "Nideggen"@de ; + foaf:focus wd:Q200105 . + +nwbib-spatial:Q95350780 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Ewig"@de ; + foaf:focus wd:Q95350780 . + +nwbib-spatial:Q1625158 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Holt"@de ; + foaf:focus wd:Q1625158 . + +nwbib-spatial:Q1368623 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803595 ; + skos:inScheme ; + skos:prefLabel "Frillendorf"@de ; + foaf:focus wd:Q1368623 . + +nwbib-spatial:Q2529786 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Vochem"@de ; + foaf:focus wd:Q2529786 . + +nwbib-spatial:Q142760 + a skos:Concept ; + skos:broader nwbib-spatial:Q551600 ; + skos:inScheme ; + skos:prefLabel "Carlstadt"@de ; + foaf:focus wd:Q142760 . + +nwbib-spatial:Q996855 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Brüggen"@de ; + foaf:focus wd:Q996855 . + +nwbib-spatial:Q2156182 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Robend"@de ; + foaf:focus wd:Q2156182 . + +nwbib-spatial:Q1599807 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Heinsberg"@de ; + foaf:focus wd:Q1599807 . + +nwbib-spatial:Q458131 + a skos:Concept ; + skos:broader nwbib-spatial:Q551600 ; + skos:inScheme ; + skos:prefLabel "Derendorf"@de ; + foaf:focus wd:Q458131 . + +nwbib-spatial:Q1470596 + a skos:Concept ; + skos:broader nwbib-spatial:Q182691 ; + skos:inScheme ; + skos:prefLabel "Frotheim"@de ; + foaf:focus wd:Q1470596 . + +nwbib-spatial:Q1533286 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Hardt"@de ; + foaf:focus wd:Q1533286 . + +nwbib-spatial:Q151325 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Atsch"@de ; + foaf:focus wd:Q151325 . + +nwbib-spatial:Q14914 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558012" ; + skos:prefLabel "Coesfeld"@de ; + foaf:focus wd:Q14914 . + +nwbib-spatial:Q2309758 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Allenbach"@de ; + foaf:focus wd:Q2309758 . + +nwbib-spatial:Q2805 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05114" ; + skos:prefLabel "Krefeld"@de ; + foaf:focus wd:Q2805 . + +nwbib-spatial:Q1419125 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Firmenich"@de ; + foaf:focus wd:Q1419125 . + +nwbib-spatial:Q1566024 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Hostel"@de ; + foaf:focus wd:Q1566024 . + +nwbib-spatial:Q2381864 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Süggerath"@de ; + foaf:focus wd:Q2381864 . + +nwbib-spatial:Q923980 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Losheim"@de ; + foaf:focus wd:Q923980 . + +nwbib-spatial:Q2041586 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Alt-Otzenrath (bis 2008)"@de ; + foaf:focus wd:Q2041586 . + +nwbib-spatial:Q15123474 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Olef"@de ; + foaf:focus wd:Q15123474 . + +nwbib-spatial:Q448795 + a skos:Concept ; + skos:broader nwbib-spatial:Q242953 ; + skos:inScheme ; + skos:prefLabel "Alverdissen"@de ; + foaf:focus wd:Q448795 . + +nwbib-spatial:Q1226372 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Dingden"@de ; + foaf:focus wd:Q1226372 . + +nwbib-spatial:Q884451 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Mehlem"@de ; + foaf:focus wd:Q884451 . + +nwbib-spatial:Q1663027 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Inger"@de ; + foaf:focus wd:Q1663027 . + +nwbib-spatial:Q1554319 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Niedersalwey"@de ; + foaf:focus wd:Q1554319 . + +nwbib-spatial:Q56231200 + a skos:Concept ; + skos:broader nwbib-spatial:Q14929 ; + skos:inScheme ; + skos:prefLabel "Kamperlings"@de ; + foaf:focus wd:Q56231200 . + +nwbib-spatial:Q446967 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Altwindeck"@de ; + foaf:focus wd:Q446967 . + +nwbib-spatial:Q873347 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Lommersdorf"@de ; + foaf:focus wd:Q873347 . + +nwbib-spatial:Q1461305 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Dinslaken (bis 1974)"@de ; + foaf:focus wd:Q1461305 . + +nwbib-spatial:Q437214 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Altenhellefeld"@de ; + foaf:focus wd:Q437214 . + +nwbib-spatial:Q89555728 + a skos:Concept ; + skos:broader nwbib-spatial:Q2713 ; + skos:inScheme ; + skos:prefLabel "Ameke"@de ; + foaf:focus wd:Q89555728 . + +nwbib-spatial:Q2429850 + a skos:Concept ; + skos:broader nwbib-spatial:Q199988 ; + skos:inScheme ; + skos:prefLabel "Thum"@de ; + foaf:focus wd:Q2429850 . + +nwbib-spatial:Q18923127 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Klausen"@de ; + foaf:focus wd:Q18923127 . + +nwbib-spatial:Q2151658 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Rickelrath"@de ; + foaf:focus wd:Q2151658 . + +nwbib-spatial:Q536671 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Liblar"@de ; + foaf:focus wd:Q536671 . + +nwbib-spatial:Q1625201 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Holtfeld"@de ; + foaf:focus wd:Q1625201 . + +nwbib-spatial:Q10780094 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Bausenrode"@de ; + foaf:focus wd:Q10780094 . + +nwbib-spatial:N32 a skos:Concept ; + skos:broader nwbib-spatial:N3 ; + skos:inScheme ; + skos:notation "32" ; + skos:prefLabel "Evangelische Kirche im Rheinland"@de ; + foaf:focus wd:Q1380992 . + +nwbib-spatial:Q2220648 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Sandfeld"@de ; + foaf:focus wd:Q2220648 . + +nwbib-spatial:Q117231 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Nöthen"@de ; + foaf:focus wd:Q117231 . + +nwbib-spatial:Q553182 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn (bis 1605)"@de ; + foaf:focus wd:Q553182 . + +nwbib-spatial:Q204743 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370024" ; + skos:prefLabel "Selfkant"@de ; + foaf:focus wd:Q204743 . + +nwbib-spatial:Q2360646 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Störmecke"@de ; + foaf:focus wd:Q2360646 . + +nwbib-spatial:Q153190 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Rescheid"@de ; + foaf:focus wd:Q153190 . + +nwbib-spatial:Q2511774 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Veert"@de ; + foaf:focus wd:Q2511774 . + +nwbib-spatial:Q1479515 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Rhode"@de ; + foaf:focus wd:Q1479515 . + +nwbib-spatial:Q6896 a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754028" ; + skos:prefLabel "Rheda-Wiedenbrück"@de ; + foaf:focus wd:Q6896 . + +nwbib-spatial:Q1700 a skos:Concept ; + skos:broader nwbib-spatial:N10 ; + skos:inScheme ; + skos:prefLabel "Münsterland"@de ; + foaf:focus wd:Q1700 . + +nwbib-spatial:Q182208 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566060" ; + skos:prefLabel "Neuenkirchen"@de ; + foaf:focus wd:Q182208 . + +nwbib-spatial:Q1604846 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Hemmerden"@de ; + foaf:focus wd:Q1604846 . + +nwbib-spatial:Q2133501 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Rauschendorf"@de ; + foaf:focus wd:Q2133501 . + +nwbib-spatial:Q1638987 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Werthenbach"@de ; + foaf:focus wd:Q1638987 . + +nwbib-spatial:Q33123498 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Winterswick"@de ; + foaf:focus wd:Q33123498 . + +nwbib-spatial:Q1595784 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Heiminghausen"@de ; + foaf:focus wd:Q1595784 . + +nwbib-spatial:Q62099199 + a skos:Concept ; + skos:broader nwbib-spatial:Q2707 ; + skos:inScheme ; + skos:prefLabel "Roland"@de ; + foaf:focus wd:Q62099199 . + +nwbib-spatial:Q1980697 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Neuhonrath"@de ; + foaf:focus wd:Q1980697 . + +nwbib-spatial:Q889064 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973169 ; + skos:inScheme ; + skos:prefLabel "Harpen"@de ; + foaf:focus wd:Q889064 . + +nwbib-spatial:Q1132 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570004" ; + skos:prefLabel "Ahlen"@de ; + foaf:focus wd:Q1132 . + +nwbib-spatial:Q2532807 + a skos:Concept ; + skos:broader nwbib-spatial:Q6858 ; + skos:inScheme ; + skos:prefLabel "Volmerdingsen"@de ; + foaf:focus wd:Q2532807 . + +nwbib-spatial:Q2190271 + a skos:Concept ; + skos:broader nwbib-spatial:Q1566490 ; + skos:inScheme ; + skos:prefLabel "Verlautenheide"@de ; + foaf:focus wd:Q2190271 . + +nwbib-spatial:Q1584203 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Happach"@de ; + foaf:focus wd:Q1584203 . + +nwbib-spatial:Q1250708 + a skos:Concept ; + skos:broader nwbib-spatial:Q2024532 ; + skos:inScheme ; + skos:prefLabel "Syburg"@de ; + foaf:focus wd:Q1250708 . + +nwbib-spatial:Q43497701 + a skos:Concept ; + skos:broader nwbib-spatial:Q1526063 ; + skos:inScheme ; + skos:prefLabel "Währentrup"@de ; + foaf:focus wd:Q43497701 . + +nwbib-spatial:Q168646 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766016" ; + skos:prefLabel "Blomberg"@de ; + foaf:focus wd:Q168646 . + +nwbib-spatial:Q568155 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Wahn"@de ; + foaf:focus wd:Q568155 . + +nwbib-spatial:Q6249 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05166" ; + skos:prefLabel "Kreis Viersen"@de ; + foaf:focus wd:Q6249 . + +nwbib-spatial:Q28151475 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Lüttelforst"@de ; + foaf:focus wd:Q28151475 . + +nwbib-spatial:Q1318117 + a skos:Concept ; + skos:broader nwbib-spatial:Q163570 ; + skos:inScheme ; + skos:prefLabel "Kehn"@de ; + foaf:focus wd:Q1318117 . + +nwbib-spatial:Q3146968 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Hau"@de ; + foaf:focus wd:Q3146968 . + +nwbib-spatial:Q53904 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758032" ; + skos:prefLabel "Spenge"@de ; + foaf:focus wd:Q53904 . + +nwbib-spatial:Q3905 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562014" ; + skos:prefLabel "Gladbeck"@de ; + foaf:focus wd:Q3905 . + +nwbib-spatial:Q1366811 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Allagen"@de ; + foaf:focus wd:Q1366811 . + +nwbib-spatial:Q1727203 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Rondorf"@de ; + foaf:focus wd:Q1727203 . + +nwbib-spatial:Q827065 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Berrendorf-Wüllenrath"@de ; + foaf:focus wd:Q827065 . + +nwbib-spatial:Q1552045 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Grünenbach"@de ; + foaf:focus wd:Q1552045 . + +nwbib-spatial:Q2160971 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Roden (Iserlohn)"@de ; + foaf:focus wd:Q2160971 . + +nwbib-spatial:Q2018791 + a skos:Concept ; + skos:broader nwbib-spatial:Q53901 ; + skos:inScheme ; + skos:prefLabel "Oldinghausen"@de ; + foaf:focus wd:Q2018791 . + +nwbib-spatial:Q983939 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Walbeck"@de ; + foaf:focus wd:Q983939 . + +nwbib-spatial:Q1334027 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Elte (Rheine)"@de ; + foaf:focus wd:Q1334027 . + +nwbib-spatial:Q468337 + a skos:Concept ; + skos:broader nwbib-spatial:Q11119 ; + skos:inScheme ; + skos:prefLabel "Hirschberg"@de ; + foaf:focus wd:Q468337 . + +nwbib-spatial:Q857453 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Biemsen-Ahmsen"@de ; + foaf:focus wd:Q857453 . + +nwbib-spatial:Q1725995 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Marienbaum"@de ; + foaf:focus wd:Q1725995 . + +nwbib-spatial:Q1958712 + a skos:Concept ; + skos:broader nwbib-spatial:Q3900 ; + skos:inScheme ; + skos:prefLabel "Müllekoven"@de ; + foaf:focus wd:Q1958712 . + +nwbib-spatial:Q1838195 + a skos:Concept ; + skos:broader nwbib-spatial:Q183374 ; + skos:inScheme ; + skos:prefLabel "Alfen"@de ; + foaf:focus wd:Q1838195 . + +nwbib-spatial:Q39695707 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Amtmannscherf"@de ; + foaf:focus wd:Q39695707 . + +nwbib-spatial:Q1345672 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Floverich"@de ; + foaf:focus wd:Q1345672 . + +nwbib-spatial:Q1867441 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Lochtrop"@de ; + foaf:focus wd:Q1867441 . + +nwbib-spatial:Q27973169 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bochum-Nord"@de ; + foaf:focus wd:Q27973169 . + +nwbib-spatial:Q1019064 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Bärbroich"@de ; + foaf:focus wd:Q1019064 . + +nwbib-spatial:Q1988468 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Niedersetzen"@de ; + foaf:focus wd:Q1988468 . + +nwbib-spatial:Q6228 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05762" ; + skos:prefLabel "Kreis Höxter"@de ; + foaf:focus wd:Q6228 . + +nwbib-spatial:Q1595195 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Heiligenhoven"@de ; + foaf:focus wd:Q1595195 . + +nwbib-spatial:Q241358 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366036" ; + skos:prefLabel "Schleiden"@de ; + foaf:focus wd:Q241358 . + +nwbib-spatial:Q911182 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Breun"@de ; + foaf:focus wd:Q911182 . + +nwbib-spatial:Q15109159 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Dahl"@de ; + foaf:focus wd:Q15109159 . + +nwbib-spatial:Q316601 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Poll"@de ; + foaf:focus wd:Q316601 . + +nwbib-spatial:Q1123895 + a skos:Concept ; + skos:broader nwbib-spatial:Q1700 ; + skos:inScheme ; + skos:prefLabel "Ostmünsterland"@de ; + foaf:focus wd:Q1123895 . + +nwbib-spatial:Q1772593 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Schameder"@de ; + foaf:focus wd:Q1772593 . + +nwbib-spatial:Q1368050 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Vorwald"@de ; + foaf:focus wd:Q1368050 . + +nwbib-spatial:Q2478547 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138211 ; + skos:inScheme ; + skos:prefLabel "Ummeln"@de ; + foaf:focus wd:Q2478547 . + +nwbib-spatial:Q437145 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138276 ; + skos:inScheme ; + skos:prefLabel "Altenhagen"@de ; + foaf:focus wd:Q437145 . + +nwbib-spatial:Q2794 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570036" ; + skos:prefLabel "Sassenberg"@de ; + foaf:focus wd:Q2794 . + +nwbib-spatial:Q12449 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382028" ; + skos:prefLabel "Lohmar"@de ; + foaf:focus wd:Q12449 . + +nwbib-spatial:Q43161686 + a skos:Concept ; + skos:broader nwbib-spatial:Q200640 ; + skos:inScheme ; + skos:prefLabel "Estern"@de ; + foaf:focus wd:Q43161686 . + +nwbib-spatial:Q56398551 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Werl"@de ; + foaf:focus wd:Q56398551 . + +nwbib-spatial:Q47462060 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Bochum"@de ; + foaf:focus wd:Q47462060 . + +nwbib-spatial:Q1621640 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138453 ; + skos:inScheme ; + skos:prefLabel "Theesen"@de ; + foaf:focus wd:Q1621640 . + +nwbib-spatial:Q896850 + a skos:Concept ; + skos:broader nwbib-spatial:Q323607 ; + skos:inScheme ; + skos:prefLabel "Oberkassel"@de ; + foaf:focus wd:Q896850 . + +nwbib-spatial:Q4060 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362028" ; + skos:prefLabel "Hürth"@de ; + foaf:focus wd:Q4060 . + +nwbib-spatial:Q1632960 + a skos:Concept ; + skos:broader nwbib-spatial:Q323826 ; + skos:inScheme ; + skos:prefLabel "Hubbelrath"@de ; + foaf:focus wd:Q1632960 . + +nwbib-spatial:Q2202659 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Rönkhausen"@de ; + foaf:focus wd:Q2202659 . + +nwbib-spatial:Q1530767 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Sieveringen"@de ; + foaf:focus wd:Q1530767 . + +nwbib-spatial:Q1297472 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Welda"@de ; + foaf:focus wd:Q1297472 . + +nwbib-spatial:Q2154179 + a skos:Concept ; + skos:broader nwbib-spatial:Q2713 ; + skos:inScheme ; + skos:prefLabel "Rinkerode"@de ; + foaf:focus wd:Q2154179 . + +nwbib-spatial:Q884844 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Jerxen-Orbke"@de ; + foaf:focus wd:Q884844 . + +nwbib-spatial:Q1564106 + a skos:Concept ; + skos:broader nwbib-spatial:Q831039 ; + skos:inScheme ; + skos:prefLabel "Mörsenbroich"@de ; + foaf:focus wd:Q1564106 . + +nwbib-spatial:Q1459294 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Rückershausen"@de ; + foaf:focus wd:Q1459294 . + +nwbib-spatial:Q2536400 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Völlinghausen"@de ; + foaf:focus wd:Q2536400 . + +nwbib-spatial:Q2565014 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Westernbödefeld"@de ; + foaf:focus wd:Q2565014 . + +nwbib-spatial:Q130096 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Bühne"@de ; + foaf:focus wd:Q130096 . + +nwbib-spatial:Q47444602 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Niederrheinische Sandplatten"@de ; + foaf:focus wd:Q47444602 . + +nwbib-spatial:Q876233 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Flehe"@de ; + foaf:focus wd:Q876233 . + +nwbib-spatial:Q28037591 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Sterzenbach"@de ; + foaf:focus wd:Q28037591 . + +nwbib-spatial:Q253498 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382072" ; + skos:prefLabel "Wachtberg"@de ; + foaf:focus wd:Q253498 . + +nwbib-spatial:Q1623845 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Hohenwepel"@de ; + foaf:focus wd:Q1623845 . + +nwbib-spatial:Q1418975 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Himmighausen"@de ; + foaf:focus wd:Q1418975 . + +nwbib-spatial:Q2147825 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Rheinisches Braunkohlerevier"@de ; + foaf:focus wd:Q2147825 . + +nwbib-spatial:Q1288658 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Höhscheid"@de ; + foaf:focus wd:Q1288658 . + +nwbib-spatial:Q1017273 + a skos:Concept ; + skos:broader nwbib-spatial:Q6992 ; + skos:inScheme ; + skos:prefLabel "Busch"@de ; + foaf:focus wd:Q1017273 . + +nwbib-spatial:Q1250639 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hombruch"@de ; + foaf:focus wd:Q1250639 . + +nwbib-spatial:Q1597379 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Sief"@de ; + foaf:focus wd:Q1597379 . + +nwbib-spatial:Q881039 + a skos:Concept ; + skos:broader nwbib-spatial:Q11040 ; + skos:inScheme ; + skos:prefLabel "Bladersbach"@de ; + foaf:focus wd:Q881039 . + +nwbib-spatial:Q183345 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774040" ; + skos:prefLabel "Bad Wünnenberg"@de ; + foaf:focus wd:Q183345 . + +nwbib-spatial:Q49892258 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Schöneshof"@de ; + foaf:focus wd:Q49892258 . + +nwbib-spatial:Q1615149 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Herzhausen"@de ; + foaf:focus wd:Q1615149 . + +nwbib-spatial:Q242458 + a skos:Concept ; + skos:broader nwbib-spatial:Q6230 ; + skos:inScheme ; + skos:notation "05766036" ; + skos:prefLabel "Kalletal"@de ; + foaf:focus wd:Q242458 . + +nwbib-spatial:Q892684 + a skos:Concept ; + skos:broader nwbib-spatial:Q586 ; + skos:inScheme ; + skos:prefLabel "Bonn (Stadtbezirk)"@de ; + foaf:focus wd:Q892684 . + +nwbib-spatial:Q1749655 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Niederrheinischer Höhenzug"@de ; + foaf:focus wd:Q1749655 . + +nwbib-spatial:Q19311452 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Weißenberg"@de ; + foaf:focus wd:Q19311452 . + +nwbib-spatial:Q2752 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570028" ; + skos:prefLabel "Oelde"@de ; + foaf:focus wd:Q2752 . + +nwbib-spatial:Q989822 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Eving"@de ; + foaf:focus wd:Q989822 . + +nwbib-spatial:Q153419 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Nothberg"@de ; + foaf:focus wd:Q153419 . + +nwbib-spatial:Q1250697 + a skos:Concept ; + skos:broader nwbib-spatial:Q1168004 ; + skos:inScheme ; + skos:prefLabel "Schüren"@de ; + foaf:focus wd:Q1250697 . + +nwbib-spatial:Q3900 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382068" ; + skos:prefLabel "Troisdorf"@de ; + foaf:focus wd:Q3900 . + +nwbib-spatial:Q1593866 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Heide"@de ; + foaf:focus wd:Q1593866 . + +nwbib-spatial:Q163837 + a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166020" ; + skos:prefLabel "Niederkrüchten"@de ; + foaf:focus wd:Q163837 . + +nwbib-spatial:Q11323 a skos:Concept ; + skos:broader nwbib-spatial:Q11280 ; + skos:inScheme ; + skos:notation "05954004" ; + skos:prefLabel "Breckerfeld"@de ; + foaf:focus wd:Q11323 . + +nwbib-spatial:Q1250618 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Grevel"@de ; + foaf:focus wd:Q1250618 . + +nwbib-spatial:Q1352726 + a skos:Concept ; + skos:broader nwbib-spatial:Q2794 ; + skos:inScheme ; + skos:prefLabel "Gröblingen"@de ; + foaf:focus wd:Q1352726 . + +nwbib-spatial:Q16042 a skos:Concept ; + skos:broader nwbib-spatial:Q6253 ; + skos:inScheme ; + skos:notation "05162020" ; + skos:prefLabel "Korschenbroich"@de ; + foaf:focus wd:Q16042 . + +nwbib-spatial:Q1304658 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Lipperode"@de ; + foaf:focus wd:Q1304658 . + +nwbib-spatial:Q2584596 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Winkhausen"@de ; + foaf:focus wd:Q2584596 . + +nwbib-spatial:Q1987798 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Niedergelpe"@de ; + foaf:focus wd:Q1987798 . + +nwbib-spatial:Q56025147 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Oestrum"@de ; + foaf:focus wd:Q56025147 . + +nwbib-spatial:Q2497306 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Unterbruch"@de ; + foaf:focus wd:Q2497306 . + +nwbib-spatial:Q2586971 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Witzerath"@de ; + foaf:focus wd:Q2586971 . + +nwbib-spatial:Q1301831 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Eicherscheid"@de ; + foaf:focus wd:Q1301831 . + +nwbib-spatial:Q1505120 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Weilerhof"@de ; + foaf:focus wd:Q1505120 . + +nwbib-spatial:Q1458651 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Nierst"@de ; + foaf:focus wd:Q1458651 . + +nwbib-spatial:Q1677185 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Wickrath"@de ; + foaf:focus wd:Q1677185 . + +nwbib-spatial:Q2293534 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Wollersheim"@de ; + foaf:focus wd:Q2293534 . + +nwbib-spatial:Q19296251 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Merscheid"@de ; + foaf:focus wd:Q19296251 . + +nwbib-spatial:Q326324 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Nienhagen"@de ; + foaf:focus wd:Q326324 . + +nwbib-spatial:Q1302347 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Eickhorst"@de ; + foaf:focus wd:Q1302347 . + +nwbib-spatial:Q2035400 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325222 ; + skos:inScheme ; + skos:prefLabel "Ostersbaum"@de ; + foaf:focus wd:Q2035400 . + +nwbib-spatial:Q870865 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 8 (Düsseldorf)"@de ; + foaf:focus wd:Q870865 . + +nwbib-spatial:Q1182208 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Dedinghausen"@de ; + foaf:focus wd:Q1182208 . + +nwbib-spatial:Q56099854 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Siegen"@de ; + foaf:focus wd:Q56099854 . + +nwbib-spatial:Q1625546 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Holzhausen II"@de ; + foaf:focus wd:Q1625546 . + +nwbib-spatial:Q1919499 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Mellen"@de ; + foaf:focus wd:Q1919499 . + +nwbib-spatial:Q3821213 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Sayn-Wittgenstein-Hohenstein (bis 1806)"@de ; + foaf:focus wd:Q3821213 . + +nwbib-spatial:Q1692676 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Niederberg"@de ; + foaf:focus wd:Q1692676 . + +nwbib-spatial:Q798791 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Bad Westernkotten"@de ; + foaf:focus wd:Q798791 . + +nwbib-spatial:Q2053536 + a skos:Concept ; + skos:broader nwbib-spatial:Q6842 ; + skos:inScheme ; + skos:prefLabel "Rindern"@de ; + foaf:focus wd:Q2053536 . + +nwbib-spatial:Q1623718 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Hohenhagen"@de ; + foaf:focus wd:Q1623718 . + +nwbib-spatial:Q2274928 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Setterich"@de ; + foaf:focus wd:Q2274928 . + +nwbib-spatial:Q813585 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Bechen"@de ; + foaf:focus wd:Q813585 . + +nwbib-spatial:Q12444 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382024" ; + skos:prefLabel "Königswinter"@de ; + foaf:focus wd:Q12444 . + +nwbib-spatial:Q15842309 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Rheinhausen-Mitte"@de ; + foaf:focus wd:Q15842309 . + +nwbib-spatial:Q759112 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Auenheim"@de ; + foaf:focus wd:Q759112 . + +nwbib-spatial:Q772131 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Moitzfeld"@de ; + foaf:focus wd:Q772131 . + +nwbib-spatial:Q1743178 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Steinfurt-Coesfeld-Borken"@de ; + foaf:focus wd:Q1743178 . + +nwbib-spatial:Q328046 + a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Hornoldendorf"@de ; + foaf:focus wd:Q328046 . + +nwbib-spatial:Q1250655 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Kley"@de ; + foaf:focus wd:Q1250655 . + +nwbib-spatial:Q2567718 + a skos:Concept ; + skos:broader nwbib-spatial:Q1536368 ; + skos:inScheme ; + skos:prefLabel "Widdau"@de ; + foaf:focus wd:Q2567718 . + +nwbib-spatial:Q1451594 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Frauenberg"@de ; + foaf:focus wd:Q1451594 . + +nwbib-spatial:Q1647238 + a skos:Concept ; + skos:broader nwbib-spatial:Q242953 ; + skos:inScheme ; + skos:prefLabel "Selbeck"@de ; + foaf:focus wd:Q1647238 . + +nwbib-spatial:Q48181244 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Königshof"@de ; + foaf:focus wd:Q48181244 . + +nwbib-spatial:Q538659 + a skos:Concept ; + skos:broader nwbib-spatial:Q181851 ; + skos:inScheme ; + skos:prefLabel "Schale"@de ; + foaf:focus wd:Q538659 . + +nwbib-spatial:Q820766 + a skos:Concept ; + skos:broader nwbib-spatial:Q241048 ; + skos:inScheme ; + skos:prefLabel "Berk"@de ; + foaf:focus wd:Q820766 . + +nwbib-spatial:Q1499809 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140398 ; + skos:inScheme ; + skos:prefLabel "Gelsenkirchen-Neustadt"@de ; + foaf:focus wd:Q1499809 . + +nwbib-spatial:Q698809 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Arpe"@de ; + foaf:focus wd:Q698809 . + +nwbib-spatial:Q19968116 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Westhemmerde"@de ; + foaf:focus wd:Q19968116 . + +nwbib-spatial:Q1301157 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Eiberg"@de ; + foaf:focus wd:Q1301157 . + +nwbib-spatial:Q908953 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Brenkhausen"@de ; + foaf:focus wd:Q908953 . + +nwbib-spatial:Q1017751 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Bustedt"@de ; + foaf:focus wd:Q1017751 . + +nwbib-spatial:Q1605209 + a skos:Concept ; + skos:broader nwbib-spatial:Q890253 ; + skos:inScheme ; + skos:prefLabel "Hengstey"@de ; + foaf:focus wd:Q1605209 . + +nwbib-spatial:Q1524924 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Neu-Bottenbroich"@de ; + foaf:focus wd:Q1524924 . + +nwbib-spatial:Q434684 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Altastenberg"@de ; + foaf:focus wd:Q434684 . + +nwbib-spatial:Q1459751 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Kalldorf"@de ; + foaf:focus wd:Q1459751 . + +nwbib-spatial:Q2570140 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Wilbertzhohn"@de ; + foaf:focus wd:Q2570140 . + +nwbib-spatial:Q317729 + a skos:Concept ; + skos:broader nwbib-spatial:Q4195 ; + skos:inScheme ; + skos:prefLabel "Gymnich"@de ; + foaf:focus wd:Q317729 . + +nwbib-spatial:Q1593803 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Heibach"@de ; + foaf:focus wd:Q1593803 . + +nwbib-spatial:Q1593797 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Hehlrath"@de ; + foaf:focus wd:Q1593797 . + +nwbib-spatial:Q400157 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Ahden"@de ; + foaf:focus wd:Q400157 . + +nwbib-spatial:Q894911 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139715 ; + skos:inScheme ; + skos:prefLabel "Fuhlenbrock"@de ; + foaf:focus wd:Q894911 . + +nwbib-spatial:Q1804946 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Langeland"@de ; + foaf:focus wd:Q1804946 . + +nwbib-spatial:Q1003109 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Buisdorf"@de ; + foaf:focus wd:Q1003109 . + +nwbib-spatial:Q2382179 + a skos:Concept ; + skos:broader nwbib-spatial:Q2752 ; + skos:inScheme ; + skos:prefLabel "Sünninghausen"@de ; + foaf:focus wd:Q2382179 . + +nwbib-spatial:Q1302363 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Eicks"@de ; + foaf:focus wd:Q1302363 . + +nwbib-spatial:Q908932 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Brenken"@de ; + foaf:focus wd:Q908932 . + +nwbib-spatial:Q65415375 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Schuttorf"@de ; + foaf:focus wd:Q65415375 . + +nwbib-spatial:Q1607341 + a skos:Concept ; + skos:broader nwbib-spatial:Q446864 ; + skos:inScheme ; + skos:prefLabel "Seeberg"@de ; + foaf:focus wd:Q1607341 . + +nwbib-spatial:Q365 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05315" ; + skos:prefLabel "Köln"@de ; + foaf:focus wd:Q365 . + +nwbib-spatial:Q1624335 + a skos:Concept ; + skos:broader nwbib-spatial:Q13388983 ; + skos:inScheme ; + skos:prefLabel "Lichtenplatz"@de ; + foaf:focus wd:Q1624335 . + +nwbib-spatial:Q2530480 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Voiswinkel"@de ; + foaf:focus wd:Q2530480 . + +nwbib-spatial:Q1325224 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Elberfeld-West (Stadtbezirk)"@de ; + foaf:focus wd:Q1325224 . + +nwbib-spatial:Q1250613 + a skos:Concept ; + skos:broader nwbib-spatial:Q989822 ; + skos:inScheme ; + skos:prefLabel "Eving"@de ; + foaf:focus wd:Q1250613 . + +nwbib-spatial:Q52092035 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Hillen"@de ; + foaf:focus wd:Q52092035 . + +nwbib-spatial:Q1790597 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Kräwinklerbrücke"@de ; + foaf:focus wd:Q1790597 . + +nwbib-spatial:Q29236129 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Meiswinkel"@de ; + foaf:focus wd:Q29236129 . + +nwbib-spatial:Q876037 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Dünstekoven"@de ; + foaf:focus wd:Q876037 . + +nwbib-spatial:Q1672944 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Irlenborn"@de ; + foaf:focus wd:Q1672944 . + +nwbib-spatial:Q1980040 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Neuenhausen"@de ; + foaf:focus wd:Q1980040 . + +nwbib-spatial:Q35747848 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Hostert"@de ; + foaf:focus wd:Q35747848 . + +nwbib-spatial:Q27973016 + a skos:Concept ; + skos:broader nwbib-spatial:Q2103 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bochum-Südwest"@de ; + foaf:focus wd:Q27973016 . + +nwbib-spatial:Q323826 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 7 (Düsseldorf)"@de ; + foaf:focus wd:Q323826 . + +nwbib-spatial:Q437554 + a skos:Concept ; + skos:broader nwbib-spatial:Q10958 ; + skos:inScheme ; + skos:prefLabel "Altenseelbach"@de ; + foaf:focus wd:Q437554 . + +nwbib-spatial:Q2100 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05112" ; + skos:prefLabel "Duisburg"@de ; + foaf:focus wd:Q2100 . + +nwbib-spatial:Q328545 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Nassau-Dillenburg"@de ; + foaf:focus wd:Q328545 . + +nwbib-spatial:Q1296113 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Efferen"@de ; + foaf:focus wd:Q1296113 . + +nwbib-spatial:Q2152122 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Rieferath"@de ; + foaf:focus wd:Q2152122 . + +nwbib-spatial:Q2011523 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Oberwälder Land"@de ; + foaf:focus wd:Q2011523 . + +nwbib-spatial:Q1602902 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Reifferscheid"@de ; + foaf:focus wd:Q1602902 . + +nwbib-spatial:Q33133657 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Ostinghausen"@de ; + foaf:focus wd:Q33133657 . + +nwbib-spatial:Q315215 + a skos:Concept ; + skos:broader nwbib-spatial:Q551600 ; + skos:inScheme ; + skos:prefLabel "Pempelfort"@de ; + foaf:focus wd:Q315215 . + +nwbib-spatial:Q1226548 + a skos:Concept ; + skos:broader nwbib-spatial:Q11145 ; + skos:inScheme ; + skos:prefLabel "Dinker"@de ; + foaf:focus wd:Q1226548 . + +nwbib-spatial:Q1324681 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Gütersloh"@de ; + foaf:focus wd:Q1324681 . + +nwbib-spatial:Q5457331 + a skos:Concept ; + skos:broader nwbib-spatial:Q14914 ; + skos:inScheme ; + skos:prefLabel "Flamschen"@de ; + foaf:focus wd:Q5457331 . + +nwbib-spatial:Q1653554 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Wolfgarten"@de ; + foaf:focus wd:Q1653554 . + +nwbib-spatial:Q1469580 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Frohlinde"@de ; + foaf:focus wd:Q1469580 . + +nwbib-spatial:Q2570575 + a skos:Concept ; + skos:broader nwbib-spatial:Q240964 ; + skos:inScheme ; + skos:prefLabel "Wildenburg (Hellenthal)"@de ; + foaf:focus wd:Q2570575 . + +nwbib-spatial:Q1795778 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Widdersdorf"@de ; + foaf:focus wd:Q1795778 . + +nwbib-spatial:Q23941311 + a skos:Concept ; + skos:broader nwbib-spatial:Q200208 ; + skos:inScheme ; + skos:prefLabel "Maria Veen"@de ; + foaf:focus wd:Q23941311 . + +nwbib-spatial:Q2104601 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Porselen"@de ; + foaf:focus wd:Q2104601 . + +nwbib-spatial:Q2526306 + a skos:Concept ; + skos:broader nwbib-spatial:Q59138453 ; + skos:inScheme ; + skos:prefLabel "Vilsendorf"@de ; + foaf:focus wd:Q2526306 . + +nwbib-spatial:Q1614580 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Herste"@de ; + foaf:focus wd:Q1614580 . + +nwbib-spatial:Q3214916 + a skos:Concept ; + skos:broader nwbib-spatial:Q15114696 ; + skos:inScheme ; + skos:prefLabel "Sodingen"@de ; + foaf:focus wd:Q3214916 . + +nwbib-spatial:Q1935808 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Milte"@de ; + foaf:focus wd:Q1935808 . + +nwbib-spatial:Q45745941 + a skos:Concept ; + skos:broader nwbib-spatial:Q14810 ; + skos:inScheme ; + skos:prefLabel "Hombergen"@de ; + foaf:focus wd:Q45745941 . + +nwbib-spatial:Q1020465 + a skos:Concept ; + skos:broader nwbib-spatial:Q4105 ; + skos:inScheme ; + skos:prefLabel "Büderich"@de ; + foaf:focus wd:Q1020465 . + +nwbib-spatial:Q1367211 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Eschweiler über Feld"@de ; + foaf:focus wd:Q1367211 . + +nwbib-spatial:Q182691 + a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770008" ; + skos:prefLabel "Espelkamp"@de ; + foaf:focus wd:Q182691 . + +nwbib-spatial:Q1110953 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Landkreis Grevenbroich-Neuß (1929 bis 1946)"@de ; + foaf:focus wd:Q1110953 . + +nwbib-spatial:Q1368836 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Esshoff"@de ; + foaf:focus wd:Q1368836 . + +nwbib-spatial:Q204919 + a skos:Concept ; + skos:broader nwbib-spatial:Q6264 ; + skos:inScheme ; + skos:notation "05370036" ; + skos:prefLabel "Wassenberg"@de ; + foaf:focus wd:Q204919 . + +nwbib-spatial:Q2356192 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Striefen"@de ; + foaf:focus wd:Q2356192 . + +nwbib-spatial:Q16830359 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Altendorf-Ulfkotte"@de ; + foaf:focus wd:Q16830359 . + +nwbib-spatial:Q55890544 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrlichkeit Lembeck"@de ; + foaf:focus wd:Q55890544 . + +nwbib-spatial:Q6191 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05554" ; + skos:prefLabel "Kreis Borken"@de ; + foaf:focus wd:Q6191 . + +nwbib-spatial:Q814017 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Beeck"@de ; + foaf:focus wd:Q814017 . + +nwbib-spatial:Q1799334 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Laar"@de ; + foaf:focus wd:Q1799334 . + +nwbib-spatial:Q1136483 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Costedt"@de ; + foaf:focus wd:Q1136483 . + +nwbib-spatial:Q1391790 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Freckenhorst"@de ; + foaf:focus wd:Q1391790 . + +nwbib-spatial:Q1496828 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Geber"@de ; + foaf:focus wd:Q1496828 . + +nwbib-spatial:Q1907285 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Maspe"@de ; + foaf:focus wd:Q1907285 . + +nwbib-spatial:Q759563 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Aufderhöhe"@de ; + foaf:focus wd:Q759563 . + +nwbib-spatial:Q1797023 + a skos:Concept ; + skos:broader nwbib-spatial:Q769183 ; + skos:inScheme ; + skos:prefLabel "Küllenhahn"@de ; + foaf:focus wd:Q1797023 . + +nwbib-spatial:Q1537140 + a skos:Concept ; + skos:broader nwbib-spatial:Q5573 ; + skos:inScheme ; + skos:prefLabel "Hunswinkel"@de ; + foaf:focus wd:Q1537140 . + +nwbib-spatial:Q1570311 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Halberbracht"@de ; + foaf:focus wd:Q1570311 . + +nwbib-spatial:Q1491143 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Gahmen"@de ; + foaf:focus wd:Q1491143 . + +nwbib-spatial:Q1511042 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Gerderath"@de ; + foaf:focus wd:Q1511042 . + +nwbib-spatial:Q2130361 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Ramsbeck"@de ; + foaf:focus wd:Q2130361 . + +nwbib-spatial:Q1532819 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Glüder"@de ; + foaf:focus wd:Q1532819 . + +nwbib-spatial:Q1271200 + a skos:Concept ; + skos:broader nwbib-spatial:Q183374 ; + skos:inScheme ; + skos:prefLabel "Dörenhagen"@de ; + foaf:focus wd:Q1271200 . + +nwbib-spatial:Q1827522 + a skos:Concept ; + skos:broader nwbib-spatial:Q53908 ; + skos:inScheme ; + skos:prefLabel "Lippinghausen"@de ; + foaf:focus wd:Q1827522 . + +nwbib-spatial:Q59261667 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Siegen-Süd"@de ; + foaf:focus wd:Q59261667 . + +nwbib-spatial:Q2259083 + a skos:Concept ; + skos:broader nwbib-spatial:Q253940 ; + skos:inScheme ; + skos:prefLabel "Schönenberg"@de ; + foaf:focus wd:Q2259083 . + +nwbib-spatial:Q2592814 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Wolsdorf"@de ; + foaf:focus wd:Q2592814 . + +nwbib-spatial:Q327896 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Mülheim"@de ; + foaf:focus wd:Q327896 . + +nwbib-spatial:Q881609 + a skos:Concept ; + skos:broader nwbib-spatial:Q183483 ; + skos:inScheme ; + skos:prefLabel "Blankenrode"@de ; + foaf:focus wd:Q881609 . + +nwbib-spatial:Q1593792 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Hehn"@de ; + foaf:focus wd:Q1593792 . + +nwbib-spatial:Q2069078 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Pennenfeld"@de ; + foaf:focus wd:Q2069078 . + +nwbib-spatial:Q181984 + a skos:Concept ; + skos:broader nwbib-spatial:Q23758642 ; + skos:inScheme ; + skos:prefLabel "Crange"@de ; + foaf:focus wd:Q181984 . + +nwbib-spatial:Q21042074 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Eick"@de ; + foaf:focus wd:Q21042074 . + +nwbib-spatial:Q15132395 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Todenfeld"@de ; + foaf:focus wd:Q15132395 . + +nwbib-spatial:Q1795736 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Dellbrück"@de ; + foaf:focus wd:Q1795736 . + +nwbib-spatial:Q15134144 + a skos:Concept ; + skos:broader nwbib-spatial:Q4181 ; + skos:inScheme ; + skos:prefLabel "Vollmerhausen"@de ; + foaf:focus wd:Q15134144 . + +nwbib-spatial:Q2007164 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Nützenberg"@de ; + foaf:focus wd:Q2007164 . + +nwbib-spatial:Q435116 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Altdorf"@de ; + foaf:focus wd:Q435116 . + +nwbib-spatial:Q1256888 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Pech"@de ; + foaf:focus wd:Q1256888 . + +nwbib-spatial:Q1787307 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Grevenbroich (bis 1974)"@de ; + foaf:focus wd:Q1787307 . + +nwbib-spatial:Q1609562 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Herchen"@de ; + foaf:focus wd:Q1609562 . + +nwbib-spatial:Q819256 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Berg (Mechernich)"@de ; + foaf:focus wd:Q819256 . + +nwbib-spatial:Q2014913 + a skos:Concept ; + skos:broader nwbib-spatial:Q5567 ; + skos:inScheme ; + skos:prefLabel "Oeckinghausen"@de ; + foaf:focus wd:Q2014913 . + +nwbib-spatial:Q44176786 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Deuten"@de ; + foaf:focus wd:Q44176786 . + +nwbib-spatial:Q2139034 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Rehsiepen"@de ; + foaf:focus wd:Q2139034 . + +nwbib-spatial:Q7379734 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Aachen (bis 2009)"@de ; + foaf:focus wd:Q7379734 . + +nwbib-spatial:Q1510420 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Weldergoven"@de ; + foaf:focus wd:Q1510420 . + +nwbib-spatial:Q876515 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Minden-Ravensberg"@de ; + foaf:focus wd:Q876515 . + +nwbib-spatial:Q2769211 + a skos:Concept ; + skos:broader nwbib-spatial:Q163693 ; + skos:inScheme ; + skos:prefLabel "Bracht"@de ; + foaf:focus wd:Q2769211 . + +nwbib-spatial:Q55827183 + a skos:Concept ; + skos:broader nwbib-spatial:Q200208 ; + skos:inScheme ; + skos:prefLabel "Hülsten"@de ; + foaf:focus wd:Q55827183 . + +nwbib-spatial:Q317697 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Meiderich"@de ; + foaf:focus wd:Q317697 . + +nwbib-spatial:Q47462321 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Wittgenstein"@de ; + foaf:focus wd:Q47462321 . + +nwbib-spatial:Q1521837 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Schweinheim"@de ; + foaf:focus wd:Q1521837 . + +nwbib-spatial:Q2253657 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Schwarze Heide"@de ; + foaf:focus wd:Q2253657 . + +nwbib-spatial:Q824387 + a skos:Concept ; + skos:broader nwbib-spatial:Q23788002 ; + skos:inScheme ; + skos:prefLabel "Langendreer"@de ; + foaf:focus wd:Q824387 . + +nwbib-spatial:Q2147624 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Rheindahlen"@de ; + foaf:focus wd:Q2147624 . + +nwbib-spatial:Q5946 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05958" ; + skos:prefLabel "Hochsauerlandkreis"@de ; + foaf:focus wd:Q5946 . + +nwbib-spatial:Q1372294 + a skos:Concept ; + skos:broader nwbib-spatial:Q11050 ; + skos:inScheme ; + skos:prefLabel "Euelsloch"@de ; + foaf:focus wd:Q1372294 . + +nwbib-spatial:Q1309282 + a skos:Concept ; + skos:broader nwbib-spatial:Q831039 ; + skos:inScheme ; + skos:prefLabel "Lichtenbroich"@de ; + foaf:focus wd:Q1309282 . + +nwbib-spatial:Q2245529 + a skos:Concept ; + skos:broader nwbib-spatial:Q2838 ; + skos:inScheme ; + skos:prefLabel "Schmachtendorf"@de ; + foaf:focus wd:Q2245529 . + +nwbib-spatial:Q1427339 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Spexard"@de ; + foaf:focus wd:Q1427339 . + +nwbib-spatial:Q380591 + a skos:Concept ; + skos:broader nwbib-spatial:Q12434 ; + skos:inScheme ; + skos:prefLabel "Aegidienberg"@de ; + foaf:focus wd:Q380591 . + +nwbib-spatial:Q11058 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374040" ; + skos:prefLabel "Reichshof"@de ; + foaf:focus wd:Q11058 . + +nwbib-spatial:Q20826158 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573620 ; + skos:inScheme ; + skos:prefLabel "Rhynern"@de ; + foaf:focus wd:Q20826158 . + +nwbib-spatial:Q1305626 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Glesch"@de ; + foaf:focus wd:Q1305626 . + +nwbib-spatial:Q2035697 + a skos:Concept ; + skos:broader nwbib-spatial:Q53913 ; + skos:inScheme ; + skos:prefLabel "Ostkilver"@de ; + foaf:focus wd:Q2035697 . + +nwbib-spatial:Q808274 + a skos:Concept ; + skos:broader nwbib-spatial:Q14954 ; + skos:inScheme ; + skos:prefLabel "Barkhausen"@de ; + foaf:focus wd:Q808274 . + +nwbib-spatial:Q900461 + a skos:Concept ; + skos:broader nwbib-spatial:Q10950 ; + skos:inScheme ; + skos:prefLabel "Brauersdorf"@de ; + foaf:focus wd:Q900461 . + +nwbib-spatial:Q2593914 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Wormeln"@de ; + foaf:focus wd:Q2593914 . + +nwbib-spatial:Q997038 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Brüninghausen"@de ; + foaf:focus wd:Q997038 . + +nwbib-spatial:Q19369337 + a skos:Concept ; + skos:broader nwbib-spatial:Q5542 ; + skos:inScheme ; + skos:prefLabel "Himmelmert"@de ; + foaf:focus wd:Q19369337 . + +nwbib-spatial:Q314439 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Hohenlimburg"@de ; + foaf:focus wd:Q314439 . + +nwbib-spatial:Q876552 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Grafschaft Gimborn-Neustadt"@de ; + foaf:focus wd:Q876552 . + +nwbib-spatial:Q1428062 + a skos:Concept ; + skos:broader nwbib-spatial:Q12547 ; + skos:inScheme ; + skos:prefLabel "Flerzheim"@de ; + foaf:focus wd:Q1428062 . + +nwbib-spatial:Q153759 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Endenich"@de ; + foaf:focus wd:Q153759 . + +nwbib-spatial:Q445486 + a skos:Concept ; + skos:broader nwbib-spatial:Q551600 ; + skos:inScheme ; + skos:prefLabel "Altstadt"@de ; + foaf:focus wd:Q445486 . + +nwbib-spatial:Q857730 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Bierbaum"@de ; + foaf:focus wd:Q857730 . + +nwbib-spatial:Q1566715 + a skos:Concept ; + skos:broader nwbib-spatial:Q6823 ; + skos:inScheme ; + skos:prefLabel "Habbelrath"@de ; + foaf:focus wd:Q1566715 . + +nwbib-spatial:Q10919 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958028" ; + skos:prefLabel "Medebach"@de ; + foaf:focus wd:Q10919 . + +nwbib-spatial:Q163068 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170036" ; + skos:prefLabel "Schermbeck"@de ; + foaf:focus wd:Q163068 . + +nwbib-spatial:Q1583226 + a skos:Concept ; + skos:broader nwbib-spatial:Q896929 ; + skos:inScheme ; + skos:prefLabel "Kreis Geilenkirchen (bis 1932)"@de ; + foaf:focus wd:Q1583226 . + +nwbib-spatial:Q151448 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Schelsen"@de ; + foaf:focus wd:Q151448 . + +nwbib-spatial:Q1588753 + a skos:Concept ; + skos:broader nwbib-spatial:Q16006 ; + skos:inScheme ; + skos:prefLabel "Hassum"@de ; + foaf:focus wd:Q1588753 . + +nwbib-spatial:Q2136557 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Reelkirchen"@de ; + foaf:focus wd:Q2136557 . + +nwbib-spatial:Q2308256 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Speck / Wehl / Helpenstein"@de ; + foaf:focus wd:Q2308256 . + +nwbib-spatial:Q56098426 + a skos:Concept ; + skos:broader nwbib-spatial:Q7507 ; + skos:inScheme ; + skos:prefLabel "Krähenbach"@de ; + foaf:focus wd:Q56098426 . + +nwbib-spatial:Q1423799 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Herford"@de ; + foaf:focus wd:Q1423799 . + +nwbib-spatial:Q650721 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Sechtem"@de ; + foaf:focus wd:Q650721 . + +nwbib-spatial:Q1296060 + a skos:Concept ; + skos:broader nwbib-spatial:Q204919 ; + skos:inScheme ; + skos:prefLabel "Effeld"@de ; + foaf:focus wd:Q1296060 . + +nwbib-spatial:Q1631463 + a skos:Concept ; + skos:broader nwbib-spatial:Q3949 ; + skos:inScheme ; + skos:prefLabel "Königsborn"@de ; + foaf:focus wd:Q1631463 . + +nwbib-spatial:Q1423322 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Leiberg"@de ; + foaf:focus wd:Q1423322 . + +nwbib-spatial:Q19965671 + a skos:Concept ; + skos:broader nwbib-spatial:Q10933 ; + skos:inScheme ; + skos:prefLabel "Ostbüren"@de ; + foaf:focus wd:Q19965671 . + +nwbib-spatial:Q873555 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Lembeck"@de ; + foaf:focus wd:Q873555 . + +nwbib-spatial:Q56042004 + a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Ostsauerland"@de ; + foaf:focus wd:Q56042004 . + +nwbib-spatial:Q316969 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Bödefeld"@de ; + foaf:focus wd:Q316969 . + +nwbib-spatial:Q1959080 + a skos:Concept ; + skos:broader nwbib-spatial:Q59207767 ; + skos:inScheme ; + skos:prefLabel "Amelsbüren"@de ; + foaf:focus wd:Q1959080 . + +nwbib-spatial:Q47462109 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Gladbeck-Bottrop-Dorsten"@de ; + foaf:focus wd:Q47462109 . + +nwbib-spatial:Q1003093 + a skos:Concept ; + skos:broader nwbib-spatial:Q3959 ; + skos:inScheme ; + skos:prefLabel "Buir"@de ; + foaf:focus wd:Q1003093 . + +nwbib-spatial:Q1699967 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Kapellen"@de ; + foaf:focus wd:Q1699967 . + +nwbib-spatial:Q1530418 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Gleidorf"@de ; + foaf:focus wd:Q1530418 . + +nwbib-spatial:Q1623575 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Hohehaus"@de ; + foaf:focus wd:Q1623575 . + +nwbib-spatial:Q1351335 + a skos:Concept ; + skos:broader nwbib-spatial:Q3985 ; + skos:inScheme ; + skos:prefLabel "Langenbochum"@de ; + foaf:focus wd:Q1351335 . + +nwbib-spatial:Q2648428 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Allendorf"@de ; + foaf:focus wd:Q2648428 . + +nwbib-spatial:Q936707 + a skos:Concept ; + skos:broader nwbib-spatial:Q4171 ; + skos:inScheme ; + skos:prefLabel "Neersen"@de ; + foaf:focus wd:Q936707 . + +nwbib-spatial:Q2532468 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Vollem"@de ; + foaf:focus wd:Q2532468 . + +nwbib-spatial:Q1506438 + a skos:Concept ; + skos:broader nwbib-spatial:Q53904 ; + skos:inScheme ; + skos:prefLabel "Nagelsholz"@de ; + foaf:focus wd:Q1506438 . + +nwbib-spatial:Q1183128 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Deichhaus"@de ; + foaf:focus wd:Q1183128 . + +nwbib-spatial:Q1113973 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Herhahn"@de ; + foaf:focus wd:Q1113973 . + +nwbib-spatial:Q1260064 + a skos:Concept ; + skos:broader nwbib-spatial:Q183052 ; + skos:inScheme ; + skos:prefLabel "Drohne"@de ; + foaf:focus wd:Q1260064 . + +nwbib-spatial:Q15115050 + a skos:Concept ; + skos:broader nwbib-spatial:Q204793 ; + skos:inScheme ; + skos:prefLabel "Hohenbusch"@de ; + foaf:focus wd:Q15115050 . + +nwbib-spatial:Q10956 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970012" ; + skos:prefLabel "Erndtebrück"@de ; + foaf:focus wd:Q10956 . + +nwbib-spatial:Q50375132 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Heid (Wenden, Sauerland)"@de ; + foaf:focus wd:Q50375132 . + +nwbib-spatial:Q886302 + a skos:Concept ; + skos:broader nwbib-spatial:Q11120 ; + skos:inScheme ; + skos:prefLabel "Blumenthal"@de ; + foaf:focus wd:Q886302 . + +nwbib-spatial:Q1787360 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Kempen (bis 1929)"@de ; + foaf:focus wd:Q1787360 . + +nwbib-spatial:Q678456 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Kaiserswerth"@de ; + foaf:focus wd:Q678456 . + +nwbib-spatial:Q1588790 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Hastenrath"@de ; + foaf:focus wd:Q1588790 . + +nwbib-spatial:Q1803056 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Landkreis Altena (bis 1968)"@de ; + foaf:focus wd:Q1803056 . + +nwbib-spatial:Q1888241 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Oechelhausen"@de ; + foaf:focus wd:Q1888241 . + +nwbib-spatial:Q437316 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Altenkleusheim"@de ; + foaf:focus wd:Q437316 . + +nwbib-spatial:Q1376264 + a skos:Concept ; + skos:broader nwbib-spatial:Q14888 ; + skos:inScheme ; + skos:prefLabel "Wessum"@de ; + foaf:focus wd:Q1376264 . + +nwbib-spatial:Q1475402 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Fusternberg"@de ; + foaf:focus wd:Q1475402 . + +nwbib-spatial:Q1778631 + a skos:Concept ; + skos:broader nwbib-spatial:Q769183 ; + skos:inScheme ; + skos:prefLabel "Kohlfurth"@de ; + foaf:focus wd:Q1778631 . + +nwbib-spatial:Q870622 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140358 ; + skos:inScheme ; + skos:prefLabel "Resse"@de ; + foaf:focus wd:Q870622 . + +nwbib-spatial:Q1301497 + a skos:Concept ; + skos:broader nwbib-spatial:Q10890 ; + skos:inScheme ; + skos:prefLabel "Eichen"@de ; + foaf:focus wd:Q1301497 . + +nwbib-spatial:Q882157 + a skos:Concept ; + skos:broader nwbib-spatial:Q10923 ; + skos:inScheme ; + skos:prefLabel "Neuastenberg"@de ; + foaf:focus wd:Q882157 . + +nwbib-spatial:Q10780117 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Weuspert"@de ; + foaf:focus wd:Q10780117 . + +nwbib-spatial:Q10935 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978032" ; + skos:prefLabel "Selm"@de ; + foaf:focus wd:Q10935 . + +nwbib-spatial:Q1404753 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Sümmern"@de ; + foaf:focus wd:Q1404753 . + +nwbib-spatial:Q1921797 + a skos:Concept ; + skos:broader nwbib-spatial:Q1884 ; + skos:inScheme ; + skos:prefLabel "Merken"@de ; + foaf:focus wd:Q1921797 . + +nwbib-spatial:Q55986074 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Geistenbeck"@de ; + foaf:focus wd:Q55986074 . + +nwbib-spatial:Q55985956 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Bliedinghausen"@de ; + foaf:focus wd:Q55985956 . + +nwbib-spatial:Q1429141 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Floisdorf"@de ; + foaf:focus wd:Q1429141 . + +nwbib-spatial:Q59139024 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Stieghorst"@de ; + foaf:focus wd:Q59139024 . + +nwbib-spatial:Q923493 + a skos:Concept ; + skos:broader nwbib-spatial:Q2804 ; + skos:inScheme ; + skos:prefLabel "Brock"@de ; + foaf:focus wd:Q923493 . + +nwbib-spatial:Q1325506 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Eldagsen"@de ; + foaf:focus wd:Q1325506 . + +nwbib-spatial:Q1434840 + a skos:Concept ; + skos:broader nwbib-spatial:Q4090 ; + skos:inScheme ; + skos:prefLabel "Niederpleis"@de ; + foaf:focus wd:Q1434840 . + +nwbib-spatial:Q1553316 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Raderberg"@de ; + foaf:focus wd:Q1553316 . + +nwbib-spatial:Q2570401 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Wildberg"@de ; + foaf:focus wd:Q2570401 . + +nwbib-spatial:Q1673344 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Robringhausen"@de ; + foaf:focus wd:Q1673344 . + +nwbib-spatial:Q1479675 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Koch"@de ; + foaf:focus wd:Q1479675 . + +nwbib-spatial:Q1797347 + a skos:Concept ; + skos:broader nwbib-spatial:Q10919 ; + skos:inScheme ; + skos:prefLabel "Küstelberg"@de ; + foaf:focus wd:Q1797347 . + +nwbib-spatial:Q153754 + a skos:Concept ; + skos:broader nwbib-spatial:Q450087 ; + skos:inScheme ; + skos:prefLabel "Lengsdorf"@de ; + foaf:focus wd:Q153754 . + +nwbib-spatial:Q21039642 + a skos:Concept ; + skos:broader nwbib-spatial:Q3132 ; + skos:inScheme ; + skos:prefLabel "Hochstraß"@de ; + foaf:focus wd:Q21039642 . + +nwbib-spatial:Q1796746 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Köterberg"@de ; + foaf:focus wd:Q1796746 . + +nwbib-spatial:Q2153631 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Ringenberg"@de ; + foaf:focus wd:Q2153631 . + +nwbib-spatial:Q1289090 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Scheid"@de ; + foaf:focus wd:Q1289090 . + +nwbib-spatial:Q1644645 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Bergheim (bis 1974)"@de ; + foaf:focus wd:Q1644645 . + +nwbib-spatial:N28 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "28" ; + skos:prefLabel "Eifel"@de ; + foaf:focus wd:Q152356 . + +nwbib-spatial:Q200138 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358012" ; + skos:prefLabel "Heimbach"@de ; + foaf:focus wd:Q200138 . + +nwbib-spatial:Q47022415 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Lennep"@de ; + foaf:focus wd:Q47022415 . + +nwbib-spatial:Q44081891 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Stapelage"@de ; + foaf:focus wd:Q44081891 . + +nwbib-spatial:Q232354 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Zweibrüggen"@de ; + foaf:focus wd:Q232354 . + +nwbib-spatial:Q1384350 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Hamm"@de ; + foaf:focus wd:Q1384350 . + +nwbib-spatial:Q59168726 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Nettesheim"@de ; + foaf:focus wd:Q59168726 . + +nwbib-spatial:Q1723245 + a skos:Concept ; + skos:broader nwbib-spatial:Q10976 ; + skos:inScheme ; + skos:prefLabel "Wiedenest"@de ; + foaf:focus wd:Q1723245 . + +nwbib-spatial:Q878752 + a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:prefLabel "Landkreis Münster (bis 1974)"@de ; + foaf:focus wd:Q878752 . + +nwbib-spatial:Q5380059 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Enste"@de ; + foaf:focus wd:Q5380059 . + +nwbib-spatial:Q2838 a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:notation "05119" ; + skos:prefLabel "Oberhausen"@de ; + foaf:focus wd:Q2838 . + +nwbib-spatial:Q1767479 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Rumbeck"@de ; + foaf:focus wd:Q1767479 . + +nwbib-spatial:Q2176732 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Rurich"@de ; + foaf:focus wd:Q2176732 . + +nwbib-spatial:Q2162254 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Rohr"@de ; + foaf:focus wd:Q2162254 . + +nwbib-spatial:Q878667 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Kapellen"@de ; + foaf:focus wd:Q878667 . + +nwbib-spatial:Q56373241 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Warendorf"@de ; + foaf:focus wd:Q56373241 . + +nwbib-spatial:Q59035909 + a skos:Concept ; + skos:broader nwbib-spatial:Q245466 ; + skos:inScheme ; + skos:prefLabel "Erberich"@de ; + foaf:focus wd:Q59035909 . + +nwbib-spatial:Q10887 a skos:Concept ; + skos:broader nwbib-spatial:Q5953 ; + skos:inScheme ; + skos:notation "05966004" ; + skos:prefLabel "Attendorn"@de ; + foaf:focus wd:Q10887 . + +nwbib-spatial:Q28167777 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Dilkrath"@de ; + foaf:focus wd:Q28167777 . + +nwbib-spatial:N07 a skos:Concept ; + skos:broader nwbib-spatial:N0 ; + skos:inScheme ; + skos:notation "07" ; + skos:prefLabel "Europaregionen"@de . + +nwbib-spatial:Q1264301 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Duissern"@de ; + foaf:focus wd:Q1264301 . + +nwbib-spatial:Q1164237 + a skos:Concept ; + skos:broader nwbib-spatial:Q3846 ; + skos:inScheme ; + skos:prefLabel "Dankersen"@de ; + foaf:focus wd:Q1164237 . + +nwbib-spatial:Q1368635 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Kupferdreh"@de ; + foaf:focus wd:Q1368635 . + +nwbib-spatial:Q883257 + a skos:Concept ; + skos:broader nwbib-spatial:N36 ; + skos:inScheme ; + skos:prefLabel "Bistum Minden"@de ; + foaf:focus wd:Q883257 . + +nwbib-spatial:Q200743 + a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334024" ; + skos:prefLabel "Roetgen"@de ; + foaf:focus wd:Q200743 . + +nwbib-spatial:Q1297516 + a skos:Concept ; + skos:broader nwbib-spatial:Q3893 ; + skos:inScheme ; + skos:prefLabel "Eggenscheid"@de ; + foaf:focus wd:Q1297516 . + +nwbib-spatial:Q26836848 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Offermannsheide"@de ; + foaf:focus wd:Q26836848 . + +nwbib-spatial:Q1370875 + a skos:Concept ; + skos:broader nwbib-spatial:Q11102 ; + skos:inScheme ; + skos:prefLabel "Störmede"@de ; + foaf:focus wd:Q1370875 . + +nwbib-spatial:Q1531072 + a skos:Concept ; + skos:broader nwbib-spatial:Q242810 ; + skos:inScheme ; + skos:prefLabel "Rischenau"@de ; + foaf:focus wd:Q1531072 . + +nwbib-spatial:Q14926 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558044" ; + skos:prefLabel "Senden"@de ; + foaf:focus wd:Q14926 . + +nwbib-spatial:N65 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "65" ; + skos:prefLabel "Fürstbistum und Hochstift Münster"@de ; + foaf:focus wd:Q697254 . + +nwbib-spatial:Q47462077 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Dortmund"@de ; + foaf:focus wd:Q47462077 . + +nwbib-spatial:Q323577 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 9 (Düsseldorf)"@de ; + foaf:focus wd:Q323577 . + +nwbib-spatial:Q1456426 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Oeventrop"@de ; + foaf:focus wd:Q1456426 . + +nwbib-spatial:Q1017317 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Buscherhof"@de ; + foaf:focus wd:Q1017317 . + +nwbib-spatial:Q3959 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362032" ; + skos:prefLabel "Kerpen"@de ; + foaf:focus wd:Q3959 . + +nwbib-spatial:Q883719 + a skos:Concept ; + skos:broader nwbib-spatial:Q518491 ; + skos:inScheme ; + skos:prefLabel "Lövenich"@de ; + foaf:focus wd:Q883719 . + +nwbib-spatial:Q43157295 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Bilveringsen"@de ; + foaf:focus wd:Q43157295 . + +nwbib-spatial:Q992245 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Etzweiler"@de ; + foaf:focus wd:Q992245 . + +nwbib-spatial:Q1368614 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Burgaltendorf"@de ; + foaf:focus wd:Q1368614 . + +nwbib-spatial:Q56024292 + a skos:Concept ; + skos:broader nwbib-spatial:Q881495 ; + skos:inScheme ; + skos:prefLabel "Froschenteich"@de ; + foaf:focus wd:Q56024292 . + +nwbib-spatial:Q2016476 + a skos:Concept ; + skos:broader nwbib-spatial:Q5542 ; + skos:inScheme ; + skos:prefLabel "Ohle (Plettenberg)"@de ; + foaf:focus wd:Q2016476 . + +nwbib-spatial:Q16107 a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762020" ; + skos:prefLabel "Höxter"@de ; + foaf:focus wd:Q16107 . + +nwbib-spatial:Q564155 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Stift Essen"@de ; + foaf:focus wd:Q564155 . + +nwbib-spatial:Q2566258 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Wevelinghoven"@de ; + foaf:focus wd:Q2566258 . + +nwbib-spatial:Q1200207 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Derkum"@de ; + foaf:focus wd:Q1200207 . + +nwbib-spatial:Q242098 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762008" ; + skos:prefLabel "Beverungen"@de ; + foaf:focus wd:Q242098 . + +nwbib-spatial:Q2206016 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Vernum"@de ; + foaf:focus wd:Q2206016 . + +nwbib-spatial:Q1915674 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Meckingsen"@de ; + foaf:focus wd:Q1915674 . + +nwbib-spatial:Q881226 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Hamme"@de ; + foaf:focus wd:Q881226 . + +nwbib-spatial:Q895698 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Effelsberg"@de ; + foaf:focus wd:Q895698 . + +nwbib-spatial:Q1625213 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q1625213 . + +nwbib-spatial:N44 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "44" ; + skos:prefLabel "Grafschaft, Herzogtum Jülich, Herzogtum Jülich-Berg"@de ; + foaf:focus wd:Q322062 . + +nwbib-spatial:Q1619937 + a skos:Concept ; + skos:broader nwbib-spatial:Q2789 ; + skos:inScheme ; + skos:prefLabel "Vadrup"@de ; + foaf:focus wd:Q1619937 . + +nwbib-spatial:Q2151108 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Richerzhagen"@de ; + foaf:focus wd:Q2151108 . + +nwbib-spatial:Q1366844 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Esch"@de ; + foaf:focus wd:Q1366844 . + +nwbib-spatial:Q813735 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Beckrath"@de ; + foaf:focus wd:Q813735 . + +nwbib-spatial:Q15294309 + a skos:Concept ; + skos:broader nwbib-spatial:Q243433 ; + skos:inScheme ; + skos:prefLabel "Hasselt"@de ; + foaf:focus wd:Q15294309 . + +nwbib-spatial:Q2238773 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Schleiden"@de ; + foaf:focus wd:Q2238773 . + +nwbib-spatial:Q73604858 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Alstedde"@de ; + foaf:focus wd:Q73604858 . + +nwbib-spatial:Q1825949 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Linde"@de ; + foaf:focus wd:Q1825949 . + +nwbib-spatial:Q1333061 + a skos:Concept ; + skos:broader nwbib-spatial:Q163837 ; + skos:inScheme ; + skos:prefLabel "Elmpt"@de ; + foaf:focus wd:Q1333061 . + +nwbib-spatial:Q2473706 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Uevekoven"@de ; + foaf:focus wd:Q2473706 . + +nwbib-spatial:Q671315 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Helmeringhausen"@de ; + foaf:focus wd:Q671315 . + +nwbib-spatial:Q221813 + a skos:Concept ; + skos:broader nwbib-spatial:Q1808050 ; + skos:inScheme ; + skos:prefLabel "Orsbach"@de ; + foaf:focus wd:Q221813 . + +nwbib-spatial:Q44287884 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Altenvoerde"@de ; + foaf:focus wd:Q44287884 . + +nwbib-spatial:Q14878 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158024" ; + skos:prefLabel "Mettmann"@de ; + foaf:focus wd:Q14878 . + +nwbib-spatial:N23 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "23" ; + skos:prefLabel "Siebengebirge"@de ; + foaf:focus wd:Q4236 . + +nwbib-spatial:Q1234953 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Osterholz"@de ; + foaf:focus wd:Q1234953 . + +nwbib-spatial:Q2510924 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Varresbeck"@de ; + foaf:focus wd:Q2510924 . + +nwbib-spatial:Q2769 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570052" ; + skos:prefLabel "Warendorf"@de ; + foaf:focus wd:Q2769 . + +nwbib-spatial:Q1767416 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Rösebeck"@de ; + foaf:focus wd:Q1767416 . + +nwbib-spatial:Q857407 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Bielstein"@de ; + foaf:focus wd:Q857407 . + +nwbib-spatial:Q3917 a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554008" ; + skos:prefLabel "Bocholt"@de ; + foaf:focus wd:Q3917 . + +nwbib-spatial:Q1103964 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Clörath"@de ; + foaf:focus wd:Q1103964 . + +nwbib-spatial:Q1588032 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Harzheim"@de ; + foaf:focus wd:Q1588032 . + +nwbib-spatial:Q17575871 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Hülschotten"@de ; + foaf:focus wd:Q17575871 . + +nwbib-spatial:Q1543589 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Grastrup-Hölsen"@de ; + foaf:focus wd:Q1543589 . + +nwbib-spatial:Q894514 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Bosseborn"@de ; + foaf:focus wd:Q894514 . + +nwbib-spatial:Q836171 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Lommersum"@de ; + foaf:focus wd:Q836171 . + +nwbib-spatial:Q865894 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Birten"@de ; + foaf:focus wd:Q865894 . + +nwbib-spatial:Q871085 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Herbede"@de ; + foaf:focus wd:Q871085 . + +nwbib-spatial:Q889055 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Ehrenfeld"@de ; + foaf:focus wd:Q889055 . + +nwbib-spatial:Q893913 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Born"@de ; + foaf:focus wd:Q893913 . + +nwbib-spatial:Q1675459 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Kreuzberg"@de ; + foaf:focus wd:Q1675459 . + +nwbib-spatial:Q1883305 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Madfeld"@de ; + foaf:focus wd:Q1883305 . + +nwbib-spatial:Q2630305 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Alertshausen"@de ; + foaf:focus wd:Q2630305 . + +nwbib-spatial:Q1863961 + a skos:Concept ; + skos:broader nwbib-spatial:Q10949 ; + skos:inScheme ; + skos:prefLabel "Oberndorf"@de ; + foaf:focus wd:Q1863961 . + +nwbib-spatial:Q1738149 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Keldenich"@de ; + foaf:focus wd:Q1738149 . + +nwbib-spatial:Q1536609 + a skos:Concept ; + skos:broader nwbib-spatial:Q5632 ; + skos:inScheme ; + skos:prefLabel "Visbeck"@de ; + foaf:focus wd:Q1536609 . + +nwbib-spatial:Q903333 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Braßhagen"@de ; + foaf:focus wd:Q903333 . + +nwbib-spatial:Q1585120 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Hardissen"@de ; + foaf:focus wd:Q1585120 . + +nwbib-spatial:Q1777892 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Kobeshofen"@de ; + foaf:focus wd:Q1777892 . + +nwbib-spatial:Q1880472 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Lüttringen"@de ; + foaf:focus wd:Q1880472 . + +nwbib-spatial:Q815919 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Bellersen"@de ; + foaf:focus wd:Q815919 . + +nwbib-spatial:Q893345 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Borbeck"@de ; + foaf:focus wd:Q893345 . + +nwbib-spatial:Q1547771 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Grouven"@de ; + foaf:focus wd:Q1547771 . + +nwbib-spatial:Q2300445 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Sommerberg"@de ; + foaf:focus wd:Q2300445 . + +nwbib-spatial:Q2203983 + a skos:Concept ; + skos:broader nwbib-spatial:Q153260 ; + skos:inScheme ; + skos:prefLabel "Rüngsdorf"@de ; + foaf:focus wd:Q2203983 . + +nwbib-spatial:Q14921 a skos:Concept ; + skos:broader nwbib-spatial:Q6210 ; + skos:inScheme ; + skos:notation "05558004" ; + skos:prefLabel "Ascheberg"@de ; + foaf:focus wd:Q14921 . + +nwbib-spatial:Q1624002 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Hohkeppel"@de ; + foaf:focus wd:Q1624002 . + +nwbib-spatial:Q884315 + a skos:Concept ; + skos:broader nwbib-spatial:N24 ; + skos:inScheme ; + skos:prefLabel "Kölner Bucht"@de ; + foaf:focus wd:Q884315 . + +nwbib-spatial:Q1672690 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Stockum"@de ; + foaf:focus wd:Q1672690 . + +nwbib-spatial:Q6298 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05374" ; + skos:prefLabel "Oberbergischer Kreis"@de ; + foaf:focus wd:Q6298 . + +nwbib-spatial:Q2798606 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Rosmart"@de ; + foaf:focus wd:Q2798606 . + +nwbib-spatial:Q243177 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154056" ; + skos:prefLabel "Uedem"@de ; + foaf:focus wd:Q243177 . + +nwbib-spatial:Q1310921 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Eisborn"@de ; + foaf:focus wd:Q1310921 . + +nwbib-spatial:Q1487887 + a skos:Concept ; + skos:broader nwbib-spatial:Q2009133 ; + skos:inScheme ; + skos:prefLabel "Nächstebreck-Ost"@de ; + foaf:focus wd:Q1487887 . + +nwbib-spatial:Q599193 + a skos:Concept ; + skos:broader nwbib-spatial:N28 ; + skos:inScheme ; + skos:prefLabel "Hohes Venn"@de ; + foaf:focus wd:Q599193 . + +nwbib-spatial:Q593247 + a skos:Concept ; + skos:broader nwbib-spatial:Q1503134 ; + skos:inScheme ; + skos:prefLabel "Handorf"@de ; + foaf:focus wd:Q593247 . + +nwbib-spatial:Q1880451 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Lüttenglehn"@de ; + foaf:focus wd:Q1880451 . + +nwbib-spatial:Q6219 a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366032" ; + skos:prefLabel "Nettersheim"@de ; + foaf:focus wd:Q6219 . + +nwbib-spatial:Q1469183 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Fritzdorf"@de ; + foaf:focus wd:Q1469183 . + +nwbib-spatial:Q1017 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334002" ; + skos:prefLabel "Aachen"@de ; + foaf:focus wd:Q1017 . + +nwbib-spatial:Q1998780 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Nordwald"@de ; + foaf:focus wd:Q1998780 . + +nwbib-spatial:Q44693867 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Uelde"@de ; + foaf:focus wd:Q44693867 . + +nwbib-spatial:Q798787 + a skos:Concept ; + skos:broader nwbib-spatial:Q3943 ; + skos:inScheme ; + skos:prefLabel "Bad Waldliesborn"@de ; + foaf:focus wd:Q798787 . + +nwbib-spatial:Q14900 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562016" ; + skos:prefLabel "Haltern am See"@de ; + foaf:focus wd:Q14900 . + +nwbib-spatial:Q1787578 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Kreis Wittgenstein (bis 1974)"@de ; + foaf:focus wd:Q1787578 . + +nwbib-spatial:Q56373671 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Ahaus-Vreden"@de ; + foaf:focus wd:Q56373671 . + +nwbib-spatial:Q2498025 + a skos:Concept ; + skos:broader nwbib-spatial:Q182716 ; + skos:inScheme ; + skos:prefLabel "Unterlübbe"@de ; + foaf:focus wd:Q2498025 . + +nwbib-spatial:Q1618705 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139024 ; + skos:inScheme ; + skos:prefLabel "Hillegossen"@de ; + foaf:focus wd:Q1618705 . + +nwbib-spatial:Q875161 + a skos:Concept ; + skos:broader nwbib-spatial:N12 ; + skos:inScheme ; + skos:prefLabel "Lipper Bergland"@de ; + foaf:focus wd:Q875161 . + +nwbib-spatial:Q1395453 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Siersdorf"@de ; + foaf:focus wd:Q1395453 . + +nwbib-spatial:Q66724629 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140275 ; + skos:inScheme ; + skos:prefLabel "Heßler"@de ; + foaf:focus wd:Q66724629 . + +nwbib-spatial:Q2076235 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Praest"@de ; + foaf:focus wd:Q2076235 . + +nwbib-spatial:Q1020132 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Bösperde"@de ; + foaf:focus wd:Q1020132 . + +nwbib-spatial:Q29561600 + a skos:Concept ; + skos:broader nwbib-spatial:Q200208 ; + skos:inScheme ; + skos:prefLabel "Klein Reken"@de ; + foaf:focus wd:Q29561600 . + +nwbib-spatial:Q1798962 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Vilkerath"@de ; + foaf:focus wd:Q1798962 . + +nwbib-spatial:Q257549 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Bergeborbeck"@de ; + foaf:focus wd:Q257549 . + +nwbib-spatial:Q45735731 + a skos:Concept ; + skos:broader nwbib-spatial:Q163837 ; + skos:inScheme ; + skos:prefLabel "Overhetfeld"@de ; + foaf:focus wd:Q45735731 . + +nwbib-spatial:Q1261488 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Herkenrath"@de ; + foaf:focus wd:Q1261488 . + +nwbib-spatial:Q1587845 + a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:prefLabel "Kreis Detmold (bis 1972)"@de ; + foaf:focus wd:Q1587845 . + +nwbib-spatial:Q1283532 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Tüschenbroich"@de ; + foaf:focus wd:Q1283532 . + +nwbib-spatial:Q1797252 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Küppersteg"@de ; + foaf:focus wd:Q1797252 . + +nwbib-spatial:Q17543808 + a skos:Concept ; + skos:broader nwbib-spatial:Q1250639 ; + skos:inScheme ; + skos:prefLabel "Persebeck-Kruckel-Schnee"@de ; + foaf:focus wd:Q17543808 . + +nwbib-spatial:Q814310 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Beggendorf"@de ; + foaf:focus wd:Q814310 . + +nwbib-spatial:Q29567461 + a skos:Concept ; + skos:broader nwbib-spatial:Q200190 ; + skos:inScheme ; + skos:prefLabel "Gemen"@de ; + foaf:focus wd:Q29567461 . + +nwbib-spatial:Q152432 + a skos:Concept ; + skos:broader nwbib-spatial:N54 ; + skos:inScheme ; + skos:prefLabel "Reichsabtei Kornelimünster"@de ; + foaf:focus wd:Q152432 . + +nwbib-spatial:Q568645 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Anreppen"@de ; + foaf:focus wd:Q568645 . + +nwbib-spatial:Q315481 + a skos:Concept ; + skos:broader nwbib-spatial:Q323588 ; + skos:inScheme ; + skos:prefLabel "Angermund"@de ; + foaf:focus wd:Q315481 . + +nwbib-spatial:Q2015281 + a skos:Concept ; + skos:broader nwbib-spatial:Q1130 ; + skos:inScheme ; + skos:prefLabel "Oestrich"@de ; + foaf:focus wd:Q2015281 . + +nwbib-spatial:Q1367817 + a skos:Concept ; + skos:broader nwbib-spatial:Q6111 ; + skos:inScheme ; + skos:prefLabel "Hünningen"@de ; + foaf:focus wd:Q1367817 . + +nwbib-spatial:Q3912 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958004" ; + skos:prefLabel "Arnsberg"@de ; + foaf:focus wd:Q3912 . + +nwbib-spatial:Q53911 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758020" ; + skos:prefLabel "Kirchlengern"@de ; + foaf:focus wd:Q53911 . + +nwbib-spatial:Q1157444 + a skos:Concept ; + skos:broader nwbib-spatial:Q58456 ; + skos:inScheme ; + skos:prefLabel "Dahlerbrück"@de ; + foaf:focus wd:Q1157444 . + +nwbib-spatial:Q1258325 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Dremmen"@de ; + foaf:focus wd:Q1258325 . + +nwbib-spatial:Q15116936 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Soest"@de ; + foaf:focus wd:Q15116936 . + +nwbib-spatial:Q1382102 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Eversael"@de ; + foaf:focus wd:Q1382102 . + +nwbib-spatial:Q2202772 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Rösberg"@de ; + foaf:focus wd:Q2202772 . + +nwbib-spatial:Q2633935 + a skos:Concept ; + skos:broader nwbib-spatial:Q59261814 ; + skos:inScheme ; + skos:prefLabel "Achenbach"@de ; + foaf:focus wd:Q2633935 . + +nwbib-spatial:Q1736878 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Richrath"@de ; + foaf:focus wd:Q1736878 . + +nwbib-spatial:Q894907 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139867 ; + skos:inScheme ; + skos:prefLabel "Batenbrock"@de ; + foaf:focus wd:Q894907 . + +nwbib-spatial:Q1922118 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Merten"@de ; + foaf:focus wd:Q1922118 . + +nwbib-spatial:Q241450 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366004" ; + skos:prefLabel "Bad Münstereifel"@de ; + foaf:focus wd:Q241450 . + +nwbib-spatial:Q1855196 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Welz"@de ; + foaf:focus wd:Q1855196 . + +nwbib-spatial:Q2464018 + a skos:Concept ; + skos:broader nwbib-spatial:Q14929 ; + skos:inScheme ; + skos:prefLabel "Tönisberg"@de ; + foaf:focus wd:Q2464018 . + +nwbib-spatial:Q1418945 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Oberkirchen"@de ; + foaf:focus wd:Q1418945 . + +nwbib-spatial:Q1625558 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Holzheim"@de ; + foaf:focus wd:Q1625558 . + +nwbib-spatial:Q1369141 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Mengede"@de ; + foaf:focus wd:Q1369141 . + +nwbib-spatial:Q655835 + a skos:Concept ; + skos:broader nwbib-spatial:Q11039 ; + skos:inScheme ; + skos:prefLabel "Dahlerau"@de ; + foaf:focus wd:Q655835 . + +nwbib-spatial:Q15265016 + a skos:Concept ; + skos:broader nwbib-spatial:Q4171 ; + skos:inScheme ; + skos:prefLabel "Vennheide"@de ; + foaf:focus wd:Q15265016 . + +nwbib-spatial:Q1808276 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Laurenzberg"@de ; + foaf:focus wd:Q1808276 . + +nwbib-spatial:Q1628051 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Horchheim"@de ; + foaf:focus wd:Q1628051 . + +nwbib-spatial:Q55888099 + a skos:Concept ; + skos:broader nwbib-spatial:N74 ; + skos:inScheme ; + skos:prefLabel "Herrschaft Horstmar"@de ; + foaf:focus wd:Q55888099 . + +nwbib-spatial:Q55586826 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Büecke"@de ; + foaf:focus wd:Q55586826 . + +nwbib-spatial:Q2570115 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Wilberhofen"@de ; + foaf:focus wd:Q2570115 . + +nwbib-spatial:Q151725 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Kirchhoven"@de ; + foaf:focus wd:Q151725 . + +nwbib-spatial:Q979067 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Marienberg"@de ; + foaf:focus wd:Q979067 . + +nwbib-spatial:Q991968 + a skos:Concept ; + skos:broader nwbib-spatial:Q16107 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen"@de ; + foaf:focus wd:Q991968 . + +nwbib-spatial:Q2065715 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Schönau"@de ; + foaf:focus wd:Q2065715 . + +nwbib-spatial:Q2203893 + a skos:Concept ; + skos:broader nwbib-spatial:Q11301 ; + skos:inScheme ; + skos:prefLabel "Rüggeberg"@de ; + foaf:focus wd:Q2203893 . + +nwbib-spatial:Q1591063 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Hausdorp"@de ; + foaf:focus wd:Q1591063 . + +nwbib-spatial:Q7924 a skos:Concept ; + skos:broader nwbib-spatial:N05 ; + skos:inScheme ; + skos:notation "059" ; + skos:prefLabel "Regierungsbezirk Arnsberg"@de ; + foaf:focus wd:Q7924 . + +nwbib-spatial:Q1661581 + a skos:Concept ; + skos:broader nwbib-spatial:Q6852 ; + skos:inScheme ; + skos:prefLabel "Kardorf"@de ; + foaf:focus wd:Q1661581 . + +nwbib-spatial:Q896146 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Dülken"@de ; + foaf:focus wd:Q896146 . + +nwbib-spatial:Q44072335 + a skos:Concept ; + skos:broader nwbib-spatial:Q200581 ; + skos:inScheme ; + skos:prefLabel "Krechting"@de ; + foaf:focus wd:Q44072335 . + +nwbib-spatial:Q2473568 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Uedesheim"@de ; + foaf:focus wd:Q2473568 . + +nwbib-spatial:Q1612286 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Peckelsheim"@de ; + foaf:focus wd:Q1612286 . + +nwbib-spatial:Q1787032 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Kredenbach"@de ; + foaf:focus wd:Q1787032 . + +nwbib-spatial:Q6214 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05562" ; + skos:prefLabel "Kreis Recklinghausen"@de ; + foaf:focus wd:Q6214 . + +nwbib-spatial:Q865698 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Birlenbach"@de ; + foaf:focus wd:Q865698 . + +nwbib-spatial:Q2563272 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Werpe"@de ; + foaf:focus wd:Q2563272 . + +nwbib-spatial:Q885367 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Godorf"@de ; + foaf:focus wd:Q885367 . + +nwbib-spatial:Q1880361 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Lüntenbeck"@de ; + foaf:focus wd:Q1880361 . + +nwbib-spatial:Q154048 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Kornelimünster"@de ; + foaf:focus wd:Q154048 . + +nwbib-spatial:Q476731 + a skos:Concept ; + skos:broader nwbib-spatial:Q200068 ; + skos:inScheme ; + skos:prefLabel "Oberbolheim"@de ; + foaf:focus wd:Q476731 . + +nwbib-spatial:Q161575 + a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562036" ; + skos:prefLabel "Waltrop"@de ; + foaf:focus wd:Q161575 . + +nwbib-spatial:Q869521 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Hövel"@de ; + foaf:focus wd:Q869521 . + +nwbib-spatial:Q905591 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Breidt"@de ; + foaf:focus wd:Q905591 . + +nwbib-spatial:Q29878913 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Enkeln"@de ; + foaf:focus wd:Q29878913 . + +nwbib-spatial:Q2557695 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Wellentrup"@de ; + foaf:focus wd:Q2557695 . + +nwbib-spatial:Q50375345 + a skos:Concept ; + skos:broader nwbib-spatial:Q200326 ; + skos:inScheme ; + skos:prefLabel "Ahle (Heek)"@de ; + foaf:focus wd:Q50375345 . + +nwbib-spatial:Q6755 a skos:Concept ; + skos:broader nwbib-spatial:Q5982 ; + skos:inScheme ; + skos:notation "05970028" ; + skos:prefLabel "Bad Laasphe"@de ; + foaf:focus wd:Q6755 . + +nwbib-spatial:Q6272 a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:notation "05334" ; + skos:prefLabel "Städteregion Aachen"@de ; + foaf:focus wd:Q6272 . + +nwbib-spatial:Q1336361 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Mülheim"@de ; + foaf:focus wd:Q1336361 . + +nwbib-spatial:Q14810 a skos:Concept ; + skos:broader nwbib-spatial:Q6249 ; + skos:inScheme ; + skos:notation "05166016" ; + skos:prefLabel "Nettetal"@de ; + foaf:focus wd:Q14810 . + +nwbib-spatial:Q47074373 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Eckdorf"@de ; + foaf:focus wd:Q47074373 . + +nwbib-spatial:Q1746145 + a skos:Concept ; + skos:broader nwbib-spatial:Q225794 ; + skos:inScheme ; + skos:prefLabel "Kleekamp"@de ; + foaf:focus wd:Q1746145 . + +nwbib-spatial:Q1250646 + a skos:Concept ; + skos:broader nwbib-spatial:Q989822 ; + skos:inScheme ; + skos:prefLabel "Kemminghausen"@de ; + foaf:focus wd:Q1250646 . + +nwbib-spatial:Q6187 a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:notation "05566" ; + skos:prefLabel "Kreis Steinfurt"@de ; + foaf:focus wd:Q6187 . + +nwbib-spatial:Q16295605 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Zum Hohle"@de ; + foaf:focus wd:Q16295605 . + +nwbib-spatial:Q1787409 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Moers (bis 1974)"@de ; + foaf:focus wd:Q1787409 . + +nwbib-spatial:Q400169 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Ahe"@de ; + foaf:focus wd:Q400169 . + +nwbib-spatial:Q1880340 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Horstmar"@de ; + foaf:focus wd:Q1880340 . + +nwbib-spatial:Q19968107 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Wersbach"@de ; + foaf:focus wd:Q19968107 . + +nwbib-spatial:Q15841757 + a skos:Concept ; + skos:broader nwbib-spatial:Q1747717 ; + skos:inScheme ; + skos:prefLabel "Rarbach (bis 1974)"@de ; + foaf:focus wd:Q15841757 . + +nwbib-spatial:Q870893 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973169 ; + skos:inScheme ; + skos:prefLabel "Gerthe"@de ; + foaf:focus wd:Q870893 . + +nwbib-spatial:Q2232647 + a skos:Concept ; + skos:broader nwbib-spatial:Q11038 ; + skos:inScheme ; + skos:prefLabel "Scheideweg"@de ; + foaf:focus wd:Q2232647 . + +nwbib-spatial:Q1902079 + a skos:Concept ; + skos:broader nwbib-spatial:Q254774 ; + skos:inScheme ; + skos:prefLabel "Oedekoven"@de ; + foaf:focus wd:Q1902079 . + +nwbib-spatial:Q1880255 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Lüerdissen"@de ; + foaf:focus wd:Q1880255 . + +nwbib-spatial:Q175947 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Stammheim"@de ; + foaf:focus wd:Q175947 . + +nwbib-spatial:Q2558822 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Wemlighausen"@de ; + foaf:focus wd:Q2558822 . + +nwbib-spatial:Q1743148 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Halle"@de ; + foaf:focus wd:Q1743148 . + +nwbib-spatial:Q1501486 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Geneiken"@de ; + foaf:focus wd:Q1501486 . + +nwbib-spatial:Q1602367 + a skos:Concept ; + skos:broader nwbib-spatial:Q59243186 ; + skos:inScheme ; + skos:prefLabel "Mastbruch"@de ; + foaf:focus wd:Q1602367 . + +nwbib-spatial:Q3822 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978024" ; + skos:prefLabel "Lünen"@de ; + foaf:focus wd:Q3822 . + +nwbib-spatial:Q2553836 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Weckinghausen"@de ; + foaf:focus wd:Q2553836 . + +nwbib-spatial:Q12472 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382044" ; + skos:prefLabel "Niederkassel"@de ; + foaf:focus wd:Q12472 . + +nwbib-spatial:Q19965821 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Südkamen"@de ; + foaf:focus wd:Q19965821 . + +nwbib-spatial:Q1310783 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Eisbach"@de ; + foaf:focus wd:Q1310783 . + +nwbib-spatial:Q2112 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05711" ; + skos:prefLabel "Bielefeld"@de ; + foaf:focus wd:Q2112 . + +nwbib-spatial:Q2548377 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Wanheimerort"@de ; + foaf:focus wd:Q2548377 . + +nwbib-spatial:Q1339772 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240322 ; + skos:inScheme ; + skos:prefLabel "Emst"@de ; + foaf:focus wd:Q1339772 . + +nwbib-spatial:Q1279529 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Großvernich"@de ; + foaf:focus wd:Q1279529 . + +nwbib-spatial:Q278635 + a skos:Concept ; + skos:broader nwbib-spatial:Q240039 ; + skos:inScheme ; + skos:prefLabel "Hausweiler"@de ; + foaf:focus wd:Q278635 . + +nwbib-spatial:Q1250683 + a skos:Concept ; + skos:broader nwbib-spatial:Q1554715 ; + skos:inScheme ; + skos:prefLabel "Oespel"@de ; + foaf:focus wd:Q1250683 . + +nwbib-spatial:Q1278530 + a skos:Concept ; + skos:broader nwbib-spatial:Q11047 ; + skos:inScheme ; + skos:prefLabel "Ebbinghausen"@de ; + foaf:focus wd:Q1278530 . + +nwbib-spatial:Q1489419 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Wielpütz"@de ; + foaf:focus wd:Q1489419 . + +nwbib-spatial:Q6230 a skos:Concept ; + skos:broader nwbib-spatial:Q7923 ; + skos:inScheme ; + skos:notation "05766" ; + skos:prefLabel "Kreis Lippe"@de ; + foaf:focus wd:Q6230 . + +nwbib-spatial:Q2130336 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Ramrath"@de ; + foaf:focus wd:Q2130336 . + +nwbib-spatial:Q15115136 + a skos:Concept ; + skos:broader nwbib-spatial:Q181910 ; + skos:inScheme ; + skos:prefLabel "Holthausen"@de ; + foaf:focus wd:Q15115136 . + +nwbib-spatial:Q699438 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Arrenberg"@de ; + foaf:focus wd:Q699438 . + +nwbib-spatial:Q2233768 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Scherpenseel"@de ; + foaf:focus wd:Q2233768 . + +nwbib-spatial:Q1257549 + a skos:Concept ; + skos:broader nwbib-spatial:Q181504 ; + skos:inScheme ; + skos:prefLabel "Dreierwalde"@de ; + foaf:focus wd:Q1257549 . + +nwbib-spatial:Q19687919 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Junkersholz"@de ; + foaf:focus wd:Q19687919 . + +nwbib-spatial:Q894249 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Borth"@de ; + foaf:focus wd:Q894249 . + +nwbib-spatial:Q1610389 + a skos:Concept ; + skos:broader nwbib-spatial:Q4192 ; + skos:inScheme ; + skos:prefLabel "Overberge"@de ; + foaf:focus wd:Q1610389 . + +nwbib-spatial:Q865152 + a skos:Concept ; + skos:broader nwbib-spatial:Q204919 ; + skos:inScheme ; + skos:prefLabel "Birgelen"@de ; + foaf:focus wd:Q865152 . + +nwbib-spatial:Q2268249 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Selhausen"@de ; + foaf:focus wd:Q2268249 . + +nwbib-spatial:Q1729650 + a skos:Concept ; + skos:broader nwbib-spatial:Q10960 ; + skos:inScheme ; + skos:prefLabel "Rudersdorf"@de ; + foaf:focus wd:Q1729650 . + +nwbib-spatial:Q1302816 + a skos:Concept ; + skos:broader nwbib-spatial:Q11058 ; + skos:inScheme ; + skos:prefLabel "Eiershagen"@de ; + foaf:focus wd:Q1302816 . + +nwbib-spatial:Q2014967 + a skos:Concept ; + skos:broader nwbib-spatial:Q163772 ; + skos:inScheme ; + skos:prefLabel "Oedt"@de ; + foaf:focus wd:Q2014967 . + +nwbib-spatial:Q2010992 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Obersorpe"@de ; + foaf:focus wd:Q2010992 . + +nwbib-spatial:Q56099214 + a skos:Concept ; + skos:broader nwbib-spatial:Q14895 ; + skos:inScheme ; + skos:prefLabel "Niersenbruch"@de ; + foaf:focus wd:Q56099214 . + +nwbib-spatial:Q1546847 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Grimlinghausen"@de ; + foaf:focus wd:Q1546847 . + +nwbib-spatial:Q1519976 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Getmold"@de ; + foaf:focus wd:Q1519976 . + +nwbib-spatial:Q1250662 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326752 ; + skos:inScheme ; + skos:prefLabel "Körne"@de ; + foaf:focus wd:Q1250662 . + +nwbib-spatial:Q2282416 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Siebenstern"@de ; + foaf:focus wd:Q2282416 . + +nwbib-spatial:Q880944 + a skos:Concept ; + skos:broader nwbib-spatial:Q492224 ; + skos:inScheme ; + skos:prefLabel "Höntrop"@de ; + foaf:focus wd:Q880944 . + +nwbib-spatial:Q2222245 + a skos:Concept ; + skos:broader nwbib-spatial:Q4083 ; + skos:inScheme ; + skos:prefLabel "Sankt Jöris"@de ; + foaf:focus wd:Q2222245 . + +nwbib-spatial:Q885362 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Varenholz"@de ; + foaf:focus wd:Q885362 . + +nwbib-spatial:Q1255779 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Drankhausen"@de ; + foaf:focus wd:Q1255779 . + +nwbib-spatial:Q997119 + a skos:Concept ; + skos:broader nwbib-spatial:Q14817 ; + skos:inScheme ; + skos:prefLabel "Brüntorf"@de ; + foaf:focus wd:Q997119 . + +nwbib-spatial:Q18746932 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Schmithof"@de ; + foaf:focus wd:Q18746932 . + +nwbib-spatial:Q21042113 + a skos:Concept ; + skos:broader nwbib-spatial:Q3898 ; + skos:inScheme ; + skos:prefLabel "Deininghausen"@de ; + foaf:focus wd:Q21042113 . + +nwbib-spatial:Q18816341 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Illeschlade"@de ; + foaf:focus wd:Q18816341 . + +nwbib-spatial:Q890253 + a skos:Concept ; + skos:broader nwbib-spatial:Q59240473 ; + skos:inScheme ; + skos:prefLabel "Boele"@de ; + foaf:focus wd:Q890253 . + +nwbib-spatial:Q1428626 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Fliesteden"@de ; + foaf:focus wd:Q1428626 . + +nwbib-spatial:Q1571550 + a skos:Concept ; + skos:broader nwbib-spatial:Q7036 ; + skos:inScheme ; + skos:prefLabel "Pingsdorf"@de ; + foaf:focus wd:Q1571550 . + +nwbib-spatial:Q1531206 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Glessen"@de ; + foaf:focus wd:Q1531206 . + +nwbib-spatial:Q257475 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803600 ; + skos:inScheme ; + skos:prefLabel "Bedingrade"@de ; + foaf:focus wd:Q257475 . + +nwbib-spatial:Q2586708 + a skos:Concept ; + skos:broader nwbib-spatial:Q3764 ; + skos:inScheme ; + skos:prefLabel "Rüdinghausen"@de ; + foaf:focus wd:Q2586708 . + +nwbib-spatial:Q61053310 + a skos:Concept ; + skos:broader nwbib-spatial:Q3985 ; + skos:inScheme ; + skos:prefLabel "Bertlich"@de ; + foaf:focus wd:Q61053310 . + +nwbib-spatial:Q1747139 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Käsberg"@de ; + foaf:focus wd:Q1747139 . + +nwbib-spatial:Q20820494 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Böminghausen"@de ; + foaf:focus wd:Q20820494 . + +nwbib-spatial:Q19687956 + a skos:Concept ; + skos:broader nwbib-spatial:Q1573609 ; + skos:inScheme ; + skos:prefLabel "Weetfeld"@de ; + foaf:focus wd:Q19687956 . + +nwbib-spatial:Q63860001 + a skos:Concept ; + skos:broader nwbib-spatial:Q182018 ; + skos:inScheme ; + skos:prefLabel "Büren"@de ; + foaf:focus wd:Q63860001 . + +nwbib-spatial:Q1959103 + a skos:Concept ; + skos:broader nwbib-spatial:Q1959104 ; + skos:inScheme ; + skos:prefLabel "Münster-Kreuzviertel"@de ; + foaf:focus wd:Q1959103 . + +nwbib-spatial:Q15718877 + a skos:Concept ; + skos:broader nwbib-spatial:Q317314 ; + skos:inScheme ; + skos:prefLabel "Neuenkamp"@de ; + foaf:focus wd:Q15718877 . + +nwbib-spatial:Q885341 + a skos:Concept ; + skos:broader nwbib-spatial:Q469928 ; + skos:inScheme ; + skos:prefLabel "Friemersheim"@de ; + foaf:focus wd:Q885341 . + +nwbib-spatial:Q56099734 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Hochsauerland-Mitte"@de ; + foaf:focus wd:Q56099734 . + +nwbib-spatial:Q153898 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Werth"@de ; + foaf:focus wd:Q153898 . + +nwbib-spatial:Q56005598 + a skos:Concept ; + skos:broader nwbib-spatial:Q243301 ; + skos:inScheme ; + skos:prefLabel "Eyll"@de ; + foaf:focus wd:Q56005598 . + +nwbib-spatial:Q1789773 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Krombach"@de ; + foaf:focus wd:Q1789773 . + +nwbib-spatial:Q1302370 + a skos:Concept ; + skos:broader nwbib-spatial:Q3971 ; + skos:inScheme ; + skos:prefLabel "Eickum"@de ; + foaf:focus wd:Q1302370 . + +nwbib-spatial:Q183262 + a skos:Concept ; + skos:broader nwbib-spatial:Q6224 ; + skos:inScheme ; + skos:notation "05774004" ; + skos:prefLabel "Altenbeken"@de ; + foaf:focus wd:Q183262 . + +nwbib-spatial:Q59139715 + a skos:Concept ; + skos:broader nwbib-spatial:Q3069 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Bottrop-Mitte"@de ; + foaf:focus wd:Q59139715 . + +nwbib-spatial:Q1758699 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Buchheim"@de ; + foaf:focus wd:Q1758699 . + +nwbib-spatial:Q2230085 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Schafhausen"@de ; + foaf:focus wd:Q2230085 . + +nwbib-spatial:Q1333842 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Elsig"@de ; + foaf:focus wd:Q1333842 . + +nwbib-spatial:Q1306971 + a skos:Concept ; + skos:broader nwbib-spatial:Q2769 ; + skos:inScheme ; + skos:prefLabel "Einen"@de ; + foaf:focus wd:Q1306971 . + +nwbib-spatial:Q1393928 + a skos:Concept ; + skos:broader nwbib-spatial:Q200783 ; + skos:inScheme ; + skos:prefLabel "Rohren"@de ; + foaf:focus wd:Q1393928 . + +nwbib-spatial:Q1378677 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Herrath"@de ; + foaf:focus wd:Q1378677 . + +nwbib-spatial:Q896576 + a skos:Concept ; + skos:broader nwbib-spatial:Q14884 ; + skos:inScheme ; + skos:prefLabel "Brachelen"@de ; + foaf:focus wd:Q896576 . + +nwbib-spatial:Q56008489 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Dohr"@de ; + foaf:focus wd:Q56008489 . + +nwbib-spatial:Q1535297 + a skos:Concept ; + skos:broader nwbib-spatial:Q12444 ; + skos:inScheme ; + skos:prefLabel "Ittenbach"@de ; + foaf:focus wd:Q1535297 . + +nwbib-spatial:Q56576094 + a skos:Concept ; + skos:broader nwbib-spatial:Q881325 ; + skos:inScheme ; + skos:prefLabel "Binsheim"@de ; + foaf:focus wd:Q56576094 . + +nwbib-spatial:Q19371154 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Kempen"@de ; + foaf:focus wd:Q19371154 . + +nwbib-spatial:Q1358628 + a skos:Concept ; + skos:broader nwbib-spatial:Q241235 ; + skos:inScheme ; + skos:prefLabel "Reetz"@de ; + foaf:focus wd:Q1358628 . + +nwbib-spatial:Q1548548 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Großenbreden"@de ; + foaf:focus wd:Q1548548 . + +nwbib-spatial:Q19299563 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Röllecken"@de ; + foaf:focus wd:Q19299563 . + +nwbib-spatial:Q23559794 + a skos:Concept ; + skos:broader nwbib-spatial:Q1490832 ; + skos:inScheme ; + skos:prefLabel "Bethel"@de ; + foaf:focus wd:Q23559794 . + +nwbib-spatial:Q61310666 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Hemden"@de ; + foaf:focus wd:Q61310666 . + +nwbib-spatial:Q998304 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Buchenhofen"@de ; + foaf:focus wd:Q998304 . + +nwbib-spatial:Q1579537 + a skos:Concept ; + skos:broader nwbib-spatial:Q14949 ; + skos:inScheme ; + skos:prefLabel "Höven"@de ; + foaf:focus wd:Q1579537 . + +nwbib-spatial:Q14290930 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Großheide"@de ; + foaf:focus wd:Q14290930 . + +nwbib-spatial:Q1296597 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Rehmerloh"@de ; + foaf:focus wd:Q1296597 . + +nwbib-spatial:Q781679 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Langel"@de ; + foaf:focus wd:Q781679 . + +nwbib-spatial:Q2007155 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Nütterden"@de ; + foaf:focus wd:Q2007155 . + +nwbib-spatial:Q151651 + a skos:Concept ; + skos:broader nwbib-spatial:Q870865 ; + skos:inScheme ; + skos:prefLabel "Vennhausen"@de ; + foaf:focus wd:Q151651 . + +nwbib-spatial:Q1759911 + a skos:Concept ; + skos:broader nwbib-spatial:Q7926 ; + skos:inScheme ; + skos:prefLabel "Kreis Rees (bis 1974)"@de ; + foaf:focus wd:Q1759911 . + +nwbib-spatial:Q1289696 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Opherten"@de ; + foaf:focus wd:Q1289696 . + +nwbib-spatial:Q19965731 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Rüspe"@de ; + foaf:focus wd:Q19965731 . + +nwbib-spatial:Q2185043 + a skos:Concept ; + skos:broader nwbib-spatial:Q3840 ; + skos:inScheme ; + skos:prefLabel "Tönisheide"@de ; + foaf:focus wd:Q2185043 . + +nwbib-spatial:Q18629264 + a skos:Concept ; + skos:broader nwbib-spatial:Q3912 ; + skos:inScheme ; + skos:prefLabel "Moosfelde"@de ; + foaf:focus wd:Q18629264 . + +nwbib-spatial:Q831039 + a skos:Concept ; + skos:broader nwbib-spatial:Q1718 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk 6 (Düsseldorf)"@de ; + foaf:focus wd:Q831039 . + +nwbib-spatial:Q330792 + a skos:Concept ; + skos:broader nwbib-spatial:Q204966 ; + skos:inScheme ; + skos:prefLabel "Übach"@de ; + foaf:focus wd:Q330792 . + +nwbib-spatial:Q1493482 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Kaiserau"@de ; + foaf:focus wd:Q1493482 . + +nwbib-spatial:Q1405696 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Heeren-Werve"@de ; + foaf:focus wd:Q1405696 . + +nwbib-spatial:Q2406610 + a skos:Concept ; + skos:broader nwbib-spatial:Q204860 ; + skos:inScheme ; + skos:prefLabel "Tetelrath"@de ; + foaf:focus wd:Q2406610 . + +nwbib-spatial:Q1258686 + a skos:Concept ; + skos:broader nwbib-spatial:Q163017 ; + skos:inScheme ; + skos:prefLabel "Drevenack"@de ; + foaf:focus wd:Q1258686 . + +nwbib-spatial:Q904773 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Bredenbruch"@de ; + foaf:focus wd:Q904773 . + +nwbib-spatial:Q5937 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05962" ; + skos:prefLabel "Märkischer Kreis"@de ; + foaf:focus wd:Q5937 . + +nwbib-spatial:Q1082933 + a skos:Concept ; + skos:broader nwbib-spatial:Q10944 ; + skos:inScheme ; + skos:prefLabel "Christianseck"@de ; + foaf:focus wd:Q1082933 . + +nwbib-spatial:Q1354991 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Erkeln"@de ; + foaf:focus wd:Q1354991 . + +nwbib-spatial:Q2547750 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Wamel"@de ; + foaf:focus wd:Q2547750 . + +nwbib-spatial:Q59240322 + a skos:Concept ; + skos:broader nwbib-spatial:Q2871 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hagen-Mitte"@de ; + foaf:focus wd:Q59240322 . + +nwbib-spatial:Q1562126 + a skos:Concept ; + skos:broader nwbib-spatial:Q16045 ; + skos:inScheme ; + skos:prefLabel "Güsten (Jülich)"@de ; + foaf:focus wd:Q1562126 . + +nwbib-spatial:Q1795764 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Meschenich"@de ; + foaf:focus wd:Q1795764 . + +nwbib-spatial:Q1479841 + a skos:Concept ; + skos:broader nwbib-spatial:Q241866 ; + skos:inScheme ; + skos:prefLabel "Fölsen"@de ; + foaf:focus wd:Q1479841 . + +nwbib-spatial:Q11049 a skos:Concept ; + skos:broader nwbib-spatial:Q6298 ; + skos:inScheme ; + skos:notation "05374024" ; + skos:prefLabel "Marienheide"@de ; + foaf:focus wd:Q11049 . + +nwbib-spatial:Q57726117 + a skos:Concept ; + skos:broader nwbib-spatial:Q314456 ; + skos:inScheme ; + skos:prefLabel "Vohwinkel"@de ; + foaf:focus wd:Q57726117 . + +nwbib-spatial:Q1667307 + a skos:Concept ; + skos:broader nwbib-spatial:Q255235 ; + skos:inScheme ; + skos:prefLabel "Sinsteden"@de ; + foaf:focus wd:Q1667307 . + +nwbib-spatial:Q48879889 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Spork"@de ; + foaf:focus wd:Q48879889 . + +nwbib-spatial:Q1998452 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326748 ; + skos:inScheme ; + skos:prefLabel "Nordmarkt"@de ; + foaf:focus wd:Q1998452 . + +nwbib-spatial:Q1280334 + a skos:Concept ; + skos:broader nwbib-spatial:Q11136 ; + skos:inScheme ; + skos:prefLabel "Herzfeld"@de ; + foaf:focus wd:Q1280334 . + +nwbib-spatial:Q19369328 + a skos:Concept ; + skos:broader nwbib-spatial:Q245495 ; + skos:inScheme ; + skos:prefLabel "Bennert"@de ; + foaf:focus wd:Q19369328 . + +nwbib-spatial:Q1499726 + a skos:Concept ; + skos:broader nwbib-spatial:Q3890 ; + skos:inScheme ; + skos:prefLabel "Gellendorf"@de ; + foaf:focus wd:Q1499726 . + +nwbib-spatial:Q1361871 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Vieringhausen"@de ; + foaf:focus wd:Q1361871 . + +nwbib-spatial:Q1284452 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Immerath"@de ; + foaf:focus wd:Q1284452 . + +nwbib-spatial:Q1170724 + a skos:Concept ; + skos:broader nwbib-spatial:Q241450 ; + skos:inScheme ; + skos:prefLabel "Honerath"@de ; + foaf:focus wd:Q1170724 . + +nwbib-spatial:Q2220327 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Sand"@de ; + foaf:focus wd:Q2220327 . + +nwbib-spatial:Q1304050 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Eilern"@de ; + foaf:focus wd:Q1304050 . + +nwbib-spatial:Q1787876 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Kremenholl"@de ; + foaf:focus wd:Q1787876 . + +nwbib-spatial:Q878286 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Weidesheim"@de ; + foaf:focus wd:Q878286 . + +nwbib-spatial:Q26107 a skos:Concept ; + skos:broader nwbib-spatial:Q3922 ; + skos:inScheme ; + skos:prefLabel "Berlebeck"@de ; + foaf:focus wd:Q26107 . + +nwbib-spatial:Q1573607 + a skos:Concept ; + skos:broader nwbib-spatial:Q2880 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Heessen"@de ; + foaf:focus wd:Q1573607 . + +nwbib-spatial:Q1747049 + a skos:Concept ; + skos:broader nwbib-spatial:Q14903 ; + skos:inScheme ; + skos:prefLabel "Spellen"@de ; + foaf:focus wd:Q1747049 . + +nwbib-spatial:Q804752 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Balde (Erndtebrück)"@de ; + foaf:focus wd:Q804752 . + +nwbib-spatial:Q59243186 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Schloß Neuhaus/Sande"@de ; + foaf:focus wd:Q59243186 . + +nwbib-spatial:Q19968091 + a skos:Concept ; + skos:broader nwbib-spatial:Q7028 ; + skos:inScheme ; + skos:prefLabel "Wasserkurl"@de ; + foaf:focus wd:Q19968091 . + +nwbib-spatial:Q1409146 + a skos:Concept ; + skos:broader nwbib-spatial:Q14863 ; + skos:inScheme ; + skos:prefLabel "Mennighüffen"@de ; + foaf:focus wd:Q1409146 . + +nwbib-spatial:Q808870 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Barrenstein"@de ; + foaf:focus wd:Q808870 . + +nwbib-spatial:Q1410545 + a skos:Concept ; + skos:broader nwbib-spatial:Q1325224 ; + skos:inScheme ; + skos:prefLabel "Zooviertel"@de ; + foaf:focus wd:Q1410545 . + +nwbib-spatial:Q16320175 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Lövenich"@de ; + foaf:focus wd:Q16320175 . + +nwbib-spatial:Q54785788 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Überruhr-Hinsel"@de ; + foaf:focus wd:Q54785788 . + +nwbib-spatial:Q50046754 + a skos:Concept ; + skos:broader nwbib-spatial:Q254171 ; + skos:inScheme ; + skos:prefLabel "Wiescheid"@de ; + foaf:focus wd:Q50046754 . + +nwbib-spatial:Q225774 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754012" ; + skos:prefLabel "Halle (Westf.)"@de ; + foaf:focus wd:Q225774 . + +nwbib-spatial:Q1609484 + a skos:Concept ; + skos:broader nwbib-spatial:Q114402 ; + skos:inScheme ; + skos:prefLabel "Herbringhausen"@de ; + foaf:focus wd:Q1609484 . + +nwbib-spatial:Q120531435 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Neuenhoven"@de ; + foaf:focus wd:Q120531435 . + +nwbib-spatial:Q2354004 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Strauch (Simmerath)"@de ; + foaf:focus wd:Q2354004 . + +nwbib-spatial:Q19687930 + a skos:Concept ; + skos:broader nwbib-spatial:Q6863 ; + skos:inScheme ; + skos:prefLabel "Lichtendorf"@de ; + foaf:focus wd:Q19687930 . + +nwbib-spatial:Q1597127 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Wippringsen"@de ; + foaf:focus wd:Q1597127 . + +nwbib-spatial:Q1628227 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Horm"@de ; + foaf:focus wd:Q1628227 . + +nwbib-spatial:Q1644222 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Hönscheid"@de ; + foaf:focus wd:Q1644222 . + +nwbib-spatial:Q889284 + a skos:Concept ; + skos:broader nwbib-spatial:Q2805 ; + skos:inScheme ; + skos:prefLabel "Bockum"@de ; + foaf:focus wd:Q889284 . + +nwbib-spatial:Q243433 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154004" ; + skos:prefLabel "Bedburg-Hau"@de ; + foaf:focus wd:Q243433 . + +nwbib-spatial:Q2147631 + a skos:Concept ; + skos:broader nwbib-spatial:Q3978 ; + skos:inScheme ; + skos:prefLabel "Rheinfeld"@de ; + foaf:focus wd:Q2147631 . + +nwbib-spatial:Q1236910 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Irsen"@de ; + foaf:focus wd:Q1236910 . + +nwbib-spatial:Q637751 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Merkstein"@de ; + foaf:focus wd:Q637751 . + +nwbib-spatial:Q5953 a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:notation "05966" ; + skos:prefLabel "Kreis Olpe"@de ; + foaf:focus wd:Q5953 . + +nwbib-spatial:Q891205 + a skos:Concept ; + skos:broader nwbib-spatial:Q225621 ; + skos:inScheme ; + skos:prefLabel "Bokel"@de ; + foaf:focus wd:Q891205 . + +nwbib-spatial:Q2569336 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Wiescheid"@de ; + foaf:focus wd:Q2569336 . + +nwbib-spatial:Q2112582 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Schröttinghausen"@de ; + foaf:focus wd:Q2112582 . + +nwbib-spatial:Q151418 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Olpe"@de ; + foaf:focus wd:Q151418 . + +nwbib-spatial:Q56398251 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Attendorn"@de ; + foaf:focus wd:Q56398251 . + +nwbib-spatial:Q200256 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554036" ; + skos:prefLabel "Legden"@de ; + foaf:focus wd:Q200256 . + +nwbib-spatial:Q1110891 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Ohligs"@de ; + foaf:focus wd:Q1110891 . + +nwbib-spatial:Q116744 + a skos:Concept ; + skos:broader nwbib-spatial:Q53901 ; + skos:inScheme ; + skos:prefLabel "Pödinghausen"@de ; + foaf:focus wd:Q116744 . + +nwbib-spatial:Q1617330 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Hiddingsen"@de ; + foaf:focus wd:Q1617330 . + +nwbib-spatial:Q2009838 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Oberheuslingen"@de ; + foaf:focus wd:Q2009838 . + +nwbib-spatial:Q1625856 + a skos:Concept ; + skos:broader nwbib-spatial:Q3791 ; + skos:inScheme ; + skos:prefLabel "Homberg-Meiersberg"@de ; + foaf:focus wd:Q1625856 . + +nwbib-spatial:Q1550437 + a skos:Concept ; + skos:broader nwbib-spatial:Q11045 ; + skos:inScheme ; + skos:prefLabel "Grund"@de ; + foaf:focus wd:Q1550437 . + +nwbib-spatial:Q1826169 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Lindern"@de ; + foaf:focus wd:Q1826169 . + +nwbib-spatial:Q892888 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Bontkirchen"@de ; + foaf:focus wd:Q892888 . + +nwbib-spatial:Q1342922 + a skos:Concept ; + skos:broader nwbib-spatial:Q7927 ; + skos:inScheme ; + skos:prefLabel "Kreis Wipperfürth (bis 1932)"@de ; + foaf:focus wd:Q1342922 . + +nwbib-spatial:Q1303799 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Eikeloh"@de ; + foaf:focus wd:Q1303799 . + +nwbib-spatial:Q2588462 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Dörperhöhe"@de ; + foaf:focus wd:Q2588462 . + +nwbib-spatial:Q163017 + a skos:Concept ; + skos:broader nwbib-spatial:Q6245 ; + skos:inScheme ; + skos:notation "05170016" ; + skos:prefLabel "Hünxe"@de ; + foaf:focus wd:Q163017 . + +nwbib-spatial:Q15080279 + a skos:Concept ; + skos:broader nwbib-spatial:Q11331 ; + skos:inScheme ; + skos:prefLabel "Silschede"@de ; + foaf:focus wd:Q15080279 . + +nwbib-spatial:Q2539468 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Wahlen"@de ; + foaf:focus wd:Q2539468 . + +nwbib-spatial:Q1381629 + a skos:Concept ; + skos:broader nwbib-spatial:Q241655 ; + skos:inScheme ; + skos:prefLabel "Kollerbeck"@de ; + foaf:focus wd:Q1381629 . + +nwbib-spatial:Q883858 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Blerichen"@de ; + foaf:focus wd:Q883858 . + +nwbib-spatial:Q2563512 + a skos:Concept ; + skos:broader nwbib-spatial:Q253498 ; + skos:inScheme ; + skos:prefLabel "Werthhoven"@de ; + foaf:focus wd:Q2563512 . + +nwbib-spatial:Q54803601 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk V (Essen)"@de ; + foaf:focus wd:Q54803601 . + +nwbib-spatial:Q54803595 + a skos:Concept ; + skos:broader nwbib-spatial:Q2066 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk I (Essen)"@de ; + foaf:focus wd:Q54803595 . + +nwbib-spatial:Q2009896 + a skos:Concept ; + skos:broader nwbib-spatial:Q10906 ; + skos:inScheme ; + skos:prefLabel "Oberhundem"@de ; + foaf:focus wd:Q2009896 . + +nwbib-spatial:Q3621 a skos:Concept ; + skos:broader nwbib-spatial:Q446857 ; + skos:inScheme ; + skos:prefLabel "Deutz"@de ; + foaf:focus wd:Q3621 . + +nwbib-spatial:Q1987610 + a skos:Concept ; + skos:broader nwbib-spatial:Q6916 ; + skos:inScheme ; + skos:prefLabel "Niederbardenberg"@de ; + foaf:focus wd:Q1987610 . + +nwbib-spatial:Q19275644 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Bornefeld"@de ; + foaf:focus wd:Q19275644 . + +nwbib-spatial:Q861878 + a skos:Concept ; + skos:broader nwbib-spatial:Q322875 ; + skos:inScheme ; + skos:prefLabel "Bilk"@de ; + foaf:focus wd:Q861878 . + +nwbib-spatial:Q813816 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Bedburdyck"@de ; + foaf:focus wd:Q813816 . + +nwbib-spatial:Q1644174 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Höngen"@de ; + foaf:focus wd:Q1644174 . + +nwbib-spatial:Q51875134 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Elben"@de ; + foaf:focus wd:Q51875134 . + +nwbib-spatial:Q5279 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962044" ; + skos:prefLabel "Nachrodt-Wiblingwerde"@de ; + foaf:focus wd:Q5279 . + +nwbib-spatial:Q1432757 + a skos:Concept ; + skos:broader nwbib-spatial:N10 ; + skos:inScheme ; + skos:prefLabel "Paderborner Hochfläche"@de ; + foaf:focus wd:Q1432757 . + +nwbib-spatial:Q7028 a skos:Concept ; + skos:broader nwbib-spatial:Q6163 ; + skos:inScheme ; + skos:notation "05978020" ; + skos:prefLabel "Kamen"@de ; + foaf:focus wd:Q7028 . + +nwbib-spatial:Q314425 + a skos:Concept ; + skos:broader nwbib-spatial:Q3902 ; + skos:inScheme ; + skos:prefLabel "Süchteln"@de ; + foaf:focus wd:Q314425 . + +nwbib-spatial:Q4195 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362020" ; + skos:prefLabel "Erftstadt"@de ; + foaf:focus wd:Q4195 . + +nwbib-spatial:Q90685626 + a skos:Concept ; + skos:broader nwbib-spatial:Q14895 ; + skos:inScheme ; + skos:prefLabel "Geisbruch"@de ; + foaf:focus wd:Q90685626 . + +nwbib-spatial:Q1546105 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Grevenbrück"@de ; + foaf:focus wd:Q1546105 . + +nwbib-spatial:Q153745 + a skos:Concept ; + skos:broader nwbib-spatial:Q586 ; + skos:inScheme ; + skos:prefLabel "Beuel (Stadtbezirk)"@de ; + foaf:focus wd:Q153745 . + +nwbib-spatial:Q1616623 + a skos:Concept ; + skos:broader nwbib-spatial:Q11140 ; + skos:inScheme ; + skos:prefLabel "Hewingsen"@de ; + foaf:focus wd:Q1616623 . + +nwbib-spatial:Q1361781 + a skos:Concept ; + skos:broader nwbib-spatial:Q12464 ; + skos:inScheme ; + skos:prefLabel "Ersdorf"@de ; + foaf:focus wd:Q1361781 . + +nwbib-spatial:Q1275086 + a skos:Concept ; + skos:broader nwbib-spatial:Q243526 ; + skos:inScheme ; + skos:prefLabel "Wetten"@de ; + foaf:focus wd:Q1275086 . + +nwbib-spatial:Q2153622 + a skos:Concept ; + skos:broader nwbib-spatial:Q183404 ; + skos:inScheme ; + skos:prefLabel "Ringelstein"@de ; + foaf:focus wd:Q2153622 . + +nwbib-spatial:Q1392770 + a skos:Concept ; + skos:broader nwbib-spatial:Q205050 ; + skos:inScheme ; + skos:prefLabel "Würm"@de ; + foaf:focus wd:Q1392770 . + +nwbib-spatial:Q1529026 + a skos:Concept ; + skos:broader nwbib-spatial:Q4048 ; + skos:inScheme ; + skos:prefLabel "Gladbach"@de ; + foaf:focus wd:Q1529026 . + +nwbib-spatial:Q6968 a skos:Concept ; + skos:broader nwbib-spatial:Q6257 ; + skos:inScheme ; + skos:notation "05158004" ; + skos:prefLabel "Erkrath"@de ; + foaf:focus wd:Q6968 . + +nwbib-spatial:Q1455460 + a skos:Concept ; + skos:broader nwbib-spatial:N32 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Jülich"@de ; + foaf:focus wd:Q1455460 . + +nwbib-spatial:Q1734823 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Wewer"@de ; + foaf:focus wd:Q1734823 . + +nwbib-spatial:Q1475430 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Garbeck"@de ; + foaf:focus wd:Q1475430 . + +nwbib-spatial:Q1910891 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Matzerath (Erkelenz)"@de ; + foaf:focus wd:Q1910891 . + +nwbib-spatial:Q886245 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Blumenkamp"@de ; + foaf:focus wd:Q886245 . + +nwbib-spatial:Q1499068 + a skos:Concept ; + skos:broader nwbib-spatial:Q59259446 ; + skos:inScheme ; + skos:prefLabel "Geisweid"@de ; + foaf:focus wd:Q1499068 . + +nwbib-spatial:Q870650 + a skos:Concept ; + skos:broader nwbib-spatial:Q59140253 ; + skos:inScheme ; + skos:prefLabel "Hassel"@de ; + foaf:focus wd:Q870650 . + +nwbib-spatial:Q1652202 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Hüingsen"@de ; + foaf:focus wd:Q1652202 . + +nwbib-spatial:Q57006 a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154008" ; + skos:prefLabel "Emmerich am Rhein"@de ; + foaf:focus wd:Q57006 . + +nwbib-spatial:Q1261781 + a skos:Concept ; + skos:broader nwbib-spatial:Q5642 ; + skos:inScheme ; + skos:prefLabel "Alme"@de ; + foaf:focus wd:Q1261781 . + +nwbib-spatial:Q1113980 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Weyer"@de ; + foaf:focus wd:Q1113980 . + +nwbib-spatial:Q1338238 + a skos:Concept ; + skos:broader nwbib-spatial:Q1959115 ; + skos:inScheme ; + skos:prefLabel "Wolbeck"@de ; + foaf:focus wd:Q1338238 . + +nwbib-spatial:N77 a skos:Concept ; + skos:broader nwbib-spatial:N4-7 ; + skos:inScheme ; + skos:notation "77" ; + skos:prefLabel "Preußische Provinz Westfalen"@de ; + foaf:focus wd:Q829718 . + +nwbib-spatial:Q1430425 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Floßdorf"@de ; + foaf:focus wd:Q1430425 . + +nwbib-spatial:Q2289707 + a skos:Concept ; + skos:broader nwbib-spatial:Q5398 ; + skos:inScheme ; + skos:prefLabel "Sinzenich"@de ; + foaf:focus wd:Q2289707 . + +nwbib-spatial:Q1286567 + a skos:Concept ; + skos:broader nwbib-spatial:Q200122 ; + skos:inScheme ; + skos:prefLabel "Gereonsweiler"@de ; + foaf:focus wd:Q1286567 . + +nwbib-spatial:Q2267511 + a skos:Concept ; + skos:broader nwbib-spatial:Q1304125 ; + skos:inScheme ; + skos:prefLabel "Selbecke"@de ; + foaf:focus wd:Q2267511 . + +nwbib-spatial:Q1727980 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Stachelau"@de ; + foaf:focus wd:Q1727980 . + +nwbib-spatial:Q1268972 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Nörde"@de ; + foaf:focus wd:Q1268972 . + +nwbib-spatial:Q2166846 + a skos:Concept ; + skos:broader nwbib-spatial:Q2948 ; + skos:inScheme ; + skos:prefLabel "Rosellen"@de ; + foaf:focus wd:Q2166846 . + +nwbib-spatial:Q242195 + a skos:Concept ; + skos:broader nwbib-spatial:Q6228 ; + skos:inScheme ; + skos:notation "05762004" ; + skos:prefLabel "Bad Driburg"@de ; + foaf:focus wd:Q242195 . + +nwbib-spatial:Q1095563 + a skos:Concept ; + skos:broader nwbib-spatial:Q225120 ; + skos:inScheme ; + skos:prefLabel "Clarholz"@de ; + foaf:focus wd:Q1095563 . + +nwbib-spatial:Q1524730 + a skos:Concept ; + skos:broader nwbib-spatial:Q11049 ; + skos:inScheme ; + skos:prefLabel "Gimborn"@de ; + foaf:focus wd:Q1524730 . + +nwbib-spatial:Q1700980 + a skos:Concept ; + skos:broader nwbib-spatial:Q10898 ; + skos:inScheme ; + skos:prefLabel "Sondern"@de ; + foaf:focus wd:Q1700980 . + +nwbib-spatial:Q889194 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Bocket"@de ; + foaf:focus wd:Q889194 . + +nwbib-spatial:Q832028 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Römershagen"@de ; + foaf:focus wd:Q832028 . + +nwbib-spatial:Q2527080 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Vinn"@de ; + foaf:focus wd:Q2527080 . + +nwbib-spatial:Q153782 + a skos:Concept ; + skos:broader nwbib-spatial:Q892684 ; + skos:inScheme ; + skos:prefLabel "Kessenich"@de ; + foaf:focus wd:Q153782 . + +nwbib-spatial:Q882647 + a skos:Concept ; + skos:broader nwbib-spatial:Q11343 ; + skos:inScheme ; + skos:prefLabel "Volmarstein"@de ; + foaf:focus wd:Q882647 . + +nwbib-spatial:Q808133 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Barge"@de ; + foaf:focus wd:Q808133 . + +nwbib-spatial:Q1735461 + a skos:Concept ; + skos:broader nwbib-spatial:Q245292 ; + skos:inScheme ; + skos:prefLabel "Kaster"@de ; + foaf:focus wd:Q1735461 . + +nwbib-spatial:Q1752455 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Riesel"@de ; + foaf:focus wd:Q1752455 . + +nwbib-spatial:Q1479624 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Föckinghausen"@de ; + foaf:focus wd:Q1479624 . + +nwbib-spatial:Q14917 a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566012" ; + skos:prefLabel "Greven"@de ; + foaf:focus wd:Q14917 . + +nwbib-spatial:Q1872483 + a skos:Concept ; + skos:broader nwbib-spatial:Q200894 ; + skos:inScheme ; + skos:prefLabel "Loverich"@de ; + foaf:focus wd:Q1872483 . + +nwbib-spatial:Q322426 + a skos:Concept ; + skos:broader nwbib-spatial:Q253784 ; + skos:inScheme ; + skos:prefLabel "Essig"@de ; + foaf:focus wd:Q322426 . + +nwbib-spatial:Q1663115 + a skos:Concept ; + skos:broader nwbib-spatial:Q153779 ; + skos:inScheme ; + skos:prefLabel "Holweide"@de ; + foaf:focus wd:Q1663115 . + +nwbib-spatial:Q1785369 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Kothausen"@de ; + foaf:focus wd:Q1785369 . + +nwbib-spatial:Q1104598 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Cobbenrode"@de ; + foaf:focus wd:Q1104598 . + +nwbib-spatial:Q944071 + a skos:Concept ; + skos:broader nwbib-spatial:Q2563710 ; + skos:inScheme ; + skos:prefLabel "Walheim"@de ; + foaf:focus wd:Q944071 . + +nwbib-spatial:Q4068 a skos:Concept ; + skos:broader nwbib-spatial:Q6272 ; + skos:inScheme ; + skos:notation "05334032" ; + skos:prefLabel "Stolberg"@de ; + foaf:focus wd:Q4068 . + +nwbib-spatial:Q813747 + a skos:Concept ; + skos:broader nwbib-spatial:Q5274 ; + skos:inScheme ; + skos:prefLabel "Beckum"@de ; + foaf:focus wd:Q813747 . + +nwbib-spatial:Q811521 + a skos:Concept ; + skos:broader nwbib-spatial:Q7062 ; + skos:inScheme ; + skos:prefLabel "Baumberg"@de ; + foaf:focus wd:Q811521 . + +nwbib-spatial:Q1485657 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Knapsack"@de ; + foaf:focus wd:Q1485657 . + +nwbib-spatial:Q44070736 + a skos:Concept ; + skos:broader nwbib-spatial:Q200581 ; + skos:inScheme ; + skos:prefLabel "Vardingholt"@de ; + foaf:focus wd:Q44070736 . + +nwbib-spatial:Q2511719 + a skos:Concept ; + skos:broader nwbib-spatial:Q162976 ; + skos:inScheme ; + skos:prefLabel "Veen"@de ; + foaf:focus wd:Q2511719 . + +nwbib-spatial:Q892321 + a skos:Concept ; + skos:broader nwbib-spatial:Q968 ; + skos:inScheme ; + skos:prefLabel "Bonenburg"@de ; + foaf:focus wd:Q892321 . + +nwbib-spatial:Q1617638 + a skos:Concept ; + skos:broader nwbib-spatial:Q3939 ; + skos:inScheme ; + skos:prefLabel "Hiesfeld"@de ; + foaf:focus wd:Q1617638 . + +nwbib-spatial:Q4615 a skos:Concept ; + skos:broader nwbib-spatial:Q6292 ; + skos:inScheme ; + skos:notation "05362016" ; + skos:prefLabel "Elsdorf"@de ; + foaf:focus wd:Q4615 . + +nwbib-spatial:Q1343348 + a skos:Concept ; + skos:broader nwbib-spatial:Q7021 ; + skos:inScheme ; + skos:prefLabel "Ennigloh"@de ; + foaf:focus wd:Q1343348 . + +nwbib-spatial:Q1568943 + a skos:Concept ; + skos:broader nwbib-spatial:Q769183 ; + skos:inScheme ; + skos:prefLabel "Hahnerberg"@de ; + foaf:focus wd:Q1568943 . + +nwbib-spatial:Q857498 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Bienen"@de ; + foaf:focus wd:Q857498 . + +nwbib-spatial:Q1722587 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Kalscheuren"@de ; + foaf:focus wd:Q1722587 . + +nwbib-spatial:Q10921 a skos:Concept ; + skos:broader nwbib-spatial:Q5946 ; + skos:inScheme ; + skos:notation "05958036" ; + skos:prefLabel "Olsberg"@de ; + foaf:focus wd:Q10921 . + +nwbib-spatial:Q18202314 + a skos:Concept ; + skos:broader nwbib-spatial:Q10929 ; + skos:inScheme ; + skos:prefLabel "Hengsbeck"@de ; + foaf:focus wd:Q18202314 . + +nwbib-spatial:Q1374337 + a skos:Concept ; + skos:broader nwbib-spatial:N07 ; + skos:inScheme ; + skos:prefLabel "Euregio (Sitz: Gronau)"@de ; + foaf:focus wd:Q1374337 . + +nwbib-spatial:Q2147435 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Rheidt"@de ; + foaf:focus wd:Q2147435 . + +nwbib-spatial:Q1368663 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803604 ; + skos:inScheme ; + skos:prefLabel "Überruhr"@de ; + foaf:focus wd:Q1368663 . + +nwbib-spatial:Q898990 + a skos:Concept ; + skos:broader nwbib-spatial:Q14870 ; + skos:inScheme ; + skos:prefLabel "Braschoß"@de ; + foaf:focus wd:Q898990 . + +nwbib-spatial:Q830799 + a skos:Concept ; + skos:broader nwbib-spatial:Q241048 ; + skos:inScheme ; + skos:prefLabel "Kronenburg"@de ; + foaf:focus wd:Q830799 . + +nwbib-spatial:Q2249242 + a skos:Concept ; + skos:broader nwbib-spatial:Q243266 ; + skos:inScheme ; + skos:prefLabel "Schottheide"@de ; + foaf:focus wd:Q2249242 . + +nwbib-spatial:Q240887 + a skos:Concept ; + skos:broader nwbib-spatial:Q6280 ; + skos:inScheme ; + skos:notation "05366024" ; + skos:prefLabel "Kall"@de ; + foaf:focus wd:Q240887 . + +nwbib-spatial:Q5274 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962008" ; + skos:prefLabel "Balve"@de ; + foaf:focus wd:Q5274 . + +nwbib-spatial:Q721313 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Asbeck"@de ; + foaf:focus wd:Q721313 . + +nwbib-spatial:Q1987918 + a skos:Concept ; + skos:broader nwbib-spatial:Q4074 ; + skos:inScheme ; + skos:prefLabel "Niederkastenholz"@de ; + foaf:focus wd:Q1987918 . + +nwbib-spatial:Q1568375 + a skos:Concept ; + skos:broader nwbib-spatial:Q14953 ; + skos:inScheme ; + skos:prefLabel "Hagen"@de ; + foaf:focus wd:Q1568375 . + +nwbib-spatial:Q19428914 + a skos:Concept ; + skos:broader nwbib-spatial:Q14949 ; + skos:inScheme ; + skos:prefLabel "Osterwick"@de ; + foaf:focus wd:Q19428914 . + +nwbib-spatial:Q437275 + a skos:Concept ; + skos:broader nwbib-spatial:Q10893 ; + skos:inScheme ; + skos:prefLabel "Altenhundem"@de ; + foaf:focus wd:Q437275 . + +nwbib-spatial:Q1115596 + a skos:Concept ; + skos:broader nwbib-spatial:Q164458 ; + skos:inScheme ; + skos:prefLabel "Schaven"@de ; + foaf:focus wd:Q1115596 . + +nwbib-spatial:Q2430684 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Thüle"@de ; + foaf:focus wd:Q2430684 . + +nwbib-spatial:Q1403427 + a skos:Concept ; + skos:broader nwbib-spatial:Q200059 ; + skos:inScheme ; + skos:prefLabel "Huchem-Stammeln"@de ; + foaf:focus wd:Q1403427 . + +nwbib-spatial:Q257147 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803598 ; + skos:inScheme ; + skos:prefLabel "Rellinghausen"@de ; + foaf:focus wd:Q257147 . + +nwbib-spatial:Q14917523 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Biesfeld"@de ; + foaf:focus wd:Q14917523 . + +nwbib-spatial:Q14954 a skos:Concept ; + skos:broader nwbib-spatial:Q6239 ; + skos:inScheme ; + skos:notation "05770032" ; + skos:prefLabel "Porta Westfalica"@de ; + foaf:focus wd:Q14954 . + +nwbib-spatial:Q23787865 + a skos:Concept ; + skos:broader nwbib-spatial:Q3050 ; + skos:inScheme ; + skos:prefLabel "Recklinghausen-Süd"@de ; + foaf:focus wd:Q23787865 . + +nwbib-spatial:Q243301 + a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154028" ; + skos:prefLabel "Kerken"@de ; + foaf:focus wd:Q243301 . + +nwbib-spatial:Q1743319 + a skos:Concept ; + skos:broader nwbib-spatial:Q53911 ; + skos:inScheme ; + skos:prefLabel "Kirchlengern"@de ; + foaf:focus wd:Q1743319 . + +nwbib-spatial:Q1271987 + a skos:Concept ; + skos:broader nwbib-spatial:Q199968 ; + skos:inScheme ; + skos:prefLabel "Dürboslar"@de ; + foaf:focus wd:Q1271987 . + +nwbib-spatial:Q811415 + a skos:Concept ; + skos:broader nwbib-spatial:Q23758642 ; + skos:inScheme ; + skos:prefLabel "Baukau"@de ; + foaf:focus wd:Q811415 . + +nwbib-spatial:Q45748091 + a skos:Concept ; + skos:broader nwbib-spatial:Q243301 ; + skos:inScheme ; + skos:prefLabel "Nieukerk"@de ; + foaf:focus wd:Q45748091 . + +nwbib-spatial:Q2015362 + a skos:Concept ; + skos:broader nwbib-spatial:Q241761 ; + skos:inScheme ; + skos:prefLabel "Oeynhausen"@de ; + foaf:focus wd:Q2015362 . + +nwbib-spatial:Q26254928 + a skos:Concept ; + skos:broader nwbib-spatial:Q1896592 ; + skos:inScheme ; + skos:prefLabel "Schlingenthal"@de ; + foaf:focus wd:Q26254928 . + +nwbib-spatial:N14 a skos:Concept ; + skos:broader nwbib-spatial:N1-2 ; + skos:inScheme ; + skos:notation "14" ; + skos:prefLabel "Sauerland"@de ; + foaf:focus wd:Q4194 . + +nwbib-spatial:Q1997671 + a skos:Concept ; + skos:broader nwbib-spatial:Q10938 ; + skos:inScheme ; + skos:prefLabel "Nordbögge"@de ; + foaf:focus wd:Q1997671 . + +nwbib-spatial:Q2563401 + a skos:Concept ; + skos:broader nwbib-spatial:Q182018 ; + skos:inScheme ; + skos:prefLabel "Wersen"@de ; + foaf:focus wd:Q2563401 . + +nwbib-spatial:Q1368642 + a skos:Concept ; + skos:broader nwbib-spatial:Q54803602 ; + skos:inScheme ; + skos:prefLabel "Schonnebeck"@de ; + foaf:focus wd:Q1368642 . + +nwbib-spatial:Q32860701 + a skos:Concept ; + skos:broader nwbib-spatial:Q10887 ; + skos:inScheme ; + skos:prefLabel "Biggen"@de ; + foaf:focus wd:Q32860701 . + +nwbib-spatial:Q225621 + a skos:Concept ; + skos:broader nwbib-spatial:Q6218 ; + skos:inScheme ; + skos:notation "05754032" ; + skos:prefLabel "Rietberg"@de ; + foaf:focus wd:Q225621 . + +nwbib-spatial:Q1803000 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Landhausen"@de ; + foaf:focus wd:Q1803000 . + +nwbib-spatial:Q19295196 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Lüdorf"@de ; + foaf:focus wd:Q19295196 . + +nwbib-spatial:Q1245781 + a skos:Concept ; + skos:broader nwbib-spatial:Q57006 ; + skos:inScheme ; + skos:prefLabel "Dornick"@de ; + foaf:focus wd:Q1245781 . + +nwbib-spatial:Q1486216 + a skos:Concept ; + skos:broader nwbib-spatial:Q199974 ; + skos:inScheme ; + skos:prefLabel "Raffelsbrand"@de ; + foaf:focus wd:Q1486216 . + +nwbib-spatial:Q53907 a skos:Concept ; + skos:broader nwbib-spatial:Q6234 ; + skos:inScheme ; + skos:notation "05758036" ; + skos:prefLabel "Vlotho"@de ; + foaf:focus wd:Q53907 . + +nwbib-spatial:Q61726089 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Waat"@de ; + foaf:focus wd:Q61726089 . + +nwbib-spatial:Q26836855 + a skos:Concept ; + skos:broader nwbib-spatial:Q245542 ; + skos:inScheme ; + skos:prefLabel "Bornen"@de ; + foaf:focus wd:Q26836855 . + +nwbib-spatial:Q2362997 + a skos:Concept ; + skos:broader nwbib-spatial:Q769183 ; + skos:inScheme ; + skos:prefLabel "Sudberg"@de ; + foaf:focus wd:Q2362997 . + +nwbib-spatial:Q827068 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Berrenrath"@de ; + foaf:focus wd:Q827068 . + +nwbib-spatial:Q15815780 + a skos:Concept ; + skos:broader nwbib-spatial:Q1719793 ; + skos:inScheme ; + skos:prefLabel "Hohenhagen"@de ; + foaf:focus wd:Q15815780 . + +nwbib-spatial:Q1880405 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Lütgeneder"@de ; + foaf:focus wd:Q1880405 . + +nwbib-spatial:Q876278 + a skos:Concept ; + skos:broader nwbib-spatial:Q320896 ; + skos:inScheme ; + skos:prefLabel "Düsseltal"@de ; + foaf:focus wd:Q876278 . + +nwbib-spatial:Q591601 + a skos:Concept ; + skos:broader nwbib-spatial:Q200105 ; + skos:inScheme ; + skos:prefLabel "Schmidt"@de ; + foaf:focus wd:Q591601 . + +nwbib-spatial:Q2541035 + a skos:Concept ; + skos:broader nwbib-spatial:Q2942 ; + skos:inScheme ; + skos:prefLabel "Wald"@de ; + foaf:focus wd:Q2541035 . + +nwbib-spatial:Q894022 + a skos:Concept ; + skos:broader nwbib-spatial:Q5645 ; + skos:inScheme ; + skos:prefLabel "Borntosten"@de ; + foaf:focus wd:Q894022 . + +nwbib-spatial:Q992109 + a skos:Concept ; + skos:broader nwbib-spatial:Q5764545 ; + skos:inScheme ; + skos:prefLabel "Bruckhausen"@de ; + foaf:focus wd:Q992109 . + +nwbib-spatial:Q818339 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Bentorf"@de ; + foaf:focus wd:Q818339 . + +nwbib-spatial:Q1958715 + a skos:Concept ; + skos:broader nwbib-spatial:Q11049 ; + skos:inScheme ; + skos:prefLabel "Müllenbach"@de ; + foaf:focus wd:Q1958715 . + +nwbib-spatial:Q19297486 + a skos:Concept ; + skos:broader nwbib-spatial:Q3117 ; + skos:inScheme ; + skos:prefLabel "Oberlerbach"@de ; + foaf:focus wd:Q19297486 . + +nwbib-spatial:Q182248 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566064" ; + skos:prefLabel "Nordwalde"@de ; + foaf:focus wd:Q182248 . + +nwbib-spatial:Q1747416 + a skos:Concept ; + skos:broader nwbib-spatial:Q204919 ; + skos:inScheme ; + skos:prefLabel "Ophoven"@de ; + foaf:focus wd:Q1747416 . + +nwbib-spatial:Q1377265 + a skos:Concept ; + skos:broader nwbib-spatial:Q3771 ; + skos:inScheme ; + skos:prefLabel "Nordhorn"@de ; + foaf:focus wd:Q1377265 . + +nwbib-spatial:Q1534368 + a skos:Concept ; + skos:broader nwbib-spatial:Q14863 ; + skos:inScheme ; + skos:prefLabel "Gohfeld"@de ; + foaf:focus wd:Q1534368 . + +nwbib-spatial:Q1368621 + a skos:Concept ; + skos:broader nwbib-spatial:Q14208738 ; + skos:inScheme ; + skos:prefLabel "Fischlaken"@de ; + foaf:focus wd:Q1368621 . + +nwbib-spatial:Q2594846 + a skos:Concept ; + skos:broader nwbib-spatial:Q3886 ; + skos:inScheme ; + skos:prefLabel "Wulfen"@de ; + foaf:focus wd:Q2594846 . + +nwbib-spatial:Q1547619 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Lippholthausen"@de ; + foaf:focus wd:Q1547619 . + +nwbib-spatial:Q2024532 + a skos:Concept ; + skos:broader nwbib-spatial:Q1295 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Hörde"@de ; + foaf:focus wd:Q2024532 . + +nwbib-spatial:Q15110163 + a skos:Concept ; + skos:broader nwbib-spatial:Q2758 ; + skos:inScheme ; + skos:prefLabel "Eicken"@de ; + foaf:focus wd:Q15110163 . + +nwbib-spatial:Q53577707 + a skos:Concept ; + skos:broader nwbib-spatial:Q300703 ; + skos:inScheme ; + skos:prefLabel "Bildchen"@de ; + foaf:focus wd:Q53577707 . + +nwbib-spatial:Q200018 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358032" ; + skos:prefLabel "Langerwehe"@de ; + foaf:focus wd:Q200018 . + +nwbib-spatial:Q1157419 + a skos:Concept ; + skos:broader nwbib-spatial:Q2971 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Dahl"@de ; + foaf:focus wd:Q1157419 . + +nwbib-spatial:Q1558155 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Heimsen"@de ; + foaf:focus wd:Q1558155 . + +nwbib-spatial:Q1944295 + a skos:Concept ; + skos:broader nwbib-spatial:Q12472 ; + skos:inScheme ; + skos:prefLabel "Mondorf"@de ; + foaf:focus wd:Q1944295 . + +nwbib-spatial:Q2103615 + a skos:Concept ; + skos:broader nwbib-spatial:Q16024 ; + skos:inScheme ; + skos:prefLabel "Pont"@de ; + foaf:focus wd:Q2103615 . + +nwbib-spatial:Q1566499 + a skos:Concept ; + skos:broader nwbib-spatial:Q204683 ; + skos:inScheme ; + skos:prefLabel "Haaren"@de ; + foaf:focus wd:Q1566499 . + +nwbib-spatial:Q61727216 + a skos:Concept ; + skos:broader nwbib-spatial:Q2938 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen (Leverkusen)"@de ; + foaf:focus wd:Q61727216 . + +nwbib-spatial:Q1409428 + a skos:Concept ; + skos:broader nwbib-spatial:Q6755 ; + skos:inScheme ; + skos:prefLabel "Feudingen"@de ; + foaf:focus wd:Q1409428 . + +nwbib-spatial:Q1351231 + a skos:Concept ; + skos:broader nwbib-spatial:Q10956 ; + skos:inScheme ; + skos:prefLabel "Womelsdorf"@de ; + foaf:focus wd:Q1351231 . + +nwbib-spatial:Q2390512 + a skos:Concept ; + skos:broader nwbib-spatial:Q242458 ; + skos:inScheme ; + skos:prefLabel "Talle"@de ; + foaf:focus wd:Q2390512 . + +nwbib-spatial:Q56397628 + a skos:Concept ; + skos:broader nwbib-spatial:Q253765 ; + skos:inScheme ; + skos:prefLabel "Dekanat Meschede"@de ; + foaf:focus wd:Q56397628 . + +nwbib-spatial:Q59138276 + a skos:Concept ; + skos:broader nwbib-spatial:Q2112 ; + skos:inScheme ; + skos:prefLabel "Stadtbezirk Heepen"@de ; + foaf:focus wd:Q59138276 . + +nwbib-spatial:Q816086 + a skos:Concept ; + skos:broader nwbib-spatial:Q10976 ; + skos:inScheme ; + skos:prefLabel "Belmicke"@de ; + foaf:focus wd:Q816086 . + +nwbib-spatial:Q1806587 + a skos:Concept ; + skos:broader nwbib-spatial:Q182938 ; + skos:inScheme ; + skos:prefLabel "Lashorst"@de ; + foaf:focus wd:Q1806587 . + +nwbib-spatial:Q44763534 + a skos:Concept ; + skos:broader nwbib-spatial:Q16086 ; + skos:inScheme ; + skos:prefLabel "Wallach"@de ; + foaf:focus wd:Q44763534 . + +nwbib-spatial:Q883699 + a skos:Concept ; + skos:broader nwbib-spatial:Q183345 ; + skos:inScheme ; + skos:prefLabel "Bleiwäsche"@de ; + foaf:focus wd:Q883699 . + +nwbib-spatial:Q200076 + a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358056" ; + skos:prefLabel "Titz"@de ; + foaf:focus wd:Q200076 . + +nwbib-spatial:Q1652632 + a skos:Concept ; + skos:broader nwbib-spatial:Q3167 ; + skos:inScheme ; + skos:prefLabel "Hüttental"@de ; + foaf:focus wd:Q1652632 . + +nwbib-spatial:Q1165827 + a skos:Concept ; + skos:broader nwbib-spatial:Q14949 ; + skos:inScheme ; + skos:prefLabel "Darfeld"@de ; + foaf:focus wd:Q1165827 . + +nwbib-spatial:Q765563 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Weiß"@de ; + foaf:focus wd:Q765563 . + +nwbib-spatial:Q1644498 + a skos:Concept ; + skos:broader nwbib-spatial:Q11046 ; + skos:inScheme ; + skos:prefLabel "Ründeroth"@de ; + foaf:focus wd:Q1644498 . + +nwbib-spatial:Q1624051 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Urft"@de ; + foaf:focus wd:Q1624051 . + +nwbib-spatial:Q151302 + a skos:Concept ; + skos:broader nwbib-spatial:Q4068 ; + skos:inScheme ; + skos:prefLabel "Mausbach"@de ; + foaf:focus wd:Q151302 . + +nwbib-spatial:Q1313496 + a skos:Concept ; + skos:broader nwbib-spatial:Q163917 ; + skos:inScheme ; + skos:prefLabel "Waldniel"@de ; + foaf:focus wd:Q1313496 . + +nwbib-spatial:Q613377 + a skos:Concept ; + skos:broader nwbib-spatial:Q27973016 ; + skos:inScheme ; + skos:prefLabel "Linden"@de ; + foaf:focus wd:Q613377 . + +nwbib-spatial:Q1674886 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Istrup"@de ; + foaf:focus wd:Q1674886 . + +nwbib-spatial:Q1584222 + a skos:Concept ; + skos:broader nwbib-spatial:Q6961 ; + skos:inScheme ; + skos:prefLabel "Happerschoß"@de ; + foaf:focus wd:Q1584222 . + +nwbib-spatial:Q1501588 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Aldenhoven"@de ; + foaf:focus wd:Q1501588 . + +nwbib-spatial:Q1524534 + a skos:Concept ; + skos:broader nwbib-spatial:Q242880 ; + skos:inScheme ; + skos:prefLabel "Heesten"@de ; + foaf:focus wd:Q1524534 . + +nwbib-spatial:Q56571631 + a skos:Concept ; + skos:broader nwbib-spatial:Q4615 ; + skos:inScheme ; + skos:prefLabel "Desdorf"@de ; + foaf:focus wd:Q56571631 . + +nwbib-spatial:Q254649 + a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382016" ; + skos:prefLabel "Eitorf"@de ; + foaf:focus wd:Q254649 . + +nwbib-spatial:Q1017276 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Busch"@de ; + foaf:focus wd:Q1017276 . + +nwbib-spatial:Q1464434 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Frielentrop"@de ; + foaf:focus wd:Q1464434 . + +nwbib-spatial:Q1818408 + a skos:Concept ; + skos:broader nwbib-spatial:Q53904 ; + skos:inScheme ; + skos:prefLabel "Lenzinghausen"@de ; + foaf:focus wd:Q1818408 . + +nwbib-spatial:Q1279233 + a skos:Concept ; + skos:broader nwbib-spatial:Q870865 ; + skos:inScheme ; + skos:prefLabel "Lierenfeld"@de ; + foaf:focus wd:Q1279233 . + +nwbib-spatial:Q927847 + a skos:Concept ; + skos:broader nwbib-spatial:Q241358 ; + skos:inScheme ; + skos:prefLabel "Bronsfeld"@de ; + foaf:focus wd:Q927847 . + +nwbib-spatial:Q486577 + a skos:Concept ; + skos:broader nwbib-spatial:Q3097 ; + skos:inScheme ; + skos:prefLabel "Lennep"@de ; + foaf:focus wd:Q486577 . + +nwbib-spatial:Q1477503 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Serkenrode"@de ; + foaf:focus wd:Q1477503 . + +nwbib-spatial:Q1980069 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Neuenknick"@de ; + foaf:focus wd:Q1980069 . + +nwbib-spatial:Q662025 + a skos:Concept ; + skos:broader nwbib-spatial:Q16146 ; + skos:inScheme ; + skos:prefLabel "Ostenland"@de ; + foaf:focus wd:Q662025 . + +nwbib-spatial:Q1949455 + a skos:Concept ; + skos:broader nwbib-spatial:Q168646 ; + skos:inScheme ; + skos:prefLabel "Mossenberg-Wöhren"@de ; + foaf:focus wd:Q1949455 . + +nwbib-spatial:Q1397108 + a skos:Concept ; + skos:broader nwbib-spatial:Q162717 ; + skos:inScheme ; + skos:prefLabel "Marienthal"@de ; + foaf:focus wd:Q1397108 . + +nwbib-spatial:Q200602 + a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554032" ; + skos:prefLabel "Isselburg"@de ; + foaf:focus wd:Q200602 . + +nwbib-spatial:Q1404081 + a skos:Concept ; + skos:broader nwbib-spatial:Q5999 ; + skos:inScheme ; + skos:prefLabel "Fellinghausen"@de ; + foaf:focus wd:Q1404081 . + +nwbib-spatial:Q1114911 + a skos:Concept ; + skos:broader nwbib-spatial:Q3989 ; + skos:inScheme ; + skos:prefLabel "Kenten"@de ; + foaf:focus wd:Q1114911 . + +nwbib-spatial:Q1130 a skos:Concept ; + skos:broader nwbib-spatial:Q5937 ; + skos:inScheme ; + skos:notation "05962024" ; + skos:prefLabel "Iserlohn"@de ; + foaf:focus wd:Q1130 . + +nwbib-spatial:Q29639269 + a skos:Concept ; + skos:broader nwbib-spatial:Q245438 ; + skos:inScheme ; + skos:prefLabel "Neichen"@de ; + foaf:focus wd:Q29639269 . + +nwbib-spatial:Q2244792 + a skos:Concept ; + skos:broader nwbib-spatial:Q225432 ; + skos:inScheme ; + skos:prefLabel "Schloß Holte"@de ; + foaf:focus wd:Q2244792 . + +nwbib-spatial:Q1250706 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326741 ; + skos:inScheme ; + skos:prefLabel "Wambel"@de ; + foaf:focus wd:Q1250706 . + +nwbib-spatial:Q1262952 + a skos:Concept ; + skos:broader nwbib-spatial:Q4060 ; + skos:inScheme ; + skos:prefLabel "Kendenich"@de ; + foaf:focus wd:Q1262952 . + +nwbib-spatial:Q1424148 + a skos:Concept ; + skos:broader nwbib-spatial:Q199977 ; + skos:inScheme ; + skos:prefLabel "Geuenich"@de ; + foaf:focus wd:Q1424148 . + +nwbib-spatial:Q1621595 + a skos:Concept ; + skos:broader nwbib-spatial:Q884493 ; + skos:inScheme ; + skos:prefLabel "Hoberge-Uerentrup"@de ; + foaf:focus wd:Q1621595 . + +nwbib-spatial:Q834265 + a skos:Concept ; + skos:broader nwbib-spatial:Q20183677 ; + skos:inScheme ; + skos:prefLabel "Eickel"@de ; + foaf:focus wd:Q834265 . + +nwbib-spatial:Q2554035 + a skos:Concept ; + skos:broader nwbib-spatial:Q12449 ; + skos:inScheme ; + skos:prefLabel "Weegen"@de ; + foaf:focus wd:Q2554035 . + +nwbib-spatial:Q1157435 + a skos:Concept ; + skos:broader nwbib-spatial:Q5276 ; + skos:inScheme ; + skos:prefLabel "Dahle"@de ; + foaf:focus wd:Q1157435 . + +nwbib-spatial:Q55499627 + a skos:Concept ; + skos:broader nwbib-spatial:Q59241193 ; + skos:inScheme ; + skos:prefLabel "Herbeck"@de ; + foaf:focus wd:Q55499627 . + +nwbib-spatial:Q686836 + a skos:Concept ; + skos:broader nwbib-spatial:Q200076 ; + skos:inScheme ; + skos:prefLabel "Kalrath"@de ; + foaf:focus wd:Q686836 . + +nwbib-spatial:Q1571190 + a skos:Concept ; + skos:broader nwbib-spatial:Q4086 ; + skos:inScheme ; + skos:prefLabel "Halingen"@de ; + foaf:focus wd:Q1571190 . + +nwbib-spatial:Q16045 a skos:Concept ; + skos:broader nwbib-spatial:Q6275 ; + skos:inScheme ; + skos:notation "05358024" ; + skos:prefLabel "Jülich"@de ; + foaf:focus wd:Q16045 . + +nwbib-spatial:Q245495 + a skos:Concept ; + skos:broader nwbib-spatial:Q6295 ; + skos:inScheme ; + skos:notation "05378016" ; + skos:prefLabel "Leichlingen"@de ; + foaf:focus wd:Q245495 . + +nwbib-spatial:Q543197 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Hofstede"@de ; + foaf:focus wd:Q543197 . + +nwbib-spatial:Q870327 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Rollesbroich"@de ; + foaf:focus wd:Q870327 . + +nwbib-spatial:Q1683573 + a skos:Concept ; + skos:broader nwbib-spatial:Q16042 ; + skos:inScheme ; + skos:prefLabel "Raderbroich"@de ; + foaf:focus wd:Q1683573 . + +nwbib-spatial:Q1958710 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Müllenacker"@de ; + foaf:focus wd:Q1958710 . + +nwbib-spatial:Q1494801 + a skos:Concept ; + skos:broader nwbib-spatial:Q10928 ; + skos:inScheme ; + skos:prefLabel "Wasserfall"@de ; + foaf:focus wd:Q1494801 . + +nwbib-spatial:Q47890385 + a skos:Concept ; + skos:broader nwbib-spatial:Q255416 ; + skos:inScheme ; + skos:prefLabel "Wallrath"@de ; + foaf:focus wd:Q47890385 . + +nwbib-spatial:Q2009133 + a skos:Concept ; + skos:broader nwbib-spatial:Q2107 ; + skos:inScheme ; + skos:prefLabel "Oberbarmen (Stadtbezirk)"@de ; + foaf:focus wd:Q2009133 . + +nwbib-spatial:Q56006328 + a skos:Concept ; + skos:broader nwbib-spatial:Q243474 ; + skos:inScheme ; + skos:prefLabel "Esserden"@de ; + foaf:focus wd:Q56006328 . + +nwbib-spatial:Q437079 + a skos:Concept ; + skos:broader nwbib-spatial:Q11126 ; + skos:inScheme ; + skos:prefLabel "Altengeseke"@de ; + foaf:focus wd:Q437079 . + +nwbib-spatial:Q33165483 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Lohne"@de ; + foaf:focus wd:Q33165483 . + +nwbib-spatial:Q1691838 + a skos:Concept ; + skos:broader nwbib-spatial:Q200528 ; + skos:inScheme ; + skos:prefLabel "Lünten"@de ; + foaf:focus wd:Q1691838 . + +nwbib-spatial:Q1783370 + a skos:Concept ; + skos:broader nwbib-spatial:Q183515 ; + skos:inScheme ; + skos:prefLabel "Mantinghausen"@de ; + foaf:focus wd:Q1783370 . + +nwbib-spatial:Q1897678 + a skos:Concept ; + skos:broader nwbib-spatial:Q225729 ; + skos:inScheme ; + skos:prefLabel "Marienfeld"@de ; + foaf:focus wd:Q1897678 . + +nwbib-spatial:Q1171034 + a skos:Concept ; + skos:broader nwbib-spatial:Q446716 ; + skos:inScheme ; + skos:prefLabel "Zollstock"@de ; + foaf:focus wd:Q1171034 . + +nwbib-spatial:Q177893 + a skos:Concept ; + skos:broader nwbib-spatial:Q2662781 ; + skos:inScheme ; + skos:prefLabel "Grumme"@de ; + foaf:focus wd:Q177893 . + +nwbib-spatial:Q815905 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Beller"@de ; + foaf:focus wd:Q815905 . + +nwbib-spatial:Q6852 a skos:Concept ; + skos:broader nwbib-spatial:Q6287 ; + skos:inScheme ; + skos:notation "05382012" ; + skos:prefLabel "Bornheim"@de ; + foaf:focus wd:Q6852 . + +nwbib-spatial:Q382581 + a skos:Concept ; + skos:broader nwbib-spatial:Q200087 ; + skos:inScheme ; + skos:prefLabel "Soller"@de ; + foaf:focus wd:Q382581 . + +nwbib-spatial:Q16024 a skos:Concept ; + skos:broader nwbib-spatial:Q6246 ; + skos:inScheme ; + skos:notation "05154012" ; + skos:prefLabel "Geldern"@de ; + foaf:focus wd:Q16024 . + +nwbib-spatial:Q1455742 + a skos:Concept ; + skos:broader nwbib-spatial:Q10903 ; + skos:inScheme ; + skos:prefLabel "Fretter"@de ; + foaf:focus wd:Q1455742 . + +nwbib-spatial:Q2072908 + a skos:Concept ; + skos:broader nwbib-spatial:Q7025 ; + skos:inScheme ; + skos:prefLabel "Pesch"@de ; + foaf:focus wd:Q2072908 . + +nwbib-spatial:Q881325 + a skos:Concept ; + skos:broader nwbib-spatial:Q2100 ; + skos:inScheme ; + skos:prefLabel "Homberg/Ruhrort/Baerl (Stadtbezirk)"@de ; + foaf:focus wd:Q881325 . + +nwbib-spatial:Q889020 + a skos:Concept ; + skos:broader nwbib-spatial:Q3917 ; + skos:inScheme ; + skos:prefLabel "Bocholt-West"@de ; + foaf:focus wd:Q889020 . + +nwbib-spatial:Q1751616 + a skos:Concept ; + skos:broader nwbib-spatial:Q4108 ; + skos:inScheme ; + skos:prefLabel "Werl-Aspe"@de ; + foaf:focus wd:Q1751616 . + +nwbib-spatial:Q883068 + a skos:Concept ; + skos:broader nwbib-spatial:Q458242 ; + skos:inScheme ; + skos:prefLabel "Eil"@de ; + foaf:focus wd:Q883068 . + +nwbib-spatial:Q1589054 + a skos:Concept ; + skos:broader nwbib-spatial:Q6149 ; + skos:inScheme ; + skos:prefLabel "Hattrop"@de ; + foaf:focus wd:Q1589054 . + +nwbib-spatial:Q2135741 + a skos:Concept ; + skos:broader nwbib-spatial:Q6015 ; + skos:inScheme ; + skos:prefLabel "Recklinghausen"@de ; + foaf:focus wd:Q2135741 . + +nwbib-spatial:Q2713 a skos:Concept ; + skos:broader nwbib-spatial:Q2839 ; + skos:inScheme ; + skos:notation "05570016" ; + skos:prefLabel "Drensteinfurt"@de ; + foaf:focus wd:Q2713 . + +nwbib-spatial:Q2549096 + a skos:Concept ; + skos:broader nwbib-spatial:Q162890 ; + skos:inScheme ; + skos:prefLabel "Wardt"@de ; + foaf:focus wd:Q2549096 . + +nwbib-spatial:Q2340611 + a skos:Concept ; + skos:broader nwbib-spatial:Q240887 ; + skos:inScheme ; + skos:prefLabel "Steinfeld"@de ; + foaf:focus wd:Q2340611 . + +nwbib-spatial:Q1250658 + a skos:Concept ; + skos:broader nwbib-spatial:Q17679522 ; + skos:inScheme ; + skos:prefLabel "Kurl"@de ; + foaf:focus wd:Q1250658 . + +nwbib-spatial:Q2123012 + a skos:Concept ; + skos:broader nwbib-spatial:Q182857 ; + skos:inScheme ; + skos:prefLabel "Quetzen"@de ; + foaf:focus wd:Q2123012 . + +nwbib-spatial:Q1796600 + a skos:Concept ; + skos:broader nwbib-spatial:Q241978 ; + skos:inScheme ; + skos:prefLabel "Körbecke"@de ; + foaf:focus wd:Q1796600 . + +nwbib-spatial:Q1746783 + a skos:Concept ; + skos:broader nwbib-spatial:Q11043 ; + skos:inScheme ; + skos:prefLabel "Kleinfischbach"@de ; + foaf:focus wd:Q1746783 . + +nwbib-spatial:Q1426958 + a skos:Concept ; + skos:broader nwbib-spatial:Q161673 ; + skos:inScheme ; + skos:prefLabel "Isenbügel"@de ; + foaf:focus wd:Q1426958 . + +nwbib-spatial:Q1693885 + a skos:Concept ; + skos:broader nwbib-spatial:Q4082 ; + skos:inScheme ; + skos:prefLabel "Welper"@de ; + foaf:focus wd:Q1693885 . + +nwbib-spatial:Q1987844 + a skos:Concept ; + skos:broader nwbib-spatial:Q5628 ; + skos:inScheme ; + skos:prefLabel "Niederhenneborn"@de ; + foaf:focus wd:Q1987844 . + +nwbib-spatial:Q1020537 + a skos:Concept ; + skos:broader nwbib-spatial:Q10946 ; + skos:inScheme ; + skos:prefLabel "Bühl"@de ; + foaf:focus wd:Q1020537 . + +nwbib-spatial:Q15856848 + a skos:Concept ; + skos:broader nwbib-spatial:Q3822 ; + skos:inScheme ; + skos:prefLabel "Beckinghausen"@de ; + foaf:focus wd:Q15856848 . + +nwbib-spatial:Q998485 + a skos:Concept ; + skos:broader nwbib-spatial:Q884445 ; + skos:inScheme ; + skos:prefLabel "Buchholz"@de ; + foaf:focus wd:Q998485 . + +nwbib-spatial:Q1632788 + a skos:Concept ; + skos:broader nwbib-spatial:Q253185 ; + skos:inScheme ; + skos:prefLabel "Kuchhausen"@de ; + foaf:focus wd:Q1632788 . + +nwbib-spatial:Q436998 + a skos:Concept ; + skos:broader nwbib-spatial:Q12464 ; + skos:inScheme ; + skos:prefLabel "Altendorf"@de ; + foaf:focus wd:Q436998 . + +nwbib-spatial:Q55629960 + a skos:Concept ; + skos:broader nwbib-spatial:Q10912 ; + skos:inScheme ; + skos:prefLabel "Gerlingen"@de ; + foaf:focus wd:Q55629960 . + +nwbib-spatial:Q1981148 + a skos:Concept ; + skos:broader nwbib-spatial:Q3973 ; + skos:inScheme ; + skos:prefLabel "Neurath"@de ; + foaf:focus wd:Q1981148 . + +nwbib-spatial:Q317334 + a skos:Concept ; + skos:broader nwbib-spatial:Q153745 ; + skos:inScheme ; + skos:prefLabel "Holzlar"@de ; + foaf:focus wd:Q317334 . + +nwbib-spatial:Q1638354 + a skos:Concept ; + skos:broader nwbib-spatial:Q200836 ; + skos:inScheme ; + skos:prefLabel "Huppenbroich"@de ; + foaf:focus wd:Q1638354 . + +nwbib-spatial:Q1469631 + a skos:Concept ; + skos:broader nwbib-spatial:Q242149 ; + skos:inScheme ; + skos:prefLabel "Frohnhausen (Brakel)"@de ; + foaf:focus wd:Q1469631 . + +nwbib-spatial:Q1106714 + a skos:Concept ; + skos:broader nwbib-spatial:Q14914 ; + skos:inScheme ; + skos:prefLabel "Lette"@de ; + foaf:focus wd:Q1106714 . + +nwbib-spatial:Q1250637 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Hostedde"@de ; + foaf:focus wd:Q1250637 . + +nwbib-spatial:Q450682 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Alzenbach"@de ; + foaf:focus wd:Q450682 . + +nwbib-spatial:Q895515 + a skos:Concept ; + skos:broader nwbib-spatial:Q7920 ; + skos:inScheme ; + skos:prefLabel "Kreis Lüdinghausen (bis 1974)"@de ; + foaf:focus wd:Q895515 . + +nwbib-spatial:Q1599752 + a skos:Concept ; + skos:broader nwbib-spatial:Q10921 ; + skos:inScheme ; + skos:prefLabel "Heinrichsdorf"@de ; + foaf:focus wd:Q1599752 . + +nwbib-spatial:Q894914 + a skos:Concept ; + skos:broader nwbib-spatial:Q59139867 ; + skos:inScheme ; + skos:prefLabel "Vonderort"@de ; + foaf:focus wd:Q894914 . + +nwbib-spatial:Q1497161 + a skos:Concept ; + skos:broader nwbib-spatial:Q183449 ; + skos:inScheme ; + skos:prefLabel "Riege"@de ; + foaf:focus wd:Q1497161 . + +nwbib-spatial:Q453 a skos:Concept ; + skos:broader nwbib-spatial:Q6191 ; + skos:inScheme ; + skos:notation "05554012" ; + skos:prefLabel "Borken"@de ; + foaf:focus wd:Q453 . + +nwbib-spatial:Q2211344 + a skos:Concept ; + skos:broader nwbib-spatial:Q204743 ; + skos:inScheme ; + skos:prefLabel "Saeffelen"@de ; + foaf:focus wd:Q2211344 . + +nwbib-spatial:Q923782 + a skos:Concept ; + skos:broader nwbib-spatial:Q1104 ; + skos:inScheme ; + skos:prefLabel "Brockhausen"@de ; + foaf:focus wd:Q923782 . + +nwbib-spatial:Q850112 + a skos:Concept ; + skos:broader nwbib-spatial:Q11130 ; + skos:inScheme ; + skos:prefLabel "Bettinghausen"@de ; + foaf:focus wd:Q850112 . + +nwbib-spatial:Q45030662 + a skos:Concept ; + skos:broader nwbib-spatial:Q11064 ; + skos:inScheme ; + skos:prefLabel "Schmerlecke"@de ; + foaf:focus wd:Q45030662 . + +nwbib-spatial:Q27890119 + a skos:Concept ; + skos:broader nwbib-spatial:Q254458 ; + skos:inScheme ; + skos:prefLabel "Reinshagen"@de ; + foaf:focus wd:Q27890119 . + +nwbib-spatial:Q56374635 + a skos:Concept ; + skos:broader nwbib-spatial:Q769380 ; + skos:inScheme ; + skos:prefLabel "Dekanat Steinfurt"@de ; + foaf:focus wd:Q56374635 . + +nwbib-spatial:Q1803239 + a skos:Concept ; + skos:broader nwbib-spatial:Q7924 ; + skos:inScheme ; + skos:prefLabel "Landkreis Hörde (bis 1929)"@de ; + foaf:focus wd:Q1803239 . + +nwbib-spatial:Q804902 + a skos:Concept ; + skos:broader nwbib-spatial:Q254649 ; + skos:inScheme ; + skos:prefLabel "Baleroth"@de ; + foaf:focus wd:Q804902 . + +nwbib-spatial:Q1019959 + a skos:Concept ; + skos:broader nwbib-spatial:Q15114696 ; + skos:inScheme ; + skos:prefLabel "Börnig"@de ; + foaf:focus wd:Q1019959 . + +nwbib-spatial:Q56085395 + a skos:Concept ; + skos:broader nwbib-spatial:Q14833 ; + skos:inScheme ; + skos:prefLabel "Herb"@de ; + foaf:focus wd:Q56085395 . + +nwbib-spatial:Q28823621 + a skos:Concept ; + skos:broader nwbib-spatial:Q4011 ; + skos:inScheme ; + skos:prefLabel "Werrich/Perrich"@de ; + foaf:focus wd:Q28823621 . + +nwbib-spatial:Q182174 + a skos:Concept ; + skos:broader nwbib-spatial:Q6187 ; + skos:inScheme ; + skos:notation "05566056" ; + skos:prefLabel "Mettingen"@de ; + foaf:focus wd:Q182174 . + +nwbib-spatial:Q56042224 + a skos:Concept ; + skos:broader nwbib-spatial:N14 ; + skos:inScheme ; + skos:prefLabel "Südsauerland"@de ; + foaf:focus wd:Q56042224 . + +nwbib-spatial:Q1250616 + a skos:Concept ; + skos:broader nwbib-spatial:Q2326759 ; + skos:inScheme ; + skos:prefLabel "Fleier"@de ; + foaf:focus wd:Q1250616 . + +nwbib-spatial:Q19365476 + a skos:Concept ; + skos:broader nwbib-spatial:Q5542 ; + skos:inScheme ; + skos:prefLabel "Kückelheim"@de ; + foaf:focus wd:Q19365476 . + +nwbib-spatial:Q1424058 + a skos:Concept ; + skos:broader nwbib-spatial:N33 ; + skos:inScheme ; + skos:prefLabel "Kirchenkreis Vlotho"@de ; + foaf:focus wd:Q1424058 . + +nwbib-spatial:Q1445255 + a skos:Concept ; + skos:broader nwbib-spatial:Q518604 ; + skos:inScheme ; + skos:prefLabel "Longerich"@de ; + foaf:focus wd:Q1445255 . + +nwbib-spatial:Q3813 a skos:Concept ; + skos:broader nwbib-spatial:Q6214 ; + skos:inScheme ; + skos:notation "05562024" ; + skos:prefLabel "Marl"@de ; + foaf:focus wd:Q3813 . + +nwbib-spatial:Q1980043 + a skos:Concept ; + skos:broader nwbib-spatial:Q242195 ; + skos:inScheme ; + skos:prefLabel "Neuenheerse"@de ; + foaf:focus wd:Q1980043 . diff --git a/conf/hebisMarc2lobid-transformation/maps/nwbib.ttl b/conf/hebisMarc2lobid-transformation/maps/nwbib.ttl new file mode 100644 index 0000000..d2d826c --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/nwbib.ttl @@ -0,0 +1,7782 @@ +@prefix rdf: . +@prefix dct: . +@prefix skos: . +@prefix vann: . +@prefix : . +@prefix wd: . +@prefix gnd: . + + + a skos:ConceptScheme ; + vann:preferredNamespacePrefix "nwbib" ; + dct:title "Sachsystematik der Nordrhein-Westfälischen Bibliographie"@de , "Classification scheme of the North Rhine-Westphalian bibliography"@en ; + dct:license ; + dct:description "This classification was created for use in the North Rhine-Westphalian bibliography. The initial transformation to SKOS was carried out by Felix Ostrowski for the hbz." ; + dct:issued "2014-01-28" ; + dct:modified "2022-01-13" ; + dct:publisher ; + vann:preferredNamespaceUri "https://nwbib.de/subjects#" ; + skos:hasTopConcept :N1, :N2, :N4, :N5, :N6, :N7, :N8 . + +:N1 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N100000 ,:N120000, :N140000, :N160000; + skos:notation "1" ; + skos:prefLabel "Landeskunde (allgemein. Geo-u. Biowissenschaften)"@de . + +:N2 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N200000 ,:N210000, :N220000, :N240000, :N260000; + skos:notation "2" ; + skos:prefLabel "Landeskunde (historisch)"@de . + +:N4 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N400000 ,:N420000, :N440000 ; + skos:notation "4" ; + skos:prefLabel "Staat. Politik. Verwaltung. Recht"@de . + +:N5 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N500000 ,:N520000, :N530000, :N540000, :N550000, :N560000, :N570000, :N580000 ; + skos:notation "5" ; + skos:prefLabel "Bevölkerung. Soziales. Wirtschaft. Raumordnung. Umweltschutz"@de . + +:N6 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N610000 ,:N630000, :N650000 ; + skos:notation "6" ; + skos:prefLabel "Religion"@de . + +:N7 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N700000 ,:N720000, :N730000, :N740000, :N760000 ,:N780000, :N790000 ; + skos:notation "7" ; + skos:prefLabel "Volkskunde. Gesellschaft. Kultur. Bildung"@de . + +:N8 + a skos:Concept ; + skos:inScheme ; + skos:narrower :N800000 ,:N820000, :N840000, :N860000, :N880000 ; + skos:notation "8" ; + skos:prefLabel "Künste. Medien"@de . + +:N100000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N1 ; + skos:narrower :N100100, :N101000, :N102000, :N106000, :N109000 ; + skos:notation "100000" ; + skos:prefLabel "Allgemeine Landeskunde"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N100100 + a skos:Concept ; + skos:broader :N100000 ; + skos:inScheme ; + skos:notation "100100" ; + skos:prefLabel "Allgemeine Landeskunde - Allgemeines"@de . + +:N101000 + a skos:Concept ; + skos:broader :N100000 ; + skos:inScheme ; + skos:notation "101000" ; + skos:prefLabel "Bibliographien"@de . + +:N102000 + a skos:Concept ; + skos:broader :N100000 ; + skos:inScheme ; + skos:narrower :N102060, :N102070, :N105000 ; + skos:notation "102000" ; + skos:prefLabel "Landesbeschreibungen"@de ; + skos:definition "Als Landesbeschreibung wurden frühe Formen der geografischen Landesaufnahme bezeichnet. Ab dem 17. Jahrhundert verstand man darunter eine Sammlung topografischer Karten kombiniert mit textlicher Beschreibung von Landschaft und Städten (Wikipedia)"@de ; + skos:scopeNote "Auch Bilder/Bildbände; Freie SW: Landeskunde; bei Orten u. Kreisen: Heimatkunde"@de . + +:N102060 + a skos:Concept ; + skos:broader :N102000 ; + skos:inScheme ; + skos:notation "102060" ; + skos:prefLabel "Reiseberichte"@de ; + skos:scopeNote "Auch Kunstführer; Freie SW: Reiseführer; Wandern / Führer; i.d.R. nur: Führer"@de . + +:N102070 + a skos:Concept ; + skos:broader :N102000 ; + skos:inScheme ; + skos:notation "102070" ; + skos:prefLabel "Reise-, Stadt- und Wanderführer"@de . + +:N105000 + a skos:Concept ; + skos:broader :N102000 ; + skos:inScheme ; + skos:notation "105000" ; + skos:prefLabel "Heimatpflege"@de ; + skos:scopeNote "Ggf. s.a. [Heimatvereine](#N106000)"@de . + +:N106000 + a skos:Concept ; + skos:broader :N100000 ; + skos:inScheme ; + skos:notation "106000" ; + skos:prefLabel "Heimatvereine"@de ; + skos:scopeNote "Ggf. s.a. [Heimatpflege](#N105000)"@de . + +:N109000 + a skos:Concept ; + skos:broader :N100000 ; + skos:inScheme ; + skos:notation "109000" ; + skos:prefLabel "Biographien"@de ; + skos:definition "Lebensbeschreibung einer Person"@de ; + skos:example "Ehrenbürger"@de ; + skos:exactMatch wd:Q36279, gnd:4006804-3 . + +:N120000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N1 ; + skos:narrower :N120100, :N122000, :N124000, :N126000 ; + skos:notation "120000" ; + skos:prefLabel "Kartographie. Geodäsie"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N120100 + a skos:Concept ; + skos:broader :N120000 ; + skos:inScheme ; + skos:notation "120100" ; + skos:prefLabel "Kartographie. Geodäsie - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Kartographie](#N122000), [Geodäsie](#N124000)"@de . + +:N122000 + a skos:Concept ; + skos:broader :N120000 ; + skos:inScheme ; + skos:narrower :N122030, :N122050, :N122070 ; + skos:notation "122000" ; + skos:prefLabel "Kartographie"@de . + +:N122030 + a skos:Concept ; + skos:broader :N122000 ; + skos:inScheme ; + skos:notation "122030" ; + skos:prefLabel "Kartenauswertung"@de . + +:N122050 + a skos:Concept ; + skos:broader :N122000 ; + skos:inScheme ; + skos:notation "122050" ; + skos:prefLabel "Computerkartographie"@de . + +:N122070 + a skos:Concept ; + skos:broader :N122000 ; + skos:inScheme ; + skos:notation "122070" ; + skos:prefLabel "Luftbildauswertung"@de . + +:N124000 + a skos:Concept ; + skos:broader :N120000 ; + skos:inScheme ; + skos:notation "124000" ; + skos:prefLabel "Geodäsie"@de ; + skos:altLabel "Vermessungskunde, Feldmessung"@de ; + skos:definition "Wissenschaft von der Vermessung und Darstellung der Erde"@de ; + skos:exactMatch wd:Q131089, gnd:4020202-1 . + +:N126000 + a skos:Concept ; + skos:broader :N120000 ; + skos:inScheme ; + skos:notation "126000" ; + skos:prefLabel "Karten"@de . + +:N140000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N1 ; + skos:narrower :N140100, :N141000, :N141100, :N141200, :N141400, :N141600, :N142000, :N142100, :N142300, :N142500, :N146000 ; + skos:notation "140000" ; + skos:prefLabel "Geowissenschaften"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N140100 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:notation "140100" ; + skos:prefLabel "Geowissenschaften - Allgemeines"@de . + +:N141000 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N141020, :N141030, :N141040 ; + skos:notation "141000" ; + skos:prefLabel "Geophysik"@de ; + skos:altLabel "Physik der Erde"@de ; + skos:exactMatch wd:Q46255, gnd:4020252-5 . + +:N141020 + a skos:Concept ; + skos:broader :N141000 ; + skos:inScheme ; + skos:notation "141020" ; + skos:prefLabel "Erdmagnetismus"@de . + +:N141030 + a skos:Concept ; + skos:broader :N141000 ; + skos:inScheme ; + skos:notation "141030" ; + skos:prefLabel "Schwerkraft"@de . + +:N141040 + a skos:Concept ; + skos:broader :N141000 ; + skos:inScheme ; + skos:notation "141040" ; + skos:prefLabel "Erdbeben"@de . + +:N141100 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:notation "141100" ; + skos:prefLabel "Geochemie"@de ; + skos:altLabel "Gesteinschemie, Lithogeochemie"@de ; + skos:definition "Bez. für ein Teilgebiet der Geowissenschaften, das die chem. Zusammensetzung und die chem. Veränderungen der Erde untersucht"@de ; + skos:exactMatch wd:Q161764, gnd:4020198-3 . + +:N141200 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N141210, :N141220, :N141230, :N141240 ; + skos:notation "141200" ; + skos:prefLabel "Geologie"@de ; + skos:definition "Wissenschaft von der Entwicklung und vom Aufbau der Erde"@de ; + skos:exactMatch wd:Q1069, gnd:4020227-6 . + +:N141210 + a skos:Concept ; + skos:broader :N141200 ; + skos:inScheme ; + skos:notation "141210" ; + skos:prefLabel "Historische Geologie"@de ; + skos:definition "Teilgebiet der Geologie mit Forschungs- und Lehrgegenstand der Erdgeschichte"@de ; + skos:scopeNote "Nur im Sinne der historischen Forschung verwenden u. für historisch-geologische Entwicklungen; Auch für Gesamtdarstellungen (z.B. Lehrbücher)"@de ; + skos:exactMatch wd:Q754590, gnd:4025104-4 . + +:N141220 + a skos:Concept ; + skos:broader :N141200 ; + skos:inScheme ; + skos:narrower :N141225 ; + skos:notation "141220" ; + skos:prefLabel "Tektonik"@de ; + skos:definition "Lehre vom Aufbau der Erdkruste und von den in ihr stattfindenden großräumigen Bewegungen"@de ; + skos:exactMatch wd:Q78125729, gnd:4059351-4 . + +:N141225 + a skos:Concept ; + skos:broader :N141220 ; + skos:inScheme ; + skos:notation "141225" ; + skos:prefLabel "Vulkanismus"@de . + +:N141230 + a skos:Concept ; + skos:broader :N141200 ; + skos:inScheme ; + skos:notation "141230" ; + skos:prefLabel "Ingenieurgeologie"@de ; + skos:altLabel "Baugeologie"@de ; + skos:definition "Zweig der Angewandten Geologie und Geotechnik; Sie befasst sich mit dem Verhalten von Gesteinen und des Gebirges entsprechend den genetisch bedingten Materialeigenschaften und ihrer erdgeschichtlichen Entwicklung"@de ; + skos:exactMatch wd:Q586474, gnd:4125674-8 . + +:N141240 + a skos:Concept ; + skos:broader :N141200 ; + skos:inScheme ; + skos:notation "141240" ; + skos:prefLabel "Stratigraphie"@de ; + skos:altLabel "Schichtenkunde"@de ; + skos:definition "Teildisziplin der Geologie"@de ; + skos:exactMatch wd:Q134783, gnd:4057956-6 . + +:N141400 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N141420, :N141430, :N141450, :N141460 ; + skos:notation "141400" ; + skos:prefLabel "Mineralogie. Gesteinskunde"@de ; + skos:scopeNote "S.a. einzelne Notationen [Mineralogie](#N141420), [Gesteinskunde](#N141430)"@de . + +:N141420 + a skos:Concept ; + skos:broader :N141400 ; + skos:inScheme ; + skos:narrower :N141425 ; + skos:notation "141420" ; + skos:prefLabel "Mineralogie"@de . + +:N141425 + a skos:Concept ; + skos:broader :N141420 ; + skos:inScheme ; + skos:notation "141425" ; + skos:prefLabel "Einzelne Minerale"@de . + +:N141430 + a skos:Concept ; + skos:broader :N141400 ; + skos:inScheme ; + skos:narrower :N141435 ; + skos:notation "141430" ; + skos:prefLabel "Gesteinskunde"@de . + +:N141435 + a skos:Concept ; + skos:broader :N141430 ; + skos:inScheme ; + skos:notation "141435" ; + skos:prefLabel "Einzelne Gesteine"@de . + +:N141450 + a skos:Concept ; + skos:broader :N141400 ; + skos:inScheme ; + skos:notation "141450" ; + skos:prefLabel "Lagerstättenkunde"@de . + +:N141460 + a skos:Concept ; + skos:broader :N141400 ; + skos:inScheme ; + skos:notation "141460" ; + skos:prefLabel "Mineralquellen. Thermalquellen"@de ; + skos:scopeNote "Freie SW: Mineralquelle bzw. Thermalquelle"@de ; + skos:exactMatch wd:Q1365924, wd:Q177380, gnd:4170037-5, gnd:4191517-3 . + +:N141600 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N141620, :N141630, :N141640 ; + skos:notation "141600" ; + skos:prefLabel "Paläontologie"@de ; + skos:definition "Wissenschaft von den Lebewesen vergangener Erdzeitalter"@de ; + skos:exactMatch wd:Q7205, gnd:4044375-9 . + +:N141620 + a skos:Concept ; + skos:broader :N141600 ; + skos:inScheme ; + skos:narrower :N141622, :N141624 ; + skos:notation "141620" ; + skos:prefLabel "Paläobotanik"@de ; + skos:definition "Wissenschaft von den fossilen Pflanzen"@de ; + skos:exactMatch wd:Q192694, gnd:4044361-9 . + +:N141622 + a skos:Concept ; + skos:broader :N141620 ; + skos:inScheme ; + skos:notation "141622" ; + skos:prefLabel "Fossile Kryptogamen"@de ; + skos:scopeNote "S.a. [Kryptogamen](#N162030)"@de . + +:N141624 + a skos:Concept ; + skos:broader :N141620 ; + skos:inScheme ; + skos:notation "141624" ; + skos:prefLabel "Fossile Samenpflanzen"@de . + +:N141630 + a skos:Concept ; + skos:broader :N141600 ; + skos:inScheme ; + skos:narrower :N141632, :N141634 ; + skos:notation "141630" ; + skos:prefLabel "Paläozoologie"@de ; + skos:definition "Naturwissenschaft, die sich der Erforschung der fossilen Tiere widmet, und als solche eine Teildisziplin der Paläontologie darstellt"@de ; + skos:exactMatch wd:Q210369, gnd:4044380-2 . + +:N141632 + a skos:Concept ; + skos:broader :N141630 ; + skos:inScheme ; + skos:notation "141632" ; + skos:prefLabel "Fossile Wirbellose"@de . + +:N141634 + a skos:Concept ; + skos:broader :N141630 ; + skos:inScheme ; + skos:notation "141634" ; + skos:prefLabel "Fossile Wirbeltiere"@de . + +:N141640 + a skos:Concept ; + skos:broader :N141600 ; + skos:inScheme ; + skos:notation "141640" ; + skos:prefLabel "Mikropaläontologie"@de ; + skos:definition "Befasst sich mit dem Studium der Mikrofossilien. Als Mikrofossilien werden Fossilien von Mikroorganismen und mikroskopisch kleine fossile Reste größerer Lebewesen bezeichnet"@de ; + skos:exactMatch gnd:4125948-8 . + +:N142000 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N142020, :N142040, :N142050, :N142060, :N142070, :N142080 ; + skos:notation "142000" ; + skos:prefLabel "Bodenkunde"@de . + +:N142020 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:narrower :N142025 ; + skos:notation "142020" ; + skos:prefLabel "Bodenentwicklung"@de . + +:N142025 + a skos:Concept ; + skos:broader :N142020 ; + skos:inScheme ; + skos:notation "142025" ; + skos:prefLabel "Verwitterung"@de . + +:N142040 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:notation "142040" ; + skos:prefLabel "Bodenbiologie"@de . + +:N142050 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:notation "142050" ; + skos:prefLabel "Bodenmechanik"@de . + +:N142060 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:notation "142060" ; + skos:prefLabel "Bodenchemie"@de . + +:N142070 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:notation "142070" ; + skos:prefLabel "Tonminerale"@de . + +:N142080 + a skos:Concept ; + skos:broader :N142000 ; + skos:inScheme ; + skos:notation "142080" ; + skos:prefLabel "Angewandte Bodenkunde"@de . + +:N142100 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N142110, :N142120, :N142130, :N142140, :N142170, :N142180, :N142190 ; + skos:notation "142100" ; + skos:prefLabel "Geomorphologie"@de ; + skos:definition "Teilgebiet der Physischen Geographie; Untersucht die Formen und formbildenden Prozesse der Oberfläche, nicht nur der Erde, sondern auch jene des Mondes, des Mars und anderer Planeten"@de ; + skos:exactMatch wd:Q52109, gnd:4130684-3 . + +:N142110 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142110" ; + skos:prefLabel "Oberflächenformen"@de . + +:N142120 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:narrower :N142125 ; + skos:notation "142120" ; + skos:prefLabel "Abtragung"@de . + +:N142125 + a skos:Concept ; + skos:broader :N142120 ; + skos:inScheme ; + skos:notation "142125" ; + skos:prefLabel "Sedimentation"@de ; + skos:definition "Absetzen fester Teilchen aus Flüssigkeiten oder Gasen unter Schwerkraft oder Zentrifugalkraft"@de ; + skos:exactMatch wd:Q635485, gnd:4054080-7 . + +:N142130 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142130" ; + skos:prefLabel "Klimamorphologie"@de ; + skos:exactMatch gnd:4073512-6 . + +:N142140 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142140" ; + skos:prefLabel "Glazialmorphologie"@de ; + skos:definition "Aufbau und Entstehung der Oberflächen bei Gletschern, Lehre von den Eisformen"@de ; + skos:exactMatch wd:Q2116384, gnd:4021212-9 . + +:N142170 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142170" ; + skos:prefLabel "Karst"@de ; + skos:definition "Unterirdische Geländeformen (Karsthöhlen) und oberirdische Geländeformen (Oberflächenkarst) in Karbonatgesteinen (auch in Sulfat-, Salzgesteinen und Sandsteinen o. Quarziten)"@de ; + skos:exactMatch wd:Q16817, gnd:4129942-5 . + +:N142180 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142180" ; + skos:prefLabel "Höhlen"@de . + +:N142190 + a skos:Concept ; + skos:broader :N142100 ; + skos:inScheme ; + skos:notation "142190" ; + skos:prefLabel "Angewandte Geomorphologie"@de ; + skos:scopeNote "S.a. [Geomorphologie](#N142100)"@de ; + skos:exactMatch gnd:4142437-2 . + +:N142300 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N142310, :N142320, :N142330, :N142340, :N142350, :N142360, :N142370, :N142380, :N142390 ; + skos:notation "142300" ; + skos:prefLabel "Wasser"@de ; + skos:scopeNote "Mineralbrunnen u. Thermalquellen, s. [Mineralquellen. Thermalquellen](#N141460)"@de ; + skos:exactMatch wd:Q283, gnd:4064689-0 . + +:N142310 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:notation "142310" ; + skos:prefLabel "Wasserrecht"@de . + +:N142320 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:notation "142320" ; + skos:prefLabel "Fließgewässer"@de . + +:N142330 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:narrower :N142335 ; + skos:notation "142330" ; + skos:prefLabel "Seen"@de . + +:N142335 + a skos:Concept ; + skos:broader :N142330 ; + skos:inScheme ; + skos:notation "142335" ; + skos:prefLabel "Kleingewässer"@de . + +:N142340 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:notation "142340" ; + skos:prefLabel "Moore"@de . + +:N142350 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:narrower :N142352 ; + skos:notation "142350" ; + skos:prefLabel "Hydrogeologie"@de ; + skos:definition "Wissenschaft vom Wasser in der Erdkruste"@de ; + skos:exactMatch wd:Q179509, gnd:4026307-1 . + +:N142352 + a skos:Concept ; + skos:broader :N142350 ; + skos:inScheme ; + skos:notation "142352" ; + skos:prefLabel "Bodenwasser. Grundwasser"@de ; + skos:scopeNote "Freie SW: Bodenwasser; Grundwasser"@de ; + skos:exactMatch wd:Q1316304, wd:Q161598 , gnd:4007420-1 , gnd:4022369-3 . + +:N142360 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:notation "142360" ; + skos:prefLabel "Wasserhaushalt"@de . + +:N142370 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:narrower :N142372, :N142373, :N142375 ; + skos:notation "142370" ; + skos:prefLabel "Wasserwirtschaft"@de ; + skos:altLabel "Wasserversorgung, Wasserversorgungswirtschaft, Wassermanagement"@de ; + skos:definition "Bewirtschaftung des Wassers durch den Menschen"@de ; + skos:scopeNote "S.a. [Brauchwasser](#N142375)"@de ; + skos:exactMatch wd:Q1501619, gnd:4064821-7 . + +:N142372 + a skos:Concept ; + skos:broader :N142370 ; + skos:inScheme ; + skos:notation "142372" ; + skos:prefLabel "Trinkwasserversorgung"@de . + +:N142373 + a skos:Concept ; + skos:broader :N142370 ; + skos:inScheme ; + skos:notation "142373" ; + skos:prefLabel "Trinkwasseraufbereitung"@de . + +:N142375 + a skos:Concept ; + skos:broader :N142370 ; + skos:inScheme ; + skos:notation "142375" ; + skos:prefLabel "Brauchwasser"@de . + +:N142380 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:narrower :N142382 ; + skos:notation "142380" ; + skos:prefLabel "Hydrobiologie"@de ; + skos:altLabel "Gewässerbiologie"@de ; + skos:exactMatch wd:Q5728861, gnd:4026300-9 . + +:N142382 + a skos:Concept ; + skos:broader :N142380 ; + skos:inScheme ; + skos:notation "142382" ; + skos:prefLabel "Wasseranalysen"@de . + +:N142390 + a skos:Concept ; + skos:broader :N142300 ; + skos:inScheme ; + skos:notation "142390" ; + skos:prefLabel "Wasserstatistik"@de . + +:N142500 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:narrower :N142520, :N142530, :N142540, :N142560, :N142570 ; + skos:notation "142500" ; + skos:prefLabel "Klima"@de . + +:N142520 + a skos:Concept ; + skos:broader :N142500 ; + skos:inScheme ; + skos:narrower :N142522, :N142523, :N142524, :N142526 ; + skos:notation "142520" ; + skos:prefLabel "Klimaelemente"@de . + +:N142522 + a skos:Concept ; + skos:broader :N142520 ; + skos:inScheme ; + skos:notation "142522" ; + skos:prefLabel "Strahlung"@de . + +:N142523 + a skos:Concept ; + skos:broader :N142520 ; + skos:inScheme ; + skos:notation "142523" ; + skos:prefLabel "Temperatur"@de . + +:N142524 + a skos:Concept ; + skos:broader :N142520 ; + skos:inScheme ; + skos:notation "142524" ; + skos:prefLabel "Niederschlag"@de ; + skos:scopeNote "Freie SW: Luftfeuchtigkeit; Niederschlag"@de . + +:N142526 + a skos:Concept ; + skos:broader :N142520 ; + skos:inScheme ; + skos:notation "142526" ; + skos:prefLabel "Luft"@de ; + skos:scopeNote "Freie SW: z.B. Wind"@de . + +:N142530 + a skos:Concept ; + skos:broader :N142500 ; + skos:inScheme ; + skos:notation "142530" ; + skos:prefLabel "Klimatologie"@de ; + skos:altLabel "Klimakunde, Klimaforschung"@de ; + skos:definition "Interdisziplinäre Wissenschaft der Fachgebiete Meteorologie, Geographie, Geologie, Ozeanographie und Physik"@de ; + skos:exactMatch wd:Q52139, gnd:4031178-8 . + +:N142540 + a skos:Concept ; + skos:broader :N142500 ; + skos:inScheme ; + skos:narrower :N142541 ; + skos:notation "142540" ; + skos:prefLabel "Wetterdienst"@de . + +:N142541 + a skos:Concept ; + skos:broader :N142540 ; + skos:inScheme ; + skos:notation "142541" ; + skos:prefLabel "Wetterlagen"@de . + +:N142560 + a skos:Concept ; + skos:broader :N142500 ; + skos:inScheme ; + skos:notation "142560" ; + skos:prefLabel "Klimaänderungen"@de . + +:N142570 + a skos:Concept ; + skos:broader :N142500 ; + skos:inScheme ; + skos:notation "142570" ; + skos:prefLabel "Paläoklimatologie"@de ; + skos:definition "Wissenschaft, die die Geschichte des Klimas zum Gegenstand hat"@de ; + skos:exactMatch wd:Q191069, gnd:4173112-8 . + +:N146000 + a skos:Concept ; + skos:broader :N140000 ; + skos:inScheme ; + skos:notation "146000" ; + skos:prefLabel "Geoökologie"@de ; + skos:definition "Wiss., die sich aus geograph.-geowiss. Sicht mit dem Landschaftshaushalt in räuml. Ausprägung beschäftigt"@de ; + skos:exactMatch wd:Q1265151, gnd:4137703-5 . + +:N160000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N1 ; + skos:narrower :N160100, :N161000, :N162000, :N163000, :N164000 ; + skos:notation "160000" ; + skos:prefLabel "Biowissenschaften"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N160100 + a skos:Concept ; + skos:broader :N160000 ; + skos:inScheme ; + skos:notation "160100" ; + skos:prefLabel "Biowissenschaften - Allgemeines"@de . + +:N161000 + a skos:Concept ; + skos:broader :N160000 ; + skos:inScheme ; + skos:narrower :N161020, :N161030, :N161040, :N161050 ; + skos:notation "161000" ; + skos:prefLabel "Biologie"@de . + +:N161020 + a skos:Concept ; + skos:broader :N161000 ; + skos:inScheme ; + skos:notation "161020" ; + skos:prefLabel "Biogeographie"@de ; + skos:definition "Lehre von der Verbreitung der Pflanzen und Tiere auf der Erde"@de ; + skos:scopeNote "Verortung von Tieren und Pflanzen; Für Verortung von Tieren s. [Tiergeographie](#N163010), für Verortung von Pflanzen s. [Pflanzengeographie](#N162020)"@de ; + skos:exactMatch wd:Q52106, gnd:4006801-8 . + +:N161030 + a skos:Concept ; + skos:broader :N161000 ; + skos:inScheme ; + skos:notation "161030" ; + skos:prefLabel "Ökologie"@de . + +:N161040 + a skos:Concept ; + skos:broader :N161000 ; + skos:inScheme ; + skos:notation "161040" ; + skos:prefLabel "Lebensgemeinschaften von Tieren und Pflanzen"@de ; + skos:altLabel "Biozönose"@de ; + skos:exactMatch wd:Q184806, gnd:4167021-8 . + +:N161050 + a skos:Concept ; + skos:broader :N161000 ; + skos:inScheme ; + skos:notation "161050" ; + skos:prefLabel "Mikrobiologie"@de . + +:N162000 + a skos:Concept ; + skos:broader :N160000 ; + skos:inScheme ; + skos:narrower :N162020, :N162030, :N162040 ; + skos:notation "162000" ; + skos:prefLabel "Pflanzen"@de . + +:N162020 + a skos:Concept ; + skos:broader :N162000 ; + skos:inScheme ; + skos:notation "162020" ; + skos:prefLabel "Pflanzengeographie"@de ; + skos:altLabel "Phytogeographie, Vegetationsgeographie"@de ; + skos:definition "Verortung von Pflanzen"@de ; + skos:exactMatch wd:Q771220, gnd:4045561-0 . + +:N162030 + a skos:Concept ; + skos:broader :N162000 ; + skos:inScheme ; + skos:notation "162030" ; + skos:prefLabel "Kryptogamen"@de ; + skos:definition "Blütenlose Pflanzen, Sporenpflanzen"@de ; + skos:scopeNote "Flechten, Sporenpflanzen, auch Pilze"@de ; + skos:exactMatch gnd:4073845-0 . + +:N162040 + a skos:Concept ; + skos:broader :N162000 ; + skos:inScheme ; + skos:notation "162040" ; + skos:prefLabel "Samenpflanzen"@de . + +:N163000 + a skos:Concept ; + skos:broader :N160000 ; + skos:inScheme ; + skos:narrower :N163010, :N163020, :N163030, :N163040, :N163050, :N163060, :N163070, :N163080, :N163090 ; + skos:notation "163000" ; + skos:prefLabel "Tiere"@de . + +:N163010 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163010" ; + skos:prefLabel "Tiergeographie"@de ; + skos:altLabel "Geozoologie, Zoogeographie"@de ; + skos:definition "Wissenschaft von der geografischen Verbreitung und Ausbreitung der Tiere auf der Erde"@de ; + skos:exactMatch wd:Q599991, gnd:4133437-1 . + +:N163020 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163020" ; + skos:prefLabel "Wirbellose"@de . + +:N163030 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163030" ; + skos:prefLabel "Insekten. Spinnen"@de ; + skos:scopeNote "Schmetterlinge, Libellen; Freie SW: Insekten; Spinnen; Spinnentiere"@de . + +:N163040 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163040" ; + skos:prefLabel "Wirbeltiere"@de . + +:N163050 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163050" ; + skos:prefLabel "Fische"@de . + +:N163060 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163060" ; + skos:prefLabel "Lurche"@de ; + skos:altLabel "Amphibien"@de ; + skos:exactMatch gnd:4036689-3 . + +:N163070 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163070" ; + skos:prefLabel "Reptilien"@de . + +:N163080 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163080" ; + skos:prefLabel "Vögel"@de . + +:N163090 + a skos:Concept ; + skos:broader :N163000 ; + skos:inScheme ; + skos:notation "163090" ; + skos:prefLabel "Säugetiere"@de . + +:N164000 + a skos:Concept ; + skos:broader :N160000 ; + skos:inScheme ; + skos:narrower :N164030, :N164040 ; + skos:notation "164000" ; + skos:prefLabel "Biologische Anthropologie"@de . + +:N164030 + a skos:Concept ; + skos:broader :N164000 ; + skos:inScheme ; + skos:notation "164030" ; + skos:prefLabel "Skelettfunde"@de . + +:N164040 + a skos:Concept ; + skos:broader :N164000 ; + skos:inScheme ; + skos:notation "164040" ; + skos:prefLabel "Paläanthropologie"@de ; + skos:definition "Wissenschaft der Entstehung der spezifischen Merkmale des Menschen"@de ; + skos:exactMatch wd:Q7206, gnd:4173104-9 . + +:N200000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N2 ; + skos:narrower :N200100, :N202000, :N202500, :N203000, :N203500, :N204000, :N205000, :N206000, :N207000, :N208000, :N208500, :N209000 ; + skos:notation "200000" ; + skos:prefLabel "Historische Hilfswissenschaften"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N200100 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "200100" ; + skos:prefLabel "Historische Hilfswissenschaften - Allgemeines"@de . + +:N202000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "202000" ; + skos:prefLabel "Chronologie"@de . + +:N202500 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "202500" ; + skos:prefLabel "Metrologie"@de ; + skos:definition "Lehre von den Maßen und den Maßsystemen"@de ; + skos:exactMatch wd:Q394, gnd:4169749-2 . + +:N203000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "203000" ; + skos:prefLabel "Urkundenlehre"@de . + +:N203500 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "203500" ; + skos:prefLabel "Paläographie"@de ; + skos:definition "Lehre von alten Schriften"@de ; + skos:exactMatch wd:Q179957, gnd:4173110-4 . + +:N204000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "204000" ; + skos:prefLabel "Siegelkunde"@de . + +:N205000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:narrower :N205020, :N205040 ; + skos:notation "205000" ; + skos:prefLabel "Numismatik"@de ; + skos:definition "Wissenschaft von Münzen, Medaillen sowie weiteren Zahlungsmitteln und Geldgeschichte"@de ; + skos:exactMatch wd:Q631286, gnd:4172175-5 . + +:N205020 + a skos:Concept ; + skos:broader :N205000 ; + skos:inScheme ; + skos:notation "205020" ; + skos:prefLabel "Geld. Münzen"@de ; + skos:scopeNote "Freie SW: Geld; Münze"@de . + +:N205040 + a skos:Concept ; + skos:broader :N205000 ; + skos:inScheme ; + skos:notation "205040" ; + skos:prefLabel "Münzfunde"@de . + +:N206000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "206000" ; + skos:prefLabel "Epigraphik"@de ; + skos:altLabel "Inschriftenkunde"@de ; + skos:definition "Historische Hilfswissenschaft der Erkundung von Inschriften auf unterschiedlichen Materialien"@de ; + skos:exactMatch wd:Q181260, gnd:4152508-5 . + +:N207000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:narrower :N207020 ; + skos:notation "207000" ; + skos:prefLabel "Genealogie"@de ; + skos:definition "Historische Hilfswissenschaft der Familiengeschichtsforschung"@de ; + skos:scopeNote "S.a. [Einzelne Familien](#N207020)"@de ; + skos:exactMatch wd:Q47307, gnd:4020097-8 . + +:N207020 + a skos:Concept ; + skos:broader :N207000 ; + skos:inScheme ; + skos:notation "207020" ; + skos:prefLabel "Einzelne Familien"@de ; + skos:scopeNote "Verwendet bei biographischen Angaben zu Familien, die in Feld 689 namentlich verknüpft werden, s.a. [Genealogie](#N207000)"@de . + +:N208000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "208000" ; + skos:prefLabel "Heraldik"@de ; + skos:definition "Lehre von Wappen und deren richtigem Gebrauch"@de ; + skos:exactMatch wd:Q18336, gnd:4072428-1 . + +:N208500 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "208500" ; + skos:prefLabel "Flaggen"@de . + +:N209000 + a skos:Concept ; + skos:broader :N200000 ; + skos:inScheme ; + skos:notation "209000" ; + skos:prefLabel "Orden. Ehrenzeichen"@de ; + skos:scopeNote "S.a. [Sachgebiet Militärische Auszeichnungen](#N262026), freie SW: Orden ; Ehrenzeichen"@de ; + skos:exactMatch gnd:4121162-5 . + +:N210000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N2 ; + skos:narrower :N210100, :N213000, :N217000 ; + skos:notation "210000" ; + skos:prefLabel "Archive. Museen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N210100 + a skos:Concept ; + skos:broader :N210000 ; + skos:inScheme ; + skos:notation "210100" ; + skos:prefLabel "Archive. Museen - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Archive](#N213000), [Museen und Sammlungen](#N217000)"@de . + +:N213000 + a skos:Concept ; + skos:broader :N210000 ; + skos:inScheme ; + skos:narrower :N213010, :N213020, :N213030, :N213040, :N213050, :N213060, :N213070, :N213080, :N213090 ; + skos:notation "213000" ; + skos:prefLabel "Archive"@de . + +:N213010 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213010" ; + skos:prefLabel "Staatsarchive"@de . + +:N213020 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213020" ; + skos:prefLabel "Kreisarchive. Stadtarchive"@de ; + skos:scopeNote "Freie SW: Kreisarchiv; Stadtarchiv"@de . + +:N213030 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213030" ; + skos:prefLabel "Kirchenarchive"@de . + +:N213040 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213040" ; + skos:prefLabel "Archive wissenschaftlicher und kultureller Einrichtungen"@de . + +:N213050 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213050" ; + skos:prefLabel "Parteiarchive"@de . + +:N213060 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213060" ; + skos:prefLabel "Vereinsarchive"@de . + +:N213070 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213070" ; + skos:prefLabel "Pressearchive. Rundfunkarchive"@de ; + skos:scopeNote "Freie SW: Pressearchiv; Rundfunkarchiv"@de . + +:N213080 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:narrower :N213084 ; + skos:notation "213080" ; + skos:prefLabel "Wirtschaftsarchive"@de . + +:N213084 + a skos:Concept ; + skos:broader :N213080 ; + skos:inScheme ; + skos:notation "213084" ; + skos:prefLabel "Firmenarchive"@de . + +:N213090 + a skos:Concept ; + skos:broader :N213000 ; + skos:inScheme ; + skos:notation "213090" ; + skos:prefLabel "Familienarchive"@de . + +:N217000 + a skos:Concept ; + skos:broader :N210000 ; + skos:inScheme ; + skos:narrower :N217010, :N217020, :N217030, :N217040, :N217050, :N217090 ; + skos:notation "217000" ; + skos:prefLabel "Museen und Sammlungen"@de ; + skos:scopeNote "Kunstmuseen s. [Sachgebiet Kunstmuseen und Kunstsammlungen](#N841040)"@de . + +:N217010 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:notation "217010" ; + skos:prefLabel "Museumspädagogik"@de . + +:N217020 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:notation "217020" ; + skos:prefLabel "Naturkundemuseen"@de . + +:N217030 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:notation "217030" ; + skos:prefLabel "Museen für Handwerk und Technik"@de . + +:N217040 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:narrower :N217042 ; + skos:notation "217040" ; + skos:prefLabel "Historische Museen"@de ; + skos:example "LVR-LandesMuseum Bonn"@de ; + skos:scopeNote "Benutzt für Museen mit Ausstellungen zu historischen Themen"@de . + +:N217042 + a skos:Concept ; + skos:broader :N217040 ; + skos:inScheme ; + skos:notation "217042" ; + skos:prefLabel "Heimatmuseen"@de . + +:N217050 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:notation "217050" ; + skos:prefLabel "Volkskundemuseen"@de . + +:N217090 + a skos:Concept ; + skos:broader :N217000 ; + skos:inScheme ; + skos:notation "217090" ; + skos:prefLabel "Sonstige Museen und Sammlungen"@de . + +:N220000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N2 ; + skos:narrower :N220100, :N220500, :N221000, :N222000, :N223000, :N224000, :N225000, :N226000, :N227000, :N228000 ; + skos:notation "220000" ; + skos:prefLabel "Vor- und Frühgeschichte. Archäologie"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N220100 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:notation "220100" ; + skos:prefLabel "Vor- und Frühgeschichte. Archäologie - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Vor- und Frühgeschichte](#N221000), [Archäologie](#N220500)"@de . + +:N220500 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:notation "220500" ; + skos:prefLabel "Archäologie"@de ; + skos:scopeNote "z.B. Archäologie mit Geschichte; Hier nur Archäologie bis zum Mittelalter; \"methodische\" Stelle"@de . + +:N221000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:notation "221000" ; + skos:prefLabel "Vor- und Frühgeschichte"@de . + +:N222000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:notation "222000" ; + skos:prefLabel "Paläolithikum. Mesolithikum"@de ; + skos:altLabel "Paläolithikum: Altsteinzeit; Mesolithikum: Mittelsteinzeit"@de ; + skos:definition "Archäologische Funde frühester Epoche, Paläolithikum:ca. 3000000 v. Chr.-10000 v. Chr., Mesolithikum: ca. 8500-5500 v. Chr."@de ; + skos:scopeNote "Freie SW: Paläolithikum; Mesolithikum"@de ; + skos:exactMatch wd:Q40203, wd:Q44155, gnd:4140148-7, gnd:4169472-7 . + +:N223000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:narrower :N223020, :N223030, :N223040, :N223050, :N223060, :N223070 ; + skos:notation "223000" ; + skos:prefLabel "Neolithikum"@de ; + skos:altLabel "Jungsteinzeit, Jüngere Steinzeit"@de ; + skos:definition "Archäologischer Zeitraum, letzter Teil der Steinzeit"@de ; + skos:scopeNote "5300-2150 v.Chr."@de ; + skos:exactMatch wd:Q36422, gnd:4075272-0 . + +:N223020 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223020" ; + skos:prefLabel "Bandkeramische Kultur"@de ; + skos:definition "5700-4800 v.Chr."@de ; + skos:exactMatch gnd:4143987-9 . + +:N223030 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223030" ; + skos:prefLabel "Rössener Kultur"@de ; + skos:definition "Jungsteinzeitl. Kulturgruppe in West- u. Mitteldeutschland, 4800-4000 v.Chr."@de ; + skos:exactMatch wd:Q1886212, gnd:4196969-8 . + +:N223040 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223040" ; + skos:prefLabel "Michelsberger Kultur"@de ; + skos:definition "Jungsteinzeitliche Kultur in Mitteleuropa, 4100-3400 v.Chr."@de ; + skos:exactMatch wd:Q570798, gnd:4169764-9 . + +:N223050 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223050" ; + skos:prefLabel "Megalithkultur"@de ; + skos:definition "3000-2000 v. Chr., Sammelbez. f. west- u. nordeurop. Kulturgruppen, i.w.S. auch archäol. u. ethnolog. Kulturen außerhalb Europas"@de ; + skos:exactMatch wd:Q337451, gnd:4038344-1 . + +:N223060 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223060" ; + skos:prefLabel "Schnurkeramische Kultur"@de ; + skos:altLabel "Streitaxtkultur"@de ; + skos:definition "3000-2000 v. Chr., archäologische Epoche der Funde aus der Kupferzeit"@de ; + skos:exactMatch wd:Q933996, gnd:4179902-1 . + +:N223070 + a skos:Concept ; + skos:broader :N223000 ; + skos:inScheme ; + skos:notation "223070" ; + skos:prefLabel "Glockenbecherkultur"@de ; + skos:definition "2800-2150 v.Chr."@de ; + skos:exactMatch gnd:4157634-2 . + +:N224000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:narrower :N224050, :N224060 ; + skos:notation "224000" ; + skos:prefLabel "Bronzezeit"@de ; + skos:definition "2150-800 v.Chr."@de ; + skos:exactMatch wd:Q11761, gnd:4008357-3 . + +:N224050 + a skos:Concept ; + skos:broader :N224000 ; + skos:inScheme ; + skos:notation "224050" ; + skos:prefLabel "Hügelgräberkultur"@de ; + skos:definition "1500-1300 v.Chr."@de ; + skos:exactMatch gnd:4160741-7 . + +:N224060 + a skos:Concept ; + skos:broader :N224000 ; + skos:inScheme ; + skos:notation "224060" ; + skos:prefLabel "Urnenfelderkultur"@de ; + skos:definition "1300-800 v.Chr."@de ; + skos:exactMatch wd:Q223998, gnd:4062146-7 . + +:N225000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:narrower :N225020, :N225030, :N225040, :N225050 ; + skos:notation "225000" ; + skos:prefLabel "Vorrömische Eisenzeit"@de ; + skos:definition "800 v.Chr.-um Chr. Geburt"@de ; + skos:exactMatch gnd:4133554-5 . + +:N225020 + a skos:Concept ; + skos:broader :N225000 ; + skos:inScheme ; + skos:notation "225020" ; + skos:prefLabel "Hallstattkultur"@de ; + skos:definition "800-475 v.Chr., Zeitabschnitt der älteren Eisenzeit"@de ; + skos:exactMatch wd:Q202165, gnd:4072254-5 . + +:N225030 + a skos:Concept ; + skos:broader :N225000 ; + skos:inScheme ; + skos:notation "225030" ; + skos:prefLabel "Latène-Zeit"@de ; + skos:definition "475 v.Chr.-um Chr. Geburt, kelt. Kultur der jüngeren vorröm. Eisenzeit "@de ; + skos:exactMatch wd:Q208247, gnd:4034668-7 . + +:N225040 + a skos:Concept ; + skos:broader :N225000 ; + skos:inScheme ; + skos:notation "225040" ; + skos:prefLabel "Kelten"@de ; + skos:definition "Volksgruppen der Eisenzeit in Europa"@de ; + skos:scopeNote "S.a. [Kelten (Römerzeit)](#N226020)"@de ; + skos:exactMatch wd:Q35966, gnd:4030206-4 . + +:N225050 + a skos:Concept ; + skos:broader :N225000 ; + skos:inScheme ; + skos:notation "225050" ; + skos:prefLabel "Germanen"@de ; + skos:definition "Ehemalige Stämme in Mitteleuropa"@de ; + skos:scopeNote "S.a. [Germanen (Römerzeit)](#N226040), s.a. [Germanen (Völkerwanderungszeit)](#N227030)"@de ; + skos:exactMatch wd:Q22633, gnd:4020378-5 . + +:N226000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:narrower :N226010, :N226020, :N226030, :N226040, :N226050 ; + skos:notation "226000" ; + skos:prefLabel "Römerzeit"@de ; + skos:scopeNote "Epochenbezeichnung, benutzt in Verbindung mit einzelnen Orten und Regionen des Römischen Reichs"@de ; + skos:exactMatch gnd:4076769-3 . + +:N226010 + a skos:Concept ; + skos:broader :N226000 ; + skos:inScheme ; + skos:notation "226010" ; + skos:prefLabel "Varusschlacht"@de . + +:N226020 + a skos:Concept ; + skos:broader :N226000 ; + skos:inScheme ; + skos:notation "226020" ; + skos:prefLabel "Kelten"@de ; + skos:scopeNote "S.a. [Kelten (Vorrömische Eisenzeit)](#N225040)"@de . + +:N226030 + a skos:Concept ; + skos:broader :N226000 ; + skos:inScheme ; + skos:notation "226030" ; + skos:prefLabel "Römer"@de ; + skos:scopeNote "S.a. [Römer (Völkerwanderungszeit)](#N227020)"@de ; + skos:exactMatch gnd:4122633-1 . + +:N226040 + a skos:Concept ; + skos:broader :N226000 ; + skos:inScheme ; + skos:notation "226040" ; + skos:prefLabel "Germanen"@de ; + skos:definition "Ehemalige Stämme in Mitteleuropa"@de ; + skos:scopeNote "S.a. [Germanen (Vorrömische Eisenzeit)](#N225050), s.a. [Germanen (Völkerwanderungszeit)](#N227030)"@de ; + skos:exactMatch wd:Q22633, gnd:4020378-5 . + +:N226050 + a skos:Concept ; + skos:broader :N226000 ; + skos:inScheme ; + skos:notation "226050" ; + skos:prefLabel "Franken"@de ; + skos:definition "Germanischer Großstamm"@de ; + skos:scopeNote "S.a. [Franken (Völkerwanderungszeit)](#N227040)"@de ; + skos:exactMatch wd:Q43482, gnd:4071340-4 . + +:N227000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:narrower :N227020, :N227030, :N227040 ; + skos:notation "227000" ; + skos:prefLabel "Völkerwanderungszeit"@de ; + skos:scopeNote "4.-6. Jh."@de . + +:N227020 + a skos:Concept ; + skos:broader :N227000 ; + skos:inScheme ; + skos:notation "227020" ; + skos:prefLabel "Römer"@de ; + skos:scopeNote "S.a. [Römer (Römerzeit)](#N226030)"@de ; + skos:exactMatch gnd:4122633-1 . + +:N227030 + a skos:Concept ; + skos:broader :N227000 ; + skos:inScheme ; + skos:notation "227030" ; + skos:prefLabel "Germanen"@de ; + skos:definition "Ehemalige Stämme in Mitteleuropa"@de ; + skos:scopeNote "S.a. [Germanen (Vorrömische Eisenzeit)](#N225050), s.a. [Germanen (Römerzeit)](#N226040)"@de ; + skos:exactMatch wd:Q22633, gnd:4020378-5 . + +:N227040 + a skos:Concept ; + skos:broader :N227000 ; + skos:inScheme ; + skos:notation "227040" ; + skos:prefLabel "Franken"@de . + +:N228000 + a skos:Concept ; + skos:broader :N220000 ; + skos:inScheme ; + skos:notation "228000" ; + skos:prefLabel "Mittelalter und Neuzeit"@de ; + skos:scopeNote "500-1500"@de . + +:N240000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N2 ; + skos:narrower :N240100, :N240200, :N240500, :N240600, :N249800 ; + skos:notation "240000" ; + skos:prefLabel "Geschichte"@de ; + skos:example "Auch verwenden bei \"Kriegsende in Neuss 1945-1948\""@de ; + skos:scopeNote "Verwenden, wenn allg. umfassende Geschichte oder mehrere Aspekte von Geschichte, insb. politische (Ereignis-)Geschichte, angesprochen werden; Für NRW s. [Nordrhein-Westfalen, insgesamt](#N249800); Wenn der Text nur einen einzelnen Aspekt (z.B. Wirtschaft, Militär, Recht, Agrar etc) betrifft, werden die entspr. Notationen verwendet"@de . + +:N240100 + a skos:Concept ; + skos:broader :N240000 ; + skos:inScheme ; + skos:notation "240100" ; + skos:prefLabel "Quellen"@de ; + skos:scopeNote "Verwenden, wenn Quelle abgebildet ist oder im Text Bezug auf eine Quelle genommen wird"@de . + +:N240200 + a skos:Concept ; + skos:broader :N240000 ; + skos:inScheme ; + skos:notation "240200" ; + skos:prefLabel "Geschichtsschreibung"@de . + +:N240500 + a skos:Concept ; + skos:broader :N240000 ; + skos:inScheme ; + skos:notation "240500" ; + skos:prefLabel "Historische Ausstellungen"@de ; + skos:altLabel "Geschichtsausstellung, Geschichtliche Ausstellung"@de ; + skos:scopeNote "Benutzt für Ausstellungen mit historischen Themen"@de ; + skos:exactMatch gnd:4300849-5 . + +:N240600 + a skos:Concept ; + skos:broader :N240000 ; + skos:inScheme ; + skos:notation "240600" ; + skos:prefLabel "Gedenkstätten"@de . + +:N249800 + a skos:Concept ; + skos:broader :N240000 ; + skos:inScheme ; + skos:notation "249800" ; + skos:prefLabel "Nordrhein-Westfalen, insgesamt"@de . + +:N260000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N2 ; + skos:narrower :N260100, :N262000, :N263000 ; + skos:notation "260000" ; + skos:prefLabel "Militär. Wehrwesen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N260100 + a skos:Concept ; + skos:broader :N260000 ; + skos:inScheme ; + skos:notation "260100" ; + skos:prefLabel "Militär. Wehrwesen - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Militär](#N262000), [Wehrwesen](#N263000)"@de . + +:N262000 + a skos:Concept ; + skos:broader :N260000 ; + skos:inScheme ; + skos:narrower :N262010, :N262020 ; + skos:notation "262000" ; + skos:prefLabel "Militär"@de . + +:N262010 + a skos:Concept ; + skos:broader :N262000 ; + skos:inScheme ; + skos:narrower :N262011, :N262012, :N262014, :N262016 ; + skos:notation "262010" ; + skos:prefLabel "Militärische Anlagen"@de . + +:N262011 + a skos:Concept ; + skos:broader :N262010 ; + skos:inScheme ; + skos:notation "262011" ; + skos:prefLabel "Burgen"@de ; + skos:definition "Geschlossener, bewohnbarer Wehrbau"@de ; + skos:scopeNote "Wenn militärisch behandelt wird; S.a. [Burgen. Schlösser](#N844040)"@de ; + skos:exactMatch wd:Q23413, gnd:4009104-1 . + +:N262012 + a skos:Concept ; + skos:broader :N262010 ; + skos:inScheme ; + skos:notation "262012" ; + skos:prefLabel "Festungen"@de . + +:N262014 + a skos:Concept ; + skos:broader :N262010 ; + skos:inScheme ; + skos:notation "262014" ; + skos:prefLabel "Schanzen"@de . + +:N262016 + a skos:Concept ; + skos:broader :N262010 ; + skos:inScheme ; + skos:notation "262016" ; + skos:prefLabel "Garnisonen"@de . + +:N262020 + a skos:Concept ; + skos:broader :N262000 ; + skos:inScheme ; + skos:narrower :N262022, :N262023, :N262024, :N262026 ; + skos:notation "262020" ; + skos:prefLabel "Militärische Ausrüstung"@de . + +:N262022 + a skos:Concept ; + skos:broader :N262020 ; + skos:inScheme ; + skos:notation "262022" ; + skos:prefLabel "Waffen"@de . + +:N262023 + a skos:Concept ; + skos:broader :N262020 ; + skos:inScheme ; + skos:notation "262023" ; + skos:prefLabel "Rüstungen"@de . + +:N262024 + a skos:Concept ; + skos:broader :N262020 ; + skos:inScheme ; + skos:notation "262024" ; + skos:prefLabel "Uniformen"@de . + +:N262026 + a skos:Concept ; + skos:broader :N262020 ; + skos:inScheme ; + skos:notation "262026" ; + skos:prefLabel "Militärische Auszeichnungen"@de ; + skos:scopeNote "Freie SW: Orden ; Ehrenzeichen (wie bei [Orden. Ehrenzeichen](#N209000))"@de . + +:N263000 + a skos:Concept ; + skos:broader :N260000 ; + skos:inScheme ; + skos:narrower :N263010, :N263020, :N263030, :N263040, :N263050, :N263060, :N263090 ; + skos:notation "263000" ; + skos:prefLabel "Wehrwesen"@de . + +:N263010 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263010" ; + skos:prefLabel "Bürgerwehren"@de . + +:N263020 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263020" ; + skos:prefLabel "Militärgeschichte"@de ; + skos:scopeNote "Verwenden, wenn militärischer Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N263030 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263030" ; + skos:prefLabel "Reichswehr"@de . + +:N263040 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263040" ; + skos:prefLabel "Wehrmacht"@de . + +:N263050 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263050" ; + skos:prefLabel "Besatzungstruppen. Ausländische Streitkräfte"@de ; + skos:scopeNote "Freie SW: Besatzungstruppe; Ausländisches Militär"@de . + +:N263060 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263060" ; + skos:prefLabel "Bundeswehr"@de . + +:N263090 + a skos:Concept ; + skos:broader :N263000 ; + skos:inScheme ; + skos:notation "263090" ; + skos:prefLabel "Soldaten"@de . + +:N400000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N4 ; + skos:narrower :N400100, :N402000, :N402300, :N404000, :N404300, :N406000, :N406100, :N406200, :N406300 ; + skos:notation "400000" ; + skos:prefLabel "Staat. Politik"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N400100 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:notation "400100" ; + skos:prefLabel "Staat. Politik - Allgemeines"@de . + +:N402000 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N402020, :N402040, :N402060, :N402070 ; + skos:notation "402000" ; + skos:prefLabel "Staatsgrundlagen"@de . + +:N402020 + a skos:Concept ; + skos:broader :N402000 ; + skos:inScheme ; + skos:notation "402020" ; + skos:prefLabel "Staatsrecht"@de . + +:N402040 + a skos:Concept ; + skos:broader :N402000 ; + skos:inScheme ; + skos:narrower :N402042 ; + skos:notation "402040" ; + skos:prefLabel "Staatsgebiet"@de . + +:N402042 + a skos:Concept ; + skos:broader :N402040 ; + skos:inScheme ; + skos:notation "402042" ; + skos:prefLabel "Grenzen"@de . + +:N402060 + a skos:Concept ; + skos:broader :N402000 ; + skos:inScheme ; + skos:notation "402060" ; + skos:prefLabel "Staatsformen"@de ; + skos:scopeNote "Benutzt für historische Themen"@de ; + skos:exactMatch wd:Q183039, gnd:4077779-0 . + +:N402070 + a skos:Concept ; + skos:broader :N402000 ; + skos:inScheme ; + skos:notation "402070" ; + skos:prefLabel "Föderalismus"@de . + +:N402300 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N402330, :N402340 ; + skos:notation "402300" ; + skos:prefLabel "Verfassung"@de . + +:N402330 + a skos:Concept ; + skos:broader :N402300 ; + skos:inScheme ; + skos:notation "402330" ; + skos:prefLabel "Verfassungsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn verfassungsrechtlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N402340 + a skos:Concept ; + skos:broader :N402300 ; + skos:inScheme ; + skos:notation "402340" ; + skos:prefLabel "Grundrechte"@de . + +:N404000 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N404030, :N404040, :N404060, :N404070 ; + skos:notation "404000" ; + skos:prefLabel "Politisches System"@de . + +:N404030 + a skos:Concept ; + skos:broader :N404000 ; + skos:inScheme ; + skos:notation "404030" ; + skos:prefLabel "Regierung"@de . + +:N404040 + a skos:Concept ; + skos:broader :N404000 ; + skos:inScheme ; + skos:notation "404040" ; + skos:prefLabel "Ministerpräsident"@de . + +:N404060 + a skos:Concept ; + skos:broader :N404000 ; + skos:inScheme ; + skos:notation "404060" ; + skos:prefLabel "Ministerien"@de . + +:N404070 + a skos:Concept ; + skos:broader :N404000 ; + skos:inScheme ; + skos:notation "404070" ; + skos:prefLabel "Regierungspolitik"@de ; + skos:scopeNote "Auch bei Regionalpolitik verwendet"@de . + +:N404300 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N404320, :N404340, :N404350, :N404360, :N404380 ; + skos:notation "404300" ; + skos:prefLabel "Parlament"@de . + +:N404320 + a skos:Concept ; + skos:broader :N404300 ; + skos:inScheme ; + skos:notation "404320" ; + skos:prefLabel "Parlamentsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn parlamentarischer Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N404340 + a skos:Concept ; + skos:broader :N404300 ; + skos:inScheme ; + skos:notation "404340" ; + skos:prefLabel "Regierungsparteien"@de . + +:N404350 + a skos:Concept ; + skos:broader :N404300 ; + skos:inScheme ; + skos:notation "404350" ; + skos:prefLabel "Opposition"@de . + +:N404360 + a skos:Concept ; + skos:broader :N404300 ; + skos:inScheme ; + skos:notation "404360" ; + skos:prefLabel "Parlamentsausschüsse"@de . + +:N404380 + a skos:Concept ; + skos:broader :N404300 ; + skos:inScheme ; + skos:notation "404380" ; + skos:prefLabel "Abgeordnete"@de . + +:N406000 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N406020, :N406030, :N406040, :N406060, :N406080 ; + skos:notation "406000" ; + skos:prefLabel "Politische Willensbildung"@de . + +:N406020 + a skos:Concept ; + skos:broader :N406000 ; + skos:inScheme ; + skos:notation "406020" ; + skos:prefLabel "Öffentlichkeitsarbeit"@de . + +:N406030 + a skos:Concept ; + skos:broader :N406000 ; + skos:inScheme ; + skos:notation "406030" ; + skos:prefLabel "Politische Bildung"@de . + +:N406040 + a skos:Concept ; + skos:broader :N406000 ; + skos:inScheme ; + skos:notation "406040" ; + skos:prefLabel "Öffentliche Meinung"@de . + +:N406060 + a skos:Concept ; + skos:broader :N406000 ; + skos:inScheme ; + skos:notation "406060" ; + skos:prefLabel "Politische Bewegungen"@de ; + skos:scopeNote "Ggf. s.a. [Politische Gruppen](#N406200)"@de . + +:N406080 + a skos:Concept ; + skos:broader :N406000 ; + skos:inScheme ; + skos:notation "406080" ; + skos:prefLabel "Politische Stiftungen"@de . + +:N406100 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N406120, :N406130 ; + skos:notation "406100" ; + skos:prefLabel "Parteien. Politiker"@de ; + skos:scopeNote "S.a. einzelne Notationen [Parteien](#N406120), [Politiker](#N406130)"@de . + +:N406120 + a skos:Concept ; + skos:broader :N406100 ; + skos:inScheme ; + skos:notation "406120" ; + skos:prefLabel "Parteien"@de . + +:N406130 + a skos:Concept ; + skos:broader :N406100 ; + skos:inScheme ; + skos:notation "406130" ; + skos:prefLabel "Politiker"@de . + +:N406200 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N406230, :N406250, :N406270 ; + skos:notation "406200" ; + skos:prefLabel "Politische Gruppen"@de ; + skos:scopeNote "Ggf. s.a. [Politische Bewegungen](#N406060)"@de . + +:N406230 + a skos:Concept ; + skos:broader :N406200 ; + skos:inScheme ; + skos:notation "406230" ; + skos:prefLabel "Interessenverbände"@de ; + skos:scopeNote "Im Unterschied zu [Vereine. Interessenverbände](#N725050)"@de . + +:N406250 + a skos:Concept ; + skos:broader :N406200 ; + skos:inScheme ; + skos:notation "406250" ; + skos:prefLabel "Bürgerinitiativen"@de . + +:N406270 + a skos:Concept ; + skos:broader :N406200 ; + skos:inScheme ; + skos:notation "406270" ; + skos:prefLabel "Protestbewegungen"@de . + +:N406300 + a skos:Concept ; + skos:broader :N400000 ; + skos:inScheme ; + skos:narrower :N406310, :N406330, :N406340, :N406350, :N406360, :N406370, :N406380 ; + skos:notation "406300" ; + skos:prefLabel "Wahlen"@de . + +:N406310 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406310" ; + skos:prefLabel "Wahlrecht"@de . + +:N406330 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406330" ; + skos:prefLabel "Volksabstimmungen"@de . + +:N406340 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406340" ; + skos:prefLabel "Europawahlen"@de . + +:N406350 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406350" ; + skos:prefLabel "Bundestagswahlen"@de . + +:N406360 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406360" ; + skos:prefLabel "Landtagswahlen"@de . + +:N406370 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406370" ; + skos:prefLabel "Kreistagswahlen"@de . + +:N406380 + a skos:Concept ; + skos:broader :N406300 ; + skos:inScheme ; + skos:notation "406380" ; + skos:prefLabel "Kommunalwahlen"@de . + +:N420000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N4 ; + skos:narrower :N420100, :N421000, :N421400, :N422000, :N423000, :N423400, :N423600, :N424000, :N425000, :N425200, :N425400, :N426000, :N428000 ; + skos:notation "420000" ; + skos:prefLabel "Verwaltung"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N420100 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:notation "420100" ; + skos:prefLabel "Verwaltung - Allgemeines"@de ; + skos:scopeNote "Verwenden bei sehr allgemeinem Kontext wie Verwaltung in NRW; Im Unterschied zu [Allgemeine Verwaltung](#N423000)"@de . + +:N421000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:notation "421000" ; + skos:prefLabel "Verwaltungsrecht"@de . + +:N421400 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:notation "421400" ; + skos:prefLabel "Verwaltungskontrolle"@de . + +:N422000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:notation "422000" ; + skos:prefLabel "Verwaltungsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Verwaltungsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N423000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N423030, :N423050 ; + skos:notation "423000" ; + skos:prefLabel "Allgemeine Verwaltung"@de ; + skos:example "Behörden (Bundesbehörden, städtische Behörden u.Ä.)"@de . + +:N423030 + a skos:Concept ; + skos:broader :N423000 ; + skos:inScheme ; + skos:notation "423030" ; + skos:prefLabel "Organisation"@de . + +:N423050 + a skos:Concept ; + skos:broader :N423000 ; + skos:inScheme ; + skos:notation "423050" ; + skos:prefLabel "Datenverarbeitung"@de . + +:N423400 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N423420, :N423430, :N423440 ; + skos:notation "423400" ; + skos:prefLabel "Verwaltungsreform"@de . + +:N423420 + a skos:Concept ; + skos:broader :N423400 ; + skos:inScheme ; + skos:notation "423420" ; + skos:prefLabel "Länderneugliederung"@de . + +:N423430 + a skos:Concept ; + skos:broader :N423400 ; + skos:inScheme ; + skos:notation "423430" ; + skos:prefLabel "Gebietsreform"@de . + +:N423440 + a skos:Concept ; + skos:broader :N423400 ; + skos:inScheme ; + skos:notation "423440" ; + skos:prefLabel "Funktionalreform"@de . + +:N423600 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N423610, :N423620, :N423640 ; + skos:notation "423600" ; + skos:prefLabel "Öffentlicher Dienst"@de . + +:N423610 + a skos:Concept ; + skos:broader :N423600 ; + skos:inScheme ; + skos:notation "423610" ; + skos:prefLabel "Dienstrecht"@de . + +:N423620 + a skos:Concept ; + skos:broader :N423600 ; + skos:inScheme ; + skos:notation "423620" ; + skos:prefLabel "Personalwesen"@de . + +:N423640 + a skos:Concept ; + skos:broader :N423600 ; + skos:inScheme ; + skos:notation "423640" ; + skos:prefLabel "Beamte"@de . + +:N424000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N424020, :N424030, :N424040, :N424050, :N424060 ; + skos:notation "424000" ; + skos:prefLabel "Öffentlicher Haushalt"@de . + +:N424020 + a skos:Concept ; + skos:broader :N424000 ; + skos:inScheme ; + skos:narrower :N424021, :N424022, :N424024, :N424026, :N424028 ; + skos:notation "424020" ; + skos:prefLabel "Finanzverwaltung"@de . + +:N424021 + a skos:Concept ; + skos:broader :N424020 ; + skos:inScheme ; + skos:notation "424021" ; + skos:prefLabel "Finanzämter"@de . + +:N424022 + a skos:Concept ; + skos:broader :N424020 ; + skos:inScheme ; + skos:notation "424022" ; + skos:prefLabel "Finanzausgleich"@de . + +:N424024 + a skos:Concept ; + skos:broader :N424020 ; + skos:inScheme ; + skos:notation "424024" ; + skos:prefLabel "Finanzreform"@de . + +:N424026 + a skos:Concept ; + skos:broader :N424020 ; + skos:inScheme ; + skos:notation "424026" ; + skos:prefLabel "Vergabe"@de . + +:N424028 + a skos:Concept ; + skos:broader :N424020 ; + skos:inScheme ; + skos:notation "424028" ; + skos:prefLabel "Rechnungshof"@de . + +:N424030 + a skos:Concept ; + skos:broader :N424000 ; + skos:inScheme ; + skos:notation "424030" ; + skos:prefLabel "Abgaben"@de . + +:N424040 + a skos:Concept ; + skos:broader :N424000 ; + skos:inScheme ; + skos:narrower :N424042 ; + skos:notation "424040" ; + skos:prefLabel "Steuern"@de . + +:N424042 + a skos:Concept ; + skos:broader :N424040 ; + skos:inScheme ; + skos:notation "424042" ; + skos:prefLabel "Steuerberatung"@de . + +:N424050 + a skos:Concept ; + skos:broader :N424000 ; + skos:inScheme ; + skos:notation "424050" ; + skos:prefLabel "Gebühren"@de . + +:N424060 + a skos:Concept ; + skos:broader :N424000 ; + skos:inScheme ; + skos:notation "424060" ; + skos:prefLabel "Zölle"@de . + +:N425000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N425020, :N425030, :N425040, :N425050 ; + skos:notation "425000" ; + skos:prefLabel "Provinzialverwaltung"@de . + +:N425020 + a skos:Concept ; + skos:broader :N425000 ; + skos:inScheme ; + skos:notation "425020" ; + skos:prefLabel "Landschaftsverband Rheinland"@de . + +:N425030 + a skos:Concept ; + skos:broader :N425000 ; + skos:inScheme ; + skos:notation "425030" ; + skos:prefLabel "Landschaftsverband Westfalen-Lippe"@de . + +:N425040 + a skos:Concept ; + skos:broader :N425000 ; + skos:inScheme ; + skos:notation "425040" ; + skos:prefLabel "Landesverband Lippe"@de . + +:N425050 + a skos:Concept ; + skos:broader :N425000 ; + skos:inScheme ; + skos:notation "425050" ; + skos:prefLabel "Kommunalverband Ruhrgebiet"@de . + +:N425200 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:notation "425200" ; + skos:prefLabel "Regierungsbezirke"@de . + +:N425400 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N425420, :N425430, :N425490 ; + skos:notation "425400" ; + skos:prefLabel "Kreisverwaltung"@de . + +:N425420 + a skos:Concept ; + skos:broader :N425400 ; + skos:inScheme ; + skos:notation "425420" ; + skos:prefLabel "Kreisrecht"@de . + +:N425430 + a skos:Concept ; + skos:broader :N425400 ; + skos:inScheme ; + skos:notation "425430" ; + skos:prefLabel "Kreistage"@de . + +:N425490 + a skos:Concept ; + skos:broader :N425400 ; + skos:inScheme ; + skos:notation "425490" ; + skos:prefLabel "Kreispartnerschaften"@de ; + skos:scopeNote "Analog zu [Städtepartnerschaft](#N426090)"@de . + +:N426000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N426020, :N426030, :N426040, :N426050, :N426060, :N426070, :N426090 ; + skos:notation "426000" ; + skos:prefLabel "Gemeindeverwaltung"@de . + +:N426020 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426020" ; + skos:prefLabel "Kommunalrecht"@de . + +:N426030 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426030" ; + skos:prefLabel "Gemeinderat"@de . + +:N426040 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426040" ; + skos:prefLabel "Kommunale Selbstverwaltung"@de . + +:N426050 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426050" ; + skos:prefLabel "Auftragsverwaltung"@de . + +:N426060 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426060" ; + skos:prefLabel "Kommunale Spitzenverbände"@de . + +:N426070 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426070" ; + skos:prefLabel "Gemeindeverbände"@de . + +:N426090 + a skos:Concept ; + skos:broader :N426000 ; + skos:inScheme ; + skos:notation "426090" ; + skos:prefLabel "Städtepartnerschaften"@de ; + skos:scopeNote "Analog zu [Kreispartnerschaften](#N425490)"@de . + +:N428000 + a skos:Concept ; + skos:broader :N420000 ; + skos:inScheme ; + skos:narrower :N428020, :N428030, :N428040, :N428050, :N428060, :N428070 ; + skos:notation "428000" ; + skos:prefLabel "Sicherheit und Ordnung"@de ; + skos:example "Polizei, Ordnungsamt, Sicherheit bei Veranstaltungen, Verkehrsunfallentwicklung u.Ä."@de . + +:N428020 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:notation "428020" ; + skos:prefLabel "Ordnungsrecht"@de . + +:N428030 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:narrower :N428032 ; + skos:notation "428030" ; + skos:prefLabel "Polizei"@de . + +:N428032 + a skos:Concept ; + skos:broader :N428030 ; + skos:inScheme ; + skos:notation "428032" ; + skos:prefLabel "Polizeiorganisation"@de . + +:N428040 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:notation "428040" ; + skos:prefLabel "Zivilschutz"@de ; + skos:example "Feuerwehr, Luftschutz, Krisenmanagement, Gefahrenabwehr u.Ä."@de . + +:N428050 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:narrower :N428052, :N428054 ; + skos:notation "428050" ; + skos:prefLabel "Staatsschutz"@de . + +:N428052 + a skos:Concept ; + skos:broader :N428050 ; + skos:inScheme ; + skos:notation "428052" ; + skos:prefLabel "Grenzschutz"@de . + +:N428054 + a skos:Concept ; + skos:broader :N428050 ; + skos:inScheme ; + skos:notation "428054" ; + skos:prefLabel "Verfassungsschutz"@de . + +:N428060 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:notation "428060" ; + skos:prefLabel "Personenstand"@de ; + skos:scopeNote "Benutzt für moderne u. historische Personenstandsverz., Themen wie Sterberegister, Eheschließungen u.Ä.; Ggf. zusätzl. [Quellen](#N240100) u. [katholische](#N611030) o. [evangelische](#N613030) Kirchengemeinden"@de . + +:N428070 + a skos:Concept ; + skos:broader :N428000 ; + skos:inScheme ; + skos:narrower :N428072, :N428074, :N428076, :N428078 ; + skos:notation "428070" ; + skos:prefLabel "Sicherheitsverwaltung"@de . + +:N428072 + a skos:Concept ; + skos:broader :N428070 ; + skos:inScheme ; + skos:notation "428072" ; + skos:prefLabel "Technische Überwachungsvereine"@de . + +:N428074 + a skos:Concept ; + skos:broader :N428070 ; + skos:inScheme ; + skos:notation "428074" ; + skos:prefLabel "Brandbekämpfung"@de . + +:N428076 + a skos:Concept ; + skos:broader :N428070 ; + skos:inScheme ; + skos:notation "428076" ; + skos:prefLabel "Rettungswesen"@de . + +:N428078 + a skos:Concept ; + skos:broader :N428070 ; + skos:inScheme ; + skos:notation "428078" ; + skos:prefLabel "Katastrophen. Unfälle"@de ; + skos:scopeNote "Freie SW: Katastrophe; Unfall"@de . + +:N440000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N4 ; + skos:narrower :N440100, :N442000, :N443000, :N444000, :N446000, :N447000, :N448000 ; + skos:notation "440000" ; + skos:prefLabel "Recht"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N440100 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:notation "440100" ; + skos:prefLabel "Recht - Allgemeines"@de . + +:N442000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:narrower :N442050 ; + skos:notation "442000" ; + skos:prefLabel "Rechtsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn rechtlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N442050 + a skos:Concept ; + skos:broader :N442000 ; + skos:inScheme ; + skos:notation "442050" ; + skos:prefLabel "Rechtsgeschichtliche Quellen"@de . + +:N443000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:notation "443000" ; + skos:prefLabel "Privatrecht"@de . + +:N444000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:narrower :N444030, :N444050, :N444070 ; + skos:notation "444000" ; + skos:prefLabel "Strafrecht"@de . + +:N444030 + a skos:Concept ; + skos:broader :N444000 ; + skos:inScheme ; + skos:notation "444030" ; + skos:prefLabel "Strafvollzug"@de . + +:N444050 + a skos:Concept ; + skos:broader :N444000 ; + skos:inScheme ; + skos:notation "444050" ; + skos:prefLabel "Kriminalität"@de . + +:N444070 + a skos:Concept ; + skos:broader :N444000 ; + skos:inScheme ; + skos:notation "444070" ; + skos:prefLabel "Kriminalgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Kriminalaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N446000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:narrower :N446010, :N446030, :N446050, :N446060, :N446070, :N446080 ; + skos:notation "446000" ; + skos:prefLabel "Gerichtsbarkeit"@de . + +:N446010 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:notation "446010" ; + skos:prefLabel "Verfassungsgerichtsbarkeit"@de . + +:N446030 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:narrower :N446032, :N446034 ; + skos:notation "446030" ; + skos:prefLabel "Ordentliche Gerichtsbarkeit"@de . + +:N446032 + a skos:Concept ; + skos:broader :N446030 ; + skos:inScheme ; + skos:notation "446032" ; + skos:prefLabel "Strafgerichtsbarkeit"@de . + +:N446034 + a skos:Concept ; + skos:broader :N446030 ; + skos:inScheme ; + skos:notation "446034" ; + skos:prefLabel "Zivilgerichtsbarkeit"@de . + +:N446050 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:notation "446050" ; + skos:prefLabel "Verwaltungsgerichtsbarkeit"@de . + +:N446060 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:notation "446060" ; + skos:prefLabel "Finanzgerichtsbarkeit"@de . + +:N446070 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:notation "446070" ; + skos:prefLabel "Arbeitsgerichtsbarkeit"@de . + +:N446080 + a skos:Concept ; + skos:broader :N446000 ; + skos:inScheme ; + skos:notation "446080" ; + skos:prefLabel "Sozialgerichtsbarkeit"@de . + +:N447000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:notation "447000" ; + skos:prefLabel "Rechtsprechung"@de ; + skos:altLabel "Judikatur, Spruchpraxis"@de ; + skos:scopeNote "Verwenden, wenn konkrete Fälle geschildert werden, inkl. Gerichtsprozesse"@de ; + skos:exactMatch gnd:4115710-2 . + +:N448000 + a skos:Concept ; + skos:broader :N440000 ; + skos:inScheme ; + skos:notation "448000" ; + skos:prefLabel "Rechtspflege"@de ; + skos:definition "Anwendung des Rechts auf den Einzelfall durch den Staat"@de ; + skos:scopeNote "Betrifft juristische Berufe; Verwenden auch bei Grundbucheintragungen, Erbschaftsangelegenheiten, Personenstandsangelegenheiten"@de ; + skos:exactMatch wd:Q1522168, gnd:4048816-0 . + +:N500000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N500100, :N502000, :N503000, :N503200, :N503400, :N503600 ; + skos:notation "500000" ; + skos:prefLabel "Bevölkerung"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N500100 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:notation "500100" ; + skos:prefLabel "Bevölkerung - Allgemeines"@de . + +:N502000 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:notation "502000" ; + skos:prefLabel "Bevölkerungsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Bevölkerungsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N503000 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:narrower :N503020, :N503030, :N503040, :N503050, :N503060, :N503070, :N503080, :N503090 ; + skos:notation "503000" ; + skos:prefLabel "Bevölkerungsstruktur"@de ; + skos:scopeNote "Statistiken, s.a. [Sozialstruktur](#N724000)"@de . + +:N503020 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503020" ; + skos:prefLabel "Altersstruktur"@de . + +:N503030 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503030" ; + skos:prefLabel "Geschlechtsverhältnis"@de . + +:N503040 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503040" ; + skos:prefLabel "Volkszählung"@de . + +:N503050 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503050" ; + skos:prefLabel "Einwohnerverzeichnisse"@de ; + skos:scopeNote "Benutzt für historische Verzeichnisse, zusätzl. [Quellen](#N240100)"@de . + +:N503060 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503060" ; + skos:prefLabel "Haushalte"@de . + +:N503070 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503070" ; + skos:prefLabel "Wohnen"@de . + +:N503080 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503080" ; + skos:prefLabel "Einkommen. Vermögen"@de ; + skos:scopeNote "Statistiken, s.a. [Lohn und Einkommen](#N543660), freie SW: Einkommen; Vermögen"@de . + +:N503090 + a skos:Concept ; + skos:broader :N503000 ; + skos:inScheme ; + skos:notation "503090" ; + skos:prefLabel "Religionen"@de . + +:N503200 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:narrower :N503220, :N503230, :N503240, :N503250, :N503260 ; + skos:notation "503200" ; + skos:prefLabel "Bevölkerungsentwicklung"@de . + +:N503220 + a skos:Concept ; + skos:broader :N503200 ; + skos:inScheme ; + skos:notation "503220" ; + skos:prefLabel "Bevölkerungspolitik"@de . + +:N503230 + a skos:Concept ; + skos:broader :N503200 ; + skos:inScheme ; + skos:notation "503230" ; + skos:prefLabel "Geburtenziffer"@de ; + skos:scopeNote "Für Statistiken verwenden"@de . + +:N503240 + a skos:Concept ; + skos:broader :N503200 ; + skos:inScheme ; + skos:notation "503240" ; + skos:prefLabel "Eheschließungen"@de ; + skos:scopeNote "Für Statistiken verwenden"@de . + +:N503250 + a skos:Concept ; + skos:broader :N503200 ; + skos:inScheme ; + skos:notation "503250" ; + skos:prefLabel "Sterbeziffer"@de ; + skos:scopeNote "Für Statistiken verwenden"@de . + +:N503260 + a skos:Concept ; + skos:broader :N503200 ; + skos:inScheme ; + skos:notation "503260" ; + skos:prefLabel "Prognosen"@de . + +:N503400 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:narrower :N503420, :N503430, :N503440 ; + skos:notation "503400" ; + skos:prefLabel "Migration"@de . + +:N503420 + a skos:Concept ; + skos:broader :N503400 ; + skos:inScheme ; + skos:narrower :N503424 ; + skos:notation "503420" ; + skos:prefLabel "Binnenwanderung"@de . + +:N503424 + a skos:Concept ; + skos:broader :N503420 ; + skos:inScheme ; + skos:notation "503424" ; + skos:prefLabel "Pendler"@de . + +:N503430 + a skos:Concept ; + skos:broader :N503400 ; + skos:inScheme ; + skos:notation "503430" ; + skos:prefLabel "Auswanderung"@de . + +:N503440 + a skos:Concept ; + skos:broader :N503400 ; + skos:inScheme ; + skos:notation "503440" ; + skos:prefLabel "Einwanderung"@de . + +:N503600 + a skos:Concept ; + skos:broader :N500000 ; + skos:inScheme ; + skos:notation "503600" ; + skos:prefLabel "Bevölkerungsdichte"@de . + +:N520000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N520100, :N521000, :N521200, :N521400, :N522000, :N523000, :N52400 ; + skos:notation "520000" ; + skos:prefLabel "Sozialwesen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N520100 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:notation "520100" ; + skos:prefLabel "Sozialwesen - Allgemeines"@de . + +:N521000 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:notation "521000" ; + skos:prefLabel "Sozialpolitik"@de . + +:N521200 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:notation "521200" ; + skos:prefLabel "Sozialrecht"@de . + +:N521400 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:narrower :N521410, :N521420, :N521440, :N521450 ; + skos:notation "521400" ; + skos:prefLabel "Sozialversicherung"@de . + +:N521410 + a skos:Concept ; + skos:broader :N521400 ; + skos:inScheme ; + skos:notation "521410" ; + skos:prefLabel "Krankenversicherung"@de . + +:N521420 + a skos:Concept ; + skos:broader :N521400 ; + skos:inScheme ; + skos:notation "521420" ; + skos:prefLabel "Unfallversicherung"@de . + +:N521440 + a skos:Concept ; + skos:broader :N521400 ; + skos:inScheme ; + skos:notation "521440" ; + skos:prefLabel "Rentenversicherung"@de . + +:N521450 + a skos:Concept ; + skos:broader :N521400 ; + skos:inScheme ; + skos:notation "521450" ; + skos:prefLabel "Arbeitslosenversicherung"@de . + +:N522000 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:narrower :N522010, :N522020, :N522030 ; + skos:notation "522000" ; + skos:prefLabel "Sozialhilfeträger"@de . + +:N522010 + a skos:Concept ; + skos:broader :N522000 ; + skos:inScheme ; + skos:notation "522010" ; + skos:prefLabel "Öffentliche Träger"@de . + +:N522020 + a skos:Concept ; + skos:broader :N522000 ; + skos:inScheme ; + skos:notation "522020" ; + skos:prefLabel "Kirchliche Träger"@de ; + skos:example "Caritas etc."@de ; + skos:scopeNote "Freie SW: Sozialhilfeträger"@de . + +:N522030 + a skos:Concept ; + skos:broader :N522000 ; + skos:inScheme ; + skos:notation "522030" ; + skos:prefLabel "Private Träger"@de ; + skos:example "AWO"@de ; + skos:scopeNote "Auch mildtätige Stiftungen; Freie SW: Sozialhilfeträger"@de . + +:N523000 + a skos:Concept ; + skos:broader :N520000 ; + skos:inScheme ; + skos:narrower :N523001, :N523010, :N523020, :N523030, :N523040, :N523050, :N523060, :N523070, :N523080, :N523090 ; + skos:notation "523000" ; + skos:prefLabel "Sozialhilfe (Fürsorge)"@de ; + skos:definition "Gebräuchlich bzw. amtliche Bezeichnung ab ca. 1960; Vor 1960 s. Fürsorge; Staatliche Sozialleistung zur Gewährung des soziokulturellen Existenzminimums in der Bundesrepublik Deutschland"@de ; + skos:exactMatch wd:Q15848050, gnd:4055776-5 . + +:N523001 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523001" ; + skos:prefLabel "Sozialarbeit"@de . + +:N523010 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523010" ; + skos:prefLabel "Arbeitslosenhilfe"@de ; + skos:scopeNote "Hier nur Titel zur sozialen Betreuung, nicht zur Versicherung, s. [Arbeitslosenversicherung](#N521450)"@de . + +:N523020 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523020" ; + skos:prefLabel "Gefangenenfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung von Gefangenen"@de . + +:N523030 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:narrower :N523035 ; + skos:notation "523030" ; + skos:prefLabel "Armenfürsorge"@de ; + skos:scopeNote "Auch für die Zeit nach 1960, wenn es sich um die soziale Betreuung handelt"@de . + +:N523035 + a skos:Concept ; + skos:broader :N523030 ; + skos:inScheme ; + skos:notation "523035" ; + skos:prefLabel "Obdachlosenhilfe"@de . + +:N523040 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523040" ; + skos:prefLabel "Unfallfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung der Unfallopfer"@de . + +:N523050 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523050" ; + skos:prefLabel "Krankenfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung der Kranken, s.a. [Krankenpflege](#N534010), [Krankenversorgung](#N534000)"@de . + +:N523060 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523060" ; + skos:prefLabel "Behindertenhilfe"@de . + +:N523070 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523070" ; + skos:prefLabel "Kriegsopferfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung der Kriegsopfer"@de . + +:N523080 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523080" ; + skos:prefLabel "Waisenfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung der Waisen"@de . + +:N523090 + a skos:Concept ; + skos:broader :N523000 ; + skos:inScheme ; + skos:notation "523090" ; + skos:prefLabel "Altenhilfe"@de . + +:N524000 + a skos:Concept ; + skos:broader :N520000 ; ; + skos:inScheme ; + skos:narrower :N524010, :N524030, :N524050, :N524060, :N524070 ; + skos:notation "524000" ; + skos:prefLabel "Sozialpädagogik"@de . + +:N524010 + a skos:Concept ; + skos:broader :N524000 ; + skos:inScheme ; + skos:notation "524010" ; + skos:prefLabel "Kinder- und Jugendhilfe"@de ; + skos:scopeNote "Freie SW: Kinderfürsorge; Jugendhilfe"@de . + +:N524030 + a skos:Concept ; + skos:broader :N524000 ; + skos:inScheme ; + skos:notation "524030" ; + skos:prefLabel "Fürsorgeerziehung"@de . + +:N524050 + a skos:Concept ; + skos:broader :N524000 ; + skos:inScheme ; + skos:notation "524050" ; + skos:prefLabel "Bewährungshilfe"@de . + +:N524060 + a skos:Concept ; + skos:broader :N524000 ; + skos:inScheme ; + skos:notation "524060" ; + skos:prefLabel "Erziehungsberatung"@de . + +:N524070 + a skos:Concept ; + skos:broader :N524000 ; + skos:inScheme ; + skos:notation "524070" ; + skos:prefLabel "Familienfürsorge"@de ; + skos:scopeNote "Verwendet für die soziale Betreuung von Familien"@de ; + skos:exactMatch gnd:4016411-1 . + +:N530000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N530100, :N532000, :N533000, :N534000, :N535000, :N537000 ; + skos:notation "530000" ; + skos:prefLabel "Gesundheitswesen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N530100 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:notation "530100" ; + skos:prefLabel "Gesundheitswesen - Allgemeines"@de . + +:N532000 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:narrower :N532010, :N532030, :N532050, :N532070 ; + skos:notation "532000" ; + skos:prefLabel "Medizin"@de . + +:N532010 + a skos:Concept ; + skos:broader :N532000 ; + skos:inScheme ; + skos:notation "532010" ; + skos:prefLabel "Medizingeschichte"@de ; + skos:example "Seuchen"@de ; + skos:scopeNote "Verwenden, wenn medizinischer Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N532030 + a skos:Concept ; + skos:broader :N532000 ; + skos:inScheme ; + skos:notation "532030" ; + skos:prefLabel "Medizinische Versorgung"@de . + +:N532050 + a skos:Concept ; + skos:broader :N532000 ; + skos:inScheme ; + skos:notation "532050" ; + skos:prefLabel "Ärzte. Heilberufe"@de ; + skos:scopeNote "Freie SW: Arzt; Heilberuf"@de . + +:N532070 + a skos:Concept ; + skos:broader :N532000 ; + skos:inScheme ; + skos:notation "532070" ; + skos:prefLabel "Gesundheitsvorsorge"@de . + +:N533000 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:notation "533000" ; + skos:prefLabel "Apotheken"@de . + +:N534000 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:narrower :N534010, :N534020, :N534030, :N534050, :N534060, :N534080 ; + skos:notation "534000" ; + skos:prefLabel "Krankenversorgung"@de ; + skos:scopeNote "S.a. [Krankenfürsorge](#N523050), [Krankenpflege](#N534010)"@de . + +:N534010 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534010" ; + skos:prefLabel "Krankenpflege"@de ; + skos:scopeNote "S.a. [Krankenfürsorge](#N523050), [Krankenversorgung](#N534000)"@de . + +:N534020 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534020" ; + skos:prefLabel "Pflegepersonal"@de . + +:N534030 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534030" ; + skos:prefLabel "Krankenhäuser"@de . + +:N534050 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534050" ; + skos:prefLabel "Kur- und Heilstätten"@de . + +:N534060 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534060" ; + skos:prefLabel "Suchtkrankenhilfe"@de . + +:N534080 + a skos:Concept ; + skos:broader :N534000 ; + skos:inScheme ; + skos:notation "534080" ; + skos:prefLabel "Psychiatrie"@de . + +:N535000 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:notation "535000" ; + skos:prefLabel "Hygiene"@de . + +:N537000 + a skos:Concept ; + skos:broader :N530000 ; + skos:inScheme ; + skos:notation "537000" ; + skos:prefLabel "Veterinärwesen"@de . + +:N540000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N540100, :N541000, :N541500, :N542000, :N543000, :N543200, :N543400, :N543600, :N543800, :N544000, :N544200, :N544400, :N544600, :N545000, :N546000, :N547000, :N547400, :N547600, :N548000, :N548200, :N548300, :N548400, :N548500, :N548600, :N548800 ; + skos:notation "540000" ; + skos:prefLabel "Wirtschaft"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N540100 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "540100" ; + skos:prefLabel "Wirtschaft - Allgemeines"@de . + +:N541000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "541000" ; + skos:prefLabel "Wirtschaftspolitik"@de . + +:N541500 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "541500" ; + skos:prefLabel "Wirtschaftsrecht"@de . + +:N542000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "542000" ; + skos:prefLabel "Wirtschaftsgeschichte"@de ; + skos:definition "Geschichtswissenschaft mit ökonomischem und sozialwissenschaftlichem Schwerpunkt"@de ; + skos:scopeNote "Verwenden, wenn alle Unterkategorien von Wirtschaft behandelt werden: Handel, Industrie, Handwerk etc.; Im Unterschied zu allg. [Geschichte](#N240000)"@de ; + skos:exactMatch wd:Q47398, gnd:7504419-5 . + +:N543000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N543010, :N543020, :N543060, :N543080 ; + skos:notation "543000" ; + skos:prefLabel "Wirtschaftsstruktur"@de . + +:N543010 + a skos:Concept ; + skos:broader :N543000 ; + skos:inScheme ; + skos:notation "543010" ; + skos:prefLabel "Unternehmen"@de ; + skos:definition "Gewerbliche oder kaufmännische Geschäftseinheit"@de ; + skos:example "Betriebsführung, Betriebsgliederung, Betriebsstruktur, Gemeinwirtschaft, Wirtschaftsentwicklung"@de ; + skos:exactMatch wd:Q4830453, gnd:4061963-1 . + + +:N543020 + a skos:Concept ; + skos:broader :N543000 ; + skos:inScheme ; + skos:notation "543020" ; + skos:prefLabel "Wirtschaftsförderung"@de . + +:N543060 + a skos:Concept ; + skos:broader :N543000 ; + skos:inScheme ; + skos:narrower :N543062 ; + skos:notation "543060" ; + skos:prefLabel "Außenwirtschaft"@de . + +:N543062 + a skos:Concept ; + skos:broader :N543060 ; + skos:inScheme ; + skos:notation "543062" ; + skos:prefLabel "Europäische Union"@de . + +:N543080 + a skos:Concept ; + skos:broader :N543000 ; + skos:inScheme ; + skos:notation "543080" ; + skos:prefLabel "Wirtschaftsstatistik"@de . + +:N543200 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "543200" ; + skos:prefLabel "Wirtschaftsverfassung"@de . + +:N543400 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N543420, :N543430, :N543440, :N543460, :N543480 ; + skos:notation "543400" ; + skos:prefLabel "Wirtschaftsorganisationen"@de . + +:N543420 + a skos:Concept ; + skos:broader :N543400 ; + skos:inScheme ; + skos:notation "543420" ; + skos:prefLabel "Wirtschaftsverbände"@de . + +:N543430 + a skos:Concept ; + skos:broader :N543400 ; + skos:inScheme ; + skos:notation "543430" ; + skos:prefLabel "Industrie- und Handelskammern"@de . + +:N543440 + a skos:Concept ; + skos:broader :N543400 ; + skos:inScheme ; + skos:notation "543440" ; + skos:prefLabel "Verbraucherverbände"@de . + +:N543460 + a skos:Concept ; + skos:broader :N543400 ; + skos:inScheme ; + skos:notation "543460" ; + skos:prefLabel "Arbeitgebervereinigungen"@de . + +:N543480 + a skos:Concept ; + skos:broader :N543400 ; + skos:inScheme ; + skos:notation "543480" ; + skos:prefLabel "Gewerkschaften"@de ; + skos:definition "Vereinigung von abhängigen Erwerbspersonen zur Vertretung ihrer wirtschaftlichen und sozialen Interessen"@de ; + skos:scopeNote "Betriebsrat, Streik"@de ; + skos:exactMatch wd:Q178790, gnd:4020872-2 . + +:N543600 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N543620, :N543630, :N543640, :N543660, :N543680 ; + skos:notation "543600" ; + skos:prefLabel "Arbeitsmarkt"@de . + +:N543620 + a skos:Concept ; + skos:broader :N543600 ; + skos:inScheme ; + skos:notation "543620" ; + skos:prefLabel "Unternehmer. Unternehmensführung"@de ; + skos:example "Arbeitsmarktpolitik, Arbeitsrecht, Beruf, Mitbestimmung, Betriebsrat, Tarifvertrag, Beschäftigungsförderung, Unternehmensberatung"@de . + +:N543630 + a skos:Concept ; + skos:broader :N543600 ; + skos:inScheme ; + skos:notation "543630" ; + skos:prefLabel "Arbeitnehmer"@de . + +:N543640 + a skos:Concept ; + skos:broader :N543600 ; + skos:inScheme ; + skos:notation "543640" ; + skos:prefLabel "Freie Berufe"@de . + +:N543660 + a skos:Concept ; + skos:broader :N543600 ; + skos:inScheme ; + skos:notation "543660" ; + skos:prefLabel "Lohn und Einkommen"@de ; + skos:scopeNote "S.a. [Einkommen. Vermögen](#N503080)"@de . + +:N543680 + a skos:Concept ; + skos:broader :N543600 ; + skos:inScheme ; + skos:notation "543680" ; + skos:prefLabel "Arbeitslosigkeit"@de . + +:N543800 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "543800" ; + skos:prefLabel "Marketing"@de . + +:N544000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N544010, :N544020, :N544030, :N544040, :N544050, :N544060, :N544090 ; + skos:notation "544000" ; + skos:prefLabel "Landwirtschaft"@de . + +:N544010 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544010" ; + skos:prefLabel "Agrarpolitik"@de . + +:N544020 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544020" ; + skos:prefLabel "Agrargeschichte"@de ; + skos:scopeNote "Freie SW: Landwirtschaft; Geschichte; Verwenden, wenn landwirtschaftlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N544030 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544030" ; + skos:prefLabel "Hofgeschichte"@de ; + skos:scopeNote "Freie SW: Bauernhof; Geschichte, s.a. [Bauernhäuser](#N708028), [Bauernhäuser](#N843050)"@de . + +:N544040 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544040" ; + skos:prefLabel "Flurformen. Flurbereinigung"@de . + +:N544050 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:narrower :N544052, :N544054, :N544056 ; + skos:notation "544050" ; + skos:prefLabel "Landwirtschaftliche Arbeitskräfte"@de . + +:N544052 + a skos:Concept ; + skos:broader :N544050 ; + skos:inScheme ; + skos:notation "544052" ; + skos:prefLabel "Bauern"@de . + +:N544054 + a skos:Concept ; + skos:broader :N544050 ; + skos:inScheme ; + skos:notation "544054" ; + skos:prefLabel "Landfrauen"@de . + +:N544056 + a skos:Concept ; + skos:broader :N544050 ; + skos:inScheme ; + skos:notation "544056" ; + skos:prefLabel "Landarbeiter"@de . + +:N544060 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544060" ; + skos:prefLabel "Landwirtschaftliche Betriebslehre"@de . + +:N544090 + a skos:Concept ; + skos:broader :N544000 ; + skos:inScheme ; + skos:notation "544090" ; + skos:prefLabel "Landwirtschaftsgenossenschaften"@de . + +:N544200 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N544210, :N544220, :N544230, :N544240, :N544250, :N544260, :N544280 ; + skos:notation "544200" ; + skos:prefLabel "Agrarproduktion"@de . + +:N544210 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544210" ; + skos:prefLabel "Biologische Landwirtschaft"@de . + +:N544220 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544220" ; + skos:prefLabel "Ackerbau"@de . + +:N544230 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544230" ; + skos:prefLabel "Grünlandwirtschaft"@de . + +:N544240 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:narrower :N544245 ; + skos:notation "544240" ; + skos:prefLabel "Gartenbau"@de . + +:N544245 + a skos:Concept ; + skos:broader :N544240 ; + skos:inScheme ; + skos:notation "544245" ; + skos:prefLabel "Baumschulen"@de . + +:N544250 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544250" ; + skos:prefLabel "Obstbau"@de . + +:N544260 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544260" ; + skos:prefLabel "Weinbau"@de . + +:N544280 + a skos:Concept ; + skos:broader :N544200 ; + skos:inScheme ; + skos:notation "544280" ; + skos:prefLabel "Tierzucht"@de . + +:N544400 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N544410, :N544420, :N544440, :N544450, :N544460 ; + skos:notation "544400" ; + skos:prefLabel "Forstwirtschaft"@de . + +:N544410 + a skos:Concept ; + skos:broader :N544400 ; + skos:inScheme ; + skos:notation "544410" ; + skos:prefLabel "Forstrecht"@de . + +:N544420 + a skos:Concept ; + skos:broader :N544400 ; + skos:inScheme ; + skos:notation "544420" ; + skos:prefLabel "Forstgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Forstaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N544440 + a skos:Concept ; + skos:broader :N544400 ; + skos:inScheme ; + skos:notation "544440" ; + skos:prefLabel "Forstprodukte"@de . + +:N544450 + a skos:Concept ; + skos:broader :N544400 ; + skos:inScheme ; + skos:notation "544450" ; + skos:prefLabel "Einzelne Baumarten"@de . + +:N544460 + a skos:Concept ; + skos:broader :N544400 ; + skos:inScheme ; + skos:notation "544460" ; + skos:prefLabel "Wald"@de . + +:N544600 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N544610, :N544620, :N544640, :N544650, :N544660, :N544670 ; + skos:notation "544600" ; + skos:prefLabel "Jagd. Fischfang"@de ; + skos:scopeNote "S.a. einzelne Notationen [Jagd](#N544610), [Fischfang](#N544650)"@de . + +:N544610 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544610" ; + skos:prefLabel "Jagd"@de . + +:N544620 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544620" ; + skos:prefLabel "Jagdrecht"@de . + +:N544640 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544640" ; + skos:prefLabel "Wild"@de . + +:N544650 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544650" ; + skos:prefLabel "Fischfang"@de . + +:N544660 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544660" ; + skos:prefLabel "Fischereirecht"@de . + +:N544670 + a skos:Concept ; + skos:broader :N544600 ; + skos:inScheme ; + skos:notation "544670" ; + skos:prefLabel "Fischzucht"@de . + +:N545000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N545010, :N545020, :N545030, :N545040, :N545050, :N545060, :N545070, :N545080 ; + skos:notation "545000" ; + skos:prefLabel "Bergbau"@de . + +:N545010 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545010" ; + skos:prefLabel "Bergrecht"@de . + +:N545020 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545020" ; + skos:prefLabel "Bergbaugeschichte"@de ; + skos:scopeNote "Verwenden, wenn Bergbauaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N545030 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545030" ; + skos:prefLabel "Kohlenbergbau"@de . + +:N545040 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545040" ; + skos:prefLabel "Gesteinsabbau"@de . + +:N545050 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545050" ; + skos:prefLabel "Erzbergbau"@de . + +:N545060 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545060" ; + skos:prefLabel "Salz- und Kalibergbau"@de ; + skos:scopeNote "Je nach Bedarf verschlagworten: Salzbergbau; Kalibergbau"@de . + +:N545070 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545070" ; + skos:prefLabel "Erdöl"@de . + +:N545080 + a skos:Concept ; + skos:broader :N545000 ; + skos:inScheme ; + skos:notation "545080" ; + skos:prefLabel "Erdgas"@de . + +:N546000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N546020, :N546040, :N546050, :N546060 ; + skos:notation "546000" ; + skos:prefLabel "Energiewirtschaft"@de . + +:N546020 + a skos:Concept ; + skos:broader :N546000 ; + skos:inScheme ; + skos:narrower :N546022, :N546024, :N546026, :N546028 ; + skos:notation "546020" ; + skos:prefLabel "Elektrizitätsversorgung"@de ; + skos:example "Energieeinsparung, Energieversorgungsunternehmen, Alternative Energiequellen"@de . + +:N546022 + a skos:Concept ; + skos:broader :N546020 ; + skos:inScheme ; + skos:notation "546022" ; + skos:prefLabel "Wasserkraftwerke"@de . + +:N546024 + a skos:Concept ; + skos:broader :N546020 ; + skos:inScheme ; + skos:notation "546024" ; + skos:prefLabel "Wärmekraftwerke"@de . + +:N546026 + a skos:Concept ; + skos:broader :N546020 ; + skos:inScheme ; + skos:notation "546026" ; + skos:prefLabel "Kernkraftwerke"@de . + +:N546028 + a skos:Concept ; + skos:broader :N546020 ; + skos:inScheme ; + skos:notation "546028" ; + skos:prefLabel "Sonstige Kraftwerke"@de . + +:N546040 + a skos:Concept ; + skos:broader :N546000 ; + skos:inScheme ; + skos:notation "546040" ; + skos:prefLabel "Gasversorgung"@de . + +:N546050 + a skos:Concept ; + skos:broader :N546000 ; + skos:inScheme ; + skos:notation "546050" ; + skos:prefLabel "Fernwärme"@de . + +:N546060 + a skos:Concept ; + skos:broader :N546000 ; + skos:inScheme ; + skos:notation "546060" ; + skos:prefLabel "Verbundwirtschaft"@de . + +:N547000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N547020, :N547030, :N547040, :N547050, :N547060 ; + skos:notation "547000" ; + skos:prefLabel "Handwerk"@de . + +:N547020 + a skos:Concept ; + skos:broader :N547000 ; + skos:inScheme ; + skos:notation "547020" ; + skos:prefLabel "Handwerksgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Handwerksaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N547030 + a skos:Concept ; + skos:broader :N547000 ; + skos:inScheme ; + skos:notation "547030" ; + skos:prefLabel "Einzelne Handwerke"@de ; + skos:scopeNote "Z.B. Bäckerhandwerk"@de . + +:N547040 + a skos:Concept ; + skos:broader :N547000 ; + skos:inScheme ; + skos:notation "547040" ; + skos:prefLabel "Handwerksgenossenschaften"@de ; + skos:example "Auch Zünfte"@de . + +:N547050 + a skos:Concept ; + skos:broader :N547000 ; + skos:inScheme ; + skos:notation "547050" ; + skos:prefLabel "Handwerkskammern"@de . + +:N547060 + a skos:Concept ; + skos:broader :N547000 ; + skos:inScheme ; + skos:notation "547060" ; + skos:prefLabel "Innungen"@de . + +:N547400 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N547420, :N547440, :N547460, :N547480 ; + skos:notation "547400" ; + skos:prefLabel "Industrie"@de . + +:N547420 + a skos:Concept ; + skos:broader :N547400 ; + skos:inScheme ; + skos:notation "547420" ; + skos:prefLabel "Industriegeschichte"@de ; + skos:scopeNote "Verwenden, wenn industrieller Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N547440 + a skos:Concept ; + skos:broader :N547400 ; + skos:inScheme ; + skos:notation "547440" ; + skos:prefLabel "Einzelne Industriezweige"@de ; + skos:scopeNote "Z.B. Stahlindustrie"@de . + +:N547460 + a skos:Concept ; + skos:broader :N547400 ; + skos:inScheme ; + skos:notation "547460" ; + skos:prefLabel "Industriebetriebe"@de ; + skos:scopeNote "Freie SW: Firmenname"@de . + +:N547480 + a skos:Concept ; + skos:broader :N547400 ; + skos:inScheme ; + skos:notation "547480" ; + skos:prefLabel "Produktionsgenossenschaften"@de . + +:N547600 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "547600" ; + skos:prefLabel "Technik"@de . + +:N548000 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N548010, :N548020, :N548030, :N548040, :N548050, :N548060, :N548090 ; + skos:notation "548000" ; + skos:prefLabel "Handel"@de . + +:N548010 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548010" ; + skos:prefLabel "Handelsrecht"@de . + +:N548020 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548020" ; + skos:prefLabel "Handelsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Handelsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N548030 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548030" ; + skos:prefLabel "Handelsformen"@de ; + skos:scopeNote "Freie SW: z.B. Großhandel, Einzelhandel"@de . + +:N548040 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:narrower :N548045 ; + skos:notation "548040" ; + skos:prefLabel "Messen. Ausstellungen"@de . + +:N548045 + a skos:Concept ; + skos:broader :N548040 ; + skos:inScheme ; + skos:notation "548045" ; + skos:prefLabel "Märkte"@de . + +:N548050 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548050" ; + skos:prefLabel "Handelsbetriebe"@de ; + skos:scopeNote "Freie SW: Firmenname"@de . + +:N548060 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548060" ; + skos:prefLabel "Handelsgüter"@de ; + skos:scopeNote "Z.B. Textilhandel"@de . + +:N548090 + a skos:Concept ; + skos:broader :N548000 ; + skos:inScheme ; + skos:notation "548090" ; + skos:prefLabel "Einkaufsgenossenschaften"@de . + +:N548200 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "548200" ; + skos:prefLabel "Dienstleistungssektor"@de . + +:N548300 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "548300" ; + skos:prefLabel "Öffentliche Unternehmen"@de . + +:N548400 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "548400" ; + skos:prefLabel "Banken"@de . + +:N548500 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "548500" ; + skos:prefLabel "Börsen"@de . + +:N548600 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:notation "548600" ; + skos:prefLabel "Versicherungen"@de . + +:N548800 + a skos:Concept ; + skos:broader :N540000 ; + skos:inScheme ; + skos:narrower :N548820, :N548840, :N548850, :N548870 ; + skos:notation "548800" ; + skos:prefLabel "Fremdenverkehr"@de ; + skos:altLabel "Tourismus, Touristik"@de ; + skos:definition "Überbegriff für Reisen, die Reisebranche und das Gastgewerbe und die Freizeitwirtschaft"@de ; + skos:exactMatch wd:Q49389, gnd:4018406-7 . + +:N548820 + a skos:Concept ; + skos:broader :N548800 ; + skos:inScheme ; + skos:notation "548820" ; + skos:prefLabel "Kurorte"@de . + +:N548840 + a skos:Concept ; + skos:broader :N548800 ; + skos:inScheme ; + skos:notation "548840" ; + skos:prefLabel "Naherholung"@de . + +:N548850 + a skos:Concept ; + skos:broader :N548800 ; + skos:inScheme ; + skos:notation "548850" ; + skos:prefLabel "Gastgewerbe"@de ; + skos:scopeNote "Freie SW: Hotel; Gaststätte"@de . + +:N548870 + a skos:Concept ; + skos:broader :N548800 ; + skos:inScheme ; + skos:notation "548870" ; + skos:prefLabel "Jugendherbergen"@de . + +:N550000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N550100, :N551000, :N552000, :N553000, :N554000, :N555000, :N556000, :N557000, :N558000 ; + skos:notation "550000" ; + skos:prefLabel "Verkehr"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N550100 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "550100" ; + skos:prefLabel "Verkehr - Allgemeines"@de ; + skos:example "Verkehrspolitik, Verkehrsplanung, Transportgewerbe, Transportverkehr"@de . + +:N551000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "551000" ; + skos:prefLabel "Verkehrsrecht"@de . + +:N552000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "552000" ; + skos:prefLabel "Verkehrsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Verkehrsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N553000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "553000" ; + skos:prefLabel "Straßenverkehr"@de ; + skos:example "Fahrradverkehr, Ruhender Verkehr, Straßengüterverkehr"@de . + +:N554000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "554000" ; + skos:prefLabel "Öffentlicher Personennahverkehr"@de ; + skos:scopeNote "Straßenbahn, U-Bahn, S-Bahn"@de . + +:N555000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:narrower :N555020 ; + skos:notation "555000" ; + skos:prefLabel "Eisenbahn"@de . + +:N555020 + a skos:Concept ; + skos:broader :N555000 ; + skos:inScheme ; + skos:notation "555020" ; + skos:prefLabel "Eisenbahngeschichte"@de ; + skos:scopeNote "Verwenden, wenn Eisenbahnaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N556000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:notation "556000" ; + skos:prefLabel "Luftverkehr"@de . + +:N557000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:narrower :N557020, :N557040, :N557060 ; + skos:notation "557000" ; + skos:prefLabel "Schiffahrt"@de ; + skos:scopeNote "Bei Flüssen, Kanälen u. Seen SW \"Binnenschiffahrt\" verwenden"@de . + +:N557020 + a skos:Concept ; + skos:broader :N557000 ; + skos:inScheme ; + skos:notation "557020" ; + skos:prefLabel "Schiffahrtsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Schiffahrtsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N557040 + a skos:Concept ; + skos:broader :N557000 ; + skos:inScheme ; + skos:notation "557040" ; + skos:prefLabel "Kanäle"@de . + +:N557060 + a skos:Concept ; + skos:broader :N557000 ; + skos:inScheme ; + skos:notation "557060" ; + skos:prefLabel "Häfen"@de . + +:N558000 + a skos:Concept ; + skos:broader :N550000 ; + skos:inScheme ; + skos:narrower :N558020, :N558050 ; + skos:notation "558000" ; + skos:prefLabel "Post- und Fernmeldewesen"@de . + +:N558020 + a skos:Concept ; + skos:broader :N558000 ; + skos:inScheme ; + skos:notation "558020" ; + skos:prefLabel "Postgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Postaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N558050 + a skos:Concept ; + skos:broader :N558000 ; + skos:inScheme ; + skos:notation "558050" ; + skos:prefLabel "Fernmeldewesen. Telekommunikation"@de ; + skos:scopeNote "Freie SW: Fernmeldewesen; Telekommunikation"@de . + +:N560000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N560100, :N562000, :N562300, :N564000, :N566000 ; + skos:notation "560000" ; + skos:prefLabel "Siedlung"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N560100 + a skos:Concept ; + skos:broader :N560000 ; + skos:inScheme ; + skos:notation "560100" ; + skos:prefLabel "Siedlung - Allgemeines"@de . + +:N562000 + a skos:Concept ; + skos:broader :N560000 ; + skos:inScheme ; + skos:narrower :N562040, :N562060 ; + skos:notation "562000" ; + skos:prefLabel "Siedlungsgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Siedlungsaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N562040 + a skos:Concept ; + skos:broader :N562000 ; + skos:inScheme ; + skos:notation "562040" ; + skos:prefLabel "Orts- und Flurwüstungen"@de ; + skos:scopeNote "Freie SW: Name der Wüstung"@de. + +:N562060 + a skos:Concept ; + skos:broader :N562000 ; + skos:inScheme ; + skos:notation "562060" ; + skos:prefLabel "Marken und Allmenden"@de . + +:N562300 + a skos:Concept ; + skos:broader :N560000 ; + skos:inScheme ; + skos:notation "562300" ; + skos:prefLabel "Kulturlandschaft"@de ; + skos:example "Straßen und Wege"@de ; + skos:scopeNote "S.a. [Landschaftsentwicklung](#N584090), [Landschaftsplanung](#N572050)"@de . + +:N564000 + a skos:Concept ; + skos:broader :N560000 ; + skos:inScheme ; + skos:narrower :N564040, :N564050, :N564080 ; + skos:notation "564000" ; + skos:prefLabel "Ländliche Siedlung"@de . + +:N564040 + a skos:Concept ; + skos:broader :N564000 ; + skos:inScheme ; + skos:notation "564040" ; + skos:prefLabel "Siedlungsformen"@de . + +:N564050 + a skos:Concept ; + skos:broader :N564000 ; + skos:inScheme ; + skos:narrower :N564051, :N564052 ; + skos:notation "564050" ; + skos:prefLabel "Dorftopographie"@de ; + skos:scopeNote "Bei freier SW-Vergabe: Ortsname; Topographie"@de . + +:N564051 + a skos:Concept ; + skos:broader :N564050 ; + skos:inScheme ; + skos:notation "564051" ; + skos:prefLabel "Dorfplätze"@de ; + skos:scopeNote "Bei freier SW-Vergabe: Ortsname; Platz; Für Städte s. [Plätze](#N566051)"@de . + +:N564052 + a skos:Concept ; + skos:broader :N564050 ; + skos:inScheme ; + skos:notation "564052" ; + skos:prefLabel "Dorfstraßen"@de ; + skos:scopeNote "Häuser; bei freier SW-Vergabe: Ortsname; Straße"@de . + +:N564080 + a skos:Concept ; + skos:broader :N564000 ; + skos:inScheme ; + skos:notation "564080" ; + skos:prefLabel "Dorferneuerung"@de . + +:N566000 + a skos:Concept ; + skos:broader :N560000 ; + skos:inScheme ; + skos:narrower :N566010, :N566020, :N566040, :N566050, :N566060, :N566070, :N566080 ; + skos:notation "566000" ; + skos:prefLabel "Städtische Siedlung"@de . + +:N566010 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:notation "566010" ; + skos:prefLabel "Stadttypen"@de . + +:N566020 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:notation "566020" ; + skos:prefLabel "Städtische Siedlungsformen"@de . + +:N566040 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:narrower :N566041, :N566042, :N566043, :N566044, :N566045, :N566046 ; + skos:notation "566040" ; + skos:prefLabel "Stadtstruktur"@de ; + skos:scopeNote "S.a. [Stadttopographie](#N566050)"@de . + +:N566041 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566041" ; + skos:prefLabel "Innenstadt"@de . + +:N566042 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566042" ; + skos:prefLabel "Vororte. Stadtteile"@de ; + skos:scopeNote "Vorort bzw. Stadtteil frei verschlagworten"@de . + +:N566043 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566043" ; + skos:prefLabel "Geschäftsviertel"@de ; + skos:scopeNote "S.a. [Gewerbegebiete](#N566044)"@de . + +:N566044 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566044" ; + skos:prefLabel "Gewerbegebiete"@de ; + skos:scopeNote "S.a. [Geschäftsviertel](#N566043)"@de . + +:N566045 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566045" ; + skos:prefLabel "Wohngebiete"@de . + +:N566046 + a skos:Concept ; + skos:broader :N566040 ; + skos:inScheme ; + skos:notation "566046" ; + skos:prefLabel "Erholungsgebiete"@de . + +:N566050 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:narrower :N566051, :N566052, :N566053 ; + skos:notation "566050" ; + skos:prefLabel "Stadttopographie"@de ; + skos:scopeNote "S.a. [Stadtstruktur](#N566040); Bei freier SW-Vergabe: Ortsname; Topographie, s.a. [Dorftopographie](#N564050)"@de . + +:N566051 + a skos:Concept ; + skos:broader :N566050 ; + skos:inScheme ; + skos:notation "566051" ; + skos:prefLabel "Plätze"@de ; + skos:scopeNote "Für Dörfer s. [Dorfplätze](#N564051)"@de . + +:N566052 + a skos:Concept ; + skos:broader :N566050 ; + skos:inScheme ; + skos:notation "566052" ; + skos:prefLabel "Straßen"@de . + +:N566053 + a skos:Concept ; + skos:broader :N566050 ; + skos:inScheme ; + skos:notation "566053" ; + skos:prefLabel "Gebäude"@de ; + skos:scopeNote "Öffentliches Gebäude ggf. verschlagworten, s.a. [Öffentliche Gebäude](#N843020)"@de . + +:N566060 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:notation "566060" ; + skos:prefLabel "Verstädterung"@de . + +:N566070 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:notation "566070" ; + skos:prefLabel "Ballungsräume"@de . + +:N566080 + a skos:Concept ; + skos:broader :N566000 ; + skos:inScheme ; + skos:notation "566080" ; + skos:prefLabel "Stadt-Umland-Beziehungen"@de . + +:N570000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N570100, :N572000, :N574000 ; + skos:notation "570000" ; + skos:prefLabel "Raumordnung und Städtebau"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N570100 + a skos:Concept ; + skos:broader :N570000 ; + skos:inScheme ; + skos:notation "570100" ; + skos:prefLabel "Raumordnung und Städtebau - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Raumordnung](#N572000), [Städtebau](#N574030)"@de . + +:N572000 + a skos:Concept ; + skos:broader :N570000 ; + skos:inScheme ; + skos:narrower :N572020, :N572030, :N572050, :N572060 ; + skos:notation "572000" ; + skos:prefLabel "Raumordnung"@de . + +:N572020 + a skos:Concept ; + skos:broader :N572000 ; + skos:inScheme ; + skos:notation "572020" ; + skos:prefLabel "Landesplanung"@de ; + skos:altLabel "Gebietsplanung, Landesentwicklungsplanung"@de ; + skos:exactMatch gnd:4034268-2 . + +:N572030 + a skos:Concept ; + skos:broader :N572000 ; + skos:inScheme ; + skos:notation "572030" ; + skos:prefLabel "Regionalplanung"@de . + +:N572050 + a skos:Concept ; + skos:broader :N572000 ; + skos:inScheme ; + skos:notation "572050" ; + skos:prefLabel "Landschaftsplanung"@de ; + skos:scopeNote "S.a. [Landschaftsentwicklung](#N584090), [Kulturlandschaft](#N562300)"@de . + +:N572060 + a skos:Concept ; + skos:broader :N572000 ; + skos:inScheme ; + skos:notation "572060" ; + skos:prefLabel "Kommunalplanung"@de ; + skos:scopeNote "Umfasst Gemeinden, Kreise und Gemeindeverbände"@de ; + skos:exactMatch gnd:4125606-2 . + +:N574000 + a skos:Concept ; + skos:broader :N570000 ; + skos:inScheme ; + skos:narrower :N574020, :N574030, :N574040, :N574050, :N574060 ; + skos:notation "574000" ; + skos:prefLabel "Bauwesen"@de . + +:N574020 + a skos:Concept ; + skos:broader :N574000 ; + skos:inScheme ; + skos:notation "574020" ; + skos:prefLabel "Bau- und Bodenrecht"@de ; + skos:scopeNote "Individuell mit Baurecht oder Bodenrecht verschlagworten"@de . + +:N574030 + a skos:Concept ; + skos:broader :N574000 ; + skos:inScheme ; + skos:notation "574030" ; + skos:prefLabel "Städtebau"@de ; + skos:scopeNote "Verwenden bei größerem Kontext (wenn es nicht nur um Platzgestaltungen in der Innenstadt geht); S.a. [Stadtbaukunst](#N844500)"@de . + +:N574040 + a skos:Concept ; + skos:broader :N574000 ; + skos:inScheme ; + skos:notation "574040" ; + skos:prefLabel "Straßenbau"@de . + +:N574050 + a skos:Concept ; + skos:broader :N574000 ; + skos:inScheme ; + skos:notation "574050" ; + skos:prefLabel "Wohnungsbau"@de . + +:N574060 + a skos:Concept ; + skos:broader :N574000 ; + skos:inScheme ; + skos:notation "574060" ; + skos:prefLabel "Wohnungswirtschaft"@de ; + skos:example "Stadtsanierung"@de . + +:N580000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N5 ; + skos:narrower :N580100, :N582000, :N584000, :N586000 ; + skos:notation "580000" ; + skos:prefLabel "Umwelt- und Naturschutz"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N580100 + a skos:Concept ; + skos:broader :N580000 ; + skos:inScheme ; + skos:notation "580100" ; + skos:prefLabel "Umwelt- und Naturschutz - Allgemeines"@de . + +:N582000 + a skos:Concept ; + skos:broader :N580000 ; + skos:inScheme ; + skos:narrower :N582020, :N582030, :N582040, :N582050, :N582060, :N582070 ; + skos:notation "582000" ; + skos:prefLabel "Umweltschutz"@de . + +:N582020 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:notation "582020" ; + skos:prefLabel "Bodenschutz"@de . + +:N582030 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:notation "582030" ; + skos:prefLabel "Luftverschmutzung"@de . + +:N582040 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:notation "582040" ; + skos:prefLabel "Lärmbelastung"@de . + +:N582050 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:narrower :N582052, :N582054 ; + skos:notation "582050" ; + skos:prefLabel "Gewässerschutz"@de . + +:N582052 + a skos:Concept ; + skos:broader :N582050 ; + skos:inScheme ; + skos:notation "582052" ; + skos:prefLabel "Abwasser"@de . + +:N582054 + a skos:Concept ; + skos:broader :N582050 ; + skos:inScheme ; + skos:notation "582054" ; + skos:prefLabel "Kanalisation"@de . + +:N582060 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:notation "582060" ; + skos:prefLabel "Abfallbeseitigung"@de . + +:N582070 + a skos:Concept ; + skos:broader :N582000 ; + skos:inScheme ; + skos:notation "582070" ; + skos:prefLabel "Strahlenbelastung"@de . + +:N584000 + a skos:Concept ; + skos:broader :N580000 ; + skos:inScheme ; + skos:narrower :N584020, :N584040, :N584050, :N584060, :N584070, :N584080, :N584090 ; + skos:notation "584000" ; + skos:prefLabel "Naturschutz. Landschaftspflege"@de ; + skos:scopeNote "S.a. [Pflanzenschutz](#N584050)"@de . + +:N584020 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584020" ; + skos:prefLabel "Naturgefährdung"@de . + +:N584040 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584040" ; + skos:prefLabel "Naturdenkmäler"@de . + +:N584050 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584050" ; + skos:prefLabel "Pflanzenschutz"@de . + +:N584060 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584060" ; + skos:prefLabel "Tierschutz"@de . + +:N584070 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584070" ; + skos:prefLabel "Naturschutzgebiete"@de ; + skos:scopeNote "Freie SW: Name des Naturschutzgebiets"@de . + +:N584080 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584080" ; + skos:prefLabel "Naturparke"@de ; + skos:scopeNote "Freie SW: Name des Naturparks; S.a. [Parks](#N586020), [Park- und Gartenanlagen](#N844060)"@de . + +:N584090 + a skos:Concept ; + skos:broader :N584000 ; + skos:inScheme ; + skos:notation "584090" ; + skos:prefLabel "Landschaftsentwicklung"@de ; + skos:scopeNote "S.a. [Landschaftsplanung](#N572050), [Kulturlandschaft](#N562300)"@de . + +:N586000 + a skos:Concept ; + skos:broader :N580000 ; + skos:inScheme ; + skos:narrower :N586020, :N586030, :N586040, :N586070, :N586080 ; + skos:notation "586000" ; + skos:prefLabel "Grünanlagen"@de ; + skos:scopeNote "Hier auch Golfplätze"@de . + +:N586020 + a skos:Concept ; + skos:broader :N586000 ; + skos:inScheme ; + skos:notation "586020" ; + skos:prefLabel "Parks"@de ; + skos:scopeNote "Für Gartenkunst s. [Park- und Gartenanlagen](#N844060); S.a. [Naturparke](#N584080)"@de . + +:N586030 + a skos:Concept ; + skos:broader :N586000 ; + skos:inScheme ; + skos:notation "586030" ; + skos:prefLabel "Botanische Gärten"@de . + +:N586040 + a skos:Concept ; + skos:broader :N586000 ; + skos:inScheme ; + skos:notation "586040" ; + skos:prefLabel "Zoologische Gärten"@de . + +:N586070 + a skos:Concept ; + skos:broader :N586000 ; + skos:inScheme ; + skos:notation "586070" ; + skos:prefLabel "Bundesgartenschau"@de . + +:N586080 + a skos:Concept ; + skos:broader :N586000 ; + skos:inScheme ; + skos:notation "586080" ; + skos:prefLabel "Landesgartenschau"@de . + +:N610000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N6 ; + skos:narrower :N610100, :N611000, :N612000, :N612500, :N613000, :N615000, :N616000, :N617000 ; + skos:notation "610000" ; + skos:prefLabel "Christliche Kirchen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N610100 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:notation "610100" ; + skos:prefLabel "Christliche Kirchen - Allgemeines"@de . + +:N611000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:narrower :N611010, :N611020, :N611030, :N611040, :N611050, :N611060, :N611070, :N611080, :N611090 ; + skos:notation "611000" ; + skos:prefLabel "Katholische Kirche"@de . + +:N611010 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611010" ; + skos:prefLabel "Kirchengeschichte"@de ; + skos:scopeNote "Freie SW: Katholische Kirche; Geschichte; Verwenden, wenn kirchlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N611020 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:narrower :N611025 ; + skos:notation "611020" ; + skos:prefLabel "Kirchenrecht"@de . + +:N611025 + a skos:Concept ; + skos:broader :N611020 ; + skos:inScheme ; + skos:notation "611025" ; + skos:prefLabel "Kirchenverwaltung"@de . + +:N611030 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611030" ; + skos:prefLabel "Kirchengemeinden"@de . + +:N611040 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:narrower :N611042, :N611043, :N611044, :N611045 ; + skos:notation "611040" ; + skos:prefLabel "Kirchliches Leben"@de . + +:N611042 + a skos:Concept ; + skos:broader :N611040 ; + skos:inScheme ; + skos:notation "611042" ; + skos:prefLabel "Seelsorge"@de ; + skos:scopeNote "S.a. [evangelische](#N613042)"@de . + +:N611043 + a skos:Concept ; + skos:broader :N611040 ; + skos:inScheme ; + skos:notation "611043" ; + skos:prefLabel "Kirchliche Laienarbeit"@de . + +:N611044 + a skos:Concept ; + skos:broader :N611040 ; + skos:inScheme ; + skos:notation "611044" ; + skos:prefLabel "Kirchliche Vereine und Verbände"@de ; + skos:scopeNote "Freie SW: Katholischer Verein; Katholischer Verband"@de . + +:N611045 + a skos:Concept ; + skos:broader :N611040 ; + skos:inScheme ; + skos:notation "611045" ; + skos:prefLabel "Kirchliche Stiftungen"@de . + +:N611050 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611050" ; + skos:prefLabel "Geistliche. Ordensleute"@de ; + skos:scopeNote "Freie SW: Geistlicher; Ordensleute"@de. + +:N611060 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611060" ; + skos:prefLabel "Klöster. Stifte"@de ; + skos:scopeNote "Kloster u. Stift individuell verschlagworten"@de . + +:N611070 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611070" ; + skos:prefLabel "Orden"@de . + +:N611080 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:narrower :N611082, :N611083, :N611084, :N611085 ; + skos:notation "611080" ; + skos:prefLabel "Kultus"@de ; + skos:altLabel "Kult, Kultpraxis"@de ; + skos:definition "Gesamtheit religiöser Handlungen"@de ; + skos:scopeNote "S.a. [evangelischer](#N613070); Freie SW: z.B. Gottesdienst"@de ; + skos:exactMatch wd:Q756820, gnd:4033535-5 . + +:N611082 + a skos:Concept ; + skos:broader :N611080 ; + skos:inScheme ; + skos:notation "611082" ; + skos:prefLabel "Sakramente"@de . + +:N611083 + a skos:Concept ; + skos:broader :N611080 ; + skos:inScheme ; + skos:notation "611083" ; + skos:prefLabel "Kirchenfeste"@de . + +:N611084 + a skos:Concept ; + skos:broader :N611080 ; + skos:inScheme ; + skos:notation "611084" ; + skos:prefLabel "Prozessionen"@de . + +:N611085 + a skos:Concept ; + skos:broader :N611080 ; + skos:inScheme ; + skos:notation "611085" ; + skos:prefLabel "Wallfahrten"@de . + +:N611090 + a skos:Concept ; + skos:broader :N611000 ; + skos:inScheme ; + skos:notation "611090" ; + skos:prefLabel "Heilige. Heiligenverehrung"@de ; + skos:scopeNote "S.a. [Volkstümliche Heiligenverehrung](#N704626)"@de . + +:N612000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:narrower :N612020, :N612030, :N612040, :N612050, :N612070, :N612080 ; + skos:notation "612000" ; + skos:prefLabel "Reformation"@de . + +:N612020 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:narrower :N612025 ; + skos:notation "612020" ; + skos:prefLabel "Calvinismus"@de ; + skos:definition "Theologische Bewegung des französischen Reformators aus Genf Johannes Calvin; Oberbegriff: Protestantismus"@de ; + skos:exactMatch wd:Q101849, gnd:4136802-2 . + +:N612025 + a skos:Concept ; + skos:broader :N612020 ; + skos:inScheme ; + skos:notation "612025" ; + skos:prefLabel "Zwinglianer"@de ; + skos:definition "Anhänger der Lehre von Ulrich Zwingli aus Zürich"@de ; + skos:exactMatch wd:Q244830 . + +:N612030 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:notation "612030" ; + skos:prefLabel "Täufer"@de ; + skos:altLabel "Anabaptismus, Anabaptisten, Wiedertäufer"@de ; + skos:definition "Anhänger der christlichen Täuferbewegung im 16. Jahrhundert"@de ; + skos:exactMatch wd:Q165580, gnd:4078126-4 . + +:N612040 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:notation "612040" ; + skos:prefLabel "Schwärmer"@de ; + skos:altLabel "Schwarmgeist, Schwärmertum, Schwärmer (Theologie), Spiritualismus (Theologie)"@de ; + skos:definition "Der schon seit der Mitte des 19. Jahrhunderts für Außenseiter der Reformation gebräuchliche Begriff Spiritualist löste zeitgenössische abwertende Begriffe wie „Schwärmer“ oder „Schwarmgeister“ (häufig bei Martin Luther) ab"@de ; + skos:exactMatch wd:Q100275927, gnd:4180308-5 . + +:N612050 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:notation "612050" ; + skos:prefLabel "Reformatoren"@de ; + skos:definition "Personen der Kirchengeschichte, die bei der Gründung und Ausformung der evangelischen Kirchen während der Reformation mitwirkten"@de ; + skos:exactMatch wd:Q763779, gnd:4177347-0 . + +:N612070 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:notation "612070" ; + skos:prefLabel "Glaubensflüchtlinge"@de ; + skos:altLabel "Religiöser Flüchtling"@de ; + skos:scopeNote "Z.B. Salzburger Exulanten"@de ; + skos:exactMatch gnd:4413224-4 . + +:N612080 + a skos:Concept ; + skos:broader :N612000 ; + skos:inScheme ; + skos:notation "612080" ; + skos:prefLabel "Hugenotten"@de ; + skos:definition "Synonym für Protestanten: heute meist Bezeichnung für franz. Protestanten, die 1559 auf ihrer ersten Nationalsynode in Paris ihr Bekenntnis (Confessio Gallicana) formulierten"@de ; + skos:exactMatch wd:Q101935, gnd:4026112-8 . + +:N612500 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:notation "612500" ; + skos:prefLabel "Gegenreformation"@de ; + skos:definition "Im evangel. Bereich bevorzugte Terminologie; sachlich weitgehend deckungsgleich mit Katholische Erneuerung; Rekatholisierung vor Beginn der Aufklärung"@de ; + skos:exactMatch wd:Q128168, gnd:4019710-4 . + +:N613000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:narrower :N613010, :N613020, :N613030, :N613040, :N613050, :N613070, :N613090 ; + skos:notation "613000" ; + skos:prefLabel "Evangelische Kirche"@de . + +:N613010 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:notation "613010" ; + skos:prefLabel "Kirchengeschichte"@de ; + skos:scopeNote "Freie SW: Evangelische Kirche; Geschichte; Verwenden, wenn kirchlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N613020 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:narrower :N613025 ; + skos:notation "613020" ; + skos:prefLabel "Kirchenrecht"@de . + +:N613025 + a skos:Concept ; + skos:broader :N613020 ; + skos:inScheme ; + skos:notation "613025" ; + skos:prefLabel "Kirchenverwaltung"@de ; + skos:scopeNote "Freie SW: Evangelische Gemeinde; Ort"@de . + +:N613030 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:notation "613030" ; + skos:prefLabel "Kirchengemeinden"@de . + +:N613040 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:narrower :N613042, :N613043, :N613044, :N613045 ; + skos:notation "613040" ; + skos:prefLabel "Kirchliches Leben"@de . + +:N613042 + a skos:Concept ; + skos:broader :N613040 ; + skos:inScheme ; + skos:notation "613042" ; + skos:prefLabel "Seelsorge"@de ; + skos:scopeNote "S.a. [katholische](#N611042)"@de . + +:N613043 + a skos:Concept ; + skos:broader :N613040 ; + skos:inScheme ; + skos:notation "613043" ; + skos:prefLabel "Diakonie"@de ; + skos:altLabel "Evangelische Sozialarbeit"@de ; + skos:exactMatch wd:Q1208280, gnd:4012046-6 . + +:N613044 + a skos:Concept ; + skos:broader :N613040 ; + skos:inScheme ; + skos:notation "613044" ; + skos:prefLabel "Kirchliche Vereine und Verbände"@de . + +:N613045 + a skos:Concept ; + skos:broader :N613040 ; + skos:inScheme ; + skos:notation "613045" ; + skos:prefLabel "Kirchliche Stiftungen"@de . + +:N613050 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:notation "613050" ; + skos:prefLabel "Pfarrer. Geistliche"@de ; + skos:scopeNote "Freie SW: Pfarrer; Geistlicher"@de . + +:N613070 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:narrower :N613072, :N613073 ; + skos:notation "613070" ; + skos:prefLabel "Kultus"@de ; + skos:altLabel "Kult, Kultpraxis"@de ; + skos:definition "Gesamtheit religiöser Handlungen"@de ; + skos:scopeNote "S.a. [katholischer](#N611080); Freie SW: z.B. Gottesdienst"@de ; + skos:exactMatch wd:Q756820, gnd:4033535-5 . + +:N613072 + a skos:Concept ; + skos:broader :N613070 ; + skos:inScheme ; + skos:notation "613072" ; + skos:prefLabel "Sakramente"@de . + +:N613073 + a skos:Concept ; + skos:broader :N613070 ; + skos:inScheme ; + skos:notation "613073" ; + skos:prefLabel "Kirchenfeste"@de . + +:N613090 + a skos:Concept ; + skos:broader :N613000 ; + skos:inScheme ; + skos:notation "613090" ; + skos:prefLabel "Freikirchen"@de . + +:N615000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:narrower :N615020, :N615040, :N615070 ; + skos:notation "615000" ; + skos:prefLabel "Sonstige christliche Kirchen. Sekten"@de . + +:N615020 + a skos:Concept ; + skos:broader :N615000 ; + skos:inScheme ; + skos:notation "615020" ; + skos:prefLabel "Orthodoxe Kirche"@de . + +:N615040 + a skos:Concept ; + skos:broader :N615000 ; + skos:inScheme ; + skos:notation "615040" ; + skos:prefLabel "Altkatholische Kirche"@de ; + skos:definition "Bezeichnet die Gemeinschaft selbständiger katholischer Kirchen, die teilweise in der Utrechter Union zusammengeschlossen sind; 1870 entstanden"@de ; + skos:exactMatch wd:Q5169816, gnd:4001531-2 . + +:N615070 + a skos:Concept ; + skos:broader :N615000 ; + skos:inScheme ; + skos:notation "615070" ; + skos:prefLabel "Sekten"@de . + +:N616000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:notation "616000" ; + skos:prefLabel "Ökumene"@de ; + skos:exactMatch gnd:4138445-3 . + +:N617000 + a skos:Concept ; + skos:broader :N610000 ; + skos:inScheme ; + skos:narrower :N617030, :N617050 ; + skos:notation "617000" ; + skos:prefLabel "Bestattungswesen"@de ; + skos:scopeNote "S.a. [Tod. Bestattung](#N704064)"@de . + +:N617030 + a skos:Concept ; + skos:broader :N617000 ; + skos:inScheme ; + skos:notation "617030" ; + skos:prefLabel "Friedhöfe"@de . + +:N617050 + a skos:Concept ; + skos:broader :N617000 ; + skos:inScheme ; + skos:notation "617050" ; + skos:prefLabel "Grabmale"@de . + +:N630000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N6 ; + skos:narrower :N630100, :N631000, :N632000, :N635000, :N636000, :N637000, :N638000 ; + skos:notation "630000" ; + skos:prefLabel "Judentum"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N630100 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "630100" ; + skos:prefLabel "Judentum - Allgemeines"@de . + +:N631000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "631000" ; + skos:prefLabel "Jüdische Religion"@de ; + skos:scopeNote "An dieser Stelle: Synagogen; jüdische Friedhöfe etc."@de . + +:N632000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:narrower :N632050 ; + skos:notation "632000" ; + skos:prefLabel "Geschichte der Juden"@de . + +:N632050 + a skos:Concept ; + skos:broader :N632000 ; + skos:inScheme ; + skos:notation "632050" ; + skos:prefLabel "Judenverfolgung"@de . + +:N635000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "635000" ; + skos:prefLabel "Jüdische Volkskunde"@de ; + skos:scopeNote "S.a. [Jüdisches Kulturleben](#N636000)"@de . + +:N636000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "636000" ; + skos:prefLabel "Jüdisches Kulturleben"@de ; + skos:scopeNote "S.a. [Jüdische Volkskunde](#N635000)"@de . + +:N637000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "637000" ; + skos:prefLabel "Sprache und Literatur der Juden"@de ; + skos:scopeNote "Ggf. Jiddisch"@de . + +:N638000 + a skos:Concept ; + skos:broader :N630000 ; + skos:inScheme ; + skos:notation "638000" ; + skos:prefLabel "Jüdisches Bildungswesen"@de . + +:N650000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N6 ; + skos:narrower :N650100, :N651000, :N655000 ; + skos:notation "650000" ; + skos:prefLabel "Nichtchristliche Religionen. Weltanschauungen"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N650100 + a skos:Concept ; + skos:broader :N650000 ; + skos:inScheme ; + skos:notation "650100" ; + skos:prefLabel "Nichtchristliche Religionen. Weltanschauungen - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Nichtchristliche Religionen](#N651000), [Weltanschauungen](#N655000)"@de . + +:N651000 + a skos:Concept ; + skos:broader :N650000 ; + skos:inScheme ; + skos:narrower :N651020, :N651030 ; + skos:notation "651000" ; + skos:prefLabel "Nichtchristliche Religionen"@de . + +:N651020 + a skos:Concept ; + skos:broader :N651000 ; + skos:inScheme ; + skos:notation "651020" ; + skos:prefLabel "Islam"@de . + +:N651030 + a skos:Concept ; + skos:broader :N651000 ; + skos:inScheme ; + skos:notation "651030" ; + skos:prefLabel "Buddhismus"@de . + +:N655000 + a skos:Concept ; + skos:broader :N650000 ; + skos:inScheme ; + skos:narrower :N655030 ; + skos:notation "655000" ; + skos:prefLabel "Weltanschauungen"@de . + +:N655030 + a skos:Concept ; + skos:broader :N655000 ; + skos:inScheme ; + skos:notation "655030" ; + skos:prefLabel "Freimaurer"@de . + +:N700000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N700100, :N702000, :N704000, :N704200, :N704400, :N704600, :N706000, :N706200, :N708000, :N708200, :N708400 ; + skos:notation "700000" ; + skos:prefLabel "Volkskunde"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N700100 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:notation "700100" ; + skos:prefLabel "Volkskunde - Allgemeines"@de . + +:N702000 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:notation "702000" ; + skos:prefLabel "Alltag"@de . + +:N704000 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N704020, :N704040, :N704060, :N704070, :N704080, :N704090 ; + skos:notation "704000" ; + skos:prefLabel "Brauchtum"@de . + +:N704020 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:notation "704020" ; + skos:prefLabel "Brauchtum im Alltag"@de ; + skos:example "Sitten"@de . + +:N704040 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:narrower :N704042, :N704043, :N704044, :N704045, :N704046, :N704047 ; + skos:notation "704040" ; + skos:prefLabel "Brauchtum im Jahreslauf"@de . + +:N704042 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704042" ; + skos:prefLabel "Winter. Weihnachten. Neujahr"@de ; + skos:scopeNote "Freie SW: Winter; Brauchtum"@de . + +:N704043 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704043" ; + skos:prefLabel "Fastnacht. Karneval"@de . + +:N704044 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704044" ; + skos:prefLabel "Frühling. Ostern"@de ; + skos:scopeNote "Freie SW: Ernte; Brauchtum"@de . + +:N704045 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704045" ; + skos:prefLabel "Mai. Pfingsten. Sommer"@de . + +:N704046 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704046" ; + skos:prefLabel "Herbst. Erntebräuche"@de . + +:N704047 + a skos:Concept ; + skos:broader :N704040 ; + skos:inScheme ; + skos:notation "704047" ; + skos:prefLabel "Kirchweih"@de . + +:N704060 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:narrower :N704063, :N704064 ; + skos:notation "704060" ; + skos:prefLabel "Brauchtum im Lebenslauf"@de . + +:N704063 + a skos:Concept ; + skos:broader :N704060 ; + skos:inScheme ; + skos:notation "704063" ; + skos:prefLabel "Liebe. Verlobung. Hochzeit"@de ; + skos:scopeNote "Freie SW: Hochzeit; Brauchtum"@de . + +:N704064 + a skos:Concept ; + skos:broader :N704060 ; + skos:inScheme ; + skos:notation "704064" ; + skos:prefLabel "Tod. Bestattung"@de ; + skos:scopeNote "Freie SW: Tod; Brauchtum; s.a. [Bestattungswesen](#N617000)"@de . + +:N704070 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:notation "704070" ; + skos:prefLabel "Schützenwesen"@de . + +:N704080 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:narrower :N704082 ; + skos:notation "704080" ; + skos:prefLabel "Brauchtum der Berufe"@de . + +:N704082 + a skos:Concept ; + skos:broader :N704080 ; + skos:inScheme ; + skos:notation "704082" ; + skos:prefLabel "Handwerksbräuche"@de . + +:N704090 + a skos:Concept ; + skos:broader :N704000 ; + skos:inScheme ; + skos:notation "704090" ; + skos:prefLabel "Vereine der Brauchtumspflege"@de ; + skos:scopeNote "Z.B. Karnevalsverein; S.a. [Schützenwesen](#N704070)"@de . + +:N704200 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N704220, :N704250, :N704260, :N704270, :N704280 ; + skos:notation "704200" ; + skos:prefLabel "Volkswissen. Volksglaube"@de ; + skos:scopeNote "Hier auch Aberglaube"@de . + +:N704220 + a skos:Concept ; + skos:broader :N704200 ; + skos:inScheme ; + skos:notation "704220" ; + skos:prefLabel "Volksmedizin"@de . + +:N704250 + a skos:Concept ; + skos:broader :N704200 ; + skos:inScheme ; + skos:notation "704250" ; + skos:prefLabel "Wetter"@de . + +:N704260 + a skos:Concept ; + skos:broader :N704200 ; + skos:inScheme ; + skos:notation "704260" ; + skos:prefLabel "Astrologie"@de . + +:N704270 + a skos:Concept ; + skos:broader :N704200 ; + skos:inScheme ; + skos:notation "704270" ; + skos:prefLabel "Wahrsagen"@de . + +:N704280 + a skos:Concept ; + skos:broader :N704200 ; + skos:inScheme ; + skos:notation "704280" ; + skos:prefLabel "Alchemie"@de . + +:N704400 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:notation "704400" ; + skos:prefLabel "Rechtliche Volkskunde"@de . + +:N704600 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N704620 ; + skos:notation "704600" ; + skos:prefLabel "Religiöse Volkskunde"@de . + +:N704620 + a skos:Concept ; + skos:broader :N704600 ; + skos:inScheme ; + skos:narrower :N704624, :N704626 ; + skos:notation "704620" ; + skos:prefLabel "Volksfrömmigkeit"@de . + +:N704624 + a skos:Concept ; + skos:broader :N704620 ; + skos:inScheme ; + skos:notation "704624" ; + skos:prefLabel "Gegenstände der Frömmigkeit"@de . + +:N704626 + a skos:Concept ; + skos:broader :N704620 ; + skos:inScheme ; + skos:notation "704626" ; + skos:prefLabel "Volkstümliche Heiligenverehrung"@de ; + skos:scopeNote "S.a. [Heilige. Heiligenverehrung](#N611090)"@de . + +:N706000 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N706020, :N706030, :N706040, :N706050, :N706060, :N706070, :N706080, :N706090 ; + skos:notation "706000" ; + skos:prefLabel "Volksliteratur"@de . + +:N706020 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706020" ; + skos:prefLabel "Volksbücher"@de . + +:N706030 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706030" ; + skos:prefLabel "Volkserzählungen"@de . + +:N706040 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:narrower :N706041, :N706042, :N706043 ; + skos:notation "706040" ; + skos:prefLabel "Märchen. Sagen. Legenden"@de ; + skos:scopeNote "S.a. einzelne Notationen [Märchen](#N706041), [Sagen](#N706042), [Legenden](#N706043)"@de . + +:N706041 + a skos:Concept ; + skos:broader :N706040 ; + skos:inScheme ; + skos:notation "706041" ; + skos:prefLabel "Märchen"@de . + +:N706042 + a skos:Concept ; + skos:broader :N706040 ; + skos:inScheme ; + skos:notation "706042" ; + skos:prefLabel "Sagen"@de . + +:N706043 + a skos:Concept ; + skos:broader :N706040 ; + skos:inScheme ; + skos:notation "706043" ; + skos:prefLabel "Legenden"@de . + +:N706050 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:narrower :N706052 ; + skos:notation "706050" ; + skos:prefLabel "Schwänke"@de ; + skos:altLabel "Schwankdichtung"@de ; + skos:definition "volksnahe Erzählung, lustiger Einfall"@de ; + skos:exactMatch wd:Q11871, gnd:4053736-5 . + +:N706052 + a skos:Concept ; + skos:broader :N706050 ; + skos:inScheme ; + skos:notation "706052" ; + skos:prefLabel "Witz"@de ; + skos:definition "Literaturgattung, die das Gegenüber belustigen soll"@de ; + skos:exactMatch wd:Q131138, gnd:4066680-3 . + +:N706060 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706060" ; + skos:prefLabel "Sprichwörter"@de . + +:N706070 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706070" ; + skos:prefLabel "Inschriften"@de . + +:N706080 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706080" ; + skos:prefLabel "Rätsel"@de . + +:N706090 + a skos:Concept ; + skos:broader :N706000 ; + skos:inScheme ; + skos:notation "706090" ; + skos:prefLabel "Mundartliteratur"@de ; + skos:scopeNote "S.a. [Mundarten](#N744000)"@de . + +:N706200 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N706210, :N706220, :N706230, :N706240 ; + skos:notation "706200" ; + skos:prefLabel "Volksmusik und Volkstanz"@de ; + skos:scopeNote "S.a. einzelne Notationen [Volksmusik](#N706210), [Volkstanz](#N706240)"@de . + +:N706210 + a skos:Concept ; + skos:broader :N706200 ; + skos:inScheme ; + skos:notation "706210" ; + skos:prefLabel "Volksmusik"@de . + +:N706220 + a skos:Concept ; + skos:broader :N706200 ; + skos:inScheme ; + skos:notation "706220" ; + skos:prefLabel "Musikinstrumente"@de ; + skos:scopeNote "Im Bereich Musik s. [Musikinstrumente](#N828000)"@de . + +:N706230 + a skos:Concept ; + skos:broader :N706200 ; + skos:inScheme ; + skos:notation "706230" ; + skos:prefLabel "Volkslied"@de . + +:N706240 + a skos:Concept ; + skos:broader :N706200 ; + skos:inScheme ; + skos:notation "706240" ; + skos:prefLabel "Volkstanz"@de . + +:N708000 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N708020, :N708030, :N708040, :N708050, :N708060 ; + skos:notation "708000" ; + skos:prefLabel "Sachkulturforschung"@de ; + skos:exactMatch gnd:4178835-7 . + +:N708020 + a skos:Concept ; + skos:broader :N708000 ; + skos:inScheme ; + skos:narrower :N708024, :N708028, :N708029 ; + skos:notation "708020" ; + skos:prefLabel "Hausformen"@de . + +:N708024 + a skos:Concept ; + skos:broader :N708020 ; + skos:inScheme ; + skos:notation "708024" ; + skos:prefLabel "Bürgerhäuser"@de ; + skos:scopeNote "S.a. [Wohnhäuser](#N843060)"@de . + +:N708028 + a skos:Concept ; + skos:broader :N708020 ; + skos:inScheme ; + skos:notation "708028" ; + skos:prefLabel "Bauernhäuser"@de ; + skos:scopeNote "Volkskundlicher Aspekt; Für Architektur s.a. [Bauernhäuser](#N843050), [Hofgeschichte](#N544030)"@de . + +:N708029 + a skos:Concept ; + skos:broader :N708020 ; + skos:inScheme ; + skos:notation "708029" ; + skos:prefLabel "Sonstige Landwirtschaftliche Gebäude. Mühlen"@de ; + skos:scopeNote "Freie SW: Wirtschaftsgebäude; Mühle"@de . + +:N708030 + a skos:Concept ; + skos:broader :N708000 ; + skos:inScheme ; + skos:notation "708030" ; + skos:prefLabel "Hausrat"@de ; + skos:scopeNote "Im Bereich Kunsthandwerk s. [Hausrat](#N849060)"@de . + +:N708040 + a skos:Concept ; + skos:broader :N708000 ; + skos:inScheme ; + skos:notation "708040" ; + skos:prefLabel "Geräte"@de . + +:N708050 + a skos:Concept ; + skos:broader :N708000 ; + skos:inScheme ; + skos:notation "708050" ; + skos:prefLabel "Spielzeug. Spiele"@de ; + skos:scopeNote "Freie SW: Spielzeug; Spiel"@de. + +:N708060 + a skos:Concept ; + skos:broader :N708000 ; + skos:inScheme ; + skos:notation "708060" ; + skos:prefLabel "Nahrung"@de ; + skos:scopeNote "Hier auch Kochbücher"@de . + +:N708200 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N708220, :N708230, :N708250, :N708260, :N708270, :N708280, :N708290 ; + skos:notation "708200" ; + skos:prefLabel "Volkskunst"@de ; + skos:definition "Kunst, die von indigenen Völker, Bauern und anderen Gruppen produziert wird"@de ; + skos:exactMatch wd:Q1153484, gnd:4063851-0 . + +:N708220 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708220" ; + skos:prefLabel "Holzbearbeitung"@de . + +:N708230 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708230" ; + skos:prefLabel "Bilder. Malerei"@de . + +:N708250 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708250" ; + skos:prefLabel "Keramik"@de ; + skos:scopeNote "Im Bereich Kunsthandwerk s. [Keramik](#N849040)"@de . + +:N708260 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708260" ; + skos:prefLabel "Steinbearbeitung"@de . + +:N708270 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708270" ; + skos:prefLabel "Metallbearbeitung"@de . + +:N708280 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708280" ; + skos:prefLabel "Glas"@de ; + skos:scopeNote "Im Bereich Kunsthandwerk s. [Glas](#N849056)"@de . + +:N708290 + a skos:Concept ; + skos:broader :N708200 ; + skos:inScheme ; + skos:notation "708290" ; + skos:prefLabel "Textilien"@de ; + skos:scopeNote "Im Bereich Kunsthandwerk s. [Textilkunst. Mode](#N849082)"@de . + +:N708400 + a skos:Concept ; + skos:broader :N700000 ; + skos:inScheme ; + skos:narrower :N708410, :N708430, :N708450 ; + skos:notation "708400" ; + skos:prefLabel "Kleidung. Schmuck"@de ; + skos:scopeNote "S.a. einzelne Notationen [Kleidung](#N708410), [Schmuck](#N708450)"@de . + +:N708410 + a skos:Concept ; + skos:broader :N708400 ; + skos:inScheme ; + skos:notation "708410" ; + skos:prefLabel "Kleidung"@de . + +:N708430 + a skos:Concept ; + skos:broader :N708400 ; + skos:inScheme ; + skos:notation "708430" ; + skos:prefLabel "Tracht"@de . + +:N708450 + a skos:Concept ; + skos:broader :N708400 ; + skos:inScheme ; + skos:notation "708450" ; + skos:prefLabel "Schmuck"@de ; + skos:scopeNote "Im Bereich Kunsthandwerk s. [Gold- und Silberschmiedekunst. Schmuck](#N849020)"@de . + +:N720000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N720100, :N722000, :N723000, :N724000, :N725000, :N726000, :N729000 ; + skos:notation "720000" ; + skos:prefLabel "Gesellschaft"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N720100 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:notation "720100" ; + skos:prefLabel "Gesellschaft - Allgemeines"@de . + +:N722000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:notation "722000" ; + skos:prefLabel "Sozialgeschichte"@de ; + skos:scopeNote "Verwenden, wenn sozialer Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N723000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:notation "723000" ; + skos:prefLabel "Soziales System"@de . + +:N724000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:narrower :N724020, :N724030, :N724040, :N724050, :N724060, :N724070 ; + skos:notation "724000" ; + skos:prefLabel "Sozialstruktur"@de ; + skos:scopeNote "Schichten, soziale Netze; s.a. [Bevölkerungsstruktur](#N503000)"@de . + +:N724020 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724020" ; + skos:prefLabel "Kinder"@de . + +:N724030 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724030" ; + skos:prefLabel "Jugend"@de . + +:N724040 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724040" ; + skos:prefLabel "Frauen"@de . + +:N724050 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724050" ; + skos:prefLabel "Männer"@de . + +:N724060 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724060" ; + skos:prefLabel "Alter"@de . + +:N724070 + a skos:Concept ; + skos:broader :N724000 ; + skos:inScheme ; + skos:notation "724070" ; + skos:prefLabel "Originale"@de ; + skos:scopeNote "Bezieht sich auf Personen"@de . + +:N725000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:narrower :N725010, :N725020, :N725030, :N725040, :N725050, :N725060, :N725070, :N725080 ; + skos:notation "725000" ; + skos:prefLabel "Soziale Gruppen"@de . + +:N725010 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725010" ; + skos:prefLabel "Familie"@de ; + skos:scopeNote "Hier auch familienähnliche Lebensgemeinschaften"@de . + +:N725020 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725020" ; + skos:prefLabel "Nachbarschaft"@de . + +:N725030 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725030" ; + skos:prefLabel "Dorfgemeinschaft"@de . + +:N725040 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725040" ; + skos:prefLabel "Alternative Lebensformen"@de ; + skos:scopeNote "Hier auch Lebensgemeinschaften; jedoch familienähnliche Lebensgemeinschaften bei [Familie](#N725010)"@de . + +:N725050 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725050" ; + skos:prefLabel "Vereine. Interessenverbände"@de ; + skos:scopeNote "Zur Geselligkeitspflege, soziale Interessen, Freizeitvereine; Im Unterschied zu [Interessenverbände](#N406230); Freie SW: Verein; Interessenverband; S.a. [Sportvereine](#N736050), [Schützenwesen](#N704070)"@de . + +:N725060 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725060" ; + skos:prefLabel "Minderheiten. Randgruppen"@de ; + skos:scopeNote "Minderheit bzw. Randgruppe frei verschlagworten"@de . + +:N725070 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725070" ; + skos:prefLabel "Ausländer"@de ; + skos:scopeNote "Hier auch Lit. zu Asylbewerbern bzw. -berechtigten"@de . + +:N725080 + a skos:Concept ; + skos:broader :N725000 ; + skos:inScheme ; + skos:notation "725080" ; + skos:prefLabel "Behinderte"@de . + +:N726000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:notation "726000" ; + skos:prefLabel "Sozialer Wandel"@de . + +:N729000 + a skos:Concept ; + skos:broader :N720000 ; + skos:inScheme ; + skos:notation "729000" ; + skos:prefLabel "Sexualität"@de . + +:N730000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N730100, :N731000, :N732000, :N733000, :N734000, :N735000, :N736000 ; + skos:notation "730000" ; + skos:prefLabel "Kultur und Freizeit"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N730100 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:notation "730100" ; + skos:prefLabel "Kultur und Freizeit - Allgemeines"@de . + +:N731000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:notation "731000" ; + skos:prefLabel "Kulturpolitik"@de . + +:N732000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:notation "732000" ; + skos:prefLabel "Kulturgeschichte"@de ; + skos:scopeNote "Verwenden, wenn kultureller Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N733000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:narrower :N733030, :N733050 ; + skos:notation "733000" ; + skos:prefLabel "Zeitgenössisches Kulturleben"@de ; + skos:example "Kulturförderung, Vereine"@de . + +:N733030 + a skos:Concept ; + skos:broader :N733000 ; + skos:inScheme ; + skos:notation "733030" ; + skos:prefLabel "Kulturveranstaltungen"@de . + +:N733050 + a skos:Concept ; + skos:broader :N733000 ; + skos:inScheme ; + skos:notation "733050" ; + skos:prefLabel "Kulturpreise"@de . + +:N734000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:notation "734000" ; + skos:prefLabel "Feiern und Feste"@de ; + skos:scopeNote "Freie SW: z.B. Volksfest"@de . + +:N735000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:narrower :N735020, :N735040, :N735090 ; + skos:notation "735000" ; + skos:prefLabel "Freizeit und Erholung"@de . + +:N735020 + a skos:Concept ; + skos:broader :N735000 ; + skos:inScheme ; + skos:notation "735020" ; + skos:prefLabel "Freizeiteinrichtungen"@de . + +:N735040 + a skos:Concept ; + skos:broader :N735000 ; + skos:inScheme ; + skos:notation "735040" ; + skos:prefLabel "Freizeitgestaltung"@de . + +:N735090 + a skos:Concept ; + skos:broader :N735000 ; + skos:inScheme ; + skos:notation "735090" ; + skos:prefLabel "Freizeitvereine"@de . + +:N736000 + a skos:Concept ; + skos:broader :N730000 ; + skos:inScheme ; + skos:narrower :N736030, :N736050 ; + skos:notation "736000" ; + skos:prefLabel "Sport und Spiel"@de . + +:N736030 + a skos:Concept ; + skos:broader :N736000 ; + skos:inScheme ; + skos:notation "736030" ; + skos:prefLabel "Einzelne Sportarten"@de ; + skos:scopeNote "Hier auch Golfplätze"@de . + +:N736050 + a skos:Concept ; + skos:broader :N736000 ; + skos:inScheme ; + skos:notation "736050" ; + skos:prefLabel "Sportvereine"@de . + +:N740000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N740100, :N742000, :N744000, :N745000, :N746000, :N747000 ; + skos:notation "740000" ; + skos:prefLabel "Sprache"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N740100 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:notation "740100" ; + skos:prefLabel "Sprache - Allgemeines"@de . + +:N742000 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:notation "742000" ; + skos:prefLabel "Sprachgeschichte"@de ; + skos:scopeNote "Verwenden, wenn sprachlicher Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N744000 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:notation "744000" ; + skos:prefLabel "Mundarten"@de ; + skos:altLabel "Dialekte"@de ; + skos:definition "Lokale oder regionale Sprachvarietät"@de ; + skos:scopeNote "Mundartliche Texte (Primärliteratur) s.a. [Mundartliteratur](#N706090)"@de ; + skos:exactMatch wd:Q33384, gnd:4040725-1 . + +:N745000 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:notation "745000" ; + skos:prefLabel "Sprachgeographie"@de ; + skos:definition "Verortung von Sprache"@de ; + skos:exactMatch gnd:4056463-0 . + +:N746000 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:narrower :N746020, :N746030, :N746040, :N746050, :N746060 ; + skos:notation "746000" ; + skos:prefLabel "Namenkunde"@de . + +:N746020 + a skos:Concept ; + skos:broader :N746000 ; + skos:inScheme ; + skos:notation "746020" ; + skos:prefLabel "Personennamen"@de . + +:N746030 + a skos:Concept ; + skos:broader :N746000 ; + skos:inScheme ; + skos:narrower :N746032, :N746034 ; + skos:notation "746030" ; + skos:prefLabel "Hausnamen. Hofnamen"@de ; + skos:scopeNote "S.a. einzelne Notationen [Hausnamen](#N746032), [Hofnamen](#N746034)"@de . + +:N746032 + a skos:Concept ; + skos:broader :N746030 ; + skos:inScheme ; + skos:notation "746032" ; + skos:prefLabel "Hausnamen"@de . + +:N746034 + a skos:Concept ; + skos:broader :N746030 ; + skos:inScheme ; + skos:notation "746034" ; + skos:prefLabel "Hofnamen"@de . + +:N746040 + a skos:Concept ; + skos:broader :N746000 ; + skos:inScheme ; + skos:narrower :N746042, :N746043, :N746044, :N746045, :N746046 ; + skos:notation "746040" ; + skos:prefLabel "Geographische Namen"@de ; + skos:scopeNote "S.a. untergeordnete Notationen"@de . + +:N746042 + a skos:Concept ; + skos:broader :N746040 ; + skos:inScheme ; + skos:notation "746042" ; + skos:prefLabel "Ortsnamen"@de . + +:N746043 + a skos:Concept ; + skos:broader :N746040 ; + skos:inScheme ; + skos:notation "746043" ; + skos:prefLabel "Straßennamen"@de . + +:N746044 + a skos:Concept ; + skos:broader :N746040 ; + skos:inScheme ; + skos:notation "746044" ; + skos:prefLabel "Flurnamen"@de . + +:N746045 + a skos:Concept ; + skos:broader :N746040 ; + skos:inScheme ; + skos:notation "746045" ; + skos:prefLabel "Bergnamen"@de . + +:N746046 + a skos:Concept ; + skos:broader :N746040 ; + skos:inScheme ; + skos:notation "746046" ; + skos:prefLabel "Gewässernamen"@de . + +:N746050 + a skos:Concept ; + skos:broader :N746000 ; + skos:inScheme ; + skos:notation "746050" ; + skos:prefLabel "Tiernamen"@de . + +:N746060 + a skos:Concept ; + skos:broader :N746000 ; + skos:inScheme ; + skos:notation "746060" ; + skos:prefLabel "Pflanzennamen"@de . + +:N747000 + a skos:Concept ; + skos:broader :N740000 ; + skos:inScheme ; + skos:narrower :N747010, :N747020, :N747030, :N747060 ; + skos:notation "747000" ; + skos:prefLabel "Soziolinguistik"@de . + +:N747010 + a skos:Concept ; + skos:broader :N747000 ; + skos:inScheme ; + skos:notation "747010" ; + skos:prefLabel "Umgangssprache"@de . + +:N747020 + a skos:Concept ; + skos:broader :N747000 ; + skos:inScheme ; + skos:notation "747020" ; + skos:prefLabel "Geheimsprachen"@de . + +:N747030 + a skos:Concept ; + skos:broader :N747000 ; + skos:inScheme ; + skos:notation "747030" ; + skos:prefLabel "Fachsprachen"@de . + +:N747060 + a skos:Concept ; + skos:broader :N747000 ; + skos:inScheme ; + skos:notation "747060" ; + skos:prefLabel "Sprachpflege"@de ; + skos:scopeNote "Hier auch Lit. zu Sprachunterricht"@de . + +:N760000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N760100, :N761000, :N762000, :N766000, :N767000, :N768000, :N769000 ; + skos:notation "760000" ; + skos:prefLabel "Literatur"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N760100 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:notation "760100" ; + skos:prefLabel "Literatur - Allgemeines"@de . + +:N761000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:narrower :N761020, :N761050 ; + skos:notation "761000" ; + skos:prefLabel "Literaturwissenschaft"@de . + +:N761020 + a skos:Concept ; + skos:broader :N761000 ; + skos:inScheme ; + skos:notation "761020" ; + skos:prefLabel "Regionalliteratur"@de . + +:N761050 + a skos:Concept ; + skos:broader :N761000 ; + skos:inScheme ; + skos:notation "761050" ; + skos:prefLabel "Stoff-, Motiv- und Themenforschung"@de . + +:N762000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:notation "762000" ; + skos:prefLabel "Literaturgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Literaturaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N766000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:narrower :N766030, :N766050, :N766060 ; + skos:notation "766000" ; + skos:prefLabel "Literatursoziologie"@de . + +:N766030 + a skos:Concept ; + skos:broader :N766000 ; + skos:inScheme ; + skos:notation "766030" ; + skos:prefLabel "Leser"@de . + +:N766050 + a skos:Concept ; + skos:broader :N766000 ; + skos:inScheme ; + skos:narrower :N766051, :N766052 ; + skos:notation "766050" ; + skos:prefLabel "Literaturförderung"@de ; + skos:scopeNote "Literarische Vereine, Gesellschaften"@de . + +:N766051 + a skos:Concept ; + skos:broader :N766050 ; + skos:inScheme ; + skos:notation "766051" ; + skos:prefLabel "Literaturpreise"@de . + +:N766052 + a skos:Concept ; + skos:broader :N766050 ; + skos:inScheme ; + skos:notation "766052" ; + skos:prefLabel "Literaturwettbewerbe"@de . + +:N766060 + a skos:Concept ; + skos:broader :N766000 ; + skos:inScheme ; + skos:notation "766060" ; + skos:prefLabel "Literaturausstellungen"@de . + +:N767000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:narrower :N767040 ; + skos:notation "767000" ; + skos:prefLabel "Literarische Texte"@de . + +:N767040 + a skos:Concept ; + skos:broader :N767000 ; + skos:inScheme ; + skos:notation "767040" ; + skos:prefLabel "Anthologien"@de . + +:N768000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:narrower :N768010, :N768030 ; + skos:notation "768000" ; + skos:prefLabel "Schriftsteller"@de . + +:N768010 + a skos:Concept ; + skos:broader :N768000 ; + skos:inScheme ; + skos:notation "768010" ; + skos:prefLabel "Einzelne Autoren (Primärliteratur)"@de ; + skos:scopeNote "Mundartdichtung (Primärliteratur) s. [Mundartliteratur](#N706090)"@de . + +:N768030 + a skos:Concept ; + skos:broader :N768000 ; + skos:inScheme ; + skos:notation "768030" ; + skos:prefLabel "Einzelne Autoren (Sekundärliteratur)"@de . + +:N769000 + a skos:Concept ; + skos:broader :N760000 ; + skos:inScheme ; + skos:narrower :N769020, :N769030, :N769040, :N769050 ; + skos:notation "769000" ; + skos:prefLabel "Literaturgattungen"@de . + +:N769020 + a skos:Concept ; + skos:broader :N769000 ; + skos:inScheme ; + skos:notation "769020" ; + skos:prefLabel "Lyrik"@de . + +:N769030 + a skos:Concept ; + skos:broader :N769000 ; + skos:inScheme ; + skos:notation "769030" ; + skos:prefLabel "Drama"@de . + +:N769040 + a skos:Concept ; + skos:broader :N769000 ; + skos:inScheme ; + skos:notation "769040" ; + skos:prefLabel "Epik"@de . + +:N769050 + a skos:Concept ; + skos:broader :N769000 ; + skos:inScheme ; + skos:notation "769050" ; + skos:prefLabel "Kurzepik"@de . + +:N780000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N780100, :N781000, :N782000, :N782500, :N783000, :N784000, :N785000, :N785500, :N786000, :N788000 ; + skos:notation "780000" ; + skos:prefLabel "Bildung und Erziehung"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N780100 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "780100" ; + skos:prefLabel "Bildung und Erziehung - Allgemeines"@de . + +:N781000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "781000" ; + skos:prefLabel "Bildungspolitik"@de . + +:N782000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "782000" ; + skos:prefLabel "Erziehung"@de . + +:N782500 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "782500" ; + skos:prefLabel "Vorschulerziehung"@de . + +:N783000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "783000" ; + skos:prefLabel "Schulgeschichte"@de ; + skos:scopeNote "Geschichte einzelner Schulen s.a. [Schulformen](#N784040); Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N784000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:narrower :N784010, :N784020, :N784030, :N784040, :N784050, :N784060, :N784070, :N784080, :N784090 ; + skos:notation "784000" ; + skos:prefLabel "Allgemeinbildende Schulen"@de . + +:N784010 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784012, :N784014 ; + skos:notation "784010" ; + skos:prefLabel "Schulpolitik"@de . + +:N784012 + a skos:Concept ; + skos:broader :N784010 ; + skos:inScheme ; + skos:notation "784012" ; + skos:prefLabel "Schulreformen"@de . + +:N784014 + a skos:Concept ; + skos:broader :N784010 ; + skos:inScheme ; + skos:notation "784014" ; + skos:prefLabel "Schulversuche"@de . + +:N784020 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784025 ; + skos:notation "784020" ; + skos:prefLabel "Schulrecht"@de . + +:N784025 + a skos:Concept ; + skos:broader :N784020 ; + skos:inScheme ; + skos:notation "784025" ; + skos:prefLabel "Elternvertretung"@de . + +:N784030 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:notation "784030" ; + skos:prefLabel "Schulverwaltung"@de . + +:N784040 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784041, :N784042, :N784043, :N784044, :N784045, :N784046, :N784048, :N784049 ; + skos:notation "784040" ; + skos:prefLabel "Schulformen"@de . + +:N784041 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784041" ; + skos:prefLabel "Grundschulen"@de . + +:N784042 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784042" ; + skos:prefLabel "Hauptschulen"@de . + +:N784043 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784043" ; + skos:prefLabel "Realschulen"@de . + +:N784044 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784044" ; + skos:prefLabel "Gymnasien"@de . + +:N784045 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784045" ; + skos:prefLabel "Gesamtschulen"@de . + +:N784046 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784046" ; + skos:prefLabel "Kollegschulen"@de . + +:N784048 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784048" ; + skos:prefLabel "Sonderschulen"@de . + +:N784049 + a skos:Concept ; + skos:broader :N784040 ; + skos:inScheme ; + skos:notation "784049" ; + skos:prefLabel "Privatschulen"@de ; + skos:scopeNote "Hier auch Waldorfschulen"@de . + +:N784050 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784051, :N784052, :N784053, :N784054 ; + skos:notation "784050" ; + skos:prefLabel "Schulstufen"@de . + +:N784051 + a skos:Concept ; + skos:broader :N784050 ; + skos:inScheme ; + skos:notation "784051" ; + skos:prefLabel "Elementarbereich"@de ; + skos:definition "Vorschulische Förderung, Bildung und Betreuung von Kindern"@de ; + skos:exactMatch wd:Q1327731, gnd:4151987-5 . + +:N784052 + a skos:Concept ; + skos:broader :N784050 ; + skos:inScheme ; + skos:notation "784052" ; + skos:prefLabel "Primarstufe"@de . + +:N784053 + a skos:Concept ; + skos:broader :N784050 ; + skos:inScheme ; + skos:notation "784053" ; + skos:prefLabel "Sekundarstufe 1"@de . + +:N784054 + a skos:Concept ; + skos:broader :N784050 ; + skos:inScheme ; + skos:notation "784054" ; + skos:prefLabel "Sekundarstufe 2"@de . + +:N784060 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784062, :N784064, :N784066 ; + skos:notation "784060" ; + skos:prefLabel "Lehrer. Pädagogen"@de . + +:N784062 + a skos:Concept ; + skos:broader :N784060 ; + skos:inScheme ; + skos:notation "784062" ; + skos:prefLabel "Lehrerbildung"@de . + +:N784064 + a skos:Concept ; + skos:broader :N784060 ; + skos:inScheme ; + skos:notation "784064" ; + skos:prefLabel "Lehrerfortbildung"@de . + +:N784066 + a skos:Concept ; + skos:broader :N784060 ; + skos:inScheme ; + skos:notation "784066" ; + skos:prefLabel "Lehrerbesoldung"@de . + +:N784070 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:narrower :N784072, :N784074, :N784078 ; + skos:notation "784070" ; + skos:prefLabel "Schüler"@de . + +:N784072 + a skos:Concept ; + skos:broader :N784070 ; + skos:inScheme ; + skos:notation "784072" ; + skos:prefLabel "Schülermitverwaltung"@de . + +:N784074 + a skos:Concept ; + skos:broader :N784070 ; + skos:inScheme ; + skos:notation "784074" ; + skos:prefLabel "Schülertransport"@de . + +:N784078 + a skos:Concept ; + skos:broader :N784070 ; + skos:inScheme ; + skos:notation "784078" ; + skos:prefLabel "Schüleraustausch"@de . + +:N784080 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:notation "784080" ; + skos:prefLabel "Unterricht"@de . + +:N784090 + a skos:Concept ; + skos:broader :N784000 ; + skos:inScheme ; + skos:notation "784090" ; + skos:prefLabel "Schulleben"@de . + +:N785000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:narrower :N785020, :N785030, :N785040, :N785050, :N785060, :N785070 ; + skos:notation "785000" ; + skos:prefLabel "Berufsbildende Schulen"@de ; + skos:scopeNote "Zur Geschichte einzelner Schulen s.a. [Schulgeschichte](#N783000)"@de . + +:N785020 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785020" ; + skos:prefLabel "Berufsschulen"@de . + +:N785030 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785030" ; + skos:prefLabel "Berufsaufbauschulen"@de . + +:N785040 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785040" ; + skos:prefLabel "Berufsfachschulen"@de . + +:N785050 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785050" ; + skos:prefLabel "Fachoberschulen"@de . + +:N785060 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785060" ; + skos:prefLabel "Fachschulen"@de . + +:N785070 + a skos:Concept ; + skos:broader :N785000 ; + skos:inScheme ; + skos:notation "785070" ; + skos:prefLabel "Nichtstaatliche Berufsschulen"@de . + +:N785500 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "785500" ; + skos:prefLabel "Berufsausbildung"@de . + +:N786000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "786000" ; + skos:prefLabel "Außerschulische Bildung"@de . + +:N788000 + a skos:Concept ; + skos:broader :N780000 ; + skos:inScheme ; + skos:notation "788000" ; + skos:prefLabel "Erwachsenenbildung. Weiterbildung"@de ; + skos:scopeNote "Hier auch Lit. zu Volkshochschulen"@de . + +:N790000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N7 ; + skos:narrower :N790100, :N791000, :N792000, :N793000, :N794000, :N796000, :N797000, :N798000, :N798200, :N799000, :N799200 ; + skos:notation "790000" ; + skos:prefLabel "Wissenschaft und Forschung"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N790100 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "790100" ; + skos:prefLabel "Wissenschaft und Forschung - Allgemeines"@de . + +:N791000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "791000" ; + skos:prefLabel "Hochschulrecht"@de . + +:N792000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "792000" ; + skos:prefLabel "Hochschulpolitik"@de . + +:N793000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "793000" ; + skos:prefLabel "Hochschulverwaltung"@de . + +:N794000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:narrower :N794010 ; + skos:notation "794000" ; + skos:prefLabel "Hochschulen"@de ; + skos:scopeNote "Allgemein; Für einzelne Hochschulen s. [Einzelne Hochschulen](#N794010)"@de . + +:N794010 + a skos:Concept ; + skos:broader :N794000 ; + skos:inScheme ; + skos:notation "794010" ; + skos:prefLabel "Einzelne Hochschulen"@de . + +:N796000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "796000" ; + skos:prefLabel "Fachhochschulen"@de . + +:N797000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:narrower :N797010 ; + skos:notation "797000" ; + skos:prefLabel "Hochschullehrer. Wissenschaftler"@de . + +:N797010 + a skos:Concept ; + skos:broader :N797000 ; + skos:inScheme ; + skos:notation "797010" ; + skos:prefLabel "Einzelne Hochschullehrer und Wissenschaftler"@de . + +:N798000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "798000" ; + skos:prefLabel "Studenten"@de . + +:N798200 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "798200" ; + skos:prefLabel "Außeruniversitäre Forschung und Wissenschaft"@de . + +:N799000 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "799000" ; + skos:prefLabel "Wissenschaftsförderung"@de . + +:N799200 + a skos:Concept ; + skos:broader :N790000 ; + skos:inScheme ; + skos:notation "799200" ; + skos:prefLabel "Wissenschaftliche Gesellschaften"@de . + +:N800000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N8 ; + skos:narrower :N800100, :N802000, :N803000, :N804000, :N806000, :N807000, :N808000 ; + skos:notation "800000" ; + skos:prefLabel "Darstellende Kunst"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N800100 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:notation "800100" ; + skos:prefLabel "Darstellende Kunst - Allgemeines"@de . + +:N802000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:narrower :N802020, :N802030, :N802040, :N802050, :N802060, :N802070, :N802080 ; + skos:notation "802000" ; + skos:prefLabel "Theater"@de . + +:N802020 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802020" ; + skos:prefLabel "Theatergeschichte"@de ; + skos:scopeNote "Verwenden, wenn Theateraspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N802030 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802030" ; + skos:prefLabel "Volksschauspiel"@de . + +:N802040 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802040" ; + skos:prefLabel "Laienspiel"@de . + +:N802050 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802050" ; + skos:prefLabel "Kinder- und Jugendtheater"@de ; + skos:scopeNote "Freie SW: Kindertheater; Jugendtheater"@de . + +:N802060 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802060" ; + skos:prefLabel "Einzelne Theater"@de ; + skos:scopeNote "Hier auch Lit. zu Opernhäusern, Musiktheatern; Regisseuren; Intendanten"@de . + +:N802070 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802070" ; + skos:prefLabel "Theateraufführungen"@de ; + skos:scopeNote "Hier auch Lit. zu Aufführungen im Bereich Musiktheater"@de . + +:N802080 + a skos:Concept ; + skos:broader :N802000 ; + skos:inScheme ; + skos:notation "802080" ; + skos:prefLabel "Schauspieler"@de . + +:N803000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:notation "803000" ; + skos:prefLabel "Ballett"@de . + +:N804000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:narrower :N804020 ; + skos:notation "804000" ; + skos:prefLabel "Film"@de . + +:N804020 + a skos:Concept ; + skos:broader :N804000 ; + skos:inScheme ; + skos:notation "804020" ; + skos:prefLabel "Filmtheater"@de . + +:N806000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:narrower :N806020 ; + skos:notation "806000" ; + skos:prefLabel "Kleinkunst"@de . + +:N806020 + a skos:Concept ; + skos:broader :N806000 ; + skos:inScheme ; + skos:notation "806020" ; + skos:prefLabel "Kabarett"@de . + +:N807000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:notation "807000" ; + skos:prefLabel "Figurentheater"@de . + +:N808000 + a skos:Concept ; + skos:broader :N800000 ; + skos:inScheme ; + skos:notation "808000" ; + skos:prefLabel "Zirkus"@de . + +:N820000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N8 ; + skos:narrower :N820100, :N821000, :N822000, :N822400, :N822500, :N823000, :N824000, :N825000, :N825500, :N826000, :N827000, :N828000 ; + skos:notation "820000" ; + skos:prefLabel "Musik"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N820100 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "820100" ; + skos:prefLabel "Musik - Allgemeines"@de . + +:N821000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "821000" ; + skos:prefLabel "Musikwissenschaft"@de . + +:N822000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "822000" ; + skos:prefLabel "Musikerziehung"@de ; + skos:scopeNote "S.a. [Musikförderung](#N822400)"@de . + +:N822400 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "822400" ; + skos:prefLabel "Musikförderung"@de ; + skos:scopeNote "S.a. [Musikerziehung](#N822000)"@de . + +:N822500 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "822500" ; + skos:prefLabel "Musikpreise"@de . + +:N823000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "823000" ; + skos:prefLabel "Musikgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Musikaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N824000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:narrower :N824020, :N824040, :N824060 ; + skos:notation "824000" ; + skos:prefLabel "Musiker"@de . + +:N824020 + a skos:Concept ; + skos:broader :N824000 ; + skos:inScheme ; + skos:notation "824020" ; + skos:prefLabel "Sänger"@de . + +:N824040 + a skos:Concept ; + skos:broader :N824000 ; + skos:inScheme ; + skos:notation "824040" ; + skos:prefLabel "Komponisten"@de . + +:N824060 + a skos:Concept ; + skos:broader :N824000 ; + skos:inScheme ; + skos:notation "824060" ; + skos:prefLabel "Dirigenten"@de . + +:N825000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "825000" ; + skos:prefLabel "Orchester. Musikkapellen. Musikgruppen"@de ; + skos:scopeNote "Freie SW: Orchester; Kapelle (Musik); Musikgruppe"@de . + +:N825500 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "825500" ; + skos:prefLabel "Chöre. Gesangvereine"@de ; + skos:scopeNote "Freie SW: Chor; Gesangverein"@de . + +:N826000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "826000" ; + skos:prefLabel "Konzerte und Musikveranstaltungen"@de ; + skos:scopeNote "Freie SW: Konzert; Musikveranstaltung"@de . + +:N827000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:narrower :N827020 ; + skos:notation "827000" ; + skos:prefLabel "Kirchenmusik"@de ; + skos:scopeNote "Orgeln s. [Musikinstrumente](#N828000)"@de . + +:N827020 + a skos:Concept ; + skos:broader :N827000 ; + skos:inScheme ; + skos:notation "827020" ; + skos:prefLabel "Kirchenmusikalische Aufführungen"@de . + +:N828000 + a skos:Concept ; + skos:broader :N820000 ; + skos:inScheme ; + skos:notation "828000" ; + skos:prefLabel "Musikinstrumente"@de ; + skos:scopeNote "Im Bereich Volksmusik und Volkstanz s. [Musikinstrumente](#N706220)"@de . + +:N840000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N8 ; + skos:narrower :N840100, :N841000, :N842000, :N843000, :N844000, :N844200, :N844500, :N845000, :N846000, :N847000, :N847500, :N848000, :N849000 ; + skos:notation "840000" ; + skos:prefLabel "Kunst. Architektur"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N840100 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "840100" ; + skos:prefLabel "Kunst. Architektur - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Kunst](#N841000), [Architektur](#N843000)"@de . + +:N841000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:narrower :N841020, :N841040, :N841050, :N841060, :N841070, :N841080, :N841090 ; + skos:notation "841000" ; + skos:prefLabel "Kunst"@de . + +:N841020 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841020" ; + skos:prefLabel "Kunsterziehung"@de . + +:N841040 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841040" ; + skos:prefLabel "Kunstmuseen und Kunstsammlungen"@de ; + skos:scopeNote "Freie SW: Kunstmuseum; Kunstsammlung"@de . + +:N841050 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841050" ; + skos:prefLabel "Kunstgalerien"@de . + +:N841060 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841060" ; + skos:prefLabel "Kunstausstellungen"@de ; + skos:scopeNote "Ort der Ausstellung in Feld 700; Auch für Architektur- und Archivausstellungen verwenden (z.B. Baukunstarchiv NRW)"@de . + +:N841070 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841070" ; + skos:prefLabel "Künstler"@de ; + skos:scopeNote "Hier alle Maler, Bildhauer, Zeichner; Raumsystematik: vorwiegender Ort od. Region + Ausstellungsort falls in NRW"@de . + +:N841080 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:notation "841080" ; + skos:prefLabel "Künstlervereinigungen"@de . + +:N841090 + a skos:Concept ; + skos:broader :N841000 ; + skos:inScheme ; + skos:narrower :N841095 ; + skos:notation "841090" ; + skos:prefLabel "Kunstförderung"@de . + +:N841095 + a skos:Concept ; + skos:broader :N841090 ; + skos:inScheme ; + skos:notation "841095" ; + skos:prefLabel "Kunstpreise"@de . + +:N842000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "842000" ; + skos:prefLabel "Kunstgeschichte"@de ; + skos:scopeNote "Verwenden, wenn künstlerischer Aspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N843000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:narrower :N843010, :N843020, :N843040, :N843050, :N843060, :N843090 ; + skos:notation "843000" ; + skos:prefLabel "Architektur"@de ; + skos:definition "Gebäude im öffentlichen Raum"@de ; + skos:scopeNote "Nicht bei Baudenkmälern verwenden, dafür s. entspr. Notation unter [Baudenkmäler. Kunstwerke](#N844000)"@de ; + skos:exactMatch wd:Q12271 , gnd:4002851-3 . + +:N843010 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:notation "843010" ; + skos:prefLabel "Baukonstruktion. Bautechnik"@de ; + skos:definition "Konstruktion von Bauwerken und Gebäuden, Bau- und Herstellungsprozess"@de ; + skos:scopeNote "Freie SW: Baukonstruktion; Bautechnik"@de ; + skos:exactMatch wd:Q811430, gnd:4004821-4 . + +:N843020 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:notation "843020" ; + skos:prefLabel "Öffentliche Gebäude"@de . + +:N843040 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:narrower :N843042, :N843044, :N843046 ; + skos:notation "843040" ; + skos:prefLabel "Büro-, Geschäfts-, Industriebauten"@de ; + skos:scopeNote "S.a. einzelne Notationen [Bürohäuser](#N843042), [Geschäftshäuser](#N843044), [Industriebauten](#N843046)"@de . + +:N843042 + a skos:Concept ; + skos:broader :N843040 ; + skos:inScheme ; + skos:notation "843042" ; + skos:prefLabel "Bürohäuser"@de . + +:N843044 + a skos:Concept ; + skos:broader :N843040 ; + skos:inScheme ; + skos:notation "843044" ; + skos:prefLabel "Geschäftshäuser"@de . + +:N843046 + a skos:Concept ; + skos:broader :N843040 ; + skos:inScheme ; + skos:notation "843046" ; + skos:prefLabel "Industriebauten"@de . + +:N843050 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:notation "843050" ; + skos:prefLabel "Bauernhäuser"@de ; + skos:scopeNote "S.a. [Bauernhäuser](#N708028), [Hofgeschichte](#N544030)"@de . + +:N843060 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:notation "843060" ; + skos:prefLabel "Wohnhäuser"@de ; + skos:scopeNote "S.a. [Bürgerhäuser](#N708024)"@de . + +:N843090 + a skos:Concept ; + skos:broader :N843000 ; + skos:inScheme ; + skos:notation "843090" ; + skos:prefLabel "Architekten"@de . + +:N844000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:narrower :N844010, :N844020, :N844030, :N844040, :N844050, :N844060, :N844070, :N844080 ; + skos:notation "844000" ; + skos:prefLabel "Baudenkmäler. Kunstwerke"@de ; + skos:scopeNote "Allg., auch für Burgen, Profanbauten u.Ä.; Freie SW: Baudenkmal; Kunstwerk"@de . + +:N844010 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844010" ; + skos:prefLabel "Inventare"@de . + +:N844020 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844020" ; + skos:prefLabel "Baustile"@de . + +:N844030 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844030" ; + skos:prefLabel "Kirchenbau. Kirchenausstattung"@de ; + skos:scopeNote "Freie SW: Kirchenbau; Kirchenbau / Ausstattung"@de . + +:N844040 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844040" ; + skos:prefLabel "Burgen. Schlösser"@de ; + skos:scopeNote "Freie SW: Burg; Schloß; Bei militärischen Aspekten s. [Burgen](#N262011)"@de . + +:N844050 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844050" ; + skos:prefLabel "Profanarchitektur"@de . + +:N844060 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844060" ; + skos:prefLabel "Park- und Gartenanlagen"@de ; + skos:scopeNote "Verwenden bei Gartenkunst; Freie SW: Gartenkunst; S.a. [Parks](#N586020), [Naturparke](#N584080)"@de . + +:N844070 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844070" ; + skos:prefLabel "Brunnen"@de . + +:N844080 + a skos:Concept ; + skos:broader :N844000 ; + skos:inScheme ; + skos:notation "844080" ; + skos:prefLabel "Denkmäler"@de . + +:N844200 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "844200" ; + skos:prefLabel "Denkmalpflege. Denkmalschutz"@de ; + skos:scopeNote "Freie SW: Denkmalpflege; Denkmalschutz"@de . + +:N844500 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "844500" ; + skos:prefLabel "Stadtbaukunst"@de ; + skos:scopeNote "Stadtbildprägende Bauten, als Ensemble erbaut"@de ; + skos:example "Treppenhäuser im öffentlichen Raum, Kunst am Bau, Rundgang zum Thema Stadt und Kunst"@de . + +:N845000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "845000" ; + skos:prefLabel "Plastik"@de . + +:N846000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "846000" ; + skos:prefLabel "Malerei"@de . + +:N847000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "847000" ; + skos:prefLabel "Zeichnung"@de . + +:N847500 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "847500" ; + skos:prefLabel "Graphik"@de . + +:N848000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:notation "848000" ; + skos:prefLabel "Photographie"@de . + +:N849000 + a skos:Concept ; + skos:broader :N840000 ; + skos:inScheme ; + skos:narrower :N849020, :N849030, :N849040, :N849050, :N849060, :N849070, :N849080 ; + skos:notation "849000" ; + skos:prefLabel "Kunsthandwerk"@de . + +:N849020 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:notation "849020" ; + skos:prefLabel "Gold- und Silberschmiedekunst. Schmuck"@de ; + skos:scopeNote "Freie SW: Goldschmiedekunst; Silberschmiedekunst; Schmuck; Im Bereich Volkskunde s. [Schmuck](#N708450)"@de . + +:N849030 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:narrower :N849031, :N849032, :N849034 ; + skos:notation "849030" ; + skos:prefLabel "Metallguß"@de . + +:N849031 + a skos:Concept ; + skos:broader :N849030 ; + skos:inScheme ; + skos:notation "849031" ; + skos:prefLabel "Eisenguß"@de . + +:N849032 + a skos:Concept ; + skos:broader :N849030 ; + skos:inScheme ; + skos:notation "849032" ; + skos:prefLabel "Bronzekunst"@de . + +:N849034 + a skos:Concept ; + skos:broader :N849030 ; + skos:inScheme ; + skos:notation "849034" ; + skos:prefLabel "Zinngerät"@de . + +:N849040 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:notation "849040" ; + skos:prefLabel "Keramik"@de ; + skos:scopeNote "Im Bereich Volkskunst s. [Keramik](#N708250)"@de . + +:N849050 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:narrower :N849052, :N849054, :N849056 ; + skos:notation "849050" ; + skos:prefLabel "Porzellan. Fayence. Glas"@de ; + skos:scopeNote "S.a. einzelne Notationen [Porzellan](#N849052), [Fayence](#N849054), [Glas](#N849056)"@de . + +:N849052 + a skos:Concept ; + skos:broader :N849050 ; + skos:inScheme ; + skos:notation "849052" ; + skos:prefLabel "Porzellan"@de . + +:N849054 + a skos:Concept ; + skos:broader :N849050 ; + skos:inScheme ; + skos:notation "849054" ; + skos:prefLabel "Fayence"@de . + +:N849056 + a skos:Concept ; + skos:broader :N849050 ; + skos:inScheme ; + skos:notation "849056" ; + skos:prefLabel "Glas"@de ; + skos:scopeNote "Im Bereich Volkskunst s. [Glas](#N708280)"@de . + +:N849060 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:notation "849060" ; + skos:prefLabel "Hausrat"@de ; + skos:scopeNote "Im Bereich Sachkulturforschung s. [Hausrat](#N708030)"@de . + +:N849070 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:notation "849070" ; + skos:prefLabel "Möbel"@de . + +:N849080 + a skos:Concept ; + skos:broader :N849000 ; + skos:inScheme ; + skos:narrower :N849082, :N849084, :N849086 ; + skos:notation "849080" ; + skos:prefLabel "Textilien. Teppiche. Tapeten"@de ; + skos:scopeNote "S.a. einzelne Notationen [Textilkunst. Mode](#N849082), [Teppichknüpferei. Teppichweberei](#N849084), [Tapeten](#N849086)"@de . + +:N849082 + a skos:Concept ; + skos:broader :N849080 ; + skos:inScheme ; + skos:notation "849082" ; + skos:prefLabel "Textilkunst. Mode"@de ; + skos:scopeNote "Im Bereich Volkskunst s. [Textilien](#N708290)"@de . + +:N849084 + a skos:Concept ; + skos:broader :N849080 ; + skos:inScheme ; + skos:notation "849084" ; + skos:prefLabel "Teppichknüpferei. Teppichweberei"@de ; + skos:scopeNote "Freie SW: Teppichknüpferei; Teppichweberei"@de . + +:N849086 + a skos:Concept ; + skos:broader :N849080 ; + skos:inScheme ; + skos:notation "849086" ; + skos:prefLabel "Tapeten"@de . + +:N860000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N8 ; + skos:narrower :N860100, :N861000, :N865000 ; + skos:notation "860000" ; + skos:prefLabel "Buch und Bibliothek"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N860100 + a skos:Concept ; + skos:broader :N860000 ; + skos:inScheme ; + skos:notation "860100" ; + skos:prefLabel "Buch und Bibliothek - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Buch](#N861000), [Bibliotheken](#N865000)"@de . + +:N861000 + a skos:Concept ; + skos:broader :N860000 ; + skos:inScheme ; + skos:narrower :N861010, :N861020, :N861030, :N861040, :N861050, :N861060 ; + skos:notation "861000" ; + skos:prefLabel "Buch"@de . + +:N861010 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:notation "861010" ; + skos:prefLabel "Schriftgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Schriftaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N861020 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:notation "861020" ; + skos:prefLabel "Handschriften"@de . + +:N861030 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:notation "861030" ; + skos:prefLabel "Buchgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Buchaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N861040 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:notation "861040" ; + skos:prefLabel "Druckgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Druckaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N861050 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:narrower :N861052, :N861054, :N861056 ; + skos:notation "861050" ; + skos:prefLabel "Verlage"@de . + +:N861052 + a skos:Concept ; + skos:broader :N861050 ; + skos:inScheme ; + skos:notation "861052" ; + skos:prefLabel "Urheberrecht"@de . + +:N861054 + a skos:Concept ; + skos:broader :N861050 ; + skos:inScheme ; + skos:notation "861054" ; + skos:prefLabel "Verlagsrecht"@de . + +:N861056 + a skos:Concept ; + skos:broader :N861050 ; + skos:inScheme ; + skos:notation "861056" ; + skos:prefLabel "Verleger"@de . + +:N861060 + a skos:Concept ; + skos:broader :N861000 ; + skos:inScheme ; + skos:notation "861060" ; + skos:prefLabel "Buchhandel"@de . + +:N865000 + a skos:Concept ; + skos:broader :N860000 ; + skos:inScheme ; + skos:narrower :N865010, :N865020, :N865030, :N865040, :N865050, :N865060, :N865070, :N865080, :N865090 ; + skos:notation "865000" ; + skos:prefLabel "Bibliotheken"@de ; + skos:example "Auch Verbände"@de . + +:N865010 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865010" ; + skos:prefLabel "Bibliotheksrecht"@de . + +:N865020 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865020" ; + skos:prefLabel "Bibliotheksgeschichte"@de ; + skos:scopeNote "Verwenden, wenn Bibliotheksaspekt im Vordergrund steht; Im Unterschied zu allg. [Geschichte](#N240000)"@de . + +:N865030 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865030" ; + skos:prefLabel "Bibliotheksplanung"@de . + +:N865040 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865040" ; + skos:prefLabel "Wissenschaftliche Bibliotheken"@de . + +:N865050 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865050" ; + skos:prefLabel "Öffentliche Bibliotheken"@de . + +:N865060 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865060" ; + skos:prefLabel "Spezialbibliotheken"@de . + +:N865070 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865070" ; + skos:prefLabel "Schulbibliotheken"@de . + +:N865080 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865080" ; + skos:prefLabel "Privatbibliotheken"@de . + +:N865090 + a skos:Concept ; + skos:broader :N865000 ; + skos:inScheme ; + skos:notation "865090" ; + skos:prefLabel "Bibliothekare"@de . + +:N880000 + a skos:Concept ; + skos:inScheme ; + skos:broader :N8 ; + skos:narrower :N880100, :N882000, :N884000 ; + skos:notation "880000" ; + skos:prefLabel "Publizistik. Information und Dokumentation"@de ; + skos:scopeNote "Hauptsachgebiet - nicht verknüpfen"@de . + +:N880100 + a skos:Concept ; + skos:broader :N880000 ; + skos:inScheme ; + skos:notation "880100" ; + skos:prefLabel "Publizistik. Information und Dokumentation - Allgemeines"@de ; + skos:scopeNote "S.a. einzelne Notationen [Publizistik](#N882000), [Information und Dokumentation](#N884000)"@de . + +:N882000 + a skos:Concept ; + skos:broader :N880000 ; + skos:inScheme ; + skos:narrower :N882020, :N882030, :N882040, :N882060, :N882090 ; + skos:notation "882000" ; + skos:prefLabel "Publizistik"@de . + +:N882020 + a skos:Concept ; + skos:broader :N882000 ; + skos:inScheme ; + skos:narrower :N882022, :N882024, :N882026 ; + skos:notation "882020" ; + skos:prefLabel "Presse"@de . + +:N882022 + a skos:Concept ; + skos:broader :N882020 ; + skos:inScheme ; + skos:notation "882022" ; + skos:prefLabel "Presserecht"@de . + +:N882024 + a skos:Concept ; + skos:broader :N882020 ; + skos:inScheme ; + skos:notation "882024" ; + skos:prefLabel "Zeitungen"@de . + +:N882026 + a skos:Concept ; + skos:broader :N882020 ; + skos:inScheme ; + skos:notation "882026" ; + skos:prefLabel "Zeitschriften"@de . + +:N882030 + a skos:Concept ; + skos:broader :N882000 ; + skos:inScheme ; + skos:notation "882030" ; + skos:prefLabel "Audiovisuelle Medien"@de . + +:N882040 + a skos:Concept ; + skos:broader :N882000 ; + skos:inScheme ; + skos:notation "882040" ; + skos:prefLabel "Rundfunk"@de . + +:N882060 + a skos:Concept ; + skos:broader :N882000 ; + skos:inScheme ; + skos:notation "882060" ; + skos:prefLabel "Fernsehen"@de . + +:N882090 + a skos:Concept ; + skos:broader :N882000 ; + skos:inScheme ; + skos:notation "882090" ; + skos:prefLabel "Journalisten"@de . + +:N884000 + a skos:Concept ; + skos:broader :N880000 ; + skos:inScheme ; + skos:notation "884000" ; + skos:prefLabel "Information und Dokumentation"@de . diff --git a/conf/hebisMarc2lobid-transformation/maps/nwbibWikidataLabelTypeCoords.tsv b/conf/hebisMarc2lobid-transformation/maps/nwbibWikidataLabelTypeCoords.tsv new file mode 100644 index 0000000..30c121f --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/nwbibWikidataLabelTypeCoords.tsv @@ -0,0 +1,4540 @@ +?nwbibId ?item ?itemLabel ?types ?coordinates +https://nwbib.de/spatial#Q1959111 http://www.wikidata.org/entity/Q1959111 Sentrup http://www.wikidata.org/entity/Q253019 Point(7.59167 51.9583) +https://nwbib.de/spatial#Q1412529 http://www.wikidata.org/entity/Q1412529 Filde http://www.wikidata.org/entity/Q253019 Point(7.39194 51.2433) +https://nwbib.de/spatial#Q1987798 http://www.wikidata.org/entity/Q1987798 Niedergelpe http://www.wikidata.org/entity/Q253019 Point(7.48056 51.0342) +https://nwbib.de/spatial#Q1867441 http://www.wikidata.org/entity/Q1867441 Lochtrop http://www.wikidata.org/entity/Q253019 Point(8.20472 51.2311) +https://nwbib.de/spatial#Q2554478 http://www.wikidata.org/entity/Q2554478 Wehnrath http://www.wikidata.org/entity/Q253019 Point(7.65556 50.9619) +https://nwbib.de/spatial#Q15055866 http://www.wikidata.org/entity/Q15055866 Drüpt http://www.wikidata.org/entity/Q253019 Point(6.53527778 51.58666667) +https://nwbib.de/spatial#Q56398029 http://www.wikidata.org/entity/Q56398029 Dekanat Sundern http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q47457873 http://www.wikidata.org/entity/Q47457873 Hultrop http://www.wikidata.org/entity/Q253019 Point(8.054166666 51.650555555) +https://nwbib.de/spatial#Q182471 http://www.wikidata.org/entity/Q182471 Westerkappeln http://www.wikidata.org/entity/Q262166 Point(7.880555555 52.315277777) +https://nwbib.de/spatial#Q151287 http://www.wikidata.org/entity/Q151287 Brand http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q262166 Point(6.165 50.7489) +https://nwbib.de/spatial#Q2554519 http://www.wikidata.org/entity/Q2554519 Wehr http://www.wikidata.org/entity/Q253019 Point(5.92 50.9967) +https://nwbib.de/spatial#Q1250587 http://www.wikidata.org/entity/Q1250587 Bittermark http://www.wikidata.org/entity/Q253019 Point(7.43333 51.4833) +https://nwbib.de/spatial#Q1499723 http://www.wikidata.org/entity/Q1499723 Gellep-Stratum http://www.wikidata.org/entity/Q2983893 Point(6.67111 51.3278) +https://nwbib.de/spatial#Q1959336 http://www.wikidata.org/entity/Q1959336 Müssen http://www.wikidata.org/entity/Q253019 Point(8.77824 51.9636) +https://nwbib.de/spatial#Q1921877 http://www.wikidata.org/entity/Q1921877 Merl http://www.wikidata.org/entity/Q253019 Point(7.05523 50.6306) +https://nwbib.de/spatial#Q2015273 http://www.wikidata.org/entity/Q2015273 Oestinghausen http://www.wikidata.org/entity/Q253019 Point(8.1025 51.6358) +https://nwbib.de/spatial#Q683292 http://www.wikidata.org/entity/Q683292 Neuehrenfeld http://www.wikidata.org/entity/Q15632166 Point(6.93611 50.95753) +https://nwbib.de/spatial#Q1747416 http://www.wikidata.org/entity/Q1747416 Ophoven http://www.wikidata.org/entity/Q253019 Point(6.1025 51.1075) +https://nwbib.de/spatial#Q896574 http://www.wikidata.org/entity/Q896574 Valbert http://www.wikidata.org/entity/Q253019 Point(7.748611111 51.121666666) +https://nwbib.de/spatial#Q257474 http://www.wikidata.org/entity/Q257474 Hagen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.51194 51.7422) +https://nwbib.de/spatial#Q57727510 http://www.wikidata.org/entity/Q57727510 Beyenburg http://www.wikidata.org/entity/Q253019 Point(7.294166666 51.248694444) +https://nwbib.de/spatial#Q1709509 http://www.wikidata.org/entity/Q1709509 Engar http://www.wikidata.org/entity/Q253019 Point(9.10535 51.5461) +https://nwbib.de/spatial#Q10780117 http://www.wikidata.org/entity/Q10780117 Weuspert http://www.wikidata.org/entity/Q253019 Point(8.03694 51.2222) +https://nwbib.de/spatial#Q1672944 http://www.wikidata.org/entity/Q1672944 Irlenborn http://www.wikidata.org/entity/Q253019 Point(7.42833 50.7514) +https://nwbib.de/spatial#Q1541799 http://www.wikidata.org/entity/Q1541799 Grafschaft Schwalenberg http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q13417114 Point(9.19995 51.8772) +https://nwbib.de/spatial#Q43109346 http://www.wikidata.org/entity/Q43109346 Beerlage http://www.wikidata.org/entity/Q253019 Point(7.36667 52.01667) +https://nwbib.de/spatial#Q1641626 http://www.wikidata.org/entity/Q1641626 Westig http://www.wikidata.org/entity/Q253019 Point(7.75 51.3736) +https://nwbib.de/spatial#Q47454950 http://www.wikidata.org/entity/Q47454950 Zülpicher Börde http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q1587067 http://www.wikidata.org/entity/Q1587067 Hartefeld http://www.wikidata.org/entity/Q253019 Point(6.375 51.4975) +https://nwbib.de/spatial#Q2154179 http://www.wikidata.org/entity/Q2154179 Rinkerode http://www.wikidata.org/entity/Q253019 Point(7.68274 51.8457) +https://nwbib.de/spatial#Q2563936 http://www.wikidata.org/entity/Q2563936 Weslarn http://www.wikidata.org/entity/Q253019 Point(8.16503 51.6208) +https://nwbib.de/spatial#Q1628872 http://www.wikidata.org/entity/Q1628872 Horrem http://www.wikidata.org/entity/Q253019 Point(6.81056 51.0983) +https://nwbib.de/spatial#Q878667 http://www.wikidata.org/entity/Q878667 Kapellen http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.362780555 51.5711) +https://nwbib.de/spatial#Q1164237 http://www.wikidata.org/entity/Q1164237 Dankersen http://www.wikidata.org/entity/Q253019 Point(8.965277777 52.291666666) +https://nwbib.de/spatial#Q882661 http://www.wikidata.org/entity/Q882661 Grieth http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(6.314166666 51.787222222) +https://nwbib.de/spatial#Q1921610 http://www.wikidata.org/entity/Q1921610 Merfeld http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(7.20333 51.8492) +https://nwbib.de/spatial#Q47462099 http://www.wikidata.org/entity/Q47462099 Kirchenkreis Gelsenkirchen und Wattenscheid http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q2100725 http://www.wikidata.org/entity/Q2100725 Thorr http://www.wikidata.org/entity/Q2983893 Point(6.633472222 50.937777777) +https://nwbib.de/spatial#Q47462166 http://www.wikidata.org/entity/Q47462166 Kirchenkreis Hamm http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q56881361 http://www.wikidata.org/entity/Q56881361 Kreis Rahden http://www.wikidata.org/entity/Q106658 +https://nwbib.de/spatial#Q804752 http://www.wikidata.org/entity/Q804752 Balde (Erndtebrück) http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.33361 50.9908) +https://nwbib.de/spatial#Q1796363 http://www.wikidata.org/entity/Q1796363 Königshardt http://www.wikidata.org/entity/Q253019 Point(6.85375 51.5474) +https://nwbib.de/spatial#Q2233768 http://www.wikidata.org/entity/Q2233768 Scherpenseel http://www.wikidata.org/entity/Q253019 Point(6.29361 50.7903) +https://nwbib.de/spatial#Q1744683 http://www.wikidata.org/entity/Q1744683 Klaswipper http://www.wikidata.org/entity/Q253019 Point(7.46944 51.1133) +https://nwbib.de/spatial#Q241450 http://www.wikidata.org/entity/Q241450 Bad Münstereifel http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q12350930 Point(6.766111111 50.553055555) +https://nwbib.de/spatial#Q2310026 http://www.wikidata.org/entity/Q2310026 Spiel http://www.wikidata.org/entity/Q253019 Point(6.40972 50.9778) +https://nwbib.de/spatial#Q1727203 http://www.wikidata.org/entity/Q1727203 Rondorf http://www.wikidata.org/entity/Q15632166 Point(6.954722222 50.872777777) +https://nwbib.de/spatial#Q1245653 http://www.wikidata.org/entity/Q1245653 Dornbusch http://www.wikidata.org/entity/Q253019 Point(6.32313 51.2939) +https://nwbib.de/spatial#Q1614580 http://www.wikidata.org/entity/Q1614580 Herste http://www.wikidata.org/entity/Q253019 Point(9.09273 51.7107) +https://nwbib.de/spatial#Q1506438 http://www.wikidata.org/entity/Q1506438 Nagelsholz http://www.wikidata.org/entity/Q253019 Point(8.49139 52.1069) +https://nwbib.de/spatial#Q1559466 http://www.wikidata.org/entity/Q1559466 Kierberg http://www.wikidata.org/entity/Q253019 Point(6.88556 50.8375) +https://nwbib.de/spatial#Q2742 http://www.wikidata.org/entity/Q2742 Münster http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1392581 Point(7.625555555 51.9625) +https://nwbib.de/spatial#Q55584721 http://www.wikidata.org/entity/Q55584721 Hellinghausen http://www.wikidata.org/entity/Q253019 Point(8.285555555 51.664722222) +https://nwbib.de/spatial#Q1356001 http://www.wikidata.org/entity/Q1356001 Ermsinghausen http://www.wikidata.org/entity/Q253019 Point(8.41896 51.6431) +https://nwbib.de/spatial#Q897472 http://www.wikidata.org/entity/Q897472 Brake http://www.wikidata.org/entity/Q253019 Point(8.92139 52.0158) +https://nwbib.de/spatial#Q883257 http://www.wikidata.org/entity/Q883257 Bistum Minden http://www.wikidata.org/entity/Q27780831 +https://nwbib.de/spatial#Q389803 http://www.wikidata.org/entity/Q389803 Neubrück http://www.wikidata.org/entity/Q15632166 Point(7.05972 50.9358) +https://nwbib.de/spatial#Q884445 http://www.wikidata.org/entity/Q884445 Duisburg-Süd (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.75972 51.3753) +https://nwbib.de/spatial#Q20820494 http://www.wikidata.org/entity/Q20820494 Böminghausen http://www.wikidata.org/entity/Q253019 Point(8.128056 51.074316) +https://nwbib.de/spatial#Q4011 http://www.wikidata.org/entity/Q4011 Wesel http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q1548518 Point(6.617777777 51.658611111) +https://nwbib.de/spatial#Q200190 http://www.wikidata.org/entity/Q200190 Schöppingen http://www.wikidata.org/entity/Q262166 Point(7.233055555 52.1) +https://nwbib.de/spatial#Q1564106 http://www.wikidata.org/entity/Q1564106 Mörsenbroich http://www.wikidata.org/entity/Q1852178 Point(6.80778 51.255) +https://nwbib.de/spatial#Q2570115 http://www.wikidata.org/entity/Q2570115 Wilberhofen http://www.wikidata.org/entity/Q253019 Point(7.54278 50.8097) +https://nwbib.de/spatial#Q1739823 http://www.wikidata.org/entity/Q1739823 Kessenich http://www.wikidata.org/entity/Q253019 Point(6.79389 50.6789) +https://nwbib.de/spatial#Q1687167 http://www.wikidata.org/entity/Q1687167 Oberholzklau http://www.wikidata.org/entity/Q253019 Point(7.93434 50.9263) +https://nwbib.de/spatial#Q323601 http://www.wikidata.org/entity/Q323601 Unterbilk http://www.wikidata.org/entity/Q1852178 Point(6.77667 51.2081) +https://nwbib.de/spatial#Q1880258 http://www.wikidata.org/entity/Q1880258 Lüftelberg http://www.wikidata.org/entity/Q253019 Point(7.0026603 50.6495021) +https://nwbib.de/spatial#Q1989144 http://www.wikidata.org/entity/Q1989144 Nienborg http://www.wikidata.org/entity/Q253019 Point(7.10444 52.1344) +https://nwbib.de/spatial#Q1623813 http://www.wikidata.org/entity/Q1623813 Kaule http://www.wikidata.org/entity/Q253019 Point(7.16185 50.9601) +https://nwbib.de/spatial#Q11130 http://www.wikidata.org/entity/Q11130 Bad Sassendorf http://www.wikidata.org/entity/Q6882870, http://www.wikidata.org/entity/Q262166 Point(8.166666666 51.583055555) +https://nwbib.de/spatial#Q896058 http://www.wikidata.org/entity/Q896058 Hellwegbörden http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q798791 http://www.wikidata.org/entity/Q798791 Bad Westernkotten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q6882870 Point(8.363888888 51.632777777) +https://nwbib.de/spatial#Q232354 http://www.wikidata.org/entity/Q232354 Zweibrüggen http://www.wikidata.org/entity/Q253019 Point(6.09982 50.9355) +https://nwbib.de/spatial#Q1589197 http://www.wikidata.org/entity/Q1589197 Hauenhorst http://www.wikidata.org/entity/Q253019 Point(7.45125 52.2367) +https://nwbib.de/spatial#Q1625526 http://www.wikidata.org/entity/Q1625526 Holzhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.75671 52.0301) +https://nwbib.de/spatial#Q10946 http://www.wikidata.org/entity/Q10946 Freudenberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q486972 Point(7.874166666 50.8975) +https://nwbib.de/spatial#Q52458367 http://www.wikidata.org/entity/Q52458367 Plitschard http://www.wikidata.org/entity/Q253019 Point(6.110666666 50.897333333) +https://nwbib.de/spatial#Q777806 http://www.wikidata.org/entity/Q777806 Kalkar http://www.wikidata.org/entity/Q253019 Point(6.77345 50.5962) +https://nwbib.de/spatial#Q2099544 http://www.wikidata.org/entity/Q2099544 Plittersdorf http://www.wikidata.org/entity/Q253019 Point(7.15778 50.7006) +https://nwbib.de/spatial#Q26271345 http://www.wikidata.org/entity/Q26271345 Emscher-Lippe-Region http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q2120972 http://www.wikidata.org/entity/Q2120972 Püsselbüren http://www.wikidata.org/entity/Q253019 Point(7.65417 52.2958) +https://nwbib.de/spatial#Q1276112 http://www.wikidata.org/entity/Q1276112 Vellinghausen-Eilmsen http://www.wikidata.org/entity/Q253019 Point(7.98667 51.6639) +https://nwbib.de/spatial#Q10779976 http://www.wikidata.org/entity/Q10779976 Ostentrop http://www.wikidata.org/entity/Q253019 Point(8.02139 51.1906) +https://nwbib.de/spatial#Q278675 http://www.wikidata.org/entity/Q278675 Kalk http://www.wikidata.org/entity/Q15632166 Point(7.00639 50.9428) +https://nwbib.de/spatial#Q163837 http://www.wikidata.org/entity/Q163837 Niederkrüchten http://www.wikidata.org/entity/Q262166 Point(6.219444444 51.198888888) +https://nwbib.de/spatial#Q245292 http://www.wikidata.org/entity/Q245292 Bedburg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q3957 Point(6.5625 51.0) +https://nwbib.de/spatial#Q1584203 http://www.wikidata.org/entity/Q1584203 Happach http://www.wikidata.org/entity/Q253019 Point(7.40917 50.7758) +https://nwbib.de/spatial#Q2442166 http://www.wikidata.org/entity/Q2442166 Tonnenheide http://www.wikidata.org/entity/Q253019 Point(8.67111 52.4169) +https://nwbib.de/spatial#Q487549 http://www.wikidata.org/entity/Q487549 Schalke http://www.wikidata.org/entity/Q253019 Point(7.0886 51.5222) +https://nwbib.de/spatial#Q1719698 http://www.wikidata.org/entity/Q1719698 Stallberg http://www.wikidata.org/entity/Q253019 Point(7.2325 50.8086) +https://nwbib.de/spatial#Q21042074 http://www.wikidata.org/entity/Q21042074 Eick http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.63333333 51.48333333) +https://nwbib.de/spatial#Q1586028 http://www.wikidata.org/entity/Q1586028 Harperscheid http://www.wikidata.org/entity/Q253019 Point(6.40833 50.5189) +https://nwbib.de/spatial#Q1987868 http://www.wikidata.org/entity/Q1987868 Niederholzklau http://www.wikidata.org/entity/Q253019 Point(7.95083 50.9125) +https://nwbib.de/spatial#Q1800778 http://www.wikidata.org/entity/Q1800778 Rentfort http://www.wikidata.org/entity/Q253019 Point(6.95246 51.5729) +https://nwbib.de/spatial#Q1429691 http://www.wikidata.org/entity/Q1429691 Stein http://www.wikidata.org/entity/Q253019 Point(7.45944 50.7556) +https://nwbib.de/spatial#Q472948 http://www.wikidata.org/entity/Q472948 Wissel http://www.wikidata.org/entity/Q253019 Point(6.288055555 51.771944444) +https://nwbib.de/spatial#Q1681572 http://www.wikidata.org/entity/Q1681572 Neudorf http://www.wikidata.org/entity/Q253019 Point(6.78333 51.4264) +https://nwbib.de/spatial#Q1796883 http://www.wikidata.org/entity/Q1796883 Kückhoven http://www.wikidata.org/entity/Q253019 Point(6.348055555 51.062222222) +https://nwbib.de/spatial#Q1562961 http://www.wikidata.org/entity/Q1562961 Niederense http://www.wikidata.org/entity/Q253019 Point(7.997 51.4935) +https://nwbib.de/spatial#Q1685614 http://www.wikidata.org/entity/Q1685614 Landkreis Bonn http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(7.09981389 50.73399167) +https://nwbib.de/spatial#Q1599076 http://www.wikidata.org/entity/Q1599076 Holthausen http://www.wikidata.org/entity/Q1852178 Point(6.831666666 51.171944444) +https://nwbib.de/spatial#Q458242 http://www.wikidata.org/entity/Q458242 Köln-Porz (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(7.055277777 50.887777777) +https://nwbib.de/spatial#Q15549893 http://www.wikidata.org/entity/Q15549893 Jöllenbeck http://www.wikidata.org/entity/Q253019 Point(8.75583333 52.19472222) +https://nwbib.de/spatial#N28 http://www.wikidata.org/entity/Q152356 Eifel http://www.wikidata.org/entity/Q46831, http://www.wikidata.org/entity/Q674541, http://www.wikidata.org/entity/Q82794 Point(6.813052777 50.417105555) +https://nwbib.de/spatial#Q242458 http://www.wikidata.org/entity/Q242458 Kalletal http://www.wikidata.org/entity/Q262166 Point(8.949722222 52.116666666) +https://nwbib.de/spatial#Q1367000 http://www.wikidata.org/entity/Q1367000 Eschenbruch http://www.wikidata.org/entity/Q253019 Point(9.17306 51.9606) +https://nwbib.de/spatial#Q153782 http://www.wikidata.org/entity/Q153782 Kessenich http://www.wikidata.org/entity/Q253019 Point(7.10884 50.7126) +https://nwbib.de/spatial#Q15115136 http://www.wikidata.org/entity/Q15115136 Holthausen http://www.wikidata.org/entity/Q253019 Point(7.37722222 52.035) +https://nwbib.de/spatial#Q1372294 http://www.wikidata.org/entity/Q1372294 Euelsloch http://www.wikidata.org/entity/Q253019 Point(7.71583 50.8817) +https://nwbib.de/spatial#Q73075 http://www.wikidata.org/entity/Q73075 Lüchtringen http://www.wikidata.org/entity/Q253019 Point(9.4275 51.7939) +https://nwbib.de/spatial#Q1625098 http://www.wikidata.org/entity/Q1625098 Holsen http://www.wikidata.org/entity/Q253019 Point(8.51639 52.2072) +https://nwbib.de/spatial#Q1678593 http://www.wikidata.org/entity/Q1678593 Schwaney http://www.wikidata.org/entity/Q253019 Point(8.93333333 51.71388889) +https://nwbib.de/spatial#Q48181244 http://www.wikidata.org/entity/Q48181244 Königshof http://www.wikidata.org/entity/Q253019 Point(6.584711111 51.31515) +https://nwbib.de/spatial#Q1670041 http://www.wikidata.org/entity/Q1670041 Puffendorf http://www.wikidata.org/entity/Q253019 Point(6.208611111 50.937222222) +https://nwbib.de/spatial#Q1721358 http://www.wikidata.org/entity/Q1721358 Venn http://www.wikidata.org/entity/Q253019 Point(6.38797 51.203) +https://nwbib.de/spatial#Q1946283 http://www.wikidata.org/entity/Q1946283 Obspringen http://www.wikidata.org/entity/Q253019 Point(6.022194444 51.074555555) +https://nwbib.de/spatial#Q198799 http://www.wikidata.org/entity/Q198799 Ziegenhardt http://www.wikidata.org/entity/Q253019 Point(7.559722222 50.859722222) +https://nwbib.de/spatial#Q1295229 http://www.wikidata.org/entity/Q1295229 Hagen (Viersen) http://www.wikidata.org/entity/Q253019 Point(6.39167 51.2908) +https://nwbib.de/spatial#Q833294 http://www.wikidata.org/entity/Q833294 Ilverich http://www.wikidata.org/entity/Q253019 Point(6.695805555 51.28925) +https://nwbib.de/spatial#Q813821 http://www.wikidata.org/entity/Q813821 Beddelhausen http://www.wikidata.org/entity/Q253019 Point(8.489722222 51.0) +https://nwbib.de/spatial#Q1000707 http://www.wikidata.org/entity/Q1000707 Budberg http://www.wikidata.org/entity/Q253019 Point(6.63833 51.5328) +https://nwbib.de/spatial#Q1300851 http://www.wikidata.org/entity/Q1300851 Ehringhausen http://www.wikidata.org/entity/Q253019 Point(7.17333 51.1592) +https://nwbib.de/spatial#Q1948571 http://www.wikidata.org/entity/Q1948571 Suttrop http://www.wikidata.org/entity/Q253019 Point(8.378055555 51.455555555) +https://nwbib.de/spatial#Q2769 http://www.wikidata.org/entity/Q2769 Warendorf http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813 Point(7.993333333 51.953888888) +https://nwbib.de/spatial#Q2259617 http://www.wikidata.org/entity/Q2259617 Schötmar http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.756111111 52.070833333) +https://nwbib.de/spatial#Q61725003 http://www.wikidata.org/entity/Q61725003 Geildorf http://www.wikidata.org/entity/Q253019 Point(6.898777777 50.805444444) +https://nwbib.de/spatial#Q1453703 http://www.wikidata.org/entity/Q1453703 Rheinen http://www.wikidata.org/entity/Q253019 Point(7.63125 51.4425) +https://nwbib.de/spatial#Q2318781 http://www.wikidata.org/entity/Q2318781 St. Hubert http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.4505 51.3843) +https://nwbib.de/spatial#Q2034024 http://www.wikidata.org/entity/Q2034024 Ramsdorf http://www.wikidata.org/entity/Q253019 Point(6.922778 51.886944) +https://nwbib.de/spatial#Q4068 http://www.wikidata.org/entity/Q4068 Stolberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.233333333 50.766666666) +https://nwbib.de/spatial#Q50375132 http://www.wikidata.org/entity/Q50375132 Heid (Wenden, Sauerland) http://www.wikidata.org/entity/Q253019 Point(7.806944444 50.948611111) +https://nwbib.de/spatial#Q15715243 http://www.wikidata.org/entity/Q15715243 Kaßlerfeld http://www.wikidata.org/entity/Q2983893 Point(6.75239 51.4408) +https://nwbib.de/spatial#Q1495366 http://www.wikidata.org/entity/Q1495366 Lützel http://www.wikidata.org/entity/Q253019 Point(8.17444 50.9683) +https://nwbib.de/spatial#Q1959109 http://www.wikidata.org/entity/Q1959109 Roxel http://www.wikidata.org/entity/Q253019 Point(7.53333 51.9528) +https://nwbib.de/spatial#Q1250621 http://www.wikidata.org/entity/Q1250621 Gartenstadt http://www.wikidata.org/entity/Q253019 Point(7.51 51.5036) +https://nwbib.de/spatial#Q1621762 http://www.wikidata.org/entity/Q1621762 Hochemmerich http://www.wikidata.org/entity/Q253019 Point(6.7125 51.4157) +https://nwbib.de/spatial#Q328928 http://www.wikidata.org/entity/Q328928 Grafschaft Moers http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q269204 http://www.wikidata.org/entity/Q269204 Friesheim http://www.wikidata.org/entity/Q253019 Point(6.77583 50.7561) +https://nwbib.de/spatial#Q2300597 http://www.wikidata.org/entity/Q2300597 Sommersell http://www.wikidata.org/entity/Q253019 Point(9.05655 51.9954) +https://nwbib.de/spatial#Q1439048 http://www.wikidata.org/entity/Q1439048 Fortuna http://www.wikidata.org/entity/Q253019 Point(6.67153 50.9642) +https://nwbib.de/spatial#Q18411952 http://www.wikidata.org/entity/Q18411952 Oberbachem http://www.wikidata.org/entity/Q253019 Point(7.16 50.637) +https://nwbib.de/spatial#Q1742484 http://www.wikidata.org/entity/Q1742484 Tüddern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2039348 Point(5.900833 51.013889) +https://nwbib.de/spatial#Q2630305 http://www.wikidata.org/entity/Q2630305 Alertshausen http://www.wikidata.org/entity/Q253019 Point(8.519166666 51.056388888) +https://nwbib.de/spatial#Q2239953 http://www.wikidata.org/entity/Q2239953 Ahausen http://www.wikidata.org/entity/Q751876, http://www.wikidata.org/entity/Q253019 Point(7.95444 51.1414) +https://nwbib.de/spatial#Q1868316 http://www.wikidata.org/entity/Q1868316 Loikum http://www.wikidata.org/entity/Q253019 Point(6.56667 51.7728) +https://nwbib.de/spatial#Q1424148 http://www.wikidata.org/entity/Q1424148 Geuenich http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(6.33333 50.8758) +https://nwbib.de/spatial#Q1355364 http://www.wikidata.org/entity/Q1355364 Erle http://www.wikidata.org/entity/Q253019 Point(6.86556 51.7461) +https://nwbib.de/spatial#Q2809 http://www.wikidata.org/entity/Q2809 Everswinkel http://www.wikidata.org/entity/Q262166 Point(7.847777777 51.925) +https://nwbib.de/spatial#Q162717 http://www.wikidata.org/entity/Q162717 Hamminkeln http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.590833333 51.731944444) +https://nwbib.de/spatial#Q2015362 http://www.wikidata.org/entity/Q2015362 Oeynhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(9.0525 51.8136) +https://nwbib.de/spatial#Q15125849 http://www.wikidata.org/entity/Q15125849 Ramscheid http://www.wikidata.org/entity/Q253019 Point(8.085278 51.213056) +https://nwbib.de/spatial#Q447973 http://www.wikidata.org/entity/Q447973 Uerdingen http://www.wikidata.org/entity/Q253019 Point(6.65 51.35) +https://nwbib.de/spatial#Q1114911 http://www.wikidata.org/entity/Q1114911 Kenten http://www.wikidata.org/entity/Q253019 Point(6.652441666 50.949705555) +https://nwbib.de/spatial#Q15052205 http://www.wikidata.org/entity/Q15052205 Breberen http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(5.99194444 51.025) +https://nwbib.de/spatial#Q2170995 http://www.wikidata.org/entity/Q2170995 Schneppenheim http://www.wikidata.org/entity/Q253019 Point(6.853 50.708) +https://nwbib.de/spatial#Q1380466 http://www.wikidata.org/entity/Q1380466 Hoffnungsthal http://www.wikidata.org/entity/Q253019 Point(7.19982 50.9172) +https://nwbib.de/spatial#Q917238 http://www.wikidata.org/entity/Q917238 Brilon-Wald http://www.wikidata.org/entity/Q253019 Point(8.57389 51.3439) +https://nwbib.de/spatial#Q16061696 http://www.wikidata.org/entity/Q16061696 Dünnebrett http://www.wikidata.org/entity/Q253019 Point(7.632173 51.255296) +https://nwbib.de/spatial#Q885367 http://www.wikidata.org/entity/Q885367 Godorf http://www.wikidata.org/entity/Q15632166 Point(6.976944444 50.849444444) +https://nwbib.de/spatial#Q1761485 http://www.wikidata.org/entity/Q1761485 Lindweiler http://www.wikidata.org/entity/Q253019 Point(6.74889 50.4581) +https://nwbib.de/spatial#Q1169719 http://www.wikidata.org/entity/Q1169719 Dürscheid http://www.wikidata.org/entity/Q253019 Point(7.21778 51.0094) +https://nwbib.de/spatial#Q1100658 http://www.wikidata.org/entity/Q1100658 Cleve http://www.wikidata.org/entity/Q253019 Point(8.303 52.083) +https://nwbib.de/spatial#Q2010314 http://www.wikidata.org/entity/Q2010314 Oberlohberg http://www.wikidata.org/entity/Q253019 Point(6.77936 51.5766) +https://nwbib.de/spatial#Q879066 http://www.wikidata.org/entity/Q879066 Morenhoven http://www.wikidata.org/entity/Q253019 Point(6.95 50.666666666) +https://nwbib.de/spatial#Q1796601 http://www.wikidata.org/entity/Q1796601 Körbecke http://www.wikidata.org/entity/Q253019 Point(8.13586 51.4974) +https://nwbib.de/spatial#Q225375 http://www.wikidata.org/entity/Q225375 Verl http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.516666666 51.883055555) +https://nwbib.de/spatial#Q1302816 http://www.wikidata.org/entity/Q1302816 Eiershagen http://www.wikidata.org/entity/Q253019 Point(7.61111 50.9175) +https://nwbib.de/spatial#Q873586 http://www.wikidata.org/entity/Q873586 Rheder http://www.wikidata.org/entity/Q253019 Point(6.79861 50.6225) +https://nwbib.de/spatial#Q446857 http://www.wikidata.org/entity/Q446857 Köln-Innenstadt http://www.wikidata.org/entity/Q15632133 Point(6.960277777 50.936666666) +https://nwbib.de/spatial#Q2565365 http://www.wikidata.org/entity/Q2565365 Westheim http://www.wikidata.org/entity/Q253019 Point(8.90722 51.4939) +https://nwbib.de/spatial#Q881607 http://www.wikidata.org/entity/Q881607 Blankenheimerdorf http://www.wikidata.org/entity/Q253019 Point(6.625833333 50.439722222) +https://nwbib.de/spatial#Q884410 http://www.wikidata.org/entity/Q884410 Erle http://www.wikidata.org/entity/Q253019 Point(7.0914 51.5592) +https://nwbib.de/spatial#Q1530219 http://www.wikidata.org/entity/Q1530219 Mausbach http://www.wikidata.org/entity/Q253019 Point(7.83805556 50.90083333) +https://nwbib.de/spatial#Q865631 http://www.wikidata.org/entity/Q865631 Birkesdorf http://www.wikidata.org/entity/Q253019 Point(6.464166666 50.820277777) +https://nwbib.de/spatial#Q857786 http://www.wikidata.org/entity/Q857786 Bierde http://www.wikidata.org/entity/Q253019 Point(9.04083 52.3692) +https://nwbib.de/spatial#Q53577707 http://www.wikidata.org/entity/Q53577707 Bildchen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q757292 Point(6.040108888 50.730505) +https://nwbib.de/spatial#Q56373173 http://www.wikidata.org/entity/Q56373173 Dekanat Beckum http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q5999 http://www.wikidata.org/entity/Q5999 Kreuztal http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.0064 50.96195) +https://nwbib.de/spatial#Q897536 http://www.wikidata.org/entity/Q897536 Brambauer http://www.wikidata.org/entity/Q253019 Point(7.44278 51.5961) +https://nwbib.de/spatial#Q1465627 http://www.wikidata.org/entity/Q1465627 Hilgen http://www.wikidata.org/entity/Q253019 Point(7.15611 51.1034) +https://nwbib.de/spatial#Q1427339 http://www.wikidata.org/entity/Q1427339 Spexard http://www.wikidata.org/entity/Q253019 Point(8.42639 51.8861) +https://nwbib.de/spatial#Q225002 http://www.wikidata.org/entity/Q225002 Steinhagen http://www.wikidata.org/entity/Q262166 Point(8.414722222 52.005) +https://nwbib.de/spatial#Q1920665 http://www.wikidata.org/entity/Q1920665 Mennrath http://www.wikidata.org/entity/Q253019 Point(6.38415 51.1373) +https://nwbib.de/spatial#Q2133501 http://www.wikidata.org/entity/Q2133501 Rauschendorf http://www.wikidata.org/entity/Q253019 Point(7.22516 50.7373) +https://nwbib.de/spatial#Q19965672 http://www.wikidata.org/entity/Q19965672 Osterbönen http://www.wikidata.org/entity/Q253019 Point(7.80194444 51.61222222) +https://nwbib.de/spatial#Q1787509 http://www.wikidata.org/entity/Q1787509 Kreis Schwelm http://www.wikidata.org/entity/Q106658 Point(7.266666666 51.266666666) +https://nwbib.de/spatial#Q26254928 http://www.wikidata.org/entity/Q26254928 Schlingenthal http://www.wikidata.org/entity/Q253019 Point(7.3650833 50.9508843) +https://nwbib.de/spatial#Q1572674 http://www.wikidata.org/entity/Q1572674 Hamb http://www.wikidata.org/entity/Q253019 Point(6.39 51.57) +https://nwbib.de/spatial#Q204488 http://www.wikidata.org/entity/Q204488 Wormbach http://www.wikidata.org/entity/Q253019 Point(8.25639 51.1667) +https://nwbib.de/spatial#Q21039875 http://www.wikidata.org/entity/Q21039875 Delling http://www.wikidata.org/entity/Q253019 Point(7.3075 51.04816) +https://nwbib.de/spatial#Q1464472 http://www.wikidata.org/entity/Q1464472 Frielingsdorf http://www.wikidata.org/entity/Q253019 Point(7.426944444 51.045277777) +https://nwbib.de/spatial#Q44070736 http://www.wikidata.org/entity/Q44070736 Vardingholt http://www.wikidata.org/entity/Q253019 Point(6.683333333 51.866666666) +https://nwbib.de/spatial#Q152937 http://www.wikidata.org/entity/Q152937 Niederaußem http://www.wikidata.org/entity/Q253019 Point(6.671 50.983) +https://nwbib.de/spatial#Q225371 http://www.wikidata.org/entity/Q225371 Raderthal http://www.wikidata.org/entity/Q15632166 Point(6.954722222 50.898611111) +https://nwbib.de/spatial#Q2473706 http://www.wikidata.org/entity/Q2473706 Uevekoven http://www.wikidata.org/entity/Q253019 Point(6.28944 51.1244) +https://nwbib.de/spatial#Q1570739 http://www.wikidata.org/entity/Q1570739 Haldem http://www.wikidata.org/entity/Q253019 Point(8.38722 52.4386) +https://nwbib.de/spatial#Q153203 http://www.wikidata.org/entity/Q153203 Gressenich http://www.wikidata.org/entity/Q253019 Point(6.300277777 50.772777777) +https://nwbib.de/spatial#Q1459702 http://www.wikidata.org/entity/Q1459702 Kirchdornberg http://www.wikidata.org/entity/Q253019 Point(8.43944 52.0453) +https://nwbib.de/spatial#Q42409368 http://www.wikidata.org/entity/Q42409368 Bredenscheid-Stüter http://www.wikidata.org/entity/Q253019 Point(7.20524 51.373867) +https://nwbib.de/spatial#Q614228 http://www.wikidata.org/entity/Q614228 Kreis Bochum http://www.wikidata.org/entity/Q5283531 Point(7.216666666 51.483333333) +https://nwbib.de/spatial#Q878419 http://www.wikidata.org/entity/Q878419 Kreis Ahaus http://www.wikidata.org/entity/Q106658 Point(7.00667 52.0756) +https://nwbib.de/spatial#Q2290569 http://www.wikidata.org/entity/Q2290569 Sittardheide http://www.wikidata.org/entity/Q253019 Point(6.35019 51.1373) +https://nwbib.de/spatial#Q182286 http://www.wikidata.org/entity/Q182286 Recke http://www.wikidata.org/entity/Q262166 Point(7.718888888 52.37) +https://nwbib.de/spatial#Q17543808 http://www.wikidata.org/entity/Q17543808 Persebeck-Kruckel-Schnee http://www.wikidata.org/entity/Q253019 Point(7.41666667 51.44722222) +https://nwbib.de/spatial#Q59139024 http://www.wikidata.org/entity/Q59139024 Stadtbezirk Stieghorst http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q117898 http://www.wikidata.org/entity/Q117898 Pivitsheide V. H. http://www.wikidata.org/entity/Q253019 Point(8.81 51.945555555) +https://nwbib.de/spatial#Q2165216 http://www.wikidata.org/entity/Q2165216 Rommerscheid http://www.wikidata.org/entity/Q253019 Point(7.1534 50.9972) +https://nwbib.de/spatial#Q44287884 http://www.wikidata.org/entity/Q44287884 Altenvoerde http://www.wikidata.org/entity/Q253019 Point(7.366944444 51.296666666) +https://nwbib.de/spatial#Q432959 http://www.wikidata.org/entity/Q432959 Alt-Marl http://www.wikidata.org/entity/Q253019 Point(7.07969 51.6486) +https://nwbib.de/spatial#Q153885 http://www.wikidata.org/entity/Q153885 Vingst http://www.wikidata.org/entity/Q15632166 Point(7.02167 50.9331) +https://nwbib.de/spatial#Q1815004 http://www.wikidata.org/entity/Q1815004 Leifringhausen http://www.wikidata.org/entity/Q253019 Point(7.67285 51.2211) +https://nwbib.de/spatial#Q894908 http://www.wikidata.org/entity/Q894908 Boy http://www.wikidata.org/entity/Q253019 Point(6.96774 51.5387) +https://nwbib.de/spatial#Q2326745 http://www.wikidata.org/entity/Q2326745 Stadtbezirk Huckarde http://www.wikidata.org/entity/Q2740635 Point(7.4 51.533333333) +https://nwbib.de/spatial#Q1817500 http://www.wikidata.org/entity/Q1817500 Lendringsen http://www.wikidata.org/entity/Q253019 Point(7.83056 51.4144) +https://nwbib.de/spatial#Q896720 http://www.wikidata.org/entity/Q896720 Hiltrup http://www.wikidata.org/entity/Q253019 Point(7.63889 51.9028) +https://nwbib.de/spatial#Q2135715 http://www.wikidata.org/entity/Q2135715 Reckenfeld http://www.wikidata.org/entity/Q253019 Point(7.55 52.1292) +https://nwbib.de/spatial#Q151243 http://www.wikidata.org/entity/Q151243 Castrop http://www.wikidata.org/entity/Q253019 Point(7.310277777 51.548611111) +https://nwbib.de/spatial#Q3985 http://www.wikidata.org/entity/Q3985 Herten http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(7.133333333 51.6) +https://nwbib.de/spatial#Q55827183 http://www.wikidata.org/entity/Q55827183 Hülsten http://www.wikidata.org/entity/Q253019 Point(7.092222222 51.810277777) +https://nwbib.de/spatial#Q894915 http://www.wikidata.org/entity/Q894915 Welheim http://www.wikidata.org/entity/Q253019 Point(6.98195 51.5266) +https://nwbib.de/spatial#Q1742468 http://www.wikidata.org/entity/Q1742468 Kirchborchen http://www.wikidata.org/entity/Q253019 Point(8.716666666 51.666666666) +https://nwbib.de/spatial#Q2438685 http://www.wikidata.org/entity/Q2438685 Todtenhausen http://www.wikidata.org/entity/Q253019 Point(8.92111 52.3369) +https://nwbib.de/spatial#Q2010569 http://www.wikidata.org/entity/Q2010569 Oberntudorf http://www.wikidata.org/entity/Q253019 Point(8.66528 51.6414) +https://nwbib.de/spatial#Q315138 http://www.wikidata.org/entity/Q315138 Opladen http://www.wikidata.org/entity/Q2983893 Point(7.00278 51.0678) +https://nwbib.de/spatial#Q1251721 http://www.wikidata.org/entity/Q1251721 Oberrarbach http://www.wikidata.org/entity/Q253019 Point(8.316666666 51.216666666) +https://nwbib.de/spatial#Q873347 http://www.wikidata.org/entity/Q873347 Lommersdorf http://www.wikidata.org/entity/Q253019 Point(6.75 50.413333333) +https://nwbib.de/spatial#Q894910 http://www.wikidata.org/entity/Q894910 Eigen http://www.wikidata.org/entity/Q253019 Point(6.9351 51.5478) +https://nwbib.de/spatial#Q14863 http://www.wikidata.org/entity/Q14863 Löhne http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.7 52.2) +https://nwbib.de/spatial#Q1576176 http://www.wikidata.org/entity/Q1576176 Ostwig http://www.wikidata.org/entity/Q253019 Point(8.41667 51.3667) +https://nwbib.de/spatial#Q830799 http://www.wikidata.org/entity/Q830799 Kronenburg http://www.wikidata.org/entity/Q253019 Point(6.479508 50.367553) +https://nwbib.de/spatial#Q2521301 http://www.wikidata.org/entity/Q2521301 Vetschau http://www.wikidata.org/entity/Q253019 Point(6.04222 50.8156) +https://nwbib.de/spatial#Q180248 http://www.wikidata.org/entity/Q180248 Kreis Wiedenbrück http://www.wikidata.org/entity/Q106658 Point(8.30528 51.8333) +https://nwbib.de/spatial#Q7036 http://www.wikidata.org/entity/Q7036 Brühl http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.9 50.833333333) +https://nwbib.de/spatial#Q6295 http://www.wikidata.org/entity/Q6295 Rheinisch-Bergischer Kreis http://www.wikidata.org/entity/Q20738811 Point(7.2 51.016666666) +https://nwbib.de/spatial#Q10929 http://www.wikidata.org/entity/Q10929 Eslohe http://www.wikidata.org/entity/Q262166 Point(8.166666666 51.25) +https://nwbib.de/spatial#Q877265 http://www.wikidata.org/entity/Q877265 Vörden http://www.wikidata.org/entity/Q253019 Point(9.22944 51.8192) +https://nwbib.de/spatial#Q1879740 http://www.wikidata.org/entity/Q1879740 Lörick http://www.wikidata.org/entity/Q1852178 Point(6.72778 51.2464) +https://nwbib.de/spatial#Q2500388 http://www.wikidata.org/entity/Q2500388 Urdenbach http://www.wikidata.org/entity/Q1852178 Point(6.86694 51.1458) +https://nwbib.de/spatial#Q2564717 http://www.wikidata.org/entity/Q2564717 Westereiden http://www.wikidata.org/entity/Q253019 Point(8.40549 51.5708) +https://nwbib.de/spatial#Q2265189 http://www.wikidata.org/entity/Q2265189 Seelbach http://www.wikidata.org/entity/Q253019 Point(7.96667 50.8833) +https://nwbib.de/spatial#Q2258621 http://www.wikidata.org/entity/Q2258621 Schöller http://www.wikidata.org/entity/Q253019 Point(7.03028 51.2453) +https://nwbib.de/spatial#Q14936 http://www.wikidata.org/entity/Q14936 Emsdetten http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.534444444 52.172777777) +https://nwbib.de/spatial#Q2707 http://www.wikidata.org/entity/Q2707 Beckum http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(8.040833333 51.755833333) +https://nwbib.de/spatial#Q857805 http://www.wikidata.org/entity/Q857805 Bierenbachtal http://www.wikidata.org/entity/Q253019 Point(7.55972 50.9283) +https://nwbib.de/spatial#Q1722641 http://www.wikidata.org/entity/Q1722641 Kaltenbach http://www.wikidata.org/entity/Q253019 Point(7.44861 50.9728) +https://nwbib.de/spatial#Q3821487 http://www.wikidata.org/entity/Q3821487 Grafschaft Sayn-Wittgenstein-Berleburg http://www.wikidata.org/entity/Q208500, http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1271203 http://www.wikidata.org/entity/Q1271203 Dörenthe http://www.wikidata.org/entity/Q253019 Point(7.68028 52.2225) +https://nwbib.de/spatial#Q1401343 http://www.wikidata.org/entity/Q1401343 Fehrenbracht http://www.wikidata.org/entity/Q253019 Point(8.09917 51.2278) +https://nwbib.de/spatial#Q1286527 http://www.wikidata.org/entity/Q1286527 Wasserstraße http://www.wikidata.org/entity/Q253019 Point(9.1025 52.4742) +https://nwbib.de/spatial#Q1345243 http://www.wikidata.org/entity/Q1345243 Entrup http://www.wikidata.org/entity/Q253019 Point(9.1429 51.8255) +https://nwbib.de/spatial#Q1595784 http://www.wikidata.org/entity/Q1595784 Heiminghausen http://www.wikidata.org/entity/Q253019 Point(8.2614 51.1959) +https://nwbib.de/spatial#Q1341823 http://www.wikidata.org/entity/Q1341823 Ihmert http://www.wikidata.org/entity/Q253019 Point(7.73611 51.3303) +https://nwbib.de/spatial#Q437520 http://www.wikidata.org/entity/Q437520 Altenrüthen http://www.wikidata.org/entity/Q253019 Point(8.40463 51.4965) +https://nwbib.de/spatial#Q56009101 http://www.wikidata.org/entity/Q56009101 Güdderath http://www.wikidata.org/entity/Q253019 Point(6.438194444 51.125055555) +https://nwbib.de/spatial#Q820266 http://www.wikidata.org/entity/Q820266 Bergstein http://www.wikidata.org/entity/Q253019 Point(6.43167 50.6939) +https://nwbib.de/spatial#Q1453185 http://www.wikidata.org/entity/Q1453185 Ispei http://www.wikidata.org/entity/Q253019 Point(7.78028 51.3439) +https://nwbib.de/spatial#Q47012158 http://www.wikidata.org/entity/Q47012158 Neandertal http://www.wikidata.org/entity/Q253019 Point(6.975555555 51.220444444) +https://nwbib.de/spatial#Q1110891 http://www.wikidata.org/entity/Q1110891 Ohligs http://www.wikidata.org/entity/Q253019 Point(7.01167 51.1614) +https://nwbib.de/spatial#Q1654121 http://www.wikidata.org/entity/Q1654121 Velmede http://www.wikidata.org/entity/Q253019 Point(8.37667 51.3561) +https://nwbib.de/spatial#Q1501653 http://www.wikidata.org/entity/Q1501653 Großhau http://www.wikidata.org/entity/Q253019 Point(6.390277777 50.734166666) +https://nwbib.de/spatial#Q29531445 http://www.wikidata.org/entity/Q29531445 Meiersberg http://www.wikidata.org/entity/Q253019 Point(7.27388 51.058185) +https://nwbib.de/spatial#Q1715175 http://www.wikidata.org/entity/Q1715175 Jöllenbeck http://www.wikidata.org/entity/Q253019 Point(8.516666666 52.1) +https://nwbib.de/spatial#Q1606083 http://www.wikidata.org/entity/Q1606083 Henrichenburg http://www.wikidata.org/entity/Q253019 Point(7.31239 51.599) +https://nwbib.de/spatial#Q857097 http://www.wikidata.org/entity/Q857097 Bieberstein http://www.wikidata.org/entity/Q253019 Point(7.61417 50.9344) +https://nwbib.de/spatial#Q1422940 http://www.wikidata.org/entity/Q1422940 Huxel http://www.wikidata.org/entity/Q253019 Point(8.335 51.1892) +https://nwbib.de/spatial#Q15122405 http://www.wikidata.org/entity/Q15122405 Mützenich http://www.wikidata.org/entity/Q253019 Point(6.21666667 50.56666667) +https://nwbib.de/spatial#Q64004191 http://www.wikidata.org/entity/Q64004191 Reeserward http://www.wikidata.org/entity/Q253019 Point(6.34459 51.77668) +https://nwbib.de/spatial#Q55587066 http://www.wikidata.org/entity/Q55587066 Brüllingsen http://www.wikidata.org/entity/Q253019 Point(8.221388888 51.518888888) +https://nwbib.de/spatial#Q1250699 http://www.wikidata.org/entity/Q1250699 Somborn http://www.wikidata.org/entity/Q253019 Point(7.346 51.491) +https://nwbib.de/spatial#Q248236 http://www.wikidata.org/entity/Q248236 Dünnwald http://www.wikidata.org/entity/Q15632166 Point(7.038611111 51.0) +https://nwbib.de/spatial#Q257972 http://www.wikidata.org/entity/Q257972 Schönebeck http://www.wikidata.org/entity/Q253019 Point(6.938333 51.455556) +https://nwbib.de/spatial#Q27901871 http://www.wikidata.org/entity/Q27901871 Derscheid http://www.wikidata.org/entity/Q253019 Point(7.414861111 50.848055555) +https://nwbib.de/spatial#Q56033764 http://www.wikidata.org/entity/Q56033764 Lindental http://www.wikidata.org/entity/Q253019 Point(6.533861111 51.321361111) +https://nwbib.de/spatial#Q1738257 http://www.wikidata.org/entity/Q1738257 Kellersberg http://www.wikidata.org/entity/Q253019 Point(6.162222222 50.865277777) +https://nwbib.de/spatial#Q1182172 http://www.wikidata.org/entity/Q1182172 Dedenborn http://www.wikidata.org/entity/Q253019 Point(6.352822222 50.581613888) +https://nwbib.de/spatial#Q1250655 http://www.wikidata.org/entity/Q1250655 Kley http://www.wikidata.org/entity/Q253019 Point(7.36444 51.4878) +https://nwbib.de/spatial#Q1821093 http://www.wikidata.org/entity/Q1821093 Letmathe http://www.wikidata.org/entity/Q253019 Point(7.61278 51.3692) +https://nwbib.de/spatial#Q2459842 http://www.wikidata.org/entity/Q2459842 Tungerloh-Capellen http://www.wikidata.org/entity/Q253019 Point(7.05044 51.9464) +https://nwbib.de/spatial#Q11047 http://www.wikidata.org/entity/Q11047 Lindlar http://www.wikidata.org/entity/Q262166 Point(7.383333333 51.016666666) +https://nwbib.de/spatial#Q14949 http://www.wikidata.org/entity/Q14949 Rosendahl http://www.wikidata.org/entity/Q262166 Point(7.210555555 52.017222222) +https://nwbib.de/spatial#Q910042 http://www.wikidata.org/entity/Q910042 Brenzingen http://www.wikidata.org/entity/Q253019 Point(7.6 50.8692) +https://nwbib.de/spatial#Q876750 http://www.wikidata.org/entity/Q876750 Wißkirchen http://www.wikidata.org/entity/Q253019 Point(6.733333333 50.65) +https://nwbib.de/spatial#Q1981148 http://www.wikidata.org/entity/Q1981148 Neurath http://www.wikidata.org/entity/Q253019 Point(6.59454 51.0397) +https://nwbib.de/spatial#Q1955153 http://www.wikidata.org/entity/Q1955153 Ammeloe http://www.wikidata.org/entity/Q253019 Point(6.79194 52.07917) +https://nwbib.de/spatial#Q1333255 http://www.wikidata.org/entity/Q1333255 Elpe http://www.wikidata.org/entity/Q253019 Point(8.44722 51.2744) +https://nwbib.de/spatial#Q1713505 http://www.wikidata.org/entity/Q1713505 Lipperreihe http://www.wikidata.org/entity/Q253019 Point(8.63194 51.9339) +https://nwbib.de/spatial#Q1753604 http://www.wikidata.org/entity/Q1753604 Orsbeck http://www.wikidata.org/entity/Q253019 Point(6.14889 51.0875) +https://nwbib.de/spatial#Q153223 http://www.wikidata.org/entity/Q153223 Hausen http://www.wikidata.org/entity/Q253019 Point(6.49356 50.6514) +https://nwbib.de/spatial#Q1739728 http://www.wikidata.org/entity/Q1739728 Kervenheim http://www.wikidata.org/entity/Q253019 Point(6.2775 51.6319) +https://nwbib.de/spatial#Q1896592 http://www.wikidata.org/entity/Q1896592 Marialinden http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2983893 Point(7.32278 50.9325) +https://nwbib.de/spatial#Q19965669 http://www.wikidata.org/entity/Q19965669 Opherdicke http://www.wikidata.org/entity/Q253019 Point(7.64147222 51.48744444) +https://nwbib.de/spatial#Q55585175 http://www.wikidata.org/entity/Q55585175 Krommert http://www.wikidata.org/entity/Q253019 Point(6.714 51.79938) +https://nwbib.de/spatial#Q2162254 http://www.wikidata.org/entity/Q2162254 Rohr http://www.wikidata.org/entity/Q253019 Point(6.73342 50.4525) +https://nwbib.de/spatial#Q2245352 http://www.wikidata.org/entity/Q2245352 Schlückingen http://www.wikidata.org/entity/Q253019 Point(7.86528 51.5197) +https://nwbib.de/spatial#Q15992010 http://www.wikidata.org/entity/Q15992010 Oberrahmede http://www.wikidata.org/entity/Q253019 Point(7.620127 51.245828) +https://nwbib.de/spatial#Q3641512 http://www.wikidata.org/entity/Q3641512 Stadtbezirk Bochum-Süd http://www.wikidata.org/entity/Q2740635 Point(7.24609 51.44426) +https://nwbib.de/spatial#Q1805454 http://www.wikidata.org/entity/Q1805454 Langweiler http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.24187 50.8664) +https://nwbib.de/spatial#Q3821604 http://www.wikidata.org/entity/Q3821604 Grafschaft Sayn-Wittgenstein-Wittgenstein http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1672690 http://www.wikidata.org/entity/Q1672690 Stockum http://www.wikidata.org/entity/Q253019 Point(8.15912 51.4955) +https://nwbib.de/spatial#Q464473 http://www.wikidata.org/entity/Q464473 Eggegebirge http://www.wikidata.org/entity/Q46831 Point(8.966666666 51.733333333) +https://nwbib.de/spatial#Q15056550 http://www.wikidata.org/entity/Q15056550 Hardterbroich-Pesch http://www.wikidata.org/entity/Q253019 Point(6.455495 51.192757) +https://nwbib.de/spatial#Q200068 http://www.wikidata.org/entity/Q200068 Nörvenich http://www.wikidata.org/entity/Q262166 Point(6.65 50.8) +https://nwbib.de/spatial#Q1245768 http://www.wikidata.org/entity/Q1245768 Dornheim http://www.wikidata.org/entity/Q253019 Point(8.33694 51.2486) +https://nwbib.de/spatial#Q610165 http://www.wikidata.org/entity/Q610165 Antweiler http://www.wikidata.org/entity/Q253019 Point(6.74694 50.6064) +https://nwbib.de/spatial#Q2510924 http://www.wikidata.org/entity/Q2510924 Varresbeck http://www.wikidata.org/entity/Q253019 Point(7.09611 51.2558) +https://nwbib.de/spatial#Q437316 http://www.wikidata.org/entity/Q437316 Altenkleusheim http://www.wikidata.org/entity/Q253019 Point(7.92333 51.0067) +https://nwbib.de/spatial#Q28037590 http://www.wikidata.org/entity/Q28037590 Forst http://www.wikidata.org/entity/Q253019 Point(7.4767 50.762) +https://nwbib.de/spatial#Q525183 http://www.wikidata.org/entity/Q525183 Berzbuir http://www.wikidata.org/entity/Q253019 Point(6.460833333 50.760833333) +https://nwbib.de/spatial#Q1699891 http://www.wikidata.org/entity/Q1699891 Höhenberg http://www.wikidata.org/entity/Q15632166 Point(7.02694 50.9411) +https://nwbib.de/spatial#Q646087 http://www.wikidata.org/entity/Q646087 Dahlhausen http://www.wikidata.org/entity/Q253019 Point(7.143888888 51.426388888) +https://nwbib.de/spatial#Q27479182 http://www.wikidata.org/entity/Q27479182 Schmitzbüchel http://www.wikidata.org/entity/Q253019 Point(7.2243766 50.957017) +https://nwbib.de/spatial#Q59240473 http://www.wikidata.org/entity/Q59240473 Stadtbezirk Hagen-Nord http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q57726512 http://www.wikidata.org/entity/Q57726512 Cronenberg http://www.wikidata.org/entity/Q2983893 Point(7.130305555 51.205472222) +https://nwbib.de/spatial#Q1501486 http://www.wikidata.org/entity/Q1501486 Geneiken http://www.wikidata.org/entity/Q253019 Point(6.26667 51.1167) +https://nwbib.de/spatial#Q4195 http://www.wikidata.org/entity/Q4195 Erftstadt http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.766666666 50.816666666) +https://nwbib.de/spatial#Q885362 http://www.wikidata.org/entity/Q885362 Varenholz http://www.wikidata.org/entity/Q253019 Point(8.986388888 52.170555555) +https://nwbib.de/spatial#Q1250584 http://www.wikidata.org/entity/Q1250584 Benninghofen http://www.wikidata.org/entity/Q253019 Point(7.50972 51.4764) +https://nwbib.de/spatial#Q55587347 http://www.wikidata.org/entity/Q55587347 Pöppinghausen http://www.wikidata.org/entity/Q253019 Point(7.266944444 51.579444444) +https://nwbib.de/spatial#Q1618724 http://www.wikidata.org/entity/Q1618724 Hillensberg http://www.wikidata.org/entity/Q253019 Point(5.916666666 50.979166666) +https://nwbib.de/spatial#Q1402578 http://www.wikidata.org/entity/Q1402578 Oberagger http://www.wikidata.org/entity/Q253019 Point(7.65222 50.9864) +https://nwbib.de/spatial#Q1710714 http://www.wikidata.org/entity/Q1710714 Niederwenigern http://www.wikidata.org/entity/Q253019 Point(7.122777777 51.406944444) +https://nwbib.de/spatial#Q26836855 http://www.wikidata.org/entity/Q26836855 Bornen http://www.wikidata.org/entity/Q253019 Point(7.290841 51.051363) +https://nwbib.de/spatial#Q317741 http://www.wikidata.org/entity/Q317741 Losheimergraben http://www.wikidata.org/entity/Q253019 Point(6.3425 50.379722222) +https://nwbib.de/spatial#Q862875 http://www.wikidata.org/entity/Q862875 Billinghausen http://www.wikidata.org/entity/Q253019 Point(8.7516 51.9638) +https://nwbib.de/spatial#Q1743158 http://www.wikidata.org/entity/Q1743158 Kirchenkreis Minden http://www.wikidata.org/entity/Q897303 Point(8.91638 52.2939) +https://nwbib.de/spatial#Q1509133 http://www.wikidata.org/entity/Q1509133 Georghausen http://www.wikidata.org/entity/Q253019 Point(7.26917 50.9939) +https://nwbib.de/spatial#Q740363 http://www.wikidata.org/entity/Q740363 Asseln http://www.wikidata.org/entity/Q253019 Point(8.93333 51.65) +https://nwbib.de/spatial#Q1880510 http://www.wikidata.org/entity/Q1880510 Lützenkirchen http://www.wikidata.org/entity/Q253019 Point(7.05778 51.0656) +https://nwbib.de/spatial#Q47446722 http://www.wikidata.org/entity/Q47446722 Husen http://www.wikidata.org/entity/Q253019 Point(8.721916269 52.309923086) +https://nwbib.de/spatial#Q1389048 http://www.wikidata.org/entity/Q1389048 Waldorf http://www.wikidata.org/entity/Q253019 Point(6.94944 50.7656) +https://nwbib.de/spatial#Q1677263 http://www.wikidata.org/entity/Q1677263 Jackerath http://www.wikidata.org/entity/Q253019 Point(6.4525 51.031944444) +https://nwbib.de/spatial#Q1651482 http://www.wikidata.org/entity/Q1651482 Nammen http://www.wikidata.org/entity/Q253019 Point(8.99472 52.2508) +https://nwbib.de/spatial#Q1738149 http://www.wikidata.org/entity/Q1738149 Keldenich http://www.wikidata.org/entity/Q253019 Point(6.58611 50.5364) +https://nwbib.de/spatial#Q1304523 http://www.wikidata.org/entity/Q1304523 Schweckhausen http://www.wikidata.org/entity/Q253019 Point(9.16389 51.6073) +https://nwbib.de/spatial#Q1674778 http://www.wikidata.org/entity/Q1674778 Isselhorst http://www.wikidata.org/entity/Q253019 Point(8.41111 51.9458) +https://nwbib.de/spatial#Q201718 http://www.wikidata.org/entity/Q201718 Kofferen http://www.wikidata.org/entity/Q253019 Point(6.319444444 51.0) +https://nwbib.de/spatial#Q1625216 http://www.wikidata.org/entity/Q1625216 Holtheim http://www.wikidata.org/entity/Q253019 Point(8.909722222 51.585833333) +https://nwbib.de/spatial#Q1250850 http://www.wikidata.org/entity/Q1250850 Dorweiler (Nörvenich) http://www.wikidata.org/entity/Q253019 Point(6.67583 50.7911) +https://nwbib.de/spatial#Q3893 http://www.wikidata.org/entity/Q3893 Lüdenscheid http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813 Point(7.6273 51.21977) +https://nwbib.de/spatial#Q1515749 http://www.wikidata.org/entity/Q1515749 Heidt http://www.wikidata.org/entity/Q253019 Point(7.20806 51.2644) +https://nwbib.de/spatial#Q1119816 http://www.wikidata.org/entity/Q1119816 Steckenborn http://www.wikidata.org/entity/Q253019 Point(6.352327777 50.627672222) +https://nwbib.de/spatial#Q2025899 http://www.wikidata.org/entity/Q2025899 Saßmicke http://www.wikidata.org/entity/Q253019 Point(7.829166666 50.997777777) +https://nwbib.de/spatial#Q1638987 http://www.wikidata.org/entity/Q1638987 Werthenbach http://www.wikidata.org/entity/Q2983893 Point(8.22083 50.8703) +https://nwbib.de/spatial#Q1623845 http://www.wikidata.org/entity/Q1623845 Hohenwepel http://www.wikidata.org/entity/Q253019 Point(9.136111111 51.532222222) +https://nwbib.de/spatial#Q2554532 http://www.wikidata.org/entity/Q2554532 Wehrden http://www.wikidata.org/entity/Q253019 Point(9.38639 51.7117) +https://nwbib.de/spatial#Q16138 http://www.wikidata.org/entity/Q16138 Oer-Erkenschwick http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.250833333 51.642222222) +https://nwbib.de/spatial#Q27890124 http://www.wikidata.org/entity/Q27890124 Hohr http://www.wikidata.org/entity/Q253019 Point(7.389028 50.901528) +https://nwbib.de/spatial#Q14937 http://www.wikidata.org/entity/Q14937 Olfen http://www.wikidata.org/entity/Q42744322 Point(7.38 51.708611111) +https://nwbib.de/spatial#Q2035697 http://www.wikidata.org/entity/Q2035697 Ostkilver http://www.wikidata.org/entity/Q253019 Point(8.481944444 52.2075) +https://nwbib.de/spatial#Q29878896 http://www.wikidata.org/entity/Q29878896 Busch http://www.wikidata.org/entity/Q253019 Point(7.247832 51.058198) +https://nwbib.de/spatial#Q1575376 http://www.wikidata.org/entity/Q1575376 Hanemicke http://www.wikidata.org/entity/Q253019 Point(7.84028 51.0706) +https://nwbib.de/spatial#Q55890544 http://www.wikidata.org/entity/Q55890544 Herrlichkeit Lembeck http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q48220 http://www.wikidata.org/entity/Q48220 Hakedahl http://www.wikidata.org/entity/Q253019 Point(8.9075 51.945555555) +https://nwbib.de/spatial#Q16295605 http://www.wikidata.org/entity/Q16295605 Zum Hohle http://www.wikidata.org/entity/Q253019 Point(7.6574 51.2558) +https://nwbib.de/spatial#Q2112 http://www.wikidata.org/entity/Q2112 Bielefeld http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q1964689, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322 Point(8.533333333 52.016666666) +https://nwbib.de/spatial#Q1353579 http://www.wikidata.org/entity/Q1353579 Holtum http://www.wikidata.org/entity/Q253019 Point(6.3025 51.1197) +https://nwbib.de/spatial#Q1184182 http://www.wikidata.org/entity/Q1184182 Delhoven http://www.wikidata.org/entity/Q253019 Point(6.77472 51.0789) +https://nwbib.de/spatial#Q1547007 http://www.wikidata.org/entity/Q1547007 Gripekoven http://www.wikidata.org/entity/Q253019 Point(6.32389 51.1422) +https://nwbib.de/spatial#Q630065 http://www.wikidata.org/entity/Q630065 Küntrop http://www.wikidata.org/entity/Q253019 Point(7.817777777 51.284722222) +https://nwbib.de/spatial#Q1019902 http://www.wikidata.org/entity/Q1019902 Bönkhausen http://www.wikidata.org/entity/Q253019 Point(8.02122 51.2857) +https://nwbib.de/spatial#Q18629264 http://www.wikidata.org/entity/Q18629264 Moosfelde http://www.wikidata.org/entity/Q253019 Point(7.986823888 51.462696944) +https://nwbib.de/spatial#Q10898 http://www.wikidata.org/entity/Q10898 Olpe http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q707813 Point(7.843888888 51.029444444) +https://nwbib.de/spatial#Q882715 http://www.wikidata.org/entity/Q882715 Wiemelhausen http://www.wikidata.org/entity/Q253019 Point(7.228055555 51.459722222) +https://nwbib.de/spatial#Q1538519 http://www.wikidata.org/entity/Q1538519 Gosenbach http://www.wikidata.org/entity/Q253019 Point(7.96417 50.8544) +https://nwbib.de/spatial#Q690961 http://www.wikidata.org/entity/Q690961 Hemschlar http://www.wikidata.org/entity/Q253019 Point(8.3625 51.013055555) +https://nwbib.de/spatial#Q437051 http://www.wikidata.org/entity/Q437051 Altenfeld http://www.wikidata.org/entity/Q253019 Point(8.44194 51.2519) +https://nwbib.de/spatial#Q1412180 http://www.wikidata.org/entity/Q1412180 Kreis Minden http://www.wikidata.org/entity/Q106658 Point(8.91667 52.2833) +https://nwbib.de/spatial#Q1250662 http://www.wikidata.org/entity/Q1250662 Körne http://www.wikidata.org/entity/Q253019 Point(7.50306 51.5156) +https://nwbib.de/spatial#Q572255 http://www.wikidata.org/entity/Q572255 Euregio Maas-Rhein http://www.wikidata.org/entity/Q153026 +https://nwbib.de/spatial#Q1625208 http://www.wikidata.org/entity/Q1625208 Holthausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.54829 51.3534) +https://nwbib.de/spatial#Q15123675 http://www.wikidata.org/entity/Q15123675 Osterberg http://www.wikidata.org/entity/Q253019 Point(7.91583333 52.24583333) +https://nwbib.de/spatial#Q33165483 http://www.wikidata.org/entity/Q33165483 Lohne http://www.wikidata.org/entity/Q253019 Point(8.1868 51.5864) +https://nwbib.de/spatial#Q799749 http://www.wikidata.org/entity/Q799749 Baerl http://www.wikidata.org/entity/Q2983893 Point(6.67306 51.4928) +https://nwbib.de/spatial#Q1261718 http://www.wikidata.org/entity/Q1261718 Dröschede http://www.wikidata.org/entity/Q253019 Point(7.65639 51.3742) +https://nwbib.de/spatial#Q2166105 http://www.wikidata.org/entity/Q2166105 Ronsdorf http://www.wikidata.org/entity/Q253019 Point(7.19972 51.2319) +https://nwbib.de/spatial#Q1988918 http://www.wikidata.org/entity/Q1988918 Niehorst http://www.wikidata.org/entity/Q253019 Point(8.34722 51.95) +https://nwbib.de/spatial#Q1740827 http://www.wikidata.org/entity/Q1740827 Kickenbach http://www.wikidata.org/entity/Q253019 Point(8.1025 51.1106) +https://nwbib.de/spatial#Q14817 http://www.wikidata.org/entity/Q14817 Lemgo http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813 Point(8.9043 52.027680555) +https://nwbib.de/spatial#Q1566499 http://www.wikidata.org/entity/Q1566499 Haaren http://www.wikidata.org/entity/Q253019 Point(6.03694 51.0906) +https://nwbib.de/spatial#Q878752 http://www.wikidata.org/entity/Q878752 Landkreis Münster http://www.wikidata.org/entity/Q106658 Point(7.6287 51.963) +https://nwbib.de/spatial#Q3117 http://www.wikidata.org/entity/Q3117 Bergisch Gladbach http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q134626 Point(7.136666666 50.991666666) +https://nwbib.de/spatial#Q4171 http://www.wikidata.org/entity/Q4171 Willich http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.549166666 51.263055555) +https://nwbib.de/spatial#Q1812057 http://www.wikidata.org/entity/Q1812057 Leeden http://www.wikidata.org/entity/Q253019 Point(7.88861 52.2156) +https://nwbib.de/spatial#Q400157 http://www.wikidata.org/entity/Q400157 Ahden http://www.wikidata.org/entity/Q253019 Point(8.623611111 51.601388888) +https://nwbib.de/spatial#Q1531072 http://www.wikidata.org/entity/Q1531072 Rischenau http://www.wikidata.org/entity/Q19730508, http://www.wikidata.org/entity/Q253019 Point(9.280555555 51.880555555) +https://nwbib.de/spatial#Q56576094 http://www.wikidata.org/entity/Q56576094 Binsheim http://www.wikidata.org/entity/Q253019 Point(6.698555555 51.512611111) +https://nwbib.de/spatial#Q1290287 http://www.wikidata.org/entity/Q1290287 Karken http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.073888888 51.103333333) +https://nwbib.de/spatial#Q55501092 http://www.wikidata.org/entity/Q55501092 Röllinghausen http://www.wikidata.org/entity/Q253019 Point(7.245611562 51.591493876) +https://nwbib.de/spatial#Q1675728 http://www.wikidata.org/entity/Q1675728 Iversheim http://www.wikidata.org/entity/Q253019 Point(6.770258333 50.581763888) +https://nwbib.de/spatial#Q1226729 http://www.wikidata.org/entity/Q1226729 Lohberg http://www.wikidata.org/entity/Q253019 Point(6.75631 51.5838) +https://nwbib.de/spatial#Q326332 http://www.wikidata.org/entity/Q326332 Heiligenkirchen http://www.wikidata.org/entity/Q253019 Point(8.871944444 51.909722222) +https://nwbib.de/spatial#Q152328 http://www.wikidata.org/entity/Q152328 Breinig http://www.wikidata.org/entity/Q253019 Point(6.209722222 50.731666666) +https://nwbib.de/spatial#Q181504 http://www.wikidata.org/entity/Q181504 Hörstel http://www.wikidata.org/entity/Q42744322 Point(7.586111111 52.297222222) +https://nwbib.de/spatial#Q832070 http://www.wikidata.org/entity/Q832070 Exter http://www.wikidata.org/entity/Q253019 Point(8.78 52.1378) +https://nwbib.de/spatial#Q1371747 http://www.wikidata.org/entity/Q1371747 Etteln http://www.wikidata.org/entity/Q253019 Point(8.763055555 51.627222222) +https://nwbib.de/spatial#Q1988294 http://www.wikidata.org/entity/Q1988294 Niederndorf http://www.wikidata.org/entity/Q253019 Point(7.9 50.8667) +https://nwbib.de/spatial#Q199292 http://www.wikidata.org/entity/Q199292 Zieverich http://www.wikidata.org/entity/Q253019 Point(6.624722222 50.950833333) +https://nwbib.de/spatial#Q865895 http://www.wikidata.org/entity/Q865895 Birth http://www.wikidata.org/entity/Q253019 Point(7.01833 51.34) +https://nwbib.de/spatial#Q257888 http://www.wikidata.org/entity/Q257888 Gerschede http://www.wikidata.org/entity/Q2983893 Point(6.939444 51.484444) +https://nwbib.de/spatial#Q2473568 http://www.wikidata.org/entity/Q2473568 Uedesheim http://www.wikidata.org/entity/Q253019 Point(6.78833333 51.16333333) +https://nwbib.de/spatial#Q1998045 http://www.wikidata.org/entity/Q1998045 Nordhemmern http://www.wikidata.org/entity/Q253019 Point(8.80667 52.3367) +https://nwbib.de/spatial#Q153754 http://www.wikidata.org/entity/Q153754 Lengsdorf http://www.wikidata.org/entity/Q253019 Point(7.06863 50.7109) +https://nwbib.de/spatial#Q225055 http://www.wikidata.org/entity/Q225055 Langenberg http://www.wikidata.org/entity/Q262166 Point(8.316666666 51.783055555) +https://nwbib.de/spatial#Q19288345 http://www.wikidata.org/entity/Q19288345 Kriel http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q19730508 Point(6.9075 50.92694444) +https://nwbib.de/spatial#Q1157450 http://www.wikidata.org/entity/Q1157450 Dahlhaus http://www.wikidata.org/entity/Q253019 Point(7.24529 50.9251) +https://nwbib.de/spatial#Q15061766 http://www.wikidata.org/entity/Q15061766 Wermingsen http://www.wikidata.org/entity/Q253019 Point(7.717917 51.37454) +https://nwbib.de/spatial#Q1546106 http://www.wikidata.org/entity/Q1546106 Grevenhagen http://www.wikidata.org/entity/Q253019 Point(8.97917 51.7975) +https://nwbib.de/spatial#Q1258017 http://www.wikidata.org/entity/Q1258017 Remlingrade http://www.wikidata.org/entity/Q253019 Point(7.33417 51.2361) +https://nwbib.de/spatial#Q2037882 http://www.wikidata.org/entity/Q2037882 Ottmarsbocholt http://www.wikidata.org/entity/Q253019 Point(7.53583 51.8219) +https://nwbib.de/spatial#Q895515 http://www.wikidata.org/entity/Q895515 Kreis Lüdinghausen http://www.wikidata.org/entity/Q106658 Point(7.44444 51.7681) +https://nwbib.de/spatial#Q1959086 http://www.wikidata.org/entity/Q1959086 Berg Fidel http://www.wikidata.org/entity/Q253019 Point(7.62694 51.9278) +https://nwbib.de/spatial#Q1369618 http://www.wikidata.org/entity/Q1369618 Niedermörmter http://www.wikidata.org/entity/Q253019 Point(6.383333333 51.744444444) +https://nwbib.de/spatial#Q14400001 http://www.wikidata.org/entity/Q14400001 Sange http://www.wikidata.org/entity/Q253019 Point(7.94134 51.1602) +https://nwbib.de/spatial#Q1019825 http://www.wikidata.org/entity/Q1019825 Bökendorf http://www.wikidata.org/entity/Q253019 Point(9.2184 51.7715) +https://nwbib.de/spatial#Q317334 http://www.wikidata.org/entity/Q317334 Holzlar http://www.wikidata.org/entity/Q253019 Point(7.173055555 50.744166666) +https://nwbib.de/spatial#Q469928 http://www.wikidata.org/entity/Q469928 Rheinhausen (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.71194 51.4072) +https://nwbib.de/spatial#Q1367817 http://www.wikidata.org/entity/Q1367817 Hünningen http://www.wikidata.org/entity/Q253019 Point(7.936280555 51.493688888) +https://nwbib.de/spatial#Q15295042 http://www.wikidata.org/entity/Q15295042 Zweckel http://www.wikidata.org/entity/Q2983893 Point(6.98055556 51.58888889) +https://nwbib.de/spatial#Q1548548 http://www.wikidata.org/entity/Q1548548 Großenbreden http://www.wikidata.org/entity/Q253019 Point(9.250391666 51.834216666) +https://nwbib.de/spatial#Q242514 http://www.wikidata.org/entity/Q242514 Extertal http://www.wikidata.org/entity/Q262166 Point(9.116666666 52.066666666) +https://nwbib.de/spatial#Q1250616 http://www.wikidata.org/entity/Q1250616 Fleier http://www.wikidata.org/entity/Q253019 Point(7.60028 51.5608) +https://nwbib.de/spatial#Q52545287 http://www.wikidata.org/entity/Q52545287 Berensberg http://www.wikidata.org/entity/Q253019 Point(6.090722222 50.811027777) +https://nwbib.de/spatial#Q1345232 http://www.wikidata.org/entity/Q1345232 Entrup http://www.wikidata.org/entity/Q253019 Point(8.88285 52.0504) +https://nwbib.de/spatial#Q2559249 http://www.wikidata.org/entity/Q2559249 Wendlinghausen http://www.wikidata.org/entity/Q253019 Point(9.01926 52.0135) +https://nwbib.de/spatial#Q33123498 http://www.wikidata.org/entity/Q33123498 Winterswick http://www.wikidata.org/entity/Q253019 Point(6.604777777 51.529777777) +https://nwbib.de/spatial#Q1310002 http://www.wikidata.org/entity/Q1310002 Wichlinghausen http://www.wikidata.org/entity/Q2983893 Point(7.215 51.2831) +https://nwbib.de/spatial#Q814310 http://www.wikidata.org/entity/Q814310 Beggendorf http://www.wikidata.org/entity/Q253019 Point(6.168611111 50.924722222) +https://nwbib.de/spatial#Q1291886 http://www.wikidata.org/entity/Q1291886 Veltheim http://www.wikidata.org/entity/Q253019 Point(8.96639 52.1878) +https://nwbib.de/spatial#Q2009801 http://www.wikidata.org/entity/Q2009801 Oberhausen http://www.wikidata.org/entity/Q253019 Point(6.46472 50.5081) +https://nwbib.de/spatial#Q2064696 http://www.wikidata.org/entity/Q2064696 Pavenstädt http://www.wikidata.org/entity/Q253019 Point(8.34444 51.9111) +https://nwbib.de/spatial#Q781679 http://www.wikidata.org/entity/Q781679 Langel http://www.wikidata.org/entity/Q15632166 Point(7.00556 50.8469) +https://nwbib.de/spatial#Q23788002 http://www.wikidata.org/entity/Q23788002 Stadtbezirk Bochum-Ost http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q2130101 http://www.wikidata.org/entity/Q2130101 Ramersdorf http://www.wikidata.org/entity/Q253019 Point(7.15442 50.7244) +https://nwbib.de/spatial#Q1601287 http://www.wikidata.org/entity/Q1601287 Heisberg http://www.wikidata.org/entity/Q253019 Point(7.92468 50.8787) +https://nwbib.de/spatial#Q243474 http://www.wikidata.org/entity/Q243474 Rees http://www.wikidata.org/entity/Q42744322 Point(6.4 51.766666666) +https://nwbib.de/spatial#Q1797347 http://www.wikidata.org/entity/Q1797347 Küstelberg http://www.wikidata.org/entity/Q253019 Point(8.604138888 51.224119444) +https://nwbib.de/spatial#Q27907265 http://www.wikidata.org/entity/Q27907265 Hufe http://www.wikidata.org/entity/Q253019 Point(7.283937 50.967388) +https://nwbib.de/spatial#Q6257 http://www.wikidata.org/entity/Q6257 Kreis Mettmann http://www.wikidata.org/entity/Q20738811 Point(7.0 51.25) +https://nwbib.de/spatial#Q1369141 http://www.wikidata.org/entity/Q1369141 Stadtbezirk Mengede http://www.wikidata.org/entity/Q2740635 Point(7.3851 51.574619444) +https://nwbib.de/spatial#Q2647416 http://www.wikidata.org/entity/Q2647416 Alkenrath http://www.wikidata.org/entity/Q253019 Point(7.02893 51.0416) +https://nwbib.de/spatial#Q1428603 http://www.wikidata.org/entity/Q1428603 Flierich http://www.wikidata.org/entity/Q253019 Point(7.80472 51.5889) +https://nwbib.de/spatial#Q1567375 http://www.wikidata.org/entity/Q1567375 Haddenhausen http://www.wikidata.org/entity/Q253019 Point(8.82806 52.2731) +https://nwbib.de/spatial#Q28109553 http://www.wikidata.org/entity/Q28109553 Ramsloh http://www.wikidata.org/entity/Q253019 Point(7.566028 51.260028) +https://nwbib.de/spatial#Q1742454 http://www.wikidata.org/entity/Q1742454 Kirchberg (Jülich) http://www.wikidata.org/entity/Q253019 Point(6.35389 50.8986) +https://nwbib.de/spatial#Q1250611 http://www.wikidata.org/entity/Q1250611 Dorstfeld http://www.wikidata.org/entity/Q2983893 Point(7.42417 51.5128) +https://nwbib.de/spatial#Q111827768 http://www.wikidata.org/entity/Q111827768 Dorp http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1499802 http://www.wikidata.org/entity/Q1499802 Beckhausen http://www.wikidata.org/entity/Q253019 Point(7.04266 51.5496) +https://nwbib.de/spatial#Q1451370 http://www.wikidata.org/entity/Q1451370 Frasselt http://www.wikidata.org/entity/Q253019 Point(6.023055555 51.771944444) +https://nwbib.de/spatial#Q181825 http://www.wikidata.org/entity/Q181825 Holsterhausen http://www.wikidata.org/entity/Q253019 Point(6.995278 51.440833) +https://nwbib.de/spatial#Q44181064 http://www.wikidata.org/entity/Q44181064 Lowick http://www.wikidata.org/entity/Q253019 Point(6.596944444 51.843055555) +https://nwbib.de/spatial#Q1228176 http://www.wikidata.org/entity/Q1228176 Dirmerzheim http://www.wikidata.org/entity/Q253019 Point(6.76681 50.8288) +https://nwbib.de/spatial#Q242880 http://www.wikidata.org/entity/Q242880 Horn-Bad Meinberg http://www.wikidata.org/entity/Q42744322 Point(8.966666666 51.883333333) +https://nwbib.de/spatial#Q2103 http://www.wikidata.org/entity/Q2103 Bochum http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q253030, http://www.wikidata.org/entity/Q42744322 Point(7.216666666 51.483333333) +https://nwbib.de/spatial#Q1345089 http://www.wikidata.org/entity/Q1345089 Herongen http://www.wikidata.org/entity/Q253019 Point(6.250278 51.3875) +https://nwbib.de/spatial#Q2233609 http://www.wikidata.org/entity/Q2233609 Scherfede http://www.wikidata.org/entity/Q253019 Point(9.030555555 51.530555555) +https://nwbib.de/spatial#Q1573617 http://www.wikidata.org/entity/Q1573617 Stadtbezirk Uentrop http://www.wikidata.org/entity/Q2740635 Point(7.94194 51.6903) +https://nwbib.de/spatial#Q17592686 http://www.wikidata.org/entity/Q17592686 Kirchenkreis Aachen http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q44081891 http://www.wikidata.org/entity/Q44081891 Stapelage http://www.wikidata.org/entity/Q253019 Point(8.736944444 51.946666666) +https://nwbib.de/spatial#Q2593915 http://www.wikidata.org/entity/Q2593915 Wormersdorf http://www.wikidata.org/entity/Q11183787, http://www.wikidata.org/entity/Q253019 Point(6.98889 50.6067) +https://nwbib.de/spatial#Q818460 http://www.wikidata.org/entity/Q818460 Benzelrath http://www.wikidata.org/entity/Q253019 Point(6.79017 50.903) +https://nwbib.de/spatial#Q258026 http://www.wikidata.org/entity/Q258026 Vogelheim http://www.wikidata.org/entity/Q2983893 Point(6.986944 51.491111) +https://nwbib.de/spatial#Q199974 http://www.wikidata.org/entity/Q199974 Hürtgenwald http://www.wikidata.org/entity/Q262166 Point(6.379722222 50.717222222) +https://nwbib.de/spatial#Q15055941 http://www.wikidata.org/entity/Q15055941 Eikamp http://www.wikidata.org/entity/Q253019 Point(7.185037 51.018614) +https://nwbib.de/spatial#Q1250712 http://www.wikidata.org/entity/Q1250712 Westerfilde http://www.wikidata.org/entity/Q253019 Point(7.38333 51.55) +https://nwbib.de/spatial#Q1827489 http://www.wikidata.org/entity/Q1827489 Lippern http://www.wikidata.org/entity/Q253019 Point(6.86991 51.484) +https://nwbib.de/spatial#Q1325506 http://www.wikidata.org/entity/Q1325506 Eldagsen http://www.wikidata.org/entity/Q253019 Point(8.94078 52.3863) +https://nwbib.de/spatial#Q54785788 http://www.wikidata.org/entity/Q54785788 Überruhr-Hinsel http://www.wikidata.org/entity/Q253019 Point(7.07588 51.42961) +https://nwbib.de/spatial#Q2815 http://www.wikidata.org/entity/Q2815 Beelen http://www.wikidata.org/entity/Q262166 Point(8.118055555 51.929166666) +https://nwbib.de/spatial#Q1498514 http://www.wikidata.org/entity/Q1498514 Gehlenbeck http://www.wikidata.org/entity/Q253019 Point(8.648333333 52.310277777) +https://nwbib.de/spatial#Q2271193 http://www.wikidata.org/entity/Q2271193 Sennestadt http://www.wikidata.org/entity/Q12104567, http://www.wikidata.org/entity/Q253019 Point(8.583333333 51.95) +https://nwbib.de/spatial#Q50377255 http://www.wikidata.org/entity/Q50377255 Rengert http://www.wikidata.org/entity/Q253019 Point(7.294083333 50.871277777) +https://nwbib.de/spatial#Q56099483 http://www.wikidata.org/entity/Q56099483 Dekanat Dortmund http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56099734 http://www.wikidata.org/entity/Q56099734 Dekanat Hochsauerland-Mitte http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1276304 http://www.wikidata.org/entity/Q1276304 Mönninghausen http://www.wikidata.org/entity/Q253019 Point(8.45389 51.6753) +https://nwbib.de/spatial#Q25158552 http://www.wikidata.org/entity/Q25158552 Holderberg http://www.wikidata.org/entity/Q253019 Point(6.6078 51.4115) +https://nwbib.de/spatial#Q1289696 http://www.wikidata.org/entity/Q1289696 Opherten http://www.wikidata.org/entity/Q253019 Point(6.447222222 51.011666666) +https://nwbib.de/spatial#Q14954 http://www.wikidata.org/entity/Q14954 Porta Westfalica http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.933333333 52.216666666) +https://nwbib.de/spatial#Q182716 http://www.wikidata.org/entity/Q182716 Hille http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q3957 Point(8.75 52.333055555) +https://nwbib.de/spatial#Q162976 http://www.wikidata.org/entity/Q162976 Alpen http://www.wikidata.org/entity/Q262166 Point(6.5125 51.575) +https://nwbib.de/spatial#Q26836856 http://www.wikidata.org/entity/Q26836856 Engeldorf http://www.wikidata.org/entity/Q253019 Point(7.253777777 50.998666666) +https://nwbib.de/spatial#Q2512937 http://www.wikidata.org/entity/Q2512937 Venne http://www.wikidata.org/entity/Q253019 Point(7.54722 51.8528) +https://nwbib.de/spatial#Q2268490 http://www.wikidata.org/entity/Q2268490 Sellinghausen http://www.wikidata.org/entity/Q253019 Point(8.26472 51.2133) +https://nwbib.de/spatial#Q1573603 http://www.wikidata.org/entity/Q1573603 Stadtbezirk Hamm-Bockum-Hövel http://www.wikidata.org/entity/Q2740635 Point(7.76139 51.6947) +https://nwbib.de/spatial#Q2596714 http://www.wikidata.org/entity/Q2596714 Würgassen http://www.wikidata.org/entity/Q253019 Point(9.41 51.6425) +https://nwbib.de/spatial#Q15908975 http://www.wikidata.org/entity/Q15908975 Obermeiderich http://www.wikidata.org/entity/Q2983893 Point(6.803 51.4676) +https://nwbib.de/spatial#Q432809 http://www.wikidata.org/entity/Q432809 Alstädten-Burbach http://www.wikidata.org/entity/Q253019 Point(6.85611 50.8819) +https://nwbib.de/spatial#Q1569914 http://www.wikidata.org/entity/Q1569914 Hakenberg http://www.wikidata.org/entity/Q253019 Point(8.94111 51.6403) +https://nwbib.de/spatial#Q2048240 http://www.wikidata.org/entity/Q2048240 Palmersheim http://www.wikidata.org/entity/Q253019 Point(6.860277777 50.636666666) +https://nwbib.de/spatial#Q457468 http://www.wikidata.org/entity/Q457468 Grafschaft Rietberg http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q26830017 Point(8.434818 51.799154) +https://nwbib.de/spatial#Q313969 http://www.wikidata.org/entity/Q313969 Regierungsbezirk Minden http://www.wikidata.org/entity/Q1850612, http://www.wikidata.org/entity/Q829277 Point(8.92075 52.288) +https://nwbib.de/spatial#Q832298 http://www.wikidata.org/entity/Q832298 Forstwald http://www.wikidata.org/entity/Q253019 Point(6.29 51.18) +https://nwbib.de/spatial#Q315288 http://www.wikidata.org/entity/Q315288 Grafschaft Arnsberg http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1710815 http://www.wikidata.org/entity/Q1710815 Blankenstein http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(7.2275 51.40638889) +https://nwbib.de/spatial#Q61726649 http://www.wikidata.org/entity/Q61726649 Mürmeln http://www.wikidata.org/entity/Q253019 Point(6.509583333 51.121388888) +https://nwbib.de/spatial#Q33514680 http://www.wikidata.org/entity/Q33514680 Wemb http://www.wikidata.org/entity/Q253019 Point(6.17638 51.58646) +https://nwbib.de/spatial#Q1258005 http://www.wikidata.org/entity/Q1258005 Dreimühlen http://www.wikidata.org/entity/Q253019 Point(6.66166 50.5435) +https://nwbib.de/spatial#Q1501157 http://www.wikidata.org/entity/Q1501157 Schöller-Dornap http://www.wikidata.org/entity/Q253019 Point(7.05333 51.2497) +https://nwbib.de/spatial#Q1602716 http://www.wikidata.org/entity/Q1602716 Helle http://www.wikidata.org/entity/Q253019 Point(7.35667 51.0294) +https://nwbib.de/spatial#Q819754 http://www.wikidata.org/entity/Q819754 Bergheim http://www.wikidata.org/entity/Q253019 Point(7.09124 50.7752) +https://nwbib.de/spatial#Q1803277 http://www.wikidata.org/entity/Q1803277 Landkreis Köln http://www.wikidata.org/entity/Q106658 +https://nwbib.de/spatial#Q3146968 http://www.wikidata.org/entity/Q3146968 Hau http://www.wikidata.org/entity/Q123705, http://www.wikidata.org/entity/Q253019 Point(6.15917 51.76278) +https://nwbib.de/spatial#Q1250687 http://www.wikidata.org/entity/Q1250687 Renninghausen http://www.wikidata.org/entity/Q253019 Point(7.45 51.4767) +https://nwbib.de/spatial#Q2042265 http://www.wikidata.org/entity/Q2042265 Ovenstädt http://www.wikidata.org/entity/Q253019 Point(8.96944 52.4194) +https://nwbib.de/spatial#Q61310666 http://www.wikidata.org/entity/Q61310666 Hemden http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q3257686 Point(6.59083 51.87806) +https://nwbib.de/spatial#Q1808276 http://www.wikidata.org/entity/Q1808276 Laurenzberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(6.25092 50.8667) +https://nwbib.de/spatial#Q5628 http://www.wikidata.org/entity/Q5628 Schmallenberg http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.3 51.133333333) +https://nwbib.de/spatial#Q1250602 http://www.wikidata.org/entity/Q1250602 Derne http://www.wikidata.org/entity/Q253019 Point(7.52278 51.5694) +https://nwbib.de/spatial#Q50388833 http://www.wikidata.org/entity/Q50388833 Ohlig http://www.wikidata.org/entity/Q3257686 Point(7.328 50.8908) +https://nwbib.de/spatial#Q57726117 http://www.wikidata.org/entity/Q57726117 Vohwinkel http://www.wikidata.org/entity/Q2983893 Point(7.063916666 51.232888888) +https://nwbib.de/spatial#Q998646 http://www.wikidata.org/entity/Q998646 Merten http://www.wikidata.org/entity/Q253019 Point(6.92306 50.7786) +https://nwbib.de/spatial#Q2645404 http://www.wikidata.org/entity/Q2645404 Speelberg http://www.wikidata.org/entity/Q253019 Point(6.25389 51.84833) +https://nwbib.de/spatial#Q889190 http://www.wikidata.org/entity/Q889190 Bockert http://www.wikidata.org/entity/Q253019 Point(6.37917 51.2375) +https://nwbib.de/spatial#Q644860 http://www.wikidata.org/entity/Q644860 Brüntrup http://www.wikidata.org/entity/Q253019 Point(8.995833333 51.941944444) +https://nwbib.de/spatial#Q1455025 http://www.wikidata.org/entity/Q1455025 Frelenberg http://www.wikidata.org/entity/Q253019 Point(6.10951 50.9437) +https://nwbib.de/spatial#Q1737328 http://www.wikidata.org/entity/Q1737328 Steinbeck http://www.wikidata.org/entity/Q253019 Point(7.7 52.3519) +https://nwbib.de/spatial#Q2136557 http://www.wikidata.org/entity/Q2136557 Reelkirchen http://www.wikidata.org/entity/Q253019 Point(9.02806 51.9142) +https://nwbib.de/spatial#Q6163 http://www.wikidata.org/entity/Q6163 Kreis Unna http://www.wikidata.org/entity/Q20738811 Point(7.67 51.58) +https://nwbib.de/spatial#Q691386 http://www.wikidata.org/entity/Q691386 Vilich-Müldorf http://www.wikidata.org/entity/Q253019 Point(7.144975 50.756930555) +https://nwbib.de/spatial#Q2565014 http://www.wikidata.org/entity/Q2565014 Westernbödefeld http://www.wikidata.org/entity/Q253019 Point(8.37167 51.2569) +https://nwbib.de/spatial#Q2009838 http://www.wikidata.org/entity/Q2009838 Oberheuslingen http://www.wikidata.org/entity/Q253019 Point(7.90556 50.8928) +https://nwbib.de/spatial#Q327896 http://www.wikidata.org/entity/Q327896 Mülheim http://www.wikidata.org/entity/Q15632166 Point(7.004166666 50.962222222) +https://nwbib.de/spatial#Q1698414 http://www.wikidata.org/entity/Q1698414 Müsen http://www.wikidata.org/entity/Q253019 Point(8.042222222 50.988333333) +https://nwbib.de/spatial#Q884315 http://www.wikidata.org/entity/Q884315 Kölner Bucht http://www.wikidata.org/entity/Q190429, http://www.wikidata.org/entity/Q1970725 Point(6.916666666 51.016666666) +https://nwbib.de/spatial#Q2473696 http://www.wikidata.org/entity/Q2473696 Uetterath http://www.wikidata.org/entity/Q253019 Point(6.13383 51.0212) +https://nwbib.de/spatial#Q2132687 http://www.wikidata.org/entity/Q2132687 Ratheim http://www.wikidata.org/entity/Q253019 Point(6.17722 51.0675) +https://nwbib.de/spatial#Q7923 http://www.wikidata.org/entity/Q7923 Regierungsbezirk Detmold http://www.wikidata.org/entity/Q829277 Point(8.75 52.0) +https://nwbib.de/spatial#Q1787485 http://www.wikidata.org/entity/Q1787485 Kreis Ruhrort http://www.wikidata.org/entity/Q5283531 Point(6.748323888 51.449928055) +https://nwbib.de/spatial#Q1805215 http://www.wikidata.org/entity/Q1805215 Langewiese http://www.wikidata.org/entity/Q253019 Point(8.461813888 51.154822222) +https://nwbib.de/spatial#Q890256 http://www.wikidata.org/entity/Q890256 Boelerheide http://www.wikidata.org/entity/Q253019 Point(7.466930555 51.382069444) +https://nwbib.de/spatial#Q26696033 http://www.wikidata.org/entity/Q26696033 Neheim http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q3257686 Point(7.96077 51.45301) +https://nwbib.de/spatial#Q1980590 http://www.wikidata.org/entity/Q1980590 Neuhaus http://www.wikidata.org/entity/Q253019 Point(8.15083 51.4564) +https://nwbib.de/spatial#Q1173415 http://www.wikidata.org/entity/Q1173415 Davensberg http://www.wikidata.org/entity/Q253019 Point(7.59167 51.8175) +https://nwbib.de/spatial#Q1747049 http://www.wikidata.org/entity/Q1747049 Spellen http://www.wikidata.org/entity/Q253019 Point(6.61417 51.6094) +https://nwbib.de/spatial#Q2009133 http://www.wikidata.org/entity/Q2009133 Oberbarmen http://www.wikidata.org/entity/Q13415859 Point(7.2225 51.2844) +https://nwbib.de/spatial#Q181877 http://www.wikidata.org/entity/Q181877 Ladbergen http://www.wikidata.org/entity/Q262166 Point(7.737222222 52.136666666) +https://nwbib.de/spatial#Q1318117 http://www.wikidata.org/entity/Q1318117 Kehn http://www.wikidata.org/entity/Q253019 Point(6.458333333 51.304166666) +https://nwbib.de/spatial#Q1283272 http://www.wikidata.org/entity/Q1283272 Thülen http://www.wikidata.org/entity/Q253019 Point(8.644166666 51.417777777) +https://nwbib.de/spatial#Q2139034 http://www.wikidata.org/entity/Q2139034 Rehsiepen http://www.wikidata.org/entity/Q253019 Point(8.41306 51.1961) +https://nwbib.de/spatial#Q64739586 http://www.wikidata.org/entity/Q64739586 Beverau http://www.wikidata.org/entity/Q2983893 Point(6.10960007 50.76121907) +https://nwbib.de/spatial#Q1661576 http://www.wikidata.org/entity/Q1661576 Oberrödinghausen http://www.wikidata.org/entity/Q253019 Point(7.84361 51.3981) +https://nwbib.de/spatial#Q432827 http://www.wikidata.org/entity/Q432827 Alswede http://www.wikidata.org/entity/Q253019 Point(8.558333333 52.336388888) +https://nwbib.de/spatial#Q14929 http://www.wikidata.org/entity/Q14929 Kempen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.419444444 51.365833333) +https://nwbib.de/spatial#Q2760 http://www.wikidata.org/entity/Q2760 Ennigerloh http://www.wikidata.org/entity/Q42744322 Point(8.025555555 51.836666666) +https://nwbib.de/spatial#Q1623575 http://www.wikidata.org/entity/Q1623575 Hohehaus http://www.wikidata.org/entity/Q253019 Point(9.274933333 51.826022222) +https://nwbib.de/spatial#Q883719 http://www.wikidata.org/entity/Q883719 Lövenich http://www.wikidata.org/entity/Q15632166 Point(6.82944 50.9467) +https://nwbib.de/spatial#Q1880255 http://www.wikidata.org/entity/Q1880255 Lüerdissen http://www.wikidata.org/entity/Q253019 Point(8.92691 52.0604) +https://nwbib.de/spatial#Q818831 http://www.wikidata.org/entity/Q818831 Berchum http://www.wikidata.org/entity/Q253019 Point(7.536111111 51.387261111) +https://nwbib.de/spatial#Q19371153 http://www.wikidata.org/entity/Q19371153 Horst http://www.wikidata.org/entity/Q253019 Point(6.1775 51.02805556) +https://nwbib.de/spatial#Q2380054 http://www.wikidata.org/entity/Q2380054 Söven http://www.wikidata.org/entity/Q253019 Point(7.27979 50.7474) +https://nwbib.de/spatial#Q1020930 http://www.wikidata.org/entity/Q1020930 Bürbach http://www.wikidata.org/entity/Q253019 Point(8.0575 50.8867) +https://nwbib.de/spatial#Q1879628 http://www.wikidata.org/entity/Q1879628 Löcken http://www.wikidata.org/entity/Q253019 Point(6.038888888 51.061944444) +https://nwbib.de/spatial#Q15857371 http://www.wikidata.org/entity/Q15857371 Hombruch http://www.wikidata.org/entity/Q253019 Point(7.43888889 51.47555556) +https://nwbib.de/spatial#Q1372871 http://www.wikidata.org/entity/Q1372871 Siegkreis http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(7.20444444 50.80138889) +https://nwbib.de/spatial#Q5457331 http://www.wikidata.org/entity/Q5457331 Flamschen http://www.wikidata.org/entity/Q253019 Point(7.14713269 51.9226173) +https://nwbib.de/spatial#Q2633935 http://www.wikidata.org/entity/Q2633935 Achenbach http://www.wikidata.org/entity/Q253019 Point(7.99571 50.8665) +https://nwbib.de/spatial#Q436878 http://www.wikidata.org/entity/Q436878 Altenburg (Jülich) http://www.wikidata.org/entity/Q253019 Point(6.39056 50.8903) +https://nwbib.de/spatial#Q153428 http://www.wikidata.org/entity/Q153428 Weisweiler http://www.wikidata.org/entity/Q253019 Point(6.315833333 50.829166666) +https://nwbib.de/spatial#Q1250651 http://www.wikidata.org/entity/Q1250651 Kirchlinde http://www.wikidata.org/entity/Q253019 Point(7.36667 51.5333) +https://nwbib.de/spatial#Q52545286 http://www.wikidata.org/entity/Q52545286 Wildnis http://www.wikidata.org/entity/Q253019 Point(6.092611111 50.8915) +https://nwbib.de/spatial#Q263744 http://www.wikidata.org/entity/Q263744 Ülpenich http://www.wikidata.org/entity/Q253019 Point(6.694444444 50.675) +https://nwbib.de/spatial#Q14524602 http://www.wikidata.org/entity/Q14524602 Styrum http://www.wikidata.org/entity/Q253019 Point(6.85472 51.4528) +https://nwbib.de/spatial#Q2185043 http://www.wikidata.org/entity/Q2185043 Tönisheide http://www.wikidata.org/entity/Q2983893 Point(7.0666 51.3135) +https://nwbib.de/spatial#Q1109189 http://www.wikidata.org/entity/Q1109189 Quadrath-Ichendorf http://www.wikidata.org/entity/Q253019 Point(6.68611 50.9392) +https://nwbib.de/spatial#Q11337 http://www.wikidata.org/entity/Q11337 Herdecke http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.433333333 51.4) +https://nwbib.de/spatial#Q1767416 http://www.wikidata.org/entity/Q1767416 Rösebeck http://www.wikidata.org/entity/Q253019 Point(9.24818 51.5219) +https://nwbib.de/spatial#Q1587845 http://www.wikidata.org/entity/Q1587845 Kreis Detmold http://www.wikidata.org/entity/Q106658 Point(8.88333 51.9333) +https://nwbib.de/spatial#Q1499818 http://www.wikidata.org/entity/Q1499818 Ückendorf http://www.wikidata.org/entity/Q253019 Point(7.1225 51.4933) +https://nwbib.de/spatial#Q1670477 http://www.wikidata.org/entity/Q1670477 Schapdetten http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(7.41306 51.9358) +https://nwbib.de/spatial#Q1220086 http://www.wikidata.org/entity/Q1220086 Diebrock http://www.wikidata.org/entity/Q253019 Point(8.626666666 52.115) +https://nwbib.de/spatial#Q1770238 http://www.wikidata.org/entity/Q1770238 Fühlingen http://www.wikidata.org/entity/Q15632166 Point(6.90278 51.0369) +https://nwbib.de/spatial#Q2586698 http://www.wikidata.org/entity/Q2586698 Heven http://www.wikidata.org/entity/Q253019 Point(7.30861 51.4403) +https://nwbib.de/spatial#Q814021 http://www.wikidata.org/entity/Q814021 Beeck http://www.wikidata.org/entity/Q253019 Point(6.18778 50.985) +https://nwbib.de/spatial#Q14953 http://www.wikidata.org/entity/Q14953 Lage http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.8 51.983333333) +https://nwbib.de/spatial#Q5632 http://www.wikidata.org/entity/Q5632 Meschede http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.283611111 51.350277777) +https://nwbib.de/spatial#Q1390848 http://www.wikidata.org/entity/Q1390848 Salchendorf http://www.wikidata.org/entity/Q253019 Point(8.015 50.795) +https://nwbib.de/spatial#Q3821213 http://www.wikidata.org/entity/Q3821213 Grafschaft Sayn-Wittgenstein-Hohenstein http://www.wikidata.org/entity/Q353344 Point(8.4 50.91666667) +https://nwbib.de/spatial#Q1697213 http://www.wikidata.org/entity/Q1697213 Kirchscheid http://www.wikidata.org/entity/Q253019 Point(7.22013 50.8729) +https://nwbib.de/spatial#Q24355720 http://www.wikidata.org/entity/Q24355720 Jesinghausen http://www.wikidata.org/entity/Q253019 Point(7.25588889 51.28358333) +https://nwbib.de/spatial#Q56007789 http://www.wikidata.org/entity/Q56007789 Grafschaft Sayn-Wittgenstein http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1624002 http://www.wikidata.org/entity/Q1624002 Hohkeppel http://www.wikidata.org/entity/Q253019 Point(7.30972 50.9797) +https://nwbib.de/spatial#Q64004189 http://www.wikidata.org/entity/Q64004189 Bergswick http://www.wikidata.org/entity/Q253019 Point(6.4339 51.76) +https://nwbib.de/spatial#Q1341121 http://www.wikidata.org/entity/Q1341121 Grönebach http://www.wikidata.org/entity/Q253019 Point(8.5598 51.2291) +https://nwbib.de/spatial#Q1184042 http://www.wikidata.org/entity/Q1184042 Delecke http://www.wikidata.org/entity/Q253019 Point(8.09118 51.49) +https://nwbib.de/spatial#Q1566024 http://www.wikidata.org/entity/Q1566024 Hostel http://www.wikidata.org/entity/Q253019 Point(6.60972 50.6008) +https://nwbib.de/spatial#Q1663115 http://www.wikidata.org/entity/Q1663115 Holweide http://www.wikidata.org/entity/Q15632166 Point(7.04472 50.9694) +https://nwbib.de/spatial#Q277492 http://www.wikidata.org/entity/Q277492 Homberg http://www.wikidata.org/entity/Q253019 Point(6.70917 51.4506) +https://nwbib.de/spatial#Q3912 http://www.wikidata.org/entity/Q3912 Arnsberg http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(8.064444444 51.396666666) +https://nwbib.de/spatial#Q1414459 http://www.wikidata.org/entity/Q1414459 Peckeloh http://www.wikidata.org/entity/Q4835091, http://www.wikidata.org/entity/Q253019 Point(8.12533 52.0205) +https://nwbib.de/spatial#Q1824210 http://www.wikidata.org/entity/Q1824210 Lieme http://www.wikidata.org/entity/Q253019 Point(8.827936111 52.025269444) +https://nwbib.de/spatial#Q29642630 http://www.wikidata.org/entity/Q29642630 Hohne (Lengerich) http://www.wikidata.org/entity/Q253019 Point(7.8973031 52.1686939) +https://nwbib.de/spatial#Q248483 http://www.wikidata.org/entity/Q248483 Oberdollendorf http://www.wikidata.org/entity/Q253019 Point(7.181944444 50.702222222) +https://nwbib.de/spatial#Q61275196 http://www.wikidata.org/entity/Q61275196 Wechte http://www.wikidata.org/entity/Q253019 Point(7.787527777 52.206055555) +https://nwbib.de/spatial#Q1479515 http://www.wikidata.org/entity/Q1479515 Rhode http://www.wikidata.org/entity/Q253019 Point(7.86222 51.0514) +https://nwbib.de/spatial#Q44763534 http://www.wikidata.org/entity/Q44763534 Wallach http://www.wikidata.org/entity/Q253019 Point(6.570889 51.59546) +https://nwbib.de/spatial#Q56571631 http://www.wikidata.org/entity/Q56571631 Desdorf http://www.wikidata.org/entity/Q253019 Point(6.589944444 50.948555555) +https://nwbib.de/spatial#Q857407 http://www.wikidata.org/entity/Q857407 Bielstein http://www.wikidata.org/entity/Q253019 Point(7.50139 50.9619) +https://nwbib.de/spatial#Q2555187 http://www.wikidata.org/entity/Q2555187 Weier http://www.wikidata.org/entity/Q253019 Point(7.32278 51.0908) +https://nwbib.de/spatial#Q2229149 http://www.wikidata.org/entity/Q2229149 Schaag http://www.wikidata.org/entity/Q253019 Point(6.266111111 51.320833333) +https://nwbib.de/spatial#Q2765 http://www.wikidata.org/entity/Q2765 Gelsenkirchen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630 Point(7.1 51.516666666) +https://nwbib.de/spatial#Q2255282 http://www.wikidata.org/entity/Q2255282 Stockum http://www.wikidata.org/entity/Q253019 Point(7.98587 51.2931) +https://nwbib.de/spatial#Q2662781 http://www.wikidata.org/entity/Q2662781 Stadtbezirk Bochum-Mitte http://www.wikidata.org/entity/Q2740635 Point(7.22278 51.4785) +https://nwbib.de/spatial#Q865701 http://www.wikidata.org/entity/Q865701 Birlinghoven http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2740635 Point(7.22411 50.7485) +https://nwbib.de/spatial#Q1313413 http://www.wikidata.org/entity/Q1313413 Eisern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q123705 Point(8.040277777 50.828055555) +https://nwbib.de/spatial#Q1917485 http://www.wikidata.org/entity/Q1917485 Mehrhoog http://www.wikidata.org/entity/Q253019 Point(6.511666666 51.738333333) +https://nwbib.de/spatial#Q2547750 http://www.wikidata.org/entity/Q2547750 Wamel http://www.wikidata.org/entity/Q253019 Point(8.18806 51.4928) +https://nwbib.de/spatial#N62 http://www.wikidata.org/entity/Q657241 Herzogtum Westfalen http://www.wikidata.org/entity/Q26830017 Point(8.1155 50.9156) +https://nwbib.de/spatial#Q1471794 http://www.wikidata.org/entity/Q1471794 Frömern http://www.wikidata.org/entity/Q253019 Point(7.74167 51.5017) +https://nwbib.de/spatial#Q1651003 http://www.wikidata.org/entity/Q1651003 Hörste http://www.wikidata.org/entity/Q253019 Point(8.3025 52.0472) +https://nwbib.de/spatial#Q1393928 http://www.wikidata.org/entity/Q1393928 Rohren http://www.wikidata.org/entity/Q253019 Point(6.283333333 50.55) +https://nwbib.de/spatial#Q446870 http://www.wikidata.org/entity/Q446870 Köln-Kalk (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(7.0186 50.9358) +https://nwbib.de/spatial#Q2554693 http://www.wikidata.org/entity/Q2554693 Wehrstapel http://www.wikidata.org/entity/Q253019 Point(8.33456 51.351) +https://nwbib.de/spatial#Q117045 http://www.wikidata.org/entity/Q117045 Dorlar http://www.wikidata.org/entity/Q253019 Point(8.234 51.22) +https://nwbib.de/spatial#Q1605363 http://www.wikidata.org/entity/Q1605363 Hennen http://www.wikidata.org/entity/Q253019 Point(7.652 51.4427) +https://nwbib.de/spatial#Q225334 http://www.wikidata.org/entity/Q225334 Versmold http://www.wikidata.org/entity/Q42744322 Point(8.15 52.043611111) +https://nwbib.de/spatial#Q262644 http://www.wikidata.org/entity/Q262644 Fürstenberg http://www.wikidata.org/entity/Q253019 Point(8.74167 51.5178) +https://nwbib.de/spatial#Q2341568 http://www.wikidata.org/entity/Q2341568 Steinscheid http://www.wikidata.org/entity/Q253019 Point(7.354 51.011) +https://nwbib.de/spatial#Q992168 http://www.wikidata.org/entity/Q992168 Scharnhorst-Ost http://www.wikidata.org/entity/Q253019 Point(7.54472 51.5531) +https://nwbib.de/spatial#Q1019637 http://www.wikidata.org/entity/Q1019637 Bödingen http://www.wikidata.org/entity/Q253019 Point(7.34083 50.7817) +https://nwbib.de/spatial#Q1796876 http://www.wikidata.org/entity/Q1796876 Kückelheim http://www.wikidata.org/entity/Q253019 Point(8.13361 51.2336) +https://nwbib.de/spatial#Q1256888 http://www.wikidata.org/entity/Q1256888 Pech http://www.wikidata.org/entity/Q253019 Point(7.10861 50.6503) +https://nwbib.de/spatial#Q254171 http://www.wikidata.org/entity/Q254171 Neunkirchen-Seelscheid http://www.wikidata.org/entity/Q262166 Point(7.333333333 50.866666666) +https://nwbib.de/spatial#Q882560 http://www.wikidata.org/entity/Q882560 Wersten http://www.wikidata.org/entity/Q1852178 Point(6.81639 51.1817) +https://nwbib.de/spatial#Q2034601 http://www.wikidata.org/entity/Q2034601 Ossendorf http://www.wikidata.org/entity/Q253019 Point(9.08694 51.5117) +https://nwbib.de/spatial#Q1395453 http://www.wikidata.org/entity/Q1395453 Siersdorf http://www.wikidata.org/entity/Q253019 Point(6.22472 50.8981) +https://nwbib.de/spatial#Q1961903 http://www.wikidata.org/entity/Q1961903 Naaf http://www.wikidata.org/entity/Q253019 Point(7.28897 50.8799) +https://nwbib.de/spatial#Q1358995 http://www.wikidata.org/entity/Q1358995 Galkhausen http://www.wikidata.org/entity/Q253019 Point(6.96098 51.0938) +https://nwbib.de/spatial#Q583886 http://www.wikidata.org/entity/Q583886 Rurdorf http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.275555555 50.964722222) +https://nwbib.de/spatial#Q6280 http://www.wikidata.org/entity/Q6280 Kreis Euskirchen http://www.wikidata.org/entity/Q20738811 Point(6.67 50.5) +https://nwbib.de/spatial#Q437666 http://www.wikidata.org/entity/Q437666 Altenvalbert http://www.wikidata.org/entity/Q253019 Point(8.08361 51.1669) +https://nwbib.de/spatial#Q54803603 http://www.wikidata.org/entity/Q54803603 Stadtbezirk VII (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1251169 http://www.wikidata.org/entity/Q1251169 Meiswinkel http://www.wikidata.org/entity/Q253019 Point(7.94552 50.9338) +https://nwbib.de/spatial#Q1095563 http://www.wikidata.org/entity/Q1095563 Clarholz http://www.wikidata.org/entity/Q253019 Point(8.19312 51.9022) +https://nwbib.de/spatial#Q882072 http://www.wikidata.org/entity/Q882072 Königshoven http://www.wikidata.org/entity/Q253019 Point(6.546111111 51.000555555) +https://nwbib.de/spatial#Q163017 http://www.wikidata.org/entity/Q163017 Hünxe http://www.wikidata.org/entity/Q262166 Point(6.767222222 51.641666666) +https://nwbib.de/spatial#Q14939 http://www.wikidata.org/entity/Q14939 Nottuln http://www.wikidata.org/entity/Q262166 Point(7.354166666 51.927777777) +https://nwbib.de/spatial#Q1499809 http://www.wikidata.org/entity/Q1499809 Gelsenkirchen-Neustadt http://www.wikidata.org/entity/Q253019 Point(7.10293 51.4996) +https://nwbib.de/spatial#Q925274 http://www.wikidata.org/entity/Q925274 Broich http://www.wikidata.org/entity/Q253019 Point(6.72111 51.0892) +https://nwbib.de/spatial#Q1497945 http://www.wikidata.org/entity/Q1497945 Salchendorf http://www.wikidata.org/entity/Q253019 Point(8.16667 50.8722) +https://nwbib.de/spatial#Q1958712 http://www.wikidata.org/entity/Q1958712 Müllekoven http://www.wikidata.org/entity/Q253019 Point(7.10197 50.777) +https://nwbib.de/spatial#Q1647238 http://www.wikidata.org/entity/Q1647238 Selbeck http://www.wikidata.org/entity/Q253019 Point(9.08398 51.9818) +https://nwbib.de/spatial#Q432917 http://www.wikidata.org/entity/Q432917 Alt-Godesberg http://www.wikidata.org/entity/Q253019 Point(7.15556 50.6817) +https://nwbib.de/spatial#Q885341 http://www.wikidata.org/entity/Q885341 Friemersheim http://www.wikidata.org/entity/Q253019 Point(6.7047 51.3836) +https://nwbib.de/spatial#Q2154289 http://www.wikidata.org/entity/Q2154289 Rintgen http://www.wikidata.org/entity/Q253019 Point(6.3935 51.2529) +https://nwbib.de/spatial#Q1787876 http://www.wikidata.org/entity/Q1787876 Kremenholl http://www.wikidata.org/entity/Q253019 Point(7.17333 51.1703) +https://nwbib.de/spatial#N63 http://www.wikidata.org/entity/Q649192 Fürstbistum Paderborn http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q463742 Point(8.75628 51.7187) +https://nwbib.de/spatial#Q2099540 http://www.wikidata.org/entity/Q2099540 Plittershagen http://www.wikidata.org/entity/Q253019 Point(7.85833 50.8822) +https://nwbib.de/spatial#Q908246 http://www.wikidata.org/entity/Q908246 Bremscheid http://www.wikidata.org/entity/Q253019 Point(8.166 51.2366) +https://nwbib.de/spatial#Q1907926 http://www.wikidata.org/entity/Q1907926 Mastholte http://www.wikidata.org/entity/Q253019 Point(8.38917 51.7561) +https://nwbib.de/spatial#Q997015 http://www.wikidata.org/entity/Q997015 Brünen http://www.wikidata.org/entity/Q253019 Point(6.68083 51.7256) +https://nwbib.de/spatial#Q1617330 http://www.wikidata.org/entity/Q1617330 Hiddingsen http://www.wikidata.org/entity/Q253019 Point(8.11667 51.5403) +https://nwbib.de/spatial#Q253784 http://www.wikidata.org/entity/Q253784 Swisttal http://www.wikidata.org/entity/Q262166 Point(6.920277777 50.717777777) +https://nwbib.de/spatial#Q818227 http://www.wikidata.org/entity/Q818227 Benteler http://www.wikidata.org/entity/Q253019 Point(8.325 51.75) +https://nwbib.de/spatial#Q1619937 http://www.wikidata.org/entity/Q1619937 Vadrup http://www.wikidata.org/entity/Q253019 Point(7.7474 52.031) +https://nwbib.de/spatial#Q109703178 http://www.wikidata.org/entity/Q109703178 Gipperich http://www.wikidata.org/entity/Q253019 Point(7.748333333 51.024722222) +https://nwbib.de/spatial#Q1122285 http://www.wikidata.org/entity/Q1122285 Ferndorf http://www.wikidata.org/entity/Q253019 Point(8.00972 50.9614) +https://nwbib.de/spatial#Q127709 http://www.wikidata.org/entity/Q127709 Kirchilpe http://www.wikidata.org/entity/Q253019 Point(8.25 51.233333333) +https://nwbib.de/spatial#Q2530480 http://www.wikidata.org/entity/Q2530480 Voiswinkel http://www.wikidata.org/entity/Q253019 Point(7.12372 51.0177) +https://nwbib.de/spatial#Q19869 http://www.wikidata.org/entity/Q19869 Breinigerberg http://www.wikidata.org/entity/Q253019 Point(6.233333333 50.733333333) +https://nwbib.de/spatial#Q2194016 http://www.wikidata.org/entity/Q2194016 Türnich http://www.wikidata.org/entity/Q253019 Point(6.745833333 50.865) +https://nwbib.de/spatial#Q1790957 http://www.wikidata.org/entity/Q1790957 Kuchem http://www.wikidata.org/entity/Q253019 Point(7.42389 50.8253) +https://nwbib.de/spatial#Q30074363 http://www.wikidata.org/entity/Q30074363 Herringsen http://www.wikidata.org/entity/Q253019 Point(8.22184 51.5303) +https://nwbib.de/spatial#Q1788909 http://www.wikidata.org/entity/Q1788909 Neuenkirchen http://www.wikidata.org/entity/Q253019 Point(8.44028 51.8306) +https://nwbib.de/spatial#Q200105 http://www.wikidata.org/entity/Q200105 Nideggen http://www.wikidata.org/entity/Q42744322 Point(6.483333333 50.7) +https://nwbib.de/spatial#Q1526063 http://www.wikidata.org/entity/Q1526063 Helpup http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.71139 51.9697) +https://nwbib.de/spatial#Q1998452 http://www.wikidata.org/entity/Q1998452 Nordmarkt http://www.wikidata.org/entity/Q174782, http://www.wikidata.org/entity/Q253019 Point(7.45 51.5167) +https://nwbib.de/spatial#Q1485554 http://www.wikidata.org/entity/Q1485554 Hermesdorf http://www.wikidata.org/entity/Q253019 Point(7.65083 50.8928) +https://nwbib.de/spatial#Q1300754 http://www.wikidata.org/entity/Q1300754 Ehreshoven http://www.wikidata.org/entity/Q253019 Point(7.34 50.9742) +https://nwbib.de/spatial#Q1459294 http://www.wikidata.org/entity/Q1459294 Rückershausen http://www.wikidata.org/entity/Q253019 Point(8.29556 50.9528) +https://nwbib.de/spatial#Q43273980 http://www.wikidata.org/entity/Q43273980 Schrievers http://www.wikidata.org/entity/Q253019 Point(6.429083333 51.170527777) +https://nwbib.de/spatial#Q1554457 http://www.wikidata.org/entity/Q1554457 Wilgersdorf http://www.wikidata.org/entity/Q253019 Point(8.145 50.815) +https://nwbib.de/spatial#Q1821825 http://www.wikidata.org/entity/Q1821825 Levern http://www.wikidata.org/entity/Q253019 Point(8.45501 52.3751) +https://nwbib.de/spatial#Q15908961 http://www.wikidata.org/entity/Q15908961 Mittelmeiderich http://www.wikidata.org/entity/Q2983893 Point(6.7764 51.4655) +https://nwbib.de/spatial#Q1626841 http://www.wikidata.org/entity/Q1626841 Saalhausen http://www.wikidata.org/entity/Q253019 Point(8.16583 51.1175) +https://nwbib.de/spatial#Q1272451 http://www.wikidata.org/entity/Q1272451 Düttling http://www.wikidata.org/entity/Q253019 Point(6.547222222 50.6075) +https://nwbib.de/spatial#Q225729 http://www.wikidata.org/entity/Q225729 Harsewinkel http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q3957 Point(8.233055555 51.966666666) +https://nwbib.de/spatial#Q1106714 http://www.wikidata.org/entity/Q1106714 Lette http://www.wikidata.org/entity/Q253019 Point(7.19167 51.8969) +https://nwbib.de/spatial#Q2132367 http://www.wikidata.org/entity/Q2132367 Rath http://www.wikidata.org/entity/Q253019 Point(6.63592 51.006) +https://nwbib.de/spatial#Q258254 http://www.wikidata.org/entity/Q258254 Heidhausen http://www.wikidata.org/entity/Q253019 Point(7.017778 51.379722) +https://nwbib.de/spatial#Q817259 http://www.wikidata.org/entity/Q817259 Stadtbezirk Benhausen http://www.wikidata.org/entity/Q2740635 Point(8.8275 51.7406) +https://nwbib.de/spatial#Q2286101 http://www.wikidata.org/entity/Q2286101 Silixen http://www.wikidata.org/entity/Q253019 Point(9.06295 52.1377) +https://nwbib.de/spatial#Q477038 http://www.wikidata.org/entity/Q477038 Herrschaft Gemen http://www.wikidata.org/entity/Q196068, http://www.wikidata.org/entity/Q26830017 +https://nwbib.de/spatial#Q28923830 http://www.wikidata.org/entity/Q28923830 Pannesheide http://www.wikidata.org/entity/Q253019 Point(6.069731111 50.846758055) +https://nwbib.de/spatial#Q15844411 http://www.wikidata.org/entity/Q15844411 Schlich http://www.wikidata.org/entity/Q253019 Point(6.5344484 51.1381607) +https://nwbib.de/spatial#Q878286 http://www.wikidata.org/entity/Q878286 Weidesheim http://www.wikidata.org/entity/Q253019 Point(6.840555555 50.659722222) +https://nwbib.de/spatial#Q1235712 http://www.wikidata.org/entity/Q1235712 Dollendorf http://www.wikidata.org/entity/Q253019 Point(6.7075 50.372222222) +https://nwbib.de/spatial#Q1516942 http://www.wikidata.org/entity/Q1516942 Oberwiehl http://www.wikidata.org/entity/Q253019 Point(7.5825 50.9444) +https://nwbib.de/spatial#Q876546 http://www.wikidata.org/entity/Q876546 Fürstentum Minden http://www.wikidata.org/entity/Q208500 Point(8.78769 52.3421) +https://nwbib.de/spatial#Q2168708 http://www.wikidata.org/entity/Q2168708 Rothenuffeln http://www.wikidata.org/entity/Q4946461, http://www.wikidata.org/entity/Q253019 Point(8.77801 52.28171) +https://nwbib.de/spatial#Q2308867 http://www.wikidata.org/entity/Q2308867 Speldorf http://www.wikidata.org/entity/Q2983893 Point(6.84107 51.4223) +https://nwbib.de/spatial#Q1988256 http://www.wikidata.org/entity/Q1988256 Niedermehnen http://www.wikidata.org/entity/Q253019 Point(8.4525 52.4008) +https://nwbib.de/spatial#Q2274928 http://www.wikidata.org/entity/Q2274928 Setterich http://www.wikidata.org/entity/Q253019 Point(6.201944444 50.921666666) +https://nwbib.de/spatial#Q1412368 http://www.wikidata.org/entity/Q1412368 Mussum http://www.wikidata.org/entity/Q253019 Point(6.57972 51.8147) +https://nwbib.de/spatial#Q1452079 http://www.wikidata.org/entity/Q1452079 Frauwüllesheim http://www.wikidata.org/entity/Q253019 Point(6.573611111 50.793888888) +https://nwbib.de/spatial#Q1524634 http://www.wikidata.org/entity/Q1524634 Gillrath http://www.wikidata.org/entity/Q253019 Point(6.074 50.981) +https://nwbib.de/spatial#Q23941311 http://www.wikidata.org/entity/Q23941311 Maria Veen http://www.wikidata.org/entity/Q253019 Point(7.09390556 51.83705) +https://nwbib.de/spatial#Q880435 http://www.wikidata.org/entity/Q880435 Hülchrath http://www.wikidata.org/entity/Q253019 Point(6.661111111 51.1225) +https://nwbib.de/spatial#Q2548377 http://www.wikidata.org/entity/Q2548377 Wanheimerort http://www.wikidata.org/entity/Q2983893 Point(6.7675 51.4011) +https://nwbib.de/spatial#Q1795744 http://www.wikidata.org/entity/Q1795744 Flittard http://www.wikidata.org/entity/Q15632166 Point(7.0 51.0) +https://nwbib.de/spatial#Q1422698 http://www.wikidata.org/entity/Q1422698 Rahser http://www.wikidata.org/entity/Q253019 Point(6.3876 51.2665) +https://nwbib.de/spatial#Q95350780 http://www.wikidata.org/entity/Q95350780 Ewig http://www.wikidata.org/entity/Q253019 Point(7.883334 51.115606) +https://nwbib.de/spatial#Q2585664 http://www.wikidata.org/entity/Q2585664 Wirme http://www.wikidata.org/entity/Q253019 Point(8.06889 51.0439) +https://nwbib.de/spatial#Q45352487 http://www.wikidata.org/entity/Q45352487 Schreibershof http://www.wikidata.org/entity/Q253019 Point(7.781111111 51.065833333) +https://nwbib.de/spatial#Q460550 http://www.wikidata.org/entity/Q460550 Amecke http://www.wikidata.org/entity/Q253019 Point(7.94913 51.2996) +https://nwbib.de/spatial#Q873692 http://www.wikidata.org/entity/Q873692 Lendersdorf http://www.wikidata.org/entity/Q253019 Point(6.478522222 50.768141666) +https://nwbib.de/spatial#Q996855 http://www.wikidata.org/entity/Q996855 Brüggen http://www.wikidata.org/entity/Q253019 Point(6.77352 50.8468) +https://nwbib.de/spatial#Q531011 http://www.wikidata.org/entity/Q531011 Laer http://www.wikidata.org/entity/Q253019 Point(7.263611111 51.471111111) +https://nwbib.de/spatial#Q16064897 http://www.wikidata.org/entity/Q16064897 Großendrescheid http://www.wikidata.org/entity/Q253019 Point(7.64573 51.271702) +https://nwbib.de/spatial#Q10952 http://www.wikidata.org/entity/Q10952 Burbach http://www.wikidata.org/entity/Q262166 Point(8.086111111 50.744444444) +https://nwbib.de/spatial#Q1523312 http://www.wikidata.org/entity/Q1523312 Hillentrup http://www.wikidata.org/entity/Q253019 Point(8.99722 52.0489) +https://nwbib.de/spatial#Q1915674 http://www.wikidata.org/entity/Q1915674 Meckingsen http://www.wikidata.org/entity/Q253019 Point(8.07504 51.6014) +https://nwbib.de/spatial#Q14940 http://www.wikidata.org/entity/Q14940 Datteln http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.341666666 51.653888888) +https://nwbib.de/spatial#Q1652590 http://www.wikidata.org/entity/Q1652590 Hüttenheim http://www.wikidata.org/entity/Q123705, http://www.wikidata.org/entity/Q253019 Point(6.73222 51.3689) +https://nwbib.de/spatial#Q1723245 http://www.wikidata.org/entity/Q1723245 Wiedenest http://www.wikidata.org/entity/Q253019 Point(7.688888888 51.029166666) +https://nwbib.de/spatial#Q2938 http://www.wikidata.org/entity/Q2938 Leverkusen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630 Point(6.983333333 51.033333333) +https://nwbib.de/spatial#Q151418 http://www.wikidata.org/entity/Q151418 Olpe http://www.wikidata.org/entity/Q253019 Point(7.2875 51.0436) +https://nwbib.de/spatial#Q3973 http://www.wikidata.org/entity/Q3973 Grevenbroich http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518 Point(6.5875 51.088333333) +https://nwbib.de/spatial#Q2473635 http://www.wikidata.org/entity/Q2473635 Uelzen http://www.wikidata.org/entity/Q253019 Point(7.72361 51.5425) +https://nwbib.de/spatial#Q2237935 http://www.wikidata.org/entity/Q2237935 Schladern http://www.wikidata.org/entity/Q253019 Point(7.59028 50.8089) +https://nwbib.de/spatial#Q1826159 http://www.wikidata.org/entity/Q1826159 Linderhausen http://www.wikidata.org/entity/Q253019 Point(7.29361 51.3072) +https://nwbib.de/spatial#Q153206 http://www.wikidata.org/entity/Q153206 Venwegen http://www.wikidata.org/entity/Q253019 Point(6.214722222 50.713333333) +https://nwbib.de/spatial#Q2259764 http://www.wikidata.org/entity/Q2259764 Schüllar http://www.wikidata.org/entity/Q253019 Point(8.411388888 51.08) +https://nwbib.de/spatial#Q1609984 http://www.wikidata.org/entity/Q1609984 Heringhausen http://www.wikidata.org/entity/Q253019 Point(8.40694 51.3333) +https://nwbib.de/spatial#Q1310783 http://www.wikidata.org/entity/Q1310783 Eisbach http://www.wikidata.org/entity/Q253019 Point(7.29111 50.7169) +https://nwbib.de/spatial#Q475691 http://www.wikidata.org/entity/Q475691 Bödexen http://www.wikidata.org/entity/Q253019 Point(9.335833333 51.837222222) +https://nwbib.de/spatial#Q833170 http://www.wikidata.org/entity/Q833170 Schwenningdorf http://www.wikidata.org/entity/Q253019 Point(8.492777777 52.2475) +https://nwbib.de/spatial#Q1271918 http://www.wikidata.org/entity/Q1271918 Dünschede http://www.wikidata.org/entity/Q253019 Point(7.97707 51.1362) +https://nwbib.de/spatial#Q41516300 http://www.wikidata.org/entity/Q41516300 Impekoven http://www.wikidata.org/entity/Q253019 Point(7.016389 50.713889) +https://nwbib.de/spatial#Q28009265 http://www.wikidata.org/entity/Q28009265 Öttershagen http://www.wikidata.org/entity/Q253019 Point(7.635388888 50.820583333) +https://nwbib.de/spatial#Q1455460 http://www.wikidata.org/entity/Q1455460 Kirchenkreis Jülich http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q10950 http://www.wikidata.org/entity/Q10950 Netphen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.1 50.914722222) +https://nwbib.de/spatial#Q2534683 http://www.wikidata.org/entity/Q2534683 Vorweiden http://www.wikidata.org/entity/Q253019 Point(6.168 50.831) +https://nwbib.de/spatial#Q1302352 http://www.wikidata.org/entity/Q1302352 Eickhoff http://www.wikidata.org/entity/Q253019 Point(8.495 51.56) +https://nwbib.de/spatial#Q466759 http://www.wikidata.org/entity/Q466759 Schenkenschanz http://www.wikidata.org/entity/Q253019 Point(6.110277777 51.836111111) +https://nwbib.de/spatial#Q881609 http://www.wikidata.org/entity/Q881609 Blankenrode http://www.wikidata.org/entity/Q253019 Point(8.909722222 51.538611111) +https://nwbib.de/spatial#Q47190461 http://www.wikidata.org/entity/Q47190461 Gerleve http://www.wikidata.org/entity/Q253019 Point(7.246111111 51.943611111) +https://nwbib.de/spatial#Q2596720 http://www.wikidata.org/entity/Q2596720 Würgendorf http://www.wikidata.org/entity/Q253019 Point(8.125 50.7581) +https://nwbib.de/spatial#Q1206591 http://www.wikidata.org/entity/Q1206591 Deuz http://www.wikidata.org/entity/Q253019 Point(8.14361 50.8808) +https://nwbib.de/spatial#Q790589 http://www.wikidata.org/entity/Q790589 Avenwedde http://www.wikidata.org/entity/Q253019 Point(8.44472 51.9378) +https://nwbib.de/spatial#Q56373241 http://www.wikidata.org/entity/Q56373241 Dekanat Warendorf http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1183128 http://www.wikidata.org/entity/Q1183128 Deichhaus http://www.wikidata.org/entity/Q253019 Point(7.22057 50.788) +https://nwbib.de/spatial#Q56374605 http://www.wikidata.org/entity/Q56374605 Dekanat Rheine http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1805041 http://www.wikidata.org/entity/Q1805041 Langeneicke http://www.wikidata.org/entity/Q253019 Point(8.44016 51.6365) +https://nwbib.de/spatial#Q1771254 http://www.wikidata.org/entity/Q1771254 Wissersheim http://www.wikidata.org/entity/Q253019 Point(6.698055555 50.818055555) +https://nwbib.de/spatial#Q893343 http://www.wikidata.org/entity/Q893343 Borbeck http://www.wikidata.org/entity/Q253019 Point(6.91418 51.4923) +https://nwbib.de/spatial#Q382581 http://www.wikidata.org/entity/Q382581 Soller http://www.wikidata.org/entity/Q253019 Point(6.55583 50.7331) +https://nwbib.de/spatial#Q1103964 http://www.wikidata.org/entity/Q1103964 Clörath http://www.wikidata.org/entity/Q253019 Point(6.42556 51.2772) +https://nwbib.de/spatial#Q1130 http://www.wikidata.org/entity/Q1130 Iserlohn http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518 Point(7.666666666 51.383333333) +https://nwbib.de/spatial#Q804902 http://www.wikidata.org/entity/Q804902 Baleroth http://www.wikidata.org/entity/Q253019 Point(7.46361 50.7836) +https://nwbib.de/spatial#Q432815 http://www.wikidata.org/entity/Q432815 Alstätte http://www.wikidata.org/entity/Q253019 Point(6.915833333 52.126388888) +https://nwbib.de/spatial#Q1783370 http://www.wikidata.org/entity/Q1783370 Mantinghausen http://www.wikidata.org/entity/Q253019 Point(8.48389 51.7047) +https://nwbib.de/spatial#Q1746143 http://www.wikidata.org/entity/Q1746143 Ubbedissen http://www.wikidata.org/entity/Q253019 Point(8.62639 51.9872) +https://nwbib.de/spatial#Q814270 http://www.wikidata.org/entity/Q814270 Bega http://www.wikidata.org/entity/Q253019 Point(9.06518 52.0049) +https://nwbib.de/spatial#Q50317506 http://www.wikidata.org/entity/Q50317506 Schönau http://www.wikidata.org/entity/Q3257686, http://www.wikidata.org/entity/Q253019 Point(7.327302 50.823172) +https://nwbib.de/spatial#Q1021730 http://www.wikidata.org/entity/Q1021730 Bürvenich http://www.wikidata.org/entity/Q253019 Point(6.596111111 50.655) +https://nwbib.de/spatial#Q1254103 http://www.wikidata.org/entity/Q1254103 Hürtgen http://www.wikidata.org/entity/Q253019 Point(6.375555555 50.710277777) +https://nwbib.de/spatial#Q435116 http://www.wikidata.org/entity/Q435116 Altdorf http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.3557 50.8401) +https://nwbib.de/spatial#Q144078 http://www.wikidata.org/entity/Q144078 Urfeld http://www.wikidata.org/entity/Q2983893 Point(7.02361 50.8081) +https://nwbib.de/spatial#Q1897680 http://www.wikidata.org/entity/Q1897680 Marienfeld http://www.wikidata.org/entity/Q253019 Point(7.44028 50.8867) +https://nwbib.de/spatial#Q2203893 http://www.wikidata.org/entity/Q2203893 Rüggeberg http://www.wikidata.org/entity/Q253019 Point(7.3846 51.2667) +https://nwbib.de/spatial#Q17122489 http://www.wikidata.org/entity/Q17122489 Bleifeld http://www.wikidata.org/entity/Q253019 Point(7.22403 50.927792) +https://nwbib.de/spatial#Q892920 http://www.wikidata.org/entity/Q892920 Bonzel http://www.wikidata.org/entity/Q253019 Point(8.02389 51.1186) +https://nwbib.de/spatial#Q1524673 http://www.wikidata.org/entity/Q1524673 Gilsbach http://www.wikidata.org/entity/Q253019 Point(8.085 50.77) +https://nwbib.de/spatial#Q32059172 http://www.wikidata.org/entity/Q32059172 Hochfeld http://www.wikidata.org/entity/Q2983893 Point(6.754722222 51.419444444) +https://nwbib.de/spatial#Q686836 http://www.wikidata.org/entity/Q686836 Kalrath http://www.wikidata.org/entity/Q253019 Point(6.460555555 50.99) +https://nwbib.de/spatial#Q10935 http://www.wikidata.org/entity/Q10935 Selm http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.483333333 51.683333333) +https://nwbib.de/spatial#Q1615149 http://www.wikidata.org/entity/Q1615149 Herzhausen http://www.wikidata.org/entity/Q253019 Point(8.08222 50.9519) +https://nwbib.de/spatial#Q44992767 http://www.wikidata.org/entity/Q44992767 Labbeck http://www.wikidata.org/entity/Q253019 Point(6.380777777 51.646555555) +https://nwbib.de/spatial#Q2222245 http://www.wikidata.org/entity/Q2222245 Sankt Jöris http://www.wikidata.org/entity/Q253019 Point(6.2125 50.8358) +https://nwbib.de/spatial#Q3007 http://www.wikidata.org/entity/Q3007 Altstadt-Süd http://www.wikidata.org/entity/Q676050, http://www.wikidata.org/entity/Q15632166 Point(6.956111111 50.9325) +https://nwbib.de/spatial#Q59138211 http://www.wikidata.org/entity/Q59138211 Stadtbezirk Brackwede http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q893913 http://www.wikidata.org/entity/Q893913 Born http://www.wikidata.org/entity/Q253019 Point(9.19778 51.8519) +https://nwbib.de/spatial#Q44816683 http://www.wikidata.org/entity/Q44816683 Wiehagen http://www.wikidata.org/entity/Q253019 Point(7.851388888 51.501944444) +https://nwbib.de/spatial#Q47444602 http://www.wikidata.org/entity/Q47444602 Niederrheinische Sandplatten http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q163100 http://www.wikidata.org/entity/Q163100 Sonsbeck http://www.wikidata.org/entity/Q262166 Point(6.376944444 51.608888888) +https://nwbib.de/spatial#Q59140275 http://www.wikidata.org/entity/Q59140275 Stadtbezirk Gelsenkirchen-Mitte http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1587121 http://www.wikidata.org/entity/Q1587121 Kreuzkapelle http://www.wikidata.org/entity/Q253019 Point(7.38889 50.8814) +https://nwbib.de/spatial#Q6755 http://www.wikidata.org/entity/Q6755 Bad Laasphe http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q42744322 Point(8.416666666 50.930277777) +https://nwbib.de/spatial#Q857498 http://www.wikidata.org/entity/Q857498 Bienen http://www.wikidata.org/entity/Q253019 Point(6.36889 51.8006) +https://nwbib.de/spatial#Q628609 http://www.wikidata.org/entity/Q628609 Fürstentum Rheina-Wolbeck http://www.wikidata.org/entity/Q208500 +https://nwbib.de/spatial#Q1524784 http://www.wikidata.org/entity/Q1524784 Gimmersdorf http://www.wikidata.org/entity/Q253019 Point(7.14444 50.6364) +https://nwbib.de/spatial#Q3989 http://www.wikidata.org/entity/Q3989 Bergheim http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518 Point(6.65 50.966666666) +https://nwbib.de/spatial#Q1610668 http://www.wikidata.org/entity/Q1610668 Herrentrup http://www.wikidata.org/entity/Q253019 Point(9.03833 51.9211) +https://nwbib.de/spatial#Q316601 http://www.wikidata.org/entity/Q316601 Poll http://www.wikidata.org/entity/Q15632166 Point(6.99 50.913333333) +https://nwbib.de/spatial#Q702411 http://www.wikidata.org/entity/Q702411 Rheydt http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q85635630 Point(6.45 51.166666666) +https://nwbib.de/spatial#Q5995083 http://www.wikidata.org/entity/Q5995083 Oberhagen http://www.wikidata.org/entity/Q253019 Point(7.47879199 51.351114) +https://nwbib.de/spatial#Q2555026 http://www.wikidata.org/entity/Q2555026 Weide (Bad Laasphe) http://www.wikidata.org/entity/Q253019 Point(8.28417 50.9456) +https://nwbib.de/spatial#Q894911 http://www.wikidata.org/entity/Q894911 Fuhlenbrock http://www.wikidata.org/entity/Q253019 Point(6.898 51.533) +https://nwbib.de/spatial#Q1271833 http://www.wikidata.org/entity/Q1271833 Dünne http://www.wikidata.org/entity/Q253019 Point(8.58 52.229722222) +https://nwbib.de/spatial#Q1149817 http://www.wikidata.org/entity/Q1149817 Hainchen http://www.wikidata.org/entity/Q253019 Point(8.21611 50.8531) +https://nwbib.de/spatial#Q47462205 http://www.wikidata.org/entity/Q47462205 Kirchenkreis Lüdenscheid http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462213 http://www.wikidata.org/entity/Q47462213 Kirchenkreis Münster http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462234 http://www.wikidata.org/entity/Q47462234 Kirchenkreis Recklinghausen http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462321 http://www.wikidata.org/entity/Q47462321 Kirchenkreis Wittgenstein http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q3900 http://www.wikidata.org/entity/Q3900 Troisdorf http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(7.155555555 50.816111111) +https://nwbib.de/spatial#Q1321925 http://www.wikidata.org/entity/Q1321925 Gruissem http://www.wikidata.org/entity/Q253019 Point(6.64778 51.1386) +https://nwbib.de/spatial#Q1017296 http://www.wikidata.org/entity/Q1017296 Buschbell http://www.wikidata.org/entity/Q253019 Point(6.80283 50.9263) +https://nwbib.de/spatial#Q1020124 http://www.wikidata.org/entity/Q1020124 Bösingfeld http://www.wikidata.org/entity/Q253019 Point(9.12556 52.0678) +https://nwbib.de/spatial#Q1333061 http://www.wikidata.org/entity/Q1333061 Elmpt http://www.wikidata.org/entity/Q253019 Point(6.16694 51.2106) +https://nwbib.de/spatial#Q44915697 http://www.wikidata.org/entity/Q44915697 Bladenhorst http://www.wikidata.org/entity/Q253019 Point(7.300833333 51.570555555) +https://nwbib.de/spatial#Q1343678 http://www.wikidata.org/entity/Q1343678 Nordborchen http://www.wikidata.org/entity/Q253019 Point(8.716666666 51.669444444) +https://nwbib.de/spatial#Q45030662 http://www.wikidata.org/entity/Q45030662 Schmerlecke http://www.wikidata.org/entity/Q253019 Point(8.248611111 51.599444444) +https://nwbib.de/spatial#Q1455537 http://www.wikidata.org/entity/Q1455537 Frenz http://www.wikidata.org/entity/Q253019 Point(6.33694 50.8369) +https://nwbib.de/spatial#Q16292537 http://www.wikidata.org/entity/Q16292537 Rathmecke http://www.wikidata.org/entity/Q253019 Point(7.632324 51.257252) +https://nwbib.de/spatial#Q47454940 http://www.wikidata.org/entity/Q47454940 Jülicher Börde http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q1553316 http://www.wikidata.org/entity/Q1553316 Raderberg http://www.wikidata.org/entity/Q15632166 Point(6.960277777 50.906666666) +https://nwbib.de/spatial#Q1593797 http://www.wikidata.org/entity/Q1593797 Hehlrath http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2983893 Point(6.239444444 50.838611111) +https://nwbib.de/spatial#Q1805501 http://www.wikidata.org/entity/Q1805501 Ripsdorf http://www.wikidata.org/entity/Q253019 Point(6.656944444 50.386388888) +https://nwbib.de/spatial#Q1300061 http://www.wikidata.org/entity/Q1300061 Nordenau http://www.wikidata.org/entity/Q253019 Point(8.42417 51.1756) +https://nwbib.de/spatial#Q1787411 http://www.wikidata.org/entity/Q1787411 Kreis Monschau http://www.wikidata.org/entity/Q106658 Point(6.25 50.55) +https://nwbib.de/spatial#Q1980918 http://www.wikidata.org/entity/Q1980918 Neumühl http://www.wikidata.org/entity/Q253019 Point(6.79139 51.49) +https://nwbib.de/spatial#Q2058314 http://www.wikidata.org/entity/Q2058314 Pattern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(6.30011 50.88) +https://nwbib.de/spatial#Q402865 http://www.wikidata.org/entity/Q402865 Ahrhütte http://www.wikidata.org/entity/Q253019 Point(6.738611111 50.388333333) +https://nwbib.de/spatial#Q45733932 http://www.wikidata.org/entity/Q45733932 Orbroich http://www.wikidata.org/entity/Q253019 Point(6.479882 51.391548) +https://nwbib.de/spatial#Q11343 http://www.wikidata.org/entity/Q11343 Wetter http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q486972 Point(7.395 51.388055555) +https://nwbib.de/spatial#Q1544513 http://www.wikidata.org/entity/Q1544513 Holzen http://www.wikidata.org/entity/Q253019 Point(7.91479 51.4186) +https://nwbib.de/spatial#Q2037705 http://www.wikidata.org/entity/Q2037705 Ottfingen http://www.wikidata.org/entity/Q253019 Point(7.847644444 50.951113888) +https://nwbib.de/spatial#Q2293534 http://www.wikidata.org/entity/Q2293534 Wollersheim http://www.wikidata.org/entity/Q253019 Point(6.564166666 50.670555555) +https://nwbib.de/spatial#Q2016507 http://www.wikidata.org/entity/Q2016507 Ohlerath http://www.wikidata.org/entity/Q253019 Point(6.853911111 50.465733333) +https://nwbib.de/spatial#Q2538692 http://www.wikidata.org/entity/Q2538692 Wadelheim http://www.wikidata.org/entity/Q253019 Point(7.39583 52.2708) +https://nwbib.de/spatial#Q1283532 http://www.wikidata.org/entity/Q1283532 Tüschenbroich http://www.wikidata.org/entity/Q253019 Point(6.25278 51.1192) +https://nwbib.de/spatial#Q1677185 http://www.wikidata.org/entity/Q1677185 Wickrath http://www.wikidata.org/entity/Q2983893 Point(6.41072 51.1285) +https://nwbib.de/spatial#Q1987918 http://www.wikidata.org/entity/Q1987918 Niederkastenholz http://www.wikidata.org/entity/Q253019 Point(6.834722222 50.6225) +https://nwbib.de/spatial#Q1689273 http://www.wikidata.org/entity/Q1689273 Schwerin http://www.wikidata.org/entity/Q253019 Point(7.33312 51.5412) +https://nwbib.de/spatial#Q1503684 http://www.wikidata.org/entity/Q1503684 Niederottersbach http://www.wikidata.org/entity/Q253019 Point(7.46972 50.7894) +https://nwbib.de/spatial#Q1691838 http://www.wikidata.org/entity/Q1691838 Lünten http://www.wikidata.org/entity/Q253019 Point(6.858055555 52.1) +https://nwbib.de/spatial#Q2254325 http://www.wikidata.org/entity/Q2254325 Schwarzmaar http://www.wikidata.org/entity/Q253019 Point(6.865985462 50.719436449) +https://nwbib.de/spatial#Q2072911 http://www.wikidata.org/entity/Q2072911 Pesch http://www.wikidata.org/entity/Q253019 Point(6.6925 50.5283) +https://nwbib.de/spatial#Q1800365 http://www.wikidata.org/entity/Q1800365 Laggenbeck http://www.wikidata.org/entity/Q253019 Point(7.7875 52.2625) +https://nwbib.de/spatial#Q2036224 http://www.wikidata.org/entity/Q2036224 Wolperath http://www.wikidata.org/entity/Q253019 Point(7.325583333 50.828583333) +https://nwbib.de/spatial#Q1550434 http://www.wikidata.org/entity/Q1550434 Grund (Hilchenbach) http://www.wikidata.org/entity/Q253019 Point(8.13319 50.9716) +https://nwbib.de/spatial#Q2151315 http://www.wikidata.org/entity/Q2151315 Richterich http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q15284 Point(6.0625 50.808611111) +https://nwbib.de/spatial#Q1301497 http://www.wikidata.org/entity/Q1301497 Eichen http://www.wikidata.org/entity/Q253019 Point(7.80591 51.0216) +https://nwbib.de/spatial#Q2010854 http://www.wikidata.org/entity/Q2010854 Oberschledorn http://www.wikidata.org/entity/Q253019 Point(8.71216 51.2485) +https://nwbib.de/spatial#Q882086 http://www.wikidata.org/entity/Q882086 Nordstadt http://www.wikidata.org/entity/Q253019 Point(7.08601 50.7432) +https://nwbib.de/spatial#Q2554378 http://www.wikidata.org/entity/Q2554378 Wehe http://www.wikidata.org/entity/Q253019 Point(8.65611 52.4556) +https://nwbib.de/spatial#Q678079 http://www.wikidata.org/entity/Q678079 Pesch http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q15632166 Point(6.87972 50.9997) +https://nwbib.de/spatial#Q1522623 http://www.wikidata.org/entity/Q1522623 Hagedorn http://www.wikidata.org/entity/Q253019 Point(9.16328 51.8597) +https://nwbib.de/spatial#Q2011523 http://www.wikidata.org/entity/Q2011523 Oberwälder Land http://www.wikidata.org/entity/Q1970725 Point(9.1833334 51.71666718) +https://nwbib.de/spatial#Q881325 http://www.wikidata.org/entity/Q881325 Homberg/Ruhrort/Baerl (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.68272222 51.46638889) +https://nwbib.de/spatial#Q10775 http://www.wikidata.org/entity/Q10775 Kommern http://www.wikidata.org/entity/Q253019 Point(6.650333333 50.612383333) +https://nwbib.de/spatial#Q564155 http://www.wikidata.org/entity/Q564155 Kanonissenstift Essen http://www.wikidata.org/entity/Q44613, http://www.wikidata.org/entity/Q160742, http://www.wikidata.org/entity/Q2742167 Point(7.013611 51.455833) +https://nwbib.de/spatial#Q257089 http://www.wikidata.org/entity/Q257089 Südviertel http://www.wikidata.org/entity/Q253019 Point(7.01 51.446944) +https://nwbib.de/spatial#Q5946 http://www.wikidata.org/entity/Q5946 Hochsauerlandkreis http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q20738811 Point(8.33 51.25) +https://nwbib.de/spatial#Q2532807 http://www.wikidata.org/entity/Q2532807 Volmerdingsen http://www.wikidata.org/entity/Q253019 Point(8.78333 52.255) +https://nwbib.de/spatial#Q14917 http://www.wikidata.org/entity/Q14917 Greven http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.608333333 52.091666666) +https://nwbib.de/spatial#Q1404081 http://www.wikidata.org/entity/Q1404081 Fellinghausen http://www.wikidata.org/entity/Q253019 Point(7.97556 50.9578) +https://nwbib.de/spatial#Q1625261 http://www.wikidata.org/entity/Q1625261 Holtwick http://www.wikidata.org/entity/Q253019 Point(7.1325 51.7533) +https://nwbib.de/spatial#Q1019817 http://www.wikidata.org/entity/Q1019817 Böingsen http://www.wikidata.org/entity/Q253019 Point(7.86083 51.4033) +https://nwbib.de/spatial#Q1264221 http://www.wikidata.org/entity/Q1264221 Hanxleden http://www.wikidata.org/entity/Q253019 Point(8.315 51.2486) +https://nwbib.de/spatial#Q6187 http://www.wikidata.org/entity/Q6187 Kreis Steinfurt http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q20738811 Point(7.67 52.17) +https://nwbib.de/spatial#Q1455805 http://www.wikidata.org/entity/Q1455805 Freund (Aachen) http://www.wikidata.org/entity/Q253019 Point(6.17626 50.7518) +https://nwbib.de/spatial#Q15052593 http://www.wikidata.org/entity/Q15052593 Cappenberg http://www.wikidata.org/entity/Q253019 Point(7.53861111 51.65055556) +https://nwbib.de/spatial#Q2151658 http://www.wikidata.org/entity/Q2151658 Rickelrath http://www.wikidata.org/entity/Q253019 Point(6.285 51.1692) +https://nwbib.de/spatial#Q1959116 http://www.wikidata.org/entity/Q1959116 Sprakel http://www.wikidata.org/entity/Q253019 Point(7.61806 52.0375) +https://nwbib.de/spatial#Q999478 http://www.wikidata.org/entity/Q999478 Volbringen http://www.wikidata.org/entity/Q253019 Point(8.004035 51.51624407) +https://nwbib.de/spatial#Q1455064 http://www.wikidata.org/entity/Q1455064 Neuwerk http://www.wikidata.org/entity/Q253019 Point(6.47278 51.2244) +https://nwbib.de/spatial#Q302578 http://www.wikidata.org/entity/Q302578 Rahrbach http://www.wikidata.org/entity/Q253019 Point(7.9775 51.037222222) +https://nwbib.de/spatial#Q23854151 http://www.wikidata.org/entity/Q23854151 Borkenwirthe http://www.wikidata.org/entity/Q253019 Point(6.808571 51.885194) +https://nwbib.de/spatial#Q284005 http://www.wikidata.org/entity/Q284005 Dalhausen http://www.wikidata.org/entity/Q253019 Point(9.29166667 51.62777778) +https://nwbib.de/spatial#Q3886 http://www.wikidata.org/entity/Q3886 Dorsten http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(6.964166666 51.66) +https://nwbib.de/spatial#Q1745129 http://www.wikidata.org/entity/Q1745129 Schönholthausen http://www.wikidata.org/entity/Q253019 Point(8.00694 51.1889) +https://nwbib.de/spatial#Q2300445 http://www.wikidata.org/entity/Q2300445 Sommerberg http://www.wikidata.org/entity/Q253019 Point(7.295 51.0764) +https://nwbib.de/spatial#Q17124968 http://www.wikidata.org/entity/Q17124968 Oberkollenbach http://www.wikidata.org/entity/Q253019 Point(7.254785 51.01193) +https://nwbib.de/spatial#Q200122 http://www.wikidata.org/entity/Q200122 Linnich http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q515 Point(6.267777777 50.978888888) +https://nwbib.de/spatial#Q54785790 http://www.wikidata.org/entity/Q54785790 Überruhr-Holthausen http://www.wikidata.org/entity/Q2983893 Point(7.083333333 51.416666666) +https://nwbib.de/spatial#Q6191 http://www.wikidata.org/entity/Q6191 Kreis Borken http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(6.916666666 51.916666666) +https://nwbib.de/spatial#Q21042078 http://www.wikidata.org/entity/Q21042078 Meerbeck http://www.wikidata.org/entity/Q253019 Point(6.65055556 51.46111111) +https://nwbib.de/spatial#Q1231010 http://www.wikidata.org/entity/Q1231010 Marienburg http://www.wikidata.org/entity/Q15632166, http://www.wikidata.org/entity/Q2983893 Point(6.97 50.900277777) +https://nwbib.de/spatial#Q151333 http://www.wikidata.org/entity/Q151333 Mulartshütte http://www.wikidata.org/entity/Q253019 Point(6.219166666 50.696944444) +https://nwbib.de/spatial#Q1019959 http://www.wikidata.org/entity/Q1019959 Börnig http://www.wikidata.org/entity/Q253019 Point(7.26389 51.5486) +https://nwbib.de/spatial#Q1952096 http://www.wikidata.org/entity/Q1952096 Muldenau http://www.wikidata.org/entity/Q253019 Point(6.556666666 50.687777777) +https://nwbib.de/spatial#Q2569336 http://www.wikidata.org/entity/Q2569336 Wiescheid http://www.wikidata.org/entity/Q253019 Point(6.98948 51.1356) +https://nwbib.de/spatial#Q1959339 http://www.wikidata.org/entity/Q1959339 Müssingen http://www.wikidata.org/entity/Q253019 Point(7.89889 51.9639) +https://nwbib.de/spatial#Q18924524 http://www.wikidata.org/entity/Q18924524 Biekhofen http://www.wikidata.org/entity/Q253019 Point(7.87928 51.129) +https://nwbib.de/spatial#Q1988945 http://www.wikidata.org/entity/Q1988945 Niel http://www.wikidata.org/entity/Q253019 Point(6.02028 51.8264) +https://nwbib.de/spatial#Q450087 http://www.wikidata.org/entity/Q450087 Hardtberg (Stadtbezirk) http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q2983893 Point(7.053888888 50.713611111) +https://nwbib.de/spatial#Q1673344 http://www.wikidata.org/entity/Q1673344 Robringhausen http://www.wikidata.org/entity/Q253019 Point(8.2725 51.5564) +https://nwbib.de/spatial#Q2016476 http://www.wikidata.org/entity/Q2016476 Ohle (Plettenberg) http://www.wikidata.org/entity/Q253019 Point(7.83849 51.2338) +https://nwbib.de/spatial#Q2235530 http://www.wikidata.org/entity/Q2235530 Schildesche http://www.wikidata.org/entity/Q253019 Point(8.518055555 52.049722222) +https://nwbib.de/spatial#Q1483781 http://www.wikidata.org/entity/Q1483781 Füssenich http://www.wikidata.org/entity/Q253019 Point(6.618611111 50.701944444) +https://nwbib.de/spatial#Q1368611 http://www.wikidata.org/entity/Q1368611 Bergerhausen http://www.wikidata.org/entity/Q253019 Point(7.044444 51.436389) +https://nwbib.de/spatial#Q3917 http://www.wikidata.org/entity/Q3917 Bocholt http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(6.616666666 51.833333333) +https://nwbib.de/spatial#Q55623694 http://www.wikidata.org/entity/Q55623694 Kiesbert http://www.wikidata.org/entity/Q253019 Point(7.771111111 51.161111111) +https://nwbib.de/spatial#Q1789773 http://www.wikidata.org/entity/Q1789773 Krombach http://www.wikidata.org/entity/Q2983893 Point(7.95806 50.9947) +https://nwbib.de/spatial#Q1573609 http://www.wikidata.org/entity/Q1573609 Stadtbezirk Pelkum http://www.wikidata.org/entity/Q2740635 Point(7.75167 51.6403) +https://nwbib.de/spatial#Q879040 http://www.wikidata.org/entity/Q879040 Bittingen http://www.wikidata.org/entity/Q253019 Point(8.01972 51.5094) +https://nwbib.de/spatial#Q1430700 http://www.wikidata.org/entity/Q1430700 Paffendorf http://www.wikidata.org/entity/Q253019 Point(6.610533333 50.961944444) +https://nwbib.de/spatial#Q2301800 http://www.wikidata.org/entity/Q2301800 Sonneborn http://www.wikidata.org/entity/Q253019 Point(9.16944 52.0072) +https://nwbib.de/spatial#Q1719629 http://www.wikidata.org/entity/Q1719629 Sudbrack http://www.wikidata.org/entity/Q253019 Point(8.52977 52.0423) +https://nwbib.de/spatial#Q670362 http://www.wikidata.org/entity/Q670362 Brück http://www.wikidata.org/entity/Q15632166 Point(7.08083 50.9458) +https://nwbib.de/spatial#Q1342173 http://www.wikidata.org/entity/Q1342173 Engelsdorf (Aldenhoven) http://www.wikidata.org/entity/Q253019 Point(6.29944 50.915) +https://nwbib.de/spatial#Q1465382 http://www.wikidata.org/entity/Q1465382 Styrum http://www.wikidata.org/entity/Q253019 Point(6.85472 51.465) +https://nwbib.de/spatial#Q326326 http://www.wikidata.org/entity/Q326326 Brokhausen http://www.wikidata.org/entity/Q253019 Point(8.926111111 51.965) +https://nwbib.de/spatial#Q242810 http://www.wikidata.org/entity/Q242810 Lügde http://www.wikidata.org/entity/Q42744322 Point(9.248 51.9576) +https://nwbib.de/spatial#Q1017 http://www.wikidata.org/entity/Q1017 Aachen http://www.wikidata.org/entity/Q57318, http://www.wikidata.org/entity/Q1780389, http://www.wikidata.org/entity/Q902814, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q4946461, http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630 Point(6.083788 50.776207) +https://nwbib.de/spatial#Q49892258 http://www.wikidata.org/entity/Q49892258 Schöneshof http://www.wikidata.org/entity/Q253019 Point(7.3428 50.8211) +https://nwbib.de/spatial#Q1436154 http://www.wikidata.org/entity/Q1436154 Overbeck http://www.wikidata.org/entity/Q253019 Point(6.86039 51.7185) +https://nwbib.de/spatial#Q1278516 http://www.wikidata.org/entity/Q1278516 Ebbesloh http://www.wikidata.org/entity/Q253019 Point(8.36417 51.9708) +https://nwbib.de/spatial#Q257475 http://www.wikidata.org/entity/Q257475 Bedingrade http://www.wikidata.org/entity/Q253019 Point(6.926111 51.466667) +https://nwbib.de/spatial#Q29547959 http://www.wikidata.org/entity/Q29547959 Broch http://www.wikidata.org/entity/Q253019 Point(7.28653 51.058628) +https://nwbib.de/spatial#Q1523343 http://www.wikidata.org/entity/Q1523343 Giescheid http://www.wikidata.org/entity/Q253019 Point(6.425833333 50.440555555) +https://nwbib.de/spatial#Q1359609 http://www.wikidata.org/entity/Q1359609 Albersloh http://www.wikidata.org/entity/Q253019 Point(7.73332 51.8685) +https://nwbib.de/spatial#Q15114696 http://www.wikidata.org/entity/Q15114696 Stadtbezirk Sodingen http://www.wikidata.org/entity/Q2740635 Point(7.25 51.53333333) +https://nwbib.de/spatial#Q1271719 http://www.wikidata.org/entity/Q1271719 Dümpten http://www.wikidata.org/entity/Q253019 Point(6.89976 51.4638) +https://nwbib.de/spatial#Q161729 http://www.wikidata.org/entity/Q161729 Wülfrath http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.033333333 51.283333333) +https://nwbib.de/spatial#Q869732 http://www.wikidata.org/entity/Q869732 Heppendorf http://www.wikidata.org/entity/Q253019 Point(6.633611111 50.911111111) +https://nwbib.de/spatial#Q2352538 http://www.wikidata.org/entity/Q2352538 Straberg http://www.wikidata.org/entity/Q253019 Point(6.76278 51.0922) +https://nwbib.de/spatial#Q1280120 http://www.wikidata.org/entity/Q1280120 Hömel http://www.wikidata.org/entity/Q253019 Point(7.50417 50.9817) +https://nwbib.de/spatial#Q2051360 http://www.wikidata.org/entity/Q2051360 Paradiese http://www.wikidata.org/entity/Q253019 Point(8.05583 51.5664) +https://nwbib.de/spatial#Q1377951 http://www.wikidata.org/entity/Q1377951 Lichtenberg http://www.wikidata.org/entity/Q253019 Point(7.70611 50.8986) +https://nwbib.de/spatial#Q1000355 http://www.wikidata.org/entity/Q1000355 Hembergen http://www.wikidata.org/entity/Q253019 Point(7.60333 52.1525) +https://nwbib.de/spatial#Q1337333 http://www.wikidata.org/entity/Q1337333 Fischenich http://www.wikidata.org/entity/Q253019 Point(6.89272 50.8573) +https://nwbib.de/spatial#Q1726657 http://www.wikidata.org/entity/Q1726657 Krauthausen http://www.wikidata.org/entity/Q253019 Point(6.42528 50.8744) +https://nwbib.de/spatial#Q1242046 http://www.wikidata.org/entity/Q1242046 Donop http://www.wikidata.org/entity/Q253019 Point(8.99556 51.9878) +https://nwbib.de/spatial#Q2779256 http://www.wikidata.org/entity/Q2779256 Mesum http://www.wikidata.org/entity/Q253019 Point(7.48444 52.2242) +https://nwbib.de/spatial#Q808488 http://www.wikidata.org/entity/Q808488 Barnhausen http://www.wikidata.org/entity/Q253019 Point(8.33834 52.1053) +https://nwbib.de/spatial#Q1573702 http://www.wikidata.org/entity/Q1573702 Hammer (Simmerath) http://www.wikidata.org/entity/Q253019 Point(6.32611 50.5636) +https://nwbib.de/spatial#Q2147628 http://www.wikidata.org/entity/Q2147628 Rheindorf http://www.wikidata.org/entity/Q253019 Point(6.94988 51.0559) +https://nwbib.de/spatial#Q56024767 http://www.wikidata.org/entity/Q56024767 Vernich http://www.wikidata.org/entity/Q19730508, http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(6.832 50.740972222) +https://nwbib.de/spatial#Q1957911 http://www.wikidata.org/entity/Q1957911 Möllen http://www.wikidata.org/entity/Q253019 Point(6.70111 51.5817) +https://nwbib.de/spatial#Q2675355 http://www.wikidata.org/entity/Q2675355 Deutmecke http://www.wikidata.org/entity/Q253019 Point(8.02944 51.1817) +https://nwbib.de/spatial#Q2436975 http://www.wikidata.org/entity/Q2436975 Titmaringhausen http://www.wikidata.org/entity/Q253019 Point(8.65667 51.2533) +https://nwbib.de/spatial#Q44652837 http://www.wikidata.org/entity/Q44652837 Schmalbroich http://www.wikidata.org/entity/Q253019 Point(6.381861111 51.371833333) +https://nwbib.de/spatial#Q1020897 http://www.wikidata.org/entity/Q1020897 Bünghausen http://www.wikidata.org/entity/Q253019 Point(7.51333 50.9825) +https://nwbib.de/spatial#Q1402513 http://www.wikidata.org/entity/Q1402513 Hillerscheid http://www.wikidata.org/entity/Q253019 Point(7.47444 50.9433) +https://nwbib.de/spatial#Q870602 http://www.wikidata.org/entity/Q870602 Leithe http://www.wikidata.org/entity/Q253019 Point(7.111111111 51.481666666) +https://nwbib.de/spatial#Q1183194 http://www.wikidata.org/entity/Q1183194 Deifeld http://www.wikidata.org/entity/Q253019 Point(8.65778 51.2403) +https://nwbib.de/spatial#Q105745680 http://www.wikidata.org/entity/Q105745680 Vornick http://www.wikidata.org/entity/Q253019 Point(6.190777777 51.651083333) +https://nwbib.de/spatial#Q1020465 http://www.wikidata.org/entity/Q1020465 Büderich http://www.wikidata.org/entity/Q253019 Point(6.695 51.2467) +https://nwbib.de/spatial#Q818150 http://www.wikidata.org/entity/Q818150 Benroth http://www.wikidata.org/entity/Q253019 Point(7.5225 50.8608) +https://nwbib.de/spatial#Q1361781 http://www.wikidata.org/entity/Q1361781 Ersdorf http://www.wikidata.org/entity/Q253019 Point(7.00583 50.5947) +https://nwbib.de/spatial#Q1743172 http://www.wikidata.org/entity/Q1743172 Oberschelden http://www.wikidata.org/entity/Q253019 Point(7.95 50.8667) +https://nwbib.de/spatial#Q221813 http://www.wikidata.org/entity/Q221813 Orsbach http://www.wikidata.org/entity/Q253019 Point(6.00139 50.8006) +https://nwbib.de/spatial#Q2312202 http://www.wikidata.org/entity/Q2312202 Sporke http://www.wikidata.org/entity/Q253019 Point(8.00639 51.1558) +https://nwbib.de/spatial#Q534481 http://www.wikidata.org/entity/Q534481 Hergarten http://www.wikidata.org/entity/Q253019 Point(6.543455555 50.62045) +https://nwbib.de/spatial#Q895698 http://www.wikidata.org/entity/Q895698 Effelsberg http://www.wikidata.org/entity/Q253019 Point(6.868611111 50.516666666) +https://nwbib.de/spatial#Q23835486 http://www.wikidata.org/entity/Q23835486 Burlo http://www.wikidata.org/entity/Q253019 Point(6.785 51.904) +https://nwbib.de/spatial#Q2009240 http://www.wikidata.org/entity/Q2009240 Oberbruch http://www.wikidata.org/entity/Q253019 Point(6.146944444 51.061111111) +https://nwbib.de/spatial#Q1296974 http://www.wikidata.org/entity/Q1296974 Kirchenkreis Paderborn http://www.wikidata.org/entity/Q897303 Point(8.77662 51.7284) +https://nwbib.de/spatial#Q1309194 http://www.wikidata.org/entity/Q1309194 Schanze http://www.wikidata.org/entity/Q253019 Point(8.37436 51.1305) +https://nwbib.de/spatial#Q1729650 http://www.wikidata.org/entity/Q1729650 Rudersdorf http://www.wikidata.org/entity/Q253019 Point(8.14556 50.8408) +https://nwbib.de/spatial#Q820766 http://www.wikidata.org/entity/Q820766 Berk http://www.wikidata.org/entity/Q253019 Point(6.46056 50.3839) +https://nwbib.de/spatial#Q1880405 http://www.wikidata.org/entity/Q1880405 Lütgeneder http://www.wikidata.org/entity/Q253019 Point(9.20306 51.5406) +https://nwbib.de/spatial#Q1250674 http://www.wikidata.org/entity/Q1250674 Lütgendortmund http://www.wikidata.org/entity/Q253019 Point(7.35 51.5) +https://nwbib.de/spatial#Q1567171 http://www.wikidata.org/entity/Q1567171 Hackenbroich http://www.wikidata.org/entity/Q253019 Point(6.81474 51.0663) +https://nwbib.de/spatial#Q2034752 http://www.wikidata.org/entity/Q2034752 Ossum-Bösinghoven http://www.wikidata.org/entity/Q2983893 Point(6.62759 51.3038) +https://nwbib.de/spatial#Q1652396 http://www.wikidata.org/entity/Q1652396 Hünsborn http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.89222222 50.94055556) +https://nwbib.de/spatial#Q759077 http://www.wikidata.org/entity/Q759077 Aue http://www.wikidata.org/entity/Q253019 Point(7.34779 51.1518) +https://nwbib.de/spatial#Q1541341 http://www.wikidata.org/entity/Q1541341 Graes http://www.wikidata.org/entity/Q253019 Point(6.987777777 52.124722222) +https://nwbib.de/spatial#Q1250642 http://www.wikidata.org/entity/Q1250642 Höchsten http://www.wikidata.org/entity/Q253019 Point(7.52778 51.4606) +https://nwbib.de/spatial#Q14901 http://www.wikidata.org/entity/Q14901 Würselen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.1275 50.824722222) +https://nwbib.de/spatial#Q2596605 http://www.wikidata.org/entity/Q2596605 Wülpke http://www.wikidata.org/entity/Q253019 Point(9.02139 52.2403) +https://nwbib.de/spatial#Q15059640 http://www.wikidata.org/entity/Q15059640 Rünthe http://www.wikidata.org/entity/Q253019 Point(7.65801 51.64573) +https://nwbib.de/spatial#Q819256 http://www.wikidata.org/entity/Q819256 Berg (Mechernich) http://www.wikidata.org/entity/Q253019 Point(6.59111 50.6339) +https://nwbib.de/spatial#Q1691251 http://www.wikidata.org/entity/Q1691251 Rahm http://www.wikidata.org/entity/Q253019 Point(6.78722 51.3497) +https://nwbib.de/spatial#Q1414463 http://www.wikidata.org/entity/Q1414463 Ralshoven http://www.wikidata.org/entity/Q253019 Point(6.366388888 51.003333333) +https://nwbib.de/spatial#Q355921 http://www.wikidata.org/entity/Q355921 Adendorf http://www.wikidata.org/entity/Q253019 Point(7.06306 50.6142) +https://nwbib.de/spatial#Q1498844 http://www.wikidata.org/entity/Q1498844 Geisecke http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.61556 51.4542) +https://nwbib.de/spatial#Q3167 http://www.wikidata.org/entity/Q3167 Siegen http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(8.016666666 50.875555555) +https://nwbib.de/spatial#N57 http://www.wikidata.org/entity/Q698162 Rheinprovinz http://www.wikidata.org/entity/Q574299 Point(7.6 50.36666667) +https://nwbib.de/spatial#Q1366985 http://www.wikidata.org/entity/Q1366985 Eschenbach http://www.wikidata.org/entity/Q253019 Point(8.125 50.9289) +https://nwbib.de/spatial#Q2018791 http://www.wikidata.org/entity/Q2018791 Oldinghausen http://www.wikidata.org/entity/Q253019 Point(8.561666666 52.116944444) +https://nwbib.de/spatial#Q153903 http://www.wikidata.org/entity/Q153903 Dorff http://www.wikidata.org/entity/Q253019 Point(6.200555555 50.740277777) +https://nwbib.de/spatial#Q1296060 http://www.wikidata.org/entity/Q1296060 Effeld http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.101388888 51.123333333) +https://nwbib.de/spatial#Q15123474 http://www.wikidata.org/entity/Q15123474 Olef http://www.wikidata.org/entity/Q253019 Point(6.487222 50.543611) +https://nwbib.de/spatial#Q1521099 http://www.wikidata.org/entity/Q1521099 Geyen http://www.wikidata.org/entity/Q253019 Point(6.78655 50.9819) +https://nwbib.de/spatial#Q47443308 http://www.wikidata.org/entity/Q1934754 Reichsherrschaft Homburg http://www.wikidata.org/entity/Q196068, http://www.wikidata.org/entity/Q26830017 Point(7.540944444 50.9025) +https://nwbib.de/spatial#Q1889160 http://www.wikidata.org/entity/Q1889160 Manfort http://www.wikidata.org/entity/Q253019 Point(6.99829 51.0343) +https://nwbib.de/spatial#Q1169505 http://www.wikidata.org/entity/Q1169505 Wyenhütte http://www.wikidata.org/entity/Q253019 Point(6.34822 51.153) +https://nwbib.de/spatial#Q22691465 http://www.wikidata.org/entity/Q22691465 Brüxken http://www.wikidata.org/entity/Q253019 Point(6.245 51.402) +https://nwbib.de/spatial#Q1880207 http://www.wikidata.org/entity/Q1880207 Lückerath http://www.wikidata.org/entity/Q253019 Point(7.14319 50.9697) +https://nwbib.de/spatial#Q10906 http://www.wikidata.org/entity/Q10906 Kirchhundem http://www.wikidata.org/entity/Q262166 Point(8.083333333 51.1) +https://nwbib.de/spatial#Q1119627 http://www.wikidata.org/entity/Q1119627 Riemke http://www.wikidata.org/entity/Q253019 Point(7.82917 51.3897) +https://nwbib.de/spatial#Q1331608 http://www.wikidata.org/entity/Q1331608 Elkeringhausen http://www.wikidata.org/entity/Q253019 Point(8.57387 51.2039) +https://nwbib.de/spatial#Q1454571 http://www.wikidata.org/entity/Q1454571 Freimersdorf http://www.wikidata.org/entity/Q253019 Point(6.79801 50.9536) +https://nwbib.de/spatial#Q28823622 http://www.wikidata.org/entity/Q28823622 Klagebach http://www.wikidata.org/entity/Q253019 Point(7.536333 51.242472) +https://nwbib.de/spatial#Q856819 http://www.wikidata.org/entity/Q856819 Bickenbach http://www.wikidata.org/entity/Q253019 Point(7.43833 51.0078) +https://nwbib.de/spatial#Q1827422 http://www.wikidata.org/entity/Q1827422 Lipp http://www.wikidata.org/entity/Q253019 Point(6.56323 50.9955) +https://nwbib.de/spatial#Q883532 http://www.wikidata.org/entity/Q883532 Bleibuir http://www.wikidata.org/entity/Q253019 Point(6.57158 50.5902) +https://nwbib.de/spatial#Q15055982 http://www.wikidata.org/entity/Q15055982 Emmelsum http://www.wikidata.org/entity/Q253019 Point(6.630975 51.620451) +https://nwbib.de/spatial#Q1115596 http://www.wikidata.org/entity/Q1115596 Schaven http://www.wikidata.org/entity/Q253019 Point(6.66671 50.6189) +https://nwbib.de/spatial#Q12547 http://www.wikidata.org/entity/Q12547 Rheinbach http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.949111111 50.625619444) +https://nwbib.de/spatial#Q896690 http://www.wikidata.org/entity/Q896690 Holtorf http://www.wikidata.org/entity/Q253019 Point(7.182222222 50.732222222) +https://nwbib.de/spatial#Q1379807 http://www.wikidata.org/entity/Q1379807 Obersalwey http://www.wikidata.org/entity/Q253019 Point(8.09889 51.2489) +https://nwbib.de/spatial#Q1737716 http://www.wikidata.org/entity/Q1737716 Keeken http://www.wikidata.org/entity/Q253019 Point(6.0825 51.845555555) +https://nwbib.de/spatial#Q1958681 http://www.wikidata.org/entity/Q1958681 Heimaterde http://www.wikidata.org/entity/Q253019 Point(6.94267 51.4474) +https://nwbib.de/spatial#Q1480479 http://www.wikidata.org/entity/Q1480479 Füchtorf http://www.wikidata.org/entity/Q253019 Point(8.03056 52.0489) +https://nwbib.de/spatial#Q894909 http://www.wikidata.org/entity/Q894909 Ebel http://www.wikidata.org/entity/Q253019 Point(6.94453 51.5028) +https://nwbib.de/spatial#Q1622857 http://www.wikidata.org/entity/Q1622857 Hoetmar http://www.wikidata.org/entity/Q253019 Point(7.909722222 51.870833333) +https://nwbib.de/spatial#Q1624198 http://www.wikidata.org/entity/Q1624198 Hoisten http://www.wikidata.org/entity/Q253019 Point(6.70235 51.144) +https://nwbib.de/spatial#Q827065 http://www.wikidata.org/entity/Q827065 Berrendorf-Wüllenrath http://www.wikidata.org/entity/Q253019 Point(6.58722 50.9261) +https://nwbib.de/spatial#Q204793 http://www.wikidata.org/entity/Q204793 Gangelt http://www.wikidata.org/entity/Q262166 Point(6.0 50.983055555) +https://nwbib.de/spatial#Q2010992 http://www.wikidata.org/entity/Q2010992 Obersorpe http://www.wikidata.org/entity/Q253019 Point(8.3961 51.1981) +https://nwbib.de/spatial#Q2166846 http://www.wikidata.org/entity/Q2166846 Rosellen http://www.wikidata.org/entity/Q253019 Point(6.72732 51.135) +https://nwbib.de/spatial#Q1168004 http://www.wikidata.org/entity/Q1168004 Stadtbezirk Aplerbeck http://www.wikidata.org/entity/Q2740635 Point(7.566666666 51.491666666) +https://nwbib.de/spatial#Q889209 http://www.wikidata.org/entity/Q889209 Bockhorst http://www.wikidata.org/entity/Q253019 Point(8.20056 52.0747) +https://nwbib.de/spatial#Q1959113 http://www.wikidata.org/entity/Q1959113 Münster-Südviertel http://www.wikidata.org/entity/Q253019 Point(7.62667 51.95) +https://nwbib.de/spatial#Q1747794 http://www.wikidata.org/entity/Q1747794 Leopoldstal http://www.wikidata.org/entity/Q253019 Point(8.97028 51.8453) +https://nwbib.de/spatial#Q1334454 http://www.wikidata.org/entity/Q1334454 Uckendorf http://www.wikidata.org/entity/Q253019 Point(7.06417 50.8206) +https://nwbib.de/spatial#Q2244792 http://www.wikidata.org/entity/Q2244792 Schloß Holte http://www.wikidata.org/entity/Q253019 Point(8.60833 51.9083) +https://nwbib.de/spatial#Q1236378 http://www.wikidata.org/entity/Q1236378 Weidenpesch http://www.wikidata.org/entity/Q15632166 Point(6.94722 50.9839) +https://nwbib.de/spatial#Q23787866 http://www.wikidata.org/entity/Q23787866 Hillerheide http://www.wikidata.org/entity/Q253019 Point(7.2178 51.5906) +https://nwbib.de/spatial#Q893544 http://www.wikidata.org/entity/Q893544 Borghees http://www.wikidata.org/entity/Q253019 Point(6.216666666 51.854722222) +https://nwbib.de/spatial#Q865152 http://www.wikidata.org/entity/Q865152 Birgelen http://www.wikidata.org/entity/Q253019 Point(6.149166666 51.115555555) +https://nwbib.de/spatial#Q1347623 http://www.wikidata.org/entity/Q1347623 Eppinghoven http://www.wikidata.org/entity/Q253019 Point(6.70417 51.565) +https://nwbib.de/spatial#Q1959318 http://www.wikidata.org/entity/Q1959318 Müschede http://www.wikidata.org/entity/Q253019 Point(8.00056 51.4036) +https://nwbib.de/spatial#Q722335 http://www.wikidata.org/entity/Q722335 Ascheloh http://www.wikidata.org/entity/Q253019 Point(8.385 52.0642) +https://nwbib.de/spatial#Q1609484 http://www.wikidata.org/entity/Q1609484 Herbringhausen http://www.wikidata.org/entity/Q253019 Point(7.26333 51.2397) +https://nwbib.de/spatial#Q253765 http://www.wikidata.org/entity/Q253765 Erzbistum Paderborn http://www.wikidata.org/entity/Q105390172 +https://nwbib.de/spatial#Q1673976 http://www.wikidata.org/entity/Q1673976 Isingdorf http://www.wikidata.org/entity/Q253019 Point(8.4301 52.0565) +https://nwbib.de/spatial#Q6287 http://www.wikidata.org/entity/Q6287 Rhein-Sieg-Kreis http://www.wikidata.org/entity/Q20738811 Point(7.25 50.75) +https://nwbib.de/spatial#Q1642893 http://www.wikidata.org/entity/Q1642893 Heimersdorf http://www.wikidata.org/entity/Q15632166 Point(6.89667 51.0089) +https://nwbib.de/spatial#Q17542219 http://www.wikidata.org/entity/Q17542219 Kirchhörde-Löttringhausen http://www.wikidata.org/entity/Q253019 Point(7.45 51.45) +https://nwbib.de/spatial#Q1027191 http://www.wikidata.org/entity/Q1027191 Calle http://www.wikidata.org/entity/Q253019 Point(8.21428 51.3353) +https://nwbib.de/spatial#Q19834454 http://www.wikidata.org/entity/Q19834454 Altenbögge http://www.wikidata.org/entity/Q253019 Point(7.74583333 51.59675) +https://nwbib.de/spatial#Q2268218 http://www.wikidata.org/entity/Q2268218 Selfkantkreis Geilenkirchen-Heinsberg http://www.wikidata.org/entity/Q106658 Point(6.119444444 50.965277777) +https://nwbib.de/spatial#Q925346 http://www.wikidata.org/entity/Q925346 Broicher Siedlung http://www.wikidata.org/entity/Q253019 Point(6.183333333 50.85) +https://nwbib.de/spatial#Q1760203 http://www.wikidata.org/entity/Q1760203 Stieldorferhohn http://www.wikidata.org/entity/Q253019 Point(7.23279 50.7145) +https://nwbib.de/spatial#Q1387816 http://www.wikidata.org/entity/Q1387816 Lahde http://www.wikidata.org/entity/Q253019 Point(8.9925 52.37) +https://nwbib.de/spatial#Q1536563 http://www.wikidata.org/entity/Q1536563 Golkrath http://www.wikidata.org/entity/Q253019 Point(6.24722 51.0833) +https://nwbib.de/spatial#Q1019955 http://www.wikidata.org/entity/Q1019955 Börnhausen http://www.wikidata.org/entity/Q253019 Point(7.51111 50.945) +https://nwbib.de/spatial#Q1428910 http://www.wikidata.org/entity/Q1428910 Nateln http://www.wikidata.org/entity/Q253019 Point(8.0093 51.6375) +https://nwbib.de/spatial#Q1414098 http://www.wikidata.org/entity/Q1414098 Hausdülmen http://www.wikidata.org/entity/Q532, http://www.wikidata.org/entity/Q253019 Point(7.25139 51.8111) +https://nwbib.de/spatial#Q1675881 http://www.wikidata.org/entity/Q1675881 Lüxheim http://www.wikidata.org/entity/Q253019 Point(6.633055555 50.772222222) +https://nwbib.de/spatial#Q2268249 http://www.wikidata.org/entity/Q2268249 Selhausen http://www.wikidata.org/entity/Q253019 Point(6.433333333 50.866666666) +https://nwbib.de/spatial#Q1250672 http://www.wikidata.org/entity/Q1250672 Marten http://www.wikidata.org/entity/Q253019 Point(7.38333 51.5094) +https://nwbib.de/spatial#Q1631463 http://www.wikidata.org/entity/Q1631463 Königsborn http://www.wikidata.org/entity/Q253019 Point(7.6875 51.55) +https://nwbib.de/spatial#Q1337428 http://www.wikidata.org/entity/Q1337428 Volkhoven/Weiler http://www.wikidata.org/entity/Q15632166 Point(6.88139 51.0233) +https://nwbib.de/spatial#Q450682 http://www.wikidata.org/entity/Q450682 Alzenbach http://www.wikidata.org/entity/Q253019 Point(7.4901 50.7688) +https://nwbib.de/spatial#Q1348990 http://www.wikidata.org/entity/Q1348990 Mülheim http://www.wikidata.org/entity/Q253019 Point(8.29056 51.4911) +https://nwbib.de/spatial#Q1770070 http://www.wikidata.org/entity/Q1770070 Langwaden http://www.wikidata.org/entity/Q253019 Point(6.6506 51.1135) +https://nwbib.de/spatial#Q1697729 http://www.wikidata.org/entity/Q1697729 Lauthausen http://www.wikidata.org/entity/Q253019 Point(7.328055555 50.776111111) +https://nwbib.de/spatial#Q1897678 http://www.wikidata.org/entity/Q1897678 Marienfeld http://www.wikidata.org/entity/Q253019 Point(8.275 51.95) +https://nwbib.de/spatial#Q1644223 http://www.wikidata.org/entity/Q1644223 Höntrup http://www.wikidata.org/entity/Q253019 Point(9.02944 51.9281) +https://nwbib.de/spatial#Q2536400 http://www.wikidata.org/entity/Q2536400 Völlinghausen http://www.wikidata.org/entity/Q253019 Point(8.29812 51.5961) +https://nwbib.de/spatial#Q1275086 http://www.wikidata.org/entity/Q1275086 Wetten http://www.wikidata.org/entity/Q253019 Point(6.2875 51.56944) +https://nwbib.de/spatial#Q877120 http://www.wikidata.org/entity/Q877120 Küdinghoven http://www.wikidata.org/entity/Q253019 Point(7.148280555 50.729691666) +https://nwbib.de/spatial#Q1309211 http://www.wikidata.org/entity/Q1309211 Kalenberg http://www.wikidata.org/entity/Q253019 Point(6.59778 50.5669) +https://nwbib.de/spatial#Q1981056 http://www.wikidata.org/entity/Q1981056 Neunkirchen http://www.wikidata.org/entity/Q253019 Point(7.33417 50.8411) +https://nwbib.de/spatial#Q181910 http://www.wikidata.org/entity/Q181910 Laer http://www.wikidata.org/entity/Q262166 Point(7.356944444 52.054722222) +https://nwbib.de/spatial#Q568645 http://www.wikidata.org/entity/Q568645 Anreppen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.5875 51.745) +https://nwbib.de/spatial#Q53904 http://www.wikidata.org/entity/Q53904 Spenge http://www.wikidata.org/entity/Q42744322 Point(8.483055555 52.133055555) +https://nwbib.de/spatial#Q1743148 http://www.wikidata.org/entity/Q1743148 Kirchenkreis Halle http://www.wikidata.org/entity/Q897303 Point(8.36297 52.0589) +https://nwbib.de/spatial#Q1724607 http://www.wikidata.org/entity/Q1724607 Mettinghausen http://www.wikidata.org/entity/Q253019 Point(8.43306 51.7078) +https://nwbib.de/spatial#Q1469698 http://www.wikidata.org/entity/Q1469698 Froitzheim http://www.wikidata.org/entity/Q253019 Point(6.572777777 50.712222222) +https://nwbib.de/spatial#Q2713 http://www.wikidata.org/entity/Q2713 Drensteinfurt http://www.wikidata.org/entity/Q42744322 Point(7.739166666 51.794444444) +https://nwbib.de/spatial#Q1257985 http://www.wikidata.org/entity/Q1257985 Nienberge http://www.wikidata.org/entity/Q253019 Point(7.55417 51.9958) +https://nwbib.de/spatial#Q1736953 http://www.wikidata.org/entity/Q1736953 Katzvey http://www.wikidata.org/entity/Q253019 Point(6.68246 50.6021) +https://nwbib.de/spatial#Q328046 http://www.wikidata.org/entity/Q328046 Hornoldendorf http://www.wikidata.org/entity/Q253019 Point(8.893333333 51.906388888) +https://nwbib.de/spatial#Q2281699 http://www.wikidata.org/entity/Q2281699 Siddinghausen http://www.wikidata.org/entity/Q253019 Point(8.53028 51.5208) +https://nwbib.de/spatial#Q1790597 http://www.wikidata.org/entity/Q1790597 Kräwinklerbrücke http://www.wikidata.org/entity/Q253019 Point(7.30562 51.1823) +https://nwbib.de/spatial#Q2552606 http://www.wikidata.org/entity/Q2552606 Watern http://www.wikidata.org/entity/Q253019 Point(6.26917 51.1306) +https://nwbib.de/spatial#Q881871 http://www.wikidata.org/entity/Q881871 Blasheim http://www.wikidata.org/entity/Q253019 Point(8.56611 52.3028) +https://nwbib.de/spatial#Q1818011 http://www.wikidata.org/entity/Q1818011 Lenne http://www.wikidata.org/entity/Q253019 Point(8.22139 51.1325) +https://nwbib.de/spatial#Q1310629 http://www.wikidata.org/entity/Q1310629 Eiringhausen http://www.wikidata.org/entity/Q253019 Point(7.868888888 51.2375) +https://nwbib.de/spatial#Q1644645 http://www.wikidata.org/entity/Q1644645 Kreis Bergheim http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.6500001 50.96666718) +https://nwbib.de/spatial#Q15294309 http://www.wikidata.org/entity/Q15294309 Hasselt http://www.wikidata.org/entity/Q253019 Point(6.258055555 51.763611111) +https://nwbib.de/spatial#Q14516259 http://www.wikidata.org/entity/Q14516259 Immendorf http://www.wikidata.org/entity/Q253019 Point(6.1725 50.9517) +https://nwbib.de/spatial#Q181745 http://www.wikidata.org/entity/Q181745 Tecklenburg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q12350930 Point(7.8125 52.219444444) +https://nwbib.de/spatial#Q1171839 http://www.wikidata.org/entity/Q1171839 Daseburg http://www.wikidata.org/entity/Q253019 Point(9.221944444 51.511944444) +https://nwbib.de/spatial#Q1803056 http://www.wikidata.org/entity/Q1803056 Landkreis Altena http://www.wikidata.org/entity/Q106658 Point(7.67083 51.2981) +https://nwbib.de/spatial#Q6292 http://www.wikidata.org/entity/Q6292 Rhein-Erft-Kreis http://www.wikidata.org/entity/Q20738811 Point(6.67 50.92) +https://nwbib.de/spatial#Q1200207 http://www.wikidata.org/entity/Q1200207 Derkum http://www.wikidata.org/entity/Q253019 Point(6.814722222 50.711666666) +https://nwbib.de/spatial#Q1279529 http://www.wikidata.org/entity/Q1279529 Großvernich http://www.wikidata.org/entity/Q253019 Point(6.834722222 50.738611111) +https://nwbib.de/spatial#Q1374714 http://www.wikidata.org/entity/Q1374714 Rodder http://www.wikidata.org/entity/Q253019 Point(7.5033 50.7503) +https://nwbib.de/spatial#Q1543659 http://www.wikidata.org/entity/Q1543659 Gratzfeld http://www.wikidata.org/entity/Q253019 Point(7.33565 50.6763) +https://nwbib.de/spatial#Q2015183 http://www.wikidata.org/entity/Q2015183 Oesbern http://www.wikidata.org/entity/Q253019 Point(7.84667 51.4436) +https://nwbib.de/spatial#Q2567761 http://www.wikidata.org/entity/Q2567761 Widdeshoven http://www.wikidata.org/entity/Q253019 Point(6.68917 51.085) +https://nwbib.de/spatial#Q15114720 http://www.wikidata.org/entity/Q15114720 Herringhausen http://www.wikidata.org/entity/Q253019 Point(8.61388889 52.13055556) +https://nwbib.de/spatial#Q2570691 http://www.wikidata.org/entity/Q2570691 Wildewiese http://www.wikidata.org/entity/Q253019 Point(7.98986 51.2399) +https://nwbib.de/spatial#Q1534368 http://www.wikidata.org/entity/Q1534368 Gohfeld http://www.wikidata.org/entity/Q253019 Point(8.758611111 52.193055555) +https://nwbib.de/spatial#Q923782 http://www.wikidata.org/entity/Q923782 Brockhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(7.83222 51.3753) +https://nwbib.de/spatial#Q2420842 http://www.wikidata.org/entity/Q2420842 Thier http://www.wikidata.org/entity/Q253019 Point(7.368611111 51.079444444) +https://nwbib.de/spatial#Q3214916 http://www.wikidata.org/entity/Q3214916 Sodingen http://www.wikidata.org/entity/Q253019 Point(7.259645 51.539556) +https://nwbib.de/spatial#Q322875 http://www.wikidata.org/entity/Q322875 Stadtbezirk 3 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.776666666 51.208055555) +https://nwbib.de/spatial#Q510099 http://www.wikidata.org/entity/Q510099 Bimmen http://www.wikidata.org/entity/Q253019 Point(6.068055555 51.858611111) +https://nwbib.de/spatial#Q2282416 http://www.wikidata.org/entity/Q2282416 Siebenstern http://www.wikidata.org/entity/Q253019 Point(9.03534 51.7048) +https://nwbib.de/spatial#Q242098 http://www.wikidata.org/entity/Q242098 Beverungen http://www.wikidata.org/entity/Q42744322 Point(9.3725 51.662777777) +https://nwbib.de/spatial#Q2648514 http://www.wikidata.org/entity/Q2648514 Allerheiligen http://www.wikidata.org/entity/Q253019 Point(6.74561 51.1376) +https://nwbib.de/spatial#Q2558822 http://www.wikidata.org/entity/Q2558822 Wemlighausen http://www.wikidata.org/entity/Q253019 Point(8.423055555 51.076666666) +https://nwbib.de/spatial#Q1271639 http://www.wikidata.org/entity/Q1271639 Düffelward http://www.wikidata.org/entity/Q253019 Point(6.107777777 51.828611111) +https://nwbib.de/spatial#Q2794 http://www.wikidata.org/entity/Q2794 Sassenberg http://www.wikidata.org/entity/Q42744322 Point(8.040833333 51.989722222) +https://nwbib.de/spatial#Q893547 http://www.wikidata.org/entity/Q893547 Borgholz http://www.wikidata.org/entity/Q253019 Point(9.25917 51.6217) +https://nwbib.de/spatial#Q871085 http://www.wikidata.org/entity/Q871085 Herbede http://www.wikidata.org/entity/Q253019 Point(7.281666666 51.422222222) +https://nwbib.de/spatial#Q47022415 http://www.wikidata.org/entity/Q47022415 Kirchenkreis Lennep http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1368631 http://www.wikidata.org/entity/Q1368631 Huttrop http://www.wikidata.org/entity/Q253019 Point(7.044167 51.448611) +https://nwbib.de/spatial#Q26208579 http://www.wikidata.org/entity/Q26208579 Bergerfurth http://www.wikidata.org/entity/Q253019 Point(6.517222 51.715278) +https://nwbib.de/spatial#Q875774 http://www.wikidata.org/entity/Q875774 Friedrichstadt http://www.wikidata.org/entity/Q1852178 Point(6.78056 51.2122) +https://nwbib.de/spatial#Q1776372 http://www.wikidata.org/entity/Q1776372 Klosterbauerschaft http://www.wikidata.org/entity/Q253019 Point(8.61 52.240833333) +https://nwbib.de/spatial#Q1401864 http://www.wikidata.org/entity/Q1401864 Heßloh http://www.wikidata.org/entity/Q253019 Point(8.83584 51.9954) +https://nwbib.de/spatial#Q1737135 http://www.wikidata.org/entity/Q1737135 Kaunitz http://www.wikidata.org/entity/Q253019 Point(8.565 51.8564) +https://nwbib.de/spatial#Q61053310 http://www.wikidata.org/entity/Q61053310 Bertlich http://www.wikidata.org/entity/Q253019 Point(7.087777777 51.606944444) +https://nwbib.de/spatial#Q4090 http://www.wikidata.org/entity/Q4090 Sankt Augustin http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.186666666 50.77) +https://nwbib.de/spatial#Q1636311 http://www.wikidata.org/entity/Q1636311 Sönnern http://www.wikidata.org/entity/Q253019 Point(7.89889 51.5789) +https://nwbib.de/spatial#Q1734823 http://www.wikidata.org/entity/Q1734823 Stadtbezirk Wewer http://www.wikidata.org/entity/Q2740635 Point(8.69778 51.6883) +https://nwbib.de/spatial#Q547 http://www.wikidata.org/entity/Q547 Witterschlick http://www.wikidata.org/entity/Q253019 Point(7.0225 50.691666666) +https://nwbib.de/spatial#Q2404696 http://www.wikidata.org/entity/Q2404696 Terheeg http://www.wikidata.org/entity/Q253019 Point(6.34472 51.0817) +https://nwbib.de/spatial#Q1494183 http://www.wikidata.org/entity/Q1494183 Garenfeld http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.515277777 51.402222222) +https://nwbib.de/spatial#Q1728485 http://www.wikidata.org/entity/Q1728485 Kapellen http://www.wikidata.org/entity/Q253019 Point(6.62222 51.1267) +https://nwbib.de/spatial#Q1673035 http://www.wikidata.org/entity/Q1673035 Irmgarteichen http://www.wikidata.org/entity/Q253019 Point(8.19778 50.8564) +https://nwbib.de/spatial#Q1368750 http://www.wikidata.org/entity/Q1368750 Essentho http://www.wikidata.org/entity/Q253019 Point(8.83222 51.4814) +https://nwbib.de/spatial#Q1754395 http://www.wikidata.org/entity/Q1754395 Sürenheide http://www.wikidata.org/entity/Q253019 Point(8.47136 51.892) +https://nwbib.de/spatial#Q2430684 http://www.wikidata.org/entity/Q2430684 Thüle http://www.wikidata.org/entity/Q253019 Point(8.58702 51.7097) +https://nwbib.de/spatial#Q1725995 http://www.wikidata.org/entity/Q1725995 Marienbaum http://www.wikidata.org/entity/Q253019 Point(6.375555555 51.698055555) +https://nwbib.de/spatial#Q967272 http://www.wikidata.org/entity/Q967272 Stemmer http://www.wikidata.org/entity/Q253019 Point(8.87417 52.3372) +https://nwbib.de/spatial#Q15109999 http://www.wikidata.org/entity/Q15109999 Dürscheider Hütte http://www.wikidata.org/entity/Q253019 Point(7.218254 51.002373) +https://nwbib.de/spatial#Q73110 http://www.wikidata.org/entity/Q73110 Stahle http://www.wikidata.org/entity/Q253019 Point(9.43022 51.8373) +https://nwbib.de/spatial#Q1651871 http://www.wikidata.org/entity/Q1651871 Hörstmar http://www.wikidata.org/entity/Q253019 Point(8.85237 52.0119) +https://nwbib.de/spatial#Q1280334 http://www.wikidata.org/entity/Q1280334 Herzfeld http://www.wikidata.org/entity/Q253019 Point(8.14583 51.6653) +https://nwbib.de/spatial#Q2100603 http://www.wikidata.org/entity/Q2100603 Pohlhausen http://www.wikidata.org/entity/Q2983893 Point(7.18639 51.1481) +https://nwbib.de/spatial#Q1739707 http://www.wikidata.org/entity/Q1739707 Päpinghausen http://www.wikidata.org/entity/Q253019 Point(8.9875 52.32) +https://nwbib.de/spatial#Q1619541 http://www.wikidata.org/entity/Q1619541 Hinsbeck http://www.wikidata.org/entity/Q253019 Point(6.281389 51.334444) +https://nwbib.de/spatial#Q446716 http://www.wikidata.org/entity/Q446716 Köln-Rodenkirchen (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(6.991111111 50.891388888) +https://nwbib.de/spatial#Q1271134 http://www.wikidata.org/entity/Q1271134 Dönberg http://www.wikidata.org/entity/Q253019 Point(7.162 51.2984) +https://nwbib.de/spatial#Q936159 http://www.wikidata.org/entity/Q936159 Keyenberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.411944444 51.083333333) +https://nwbib.de/spatial#Q29561600 http://www.wikidata.org/entity/Q29561600 Klein Reken http://www.wikidata.org/entity/Q253019 Point(7.037777777 51.786388888) +https://nwbib.de/spatial#Q1785480 http://www.wikidata.org/entity/Q1785480 Kotthausen http://www.wikidata.org/entity/Q253019 Point(7.54278 51.0547) +https://nwbib.de/spatial#Q1250626 http://www.wikidata.org/entity/Q1250626 Hacheney http://www.wikidata.org/entity/Q253019 Point(7.48528 51.4769) +https://nwbib.de/spatial#Q1648884 http://www.wikidata.org/entity/Q1648884 Niedersorpe http://www.wikidata.org/entity/Q253019 Point(8.35944 51.1689) +https://nwbib.de/spatial#Q1787409 http://www.wikidata.org/entity/Q1787409 Kreis Moers http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.62638889 51.45166667) +https://nwbib.de/spatial#Q15841757 http://www.wikidata.org/entity/Q15841757 Rarbach http://www.wikidata.org/entity/Q262166 Point(8.30916667 51.25166667) +https://nwbib.de/spatial#Q991970 http://www.wikidata.org/entity/Q991970 Bruchhausen http://www.wikidata.org/entity/Q253019 Point(8.53139 51.3178) +https://nwbib.de/spatial#Q1776765 http://www.wikidata.org/entity/Q1776765 Klüppelberg http://www.wikidata.org/entity/Q262166 Point(7.41194 51.1072) +https://nwbib.de/spatial#Q880975 http://www.wikidata.org/entity/Q880975 Ippendorf http://www.wikidata.org/entity/Q253019 Point(7.083611111 50.697777777) +https://nwbib.de/spatial#Q53911 http://www.wikidata.org/entity/Q53911 Kirchlengern http://www.wikidata.org/entity/Q262166 Point(8.633055555 52.2) +https://nwbib.de/spatial#Q15899917 http://www.wikidata.org/entity/Q15899917 Langenhorst http://www.wikidata.org/entity/Q253019 Point(7.034473333 51.355450833) +https://nwbib.de/spatial#Q1633730 http://www.wikidata.org/entity/Q1633730 Huckenbröl http://www.wikidata.org/entity/Q253019 Point(7.46444 50.7625) +https://nwbib.de/spatial#Q242385 http://www.wikidata.org/entity/Q242385 Leopoldshöhe http://www.wikidata.org/entity/Q262166 Point(8.7 52.0167) +https://nwbib.de/spatial#Q1349119 http://www.wikidata.org/entity/Q1349119 Erder http://www.wikidata.org/entity/Q253019 Point(8.933 52.1819) +https://nwbib.de/spatial#Q2018737 http://www.wikidata.org/entity/Q2018737 Oldendorf http://www.wikidata.org/entity/Q253019 Point(8.26806 52.0864) +https://nwbib.de/spatial#Q2899 http://www.wikidata.org/entity/Q2899 Mülheim an der Ruhr http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q106517174 Point(6.8825 51.4275) +https://nwbib.de/spatial#Q1585135 http://www.wikidata.org/entity/Q1585135 Hardt http://www.wikidata.org/entity/Q253019 Point(6.9488373 51.6594398) +https://nwbib.de/spatial#Q896850 http://www.wikidata.org/entity/Q896850 Oberkassel http://www.wikidata.org/entity/Q1852178 Point(6.755 51.2303) +https://nwbib.de/spatial#Q1019959 http://www.wikidata.org/entity/Q1019959 Börnig http://www.wikidata.org/entity/Q253019 Point(7.26384 51.5514) +https://nwbib.de/spatial#Q1307081 http://www.wikidata.org/entity/Q1307081 Einern http://www.wikidata.org/entity/Q253019 Point(7.21306 51.3025) +https://nwbib.de/spatial#Q2569338 http://www.wikidata.org/entity/Q2569338 Wiescherhöfen http://www.wikidata.org/entity/Q253019 Point(7.76194 51.6481) +https://nwbib.de/spatial#Q1879885 http://www.wikidata.org/entity/Q1879885 Löwen http://www.wikidata.org/entity/Q253019 Point(9.09972 51.5786) +https://nwbib.de/spatial#Q6961 http://www.wikidata.org/entity/Q6961 Hennef http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.283333333 50.783333333) +https://nwbib.de/spatial#Q1562126 http://www.wikidata.org/entity/Q1562126 Güsten (Jülich) http://www.wikidata.org/entity/Q253019 Point(6.43028 50.9592) +https://nwbib.de/spatial#Q320095 http://www.wikidata.org/entity/Q320095 Hüls http://www.wikidata.org/entity/Q2983893 Point(6.511111111 51.372222222) +https://nwbib.de/spatial#Q3822 http://www.wikidata.org/entity/Q3822 Lünen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q42744322 Point(7.516666666 51.616666666) +https://nwbib.de/spatial#Q886245 http://www.wikidata.org/entity/Q886245 Blumenkamp http://www.wikidata.org/entity/Q253019 Point(6.61 51.69) +https://nwbib.de/spatial#Q512233 http://www.wikidata.org/entity/Q512233 Hamborn (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.77778 51.4975) +https://nwbib.de/spatial#Q1734761 http://www.wikidata.org/entity/Q1734761 Kneblinghausen http://www.wikidata.org/entity/Q253019 Point(8.50821 51.5017) +https://nwbib.de/spatial#Q881590 http://www.wikidata.org/entity/Q881590 Blankenhagen http://www.wikidata.org/entity/Q253019 Point(8.36667 51.9333) +https://nwbib.de/spatial#Q1456954 http://www.wikidata.org/entity/Q1456954 Friedenthal http://www.wikidata.org/entity/Q253019 Point(7.46944 50.8964) +https://nwbib.de/spatial#Q61790257 http://www.wikidata.org/entity/Q61790257 Rennekoven http://www.wikidata.org/entity/Q253019 Point(6.320472222 51.281777777) +https://nwbib.de/spatial#Q1736878 http://www.wikidata.org/entity/Q1736878 Richrath http://www.wikidata.org/entity/Q253019 Point(6.94424 51.1294) +https://nwbib.de/spatial#Q1805036 http://www.wikidata.org/entity/Q1805036 Langendorf http://www.wikidata.org/entity/Q253019 Point(6.61583 50.675) +https://nwbib.de/spatial#Q769380 http://www.wikidata.org/entity/Q769380 Bistum Münster http://www.wikidata.org/entity/Q105388829 +https://nwbib.de/spatial#Q1507753 http://www.wikidata.org/entity/Q1507753 Heiderhof http://www.wikidata.org/entity/Q253019 Point(7.15107 50.6614) +https://nwbib.de/spatial#Q1262632 http://www.wikidata.org/entity/Q1262632 Oberzier http://www.wikidata.org/entity/Q253019 Point(6.474722222 50.867222222) +https://nwbib.de/spatial#Q704209 http://www.wikidata.org/entity/Q704209 Arsbeck http://www.wikidata.org/entity/Q253019 Point(6.21167 51.1436) +https://nwbib.de/spatial#Q242953 http://www.wikidata.org/entity/Q242953 Barntrup http://www.wikidata.org/entity/Q42744322 Point(9.1206 51.9935) +https://nwbib.de/spatial#N44 http://www.wikidata.org/entity/Q836937 Herzogtum Jülich http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q154547 Point(6.35 50.91666667) +https://nwbib.de/spatial#Q1182508 http://www.wikidata.org/entity/Q1182508 Deesem http://www.wikidata.org/entity/Q253019 Point(7.27936 50.8567) +https://nwbib.de/spatial#Q4086 http://www.wikidata.org/entity/Q4086 Menden (Sauerland) http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.8 51.433333333) +https://nwbib.de/spatial#Q14946 http://www.wikidata.org/entity/Q14946 Billerbeck http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.295 51.979166666) +https://nwbib.de/spatial#Q436954 http://www.wikidata.org/entity/Q436954 Altenbüren http://www.wikidata.org/entity/Q253019 Point(8.505 51.385833333) +https://nwbib.de/spatial#Q1959100 http://www.wikidata.org/entity/Q1959100 Häger http://www.wikidata.org/entity/Q253019 Point(7.56167 52.0222) +https://nwbib.de/spatial#Q1415788 http://www.wikidata.org/entity/Q1415788 Oberlar http://www.wikidata.org/entity/Q253019 Point(7.14141 50.8127) +https://nwbib.de/spatial#Q47074373 http://www.wikidata.org/entity/Q47074373 Eckdorf http://www.wikidata.org/entity/Q253019 Point(6.895 50.80375) +https://nwbib.de/spatial#Q1250682 http://www.wikidata.org/entity/Q1250682 Neuasseln http://www.wikidata.org/entity/Q253019 Point(7.5625 51.5169) +https://nwbib.de/spatial#Q1020946 http://www.wikidata.org/entity/Q1020946 Herrschaft Büren http://www.wikidata.org/entity/Q196068, http://www.wikidata.org/entity/Q61881926, http://www.wikidata.org/entity/Q8436 Point(8.55833 51.5559) +https://nwbib.de/spatial#Q1486216 http://www.wikidata.org/entity/Q1486216 Raffelsbrand http://www.wikidata.org/entity/Q253019 Point(6.31637 50.68526) +https://nwbib.de/spatial#Q1713705 http://www.wikidata.org/entity/Q1713705 Lucherberg http://www.wikidata.org/entity/Q253019 Point(6.373055555 50.843611111) +https://nwbib.de/spatial#Q10956 http://www.wikidata.org/entity/Q10956 Erndtebrück http://www.wikidata.org/entity/Q262166 Point(8.255555555 50.988888888) +https://nwbib.de/spatial#Q909629 http://www.wikidata.org/entity/Q909629 Brenscheid http://www.wikidata.org/entity/Q253019 Point(7.46539 51.2041) +https://nwbib.de/spatial#Q1806587 http://www.wikidata.org/entity/Q1806587 Lashorst http://www.wikidata.org/entity/Q253019 Point(8.51361 52.3431) +https://nwbib.de/spatial#Q981347 http://www.wikidata.org/entity/Q981347 Selfkant http://www.wikidata.org/entity/Q107425 Point(5.86694444 51.05) +https://nwbib.de/spatial#Q20826154 http://www.wikidata.org/entity/Q20826154 Heessen http://www.wikidata.org/entity/Q253019 Point(7.83138889 51.70638889) +https://nwbib.de/spatial#Q810760 http://www.wikidata.org/entity/Q810760 Batenhorst http://www.wikidata.org/entity/Q253019 Point(8.29944 51.8039) +https://nwbib.de/spatial#Q1746460 http://www.wikidata.org/entity/Q1746460 Westmünsterland http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q2904 http://www.wikidata.org/entity/Q2904 Herne http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591 Point(7.21897 51.54258) +https://nwbib.de/spatial#Q884294 http://www.wikidata.org/entity/Q884294 Marmagen http://www.wikidata.org/entity/Q253019 Point(6.57972 50.4769) +https://nwbib.de/spatial#Q47037449 http://www.wikidata.org/entity/Q47037449 Bergerhausen http://www.wikidata.org/entity/Q253019 Point(6.645861111 50.861805555) +https://nwbib.de/spatial#Q1890294 http://www.wikidata.org/entity/Q1890294 Manheim http://www.wikidata.org/entity/Q253019 Point(6.59972 50.8819) +https://nwbib.de/spatial#Q1569346 http://www.wikidata.org/entity/Q1569346 Hain http://www.wikidata.org/entity/Q253019 Point(8.03778 50.8761) +https://nwbib.de/spatial#Q1979269 http://www.wikidata.org/entity/Q1979269 Neubeckum http://www.wikidata.org/entity/Q253019 Point(8.02461 51.7988) +https://nwbib.de/spatial#Q819728 http://www.wikidata.org/entity/Q819728 Berghausen http://www.wikidata.org/entity/Q253019 Point(6.9258 51.1131) +https://nwbib.de/spatial#Q1410637 http://www.wikidata.org/entity/Q1410637 Laaspherhütte http://www.wikidata.org/entity/Q253019 Point(8.379722222 50.922222222) +https://nwbib.de/spatial#Q326324 http://www.wikidata.org/entity/Q326324 Nienhagen http://www.wikidata.org/entity/Q253019 Point(8.8225 51.9606) +https://nwbib.de/spatial#Q4074 http://www.wikidata.org/entity/Q4074 Euskirchen http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.787255555 50.661277777) +https://nwbib.de/spatial#Q2109576 http://www.wikidata.org/entity/Q2109576 Priesterath http://www.wikidata.org/entity/Q253019 Point(6.5033 51.1082) +https://nwbib.de/spatial#Q1704010 http://www.wikidata.org/entity/Q1704010 Lippling http://www.wikidata.org/entity/Q253019 Point(8.55 51.8) +https://nwbib.de/spatial#Q894249 http://www.wikidata.org/entity/Q894249 Borth http://www.wikidata.org/entity/Q253019 Point(6.55833 51.5917) +https://nwbib.de/spatial#Q1526672 http://www.wikidata.org/entity/Q1526672 Hollen http://www.wikidata.org/entity/Q253019 Point(8.38472 51.9606) +https://nwbib.de/spatial#Q1356971 http://www.wikidata.org/entity/Q1356971 Ernsdorf http://www.wikidata.org/entity/Q253019 Point(7.99931 50.963) +https://nwbib.de/spatial#Q1226372 http://www.wikidata.org/entity/Q1226372 Dingden http://www.wikidata.org/entity/Q253019 Point(6.61208 51.7694) +https://nwbib.de/spatial#Q17679522 http://www.wikidata.org/entity/Q17679522 Kurl-Husen http://www.wikidata.org/entity/Q253019 Point(7.591388888 51.556943888) +https://nwbib.de/spatial#Q1552972 http://www.wikidata.org/entity/Q1552972 Gubisrath http://www.wikidata.org/entity/Q253019 Point(6.70072 51.1175) +https://nwbib.de/spatial#Q7028 http://www.wikidata.org/entity/Q7028 Kamen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.665277777 51.591666666) +https://nwbib.de/spatial#Q472141 http://www.wikidata.org/entity/Q472141 Gerresheim http://www.wikidata.org/entity/Q1852178 Point(6.86611 51.2394) +https://nwbib.de/spatial#Q461905 http://www.wikidata.org/entity/Q461905 Amelunxen http://www.wikidata.org/entity/Q253019 Point(9.34361 51.7122) +https://nwbib.de/spatial#Q1986556 http://www.wikidata.org/entity/Q1986556 Udenbreth http://www.wikidata.org/entity/Q253019 Point(6.392777777 50.420277777) +https://nwbib.de/spatial#Q117780 http://www.wikidata.org/entity/Q117780 Remmighausen http://www.wikidata.org/entity/Q253019 Point(8.909444444 51.913055555) +https://nwbib.de/spatial#Q2120762 http://www.wikidata.org/entity/Q2120762 Pömbsen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q4946461 Point(9.0725 51.7747) +https://nwbib.de/spatial#Q19687917 http://www.wikidata.org/entity/Q19687917 Hülstrung http://www.wikidata.org/entity/Q253019 Point(7.01980556 51.11841667) +https://nwbib.de/spatial#Q1157435 http://www.wikidata.org/entity/Q1157435 Dahle http://www.wikidata.org/entity/Q253019 Point(7.75693 51.3001) +https://nwbib.de/spatial#Q2326757 http://www.wikidata.org/entity/Q2326757 Stadtbezirk Innenstadt-West http://www.wikidata.org/entity/Q2740635 Point(7.465277777 51.513888888) +https://nwbib.de/spatial#Q876552 http://www.wikidata.org/entity/Q876552 Grafschaft Gimborn-Neustadt http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1805382 http://www.wikidata.org/entity/Q1805382 Langschede http://www.wikidata.org/entity/Q253019 Point(7.711944444 51.474166666) +https://nwbib.de/spatial#Q2530373 http://www.wikidata.org/entity/Q2530373 Vohren http://www.wikidata.org/entity/Q253019 Point(8.05 51.9439) +https://nwbib.de/spatial#Q883068 http://www.wikidata.org/entity/Q883068 Eil http://www.wikidata.org/entity/Q15632166 Point(7.0731 50.8936) +https://nwbib.de/spatial#Q900461 http://www.wikidata.org/entity/Q900461 Brauersdorf http://www.wikidata.org/entity/Q253019 Point(8.134 50.917) +https://nwbib.de/spatial#Q2570140 http://www.wikidata.org/entity/Q2570140 Wilbertzhohn http://www.wikidata.org/entity/Q253019 Point(7.46972 50.7894) +https://nwbib.de/spatial#Q116744 http://www.wikidata.org/entity/Q116744 Pödinghausen http://www.wikidata.org/entity/Q253019 Point(8.543611111 52.117777777) +https://nwbib.de/spatial#Q1200174 http://www.wikidata.org/entity/Q1200174 Derichsweiler http://www.wikidata.org/entity/Q253019 Point(6.42889 50.7981) +https://nwbib.de/spatial#Q1925987 http://www.wikidata.org/entity/Q1925987 Metternich (Weilerswist) http://www.wikidata.org/entity/Q253019 Point(6.88917 50.7372) +https://nwbib.de/spatial#Q882157 http://www.wikidata.org/entity/Q882157 Neuastenberg http://www.wikidata.org/entity/Q253019 Point(8.483363888 51.160416666) +https://nwbib.de/spatial#Q1493919 http://www.wikidata.org/entity/Q1493919 Stünzel http://www.wikidata.org/entity/Q253019 Point(8.361944444 50.980833333) +https://nwbib.de/spatial#Q1623718 http://www.wikidata.org/entity/Q1623718 Hohenhagen http://www.wikidata.org/entity/Q253019 Point(7.2075 51.1815) +https://nwbib.de/spatial#Q1313496 http://www.wikidata.org/entity/Q1313496 Waldniel http://www.wikidata.org/entity/Q253019 Point(6.27306 51.2131) +https://nwbib.de/spatial#Q200567 http://www.wikidata.org/entity/Q200567 Stadtlohn http://www.wikidata.org/entity/Q42744322 Point(6.915 51.9925) +https://nwbib.de/spatial#Q1368663 http://www.wikidata.org/entity/Q1368663 Überruhr http://www.wikidata.org/entity/Q253019 Point(7.078889 51.426389) +https://nwbib.de/spatial#Q1321518 http://www.wikidata.org/entity/Q1321518 Hochmoor http://www.wikidata.org/entity/Q253019 Point(7.03271 51.8973) +https://nwbib.de/spatial#Q44052318 http://www.wikidata.org/entity/Q44052318 Liedern http://www.wikidata.org/entity/Q253019 Point(6.549166666 51.833055555) +https://nwbib.de/spatial#Q1586215 http://www.wikidata.org/entity/Q1586215 Helminghausen http://www.wikidata.org/entity/Q253019 Point(8.72974 51.3832) +https://nwbib.de/spatial#Q1330162 http://www.wikidata.org/entity/Q1330162 Enzen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.69583 50.6567) +https://nwbib.de/spatial#Q1339298 http://www.wikidata.org/entity/Q1339298 Schloß Neuhaus http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(8.71278 51.7442) +https://nwbib.de/spatial#Q1573605 http://www.wikidata.org/entity/Q1573605 Hamm-Bossendorf http://www.wikidata.org/entity/Q253019 Point(7.18611 51.7275) +https://nwbib.de/spatial#Q948181 http://www.wikidata.org/entity/Q948181 Mariadorf http://www.wikidata.org/entity/Q253019 Point(6.191666666 50.863333333) +https://nwbib.de/spatial#Q200602 http://www.wikidata.org/entity/Q200602 Isselburg http://www.wikidata.org/entity/Q42744322 Point(6.466666666 51.833055555) +https://nwbib.de/spatial#Q254458 http://www.wikidata.org/entity/Q254458 Much http://www.wikidata.org/entity/Q262166 Point(7.4 50.916666666) +https://nwbib.de/spatial#Q2035183 http://www.wikidata.org/entity/Q2035183 Osterfeld http://www.wikidata.org/entity/Q253019 Point(6.88778 51.5) +https://nwbib.de/spatial#Q1631641 http://www.wikidata.org/entity/Q1631641 Hovestadt http://www.wikidata.org/entity/Q253019 Point(8.14389 51.6572) +https://nwbib.de/spatial#Q1434906 http://www.wikidata.org/entity/Q1434906 Flüren http://www.wikidata.org/entity/Q253019 Point(6.57056 51.6808) +https://nwbib.de/spatial#Q816086 http://www.wikidata.org/entity/Q816086 Belmicke http://www.wikidata.org/entity/Q253019 Point(7.72667 51.025) +https://nwbib.de/spatial#Q1343221 http://www.wikidata.org/entity/Q1343221 Enkhausen http://www.wikidata.org/entity/Q253019 Point(7.961697222 51.372702777) +https://nwbib.de/spatial#Q1618134 http://www.wikidata.org/entity/Q1618134 Hilberath http://www.wikidata.org/entity/Q253019 Point(6.96611 50.5647) +https://nwbib.de/spatial#Q1331787 http://www.wikidata.org/entity/Q1331787 Ellen (Niederzier) http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.4975 50.8586) +https://nwbib.de/spatial#Q1464557 http://www.wikidata.org/entity/Q1464557 Heckinghausen http://www.wikidata.org/entity/Q253019 Point(7.22616 51.2707) +https://nwbib.de/spatial#Q4083 http://www.wikidata.org/entity/Q4083 Eschweiler http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.283333333 50.816666666) +https://nwbib.de/spatial#Q1588183 http://www.wikidata.org/entity/Q1588183 Sende http://www.wikidata.org/entity/Q253019 Point(8.553 51.905) +https://nwbib.de/spatial#Q889291 http://www.wikidata.org/entity/Q889291 Bockum http://www.wikidata.org/entity/Q253019 Point(6.73538 51.3255) +https://nwbib.de/spatial#Q2472931 http://www.wikidata.org/entity/Q2472931 Uckerath http://www.wikidata.org/entity/Q253019 Point(7.36813 50.7318) +https://nwbib.de/spatial#Q765563 http://www.wikidata.org/entity/Q765563 Weiß http://www.wikidata.org/entity/Q15632166 Point(7.0275 50.877222222) +https://nwbib.de/spatial#Q6218 http://www.wikidata.org/entity/Q6218 Kreis Gütersloh http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(8.333333333 51.916666666) +https://nwbib.de/spatial#Q2406907 http://www.wikidata.org/entity/Q2406907 Tetz http://www.wikidata.org/entity/Q253019 Point(6.316666666 50.966666666) +https://nwbib.de/spatial#Q2446 http://www.wikidata.org/entity/Q2446 Dolberg http://www.wikidata.org/entity/Q253019 Point(7.91889 51.7114) +https://nwbib.de/spatial#Q808870 http://www.wikidata.org/entity/Q808870 Barrenstein http://www.wikidata.org/entity/Q253019 Point(6.63905 51.0777) +https://nwbib.de/spatial#Q200044 http://www.wikidata.org/entity/Q200044 Merzenich http://www.wikidata.org/entity/Q262166 Point(6.52665 50.82616) +https://nwbib.de/spatial#Q798730 http://www.wikidata.org/entity/Q798730 Bad Meinberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q6882870 Point(8.975 51.8936) +https://nwbib.de/spatial#Q1612761 http://www.wikidata.org/entity/Q1612761 Sögtrop http://www.wikidata.org/entity/Q253019 Point(8.28827 51.2622) +https://nwbib.de/spatial#Q2382179 http://www.wikidata.org/entity/Q2382179 Sünninghausen http://www.wikidata.org/entity/Q253019 Point(8.152222222 51.768055555) +https://nwbib.de/spatial#Q872901 http://www.wikidata.org/entity/Q872901 Mödrath http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q56061 Point(6.716666666 50.9) +https://nwbib.de/spatial#Q1625158 http://www.wikidata.org/entity/Q1625158 Holt http://www.wikidata.org/entity/Q2983893 Point(6.40203 51.1811) +https://nwbib.de/spatial#Q2035124 http://www.wikidata.org/entity/Q2035124 Osterath http://www.wikidata.org/entity/Q253019 Point(6.620277777 51.269166666) +https://nwbib.de/spatial#Q2289707 http://www.wikidata.org/entity/Q2289707 Sinzenich http://www.wikidata.org/entity/Q253019 Point(6.648055555 50.66) +https://nwbib.de/spatial#Q19964866 http://www.wikidata.org/entity/Q19964866 Hengsen http://www.wikidata.org/entity/Q253019 Point(7.62861111 51.48416667) +https://nwbib.de/spatial#Q1553033 http://www.wikidata.org/entity/Q1553033 Gudenhagen-Petersborn http://www.wikidata.org/entity/Q253019 Point(8.57722 51.37) +https://nwbib.de/spatial#Q1499815 http://www.wikidata.org/entity/Q1499815 Rotthausen http://www.wikidata.org/entity/Q253019 Point(7.08361 51.4906) +https://nwbib.de/spatial#Q2349166 http://www.wikidata.org/entity/Q2349166 Hetterscheidt http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.00392 51.32858) +https://nwbib.de/spatial#Q1017341 http://www.wikidata.org/entity/Q1017341 Buschhausen http://www.wikidata.org/entity/Q2983893 Point(6.833 51.503) +https://nwbib.de/spatial#Q1250683 http://www.wikidata.org/entity/Q1250683 Oespel http://www.wikidata.org/entity/Q253019 Point(7.38194 51.4864) +https://nwbib.de/spatial#Q56042224 http://www.wikidata.org/entity/Q56042224 Südsauerland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q1619115 http://www.wikidata.org/entity/Q1619115 Himmelgeist http://www.wikidata.org/entity/Q1852178 Point(6.80972 51.1728) +https://nwbib.de/spatial#Q1014705 http://www.wikidata.org/entity/Q1014705 Burg an der Wupper http://www.wikidata.org/entity/Q253019 Point(7.15278 51.1376) +https://nwbib.de/spatial#Q1436564 http://www.wikidata.org/entity/Q1436564 Menden http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q253019 Point(7.16583 50.7883) +https://nwbib.de/spatial#Q1526685 http://www.wikidata.org/entity/Q1526685 Girbelsrath http://www.wikidata.org/entity/Q253019 Point(6.552222222 50.811666666) +https://nwbib.de/spatial#Q1618705 http://www.wikidata.org/entity/Q1618705 Hillegossen http://www.wikidata.org/entity/Q253019 Point(8.6037 51.9938) +https://nwbib.de/spatial#Q323826 http://www.wikidata.org/entity/Q323826 Stadtbezirk 7 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.864166666 51.236944444) +https://nwbib.de/spatial#Q1546105 http://www.wikidata.org/entity/Q1546105 Grevenbrück http://www.wikidata.org/entity/Q253019 Point(8.01444 51.1358) +https://nwbib.de/spatial#Q19687934 http://www.wikidata.org/entity/Q19687934 Pelkum http://www.wikidata.org/entity/Q253019 Point(7.7425 51.63833333) +https://nwbib.de/spatial#Q43157295 http://www.wikidata.org/entity/Q43157295 Bilveringsen http://www.wikidata.org/entity/Q253019 Point(7.733333333 51.386388888) +https://nwbib.de/spatial#Q1387208 http://www.wikidata.org/entity/Q1387208 Lank-Latum http://www.wikidata.org/entity/Q253019 Point(6.67972 51.3067) +https://nwbib.de/spatial#Q317432 http://www.wikidata.org/entity/Q317432 Eversberg http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(8.336388888 51.369444444) +https://nwbib.de/spatial#Q1873166 http://www.wikidata.org/entity/Q1873166 Luchem http://www.wikidata.org/entity/Q253019 Point(6.369166666 50.831388888) +https://nwbib.de/spatial#Q1328322 http://www.wikidata.org/entity/Q1328322 Köttingen http://www.wikidata.org/entity/Q253019 Point(7.48417 50.7828) +https://nwbib.de/spatial#Q6275 http://www.wikidata.org/entity/Q6275 Kreis Düren http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(6.5 50.83) +https://nwbib.de/spatial#Q200247 http://www.wikidata.org/entity/Q200247 Raesfeld http://www.wikidata.org/entity/Q262166 Point(6.833333333 51.766666666) +https://nwbib.de/spatial#Q242320 http://www.wikidata.org/entity/Q242320 Schlangen http://www.wikidata.org/entity/Q262166 Point(8.833055555 51.816666666) +https://nwbib.de/spatial#Q1442978 http://www.wikidata.org/entity/Q1442978 Lerbeck http://www.wikidata.org/entity/Q253019 Point(8.94278 52.2544) +https://nwbib.de/spatial#Q2563710 http://www.wikidata.org/entity/Q2563710 Kornelimünster/Walheim http://www.wikidata.org/entity/Q2740635 Point(6.180277777 50.721388888) +https://nwbib.de/spatial#Q865412 http://www.wikidata.org/entity/Q865412 Birgte http://www.wikidata.org/entity/Q253019 Point(7.666666666 52.233333333) +https://nwbib.de/spatial#Q19965806 http://www.wikidata.org/entity/Q19965806 Stockhausen http://www.wikidata.org/entity/Q253019 Point(8.216915 51.353558888) +https://nwbib.de/spatial#Q1390913 http://www.wikidata.org/entity/Q1390913 Frankenberger Viertel http://www.wikidata.org/entity/Q253019 Point(6.106666666 50.768333333) +https://nwbib.de/spatial#N76 http://www.wikidata.org/entity/Q153943 Königreich Westphalen http://www.wikidata.org/entity/Q3024240, http://www.wikidata.org/entity/Q1679711, http://www.wikidata.org/entity/Q26879769, http://www.wikidata.org/entity/Q417175 Point(9.499612 51.308457) +https://nwbib.de/spatial#Q932656 http://www.wikidata.org/entity/Q932656 Herrschaft Rheda http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q1787416 http://www.wikidata.org/entity/Q1787416 Kreis Mülheim am Rhein http://www.wikidata.org/entity/Q5283531 Point(7.00416667 50.96222222) +https://nwbib.de/spatial#Q7927 http://www.wikidata.org/entity/Q7927 Regierungsbezirk Köln http://www.wikidata.org/entity/Q829277, http://www.wikidata.org/entity/Q1850612 Point(6.92 50.83) +https://nwbib.de/spatial#Q870865 http://www.wikidata.org/entity/Q870865 Stadtbezirk 8 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.8275 51.2092) +https://nwbib.de/spatial#Q243266 http://www.wikidata.org/entity/Q243266 Kranenburg http://www.wikidata.org/entity/Q262166 Point(6.007222222 51.789722222) +https://nwbib.de/spatial#Q151266 http://www.wikidata.org/entity/Q151266 Rott http://www.wikidata.org/entity/Q253019 Point(6.21 50.6822) +https://nwbib.de/spatial#Q1573620 http://www.wikidata.org/entity/Q1573620 Stadtbezirk Rhynern http://www.wikidata.org/entity/Q2740635 Point(7.85583 51.6303) +https://nwbib.de/spatial#Q50154175 http://www.wikidata.org/entity/Q50154175 Eischeid http://www.wikidata.org/entity/Q253019 Point(7.3585 50.842111111) +https://nwbib.de/spatial#Q1417419 http://www.wikidata.org/entity/Q1417419 Hedem http://www.wikidata.org/entity/Q253019 Point(8.54028 52.3408) +https://nwbib.de/spatial#Q10923 http://www.wikidata.org/entity/Q10923 Winterberg http://www.wikidata.org/entity/Q1595408, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(8.53 51.195) +https://nwbib.de/spatial#Q1491338 http://www.wikidata.org/entity/Q1491338 Rosauel http://www.wikidata.org/entity/Q253019 Point(7.2536 50.8976) +https://nwbib.de/spatial#Q1615095 http://www.wikidata.org/entity/Q1615095 Herzebrock http://www.wikidata.org/entity/Q253019 Point(8.23941 51.8816) +https://nwbib.de/spatial#Q832028 http://www.wikidata.org/entity/Q832028 Römershagen http://www.wikidata.org/entity/Q253019 Point(7.834555555 50.932277777) +https://nwbib.de/spatial#Q878240 http://www.wikidata.org/entity/Q878240 Kuchenheim http://www.wikidata.org/entity/Q253019 Point(6.828055555 50.650555555) +https://nwbib.de/spatial#Q1758854 http://www.wikidata.org/entity/Q1758854 Schönhausen http://www.wikidata.org/entity/Q253019 Point(6.32222 51.1214) +https://nwbib.de/spatial#Q306225 http://www.wikidata.org/entity/Q306225 Abbenroth http://www.wikidata.org/entity/Q253019 Point(7.544722222 50.933333333) +https://nwbib.de/spatial#Q40719211 http://www.wikidata.org/entity/Q40719211 Berlinghausen http://www.wikidata.org/entity/Q253019 Point(7.804 51.0156) +https://nwbib.de/spatial#Q204490 http://www.wikidata.org/entity/Q204490 Zingsheim http://www.wikidata.org/entity/Q532, http://www.wikidata.org/entity/Q253019 Point(6.65722 50.5086) +https://nwbib.de/spatial#Q671315 http://www.wikidata.org/entity/Q671315 Helmeringhausen http://www.wikidata.org/entity/Q253019 Point(8.47 51.34) +https://nwbib.de/spatial#Q1547585 http://www.wikidata.org/entity/Q1547585 Grotenrath http://www.wikidata.org/entity/Q253019 Point(6.05833 50.94) +https://nwbib.de/spatial#Q1489320 http://www.wikidata.org/entity/Q1489320 Gleierbrück http://www.wikidata.org/entity/Q253019 Point(8.14306 51.1164) +https://nwbib.de/spatial#Q1982226 http://www.wikidata.org/entity/Q1982226 Neviges http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q42744322 Point(7.086944444 51.312777777) +https://nwbib.de/spatial#Q1735461 http://www.wikidata.org/entity/Q1735461 Kaster http://www.wikidata.org/entity/Q253019 Point(6.55056 51.0058) +https://nwbib.de/spatial#Q1595722 http://www.wikidata.org/entity/Q1595722 Lipperbruch http://www.wikidata.org/entity/Q253019 Point(8.36639 51.7131) +https://nwbib.de/spatial#Q339549 http://www.wikidata.org/entity/Q339549 Grafenberg http://www.wikidata.org/entity/Q1852178 Point(6.82472 51.2408) +https://nwbib.de/spatial#Q2366245 http://www.wikidata.org/entity/Q2366245 Sundern http://www.wikidata.org/entity/Q253019 Point(8.40556 51.8972) +https://nwbib.de/spatial#Q1998780 http://www.wikidata.org/entity/Q1998780 Nordwald http://www.wikidata.org/entity/Q253019 Point(8.12396 51.6484) +https://nwbib.de/spatial#Q636321 http://www.wikidata.org/entity/Q636321 Humboldt/Gremberg http://www.wikidata.org/entity/Q15632166 Point(7.00028 50.9294) +https://nwbib.de/spatial#Q1764291 http://www.wikidata.org/entity/Q1764291 Stiefelhagen http://www.wikidata.org/entity/Q253019 Point(7.47528 50.9978) +https://nwbib.de/spatial#Q6239 http://www.wikidata.org/entity/Q6239 Kreis Minden-Lübbecke http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(8.717777777 52.399166666) +https://nwbib.de/spatial#Q1257407 http://www.wikidata.org/entity/Q1257407 Sinningen http://www.wikidata.org/entity/Q253019 Point(7.55047 52.1866) +https://nwbib.de/spatial#Q14906980 http://www.wikidata.org/entity/Q14906980 Kraudorf http://www.wikidata.org/entity/Q253019 Point(6.16194 51.0014) +https://nwbib.de/spatial#Q19965816 http://www.wikidata.org/entity/Q19965816 Strickherdicke http://www.wikidata.org/entity/Q253019 Point(7.70638889 51.48972222) +https://nwbib.de/spatial#Q2531558 http://www.wikidata.org/entity/Q2531558 Volkringhausen http://www.wikidata.org/entity/Q253019 Point(7.875 51.3581) +https://nwbib.de/spatial#Q1340782 http://www.wikidata.org/entity/Q1340782 Endorf http://www.wikidata.org/entity/Q253019 Point(8.033333333 51.283333333) +https://nwbib.de/spatial#Q11120 http://www.wikidata.org/entity/Q11120 Werl http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.913888888 51.552777777) +https://nwbib.de/spatial#Q15056329 http://www.wikidata.org/entity/Q15056329 Gevelndorf http://www.wikidata.org/entity/Q253019 Point(7.62166667 51.24055556) +https://nwbib.de/spatial#Q1171034 http://www.wikidata.org/entity/Q1171034 Zollstock http://www.wikidata.org/entity/Q15632166 Point(6.945833333 50.905833333) +https://nwbib.de/spatial#Q907968 http://www.wikidata.org/entity/Q907968 Bremerberg http://www.wikidata.org/entity/Q253019 Point(9.27458 51.8104) +https://nwbib.de/spatial#Q879507 http://www.wikidata.org/entity/Q879507 Grafschaft Lingen http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#N18 http://www.wikidata.org/entity/Q881875 Wittgensteiner Land http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q2206016 http://www.wikidata.org/entity/Q2206016 Vernum http://www.wikidata.org/entity/Q253019 Point(6.353888888 51.495833333) +https://nwbib.de/spatial#Q1423322 http://www.wikidata.org/entity/Q1423322 Leiberg http://www.wikidata.org/entity/Q253019 Point(8.655 51.5189) +https://nwbib.de/spatial#Q2526320 http://www.wikidata.org/entity/Q2526320 Vilvenich http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(6.412683333 50.85225) +https://nwbib.de/spatial#Q936707 http://www.wikidata.org/entity/Q936707 Neersen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.477222222 51.251666666) +https://nwbib.de/spatial#Q2554035 http://www.wikidata.org/entity/Q2554035 Weegen http://www.wikidata.org/entity/Q253019 Point(7.23293 50.847) +https://nwbib.de/spatial#Q1123568 http://www.wikidata.org/entity/Q1123568 Landkreis Mülheim an der Ruhr http://www.wikidata.org/entity/Q5283531 Point(6.884523055 51.418568055) +https://nwbib.de/spatial#Q19275620 http://www.wikidata.org/entity/Q19275620 Bonzelerhammer http://www.wikidata.org/entity/Q253019 Point(8.03277779 51.11111069) +https://nwbib.de/spatial#Q825489 http://www.wikidata.org/entity/Q825489 Grafschaft Pyrmont http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q353344 Point(9.24836 51.9836) +https://nwbib.de/spatial#Q44080563 http://www.wikidata.org/entity/Q44080563 Ahlintel http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1484611, http://www.wikidata.org/entity/Q5084 Point(7.4775 52.158611111) +https://nwbib.de/spatial#Q831391 http://www.wikidata.org/entity/Q831391 Hesborn http://www.wikidata.org/entity/Q253019 Point(8.627441666 51.149661111) +https://nwbib.de/spatial#Q56099854 http://www.wikidata.org/entity/Q56099854 Dekanat Siegen http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q865488 http://www.wikidata.org/entity/Q865488 Birkelbach (Erndtebrück) http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.26833 51.0147) +https://nwbib.de/spatial#Q1569696 http://www.wikidata.org/entity/Q1569696 Scheidingen http://www.wikidata.org/entity/Q253019 Point(7.932777777 51.6) +https://nwbib.de/spatial#Q1253874 http://www.wikidata.org/entity/Q1253874 Leuth http://www.wikidata.org/entity/Q253019 Point(6.225277777 51.335833333) +https://nwbib.de/spatial#Q1443311 http://www.wikidata.org/entity/Q1443311 Heißen http://www.wikidata.org/entity/Q2983893 Point(6.93375 51.4493) +https://nwbib.de/spatial#Q808387 http://www.wikidata.org/entity/Q808387 Barmingholten http://www.wikidata.org/entity/Q253019 Point(6.78852 51.5407) +https://nwbib.de/spatial#Q882426 http://www.wikidata.org/entity/Q882426 Grevenstein http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(8.12944 51.3022) +https://nwbib.de/spatial#Q894907 http://www.wikidata.org/entity/Q894907 Batenbrock http://www.wikidata.org/entity/Q253019 Point(6.967 51.533) +https://nwbib.de/spatial#Q1817623 http://www.wikidata.org/entity/Q1817623 Lengenbeck http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(8.40477 51.1754) +https://nwbib.de/spatial#Q929643 http://www.wikidata.org/entity/Q929643 Horrem http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.7125 50.9133) +https://nwbib.de/spatial#Q896576 http://www.wikidata.org/entity/Q896576 Brachelen http://www.wikidata.org/entity/Q2983893 Point(6.24083 51.0033) +https://nwbib.de/spatial#Q808133 http://www.wikidata.org/entity/Q808133 Barge http://www.wikidata.org/entity/Q253019 Point(7.84406 51.4627) +https://nwbib.de/spatial#Q1547619 http://www.wikidata.org/entity/Q1547619 Lippholthausen http://www.wikidata.org/entity/Q253019 Point(7.475783333 51.615069444) +https://nwbib.de/spatial#Q1759911 http://www.wikidata.org/entity/Q1759911 Kreis Rees http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.616666666 51.666666666) +https://nwbib.de/spatial#Q721316 http://www.wikidata.org/entity/Q721316 Asbeck http://www.wikidata.org/entity/Q253019 Point(7.14611 52.055) +https://nwbib.de/spatial#Q1562711 http://www.wikidata.org/entity/Q1562711 Hücheln http://www.wikidata.org/entity/Q2983893 Point(6.80567 50.9245) +https://nwbib.de/spatial#Q2596582 http://www.wikidata.org/entity/Q2596582 Wülfer-Bexten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.70581 52.0398) +https://nwbib.de/spatial#Q19687919 http://www.wikidata.org/entity/Q19687919 Junkersholz http://www.wikidata.org/entity/Q253019 Point(7.04288889 51.10058333) +https://nwbib.de/spatial#Q1767479 http://www.wikidata.org/entity/Q1767479 Rumbeck http://www.wikidata.org/entity/Q253019 Point(8.10778 51.3869) +https://nwbib.de/spatial#Q1524534 http://www.wikidata.org/entity/Q1524534 Heesten http://www.wikidata.org/entity/Q253019 Point(8.98622 51.8565) +https://nwbib.de/spatial#Q2340252 http://www.wikidata.org/entity/Q2340252 Steinbüchel http://www.wikidata.org/entity/Q253019 Point(7.07056 51.0556) +https://nwbib.de/spatial#Q1987680 http://www.wikidata.org/entity/Q1987680 Niederdielfen http://www.wikidata.org/entity/Q253019 Point(8.09056 50.8511) +https://nwbib.de/spatial#Q10976 http://www.wikidata.org/entity/Q10976 Bergneustadt http://www.wikidata.org/entity/Q42744322 Point(7.65 51.033333333) +https://nwbib.de/spatial#Q882288 http://www.wikidata.org/entity/Q882288 Blatzheim http://www.wikidata.org/entity/Q2983893 Point(6.63218 50.8556) +https://nwbib.de/spatial#Q1589986 http://www.wikidata.org/entity/Q1589986 Rinsdorf http://www.wikidata.org/entity/Q253019 Point(8.06306 50.8219) +https://nwbib.de/spatial#Q1551363 http://www.wikidata.org/entity/Q1551363 Nonnenbach http://www.wikidata.org/entity/Q253019 Point(6.63404 50.4146) +https://nwbib.de/spatial#Q24804026 http://www.wikidata.org/entity/Q24804026 Hülsdonk http://www.wikidata.org/entity/Q253019 Point(6.626389 51.471389) +https://nwbib.de/spatial#Q256950 http://www.wikidata.org/entity/Q256950 Stadtkern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q676050 Point(7.013056 51.458333) +https://nwbib.de/spatial#N42 http://www.wikidata.org/entity/Q7904317 Kurköln http://www.wikidata.org/entity/Q1621034, http://www.wikidata.org/entity/Q27925057, http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q1366274 Point(6.833333333 51.0) +https://nwbib.de/spatial#Q923493 http://www.wikidata.org/entity/Q923493 Brock http://www.wikidata.org/entity/Q253019 Point(7.77716 52.0777) +https://nwbib.de/spatial#Q6228 http://www.wikidata.org/entity/Q6228 Kreis Höxter http://www.wikidata.org/entity/Q20738811 Point(9.25 51.666666666) +https://nwbib.de/spatial#Q1319918 http://www.wikidata.org/entity/Q1319918 Kleinvernich http://www.wikidata.org/entity/Q253019 Point(6.826111111 50.741388888) +https://nwbib.de/spatial#Q56024320 http://www.wikidata.org/entity/Q56024320 Einbrungen http://www.wikidata.org/entity/Q253019 Point(6.746972222 51.316444444) +https://nwbib.de/spatial#Q1262603 http://www.wikidata.org/entity/Q1262603 Thieringhausen http://www.wikidata.org/entity/Q253019 Point(7.89 51.003055555) +https://nwbib.de/spatial#Q153751 http://www.wikidata.org/entity/Q153751 Poppelsdorf http://www.wikidata.org/entity/Q253019 Point(7.090555555 50.722222222) +https://nwbib.de/spatial#Q10936 http://www.wikidata.org/entity/Q10936 Werne http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.616666666 51.666666666) +https://nwbib.de/spatial#Q55585491 http://www.wikidata.org/entity/Q55585491 Schoneberg http://www.wikidata.org/entity/Q253019 Point(8.175 51.646944444) +https://nwbib.de/spatial#Q334676 http://www.wikidata.org/entity/Q334676 Üdingen http://www.wikidata.org/entity/Q253019 Point(6.481111111 50.7275) +https://nwbib.de/spatial#Q1350163 http://www.wikidata.org/entity/Q1350163 Erfttal http://www.wikidata.org/entity/Q253019 Point(6.7287 51.1704) +https://nwbib.de/spatial#Q1464207 http://www.wikidata.org/entity/Q1464207 Friedrichsdorf http://www.wikidata.org/entity/Q253019 Point(8.48861 51.9356) +https://nwbib.de/spatial#Q15116936 http://www.wikidata.org/entity/Q15116936 Kirchenkreis Soest http://www.wikidata.org/entity/Q897303 Point(8.11203 51.5695) +https://nwbib.de/spatial#Q153197 http://www.wikidata.org/entity/Q153197 Kohlbusch http://www.wikidata.org/entity/Q253019 Point(6.20806 50.7767) +https://nwbib.de/spatial#Q2015379 http://www.wikidata.org/entity/Q2015379 Ofden http://www.wikidata.org/entity/Q253019 Point(6.149722222 50.858888888) +https://nwbib.de/spatial#Q1020467 http://www.wikidata.org/entity/Q1020467 Büderich http://www.wikidata.org/entity/Q253019 Point(6.58056 51.6322) +https://nwbib.de/spatial#Q334616 http://www.wikidata.org/entity/Q334616 Ückerath http://www.wikidata.org/entity/Q253019 Point(6.75724 51.1116) +https://nwbib.de/spatial#Q998691 http://www.wikidata.org/entity/Q998691 Bucholtwelmen http://www.wikidata.org/entity/Q253019 Point(6.70519 51.6258) +https://nwbib.de/spatial#Q19965660 http://www.wikidata.org/entity/Q19965660 Oelkinghausen http://www.wikidata.org/entity/Q253019 Point(7.325 51.289166666) +https://nwbib.de/spatial#Q1250658 http://www.wikidata.org/entity/Q1250658 Kurl http://www.wikidata.org/entity/Q253019 Point(7.58333 51.55) +https://nwbib.de/spatial#Q1368632 http://www.wikidata.org/entity/Q1368632 Katernberg http://www.wikidata.org/entity/Q2983893 Point(7.048889 51.496944) +https://nwbib.de/spatial#Q1494801 http://www.wikidata.org/entity/Q1494801 Wasserfall http://www.wikidata.org/entity/Q253019 Point(8.43333 51.3011) +https://nwbib.de/spatial#Q26107 http://www.wikidata.org/entity/Q26107 Berlebeck http://www.wikidata.org/entity/Q253019 Point(8.876666666 51.891388888) +https://nwbib.de/spatial#Q1413348 http://www.wikidata.org/entity/Q1413348 Niederkassel http://www.wikidata.org/entity/Q1852178 Point(6.74972 51.24) +https://nwbib.de/spatial#Q1268972 http://www.wikidata.org/entity/Q1268972 Nörde http://www.wikidata.org/entity/Q253019 Point(9.098830555 51.532230555) +https://nwbib.de/spatial#Q11293 http://www.wikidata.org/entity/Q11293 Schwelm http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626 Point(7.297180555 51.29045) +https://nwbib.de/spatial#Q1628424 http://www.wikidata.org/entity/Q1628424 Horneburg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.29278 51.6297) +https://nwbib.de/spatial#Q2381864 http://www.wikidata.org/entity/Q2381864 Süggerath http://www.wikidata.org/entity/Q253019 Point(6.15111 50.9781) +https://nwbib.de/spatial#Q985113 http://www.wikidata.org/entity/Q985113 Meißen http://www.wikidata.org/entity/Q253019 Point(8.9525 52.2675) +https://nwbib.de/spatial#Q2137735 http://www.wikidata.org/entity/Q2137735 Winnekendonk http://www.wikidata.org/entity/Q253019 Point(6.287222 51.598056) +https://nwbib.de/spatial#Q900023 http://www.wikidata.org/entity/Q900023 Brauck http://www.wikidata.org/entity/Q253019 Point(7.01375 51.5463) +https://nwbib.de/spatial#Q2136560 http://www.wikidata.org/entity/Q2136560 Reelsen http://www.wikidata.org/entity/Q253019 Point(9.02333 51.7597) +https://nwbib.de/spatial#Q10949 http://www.wikidata.org/entity/Q10949 Hilchenbach http://www.wikidata.org/entity/Q42744322 Point(8.109444444 50.998333333) +https://nwbib.de/spatial#N66 http://www.wikidata.org/entity/Q514557 Vest Recklinghausen http://www.wikidata.org/entity/Q3024240, http://www.wikidata.org/entity/Q1561636 +https://nwbib.de/spatial#N45 http://www.wikidata.org/entity/Q641138 Herzogtum Kleve http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q154547 Point(6.13333333 51.78333333) +https://nwbib.de/spatial#Q781737 http://www.wikidata.org/entity/Q781737 Roisdorf http://www.wikidata.org/entity/Q253019 Point(7.01083 50.7567) +https://nwbib.de/spatial#Q612354 http://www.wikidata.org/entity/Q612354 Hüngersdorf http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.679722222 50.395277777) +https://nwbib.de/spatial#Q630083 http://www.wikidata.org/entity/Q630083 Brackwede http://www.wikidata.org/entity/Q253019 Point(8.516666666 51.983333333) +https://nwbib.de/spatial#Q1959118 http://www.wikidata.org/entity/Q1959118 Uhlenbrock http://www.wikidata.org/entity/Q253019 Point(7.55556 52.0353) +https://nwbib.de/spatial#Q1573614 http://www.wikidata.org/entity/Q1573614 Stadtbezirk Herringen http://www.wikidata.org/entity/Q2740635 Point(7.74204 51.6518) +https://nwbib.de/spatial#Q2147516 http://www.wikidata.org/entity/Q2147516 Rhein-Wupper-Kreis http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(7.00653 51.058) +https://nwbib.de/spatial#Q1987684 http://www.wikidata.org/entity/Q1987684 Niederdollendorf http://www.wikidata.org/entity/Q253019 Point(7.17889 50.6942) +https://nwbib.de/spatial#Q3050 http://www.wikidata.org/entity/Q3050 Recklinghausen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591 Point(7.2 51.616666666) +https://nwbib.de/spatial#Q1265872 http://www.wikidata.org/entity/Q1265872 Girkhausen http://www.wikidata.org/entity/Q253019 Point(8.45444 51.1161) +https://nwbib.de/spatial#Q1236413 http://www.wikidata.org/entity/Q1236413 Hundesossen http://www.wikidata.org/entity/Q253019 Point(8.20472 51.1331) +https://nwbib.de/spatial#Q322147 http://www.wikidata.org/entity/Q322147 Straßfeld http://www.wikidata.org/entity/Q253019 Point(6.866666666 50.7) +https://nwbib.de/spatial#Q27842229 http://www.wikidata.org/entity/Q27842229 Neuenhof bei Ruppichteroth http://www.wikidata.org/entity/Q253019 Point(7.474722 50.828889) +https://nwbib.de/spatial#Q1787322 http://www.wikidata.org/entity/Q1787322 Kreis Gummersbach http://www.wikidata.org/entity/Q5283531 Point(7.56777778 51.02694444) +https://nwbib.de/spatial#Q1403427 http://www.wikidata.org/entity/Q1403427 Huchem-Stammeln http://www.wikidata.org/entity/Q253019 Point(6.4575 50.8547) +https://nwbib.de/spatial#Q1883305 http://www.wikidata.org/entity/Q1883305 Madfeld http://www.wikidata.org/entity/Q253019 Point(8.57 51.430833333) +https://nwbib.de/spatial#Q2752 http://www.wikidata.org/entity/Q2752 Oelde http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.143611111 51.825833333) +https://nwbib.de/spatial#Q2009896 http://www.wikidata.org/entity/Q2009896 Oberhundem http://www.wikidata.org/entity/Q253019 Point(8.174338888 51.088380555) +https://nwbib.de/spatial#Q2948 http://www.wikidata.org/entity/Q2948 Neuss http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(6.693888888 51.200277777) +https://nwbib.de/spatial#Q1164934 http://www.wikidata.org/entity/Q1164934 Dansweiler http://www.wikidata.org/entity/Q253019 Point(6.76457 50.9575) +https://nwbib.de/spatial#Q2023418 http://www.wikidata.org/entity/Q2023418 Ommerborn http://www.wikidata.org/entity/Q253019 Point(7.33556 51.0492) +https://nwbib.de/spatial#Q324333 http://www.wikidata.org/entity/Q324333 Ruitzhof http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q5084, http://www.wikidata.org/entity/Q1138414, http://www.wikidata.org/entity/Q171441, http://www.wikidata.org/entity/Q933394 Point(6.194166666 50.524722222) +https://nwbib.de/spatial#Q1795736 http://www.wikidata.org/entity/Q1795736 Dellbrück http://www.wikidata.org/entity/Q15632166 Point(7.07028 50.9786) +https://nwbib.de/spatial#Q600902 http://www.wikidata.org/entity/Q600902 Kreis Arnsberg http://www.wikidata.org/entity/Q106658 Point(8.06467 51.3967) +https://nwbib.de/spatial#Q762492 http://www.wikidata.org/entity/Q762492 Zündorf http://www.wikidata.org/entity/Q15632166 Point(7.043611111 50.868888888) +https://nwbib.de/spatial#Q1251236 http://www.wikidata.org/entity/Q1251236 Dottel http://www.wikidata.org/entity/Q253019 Point(6.59556 50.5472) +https://nwbib.de/spatial#Q883341 http://www.wikidata.org/entity/Q883341 Porz http://www.wikidata.org/entity/Q15632166 Point(7.07167 50.8864) +https://nwbib.de/spatial#Q1335345 http://www.wikidata.org/entity/Q1335345 Holten http://www.wikidata.org/entity/Q2983893 Point(6.78713 51.5238) +https://nwbib.de/spatial#Q1584222 http://www.wikidata.org/entity/Q1584222 Happerschoß http://www.wikidata.org/entity/Q253019 Point(7.3 50.7983) +https://nwbib.de/spatial#Q4113 http://www.wikidata.org/entity/Q4113 Pulheim http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.8 51.0) +https://nwbib.de/spatial#Q2350382 http://www.wikidata.org/entity/Q2350382 Stirpe http://www.wikidata.org/entity/Q253019 Point(8.30778 51.6219) +https://nwbib.de/spatial#Q1250630 http://www.wikidata.org/entity/Q1250630 Holzen http://www.wikidata.org/entity/Q253019 Point(7.52417 51.4461) +https://nwbib.de/spatial#Q1551074 http://www.wikidata.org/entity/Q1551074 Heerdt http://www.wikidata.org/entity/Q1852178 Point(6.71583 51.2283) +https://nwbib.de/spatial#Q2342466 http://www.wikidata.org/entity/Q2342466 Stemmen (Kalletal) http://www.wikidata.org/entity/Q253019 Point(9.00715 52.1718) +https://nwbib.de/spatial#Q6234 http://www.wikidata.org/entity/Q6234 Kreis Herford http://www.wikidata.org/entity/Q20738811 Point(8.583333333 52.166666666) +https://nwbib.de/spatial#Q1980790 http://www.wikidata.org/entity/Q1980790 Neukirchen http://www.wikidata.org/entity/Q253019 Point(6.89217 50.7144) +https://nwbib.de/spatial#Q1368614 http://www.wikidata.org/entity/Q1368614 Burgaltendorf http://www.wikidata.org/entity/Q253019 Point(7.122222 51.418056) +https://nwbib.de/spatial#Q20818814 http://www.wikidata.org/entity/Q20818814 Mutz http://www.wikidata.org/entity/Q253019 Point(7.12004185 51.00656891) +https://nwbib.de/spatial#Q544579 http://www.wikidata.org/entity/Q544579 Grafschaft Sayn-Altenkirchen http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q11045 http://www.wikidata.org/entity/Q11045 Wipperfürth http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.4 51.116666666) +https://nwbib.de/spatial#Q11039 http://www.wikidata.org/entity/Q11039 Radevormwald http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.35 51.2) +https://nwbib.de/spatial#Q26208583 http://www.wikidata.org/entity/Q26208583 Schepersfeld http://www.wikidata.org/entity/Q253019 Point(6.64 51.664722) +https://nwbib.de/spatial#Q254537 http://www.wikidata.org/entity/Q254537 Arzdorf http://www.wikidata.org/entity/Q253019 Point(7.09111 50.6083) +https://nwbib.de/spatial#Q1426353 http://www.wikidata.org/entity/Q1426353 Flaesheim http://www.wikidata.org/entity/Q253019 Point(7.229444444 51.718333333) +https://nwbib.de/spatial#Q2176735 http://www.wikidata.org/entity/Q2176735 Rurberg http://www.wikidata.org/entity/Q253019 Point(6.38168 50.61372) +https://nwbib.de/spatial#Q15080303 http://www.wikidata.org/entity/Q15080303 Niedersprockhövel http://www.wikidata.org/entity/Q253019 Point(7.246331 51.364575) +https://nwbib.de/spatial#Q1368638 http://www.wikidata.org/entity/Q1368638 Ostviertel http://www.wikidata.org/entity/Q253019 Point(7.028889 51.460278) +https://nwbib.de/spatial#Q1469631 http://www.wikidata.org/entity/Q1469631 Frohnhausen (Brakel) http://www.wikidata.org/entity/Q253019 Point(9.18889 51.6417) +https://nwbib.de/spatial#Q18202314 http://www.wikidata.org/entity/Q18202314 Hengsbeck http://www.wikidata.org/entity/Q253019 Point(8.18861111 51.2175) +https://nwbib.de/spatial#Q5839 http://www.wikidata.org/entity/Q5839 Herscheid http://www.wikidata.org/entity/Q262166 Point(7.745833333 51.177222222) +https://nwbib.de/spatial#Q1980040 http://www.wikidata.org/entity/Q1980040 Neuenhausen http://www.wikidata.org/entity/Q2983893 Point(6.58944 51.0703) +https://nwbib.de/spatial#Q19294919 http://www.wikidata.org/entity/Q19294919 Listerscheid http://www.wikidata.org/entity/Q253019 Point(7.84630013 51.10770035) +https://nwbib.de/spatial#Q1505120 http://www.wikidata.org/entity/Q1505120 Weilerhof http://www.wikidata.org/entity/Q253019 Point(7.05119 50.8344) +https://nwbib.de/spatial#Q2586721 http://www.wikidata.org/entity/Q2586721 Stockum http://www.wikidata.org/entity/Q253019 Point(7.366666666 51.466666666) +https://nwbib.de/spatial#Q1745675 http://www.wikidata.org/entity/Q1745675 Oberfischbach http://www.wikidata.org/entity/Q253019 Point(7.915 50.8722) +https://nwbib.de/spatial#Q1295023 http://www.wikidata.org/entity/Q1295023 Meggen http://www.wikidata.org/entity/Q253019 Point(8.06778 51.1239) +https://nwbib.de/spatial#Q2512296 http://www.wikidata.org/entity/Q2512296 Veldrom/Feldrom/Kempen http://www.wikidata.org/entity/Q253019 Point(8.94167 51.8233) +https://nwbib.de/spatial#Q19310961 http://www.wikidata.org/entity/Q19310961 Vogelsang http://www.wikidata.org/entity/Q253019 Point(6.66167 51.22408) +https://nwbib.de/spatial#Q1602083 http://www.wikidata.org/entity/Q1602083 Helfe http://www.wikidata.org/entity/Q253019 Point(7.484063888 51.393261111) +https://nwbib.de/spatial#Q691694 http://www.wikidata.org/entity/Q691694 Riehl http://www.wikidata.org/entity/Q15632166 Point(6.97417 50.9683) +https://nwbib.de/spatial#Q45026167 http://www.wikidata.org/entity/Q45026167 Rahmede http://www.wikidata.org/entity/Q253019 Point(7.675 51.2775) +https://nwbib.de/spatial#Q1787280 http://www.wikidata.org/entity/Q1787280 Kreis Erkelenz http://www.wikidata.org/entity/Q5283531, http://www.wikidata.org/entity/Q106658 Point(6.31555556 51.08) +https://nwbib.de/spatial#Q1416060 http://www.wikidata.org/entity/Q1416060 Medelon http://www.wikidata.org/entity/Q253019 Point(8.66778 51.1697) +https://nwbib.de/spatial#Q2421249 http://www.wikidata.org/entity/Q2421249 Windrath http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.140195 51.315988) +https://nwbib.de/spatial#Q1501588 http://www.wikidata.org/entity/Q1501588 Aldenhoven http://www.wikidata.org/entity/Q253019 Point(6.56734 51.1354) +https://nwbib.de/spatial#Q44176786 http://www.wikidata.org/entity/Q44176786 Deuten http://www.wikidata.org/entity/Q253019 Point(6.9686307 51.7094607) +https://nwbib.de/spatial#Q857181 http://www.wikidata.org/entity/Q857181 Biefang http://www.wikidata.org/entity/Q253019 Point(6.81107 51.5103) +https://nwbib.de/spatial#Q1082933 http://www.wikidata.org/entity/Q1082933 Christianseck http://www.wikidata.org/entity/Q253019 Point(8.475 51.0575) +https://nwbib.de/spatial#Q2533842 http://www.wikidata.org/entity/Q2533842 Voreifel http://www.wikidata.org/entity/Q107425, http://www.wikidata.org/entity/Q46831 Point(7.095833333 50.1625) +https://nwbib.de/spatial#Q162890 http://www.wikidata.org/entity/Q162890 Xanten http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.453888888 51.662222222) +https://nwbib.de/spatial#Q1652076 http://www.wikidata.org/entity/Q1652076 Hücheln http://www.wikidata.org/entity/Q253019 Point(6.31556 50.8169) +https://nwbib.de/spatial#Q876515 http://www.wikidata.org/entity/Q876515 Minden-Ravensberg http://www.wikidata.org/entity/Q82794, http://www.wikidata.org/entity/Q18559091 Point(8.66821 52.1706) +https://nwbib.de/spatial#Q1558881 http://www.wikidata.org/entity/Q1558881 Ostönnen http://www.wikidata.org/entity/Q253019 Point(7.99917 51.5478) +https://nwbib.de/spatial#Q1237987 http://www.wikidata.org/entity/Q1237987 Kirdorf http://www.wikidata.org/entity/Q253019 Point(6.57096 50.9745) +https://nwbib.de/spatial#Q2245529 http://www.wikidata.org/entity/Q2245529 Schmachtendorf http://www.wikidata.org/entity/Q253019 Point(6.81916 51.5421) +https://nwbib.de/spatial#Q1165827 http://www.wikidata.org/entity/Q1165827 Darfeld http://www.wikidata.org/entity/Q253019 Point(7.273611111 52.024166666) +https://nwbib.de/spatial#Q1880340 http://www.wikidata.org/entity/Q1880340 Horstmar http://www.wikidata.org/entity/Q253019 Point(7.56073 51.6017) +https://nwbib.de/spatial#Q1271023 http://www.wikidata.org/entity/Q1271023 Döhren http://www.wikidata.org/entity/Q253019 Point(9.03444 52.4336) +https://nwbib.de/spatial#Q1550974 http://www.wikidata.org/entity/Q1550974 Mühlhausen http://www.wikidata.org/entity/Q253019 Point(7.73889 51.5431) +https://nwbib.de/spatial#Q1694116 http://www.wikidata.org/entity/Q1694116 Koslar http://www.wikidata.org/entity/Q253019 Point(6.318333333 50.926388888) +https://nwbib.de/spatial#Q1326799 http://www.wikidata.org/entity/Q1326799 Horst http://www.wikidata.org/entity/Q253019 Point(7.109167 51.437222) +https://nwbib.de/spatial#Q243301 http://www.wikidata.org/entity/Q243301 Kerken http://www.wikidata.org/entity/Q262166 Point(6.373888888 51.457222222) +https://nwbib.de/spatial#Q865138 http://www.wikidata.org/entity/Q865138 Birgden http://www.wikidata.org/entity/Q253019 Point(6.05556 51.01) +https://nwbib.de/spatial#Q1384350 http://www.wikidata.org/entity/Q1384350 Hamm http://www.wikidata.org/entity/Q1852178 Point(6.74444 51.205) +https://nwbib.de/spatial#Q857803 http://www.wikidata.org/entity/Q857803 Bieren http://www.wikidata.org/entity/Q253019 Point(8.51611 52.2397) +https://nwbib.de/spatial#Q1316404 http://www.wikidata.org/entity/Q1316404 Mollseifen http://www.wikidata.org/entity/Q253019 Point(8.50176 51.1594) +https://nwbib.de/spatial#Q1614216 http://www.wikidata.org/entity/Q1614216 Herrig http://www.wikidata.org/entity/Q253019 Point(6.72583 50.8011) +https://nwbib.de/spatial#Q1544859 http://www.wikidata.org/entity/Q1544859 Grefrath http://www.wikidata.org/entity/Q2983893 Point(6.76267 50.9043) +https://nwbib.de/spatial#Q14878 http://www.wikidata.org/entity/Q14878 Mettmann http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322 Point(6.966666666 51.25) +https://nwbib.de/spatial#Q191445 http://www.wikidata.org/entity/Q191445 Zeppenfeld http://www.wikidata.org/entity/Q253019 Point(8.025 50.7833) +https://nwbib.de/spatial#Q2209031 http://www.wikidata.org/entity/Q2209031 Saalhoff http://www.wikidata.org/entity/Q253019 Point(6.526944444 51.5275) +https://nwbib.de/spatial#Q876078 http://www.wikidata.org/entity/Q876078 Nehden http://www.wikidata.org/entity/Q253019 Point(8.637222222 51.435833333) +https://nwbib.de/spatial#Q1157900 http://www.wikidata.org/entity/Q1157900 Dalheim http://www.wikidata.org/entity/Q253019 Point(9.18778 51.4811) +https://nwbib.de/spatial#Q10719 http://www.wikidata.org/entity/Q10719 Lessenich http://www.wikidata.org/entity/Q253019 Point(6.72167 50.6083) +https://nwbib.de/spatial#Q895935 http://www.wikidata.org/entity/Q895935 Querenburg http://www.wikidata.org/entity/Q2983893 Point(7.27 51.453888888) +https://nwbib.de/spatial#Q478018 http://www.wikidata.org/entity/Q478018 Amshausen http://www.wikidata.org/entity/Q253019 Point(8.41917 52.0244) +https://nwbib.de/spatial#Q2253657 http://www.wikidata.org/entity/Q2253657 Schwarze Heide http://www.wikidata.org/entity/Q253019 Point(6.83678 51.5107) +https://nwbib.de/spatial#Q1352726 http://www.wikidata.org/entity/Q1352726 Gröblingen http://www.wikidata.org/entity/Q253019 Point(8.00054 52.0) +https://nwbib.de/spatial#Q767106 http://www.wikidata.org/entity/Q767106 Senne http://www.wikidata.org/entity/Q82794 Point(8.74237 51.8315) +https://nwbib.de/spatial#Q11114 http://www.wikidata.org/entity/Q11114 Rüthen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(8.433333333 51.493333333) +https://nwbib.de/spatial#Q1271860 http://www.wikidata.org/entity/Q1271860 Dünninghausen http://www.wikidata.org/entity/Q253019 Point(8.10705 51.7424) +https://nwbib.de/spatial#Q904720 http://www.wikidata.org/entity/Q904720 Bredelar http://www.wikidata.org/entity/Q253019 Point(8.77694 51.4214) +https://nwbib.de/spatial#Q1344515 http://www.wikidata.org/entity/Q1344515 Neukirchen http://www.wikidata.org/entity/Q253019 Point(6.68007 51.1227) +https://nwbib.de/spatial#Q889064 http://www.wikidata.org/entity/Q889064 Harpen http://www.wikidata.org/entity/Q253019 Point(7.286666666 51.500277777) +https://nwbib.de/spatial#Q449632 http://www.wikidata.org/entity/Q449632 Walsum (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.70861 51.5328) +https://nwbib.de/spatial#Q1351335 http://www.wikidata.org/entity/Q1351335 Langenbochum http://www.wikidata.org/entity/Q253019 Point(7.11722 51.6131) +https://nwbib.de/spatial#Q12434 http://www.wikidata.org/entity/Q12434 Bad Honnef http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.226944444 50.645) +https://nwbib.de/spatial#N77 http://www.wikidata.org/entity/Q829718 Provinz Westfalen http://www.wikidata.org/entity/Q574299 Point(7.63333333 51.96666667) +https://nwbib.de/spatial#Q1826927 http://www.wikidata.org/entity/Q1826927 Linnepe http://www.wikidata.org/entity/Q253019 Point(8.071475 51.311888888) +https://nwbib.de/spatial#Q2008888 http://www.wikidata.org/entity/Q2008888 Oberaden http://www.wikidata.org/entity/Q253019 Point(7.58972 51.6067) +https://nwbib.de/spatial#Q1018968 http://www.wikidata.org/entity/Q1018968 Bäingsen http://www.wikidata.org/entity/Q253019 Point(7.83944 51.3728) +https://nwbib.de/spatial#Q294673 http://www.wikidata.org/entity/Q294673 Öhde http://www.wikidata.org/entity/Q253019 Point(7.23222 51.2592) +https://nwbib.de/spatial#Q181851 http://www.wikidata.org/entity/Q181851 Hopsten http://www.wikidata.org/entity/Q262166 Point(7.6 52.380555555) +https://nwbib.de/spatial#Q15992012 http://www.wikidata.org/entity/Q15992012 Isingheim http://www.wikidata.org/entity/Q253019 Point(8.160975 51.22736) +https://nwbib.de/spatial#Q2700729 http://www.wikidata.org/entity/Q2700729 Brachthausen http://www.wikidata.org/entity/Q253019 Point(8.08472222 51.03194444) +https://nwbib.de/spatial#Q4048 http://www.wikidata.org/entity/Q4048 Langenfeld http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.95 51.116666666) +https://nwbib.de/spatial#Q881204 http://www.wikidata.org/entity/Q881204 Werne http://www.wikidata.org/entity/Q2983893 Point(7.306666666 51.486388888) +https://nwbib.de/spatial#Q47462151 http://www.wikidata.org/entity/Q47462151 Kirchenkreis Hagen http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462244 http://www.wikidata.org/entity/Q47462244 Kirchenkreis Siegen http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1332187 http://www.wikidata.org/entity/Q1332187 Ellinghorst http://www.wikidata.org/entity/Q253019 Point(6.95514 51.561) +https://nwbib.de/spatial#N22 http://www.wikidata.org/entity/Q153464 Bergisches Land http://www.wikidata.org/entity/Q55075651, http://www.wikidata.org/entity/Q82794 Point(7.306944444 51.05) +https://nwbib.de/spatial#Q1149796 http://www.wikidata.org/entity/Q1149796 Weiden http://www.wikidata.org/entity/Q253019 Point(7.24009 51.0641) +https://nwbib.de/spatial#Q314234 http://www.wikidata.org/entity/Q314234 Wanne-Eickel http://www.wikidata.org/entity/Q22865, http://www.wikidata.org/entity/Q253019 Point(7.1607 51.547553) +https://nwbib.de/spatial#Q2568286 http://www.wikidata.org/entity/Q2568286 Wiedenfeld http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(6.62429 50.9954) +https://nwbib.de/spatial#Q50889 http://www.wikidata.org/entity/Q50889 Schieder-Schwalenberg http://www.wikidata.org/entity/Q42744322 Point(9.183055555 51.883055555) +https://nwbib.de/spatial#Q1701768 http://www.wikidata.org/entity/Q1701768 Wiederstein http://www.wikidata.org/entity/Q253019 Point(8.04333 50.7769) +https://nwbib.de/spatial#Q1250624 http://www.wikidata.org/entity/Q1250624 Großholthausen http://www.wikidata.org/entity/Q253019 Point(7.43 51.4597) +https://nwbib.de/spatial#Q1746572 http://www.wikidata.org/entity/Q1746572 Kleinenbremen http://www.wikidata.org/entity/Q253019 Point(9.03833 52.2378) +https://nwbib.de/spatial#Q1951765 http://www.wikidata.org/entity/Q1951765 Muffendorf http://www.wikidata.org/entity/Q253019 Point(7.16062 50.6714) +https://nwbib.de/spatial#Q702291 http://www.wikidata.org/entity/Q702291 Bistum Essen http://www.wikidata.org/entity/Q105388829 +https://nwbib.de/spatial#Q1514770 http://www.wikidata.org/entity/Q1514770 Kepplerburg http://www.wikidata.org/entity/Q253019 Point(7.29444 50.975) +https://nwbib.de/spatial#Q59243186 http://www.wikidata.org/entity/Q59243186 Stadtbezirk Schloß Neuhaus/Sande http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q204683 http://www.wikidata.org/entity/Q204683 Waldfeucht http://www.wikidata.org/entity/Q262166 Point(5.983055555 51.066666666) +https://nwbib.de/spatial#Q1621910 http://www.wikidata.org/entity/Q1621910 Hochkirchen http://www.wikidata.org/entity/Q253019 Point(6.640833333 50.796666666) +https://nwbib.de/spatial#Q1009459 http://www.wikidata.org/entity/Q1009459 Bungenberg http://www.wikidata.org/entity/Q253019 Point(6.480683333 50.456130555) +https://nwbib.de/spatial#Q16045 http://www.wikidata.org/entity/Q16045 Jülich http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.358333333 50.922222222) +https://nwbib.de/spatial#Q1324681 http://www.wikidata.org/entity/Q1324681 Kirchenkreis Gütersloh http://www.wikidata.org/entity/Q897303 Point(8.37792 51.908) +https://nwbib.de/spatial#Q1625441 http://www.wikidata.org/entity/Q1625441 Holzbüttgen http://www.wikidata.org/entity/Q253019 Point(6.61446 51.2168) +https://nwbib.de/spatial#Q759563 http://www.wikidata.org/entity/Q759563 Aufderhöhe http://www.wikidata.org/entity/Q2983893 Point(6.99778 51.1236) +https://nwbib.de/spatial#Q50778182 http://www.wikidata.org/entity/Q50778182 Scherpemich http://www.wikidata.org/entity/Q253019 Point(7.338916666 50.872416666) +https://nwbib.de/spatial#Q1741344 http://www.wikidata.org/entity/Q1741344 Lürken http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.24302 50.8548) +https://nwbib.de/spatial#Q27909671 http://www.wikidata.org/entity/Q27909671 Hohn http://www.wikidata.org/entity/Q253019 Point(7.4075 50.880278) +https://nwbib.de/spatial#Q32750 http://www.wikidata.org/entity/Q32750 Werther (Westf.) http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q42744322 Point(8.4125 52.075) +https://nwbib.de/spatial#Q19687931 http://www.wikidata.org/entity/Q19687931 Mark http://www.wikidata.org/entity/Q253019 Point(7.87527778 51.67583333) +https://nwbib.de/spatial#Q1872483 http://www.wikidata.org/entity/Q1872483 Loverich http://www.wikidata.org/entity/Q253019 Point(6.189722222 50.93) +https://nwbib.de/spatial#Q163917 http://www.wikidata.org/entity/Q163917 Schwalmtal http://www.wikidata.org/entity/Q262166 Point(6.2625 51.2225) +https://nwbib.de/spatial#Q1334185 http://www.wikidata.org/entity/Q1334185 Elvekum http://www.wikidata.org/entity/Q253019 Point(6.75111 51.1481) +https://nwbib.de/spatial#Q2007155 http://www.wikidata.org/entity/Q2007155 Nütterden http://www.wikidata.org/entity/Q253019 Point(6.064166666 51.789444444) +https://nwbib.de/spatial#Q1922249 http://www.wikidata.org/entity/Q1922249 Merzenhausen http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.291944444 50.934166666) +https://nwbib.de/spatial#Q538659 http://www.wikidata.org/entity/Q538659 Schale http://www.wikidata.org/entity/Q253019 Point(7.62528 52.4461) +https://nwbib.de/spatial#Q1021771 http://www.wikidata.org/entity/Q1021771 Büschergrund http://www.wikidata.org/entity/Q253019 Point(7.8875 50.9117) +https://nwbib.de/spatial#Q2407434 http://www.wikidata.org/entity/Q2407434 Teveren http://www.wikidata.org/entity/Q253019 Point(6.07889 50.9528) +https://nwbib.de/spatial#Q1172719 http://www.wikidata.org/entity/Q1172719 Dattenfeld http://www.wikidata.org/entity/Q253019 Point(7.559722222 50.802777777) +https://nwbib.de/spatial#Q179699 http://www.wikidata.org/entity/Q179699 Kaldenkirchen http://www.wikidata.org/entity/Q2983893 Point(6.283333333 51.316666666) +https://nwbib.de/spatial#Q1370173 http://www.wikidata.org/entity/Q1370173 Estinghausen http://www.wikidata.org/entity/Q253019 Point(7.94329 51.374) +https://nwbib.de/spatial#Q19297486 http://www.wikidata.org/entity/Q19297486 Oberlerbach http://www.wikidata.org/entity/Q253019 Point(7.161575 50.982975) +https://nwbib.de/spatial#Q1805516 http://www.wikidata.org/entity/Q1805516 Lankern http://www.wikidata.org/entity/Q253019 Point(6.59417 51.7883) +https://nwbib.de/spatial#Q1258126 http://www.wikidata.org/entity/Q1258126 Dreislar http://www.wikidata.org/entity/Q253019 Point(8.687777777 51.15) +https://nwbib.de/spatial#Q1261080 http://www.wikidata.org/entity/Q1261080 Eilversen http://www.wikidata.org/entity/Q253019 Point(9.25498 51.8152) +https://nwbib.de/spatial#Q1229445 http://www.wikidata.org/entity/Q1229445 Distelkamp http://www.wikidata.org/entity/Q253019 Point(7.56833 50.9111) +https://nwbib.de/spatial#Q1366811 http://www.wikidata.org/entity/Q1366811 Allagen http://www.wikidata.org/entity/Q253019 Point(8.253055555 51.478888888) +https://nwbib.de/spatial#Q19965282 http://www.wikidata.org/entity/Q19965282 Kruberg http://www.wikidata.org/entity/Q253019 Point(7.96111111 51.03777778) +https://nwbib.de/spatial#Q6230 http://www.wikidata.org/entity/Q6230 Kreis Lippe http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(8.916666666 52.0) +https://nwbib.de/spatial#Q876022 http://www.wikidata.org/entity/Q876022 Merode http://www.wikidata.org/entity/Q253019 Point(6.38972 50.7981) +https://nwbib.de/spatial#Q200743 http://www.wikidata.org/entity/Q200743 Roetgen http://www.wikidata.org/entity/Q262166 Point(6.2 50.65) +https://nwbib.de/spatial#Q2559367 http://www.wikidata.org/entity/Q2559367 Wengern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.344269444 51.400316666) +https://nwbib.de/spatial#Q939872 http://www.wikidata.org/entity/Q939872 Vossenack http://www.wikidata.org/entity/Q253019 Point(6.373888888 50.685277777) +https://nwbib.de/spatial#Q1394198 http://www.wikidata.org/entity/Q1394198 Falkendiek http://www.wikidata.org/entity/Q253019 Point(8.694166666 52.16) +https://nwbib.de/spatial#Q1513775 http://www.wikidata.org/entity/Q1513775 Gerlingsen http://www.wikidata.org/entity/Q253019 Point(7.66228 51.3883) +https://nwbib.de/spatial#Q257549 http://www.wikidata.org/entity/Q257549 Bergeborbeck http://www.wikidata.org/entity/Q2983893 Point(6.976389 51.478889) +https://nwbib.de/spatial#Q56395189 http://www.wikidata.org/entity/Q56395189 Dekanat Dorsten http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q894441 http://www.wikidata.org/entity/Q894441 Boslar http://www.wikidata.org/entity/Q253019 Point(6.332777777 50.972777777) +https://nwbib.de/spatial#Q1827032 http://www.wikidata.org/entity/Q1827032 Lintel http://www.wikidata.org/entity/Q253019 Point(8.382 51.842) +https://nwbib.de/spatial#Q56398321 http://www.wikidata.org/entity/Q56398321 Dekanat Olpe http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1546896 http://www.wikidata.org/entity/Q1546896 Grimminghausen http://www.wikidata.org/entity/Q253019 Point(8.21056 51.2197) +https://nwbib.de/spatial#Q688115 http://www.wikidata.org/entity/Q688115 Heimerzheim http://www.wikidata.org/entity/Q253019 Point(6.916666666 50.716666666) +https://nwbib.de/spatial#Q1742434 http://www.wikidata.org/entity/Q1742434 Oedingen http://www.wikidata.org/entity/Q253019 Point(8.12278 51.1736) +https://nwbib.de/spatial#Q696909 http://www.wikidata.org/entity/Q696909 Arnoldsweiler http://www.wikidata.org/entity/Q253019 Point(6.490833333 50.838055555) +https://nwbib.de/spatial#Q257681 http://www.wikidata.org/entity/Q257681 Borbeck-Mitte http://www.wikidata.org/entity/Q2983893 Point(6.951111 51.475) +https://nwbib.de/spatial#Q319807 http://www.wikidata.org/entity/Q319807 Aplerbeck http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1390618 Point(7.55 51.4833) +https://nwbib.de/spatial#Q2557695 http://www.wikidata.org/entity/Q2557695 Wellentrup http://www.wikidata.org/entity/Q253019 Point(9.02528 51.9403) +https://nwbib.de/spatial#Q1959038 http://www.wikidata.org/entity/Q1959038 Mündelheim http://www.wikidata.org/entity/Q2983893 Point(6.68194 51.3544) +https://nwbib.de/spatial#Q2065715 http://www.wikidata.org/entity/Q2065715 Schönau http://www.wikidata.org/entity/Q253019 Point(7.90472222 50.9775) +https://nwbib.de/spatial#Q1368050 http://www.wikidata.org/entity/Q1368050 Vorwald http://www.wikidata.org/entity/Q253019 Point(8.40074 51.1452) +https://nwbib.de/spatial#Q328545 http://www.wikidata.org/entity/Q328545 Nassau-Dillenburg http://www.wikidata.org/entity/Q208500 +https://nwbib.de/spatial#Q1653554 http://www.wikidata.org/entity/Q1653554 Wolfgarten http://www.wikidata.org/entity/Q253019 Point(6.49278 50.5903) +https://nwbib.de/spatial#Q1610389 http://www.wikidata.org/entity/Q1610389 Overberge http://www.wikidata.org/entity/Q253019 Point(7.67778 51.6189) +https://nwbib.de/spatial#Q56150614 http://www.wikidata.org/entity/Q56150614 Dam http://www.wikidata.org/entity/Q253019 Point(6.241444444 51.410611111) +https://nwbib.de/spatial#Q894914 http://www.wikidata.org/entity/Q894914 Vonderort http://www.wikidata.org/entity/Q253019 Point(6.9118 51.5057) +https://nwbib.de/spatial#Q200208 http://www.wikidata.org/entity/Q200208 Reken http://www.wikidata.org/entity/Q262166 Point(7.044444444 51.833333333) +https://nwbib.de/spatial#Q1486892 http://www.wikidata.org/entity/Q1486892 Hangelar http://www.wikidata.org/entity/Q2740635 Point(7.16778 50.7594) +https://nwbib.de/spatial#Q1777892 http://www.wikidata.org/entity/Q1777892 Kobeshofen http://www.wikidata.org/entity/Q253019 Point(7.34389 51.1378) +https://nwbib.de/spatial#Q1020537 http://www.wikidata.org/entity/Q1020537 Bühl http://www.wikidata.org/entity/Q253019 Point(7.92306 50.9181) +https://nwbib.de/spatial#Q1997671 http://www.wikidata.org/entity/Q1997671 Nordbögge http://www.wikidata.org/entity/Q253019 Point(7.74167 51.6133) +https://nwbib.de/spatial#Q61727216 http://www.wikidata.org/entity/Q61727216 Bruchhausen (Leverkusen) http://www.wikidata.org/entity/Q253019 Point(7.063583333 51.056305555) +https://nwbib.de/spatial#Q1468675 http://www.wikidata.org/entity/Q1468675 Straeten http://www.wikidata.org/entity/Q253019 Point(6.094166666 51.009166666) +https://nwbib.de/spatial#Q1743366 http://www.wikidata.org/entity/Q1743366 Kirchrarbach http://www.wikidata.org/entity/Q253019 Point(8.3 51.25) +https://nwbib.de/spatial#Q2473775 http://www.wikidata.org/entity/Q2473775 Uffeln http://www.wikidata.org/entity/Q253019 Point(7.63111 52.3228) +https://nwbib.de/spatial#Q621763 http://www.wikidata.org/entity/Q621763 Aprath http://www.wikidata.org/entity/Q253019 Point(7.07229 51.2721) +https://nwbib.de/spatial#Q1558895 http://www.wikidata.org/entity/Q1558895 Sandrup http://www.wikidata.org/entity/Q253019 Point(7.61583 52.0147) +https://nwbib.de/spatial#Q300703 http://www.wikidata.org/entity/Q300703 Aachen-Mitte http://www.wikidata.org/entity/Q2740635 Point(6.084166666 50.775) +https://nwbib.de/spatial#Q2126553 http://www.wikidata.org/entity/Q2126553 Radlinghausen http://www.wikidata.org/entity/Q253019 Point(8.67111 51.4314) +https://nwbib.de/spatial#Q2342445 http://www.wikidata.org/entity/Q2342445 Stemel http://www.wikidata.org/entity/Q253019 Point(7.99135 51.3558) +https://nwbib.de/spatial#Q1282752 http://www.wikidata.org/entity/Q1282752 Scheven http://www.wikidata.org/entity/Q253019 Point(6.58806 50.5592) +https://nwbib.de/spatial#Q191662 http://www.wikidata.org/entity/Q191662 Zerkall http://www.wikidata.org/entity/Q253019 Point(6.451111111 50.691944444) +https://nwbib.de/spatial#Q1752653 http://www.wikidata.org/entity/Q1752653 Weninghausen http://www.wikidata.org/entity/Q253019 Point(8.05722 51.3128) +https://nwbib.de/spatial#Q44069021 http://www.wikidata.org/entity/Q44069021 Altenrheine http://www.wikidata.org/entity/Q253019 Point(7.470833333 52.303333333) +https://nwbib.de/spatial#Q5567 http://www.wikidata.org/entity/Q5567 Halver http://www.wikidata.org/entity/Q42744322 Point(7.5027 51.1834) +https://nwbib.de/spatial#Q2058341 http://www.wikidata.org/entity/Q2058341 Pattscheid http://www.wikidata.org/entity/Q253019 Point(7.06163 51.0942) +https://nwbib.de/spatial#Q1385249 http://www.wikidata.org/entity/Q1385249 Sindorf http://www.wikidata.org/entity/Q253019 Point(6.67522 50.905) +https://nwbib.de/spatial#Q19965807 http://www.wikidata.org/entity/Q19965807 Stockum http://www.wikidata.org/entity/Q253019 Point(7.69722222 51.67333333) +https://nwbib.de/spatial#Q175947 http://www.wikidata.org/entity/Q175947 Stammheim http://www.wikidata.org/entity/Q15632166 Point(6.992222222 50.9875) +https://nwbib.de/spatial#Q1715666 http://www.wikidata.org/entity/Q1715666 Jössen http://www.wikidata.org/entity/Q253019 Point(8.99528 52.3964) +https://nwbib.de/spatial#Q269297 http://www.wikidata.org/entity/Q269297 Hörde http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(7.5 51.483333333) +https://nwbib.de/spatial#Q1787376 http://www.wikidata.org/entity/Q1787376 Kreis Lennep http://www.wikidata.org/entity/Q5283531 Point(7.266628055 51.189758888) +https://nwbib.de/spatial#Q2015458 http://www.wikidata.org/entity/Q2015458 Offelten http://www.wikidata.org/entity/Q253019 Point(8.50722 52.3014) +https://nwbib.de/spatial#Q317755 http://www.wikidata.org/entity/Q317755 Buschhoven http://www.wikidata.org/entity/Q253019 Point(6.983333333 50.683333333) +https://nwbib.de/spatial#Q56006657 http://www.wikidata.org/entity/Q56006657 Lanzerath http://www.wikidata.org/entity/Q253019 Point(6.6465 51.180388888) +https://nwbib.de/spatial#Q1250638 http://www.wikidata.org/entity/Q1250638 Husen http://www.wikidata.org/entity/Q253019 Point(7.60028 51.5608) +https://nwbib.de/spatial#Q1019908 http://www.wikidata.org/entity/Q1019908 Bönninghardt http://www.wikidata.org/entity/Q253019 Point(6.47028 51.5761) +https://nwbib.de/spatial#Q1880470 http://www.wikidata.org/entity/Q1880470 Lüttingen http://www.wikidata.org/entity/Q253019 Point(6.45972 51.6728) +https://nwbib.de/spatial#Q442473 http://www.wikidata.org/entity/Q442473 Altlünen http://www.wikidata.org/entity/Q253019 Point(7.52806 51.6289) +https://nwbib.de/spatial#Q1352064 http://www.wikidata.org/entity/Q1352064 Kalthof http://www.wikidata.org/entity/Q253019 Point(7.66908 51.4216) +https://nwbib.de/spatial#Q59139867 http://www.wikidata.org/entity/Q59139867 Stadtbezirk Bottrop-Süd http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59140331 http://www.wikidata.org/entity/Q59140331 Stadtbezirk Gelsenkirchen-West http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59140358 http://www.wikidata.org/entity/Q59140358 Stadtbezirk Gelsenkirchen-Ost http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q314439 http://www.wikidata.org/entity/Q314439 Hohenlimburg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.566648 51.356114) +https://nwbib.de/spatial#Q2567718 http://www.wikidata.org/entity/Q2567718 Widdau http://www.wikidata.org/entity/Q253019 Point(6.298 50.5605) +https://nwbib.de/spatial#Q1750200 http://www.wikidata.org/entity/Q1750200 Sohl http://www.wikidata.org/entity/Q253019 Point(8.29722 50.8722) +https://nwbib.de/spatial#Q1496176 http://www.wikidata.org/entity/Q1496176 Rhade http://www.wikidata.org/entity/Q253019 Point(6.9291 51.7506) +https://nwbib.de/spatial#Q22691691 http://www.wikidata.org/entity/Q22691691 Dormecke http://www.wikidata.org/entity/Q253019 Point(8.115688 51.217956) +https://nwbib.de/spatial#Q1296113 http://www.wikidata.org/entity/Q1296113 Efferen http://www.wikidata.org/entity/Q253019 Point(6.8986 50.8975) +https://nwbib.de/spatial#Q7088 http://www.wikidata.org/entity/Q7088 Kaarst http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.627330555 51.22785) +https://nwbib.de/spatial#Q2176732 http://www.wikidata.org/entity/Q2176732 Rurich http://www.wikidata.org/entity/Q253019 Point(6.271388888 51.013333333) +https://nwbib.de/spatial#Q2555954 http://www.wikidata.org/entity/Q2555954 Weingartsgasse http://www.wikidata.org/entity/Q253019 Point(7.28333 50.7889) +https://nwbib.de/spatial#Q376205 http://www.wikidata.org/entity/Q376205 Linn http://www.wikidata.org/entity/Q2983893 Point(6.64528 51.3367) +https://nwbib.de/spatial#Q11280 http://www.wikidata.org/entity/Q11280 Ennepe-Ruhr-Kreis http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q20738811 Point(7.30722 51.35139) +https://nwbib.de/spatial#Q876248 http://www.wikidata.org/entity/Q876248 Kalkum http://www.wikidata.org/entity/Q1852178 Point(6.7625 51.3064) +https://nwbib.de/spatial#Q1795775 http://www.wikidata.org/entity/Q1795775 Weiden http://www.wikidata.org/entity/Q15632166 Point(6.83333 50.9381) +https://nwbib.de/spatial#Q1605209 http://www.wikidata.org/entity/Q1605209 Hengstey http://www.wikidata.org/entity/Q253019 Point(7.458888888 51.403055555) +https://nwbib.de/spatial#Q883649 http://www.wikidata.org/entity/Q883649 Sennelager http://www.wikidata.org/entity/Q152081, http://www.wikidata.org/entity/Q253019 Point(8.716666666 51.766666666) +https://nwbib.de/spatial#Q19834165 http://www.wikidata.org/entity/Q19834165 Afferde http://www.wikidata.org/entity/Q253019 Point(7.64861107 51.55944443) +https://nwbib.de/spatial#Q1628227 http://www.wikidata.org/entity/Q1628227 Horm http://www.wikidata.org/entity/Q253019 Point(6.439 50.747) +https://nwbib.de/spatial#Q2308256 http://www.wikidata.org/entity/Q2308256 Speck / Wehl / Helpenstein http://www.wikidata.org/entity/Q253019 Point(6.66904 51.1466) +https://nwbib.de/spatial#Q1778716 http://www.wikidata.org/entity/Q1778716 Kohlstädt http://www.wikidata.org/entity/Q253019 Point(8.8667 51.8259) +https://nwbib.de/spatial#Q437214 http://www.wikidata.org/entity/Q437214 Altenhellefeld http://www.wikidata.org/entity/Q253019 Point(8.098797222 51.316488888) +https://nwbib.de/spatial#Q154048 http://www.wikidata.org/entity/Q154048 Kornelimünster http://www.wikidata.org/entity/Q253019 Point(6.17806 50.7286) +https://nwbib.de/spatial#Q1618464 http://www.wikidata.org/entity/Q1618464 Hildfeld http://www.wikidata.org/entity/Q253019 Point(8.565 51.2431) +https://nwbib.de/spatial#Q56238742 http://www.wikidata.org/entity/Q56238742 Dürscheid http://www.wikidata.org/entity/Q2983893 Point(7.085638888 51.071194444) +https://nwbib.de/spatial#Q1310867 http://www.wikidata.org/entity/Q1310867 Eisbergen http://www.wikidata.org/entity/Q253019 Point(9.01778 52.2003) +https://nwbib.de/spatial#Q56025147 http://www.wikidata.org/entity/Q56025147 Oestrum http://www.wikidata.org/entity/Q253019 Point(6.689888888 51.416611111) +https://nwbib.de/spatial#Q1663027 http://www.wikidata.org/entity/Q1663027 Inger http://www.wikidata.org/entity/Q253019 Point(7.26872 50.8356) +https://nwbib.de/spatial#Q187678 http://www.wikidata.org/entity/Q187678 Wanne http://www.wikidata.org/entity/Q2983893 Point(7.155277777 51.5375) +https://nwbib.de/spatial#Q881783 http://www.wikidata.org/entity/Q881783 Rheda http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q253019 Point(8.29222 51.85) +https://nwbib.de/spatial#Q1795755 http://www.wikidata.org/entity/Q1795755 Klettenberg http://www.wikidata.org/entity/Q15632166 Point(6.92611 50.9111) +https://nwbib.de/spatial#Q243139 http://www.wikidata.org/entity/Q243139 Wachtendonk http://www.wikidata.org/entity/Q262166 Point(6.337777777 51.409166666) +https://nwbib.de/spatial#Q200783 http://www.wikidata.org/entity/Q200783 Monschau http://www.wikidata.org/entity/Q42744322 Point(6.25 50.55) +https://nwbib.de/spatial#Q2153631 http://www.wikidata.org/entity/Q2153631 Ringenberg http://www.wikidata.org/entity/Q253019 Point(6.61083 51.7417) +https://nwbib.de/spatial#Q1570055 http://www.wikidata.org/entity/Q1570055 Untereschbach http://www.wikidata.org/entity/Q253019 Point(7.21417 50.9475) +https://nwbib.de/spatial#Q245376 http://www.wikidata.org/entity/Q245376 Rösrath http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.183333333 50.9) +https://nwbib.de/spatial#Q378206 http://www.wikidata.org/entity/Q378206 Adscheid http://www.wikidata.org/entity/Q253019 Point(7.35194 50.7586) +https://nwbib.de/spatial#Q653282 http://www.wikidata.org/entity/Q653282 Kreis Beckum http://www.wikidata.org/entity/Q106658 Point(8.04028 51.755) +https://nwbib.de/spatial#Q1020704 http://www.wikidata.org/entity/Q1020704 Bülgenauel http://www.wikidata.org/entity/Q253019 Point(7.37611 50.7742) +https://nwbib.de/spatial#Q1808919 http://www.wikidata.org/entity/Q1808919 Lavesum http://www.wikidata.org/entity/Q253019 Point(7.16222 51.7794) +https://nwbib.de/spatial#Q3898 http://www.wikidata.org/entity/Q3898 Castrop-Rauxel http://www.wikidata.org/entity/Q1375749, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518 Point(7.316666666 51.55) +https://nwbib.de/spatial#Q20916410 http://www.wikidata.org/entity/Q20916410 Steinsiepen http://www.wikidata.org/entity/Q253019 Point(8.05094 51.23234) +https://nwbib.de/spatial#Q2662781 http://www.wikidata.org/entity/Q2662781 Stadtbezirk Bochum-Mitte http://www.wikidata.org/entity/Q2740635 Point(7.21527778 51.4825) +https://nwbib.de/spatial#Q865442 http://www.wikidata.org/entity/Q865442 Birk http://www.wikidata.org/entity/Q253019 Point(7.27639 50.8353) +https://nwbib.de/spatial#Q1471805 http://www.wikidata.org/entity/Q1471805 Frönsberg http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(7.76111 51.3492) +https://nwbib.de/spatial#Q15815780 http://www.wikidata.org/entity/Q15815780 Hohenhagen http://www.wikidata.org/entity/Q253019 Point(7.17161111 51.29291667) +https://nwbib.de/spatial#Q1673868 http://www.wikidata.org/entity/Q1673868 Quirrenbach http://www.wikidata.org/entity/Q253019 Point(7.3173 50.6825) +https://nwbib.de/spatial#Q151453 http://www.wikidata.org/entity/Q151453 Westkirchen http://www.wikidata.org/entity/Q253019 Point(8.04306 51.8839) +https://nwbib.de/spatial#Q1956573 http://www.wikidata.org/entity/Q1956573 Myhl http://www.wikidata.org/entity/Q253019 Point(6.19083 51.0972) +https://nwbib.de/spatial#Q4082 http://www.wikidata.org/entity/Q4082 Hattingen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.185833333 51.399166666) +https://nwbib.de/spatial#Q904773 http://www.wikidata.org/entity/Q904773 Bredenbruch http://www.wikidata.org/entity/Q253019 Point(7.74694 51.3575) +https://nwbib.de/spatial#Q5380059 http://www.wikidata.org/entity/Q5380059 Enste http://www.wikidata.org/entity/Q253019 Point(8.25 51.366666666) +https://nwbib.de/spatial#Q1719493 http://www.wikidata.org/entity/Q1719493 Kaan-Marienborn http://www.wikidata.org/entity/Q253019 Point(8.05261 50.8743) +https://nwbib.de/spatial#Q1656425 http://www.wikidata.org/entity/Q1656425 Ickern http://www.wikidata.org/entity/Q253019 Point(7.33778 51.5928) +https://nwbib.de/spatial#Q19962181 http://www.wikidata.org/entity/Q19962181 Dellwig http://www.wikidata.org/entity/Q253019 Point(7.69138908 51.47888947) +https://nwbib.de/spatial#Q1948600 http://www.wikidata.org/entity/Q1948600 Morsbach http://www.wikidata.org/entity/Q253019 Point(6.1225 50.8311) +https://nwbib.de/spatial#Q997038 http://www.wikidata.org/entity/Q997038 Brüninghausen http://www.wikidata.org/entity/Q253019 Point(7.69427 51.2225) +https://nwbib.de/spatial#Q2202659 http://www.wikidata.org/entity/Q2202659 Rönkhausen http://www.wikidata.org/entity/Q253019 Point(7.95889 51.22) +https://nwbib.de/spatial#Q22565057 http://www.wikidata.org/entity/Q22565057 Sevelen http://www.wikidata.org/entity/Q253019 Point(6.423611111 51.538888888) +https://nwbib.de/spatial#Q890253 http://www.wikidata.org/entity/Q890253 Boele http://www.wikidata.org/entity/Q253019 Point(7.470361111 51.401780555) +https://nwbib.de/spatial#Q568552 http://www.wikidata.org/entity/Q568552 Anrath http://www.wikidata.org/entity/Q2983893 Point(6.458888888 51.279166666) +https://nwbib.de/spatial#Q1464345 http://www.wikidata.org/entity/Q1464345 Quernheim http://www.wikidata.org/entity/Q253019 Point(8.63889 52.2361) +https://nwbib.de/spatial#Q182857 http://www.wikidata.org/entity/Q182857 Petershagen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q1526889, http://www.wikidata.org/entity/Q42744322 Point(8.966666666 52.383333333) +https://nwbib.de/spatial#Q2264182 http://www.wikidata.org/entity/Q2264182 Till-Moyland http://www.wikidata.org/entity/Q253019 Point(6.258055555 51.763611111) +https://nwbib.de/spatial#Q1409146 http://www.wikidata.org/entity/Q1409146 Mennighüffen http://www.wikidata.org/entity/Q253019 Point(8.706388888 52.220277777) +https://nwbib.de/spatial#Q65945133 http://www.wikidata.org/entity/Q65945133 Rossenray http://www.wikidata.org/entity/Q253019 Point(6.5664 51.5132) +https://nwbib.de/spatial#Q1610103 http://www.wikidata.org/entity/Q1610103 Hülm http://www.wikidata.org/entity/Q253019 Point(6.14984 51.6487) +https://nwbib.de/spatial#Q14870 http://www.wikidata.org/entity/Q14870 Siegburg http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322 Point(7.204444444 50.801388888) +https://nwbib.de/spatial#Q891203 http://www.wikidata.org/entity/Q891203 Boke http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.55944 51.7283) +https://nwbib.de/spatial#Q2478547 http://www.wikidata.org/entity/Q2478547 Ummeln http://www.wikidata.org/entity/Q253019 Point(8.45694 51.965) +https://nwbib.de/spatial#Q1523775 http://www.wikidata.org/entity/Q1523775 Puderbach http://www.wikidata.org/entity/Q253019 Point(8.44444 50.95) +https://nwbib.de/spatial#Q2009312 http://www.wikidata.org/entity/Q2009312 Oberdrees http://www.wikidata.org/entity/Q253019 Point(6.91972 50.64) +https://nwbib.de/spatial#Q1021839 http://www.wikidata.org/entity/Q1021839 Büttenberg http://www.wikidata.org/entity/Q253019 Point(7.32353 51.2971) +https://nwbib.de/spatial#Q18746932 http://www.wikidata.org/entity/Q18746932 Schmithof http://www.wikidata.org/entity/Q253019 Point(6.14 50.692778055) +https://nwbib.de/spatial#Q55985956 http://www.wikidata.org/entity/Q55985956 Bliedinghausen http://www.wikidata.org/entity/Q253019 Point(7.200277777 51.165722222) +https://nwbib.de/spatial#Q469728 http://www.wikidata.org/entity/Q469728 Hachen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(7.9826 51.3781) +https://nwbib.de/spatial#Q162089 http://www.wikidata.org/entity/Q162089 Hordel http://www.wikidata.org/entity/Q253019 Point(7.173888888 51.497777777) +https://nwbib.de/spatial#Q1335120 http://www.wikidata.org/entity/Q1335120 Lürbke http://www.wikidata.org/entity/Q253019 Point(7.8572 51.4235) +https://nwbib.de/spatial#Q1987648 http://www.wikidata.org/entity/Q1987648 Niederbreidenbach http://www.wikidata.org/entity/Q253019 Point(7.48306 50.885) +https://nwbib.de/spatial#Q920467 http://www.wikidata.org/entity/Q920467 Wertherbruch http://www.wikidata.org/entity/Q253019 Point(6.523888888 51.7925) +https://nwbib.de/spatial#Q1785369 http://www.wikidata.org/entity/Q1785369 Kothausen http://www.wikidata.org/entity/Q253019 Point(6.37157 51.1634) +https://nwbib.de/spatial#Q1420937 http://www.wikidata.org/entity/Q1420937 Fissenknick http://www.wikidata.org/entity/Q253019 Point(8.97056 51.9128) +https://nwbib.de/spatial#Q889058 http://www.wikidata.org/entity/Q889058 Eppendorf http://www.wikidata.org/entity/Q253019 Point(7.17389 51.455) +https://nwbib.de/spatial#Q1987697 http://www.wikidata.org/entity/Q1987697 Niederdresselndorf http://www.wikidata.org/entity/Q253019 Point(8.13639 50.7236) +https://nwbib.de/spatial#Q547481 http://www.wikidata.org/entity/Q547481 Lindenthal http://www.wikidata.org/entity/Q15632166 Point(6.91 50.926111111) +https://nwbib.de/spatial#Q14943 http://www.wikidata.org/entity/Q14943 Havixbeck http://www.wikidata.org/entity/Q262166 Point(7.416666666 51.977777777) +https://nwbib.de/spatial#Q821904 http://www.wikidata.org/entity/Q821904 Berlingsen http://www.wikidata.org/entity/Q253019 Point(8.13722 51.515) +https://nwbib.de/spatial#Q1880735 http://www.wikidata.org/entity/Q1880735 Altenhof http://www.wikidata.org/entity/Q253019 Point(7.898505 50.960924) +https://nwbib.de/spatial#Q183515 http://www.wikidata.org/entity/Q183515 Salzkotten http://www.wikidata.org/entity/Q42744322 Point(8.604722222 51.670833333) +https://nwbib.de/spatial#Q1667977 http://www.wikidata.org/entity/Q1667977 Kirchveischede http://www.wikidata.org/entity/Q253019 Point(7.99944 51.0908) +https://nwbib.de/spatial#Q1787307 http://www.wikidata.org/entity/Q1787307 Kreis Grevenbroich http://www.wikidata.org/entity/Q106658 Point(6.5875 51.0883) +https://nwbib.de/spatial#Q6842 http://www.wikidata.org/entity/Q6842 Kleve http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.14 51.79) +https://nwbib.de/spatial#Q737194 http://www.wikidata.org/entity/Q737194 Lind http://www.wikidata.org/entity/Q15632166 Point(7.10611 50.8531) +https://nwbib.de/spatial#Q1414798 http://www.wikidata.org/entity/Q1414798 Obereip http://www.wikidata.org/entity/Q253019 Point(7.45222 50.7194) +https://nwbib.de/spatial#Q1803239 http://www.wikidata.org/entity/Q1803239 Landkreis Hörde http://www.wikidata.org/entity/Q5283531 Point(7.5 51.483333333) +https://nwbib.de/spatial#Q1633099 http://www.wikidata.org/entity/Q1633099 Istrup http://www.wikidata.org/entity/Q253019 Point(9.046388888 51.948611111) +https://nwbib.de/spatial#Q1329345 http://www.wikidata.org/entity/Q1329345 Niederlaasphe http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(8.441666666 50.927777777) +https://nwbib.de/spatial#Q808274 http://www.wikidata.org/entity/Q808274 Barkhausen http://www.wikidata.org/entity/Q253019 Point(8.90944 52.2539) +https://nwbib.de/spatial#Q1003241 http://www.wikidata.org/entity/Q1003241 Buke http://www.wikidata.org/entity/Q253019 Point(8.94306 51.7411) +https://nwbib.de/spatial#Q883649 http://www.wikidata.org/entity/Q883649 Sennelager http://www.wikidata.org/entity/Q152081, http://www.wikidata.org/entity/Q253019 Point(8.716699 51.7667) +https://nwbib.de/spatial#Q3069 http://www.wikidata.org/entity/Q3069 Bottrop http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1401585, http://www.wikidata.org/entity/Q85635630 Point(6.925269444 51.52325) +https://nwbib.de/spatial#Q1795749 http://www.wikidata.org/entity/Q1795749 Hahnwald http://www.wikidata.org/entity/Q15632166 Point(6.979722222 50.876388888) +https://nwbib.de/spatial#Q1343543 http://www.wikidata.org/entity/Q1343543 Verlar http://www.wikidata.org/entity/Q253019 Point(8.49056 51.688) +https://nwbib.de/spatial#Q1433306 http://www.wikidata.org/entity/Q1433306 Schwelentrup http://www.wikidata.org/entity/Q253019 Point(9.02458 52.0485) +https://nwbib.de/spatial#Q199988 http://www.wikidata.org/entity/Q199988 Kreuzau http://www.wikidata.org/entity/Q262166 Point(6.490688888 50.746988888) +https://nwbib.de/spatial#Q1971675 http://www.wikidata.org/entity/Q1971675 Natzungen http://www.wikidata.org/entity/Q253019 Point(9.23306 51.6094) +https://nwbib.de/spatial#Q2152380 http://www.wikidata.org/entity/Q2152380 Riesenbeck http://www.wikidata.org/entity/Q253019 Point(7.62361 52.2611) +https://nwbib.de/spatial#Q6253 http://www.wikidata.org/entity/Q6253 Rhein-Kreis Neuss http://www.wikidata.org/entity/Q20738811 Point(6.67 51.17) +https://nwbib.de/spatial#Q448795 http://www.wikidata.org/entity/Q448795 Alverdissen http://www.wikidata.org/entity/Q253019 Point(9.12361 52.0314) +https://nwbib.de/spatial#Q1262478 http://www.wikidata.org/entity/Q1262478 Rheinheim http://www.wikidata.org/entity/Q253019 Point(6.6963 51.3424) +https://nwbib.de/spatial#Q3846 http://www.wikidata.org/entity/Q3846 Minden http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813 Point(8.916666666 52.288333333) +https://nwbib.de/spatial#Q1627730 http://www.wikidata.org/entity/Q1627730 Hoppecke http://www.wikidata.org/entity/Q253019 Point(8.64222 51.3761) +https://nwbib.de/spatial#Q814022 http://www.wikidata.org/entity/Q814022 Beeckerheide http://www.wikidata.org/entity/Q253019 Point(6.29306 51.1386) +https://nwbib.de/spatial#Q831279 http://www.wikidata.org/entity/Q831279 Weidenau http://www.wikidata.org/entity/Q2983893 Point(8.03333 50.9) +https://nwbib.de/spatial#Q183404 http://www.wikidata.org/entity/Q183404 Büren http://www.wikidata.org/entity/Q42744322 Point(8.566666666 51.55) +https://nwbib.de/spatial#Q1772593 http://www.wikidata.org/entity/Q1772593 Schameder http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(8.294166666 50.998333333) +https://nwbib.de/spatial#Q1594131 http://www.wikidata.org/entity/Q1594131 Heiden http://www.wikidata.org/entity/Q253019 Point(8.84614 51.981) +https://nwbib.de/spatial#Q205465 http://www.wikidata.org/entity/Q205465 Selgersdorf http://www.wikidata.org/entity/Q253019 Point(6.408333333 50.8875) +https://nwbib.de/spatial#Q1959103 http://www.wikidata.org/entity/Q1959103 Münster-Kreuzviertel http://www.wikidata.org/entity/Q253019 Point(7.62361 51.9708) +https://nwbib.de/spatial#Q2168948 http://www.wikidata.org/entity/Q2168948 Rott http://www.wikidata.org/entity/Q2983893 Point(7.26333 50.7461) +https://nwbib.de/spatial#Q1602367 http://www.wikidata.org/entity/Q1602367 Mastbruch http://www.wikidata.org/entity/Q253019 Point(8.73306 51.7547) +https://nwbib.de/spatial#Q5274 http://www.wikidata.org/entity/Q5274 Balve http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.866666666 51.333333333) +https://nwbib.de/spatial#Q1585140 http://www.wikidata.org/entity/Q1585140 Hardt http://www.wikidata.org/entity/Q253019 Point(6.34576 51.2025) +https://nwbib.de/spatial#Q326089 http://www.wikidata.org/entity/Q326089 Gräfrath http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q2983893 Point(7.07611 51.2081) +https://nwbib.de/spatial#Q27916647 http://www.wikidata.org/entity/Q27916647 Gielsdorf http://www.wikidata.org/entity/Q253019 Point(7.023678 50.726492) +https://nwbib.de/spatial#Q20826937 http://www.wikidata.org/entity/Q20826937 Süddinker http://www.wikidata.org/entity/Q253019 Point(7.91694444 51.63638889) +https://nwbib.de/spatial#Q1361431 http://www.wikidata.org/entity/Q1361431 Erpentrup http://www.wikidata.org/entity/Q253019 Point(9.00222 51.7886) +https://nwbib.de/spatial#Q1593866 http://www.wikidata.org/entity/Q1593866 Heide http://www.wikidata.org/entity/Q253019 Point(6.87367 50.8355) +https://nwbib.de/spatial#Q991966 http://www.wikidata.org/entity/Q991966 Bruchhausen http://www.wikidata.org/entity/Q253019 Point(8.01693 51.424) +https://nwbib.de/spatial#Q15120449 http://www.wikidata.org/entity/Q15120449 Miebach http://www.wikidata.org/entity/Q253019 Point(7.2313 51.013795) +https://nwbib.de/spatial#Q944071 http://www.wikidata.org/entity/Q944071 Walheim http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.1825 50.7072) +https://nwbib.de/spatial#Q15856848 http://www.wikidata.org/entity/Q15856848 Beckinghausen http://www.wikidata.org/entity/Q253019 Point(7.562528 51.6121) +https://nwbib.de/spatial#Q16857717 http://www.wikidata.org/entity/Q16857717 Velsen http://www.wikidata.org/entity/Q253019 Point(7.943 51.977) +https://nwbib.de/spatial#Q880621 http://www.wikidata.org/entity/Q880621 Miel http://www.wikidata.org/entity/Q253019 Point(6.914852777 50.670055555) +https://nwbib.de/spatial#Q14934 http://www.wikidata.org/entity/Q14934 Lüdinghausen http://www.wikidata.org/entity/Q42744322 Point(7.444444444 51.768055555) +https://nwbib.de/spatial#Q2511774 http://www.wikidata.org/entity/Q2511774 Veert http://www.wikidata.org/entity/Q253019 Point(6.296389 51.527778) +https://nwbib.de/spatial#Q1516717 http://www.wikidata.org/entity/Q1516717 Stadtbezirk Neuenbeken http://www.wikidata.org/entity/Q2740635 Point(8.85056 51.7436) +https://nwbib.de/spatial#Q1113980 http://www.wikidata.org/entity/Q1113980 Weyer http://www.wikidata.org/entity/Q253019 Point(6.65149 50.5378) +https://nwbib.de/spatial#Q2220327 http://www.wikidata.org/entity/Q2220327 Sand http://www.wikidata.org/entity/Q253019 Point(7.15843 50.9888) +https://nwbib.de/spatial#Q1675459 http://www.wikidata.org/entity/Q1675459 Kreuzberg http://www.wikidata.org/entity/Q253019 Point(7.44861 51.1536) +https://nwbib.de/spatial#Q889055 http://www.wikidata.org/entity/Q889055 Ehrenfeld http://www.wikidata.org/entity/Q253019 Point(7.223611 51.466667) +https://nwbib.de/spatial#Q492224 http://www.wikidata.org/entity/Q492224 Wattenscheid http://www.wikidata.org/entity/Q22865, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q2740635 Point(7.133333333 51.483333333) +https://nwbib.de/spatial#Q255416 http://www.wikidata.org/entity/Q255416 Jüchen http://www.wikidata.org/entity/Q42744322 Point(6.501666666 51.101111111) +https://nwbib.de/spatial#Q1368621 http://www.wikidata.org/entity/Q1368621 Fischlaken http://www.wikidata.org/entity/Q253019 Point(7.026667 51.388889) +https://nwbib.de/spatial#Q153419 http://www.wikidata.org/entity/Q153419 Nothberg http://www.wikidata.org/entity/Q253019 Point(6.29361 50.8094) +https://nwbib.de/spatial#Q1746811 http://www.wikidata.org/entity/Q1746811 Kleingladbach http://www.wikidata.org/entity/Q253019 Point(6.22611 51.0744) +https://nwbib.de/spatial#Q17127824 http://www.wikidata.org/entity/Q17127824 Vellern http://www.wikidata.org/entity/Q253019 Point(8.0725 51.78666667) +https://nwbib.de/spatial#Q1577244 http://www.wikidata.org/entity/Q1577244 Propach http://www.wikidata.org/entity/Q253019 Point(7.52194 50.8494) +https://nwbib.de/spatial#Q2546591 http://www.wikidata.org/entity/Q2546591 Emmericher Eyland http://www.wikidata.org/entity/Q253019 Point(6.25444 51.80278) +https://nwbib.de/spatial#N65 http://www.wikidata.org/entity/Q697254 Hochstift Münster http://www.wikidata.org/entity/Q463742 Point(7.625628 51.963032) +https://nwbib.de/spatial#Q2473510 http://www.wikidata.org/entity/Q2473510 Udorf http://www.wikidata.org/entity/Q253019 Point(8.94099 51.4202) +https://nwbib.de/spatial#Q2107 http://www.wikidata.org/entity/Q2107 Wuppertal http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322 Point(7.183333333 51.266666666) +https://nwbib.de/spatial#Q893910 http://www.wikidata.org/entity/Q893910 Born http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.21333 51.2453) +https://nwbib.de/spatial#Q1902079 http://www.wikidata.org/entity/Q1902079 Oedekoven http://www.wikidata.org/entity/Q253019 Point(7.020277777 50.72) +https://nwbib.de/spatial#Q1513770 http://www.wikidata.org/entity/Q1513770 Gerlingen http://www.wikidata.org/entity/Q253019 Point(7.97627 51.5284) +https://nwbib.de/spatial#Q1453792 http://www.wikidata.org/entity/Q1453792 Freialdenhoven http://www.wikidata.org/entity/Q253019 Point(6.249722222 50.928611111) +https://nwbib.de/spatial#Q1593462 http://www.wikidata.org/entity/Q1593462 Heedfeld http://www.wikidata.org/entity/Q253019 Point(7.58259 51.2568) +https://nwbib.de/spatial#Q45735731 http://www.wikidata.org/entity/Q45735731 Overhetfeld http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1250636 http://www.wikidata.org/entity/Q1250636 Huckarde http://www.wikidata.org/entity/Q253019 Point(7.41389 51.5303) +https://nwbib.de/spatial#Q1187959 http://www.wikidata.org/entity/Q1187959 Denklingen http://www.wikidata.org/entity/Q253019 Point(7.65528 50.9153) +https://nwbib.de/spatial#Q1636155 http://www.wikidata.org/entity/Q1636155 Huisberden http://www.wikidata.org/entity/Q253019 Point(6.231944444 51.79) +https://nwbib.de/spatial#Q152421 http://www.wikidata.org/entity/Q152421 Altenrath http://www.wikidata.org/entity/Q253019 Point(7.19682 50.8571) +https://nwbib.de/spatial#Q1735628 http://www.wikidata.org/entity/Q1735628 Röttgen http://www.wikidata.org/entity/Q253019 Point(7.06927 50.6761) +https://nwbib.de/spatial#Q47022089 http://www.wikidata.org/entity/Q47022089 Kirchenkreis Gladbach-Neuss http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q314234 http://www.wikidata.org/entity/Q314234 Wanne-Eickel http://www.wikidata.org/entity/Q22865, http://www.wikidata.org/entity/Q253019 Point(7.161666666 51.5325) +https://nwbib.de/spatial#Q380591 http://www.wikidata.org/entity/Q380591 Aegidienberg http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q253019 Point(7.3025 50.6586) +https://nwbib.de/spatial#Q27894906 http://www.wikidata.org/entity/Q27894906 Bruchhausen http://www.wikidata.org/entity/Q253019 Point(7.46 50.879722222) +https://nwbib.de/spatial#Q941000 http://www.wikidata.org/entity/Q941000 Garzweiler http://www.wikidata.org/entity/Q253019 Point(6.50611 51.1078) +https://nwbib.de/spatial#Q1418553 http://www.wikidata.org/entity/Q1418553 Ohmig http://www.wikidata.org/entity/Q253019 Point(7.5225 50.9761) +https://nwbib.de/spatial#Q1722587 http://www.wikidata.org/entity/Q1722587 Kalscheuren http://www.wikidata.org/entity/Q253019 Point(6.90833 50.8756) +https://nwbib.de/spatial#Q15823609 http://www.wikidata.org/entity/Q15823609 Kirchenkreis An Sieg und Rhein http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q2103615 http://www.wikidata.org/entity/Q2103615 Pont (Geldern) http://www.wikidata.org/entity/Q253019 Point(6.29528 51.4906) +https://nwbib.de/spatial#Q884517 http://www.wikidata.org/entity/Q884517 Wickede http://www.wikidata.org/entity/Q253019 Point(7.610833333 51.531944444) +https://nwbib.de/spatial#Q242195 http://www.wikidata.org/entity/Q242195 Bad Driburg http://www.wikidata.org/entity/Q6882870, http://www.wikidata.org/entity/Q42744322 Point(9.016666666 51.733333333) +https://nwbib.de/spatial#Q16218976 http://www.wikidata.org/entity/Q16218976 Mühlenrahmede http://www.wikidata.org/entity/Q253019 Point(7.67121 51.26326) +https://nwbib.de/spatial#Q1859610 http://www.wikidata.org/entity/Q1859610 Obermaubach http://www.wikidata.org/entity/Q253019 Point(6.443333333 50.7175) +https://nwbib.de/spatial#Q886302 http://www.wikidata.org/entity/Q886302 Blumenthal http://www.wikidata.org/entity/Q253019 Point(7.92736 51.5326) +https://nwbib.de/spatial#Q20826936 http://www.wikidata.org/entity/Q20826936 Norddinker http://www.wikidata.org/entity/Q253019 Point(7.92666667 51.65305556) +https://nwbib.de/spatial#Q19964826 http://www.wikidata.org/entity/Q19964826 Heeren http://www.wikidata.org/entity/Q253019 Point(7.71288872 51.57777786) +https://nwbib.de/spatial#Q1601674 http://www.wikidata.org/entity/Q1601674 Helberg http://www.wikidata.org/entity/Q253019 Point(7.63917 51.0689) +https://nwbib.de/spatial#Q1477503 http://www.wikidata.org/entity/Q1477503 Serkenrode http://www.wikidata.org/entity/Q253019 Point(8.07972 51.2133) +https://nwbib.de/spatial#Q1645504 http://www.wikidata.org/entity/Q1645504 Quelle http://www.wikidata.org/entity/Q253019 Point(8.47667 52.0064) +https://nwbib.de/spatial#Q1464738 http://www.wikidata.org/entity/Q1464738 Friesenrath http://www.wikidata.org/entity/Q253019 Point(6.183611111 50.694444444) +https://nwbib.de/spatial#Q1229456 http://www.wikidata.org/entity/Q1229456 Distelrath http://www.wikidata.org/entity/Q253019 Point(6.52232 50.8166) +https://nwbib.de/spatial#Q33133657 http://www.wikidata.org/entity/Q33133657 Ostinghausen http://www.wikidata.org/entity/Q253019 Point(8.1968 51.6357) +https://nwbib.de/spatial#Q2535484 http://www.wikidata.org/entity/Q2535484 Vussem http://www.wikidata.org/entity/Q253019 Point(6.66306 50.5661) +https://nwbib.de/spatial#Q759112 http://www.wikidata.org/entity/Q759112 Auenheim http://www.wikidata.org/entity/Q253019 Point(6.655722222 50.995027777) +https://nwbib.de/spatial#Q2281440 http://www.wikidata.org/entity/Q2281440 Sichtigvor http://www.wikidata.org/entity/Q253019 Point(8.278611111 51.491111111) +https://nwbib.de/spatial#Q1980043 http://www.wikidata.org/entity/Q1980043 Neuenheerse http://www.wikidata.org/entity/Q253019 Point(8.9975 51.6747) +https://nwbib.de/spatial#Q892888 http://www.wikidata.org/entity/Q892888 Bontkirchen http://www.wikidata.org/entity/Q253019 Point(8.658055555 51.355555555) +https://nwbib.de/spatial#Q883892 http://www.wikidata.org/entity/Q883892 Blessem http://www.wikidata.org/entity/Q253019 Point(6.7952 50.8126) +https://nwbib.de/spatial#Q1812138 http://www.wikidata.org/entity/Q1812138 Leer http://www.wikidata.org/entity/Q253019 Point(7.29472 52.1139) +https://nwbib.de/spatial#Q1795778 http://www.wikidata.org/entity/Q1795778 Widdersdorf http://www.wikidata.org/entity/Q15632166 Point(6.83 50.9642) +https://nwbib.de/spatial#Q573387 http://www.wikidata.org/entity/Q573387 Tondorf http://www.wikidata.org/entity/Q253019 Point(6.71306 50.4733) +https://nwbib.de/spatial#Q2153622 http://www.wikidata.org/entity/Q2153622 Ringelstein http://www.wikidata.org/entity/Q253019 Point(8.56972 51.4992) +https://nwbib.de/spatial#Q2010624 http://www.wikidata.org/entity/Q2010624 Oberpleis http://www.wikidata.org/entity/Q253019 Point(7.27778 50.71) +https://nwbib.de/spatial#Q2160918 http://www.wikidata.org/entity/Q2160918 Rodde http://www.wikidata.org/entity/Q253019 Point(7.52917 52.2842) +https://nwbib.de/spatial#Q1790749 http://www.wikidata.org/entity/Q1790749 Schneppenbaum http://www.wikidata.org/entity/Q253019 Point(6.18806 51.7625) +https://nwbib.de/spatial#Q44072335 http://www.wikidata.org/entity/Q44072335 Krechting http://www.wikidata.org/entity/Q253019 Point(6.695833333 51.821944444) +https://nwbib.de/spatial#Q1532819 http://www.wikidata.org/entity/Q1532819 Glüder http://www.wikidata.org/entity/Q253019 Point(7.11959 51.1338) +https://nwbib.de/spatial#Q818140 http://www.wikidata.org/entity/Q818140 Benrad http://www.wikidata.org/entity/Q253019 Point(6.53194 51.3275) +https://nwbib.de/spatial#Q1300657 http://www.wikidata.org/entity/Q1300657 Ehrentrup http://www.wikidata.org/entity/Q253019 Point(8.78972 51.9781) +https://nwbib.de/spatial#Q2130336 http://www.wikidata.org/entity/Q2130336 Ramrath http://www.wikidata.org/entity/Q253019 Point(6.68222 51.0975) +https://nwbib.de/spatial#Q6264 http://www.wikidata.org/entity/Q6264 Kreis Heinsberg http://www.wikidata.org/entity/Q20738811 Point(6.17 51.0) +https://nwbib.de/spatial#Q1636345 http://www.wikidata.org/entity/Q1636345 Hullern http://www.wikidata.org/entity/Q253019 Point(7.28889 51.7361) +https://nwbib.de/spatial#Q2559604 http://www.wikidata.org/entity/Q2559604 Wennigloh http://www.wikidata.org/entity/Q253019 Point(8.01944 51.3825) +https://nwbib.de/spatial#Q1522844 http://www.wikidata.org/entity/Q1522844 Klosterhardt http://www.wikidata.org/entity/Q253019 Point(6.87633 51.5198) +https://nwbib.de/spatial#Q2517258 http://www.wikidata.org/entity/Q2517258 Verne http://www.wikidata.org/entity/Q253019 Point(8.56667 51.6833) +https://nwbib.de/spatial#Q997119 http://www.wikidata.org/entity/Q997119 Brüntorf http://www.wikidata.org/entity/Q253019 Point(8.86459 52.0733) +https://nwbib.de/spatial#Q2548986 http://www.wikidata.org/entity/Q2548986 Warburger Börde http://www.wikidata.org/entity/Q1970725 Point(9.21666667 51.51666667) +https://nwbib.de/spatial#Q1795739 http://www.wikidata.org/entity/Q1795739 Esch/Auweiler http://www.wikidata.org/entity/Q15632166 Point(6.85722 51.0122) +https://nwbib.de/spatial#Q183262 http://www.wikidata.org/entity/Q183262 Altenbeken http://www.wikidata.org/entity/Q262166 Point(8.933333333 51.766666666) +https://nwbib.de/spatial#Q831039 http://www.wikidata.org/entity/Q831039 Stadtbezirk 6 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.81417 51.2661) +https://nwbib.de/spatial#Q20826935 http://www.wikidata.org/entity/Q20826935 Lerche http://www.wikidata.org/entity/Q253019 Point(7.70944444 51.62194444) +https://nwbib.de/spatial#Q1664979 http://www.wikidata.org/entity/Q1664979 Vonderort http://www.wikidata.org/entity/Q253019 Point(6.90325 51.5088) +https://nwbib.de/spatial#Q892321 http://www.wikidata.org/entity/Q892321 Bonenburg http://www.wikidata.org/entity/Q253019 Point(9.051388888 51.558888888) +https://nwbib.de/spatial#Q44182566 http://www.wikidata.org/entity/Q44182566 Hardehausen http://www.wikidata.org/entity/Q253019 Point(8.999166666 51.550555555) +https://nwbib.de/spatial#Q1242103 http://www.wikidata.org/entity/Q1242103 Donrath http://www.wikidata.org/entity/Q253019 Point(7.23261 50.857) +https://nwbib.de/spatial#Q1339126 http://www.wikidata.org/entity/Q1339126 Empel http://www.wikidata.org/entity/Q253019 Point(6.41472 51.7972) +https://nwbib.de/spatial#Q1374403 http://www.wikidata.org/entity/Q1374403 Mehrum http://www.wikidata.org/entity/Q253019 Point(6.61889 51.5758) +https://nwbib.de/spatial#Q56006328 http://www.wikidata.org/entity/Q56006328 Esserden http://www.wikidata.org/entity/Q253019 Point(6.378138888 51.769083333) +https://nwbib.de/spatial#Q831067 http://www.wikidata.org/entity/Q831067 Stadtbezirk 10 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.89528 51.1489) +https://nwbib.de/spatial#Q204860 http://www.wikidata.org/entity/Q204860 Wegberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.266666666 51.133333333) +https://nwbib.de/spatial#Q1537140 http://www.wikidata.org/entity/Q1537140 Hunswinkel http://www.wikidata.org/entity/Q253019 Point(7.795555555 51.080555555) +https://nwbib.de/spatial#Q819598 http://www.wikidata.org/entity/Q819598 Bergerhof http://www.wikidata.org/entity/Q253019 Point(7.33852 51.2012) +https://nwbib.de/spatial#Q14903 http://www.wikidata.org/entity/Q14903 Voerde http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q515 Point(6.683333333 51.6) +https://nwbib.de/spatial#Q22691481 http://www.wikidata.org/entity/Q22691481 Büemke http://www.wikidata.org/entity/Q253019 Point(8.216886 51.271536) +https://nwbib.de/spatial#Q832361 http://www.wikidata.org/entity/Q832361 Bettendorf http://www.wikidata.org/entity/Q253019 Point(6.20167 50.8869) +https://nwbib.de/spatial#Q19311452 http://www.wikidata.org/entity/Q19311452 Weißenberg http://www.wikidata.org/entity/Q253019 Point(6.6747 51.2142) +https://nwbib.de/spatial#Q56009018 http://www.wikidata.org/entity/Q56009018 Lürrip http://www.wikidata.org/entity/Q253019 Point(6.473833333 51.201305555) +https://nwbib.de/spatial#Q2009188 http://www.wikidata.org/entity/Q2009188 Oberbergstraße http://www.wikidata.org/entity/Q253019 Point(7.9735 51.5678) +https://nwbib.de/spatial#Q1239299 http://www.wikidata.org/entity/Q1239299 Venrath http://www.wikidata.org/entity/Q253019 Point(6.37333 51.0908) +https://nwbib.de/spatial#Q881699 http://www.wikidata.org/entity/Q881699 Vilich http://www.wikidata.org/entity/Q1021233, http://www.wikidata.org/entity/Q253019 Point(7.129166666 50.752777777) +https://nwbib.de/spatial#Q19277079 http://www.wikidata.org/entity/Q19277079 Cappel http://www.wikidata.org/entity/Q253019 Point(8.30263 51.6841) +https://nwbib.de/spatial#Q534710 http://www.wikidata.org/entity/Q534710 Grottenherten http://www.wikidata.org/entity/Q253019 Point(6.487219444 50.997019444) +https://nwbib.de/spatial#Q2541039 http://www.wikidata.org/entity/Q2541039 Wald http://www.wikidata.org/entity/Q2983893 Point(7.50889 50.9431) +https://nwbib.de/spatial#Q813816 http://www.wikidata.org/entity/Q813816 Bedburdyck http://www.wikidata.org/entity/Q253019 Point(6.564330555 51.131969444) +https://nwbib.de/spatial#Q241978 http://www.wikidata.org/entity/Q241978 Borgentreich http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(9.241130555 51.569169444) +https://nwbib.de/spatial#Q45748448 http://www.wikidata.org/entity/Q45748448 Aldekerk http://www.wikidata.org/entity/Q253019 Point(6.417388888 51.439) +https://nwbib.de/spatial#Q1880210 http://www.wikidata.org/entity/Q1880210 Lückert http://www.wikidata.org/entity/Q253019 Point(7.39722 50.7247) +https://nwbib.de/spatial#Q1778701 http://www.wikidata.org/entity/Q1778701 Kohlscheid http://www.wikidata.org/entity/Q253019 Point(6.0875 50.834722222) +https://nwbib.de/spatial#Q822005 http://www.wikidata.org/entity/Q822005 Bermensfeld http://www.wikidata.org/entity/Q253019 Point(6.88911 51.4781) +https://nwbib.de/spatial#Q23787865 http://www.wikidata.org/entity/Q23787865 Recklinghausen-Süd http://www.wikidata.org/entity/Q253019 Point(7.21236 51.57245) +https://nwbib.de/spatial#Q1245570 http://www.wikidata.org/entity/Q1245570 Dornap http://www.wikidata.org/entity/Q253019 Point(7.062222222 51.251666666) +https://nwbib.de/spatial#Q1444112 http://www.wikidata.org/entity/Q1444112 Vennheide http://www.wikidata.org/entity/Q253019 Point(7.62361 51.9211) +https://nwbib.de/spatial#Q468337 http://www.wikidata.org/entity/Q468337 Hirschberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(8.27583 51.4311) +https://nwbib.de/spatial#Q65415375 http://www.wikidata.org/entity/Q65415375 Schuttorf http://www.wikidata.org/entity/Q253019 Point(6.081055555 51.069833333) +https://nwbib.de/spatial#Q1301770 http://www.wikidata.org/entity/Q1301770 Vinxel http://www.wikidata.org/entity/Q253019 Point(7.20371 50.7204) +https://nwbib.de/spatial#Q1230763 http://www.wikidata.org/entity/Q1230763 Dörpe http://www.wikidata.org/entity/Q253019 Point(7.29503 51.1483) +https://nwbib.de/spatial#Q1003545 http://www.wikidata.org/entity/Q1003545 Buldern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(7.36944 51.8647) +https://nwbib.de/spatial#Q1722101 http://www.wikidata.org/entity/Q1722101 Kaldauen http://www.wikidata.org/entity/Q253019 Point(7.25833 50.8031) +https://nwbib.de/spatial#Q183307 http://www.wikidata.org/entity/Q183307 Bad Lippspringe http://www.wikidata.org/entity/Q4946461, http://www.wikidata.org/entity/Q42744322 Point(8.816666666 51.783333333) +https://nwbib.de/spatial#Q811415 http://www.wikidata.org/entity/Q811415 Baukau http://www.wikidata.org/entity/Q253019 Point(7.2 51.55) +https://nwbib.de/spatial#Q1258051 http://www.wikidata.org/entity/Q1258051 Dreis-Tiefenbach http://www.wikidata.org/entity/Q253019 Point(8.054 50.9145) +https://nwbib.de/spatial#Q1374344 http://www.wikidata.org/entity/Q1374344 Euregio Rhein-Maas-Nord http://www.wikidata.org/entity/Q153026 +https://nwbib.de/spatial#Q882652 http://www.wikidata.org/entity/Q882652 Wiedenbrück http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(8.30528 51.8333) +https://nwbib.de/spatial#Q1508810 http://www.wikidata.org/entity/Q1508810 Henstorf http://www.wikidata.org/entity/Q253019 Point(8.98284 52.0766) +https://nwbib.de/spatial#Q889020 http://www.wikidata.org/entity/Q889020 Bocholt-West http://www.wikidata.org/entity/Q253019 Point(6.5875 51.8333) +https://nwbib.de/spatial#Q1702213 http://www.wikidata.org/entity/Q1702213 Siddessen http://www.wikidata.org/entity/Q253019 Point(9.14722 51.6625) +https://nwbib.de/spatial#Q60330651 http://www.wikidata.org/entity/Q60330651 Bonnenbroich‑Geneicken http://www.wikidata.org/entity/Q253019 Point(6.464333333 51.1765) +https://nwbib.de/spatial#Q2152122 http://www.wikidata.org/entity/Q2152122 Rieferath http://www.wikidata.org/entity/Q253019 Point(7.49639 50.8053) +https://nwbib.de/spatial#Q15122771 http://www.wikidata.org/entity/Q15122771 Neukirchen (Rheinbach) http://www.wikidata.org/entity/Q2983893 Point(6.92834 50.5888) +https://nwbib.de/spatial#Q1452958 http://www.wikidata.org/entity/Q1452958 Grafschaft Sternberg http://www.wikidata.org/entity/Q353344 Point(9.04915 52.0534) +https://nwbib.de/spatial#N33 http://www.wikidata.org/entity/Q1381014 Evangelische Kirche von Westfalen http://www.wikidata.org/entity/Q565744, http://www.wikidata.org/entity/Q1301420 +https://nwbib.de/spatial#Q1284452 http://www.wikidata.org/entity/Q1284452 Immerath http://www.wikidata.org/entity/Q532, http://www.wikidata.org/entity/Q253019 Point(6.437778 51.051111) +https://nwbib.de/spatial#Q736209 http://www.wikidata.org/entity/Q736209 Asperden http://www.wikidata.org/entity/Q253019 Point(6.116111111 51.6925) +https://nwbib.de/spatial#Q2789 http://www.wikidata.org/entity/Q2789 Telgte http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.785555555 51.981944444) +https://nwbib.de/spatial#Q882647 http://www.wikidata.org/entity/Q882647 Volmarstein http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.383888888 51.371388888) +https://nwbib.de/spatial#Q253498 http://www.wikidata.org/entity/Q253498 Wachtberg http://www.wikidata.org/entity/Q262166 Point(7.132222222 50.624166666) +https://nwbib.de/spatial#Q1123895 http://www.wikidata.org/entity/Q1123895 Ostmünsterland http://www.wikidata.org/entity/Q1970725 Point(8.06208 51.9616) +https://nwbib.de/spatial#Q251069 http://www.wikidata.org/entity/Q251069 Landkreis Hagen http://www.wikidata.org/entity/Q106658 Point(7.475 51.359444444) +https://nwbib.de/spatial#Q260884 http://www.wikidata.org/entity/Q260884 Kreis Bielefeld http://www.wikidata.org/entity/Q106658 Point(8.51667 52.0167) +https://nwbib.de/spatial#Q865894 http://www.wikidata.org/entity/Q865894 Birten http://www.wikidata.org/entity/Q253019 Point(6.47417 51.6364) +https://nwbib.de/spatial#Q1743154 http://www.wikidata.org/entity/Q1743154 Kirchenkreis Lübbecke http://www.wikidata.org/entity/Q897303 Point(8.61946 52.3013) +https://nwbib.de/spatial#Q2565736 http://www.wikidata.org/entity/Q2565736 Westönnen http://www.wikidata.org/entity/Q253019 Point(7.96222 51.5511) +https://nwbib.de/spatial#Q2132359 http://www.wikidata.org/entity/Q2132359 Rath-Anhoven http://www.wikidata.org/entity/Q253019 Point(6.33194 51.1117) +https://nwbib.de/spatial#Q1368607 http://www.wikidata.org/entity/Q1368607 Altenessen http://www.wikidata.org/entity/Q253019 Point(7.009167 51.496389) +https://nwbib.de/spatial#Q2560196 http://www.wikidata.org/entity/Q2560196 Werfen http://www.wikidata.org/entity/Q253019 Point(7.53056 50.7722) +https://nwbib.de/spatial#N20 http://www.wikidata.org/entity/Q151993 Ruhrgebiet http://www.wikidata.org/entity/Q245260 Point(7.5 51.5) +https://nwbib.de/spatial#Q1543933 http://www.wikidata.org/entity/Q1543933 Gravenhorst http://www.wikidata.org/entity/Q253019 Point(7.61389 52.2886) +https://nwbib.de/spatial#Q5677 http://www.wikidata.org/entity/Q5677 Blumenberg http://www.wikidata.org/entity/Q15632166 Point(6.88444 51.04) +https://nwbib.de/spatial#Q19371154 http://www.wikidata.org/entity/Q19371154 Kempen http://www.wikidata.org/entity/Q253019 Point(6.10151 51.09334) +https://nwbib.de/spatial#Q257215 http://www.wikidata.org/entity/Q257215 Altendorf http://www.wikidata.org/entity/Q253019 Point(6.976944 51.460833) +https://nwbib.de/spatial#Q815897 http://www.wikidata.org/entity/Q815897 Bellenberg http://www.wikidata.org/entity/Q253019 Point(9.00313 51.8722) +https://nwbib.de/spatial#Q50374993 http://www.wikidata.org/entity/Q50374993 Arrode http://www.wikidata.org/entity/Q253019 Point(8.428333333 52.074722222) +https://nwbib.de/spatial#Q10928 http://www.wikidata.org/entity/Q10928 Bestwig http://www.wikidata.org/entity/Q262166 Point(8.4 51.366666666) +https://nwbib.de/spatial#Q2648428 http://www.wikidata.org/entity/Q2648428 Allendorf http://www.wikidata.org/entity/Q253019 Point(7.95464 51.285) +https://nwbib.de/spatial#Q1796692 http://www.wikidata.org/entity/Q1796692 Körrenzig http://www.wikidata.org/entity/Q253019 Point(6.280555555 51.0) +https://nwbib.de/spatial#N70 http://www.wikidata.org/entity/Q835382 Freistaat Lippe http://www.wikidata.org/entity/Q7275, http://www.wikidata.org/entity/Q3024240 Point(8.877961111 51.936180555) +https://nwbib.de/spatial#Q893892 http://www.wikidata.org/entity/Q893892 Borlinghausen http://www.wikidata.org/entity/Q253019 Point(9.03722 51.5792) +https://nwbib.de/spatial#Q322420 http://www.wikidata.org/entity/Q322420 Ollheim http://www.wikidata.org/entity/Q253019 Point(6.893888888 50.686944444) +https://nwbib.de/spatial#Q1325224 http://www.wikidata.org/entity/Q1325224 Elberfeld-West http://www.wikidata.org/entity/Q13415859 Point(7.11083 51.2522) +https://nwbib.de/spatial#Q1738258 http://www.wikidata.org/entity/Q1738258 Kellershohn http://www.wikidata.org/entity/Q253019 Point(7.20796 50.8785) +https://nwbib.de/spatial#Q811521 http://www.wikidata.org/entity/Q811521 Baumberg http://www.wikidata.org/entity/Q2983893 Point(6.89111 51.1175) +https://nwbib.de/spatial#Q1651894 http://www.wikidata.org/entity/Q1651894 Hösel http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q56061 Point(6.90946 51.3308) +https://nwbib.de/spatial#Q519650 http://www.wikidata.org/entity/Q519650 Buer http://www.wikidata.org/entity/Q253019 Point(7.0561 51.5778) +https://nwbib.de/spatial#Q1713636 http://www.wikidata.org/entity/Q1713636 Junkermühle http://www.wikidata.org/entity/Q253019 Point(7.31724 51.0666) +https://nwbib.de/spatial#Q651451 http://www.wikidata.org/entity/Q651451 Dalheim-Rödgen http://www.wikidata.org/entity/Q253019 Point(6.181944444 51.15) +https://nwbib.de/spatial#Q29514553 http://www.wikidata.org/entity/Q29514553 Unterbörsch http://www.wikidata.org/entity/Q253019 Point(7.2404 50.9993) +https://nwbib.de/spatial#Q1546536 http://www.wikidata.org/entity/Q1546536 Griethausen http://www.wikidata.org/entity/Q253019 Point(6.165277777 51.821944444) +https://nwbib.de/spatial#Q896695 http://www.wikidata.org/entity/Q896695 Pützchen-Bechlinghoven http://www.wikidata.org/entity/Q253019 Point(7.151541666 50.749844444) +https://nwbib.de/spatial#Q1519976 http://www.wikidata.org/entity/Q1519976 Getmold http://www.wikidata.org/entity/Q253019 Point(8.49389 52.3353) +https://nwbib.de/spatial#Q432964 http://www.wikidata.org/entity/Q432964 Alt-Oberhausen http://www.wikidata.org/entity/Q253019 Point(6.8523 51.471) +https://nwbib.de/spatial#Q18289142 http://www.wikidata.org/entity/Q18289142 Röhlinghausen http://www.wikidata.org/entity/Q253019 Point(7.155395 51.51582) +https://nwbib.de/spatial#Q2529646 http://www.wikidata.org/entity/Q2529646 Vlatten http://www.wikidata.org/entity/Q253019 Point(6.54806 50.6497) +https://nwbib.de/spatial#Q19687961 http://www.wikidata.org/entity/Q19687961 Werries http://www.wikidata.org/entity/Q253019 Point(7.89166667 51.68638889) +https://nwbib.de/spatial#Q50375345 http://www.wikidata.org/entity/Q50375345 Ahle (Heek) http://www.wikidata.org/entity/Q253019 Point(7.048888888 52.103333333) +https://nwbib.de/spatial#Q1644222 http://www.wikidata.org/entity/Q1644222 Hönscheid http://www.wikidata.org/entity/Q253019 Point(7.43806 50.8081) +https://nwbib.de/spatial#Q899490 http://www.wikidata.org/entity/Q899490 Brassert http://www.wikidata.org/entity/Q253019 Point(7.07361 51.6583) +https://nwbib.de/spatial#Q45033207 http://www.wikidata.org/entity/Q45033207 Corvey http://www.wikidata.org/entity/Q253019 Point(9.410277777 51.778055555) +https://nwbib.de/spatial#Q551600 http://www.wikidata.org/entity/Q551600 Stadtbezirk 1 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.776666666 51.225) +https://nwbib.de/spatial#Q2386902 http://www.wikidata.org/entity/Q2386902 Tackenberg http://www.wikidata.org/entity/Q253019 Point(6.86852 51.5244) +https://nwbib.de/spatial#Q153757 http://www.wikidata.org/entity/Q153757 Graurheindorf http://www.wikidata.org/entity/Q253019 Point(7.07777 50.7626) +https://nwbib.de/spatial#Q1300844 http://www.wikidata.org/entity/Q1300844 Ehringhausen http://www.wikidata.org/entity/Q253019 Point(7.55134 51.1895) +https://nwbib.de/spatial#Q56006170 http://www.wikidata.org/entity/Q56006170 Mülfort http://www.wikidata.org/entity/Q2983893 Point(6.465166666 51.154972222) +https://nwbib.de/spatial#Q864049 http://www.wikidata.org/entity/Q864049 Binsfeld (Nörvenich) http://www.wikidata.org/entity/Q253019 Point(6.54167 50.7947) +https://nwbib.de/spatial#Q17127787 http://www.wikidata.org/entity/Q17127787 Utfort http://www.wikidata.org/entity/Q253019 Point(6.631495 51.474586) +https://nwbib.de/spatial#Q1917394 http://www.wikidata.org/entity/Q1917394 Mehr http://www.wikidata.org/entity/Q253019 Point(6.47306 51.7303) +https://nwbib.de/spatial#Q1257393 http://www.wikidata.org/entity/Q1257393 Dreiborn http://www.wikidata.org/entity/Q253019 Point(6.40972 50.5456) +https://nwbib.de/spatial#Q33133655 http://www.wikidata.org/entity/Q33133655 Neuengeseke http://www.wikidata.org/entity/Q253019 Point(8.203 51.5535) +https://nwbib.de/spatial#Q547577 http://www.wikidata.org/entity/Q547577 Höhenhaus http://www.wikidata.org/entity/Q15632166 Point(7.03528 50.9836) +https://nwbib.de/spatial#Q445486 http://www.wikidata.org/entity/Q445486 Altstadt http://www.wikidata.org/entity/Q676050, http://www.wikidata.org/entity/Q1852178 Point(6.77361 51.2289) +https://nwbib.de/spatial#Q5535 http://www.wikidata.org/entity/Q5535 Neuenrade http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.78 51.283888888) +https://nwbib.de/spatial#Q2568563 http://www.wikidata.org/entity/Q2568563 Wiehagen http://www.wikidata.org/entity/Q253019 Point(7.31472 51.1481) +https://nwbib.de/spatial#Q1660062 http://www.wikidata.org/entity/Q1660062 Immigrath http://www.wikidata.org/entity/Q253019 Point(6.95472 51.1118) +https://nwbib.de/spatial#Q881776 http://www.wikidata.org/entity/Q881776 Niedersfeld http://www.wikidata.org/entity/Q253019 Point(8.529063888 51.260997222) +https://nwbib.de/spatial#Q1258345 http://www.wikidata.org/entity/Q1258345 Drenke http://www.wikidata.org/entity/Q253019 Point(9.31078 51.6825) +https://nwbib.de/spatial#Q834265 http://www.wikidata.org/entity/Q834265 Eickel http://www.wikidata.org/entity/Q253019 Point(7.177222222 51.513611111) +https://nwbib.de/spatial#Q885372 http://www.wikidata.org/entity/Q885372 Rodenkirchen http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q15632166 Point(6.991111111 50.891388888) +https://nwbib.de/spatial#Q1296078 http://www.wikidata.org/entity/Q1296078 Effeln http://www.wikidata.org/entity/Q253019 Point(8.36278 51.5208) +https://nwbib.de/spatial#Q1617327 http://www.wikidata.org/entity/Q1617327 Hiddinghausen http://www.wikidata.org/entity/Q253019 Point(7.287291666 51.356227777) +https://nwbib.de/spatial#Q1592134 http://www.wikidata.org/entity/Q1592134 Haßlinghausen http://www.wikidata.org/entity/Q253019 Point(7.280663888 51.332408333) +https://nwbib.de/spatial#Q2010339 http://www.wikidata.org/entity/Q2010339 Oberlübbe http://www.wikidata.org/entity/Q253019 Point(8.7425 52.2864) +https://nwbib.de/spatial#Q55586409 http://www.wikidata.org/entity/Q55586409 Oberbauer http://www.wikidata.org/entity/Q253019 Point(7.417777777 51.289166666) +https://nwbib.de/spatial#Q1652266 http://www.wikidata.org/entity/Q1652266 Hülsenbusch http://www.wikidata.org/entity/Q253019 Point(7.49611 51.0356) +https://nwbib.de/spatial#Q1602809 http://www.wikidata.org/entity/Q1602809 Hellersen http://www.wikidata.org/entity/Q253019 Point(7.66361 51.2056) +https://nwbib.de/spatial#Q2014913 http://www.wikidata.org/entity/Q2014913 Oeckinghausen http://www.wikidata.org/entity/Q253019 Point(7.52328 51.2052) +https://nwbib.de/spatial#Q2539433 http://www.wikidata.org/entity/Q2539433 Wahlbach http://www.wikidata.org/entity/Q253019 Point(8.05556 50.7581) +https://nwbib.de/spatial#Q44023869 http://www.wikidata.org/entity/Q44023869 Schwarzbach http://www.wikidata.org/entity/Q56061, http://www.wikidata.org/entity/Q2983893 Point(6.876138888 51.285083333) +https://nwbib.de/spatial#Q323577 http://www.wikidata.org/entity/Q323577 Stadtbezirk 9 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.869166666 51.164166666) +https://nwbib.de/spatial#Q897140 http://www.wikidata.org/entity/Q897140 Kreis Tecklenburg http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(7.8123633 52.2203039) +https://nwbib.de/spatial#Q2497306 http://www.wikidata.org/entity/Q2497306 Unterbruch http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q253019 Point(6.12528 51.0731) +https://nwbib.de/spatial#Q48196317 http://www.wikidata.org/entity/Q48196317 Milspe http://www.wikidata.org/entity/Q253019 Point(7.346388888 51.301666666) +https://nwbib.de/spatial#Q1689675 http://www.wikidata.org/entity/Q1689675 Osberghausen http://www.wikidata.org/entity/Q253019 Point(7.49222 50.9939) +https://nwbib.de/spatial#Q1652276 http://www.wikidata.org/entity/Q1652276 Hülser Berg http://www.wikidata.org/entity/Q253019 Point(6.53639 51.3933) +https://nwbib.de/spatial#Q1746145 http://www.wikidata.org/entity/Q1746145 Kleekamp http://www.wikidata.org/entity/Q253019 Point(8.2475 52.0931) +https://nwbib.de/spatial#Q897382 http://www.wikidata.org/entity/Q897382 Ehrenfeld http://www.wikidata.org/entity/Q15632166 Point(6.91833 50.9464) +https://nwbib.de/spatial#Q1157817 http://www.wikidata.org/entity/Q1157817 Dalborn http://www.wikidata.org/entity/Q253019 Point(8.98278 51.9781) +https://nwbib.de/spatial#Q383229 http://www.wikidata.org/entity/Q383229 Afholderbach http://www.wikidata.org/entity/Q253019 Point(8.13889 50.9444) +https://nwbib.de/spatial#Q1799335 http://www.wikidata.org/entity/Q1799335 Laar http://www.wikidata.org/entity/Q253019 Point(8.58583 52.0914) +https://nwbib.de/spatial#Q4606 http://www.wikidata.org/entity/Q4606 Niederau http://www.wikidata.org/entity/Q253019 Point(6.495 50.7617) +https://nwbib.de/spatial#Q182426 http://www.wikidata.org/entity/Q182426 Saerbeck http://www.wikidata.org/entity/Q262166 Point(7.633333333 52.175) +https://nwbib.de/spatial#Q2326741 http://www.wikidata.org/entity/Q2326741 Stadtbezirk Brackel http://www.wikidata.org/entity/Q2740635 Point(7.566666666 51.516666666) +https://nwbib.de/spatial#Q1521817 http://www.wikidata.org/entity/Q1521817 Huckingen http://www.wikidata.org/entity/Q2983893 Point(6.75111 51.3647) +https://nwbib.de/spatial#Q1739779 http://www.wikidata.org/entity/Q1739779 Kessel http://www.wikidata.org/entity/Q253019 Point(6.07111 51.7075) +https://nwbib.de/spatial#Q1978684 http://www.wikidata.org/entity/Q1978684 St. Martinus http://www.wikidata.org/entity/Q16970 Point(6.7069924 51.0514844) +https://nwbib.de/spatial#Q1695713 http://www.wikidata.org/entity/Q1695713 Kesternich http://www.wikidata.org/entity/Q253019 Point(6.329722222 50.606666666) +https://nwbib.de/spatial#Q1917708 http://www.wikidata.org/entity/Q1917708 Meierberg http://www.wikidata.org/entity/Q253019 Point(9.11556 52.0933) +https://nwbib.de/spatial#Q813735 http://www.wikidata.org/entity/Q813735 Beckrath http://www.wikidata.org/entity/Q253019 Point(6.38389 51.1086) +https://nwbib.de/spatial#Q44289725 http://www.wikidata.org/entity/Q44289725 Vehlingen http://www.wikidata.org/entity/Q253019 Point(6.42 51.824722222) +https://nwbib.de/spatial#Q879256 http://www.wikidata.org/entity/Q879256 Epe http://www.wikidata.org/entity/Q253019 Point(7.016666666 52.2) +https://nwbib.de/spatial#Q1250589 http://www.wikidata.org/entity/Q1250589 Brackel http://www.wikidata.org/entity/Q253019 Point(7.55 51.5167) +https://nwbib.de/spatial#Q1675217 http://www.wikidata.org/entity/Q1675217 Niederbellinghausen http://www.wikidata.org/entity/Q253019 Point(7.51806 50.9356) +https://nwbib.de/spatial#Q1603204 http://www.wikidata.org/entity/Q1603204 Helmern http://www.wikidata.org/entity/Q253019 Point(9.07625 51.6144) +https://nwbib.de/spatial#Q1320462 http://www.wikidata.org/entity/Q1320462 Eissen http://www.wikidata.org/entity/Q253019 Point(9.166666666 51.566666666) +https://nwbib.de/spatial#Q16086 http://www.wikidata.org/entity/Q16086 Rheinberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.600555555 51.546666666) +https://nwbib.de/spatial#Q578558 http://www.wikidata.org/entity/Q578558 Soers http://www.wikidata.org/entity/Q253019 Point(6.096 50.797) +https://nwbib.de/spatial#Q178317 http://www.wikidata.org/entity/Q178317 Oberkassel http://www.wikidata.org/entity/Q253019 Point(7.166666666 50.713888888) +https://nwbib.de/spatial#Q212520 http://www.wikidata.org/entity/Q212520 Niederrheinisches Tiefland http://www.wikidata.org/entity/Q160091 Point(6.3602 51.5361) +https://nwbib.de/spatial#Q1673662 http://www.wikidata.org/entity/Q1673662 Kreis Geldern http://www.wikidata.org/entity/Q5283531, http://www.wikidata.org/entity/Q106658 Point(6.339722222 51.520277777) +https://nwbib.de/spatial#Q1621880 http://www.wikidata.org/entity/Q1621880 Hochheide http://www.wikidata.org/entity/Q253019 Point(6.68611 51.4494) +https://nwbib.de/spatial#Q1280016 http://www.wikidata.org/entity/Q1280016 Gnadental http://www.wikidata.org/entity/Q253019 Point(6.71861 51.1814) +https://nwbib.de/spatial#Q45315764 http://www.wikidata.org/entity/Q45315764 Ickten http://www.wikidata.org/entity/Q253019 Point(6.9068 51.3836) +https://nwbib.de/spatial#Q2582726 http://www.wikidata.org/entity/Q2582726 Wimbern http://www.wikidata.org/entity/Q253019 Point(7.86686 51.4702) +https://nwbib.de/spatial#Q1261771 http://www.wikidata.org/entity/Q1261771 Drüpplingsen http://www.wikidata.org/entity/Q253019 Point(7.68095 51.4541) +https://nwbib.de/spatial#Q1975079 http://www.wikidata.org/entity/Q1975079 Paustenbach http://www.wikidata.org/entity/Q253019 Point(6.279166666 50.621666666) +https://nwbib.de/spatial#Q1377265 http://www.wikidata.org/entity/Q1377265 Nordhorn http://www.wikidata.org/entity/Q253019 Point(8.41667 51.9194) +https://nwbib.de/spatial#Q2587716 http://www.wikidata.org/entity/Q2587716 Woffelsbach http://www.wikidata.org/entity/Q253019 Point(6.382852777 50.625675) +https://nwbib.de/spatial#Q19968113 http://www.wikidata.org/entity/Q19968113 Westerbönen http://www.wikidata.org/entity/Q253019 Point(7.78333333 51.60416667) +https://nwbib.de/spatial#Q1534383 http://www.wikidata.org/entity/Q1534383 Gohr http://www.wikidata.org/entity/Q253019 Point(6.7178 51.1089) +https://nwbib.de/spatial#Q1607101 http://www.wikidata.org/entity/Q1607101 Isenstedt http://www.wikidata.org/entity/Q253019 Point(8.66028 52.3444) +https://nwbib.de/spatial#Q4105 http://www.wikidata.org/entity/Q4105 Meerbusch http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.666666666 51.266666666) +https://nwbib.de/spatial#Q1940783 http://www.wikidata.org/entity/Q1940783 Alendorf http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.6375 50.368888888) +https://nwbib.de/spatial#Q1184710 http://www.wikidata.org/entity/Q1184710 Delrath http://www.wikidata.org/entity/Q253019 Point(6.78371 51.1282) +https://nwbib.de/spatial#Q1701402 http://www.wikidata.org/entity/Q1701402 Limperich http://www.wikidata.org/entity/Q253019 Point(7.13408 50.7269) +https://nwbib.de/spatial#Q823188 http://www.wikidata.org/entity/Q823188 Bernberg http://www.wikidata.org/entity/Q253019 Point(7.599722222 51.024444444) +https://nwbib.de/spatial#Q1880342 http://www.wikidata.org/entity/Q1880342 Lünen-Süd http://www.wikidata.org/entity/Q253019 Point(7.52944 51.5906) +https://nwbib.de/spatial#Q56008187 http://www.wikidata.org/entity/Q56008187 Baal http://www.wikidata.org/entity/Q253019 Point(6.114444444 51.612111111) +https://nwbib.de/spatial#Q56041996 http://www.wikidata.org/entity/Q56041996 Nordsauerland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q56042004 http://www.wikidata.org/entity/Q56042004 Ostsauerland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q1269652 http://www.wikidata.org/entity/Q1269652 Dämmerwald http://www.wikidata.org/entity/Q253019 Point(6.77811 51.7389) +https://nwbib.de/spatial#Q54189800 http://www.wikidata.org/entity/Q54189800 Sasserath http://www.wikidata.org/entity/Q253019 Point(6.461169444 51.121680555) +https://nwbib.de/spatial#Q2871 http://www.wikidata.org/entity/Q2871 Hagen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q707813 Point(7.475 51.359444444) +https://nwbib.de/spatial#Q117231 http://www.wikidata.org/entity/Q117231 Nöthen http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.721958333 50.548475) +https://nwbib.de/spatial#Q1250657 http://www.wikidata.org/entity/Q1250657 Lanstrop http://www.wikidata.org/entity/Q253019 Point(7.56752 51.57504) +https://nwbib.de/spatial#Q1020947 http://www.wikidata.org/entity/Q1020947 Büren http://www.wikidata.org/entity/Q253019 Point(7.03679 51.9771) +https://nwbib.de/spatial#Q2297827 http://www.wikidata.org/entity/Q2297827 Sohlbach http://www.wikidata.org/entity/Q253019 Point(8.16111 50.9497) +https://nwbib.de/spatial#Q2443 http://www.wikidata.org/entity/Q2443 Vorhelm http://www.wikidata.org/entity/Q253019 Point(7.941666666 51.805277777) +https://nwbib.de/spatial#Q1805068 http://www.wikidata.org/entity/Q1805068 Langenholthausen http://www.wikidata.org/entity/Q253019 Point(7.87861 51.3119) +https://nwbib.de/spatial#Q1623594 http://www.wikidata.org/entity/Q1623594 Hoheleye http://www.wikidata.org/entity/Q253019 Point(8.44754 51.1437) +https://nwbib.de/spatial#Q1880472 http://www.wikidata.org/entity/Q1880472 Lüttringen http://www.wikidata.org/entity/Q253019 Point(7.94611 51.4833) +https://nwbib.de/spatial#Q1643934 http://www.wikidata.org/entity/Q1643934 Höingen http://www.wikidata.org/entity/Q253019 Point(7.97431 51.4852) +https://nwbib.de/spatial#Q1168579 http://www.wikidata.org/entity/Q1168579 Kleineichen http://www.wikidata.org/entity/Q253019 Point(7.1525 50.9081) +https://nwbib.de/spatial#Q1920323 http://www.wikidata.org/entity/Q1920323 Menden-Holthausen http://www.wikidata.org/entity/Q2983893 Point(6.921730555 51.40135) +https://nwbib.de/spatial#Q1464458 http://www.wikidata.org/entity/Q1464458 Frielinghausen http://www.wikidata.org/entity/Q253019 Point(8.20694 51.2386) +https://nwbib.de/spatial#Q2014967 http://www.wikidata.org/entity/Q2014967 Oedt http://www.wikidata.org/entity/Q253019 Point(6.37972 51.3258) +https://nwbib.de/spatial#Q164458 http://www.wikidata.org/entity/Q164458 Mechernich http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.65 50.6) +https://nwbib.de/spatial#Q1170724 http://www.wikidata.org/entity/Q1170724 Honerath http://www.wikidata.org/entity/Q253019 Point(6.84426 50.4852) +https://nwbib.de/spatial#Q1426958 http://www.wikidata.org/entity/Q1426958 Isenbügel http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(6.971511111 51.342369444) +https://nwbib.de/spatial#Q19968080 http://www.wikidata.org/entity/Q19968080 Vierlinden http://www.wikidata.org/entity/Q253019 Point(6.72426111 51.53694444) +https://nwbib.de/spatial#Q182018 http://www.wikidata.org/entity/Q182018 Lotte http://www.wikidata.org/entity/Q262166 Point(7.916666666 52.276388888) +https://nwbib.de/spatial#Q161673 http://www.wikidata.org/entity/Q161673 Heiligenhaus http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.971 51.3265) +https://nwbib.de/spatial#Q647477 http://www.wikidata.org/entity/Q647477 Iggenhausen http://www.wikidata.org/entity/Q253019 Point(8.893055555 51.660833333) +https://nwbib.de/spatial#Q881030 http://www.wikidata.org/entity/Q881030 Grafschaft Tecklenburg http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q26830017 Point(7.81389 52.21944) +https://nwbib.de/spatial#Q1764346 http://www.wikidata.org/entity/Q1764346 Niederntudorf http://www.wikidata.org/entity/Q253019 Point(8.6833 51.6333) +https://nwbib.de/spatial#Q1536368 http://www.wikidata.org/entity/Q1536368 Imgenbroich http://www.wikidata.org/entity/Q253019 Point(6.263494444 50.573480555) +https://nwbib.de/spatial#Q153397 http://www.wikidata.org/entity/Q153397 Dom-Esch http://www.wikidata.org/entity/Q253019 Point(6.86111 50.6761) +https://nwbib.de/spatial#Q1382462 http://www.wikidata.org/entity/Q1382462 Evinghoven http://www.wikidata.org/entity/Q253019 Point(6.692416666 51.0725) +https://nwbib.de/spatial#Q18923127 http://www.wikidata.org/entity/Q18923127 Klausen http://www.wikidata.org/entity/Q253019 Point(7.20356111 51.19682222) +https://nwbib.de/spatial#Q153747 http://www.wikidata.org/entity/Q153747 Dottendorf http://www.wikidata.org/entity/Q253019 Point(7.11227 50.7042) +https://nwbib.de/spatial#Q1304096 http://www.wikidata.org/entity/Q1304096 Eilhausen http://www.wikidata.org/entity/Q253019 Point(8.66389 52.3103) +https://nwbib.de/spatial#Q56008581 http://www.wikidata.org/entity/Q56008581 Bell http://www.wikidata.org/entity/Q253019 Point(6.453638888 51.147722222) +https://nwbib.de/spatial#Q8249663 http://www.wikidata.org/entity/Q8249663 Oberbilk http://www.wikidata.org/entity/Q2983893 Point(6.80361 51.2161) +https://nwbib.de/spatial#Q2526225 http://www.wikidata.org/entity/Q2526225 Villip http://www.wikidata.org/entity/Q253019 Point(7.09408 50.6368) +https://nwbib.de/spatial#Q1795766 http://www.wikidata.org/entity/Q1795766 Müngersdorf http://www.wikidata.org/entity/Q15632166 Point(6.88028 50.94) +https://nwbib.de/spatial#Q1793898 http://www.wikidata.org/entity/Q1793898 Nalhof http://www.wikidata.org/entity/Q253019 Point(9.10028 52.0906) +https://nwbib.de/spatial#Q1261123 http://www.wikidata.org/entity/Q1261123 Druffel http://www.wikidata.org/entity/Q253019 Point(8.40167 51.8278) +https://nwbib.de/spatial#Q2106829 http://www.wikidata.org/entity/Q2106829 Stift Quernheim http://www.wikidata.org/entity/Q253019 Point(8.627777777 52.241666666) +https://nwbib.de/spatial#Q50107681 http://www.wikidata.org/entity/Q50107681 Hasenbach http://www.wikidata.org/entity/Q253019 Point(7.385027777 50.852416666) +https://nwbib.de/spatial#Q56117566 http://www.wikidata.org/entity/Q56117566 Sankt Anton http://www.wikidata.org/entity/Q253019 Point(6.241305555 51.228388888) +https://nwbib.de/spatial#Q2268269 http://www.wikidata.org/entity/Q2268269 Seligenthal http://www.wikidata.org/entity/Q253019 Point(7.27667 50.7958) +https://nwbib.de/spatial#N13 http://www.wikidata.org/entity/Q2036208 Ostwestfalen http://www.wikidata.org/entity/Q82794 Point(8.51667 52.0167) +https://nwbib.de/spatial#Q702826 http://www.wikidata.org/entity/Q702826 Wiehengebirge http://www.wikidata.org/entity/Q46831 Point(8.5 52.25) +https://nwbib.de/spatial#Q29960549 http://www.wikidata.org/entity/Q29960549 Dörnchen http://www.wikidata.org/entity/Q253019 Point(7.267105555 51.074102777) +https://nwbib.de/spatial#Q2351473 http://www.wikidata.org/entity/Q2351473 Stommelerbusch http://www.wikidata.org/entity/Q253019 Point(6.77135 51.0456) +https://nwbib.de/spatial#Q829253 http://www.wikidata.org/entity/Q829253 Berwicke http://www.wikidata.org/entity/Q253019 Point(8.029 51.6218) +https://nwbib.de/spatial#Q896146 http://www.wikidata.org/entity/Q896146 Dülken http://www.wikidata.org/entity/Q2983893 Point(6.335277777 51.252222222) +https://nwbib.de/spatial#Q105455560 http://www.wikidata.org/entity/Q105455560 Uedding http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1235576 http://www.wikidata.org/entity/Q1235576 Eudenbach http://www.wikidata.org/entity/Q253019 Point(7.33694 50.6878) +https://nwbib.de/spatial#Q1627290 http://www.wikidata.org/entity/Q1627290 Honrath http://www.wikidata.org/entity/Q253019 Point(7.24694 50.9075) +https://nwbib.de/spatial#Q1546847 http://www.wikidata.org/entity/Q1546847 Grimlinghausen http://www.wikidata.org/entity/Q253019 Point(8.441 51.395) +https://nwbib.de/spatial#Q258391 http://www.wikidata.org/entity/Q258391 Werden http://www.wikidata.org/entity/Q2983893 Point(6.996389 51.386389) +https://nwbib.de/spatial#Q1621127 http://www.wikidata.org/entity/Q1621127 Hitdorf http://www.wikidata.org/entity/Q2983893 Point(6.91861 51.06) +https://nwbib.de/spatial#Q892667 http://www.wikidata.org/entity/Q892667 Bonn-Castell http://www.wikidata.org/entity/Q253019 Point(7.09489 50.7459) +https://nwbib.de/spatial#Q15450305 http://www.wikidata.org/entity/Q15450305 Kirchenkreis Herne http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q2067436 http://www.wikidata.org/entity/Q2067436 Schiefbahn http://www.wikidata.org/entity/Q253019 Point(6.534722222 51.240833333) +https://nwbib.de/spatial#Q56557716 http://www.wikidata.org/entity/Q56557716 Gill http://www.wikidata.org/entity/Q253019 Point(6.690305555 51.026416666) +https://nwbib.de/spatial#Q593784 http://www.wikidata.org/entity/Q593784 Dahlbruch http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.0593 50.975044444) +https://nwbib.de/spatial#Q1880350 http://www.wikidata.org/entity/Q1880350 Lünern http://www.wikidata.org/entity/Q253019 Point(7.76139 51.5486) +https://nwbib.de/spatial#Q1988478 http://www.wikidata.org/entity/Q1988478 Niederseßmar http://www.wikidata.org/entity/Q253019 Point(7.5725 51.004722222) +https://nwbib.de/spatial#Q1801536 http://www.wikidata.org/entity/Q1801536 Lamersdorf http://www.wikidata.org/entity/Q253019 Point(6.350555555 50.848611111) +https://nwbib.de/spatial#Q1166824 http://www.wikidata.org/entity/Q1166824 Darup http://www.wikidata.org/entity/Q253019 Point(7.29833 51.9292) +https://nwbib.de/spatial#Q1565912 http://www.wikidata.org/entity/Q1565912 Varensell http://www.wikidata.org/entity/Q253019 Point(8.4375 51.8597) +https://nwbib.de/spatial#Q818339 http://www.wikidata.org/entity/Q818339 Bentorf http://www.wikidata.org/entity/Q253019 Point(8.91519 52.1349) +https://nwbib.de/spatial#Q2053536 http://www.wikidata.org/entity/Q2053536 Rindern http://www.wikidata.org/entity/Q253019 Point(6.1225 51.811111111) +https://nwbib.de/spatial#Q1560239 http://www.wikidata.org/entity/Q1560239 Günne http://www.wikidata.org/entity/Q253019 Point(8.04944 51.4969) +https://nwbib.de/spatial#Q1529028 http://www.wikidata.org/entity/Q1529028 Gladbach http://www.wikidata.org/entity/Q253019 Point(6.64 50.7619) +https://nwbib.de/spatial#Q3830 http://www.wikidata.org/entity/Q3830 Neustadt-Süd http://www.wikidata.org/entity/Q15632166, http://www.wikidata.org/entity/Q2983893 Point(6.951666666 50.921944444) +https://nwbib.de/spatial#Q889069 http://www.wikidata.org/entity/Q889069 Stahlhausen http://www.wikidata.org/entity/Q253019 Point(7.19306 51.4797) +https://nwbib.de/spatial#Q14290930 http://www.wikidata.org/entity/Q14290930 Großheide http://www.wikidata.org/entity/Q253019 Point(6.40793 51.209) +https://nwbib.de/spatial#Q1792939 http://www.wikidata.org/entity/Q1792939 Oppendorf http://www.wikidata.org/entity/Q253019 Point(8.48222 52.4533) +https://nwbib.de/spatial#Q15052036 http://www.wikidata.org/entity/Q15052036 Bauchem http://www.wikidata.org/entity/Q253019 Point(6.10555556 50.96805556) +https://nwbib.de/spatial#Q2160922 http://www.wikidata.org/entity/Q2160922 Rodderhof http://www.wikidata.org/entity/Q253019 Point(7.21124 50.8876) +https://nwbib.de/spatial#Q2497218 http://www.wikidata.org/entity/Q2497218 Unterbach http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q123705 Point(6.9 51.2) +https://nwbib.de/spatial#Q1687932 http://www.wikidata.org/entity/Q1687932 Schwarzenmoor http://www.wikidata.org/entity/Q253019 Point(8.733333333 52.138888888) +https://nwbib.de/spatial#Q177500 http://www.wikidata.org/entity/Q177500 Hülscheid http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(7.566666666 51.25) +https://nwbib.de/spatial#Q1916852 http://www.wikidata.org/entity/Q1916852 Meerhof http://www.wikidata.org/entity/Q253019 Point(8.86528 51.5144) +https://nwbib.de/spatial#Q1245781 http://www.wikidata.org/entity/Q1245781 Dornick http://www.wikidata.org/entity/Q253019 Point(6.306666666 51.812222222) +https://nwbib.de/spatial#Q891761 http://www.wikidata.org/entity/Q891761 Bombach http://www.wikidata.org/entity/Q253019 Point(7.26724 50.9156) +https://nwbib.de/spatial#Q698809 http://www.wikidata.org/entity/Q698809 Arpe http://www.wikidata.org/entity/Q253019 Point(8.20111 51.1842) +https://nwbib.de/spatial#Q1583226 http://www.wikidata.org/entity/Q1583226 Kreis Geilenkirchen http://www.wikidata.org/entity/Q5283531 Point(6.11944444 50.96527778) +https://nwbib.de/spatial#Q6245 http://www.wikidata.org/entity/Q6245 Kreis Wesel http://www.wikidata.org/entity/Q20738811 Point(6.67 51.67) +https://nwbib.de/spatial#Q20182568 http://www.wikidata.org/entity/Q20182568 Haltern http://www.wikidata.org/entity/Q253019 Point(7.26702976 52.12112045) +https://nwbib.de/spatial#Q19687941 http://www.wikidata.org/entity/Q19687941 Schmehausen http://www.wikidata.org/entity/Q253019 Point(7.97194444 51.68472222) +https://nwbib.de/spatial#Q870622 http://www.wikidata.org/entity/Q870622 Resse http://www.wikidata.org/entity/Q253019 Point(7.1094 51.5792) +https://nwbib.de/spatial#Q1333768 http://www.wikidata.org/entity/Q1333768 Elsen http://www.wikidata.org/entity/Q253019 Point(6.56639 51.0911) +https://nwbib.de/spatial#Q1604956 http://www.wikidata.org/entity/Q1604956 Lütmarsen http://www.wikidata.org/entity/Q253019 Point(9.34333 51.785) +https://nwbib.de/spatial#Q1652396 http://www.wikidata.org/entity/Q1652396 Hünsborn http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.89139 50.9392) +https://nwbib.de/spatial#Q910400 http://www.wikidata.org/entity/Q910400 Stockheim http://www.wikidata.org/entity/Q253019 Point(6.52806 50.7561) +https://nwbib.de/spatial#Q19965821 http://www.wikidata.org/entity/Q19965821 Südkamen http://www.wikidata.org/entity/Q253019 Point(7.65611111 51.5775) +https://nwbib.de/spatial#Q15057590 http://www.wikidata.org/entity/Q15057590 Löhnen http://www.wikidata.org/entity/Q253019 Point(6.652893 51.590696) +https://nwbib.de/spatial#Q59138453 http://www.wikidata.org/entity/Q59138453 Stadtbezirk Jöllenbeck http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1418945 http://www.wikidata.org/entity/Q1418945 Oberkirchen http://www.wikidata.org/entity/Q253019 Point(8.37278 51.1586) +https://nwbib.de/spatial#Q1017317 http://www.wikidata.org/entity/Q1017317 Buscherhof http://www.wikidata.org/entity/Q253019 Point(6.31694 51.0867) +https://nwbib.de/spatial#Q59139715 http://www.wikidata.org/entity/Q59139715 Stadtbezirk Bottrop-Mitte http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q242757 http://www.wikidata.org/entity/Q242757 Oerlinghausen http://www.wikidata.org/entity/Q42744322 Point(8.666666666 51.966666666) +https://nwbib.de/spatial#Q1521339 http://www.wikidata.org/entity/Q1521339 Kreis Jülich http://www.wikidata.org/entity/Q5283531, http://www.wikidata.org/entity/Q106658 Point(6.358333 50.922222) +https://nwbib.de/spatial#Q2125576 http://www.wikidata.org/entity/Q2125576 Raderhorst http://www.wikidata.org/entity/Q253019 Point(9.08639 52.3756) +https://nwbib.de/spatial#Q257828 http://www.wikidata.org/entity/Q257828 Frintrop http://www.wikidata.org/entity/Q253019 Point(6.906111 51.480556) +https://nwbib.de/spatial#Q11050 http://www.wikidata.org/entity/Q11050 Morsbach http://www.wikidata.org/entity/Q262166 Point(7.716666666 50.866666666) +https://nwbib.de/spatial#Q1400419 http://www.wikidata.org/entity/Q1400419 Kreis Rheinbach http://www.wikidata.org/entity/Q5283531 Point(6.95 50.63333333) +https://nwbib.de/spatial#Q1794679 http://www.wikidata.org/entity/Q1794679 Siele http://www.wikidata.org/entity/Q253019 Point(8.54806 52.1644) +https://nwbib.de/spatial#Q1593980 http://www.wikidata.org/entity/Q1593980 Heidelbeck http://www.wikidata.org/entity/Q253019 Point(9.00227 52.1205) +https://nwbib.de/spatial#Q732391 http://www.wikidata.org/entity/Q732391 Forst http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(6.12222 50.7683) +https://nwbib.de/spatial#Q1000709 http://www.wikidata.org/entity/Q1000709 Budberg http://www.wikidata.org/entity/Q253019 Point(7.87632 51.5646) +https://nwbib.de/spatial#Q324657 http://www.wikidata.org/entity/Q324657 Kattenvenne http://www.wikidata.org/entity/Q253019 Point(7.861111111 52.1125) +https://nwbib.de/spatial#Q1382102 http://www.wikidata.org/entity/Q1382102 Eversael http://www.wikidata.org/entity/Q253019 Point(6.65528 51.5469) +https://nwbib.de/spatial#Q2534498 http://www.wikidata.org/entity/Q2534498 Vorst (Tönisvorst) http://www.wikidata.org/entity/Q2983893 Point(6.42917 51.3042) +https://nwbib.de/spatial#Q1642511 http://www.wikidata.org/entity/Q1642511 Gremberghoven http://www.wikidata.org/entity/Q15632166 Point(7.06129 50.90152) +https://nwbib.de/spatial#Q2534953 http://www.wikidata.org/entity/Q2534953 Voßheide http://www.wikidata.org/entity/Q253019 Point(8.95922 52.0099) +https://nwbib.de/spatial#Q57952577 http://www.wikidata.org/entity/Q57952577 Mülheim http://www.wikidata.org/entity/Q2983893 Point(6.740111111 50.713194444) +https://nwbib.de/spatial#Q44693867 http://www.wikidata.org/entity/Q44693867 Uelde http://www.wikidata.org/entity/Q253019 Point(8.3175 51.515555555) +https://nwbib.de/spatial#Q870633 http://www.wikidata.org/entity/Q870633 Altenbochum http://www.wikidata.org/entity/Q123705, http://www.wikidata.org/entity/Q253019 Point(7.246111111 51.471666666) +https://nwbib.de/spatial#Q1225592 http://www.wikidata.org/entity/Q1225592 Dillnhütten http://www.wikidata.org/entity/Q253019 Point(8.01222 50.9261) +https://nwbib.de/spatial#Q18608587 http://www.wikidata.org/entity/Q18608587 Ließem http://www.wikidata.org/entity/Q253019 Point(7.159 50.6484) +https://nwbib.de/spatial#Q1312504 http://www.wikidata.org/entity/Q1312504 Schweinheim http://www.wikidata.org/entity/Q253019 Point(7.13978 50.682) +https://nwbib.de/spatial#Q253185 http://www.wikidata.org/entity/Q253185 Windeck http://www.wikidata.org/entity/Q262166 Point(7.566666666 50.8) +https://nwbib.de/spatial#Q314660 http://www.wikidata.org/entity/Q314660 Neheim-Hüsten http://www.wikidata.org/entity/Q3257686, http://www.wikidata.org/entity/Q253019 Point(7.996111111 51.428611111) +https://nwbib.de/spatial#Q182691 http://www.wikidata.org/entity/Q182691 Espelkamp http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.632777777 52.377222222) +https://nwbib.de/spatial#Q16830359 http://www.wikidata.org/entity/Q16830359 Altendorf-Ulfkotte http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.01247 51.63547) +https://nwbib.de/spatial#Q117782 http://www.wikidata.org/entity/Q117782 Vahlhausen http://www.wikidata.org/entity/Q253019 Point(8.93833 51.9436) +https://nwbib.de/spatial#Q4936257 http://www.wikidata.org/entity/Q4936257 Westenfeld http://www.wikidata.org/entity/Q253019 Point(7.149364 51.470415) +https://nwbib.de/spatial#Q200076 http://www.wikidata.org/entity/Q200076 Titz http://www.wikidata.org/entity/Q262166 Point(6.42477 51.00619) +https://nwbib.de/spatial#Q1268007 http://www.wikidata.org/entity/Q1268007 Dutum http://www.wikidata.org/entity/Q253019 Point(7.41944 52.2653) +https://nwbib.de/spatial#Q915117 http://www.wikidata.org/entity/Q915117 Brienen http://www.wikidata.org/entity/Q253019 Point(6.149444444 51.825555555) +https://nwbib.de/spatial#Q47022528 http://www.wikidata.org/entity/Q47022528 Kirchenkreis Wesel http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1644174 http://www.wikidata.org/entity/Q1644174 Höngen http://www.wikidata.org/entity/Q253019 Point(5.93333 51.0219) +https://nwbib.de/spatial#Q1524914 http://www.wikidata.org/entity/Q1524914 Ginderich http://www.wikidata.org/entity/Q253019 Point(6.54056 51.6419) +https://nwbib.de/spatial#Q1746571 http://www.wikidata.org/entity/Q1746571 Kleinenberg http://www.wikidata.org/entity/Q253019 Point(8.976111111 51.583611111) +https://nwbib.de/spatial#Q1573607 http://www.wikidata.org/entity/Q1573607 Stadtbezirk Heessen http://www.wikidata.org/entity/Q2740635 Point(7.82778 51.7086) +https://nwbib.de/spatial#Q1250697 http://www.wikidata.org/entity/Q1250697 Schüren http://www.wikidata.org/entity/Q253019 Point(7.5325 51.4942) +https://nwbib.de/spatial#Q1795759 http://www.wikidata.org/entity/Q1795759 Libur http://www.wikidata.org/entity/Q15632166 Point(7.07194 50.8386) +https://nwbib.de/spatial#Q152432 http://www.wikidata.org/entity/Q152432 Benediktinerkloster Kornelimünster http://www.wikidata.org/entity/Q160742, http://www.wikidata.org/entity/Q44613, http://www.wikidata.org/entity/Q2742167 Point(6.178056 50.728611) +https://nwbib.de/spatial#Q182805 http://www.wikidata.org/entity/Q182805 Lübbecke http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.623055555 52.308055555) +https://nwbib.de/spatial#Q1811498 http://www.wikidata.org/entity/Q1811498 Ledde http://www.wikidata.org/entity/Q253019 Point(7.81528 52.2392) +https://nwbib.de/spatial#Q1451594 http://www.wikidata.org/entity/Q1451594 Frauenberg http://www.wikidata.org/entity/Q253019 Point(6.73889 50.6842) +https://nwbib.de/spatial#Q2136699 http://www.wikidata.org/entity/Q2136699 Refflingsen http://www.wikidata.org/entity/Q253019 Point(7.65 51.4167) +https://nwbib.de/spatial#Q1623663 http://www.wikidata.org/entity/Q1623663 Hohenbudberg http://www.wikidata.org/entity/Q253019 Point(6.665833333 51.372222222) +https://nwbib.de/spatial#Q1626493 http://www.wikidata.org/entity/Q1626493 Windheim http://www.wikidata.org/entity/Q253019 Point(9.01528 52.4131) +https://nwbib.de/spatial#Q1787260 http://www.wikidata.org/entity/Q1787260 Kreis Duisburg http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q2176735 http://www.wikidata.org/entity/Q2176735 Rurberg http://www.wikidata.org/entity/Q253019 Point(6.381388888 50.614166666) +https://nwbib.de/spatial#Q1246438 http://www.wikidata.org/entity/Q1246438 Keylaer http://www.wikidata.org/entity/Q253019 Point(6.21972 51.5972) +https://nwbib.de/spatial#Q1795774 http://www.wikidata.org/entity/Q1795774 Wahnheide http://www.wikidata.org/entity/Q15632166 Point(7.10306 50.8603) +https://nwbib.de/spatial#Q153765 http://www.wikidata.org/entity/Q153765 Dransdorf http://www.wikidata.org/entity/Q253019 Point(7.04599 50.7361) +https://nwbib.de/spatial#Q315215 http://www.wikidata.org/entity/Q315215 Pempelfort http://www.wikidata.org/entity/Q1852178 Point(6.78694 51.2381) +https://nwbib.de/spatial#Q992245 http://www.wikidata.org/entity/Q992245 Etzweiler http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.55917 50.9058) +https://nwbib.de/spatial#Q1959200 http://www.wikidata.org/entity/Q1959200 Müntz (Titz) http://www.wikidata.org/entity/Q253019 Point(6.36889 50.9839) +https://nwbib.de/spatial#Q1821149 http://www.wikidata.org/entity/Q1821149 Lette http://www.wikidata.org/entity/Q253019 Point(8.1625 51.8819) +https://nwbib.de/spatial#Q5569 http://www.wikidata.org/entity/Q5569 Kierspe http://www.wikidata.org/entity/Q42744322 Point(7.566666666 51.133333333) +https://nwbib.de/spatial#Q1405657 http://www.wikidata.org/entity/Q1405657 Roderath http://www.wikidata.org/entity/Q253019 Point(6.71389 50.5061) +https://nwbib.de/spatial#Q15052453 http://www.wikidata.org/entity/Q15052453 Bönning http://www.wikidata.org/entity/Q253019 Point(6.5125 51.595) +https://nwbib.de/spatial#Q1666361 http://www.wikidata.org/entity/Q1666361 Kinzweiler http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q15284 Point(6.22778 50.8444) +https://nwbib.de/spatial#Q1736409 http://www.wikidata.org/entity/Q1736409 Rehringhausen http://www.wikidata.org/entity/Q253019 Point(7.919444444 51.041666666) +https://nwbib.de/spatial#Q1743149 http://www.wikidata.org/entity/Q1743149 Kirchenkreis Hattingen-Witten http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q225794 http://www.wikidata.org/entity/Q225794 Borgholzhausen http://www.wikidata.org/entity/Q42744322 Point(8.3 52.1) +https://nwbib.de/spatial#Q1743181 http://www.wikidata.org/entity/Q1743181 Kirchenkreis Unna http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1499813 http://www.wikidata.org/entity/Q1499813 Resser Mark http://www.wikidata.org/entity/Q253019 Point(7.10936 51.5638) +https://nwbib.de/spatial#Q11805 http://www.wikidata.org/entity/Q11805 Erzbistum Köln http://www.wikidata.org/entity/Q105390172 +https://nwbib.de/spatial#Q181609 http://www.wikidata.org/entity/Q181609 Lengerich http://www.wikidata.org/entity/Q42744322 Point(7.866666666 52.175) +https://nwbib.de/spatial#Q536671 http://www.wikidata.org/entity/Q536671 Liblar http://www.wikidata.org/entity/Q2983893 Point(6.81417 50.8136) +https://nwbib.de/spatial#Q61726052 http://www.wikidata.org/entity/Q61726052 Beek (Xanten) http://www.wikidata.org/entity/Q253019 Point(6.458805555 51.665583333) +https://nwbib.de/spatial#Q2382291 http://www.wikidata.org/entity/Q2382291 Süsterseel http://www.wikidata.org/entity/Q253019 Point(5.936666666 50.999722222) +https://nwbib.de/spatial#Q1295 http://www.wikidata.org/entity/Q1295 Dortmund http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253030, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591 Point(7.465277777 51.513888888) +https://nwbib.de/spatial#Q889284 http://www.wikidata.org/entity/Q889284 Bockum http://www.wikidata.org/entity/Q253019 Point(6.61667 51.35) +https://nwbib.de/spatial#Q906819 http://www.wikidata.org/entity/Q906819 Breitscheid http://www.wikidata.org/entity/Q56061, http://www.wikidata.org/entity/Q2983893 Point(6.86583 51.3519) +https://nwbib.de/spatial#Q1250639 http://www.wikidata.org/entity/Q1250639 Stadtbezirk Hombruch http://www.wikidata.org/entity/Q2740635 Point(7.4394 51.4758) +https://nwbib.de/spatial#Q2548428 http://www.wikidata.org/entity/Q2548428 Wanlo http://www.wikidata.org/entity/Q253019 Point(6.41333 51.0967) +https://nwbib.de/spatial#Q1297516 http://www.wikidata.org/entity/Q1297516 Eggenscheid http://www.wikidata.org/entity/Q253019 Point(7.61111 51.2542) +https://nwbib.de/spatial#N24 http://www.wikidata.org/entity/Q445609 Niederrhein http://www.wikidata.org/entity/Q82794 Point(6.569166666 51.577777777) +https://nwbib.de/spatial#Q850187 http://www.wikidata.org/entity/Q850187 Bettrath-Hoven http://www.wikidata.org/entity/Q253019 Point(6.45356 51.227) +https://nwbib.de/spatial#Q10780094 http://www.wikidata.org/entity/Q10780094 Bausenrode http://www.wikidata.org/entity/Q253019 Point(8.04836 51.2054) +https://nwbib.de/spatial#Q54803598 http://www.wikidata.org/entity/Q54803598 Stadtbezirk II (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1367173 http://www.wikidata.org/entity/Q1367173 Eschweiler http://www.wikidata.org/entity/Q253019 Point(6.12583 51.0489) +https://nwbib.de/spatial#Q2454680 http://www.wikidata.org/entity/Q2454680 Trockenbrück http://www.wikidata.org/entity/Q253019 Point(8.02472 51.1447) +https://nwbib.de/spatial#Q1670480 http://www.wikidata.org/entity/Q1670480 Lützerath http://www.wikidata.org/entity/Q253019 Point(6.427 51.059) +https://nwbib.de/spatial#Q26835689 http://www.wikidata.org/entity/Q26835689 Bonsfeld http://www.wikidata.org/entity/Q253019 Point(7.1323 51.3644) +https://nwbib.de/spatial#N28 http://www.wikidata.org/entity/Q152356 Eifel http://www.wikidata.org/entity/Q46831, http://www.wikidata.org/entity/Q674541, http://www.wikidata.org/entity/Q82794 Point(6.66667 50.25) +https://nwbib.de/spatial#Q614447 http://www.wikidata.org/entity/Q614447 Anzhausen http://www.wikidata.org/entity/Q253019 Point(8.125 50.8561) +https://nwbib.de/spatial#Q1343424 http://www.wikidata.org/entity/Q1343424 Wülfte http://www.wikidata.org/entity/Q253019 Point(8.586111111 51.433333333) +https://nwbib.de/spatial#Q896712 http://www.wikidata.org/entity/Q896712 Gremmendorf http://www.wikidata.org/entity/Q253019 Point(7.666666666 51.927777777) +https://nwbib.de/spatial#Q731895 http://www.wikidata.org/entity/Q731895 Häver http://www.wikidata.org/entity/Q253019 Point(8.668055555 52.230277777) +https://nwbib.de/spatial#Q1989283 http://www.wikidata.org/entity/Q1989283 Nierfeld http://www.wikidata.org/entity/Q253019 Point(6.49889 50.5606) +https://nwbib.de/spatial#Q1497161 http://www.wikidata.org/entity/Q1497161 Riege http://www.wikidata.org/entity/Q253019 Point(8.62362 51.85) +https://nwbib.de/spatial#Q11038 http://www.wikidata.org/entity/Q11038 Hückeswagen http://www.wikidata.org/entity/Q42744322 Point(7.341666666 51.145) +https://nwbib.de/spatial#Q1343762 http://www.wikidata.org/entity/Q1343762 Hecken http://www.wikidata.org/entity/Q253019 Point(6.51284 50.4533) +https://nwbib.de/spatial#Q1548544 http://www.wikidata.org/entity/Q1548544 Großenbaum http://www.wikidata.org/entity/Q253019 Point(6.78083 51.3653) +https://nwbib.de/spatial#Q17591153 http://www.wikidata.org/entity/Q17591153 Pommenich http://www.wikidata.org/entity/Q253019 Point(6.40472 50.85925) +https://nwbib.de/spatial#Q11340 http://www.wikidata.org/entity/Q11340 Sprockhövel http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q3957 Point(7.24401522 51.3614006) +https://nwbib.de/spatial#Q2429850 http://www.wikidata.org/entity/Q2429850 Thum (Kreuzau) http://www.wikidata.org/entity/Q253019 Point(6.52028 50.7044) +https://nwbib.de/spatial#Q1911981 http://www.wikidata.org/entity/Q1911981 Mawicke http://www.wikidata.org/entity/Q253019 Point(7.98159 51.554) +https://nwbib.de/spatial#Q1231466 http://www.wikidata.org/entity/Q1231466 Hommerich http://www.wikidata.org/entity/Q253019 Point(7.28472 51.0078) +https://nwbib.de/spatial#Q10712 http://www.wikidata.org/entity/Q10712 Satzvey http://www.wikidata.org/entity/Q253019 Point(6.707777777 50.621388888) +https://nwbib.de/spatial#Q2147435 http://www.wikidata.org/entity/Q2147435 Rheidt http://www.wikidata.org/entity/Q253019 Point(7.0475 50.7894) +https://nwbib.de/spatial#Q889074 http://www.wikidata.org/entity/Q889074 Weitmar http://www.wikidata.org/entity/Q253019 Point(7.19222 51.4522) +https://nwbib.de/spatial#Q2036224 http://www.wikidata.org/entity/Q2036224 Wolperath http://www.wikidata.org/entity/Q253019 Point(7.31667 50.8333) +https://nwbib.de/spatial#Q1371978 http://www.wikidata.org/entity/Q1371978 Kleinenbroich http://www.wikidata.org/entity/Q253019 Point(6.55469 51.1961) +https://nwbib.de/spatial#Q1372296 http://www.wikidata.org/entity/Q1372296 Euenheim http://www.wikidata.org/entity/Q253019 Point(6.75 50.65) +https://nwbib.de/spatial#Q15056814 http://www.wikidata.org/entity/Q15056814 Hünshoven http://www.wikidata.org/entity/Q2983893 Point(6.12472222 50.96305556) +https://nwbib.de/spatial#Q59240322 http://www.wikidata.org/entity/Q59240322 Stadtbezirk Hagen-Mitte http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59241193 http://www.wikidata.org/entity/Q59241193 Stadtbezirk Hohenlimburg http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q153736 http://www.wikidata.org/entity/Q153736 Lessenich/Meßdorf http://www.wikidata.org/entity/Q253019 Point(7.04211 50.7239) +https://nwbib.de/spatial#Q736029 http://www.wikidata.org/entity/Q736029 Nassau-Siegen http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q208500 +https://nwbib.de/spatial#Q815983 http://www.wikidata.org/entity/Q815983 Bellinghoven http://www.wikidata.org/entity/Q253019 Point(6.3275 51.064722222) +https://nwbib.de/spatial#Q1622841 http://www.wikidata.org/entity/Q1622841 Hoerstgen http://www.wikidata.org/entity/Q253019 Point(6.47 51.5103) +https://nwbib.de/spatial#Q1604680 http://www.wikidata.org/entity/Q1604680 Kreis Hamm http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q17542971 http://www.wikidata.org/entity/Q17542971 Rombergpark-Lücklemberg http://www.wikidata.org/entity/Q253019 Point(7.46667 51.45) +https://nwbib.de/spatial#Q1805402 http://www.wikidata.org/entity/Q1805402 Langst-Kierst http://www.wikidata.org/entity/Q253019 Point(6.71611 51.2978) +https://nwbib.de/spatial#Q875161 http://www.wikidata.org/entity/Q875161 Lipper Bergland http://www.wikidata.org/entity/Q46831 Point(9.325 51.855555555) +https://nwbib.de/spatial#Q1786904 http://www.wikidata.org/entity/Q1786904 Krauthausen http://www.wikidata.org/entity/Q253019 Point(6.18717 50.7415) +https://nwbib.de/spatial#Q1250664 http://www.wikidata.org/entity/Q1250664 Löttringhausen http://www.wikidata.org/entity/Q253019 Point(7.44222 51.4575) +https://nwbib.de/spatial#Q1961906 http://www.wikidata.org/entity/Q1961906 Naaferberg http://www.wikidata.org/entity/Q253019 Point(7.24926 50.8604) +https://nwbib.de/spatial#Q1340873 http://www.wikidata.org/entity/Q1340873 Freilingen http://www.wikidata.org/entity/Q253019 Point(6.7275 50.4128) +https://nwbib.de/spatial#Q19965671 http://www.wikidata.org/entity/Q19965671 Ostbüren http://www.wikidata.org/entity/Q253019 Point(7.77125 51.51333333) +https://nwbib.de/spatial#Q2586708 http://www.wikidata.org/entity/Q2586708 Rüdinghausen http://www.wikidata.org/entity/Q253019 Point(7.400277777 51.450277777) +https://nwbib.de/spatial#Q183483 http://www.wikidata.org/entity/Q183483 Lichtenau http://www.wikidata.org/entity/Q42744322 Point(8.883333333 51.6) +https://nwbib.de/spatial#Q889550 http://www.wikidata.org/entity/Q889550 Bodenheim (Weilerswist) http://www.wikidata.org/entity/Q253019 Point(6.79806 50.6981) +https://nwbib.de/spatial#Q5642 http://www.wikidata.org/entity/Q5642 Brilon http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q54935786 Point(8.567777777 51.395555555) +https://nwbib.de/spatial#Q151193 http://www.wikidata.org/entity/Q151193 Büsbach http://www.wikidata.org/entity/Q253019 Point(6.213888888 50.750555555) +https://nwbib.de/spatial#Q1019841 http://www.wikidata.org/entity/Q1019841 Bölhorst http://www.wikidata.org/entity/Q253019 Point(8.87833 52.2689) +https://nwbib.de/spatial#Q1771665 http://www.wikidata.org/entity/Q1771665 Selbeck http://www.wikidata.org/entity/Q253019 Point(6.861 51.3677) +https://nwbib.de/spatial#Q2380291 http://www.wikidata.org/entity/Q2380291 Süchterscheid http://www.wikidata.org/entity/Q253019 Point(7.38667 50.7475) +https://nwbib.de/spatial#Q824387 http://www.wikidata.org/entity/Q824387 Langendreer http://www.wikidata.org/entity/Q253019 Point(7.324166666 51.473611111) +https://nwbib.de/spatial#Q1568387 http://www.wikidata.org/entity/Q1568387 Hagen http://www.wikidata.org/entity/Q253019 Point(7.95734 51.262) +https://nwbib.de/spatial#Q1689034 http://www.wikidata.org/entity/Q1689034 Landkreis Gladbach http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q2361112 http://www.wikidata.org/entity/Q2361112 Stürzelberg http://www.wikidata.org/entity/Q2983893 Point(6.81556 51.1408) +https://nwbib.de/spatial#Q317314 http://www.wikidata.org/entity/Q317314 Duisburg-Mitte (Stadtbezirk) http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q676050 Point(6.76861 51.4331) +https://nwbib.de/spatial#Q1461305 http://www.wikidata.org/entity/Q1461305 Kreis Dinslaken http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.73333333 51.56666667) +https://nwbib.de/spatial#Q1428761 http://www.wikidata.org/entity/Q1428761 Günhoven http://www.wikidata.org/entity/Q253019 Point(6.38613 51.1447) +https://nwbib.de/spatial#Q1499810 http://www.wikidata.org/entity/Q1499810 Horst http://www.wikidata.org/entity/Q253019 Point(7.02472 51.5361) +https://nwbib.de/spatial#Q814280 http://www.wikidata.org/entity/Q814280 Begau http://www.wikidata.org/entity/Q253019 Point(6.207222222 50.853333333) +https://nwbib.de/spatial#Q56024292 http://www.wikidata.org/entity/Q56024292 Froschenteich http://www.wikidata.org/entity/Q253019 Point(6.748805555 51.338666666) +https://nwbib.de/spatial#Q1650083 http://www.wikidata.org/entity/Q1650083 Ranzel http://www.wikidata.org/entity/Q253019 Point(7.03389 50.8322) +https://nwbib.de/spatial#Q1987788 http://www.wikidata.org/entity/Q1987788 Niedergaul http://www.wikidata.org/entity/Q253019 Point(7.41166667 51.10638889) +https://nwbib.de/spatial#Q61727112 http://www.wikidata.org/entity/Q61727112 Kempener Feld/Baackeshof http://www.wikidata.org/entity/Q2983893 Point(6.565194444 51.331305555) +https://nwbib.de/spatial#Q891081 http://www.wikidata.org/entity/Q891081 Boisheim http://www.wikidata.org/entity/Q253019 Point(6.26667 51.2667) +https://nwbib.de/spatial#Q805086 http://www.wikidata.org/entity/Q805086 Balkhausen http://www.wikidata.org/entity/Q253019 Point(6.76313 50.8538) +https://nwbib.de/spatial#Q2147825 http://www.wikidata.org/entity/Q2147825 Rheinisches Braunkohlerevier http://www.wikidata.org/entity/Q819435 Point(6.50277778 50.91083333) +https://nwbib.de/spatial#Q2564772 http://www.wikidata.org/entity/Q2564772 Westerhausen http://www.wikidata.org/entity/Q253019 Point(7.29583 50.7322) +https://nwbib.de/spatial#Q2326748 http://www.wikidata.org/entity/Q2326748 Stadtbezirk Innenstadt-Nord http://www.wikidata.org/entity/Q2740635 Point(7.471666666 51.529166666) +https://nwbib.de/spatial#Q14517846 http://www.wikidata.org/entity/Q14517846 Wardhausen http://www.wikidata.org/entity/Q253019 Point(6.14111 51.82361) +https://nwbib.de/spatial#Q1642511 http://www.wikidata.org/entity/Q1642511 Gremberghoven http://www.wikidata.org/entity/Q15632166 Point(7.05583 50.8992) +https://nwbib.de/spatial#Q225774 http://www.wikidata.org/entity/Q225774 Halle (Westf.) http://www.wikidata.org/entity/Q42744322 Point(8.359722222 52.060833333) +https://nwbib.de/spatial#Q1988432 http://www.wikidata.org/entity/Q1988432 Niederschelden http://www.wikidata.org/entity/Q253019 Point(7.96972 50.8453) +https://nwbib.de/spatial#Q16854899 http://www.wikidata.org/entity/Q16854899 Neuwarendorf http://www.wikidata.org/entity/Q253019 Point(7.954041 51.954085) +https://nwbib.de/spatial#Q243433 http://www.wikidata.org/entity/Q243433 Bedburg-Hau http://www.wikidata.org/entity/Q262166 Point(6.183333333 51.766666666) +https://nwbib.de/spatial#Q894132 http://www.wikidata.org/entity/Q894132 Borr / Scheuren http://www.wikidata.org/entity/Q4286337 Point(6.74528 50.7383) +https://nwbib.de/spatial#Q1019964 http://www.wikidata.org/entity/Q1019964 Börninghausen http://www.wikidata.org/entity/Q253019 Point(8.49694 52.275) +https://nwbib.de/spatial#Q893838 http://www.wikidata.org/entity/Q893838 Bork http://www.wikidata.org/entity/Q253019 Point(7.46861 51.665) +https://nwbib.de/spatial#Q2974 http://www.wikidata.org/entity/Q2974 Haan http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.013055555 51.193055555) +https://nwbib.de/spatial#Q1368639 http://www.wikidata.org/entity/Q1368639 Rüttenscheid http://www.wikidata.org/entity/Q253019 Point(7.005278 51.435556) +https://nwbib.de/spatial#Q2167125 http://www.wikidata.org/entity/Q2167125 Rosenhagen http://www.wikidata.org/entity/Q253019 Point(9.09556 52.395) +https://nwbib.de/spatial#Q2557412 http://www.wikidata.org/entity/Q2557412 Welbergen http://www.wikidata.org/entity/Q253019 Point(7.2575 52.2014) +https://nwbib.de/spatial#Q2360646 http://www.wikidata.org/entity/Q2360646 Störmecke http://www.wikidata.org/entity/Q253019 Point(8.34027 51.1197) +https://nwbib.de/spatial#Q874789 http://www.wikidata.org/entity/Q874789 Ludendorf http://www.wikidata.org/entity/Q253019 Point(6.886944444 50.664722222) +https://nwbib.de/spatial#Q1020464 http://www.wikidata.org/entity/Q1020464 Büderich http://www.wikidata.org/entity/Q253019 Point(7.8743 51.5465) +https://nwbib.de/spatial#Q1034547 http://www.wikidata.org/entity/Q1034547 Capelle http://www.wikidata.org/entity/Q253019 Point(7.5925 51.7319) +https://nwbib.de/spatial#Q2541161 http://www.wikidata.org/entity/Q2541161 Waldbauer http://www.wikidata.org/entity/Q253019 Point(7.45947 51.3039) +https://nwbib.de/spatial#Q1033650 http://www.wikidata.org/entity/Q1033650 Canstein http://www.wikidata.org/entity/Q253019 Point(8.922 51.399) +https://nwbib.de/spatial#Q1743319 http://www.wikidata.org/entity/Q1743319 Kirchlengern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q15303838 Point(8.64194 52.1983) +https://nwbib.de/spatial#Q1544862 http://www.wikidata.org/entity/Q1544862 Grefrath http://www.wikidata.org/entity/Q253019 Point(6.63291 51.1721) +https://nwbib.de/spatial#Q10960 http://www.wikidata.org/entity/Q10960 Wilnsdorf http://www.wikidata.org/entity/Q262166 Point(8.1 50.816666666) +https://nwbib.de/spatial#Q258193 http://www.wikidata.org/entity/Q258193 Bredeney http://www.wikidata.org/entity/Q2983893 Point(6.993889 51.414444) +https://nwbib.de/spatial#Q2069078 http://www.wikidata.org/entity/Q2069078 Pennenfeld http://www.wikidata.org/entity/Q253019 Point(7.16722 50.6747) +https://nwbib.de/spatial#Q870327 http://www.wikidata.org/entity/Q870327 Rollesbroich http://www.wikidata.org/entity/Q253019 Point(6.312138888 50.628705555) +https://nwbib.de/spatial#Q1355635 http://www.wikidata.org/entity/Q1355635 Erlinghausen http://www.wikidata.org/entity/Q253019 Point(8.89972 51.4425) +https://nwbib.de/spatial#Q162771 http://www.wikidata.org/entity/Q162771 Neukirchen-Vluyn http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.558333333 51.441666666) +https://nwbib.de/spatial#Q19279172 http://www.wikidata.org/entity/Q19279172 Ennest http://www.wikidata.org/entity/Q253019 Point(7.91130018 51.14523315) +https://nwbib.de/spatial#Q537359 http://www.wikidata.org/entity/Q537359 Angelsdorf http://www.wikidata.org/entity/Q253019 Point(6.554527777 50.939908333) +https://nwbib.de/spatial#Q1367106 http://www.wikidata.org/entity/Q1367106 Eschmar http://www.wikidata.org/entity/Q253019 Point(7.11081 50.7934) +https://nwbib.de/spatial#Q2132375 http://www.wikidata.org/entity/Q2132375 Rath http://www.wikidata.org/entity/Q253019 Point(6.46972 50.7044) +https://nwbib.de/spatial#Q1272261 http://www.wikidata.org/entity/Q1272261 Dürwiß http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q253019 Point(6.27444 50.8372) +https://nwbib.de/spatial#Q925377 http://www.wikidata.org/entity/Q925377 Broichweiden http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q2983893 Point(6.165555555 50.825) +https://nwbib.de/spatial#Q1795734 http://www.wikidata.org/entity/Q1795734 Buchforst http://www.wikidata.org/entity/Q15632166 Point(7.005 50.9508) +https://nwbib.de/spatial#Q1879926 http://www.wikidata.org/entity/Q1879926 Löwendorf http://www.wikidata.org/entity/Q253019 Point(9.27926 51.843) +https://nwbib.de/spatial#Q2431870 http://www.wikidata.org/entity/Q2431870 Tiefenbroich http://www.wikidata.org/entity/Q253019 Point(6.82285 51.3106) +https://nwbib.de/spatial#Q1795771 http://www.wikidata.org/entity/Q1795771 Urbach http://www.wikidata.org/entity/Q15632166 Point(7.08306 50.8831) +https://nwbib.de/spatial#Q1322031 http://www.wikidata.org/entity/Q1322031 Menne http://www.wikidata.org/entity/Q253019 Point(9.12111 51.5211) +https://nwbib.de/spatial#Q1455742 http://www.wikidata.org/entity/Q1455742 Fretter http://www.wikidata.org/entity/Q253019 Point(8.04873 51.1933) +https://nwbib.de/spatial#Q1738986 http://www.wikidata.org/entity/Q1738986 Kreis Lüdenscheid http://www.wikidata.org/entity/Q106658 Point(7.63333 51.2167) +https://nwbib.de/spatial#Q317108 http://www.wikidata.org/entity/Q317108 Tecklenburger Land http://www.wikidata.org/entity/Q82794 Point(7.80859709 52.21902144) +https://nwbib.de/spatial#Q1487887 http://www.wikidata.org/entity/Q1487887 Nächstebreck-Ost http://www.wikidata.org/entity/Q253019 Point(7.27389 51.3081) +https://nwbib.de/spatial#Q869521 http://www.wikidata.org/entity/Q869521 Hövel http://www.wikidata.org/entity/Q253019 Point(7.92678 51.3687) +https://nwbib.de/spatial#Q2549984 http://www.wikidata.org/entity/Q2549984 Warth http://www.wikidata.org/entity/Q253019 Point(7.29806 50.77) +https://nwbib.de/spatial#Q262410 http://www.wikidata.org/entity/Q262410 Obergartzem http://www.wikidata.org/entity/Q253019 Point(6.7 50.633333333) +https://nwbib.de/spatial#Q955007 http://www.wikidata.org/entity/Q955007 Scholven http://www.wikidata.org/entity/Q253019 Point(7.02083 51.5919) +https://nwbib.de/spatial#Q1649509 http://www.wikidata.org/entity/Q1649509 Illingen http://www.wikidata.org/entity/Q253019 Point(7.9247 51.6175) +https://nwbib.de/spatial#Q1250714 http://www.wikidata.org/entity/Q1250714 Wellinghofen http://www.wikidata.org/entity/Q253019 Point(7.49167 51.4697) +https://nwbib.de/spatial#Q200138 http://www.wikidata.org/entity/Q200138 Heimbach http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q990488 Point(6.483055555 50.633055555) +https://nwbib.de/spatial#Q19299563 http://www.wikidata.org/entity/Q19299563 Röllecken http://www.wikidata.org/entity/Q253019 Point(7.98829985 51.13829041) +https://nwbib.de/spatial#Q32945247 http://www.wikidata.org/entity/Q32945247 Siesel http://www.wikidata.org/entity/Q253019 Point(7.90624 51.221174) +https://nwbib.de/spatial#Q182248 http://www.wikidata.org/entity/Q182248 Nordwalde http://www.wikidata.org/entity/Q262166 Point(7.483333333 52.083333333) +https://nwbib.de/spatial#Q151303 http://www.wikidata.org/entity/Q151303 Embken http://www.wikidata.org/entity/Q2983893 Point(6.574722222 50.684166666) +https://nwbib.de/spatial#Q1552045 http://www.wikidata.org/entity/Q1552045 Grünenbach http://www.wikidata.org/entity/Q253019 Point(7.61861 50.9247) +https://nwbib.de/spatial#Q47449149 http://www.wikidata.org/entity/Q47449149 Habinghorst http://www.wikidata.org/entity/Q253019 Point(7.315555555 51.585833333) +https://nwbib.de/spatial#Q243526 http://www.wikidata.org/entity/Q243526 Kevelaer http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.25 51.583333333) +https://nwbib.de/spatial#Q1723140 http://www.wikidata.org/entity/Q1723140 Düren http://www.wikidata.org/entity/Q253019 Point(7.356388888 51.473333333) +https://nwbib.de/spatial#Q1015066 http://www.wikidata.org/entity/Q1015066 Burgholdinghausen http://www.wikidata.org/entity/Q253019 Point(7.98056 51.0158) +https://nwbib.de/spatial#Q55498347 http://www.wikidata.org/entity/Q55498347 Halden http://www.wikidata.org/entity/Q253019 Point(7.511944444 51.375) +https://nwbib.de/spatial#Q200549 http://www.wikidata.org/entity/Q200549 Velen http://www.wikidata.org/entity/Q42744322 Point(6.989722222 51.893888888) +https://nwbib.de/spatial#Q1609858 http://www.wikidata.org/entity/Q1609858 Herhagen http://www.wikidata.org/entity/Q253019 Point(8.268 51.276) +https://nwbib.de/spatial#Q3823 http://www.wikidata.org/entity/Q3823 Neustadt-Nord http://www.wikidata.org/entity/Q15632166 Point(6.95417 50.9497) +https://nwbib.de/spatial#Q1118320 http://www.wikidata.org/entity/Q1118320 Halverde http://www.wikidata.org/entity/Q253019 Point(7.6675 52.4197) +https://nwbib.de/spatial#Q1632330 http://www.wikidata.org/entity/Q1632330 Spitze http://www.wikidata.org/entity/Q253019 Point(7.203055555 51.008888888) +https://nwbib.de/spatial#Q6968 http://www.wikidata.org/entity/Q6968 Erkrath http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.914722222 51.223888888) +https://nwbib.de/spatial#Q15115050 http://www.wikidata.org/entity/Q15115050 Hohenbusch http://www.wikidata.org/entity/Q253019 Point(6.02194444 50.95527778) +https://nwbib.de/spatial#Q1309525 http://www.wikidata.org/entity/Q1309525 Königsdorf http://www.wikidata.org/entity/Q253019 Point(6.7715 50.9368) +https://nwbib.de/spatial#Q1250706 http://www.wikidata.org/entity/Q1250706 Wambel http://www.wikidata.org/entity/Q253019 Point(7.51667 51.5167) +https://nwbib.de/spatial#Q1591088 http://www.wikidata.org/entity/Q1591088 Hausen http://www.wikidata.org/entity/Q253019 Point(7.2575 50.8679) +https://nwbib.de/spatial#Q1807021 http://www.wikidata.org/entity/Q1807021 Latrop http://www.wikidata.org/entity/Q253019 Point(8.32611 51.1122) +https://nwbib.de/spatial#Q47200394 http://www.wikidata.org/entity/Q47200394 Weddern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1484611 Point(7.2975 51.863611111) +https://nwbib.de/spatial#Q17575871 http://www.wikidata.org/entity/Q17575871 Hülschotten http://www.wikidata.org/entity/Q253019 Point(7.9175 51.175555555) +https://nwbib.de/spatial#Q2420122 http://www.wikidata.org/entity/Q2420122 Wüsten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.79222 52.1014) +https://nwbib.de/spatial#Q1438863 http://www.wikidata.org/entity/Q1438863 Kliedbruch http://www.wikidata.org/entity/Q253019 Point(6.56722222 51.35194444) +https://nwbib.de/spatial#Q663159 http://www.wikidata.org/entity/Q663159 Millen http://www.wikidata.org/entity/Q253019 Point(5.88028 51.0242) +https://nwbib.de/spatial#Q819467 http://www.wikidata.org/entity/Q819467 Berge http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.35667 51.3389) +https://nwbib.de/spatial#Q28037591 http://www.wikidata.org/entity/Q28037591 Sterzenbach http://www.wikidata.org/entity/Q253019 Point(7.4817 50.7562) +https://nwbib.de/spatial#Q200018 http://www.wikidata.org/entity/Q200018 Langerwehe http://www.wikidata.org/entity/Q64578911, http://www.wikidata.org/entity/Q262166 Point(6.349722222 50.816666666) +https://nwbib.de/spatial#Q862854 http://www.wikidata.org/entity/Q862854 Billig http://www.wikidata.org/entity/Q2983893 Point(6.777222222 50.629444444) +https://nwbib.de/spatial#Q2050612 http://www.wikidata.org/entity/Q2050612 Papenhausen http://www.wikidata.org/entity/Q253019 Point(8.8367 52.0536) +https://nwbib.de/spatial#Q1987757 http://www.wikidata.org/entity/Q1987757 Niederembt http://www.wikidata.org/entity/Q253019 Point(6.5418 50.964319444) +https://nwbib.de/spatial#Q1557059 http://www.wikidata.org/entity/Q1557059 Gut Unterdickt http://www.wikidata.org/entity/Q253019 Point(6.877969444 50.554011111) +https://nwbib.de/spatial#Q1278530 http://www.wikidata.org/entity/Q1278530 Ebbinghausen http://www.wikidata.org/entity/Q253019 Point(7.29556 51.0028) +https://nwbib.de/spatial#Q2529786 http://www.wikidata.org/entity/Q2529786 Vochem http://www.wikidata.org/entity/Q253019 Point(6.89806 50.8436) +https://nwbib.de/spatial#Q1773509 http://www.wikidata.org/entity/Q1773509 Rösenbeck http://www.wikidata.org/entity/Q253019 Point(8.68528 51.4083) +https://nwbib.de/spatial#Q130096 http://www.wikidata.org/entity/Q130096 Bühne http://www.wikidata.org/entity/Q253019 Point(9.30722 51.575) +https://nwbib.de/spatial#Q1113973 http://www.wikidata.org/entity/Q1113973 Herhahn http://www.wikidata.org/entity/Q253019 Point(6.4525 50.5564) +https://nwbib.de/spatial#Q1643423 http://www.wikidata.org/entity/Q1643423 Oekoven http://www.wikidata.org/entity/Q253019 Point(6.66361 51.0644) +https://nwbib.de/spatial#Q1891167 http://www.wikidata.org/entity/Q1891167 Manstedten http://www.wikidata.org/entity/Q253019 Point(6.76663 50.9874) +https://nwbib.de/spatial#Q314234 http://www.wikidata.org/entity/Q314234 Wanne-Eickel http://www.wikidata.org/entity/Q22865, http://www.wikidata.org/entity/Q253019 Point(7.1617 51.5325) +https://nwbib.de/spatial#Q15063871 http://www.wikidata.org/entity/Q15063871 Grevenberg http://www.wikidata.org/entity/Q253019 Point(6.128888888 50.827221944) +https://nwbib.de/spatial#Q1423799 http://www.wikidata.org/entity/Q1423799 Kirchenkreis Herford http://www.wikidata.org/entity/Q897303 Point(8.67099 52.1224) +https://nwbib.de/spatial#Q1531206 http://www.wikidata.org/entity/Q1531206 Glessen http://www.wikidata.org/entity/Q253019 Point(6.750830555 50.969058333) +https://nwbib.de/spatial#Q200894 http://www.wikidata.org/entity/Q200894 Baesweiler http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.183333333 50.9) +https://nwbib.de/spatial#Q2268676 http://www.wikidata.org/entity/Q2268676 Selsten http://www.wikidata.org/entity/Q253019 Point(6.03875 51.0445) +https://nwbib.de/spatial#Q181541 http://www.wikidata.org/entity/Q181541 Horstmar http://www.wikidata.org/entity/Q42744322 Point(7.308333333 52.080555555) +https://nwbib.de/spatial#Q1304050 http://www.wikidata.org/entity/Q1304050 Eilern http://www.wikidata.org/entity/Q253019 Point(8.77479 51.5439) +https://nwbib.de/spatial#Q1602902 http://www.wikidata.org/entity/Q1602902 Reifferscheid http://www.wikidata.org/entity/Q253019 Point(6.46917 50.4761) +https://nwbib.de/spatial#Q11040 http://www.wikidata.org/entity/Q11040 Waldbröl http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q13220204 Point(7.615 50.878888888) +https://nwbib.de/spatial#Q318846 http://www.wikidata.org/entity/Q318846 Abenden http://www.wikidata.org/entity/Q253019 Point(6.478888888 50.670277777) +https://nwbib.de/spatial#Q166602 http://www.wikidata.org/entity/Q166602 Hassels http://www.wikidata.org/entity/Q1852178 Point(6.87389 51.1783) +https://nwbib.de/spatial#Q2291534 http://www.wikidata.org/entity/Q2291534 Hillmicke http://www.wikidata.org/entity/Q253019 Point(7.814444444 50.976666666) +https://nwbib.de/spatial#Q15265016 http://www.wikidata.org/entity/Q15265016 Vennheide http://www.wikidata.org/entity/Q253019 Point(6.452577 51.269546) +https://nwbib.de/spatial#Q1358916 http://www.wikidata.org/entity/Q1358916 Pottenhausen http://www.wikidata.org/entity/Q253019 Point(8.74333 52.0097) +https://nwbib.de/spatial#Q1458567 http://www.wikidata.org/entity/Q1458567 Volkholz http://www.wikidata.org/entity/Q253019 Point(8.28222 50.9286) +https://nwbib.de/spatial#Q55984306 http://www.wikidata.org/entity/Q55984306 Herrlichkeit Heessen http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q1339772 http://www.wikidata.org/entity/Q1339772 Emst http://www.wikidata.org/entity/Q253019 Point(7.5 51.3536) +https://nwbib.de/spatial#Q1674886 http://www.wikidata.org/entity/Q1674886 Istrup http://www.wikidata.org/entity/Q253019 Point(9.12016 51.7079) +https://nwbib.de/spatial#Q1529026 http://www.wikidata.org/entity/Q1529026 Gladbach http://www.wikidata.org/entity/Q253019 Point(6.97738 51.1165) +https://nwbib.de/spatial#Q7967973 http://www.wikidata.org/entity/Q7967973 Wankum http://www.wikidata.org/entity/Q253019 Point(6.3 51.4) +https://nwbib.de/spatial#Q1232709 http://www.wikidata.org/entity/Q1232709 Heckinghausen http://www.wikidata.org/entity/Q13415859 Point(7.22139 51.2703) +https://nwbib.de/spatial#Q568155 http://www.wikidata.org/entity/Q568155 Wahn http://www.wikidata.org/entity/Q15632166 Point(7.08833 50.8589) +https://nwbib.de/spatial#Q1978678 http://www.wikidata.org/entity/Q1978678 Nettelstädt http://www.wikidata.org/entity/Q253019 Point(8.39125 51.5459) +https://nwbib.de/spatial#Q1987610 http://www.wikidata.org/entity/Q1987610 Niederbardenberg http://www.wikidata.org/entity/Q253019 Point(6.116111111 50.8525) +https://nwbib.de/spatial#Q243079 http://www.wikidata.org/entity/Q243079 Weeze http://www.wikidata.org/entity/Q262166 Point(6.196666666 51.626666666) +https://nwbib.de/spatial#Q14833 http://www.wikidata.org/entity/Q14833 Heinsberg http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q253019 Point(6.096388888 51.063055555) +https://nwbib.de/spatial#Q2326752 http://www.wikidata.org/entity/Q2326752 Stadtbezirk Innenstadt-Ost http://www.wikidata.org/entity/Q2740635 Point(7.493888888 51.511666666) +https://nwbib.de/spatial#Q1558155 http://www.wikidata.org/entity/Q1558155 Heimsen http://www.wikidata.org/entity/Q253019 Point(9.05417 52.4667) +https://nwbib.de/spatial#Q15715108 http://www.wikidata.org/entity/Q15715108 Altstadt http://www.wikidata.org/entity/Q676050, http://www.wikidata.org/entity/Q2983893 Point(6.7676 51.434) +https://nwbib.de/spatial#Q3097 http://www.wikidata.org/entity/Q3097 Remscheid http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q85635630 Point(7.187211111 51.180188888) +https://nwbib.de/spatial#Q2257862 http://www.wikidata.org/entity/Q2257862 Schwitten http://www.wikidata.org/entity/Q253019 Point(7.80028 51.4597) +https://nwbib.de/spatial#Q1271297 http://www.wikidata.org/entity/Q1271297 Dörnberg http://www.wikidata.org/entity/Q253019 Point(8.42361 51.3158) +https://nwbib.de/spatial#Q1374348 http://www.wikidata.org/entity/Q1374348 Euregio Rhein-Waal http://www.wikidata.org/entity/Q153026 +https://nwbib.de/spatial#Q968 http://www.wikidata.org/entity/Q968 Warburg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(9.14 51.488055555) +https://nwbib.de/spatial#Q2568740 http://www.wikidata.org/entity/Q2568740 Wiemeringhausen http://www.wikidata.org/entity/Q253019 Point(8.50278 51.2892) +https://nwbib.de/spatial#Q1520072 http://www.wikidata.org/entity/Q1520072 Tenholt http://www.wikidata.org/entity/Q253019 Point(6.31472 51.0547) +https://nwbib.de/spatial#Q1347554 http://www.wikidata.org/entity/Q1347554 Eppenhausen http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.50556 51.3611) +https://nwbib.de/spatial#Q1615713 http://www.wikidata.org/entity/Q1615713 Hesselbach http://www.wikidata.org/entity/Q253019 Point(7.60722 51.0272) +https://nwbib.de/spatial#Q153190 http://www.wikidata.org/entity/Q153190 Rescheid http://www.wikidata.org/entity/Q253019 Point(6.434616666 50.433513888) +https://nwbib.de/spatial#Q1368644 http://www.wikidata.org/entity/Q1368644 Segeroth http://www.wikidata.org/entity/Q253019 Point(7.01472 51.4706) +https://nwbib.de/spatial#Q836171 http://www.wikidata.org/entity/Q836171 Lommersum http://www.wikidata.org/entity/Q253019 Point(6.796666666 50.709444444) +https://nwbib.de/spatial#Q2570532 http://www.wikidata.org/entity/Q2570532 Wilden http://www.wikidata.org/entity/Q253019 Point(8.07167 50.8078) +https://nwbib.de/spatial#Q3949 http://www.wikidata.org/entity/Q3949 Unna http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.688888888 51.534722222) +https://nwbib.de/spatial#Q2015224 http://www.wikidata.org/entity/Q2015224 Oesinghausen http://www.wikidata.org/entity/Q253019 Point(7.49861 50.9958) +https://nwbib.de/spatial#Q1406857 http://www.wikidata.org/entity/Q1406857 Rureifel http://www.wikidata.org/entity/Q1970725 Point(6.415 50.619888888) +https://nwbib.de/spatial#Q14212620 http://www.wikidata.org/entity/Q14212620 Kalkeifel http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q1250597 http://www.wikidata.org/entity/Q1250597 Brünninghausen http://www.wikidata.org/entity/Q253019 Point(7.46667 51.4833) +https://nwbib.de/spatial#Q314337 http://www.wikidata.org/entity/Q314337 Belecke http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(8.332777777 51.481944444) +https://nwbib.de/spatial#Q2016458 http://www.wikidata.org/entity/Q2016458 Ohl http://www.wikidata.org/entity/Q253019 Point(7.48694 51.1111) +https://nwbib.de/spatial#Q2309721 http://www.wikidata.org/entity/Q2309721 Spich http://www.wikidata.org/entity/Q253019 Point(7.11798 50.8277) +https://nwbib.de/spatial#Q829778 http://www.wikidata.org/entity/Q829778 Besenkamp http://www.wikidata.org/entity/Q253019 Point(8.565555555 52.161388888) +https://nwbib.de/spatial#Q2942 http://www.wikidata.org/entity/Q2942 Solingen http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.083333333 51.166666666) +https://nwbib.de/spatial#Q1200380 http://www.wikidata.org/entity/Q1200380 Dersdorf http://www.wikidata.org/entity/Q253019 Point(6.96447 50.7626) +https://nwbib.de/spatial#Q1625205 http://www.wikidata.org/entity/Q1625205 Holthausen http://www.wikidata.org/entity/Q253019 Point(7.22361 51.3931) +https://nwbib.de/spatial#Q1959083 http://www.wikidata.org/entity/Q1959083 Angelmodde http://www.wikidata.org/entity/Q253019 Point(7.68611 51.9167) +https://nwbib.de/spatial#Q1522735 http://www.wikidata.org/entity/Q1522735 Obersdorf http://www.wikidata.org/entity/Q253019 Point(8.06806 50.8381) +https://nwbib.de/spatial#Q11140 http://www.wikidata.org/entity/Q11140 Möhnesee http://www.wikidata.org/entity/Q262166 Point(8.130555555 51.495833333) +https://nwbib.de/spatial#Q56008691 http://www.wikidata.org/entity/Q56008691 Renneperstraße http://www.wikidata.org/entity/Q253019 Point(6.286527777 51.239861111) +https://nwbib.de/spatial#Q27890119 http://www.wikidata.org/entity/Q27890119 Reinshagen http://www.wikidata.org/entity/Q253019 Point(7.420833 50.884444) +https://nwbib.de/spatial#Q2166611 http://www.wikidata.org/entity/Q2166611 Rosbach http://www.wikidata.org/entity/Q253019 Point(7.61111 50.7964) +https://nwbib.de/spatial#Q56033167 http://www.wikidata.org/entity/Q56033167 Südmünsterland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q1648862 http://www.wikidata.org/entity/Q1648862 Katterbach http://www.wikidata.org/entity/Q253019 Point(7.0725 51.0064) +https://nwbib.de/spatial#Q47012184 http://www.wikidata.org/entity/Q47012184 Gaesdonk http://www.wikidata.org/entity/Q253019 Point(6.11975 51.652027777) +https://nwbib.de/spatial#Q1918122 http://www.wikidata.org/entity/Q1918122 Meiningsen http://www.wikidata.org/entity/Q253019 Point(8.06056 51.5386) +https://nwbib.de/spatial#Q19965776 http://www.wikidata.org/entity/Q19965776 Siddinghausen http://www.wikidata.org/entity/Q253019 Point(7.794166944 51.529721944) +https://nwbib.de/spatial#Q29960536 http://www.wikidata.org/entity/Q29960536 Schnappe http://www.wikidata.org/entity/Q253019 Point(7.211425 51.034847222) +https://nwbib.de/spatial#Q18589582 http://www.wikidata.org/entity/Q18589582 Lich-Steinstraß http://www.wikidata.org/entity/Q2983893 Point(6.378333333 50.929722222) +https://nwbib.de/spatial#Q183374 http://www.wikidata.org/entity/Q183374 Borchen http://www.wikidata.org/entity/Q262166 Point(8.733333333 51.666666666) +https://nwbib.de/spatial#Q3853 http://www.wikidata.org/entity/Q3853 Bayenthal http://www.wikidata.org/entity/Q15632166 Point(6.9675 50.912222222) +https://nwbib.de/spatial#Q2565168 http://www.wikidata.org/entity/Q2565168 Westfeld http://www.wikidata.org/entity/Q253019 Point(8.415 51.1619) +https://nwbib.de/spatial#Q2233712 http://www.wikidata.org/entity/Q2233712 Scherlebeck http://www.wikidata.org/entity/Q253019 Point(7.14193 51.61936) +https://nwbib.de/spatial#Q895768 http://www.wikidata.org/entity/Q895768 Dahl http://www.wikidata.org/entity/Q253019 Point(7.531944444 51.304722222) +https://nwbib.de/spatial#Q43161685 http://www.wikidata.org/entity/Q43161685 Tungerloh-Pröbsting http://www.wikidata.org/entity/Q253019 Point(7.055277777 51.930833333) +https://nwbib.de/spatial#Q607614 http://www.wikidata.org/entity/Q607614 Gemünd http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q253019 Point(6.49987 50.5719) +https://nwbib.de/spatial#Q6916 http://www.wikidata.org/entity/Q6916 Herzogenrath http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.1 50.866666666) +https://nwbib.de/spatial#Q1263536 http://www.wikidata.org/entity/Q1263536 Duckweiler http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.202777777 50.880555555) +https://nwbib.de/spatial#Q107451916 http://www.wikidata.org/entity/Q107451916 Hörn http://www.wikidata.org/entity/Q2983893 Point(6.058731758 50.781695801) +https://nwbib.de/spatial#Q326313 http://www.wikidata.org/entity/Q326313 Hiddesen http://www.wikidata.org/entity/Q253019 Point(8.843888888 51.924444444) +https://nwbib.de/spatial#Q1987623 http://www.wikidata.org/entity/Q1987623 Niederberndorf http://www.wikidata.org/entity/Q253019 Point(8.22139 51.1953) +https://nwbib.de/spatial#Q18714017 http://www.wikidata.org/entity/Q18714017 Hollenbock http://www.wikidata.org/entity/Q253019 Point(7.92973 51.14626) +https://nwbib.de/spatial#Q1509057 http://www.wikidata.org/entity/Q1509057 Hützemert http://www.wikidata.org/entity/Q253019 Point(7.75388 51.0354) +https://nwbib.de/spatial#Q3132 http://www.wikidata.org/entity/Q3132 Moers http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(6.619722222 51.459166666) +https://nwbib.de/spatial#Q1787360 http://www.wikidata.org/entity/Q1787360 Kreis Kempen http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q908953 http://www.wikidata.org/entity/Q908953 Brenkhausen http://www.wikidata.org/entity/Q253019 Point(9.3525 51.8033) +https://nwbib.de/spatial#Q1551893 http://www.wikidata.org/entity/Q1551893 Grüne (Iserlohn) http://www.wikidata.org/entity/Q253019 Point(7.66605 51.3668) +https://nwbib.de/spatial#Q1818408 http://www.wikidata.org/entity/Q1818408 Lenzinghausen http://www.wikidata.org/entity/Q253019 Point(8.488888888 52.1225) +https://nwbib.de/spatial#Q1650249 http://www.wikidata.org/entity/Q1650249 Morschenich http://www.wikidata.org/entity/Q253019 Point(6.5425 50.866666666) +https://nwbib.de/spatial#Q1772394 http://www.wikidata.org/entity/Q1772394 Neger http://www.wikidata.org/entity/Q253019 Point(7.88694 51.0667) +https://nwbib.de/spatial#Q1815335 http://www.wikidata.org/entity/Q1815335 Lüdenhausen http://www.wikidata.org/entity/Q253019 Point(9.0125 52.082777777) +https://nwbib.de/spatial#Q814019 http://www.wikidata.org/entity/Q814019 Beeck http://www.wikidata.org/entity/Q253019 Point(6.30583 51.1339) +https://nwbib.de/spatial#Q45748091 http://www.wikidata.org/entity/Q45748091 Nieukerk http://www.wikidata.org/entity/Q253019 Point(6.373166666 51.454472222) +https://nwbib.de/spatial#Q1378677 http://www.wikidata.org/entity/Q1378677 Herrath http://www.wikidata.org/entity/Q253019 Point(6.36111 51.1039) +https://nwbib.de/spatial#Q1966840 http://www.wikidata.org/entity/Q1966840 Natingen http://www.wikidata.org/entity/Q253019 Point(9.23444 51.6434) +https://nwbib.de/spatial#Q15058127 http://www.wikidata.org/entity/Q15058127 Niederheid http://www.wikidata.org/entity/Q253019 Point(6.10555556 50.98277778) +https://nwbib.de/spatial#Q19687950 http://www.wikidata.org/entity/Q19687950 Vöckinghausen http://www.wikidata.org/entity/Q253019 Point(7.91194439 51.65250015) +https://nwbib.de/spatial#Q2729570 http://www.wikidata.org/entity/Q2729570 Hüthum http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.20286 51.84974) +https://nwbib.de/spatial#Q2160971 http://www.wikidata.org/entity/Q2160971 Roden (Iserlohn) http://www.wikidata.org/entity/Q253019 Point(7.66159 51.361) +https://nwbib.de/spatial#Q11026135 http://www.wikidata.org/entity/Q11026135 Fürstentum Salm http://www.wikidata.org/entity/Q208500, http://www.wikidata.org/entity/Q3024240 +https://nwbib.de/spatial#Q2310669 http://www.wikidata.org/entity/Q2310669 Oeding http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q3257686 Point(6.81041 51.9337) +https://nwbib.de/spatial#Q55585785 http://www.wikidata.org/entity/Q55585785 Brockhausen http://www.wikidata.org/entity/Q253019 Point(8.1286 51.6303) +https://nwbib.de/spatial#Q1668485 http://www.wikidata.org/entity/Q1668485 Kotten http://www.wikidata.org/entity/Q253019 Point(7.39611 51.1783) +https://nwbib.de/spatial#Q1333842 http://www.wikidata.org/entity/Q1333842 Elsig http://www.wikidata.org/entity/Q253019 Point(6.739722222 50.665555555) +https://nwbib.de/spatial#Q2010335 http://www.wikidata.org/entity/Q2010335 Oberlückerath http://www.wikidata.org/entity/Q253019 Point(7.44333 50.8231) +https://nwbib.de/spatial#Q151651 http://www.wikidata.org/entity/Q151651 Vennhausen http://www.wikidata.org/entity/Q1852178 Point(6.86 51.2108) +https://nwbib.de/spatial#Q240039 http://www.wikidata.org/entity/Q240039 Weilerswist http://www.wikidata.org/entity/Q262166 Point(6.837777777 50.7525) +https://nwbib.de/spatial#Q1017446 http://www.wikidata.org/entity/Q1017446 Busenbach http://www.wikidata.org/entity/Q253019 Point(7.30772 51.1521) +https://nwbib.de/spatial#Q1922118 http://www.wikidata.org/entity/Q1922118 Merten http://www.wikidata.org/entity/Q253019 Point(7.39294 50.7685) +https://nwbib.de/spatial#Q892684 http://www.wikidata.org/entity/Q892684 Bonn http://www.wikidata.org/entity/Q2740635 Point(7.08755 50.7122) +https://nwbib.de/spatial#Q1318062 http://www.wikidata.org/entity/Q1318062 Schmechten http://www.wikidata.org/entity/Q253019 Point(9.08393 51.6856) +https://nwbib.de/spatial#Q1547065 http://www.wikidata.org/entity/Q1547065 Grissenbach http://www.wikidata.org/entity/Q253019 Point(8.17028 50.8872) +https://nwbib.de/spatial#Q1632288 http://www.wikidata.org/entity/Q1632288 Alhausen http://www.wikidata.org/entity/Q253019 Point(9.05417 51.7492) +https://nwbib.de/spatial#Q2649433 http://www.wikidata.org/entity/Q2649433 Allrath http://www.wikidata.org/entity/Q253019 Point(6.6287 51.069) +https://nwbib.de/spatial#Q18589583 http://www.wikidata.org/entity/Q18589583 Lich-Steinstraß http://www.wikidata.org/entity/Q253019 Point(6.48585 50.93485) +https://nwbib.de/spatial#Q2563401 http://www.wikidata.org/entity/Q2563401 Wersen http://www.wikidata.org/entity/Q253019 Point(7.94056 52.3133) +https://nwbib.de/spatial#Q27901870 http://www.wikidata.org/entity/Q27901870 Berzbach http://www.wikidata.org/entity/Q253019 Point(7.436389 50.891944) +https://nwbib.de/spatial#Q1372191 http://www.wikidata.org/entity/Q1372191 Euchen http://www.wikidata.org/entity/Q253019 Point(6.160583333 50.840388888) +https://nwbib.de/spatial#Q447359 http://www.wikidata.org/entity/Q447359 Lobberich http://www.wikidata.org/entity/Q2983893 Point(6.279722 51.308056) +https://nwbib.de/spatial#Q866394 http://www.wikidata.org/entity/Q866394 Bislich http://www.wikidata.org/entity/Q253019 Point(6.49306 51.6792) +https://nwbib.de/spatial#N32 http://www.wikidata.org/entity/Q1380992 Evangelische Kirche im Rheinland http://www.wikidata.org/entity/Q565744, http://www.wikidata.org/entity/Q196741 +https://nwbib.de/spatial#Q1593495 http://www.wikidata.org/entity/Q1593495 Heepen http://www.wikidata.org/entity/Q253019 Point(8.616666666 52.033333333) +https://nwbib.de/spatial#Q182208 http://www.wikidata.org/entity/Q182208 Neuenkirchen http://www.wikidata.org/entity/Q262166 Point(7.368888888 52.241111111) +https://nwbib.de/spatial#Q2203145 http://www.wikidata.org/entity/Q2203145 Rüblinghausen http://www.wikidata.org/entity/Q253019 Point(7.833333333 51.016666666) +https://nwbib.de/spatial#Q55500735 http://www.wikidata.org/entity/Q55500735 Esbeck http://www.wikidata.org/entity/Q253019 Point(8.398333333 51.685555555) +https://nwbib.de/spatial#Q89555728 http://www.wikidata.org/entity/Q89555728 Ameke http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1917397 http://www.wikidata.org/entity/Q1917397 Mehr http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.05194 51.81083) +https://nwbib.de/spatial#Q3621 http://www.wikidata.org/entity/Q3621 Deutz http://www.wikidata.org/entity/Q15632166 Point(6.9878 50.9347) +https://nwbib.de/spatial#Q21039642 http://www.wikidata.org/entity/Q21039642 Hochstraß http://www.wikidata.org/entity/Q253019 Point(6.65777778 51.45) +https://nwbib.de/spatial#Q2340815 http://www.wikidata.org/entity/Q2340815 Steinhausen http://www.wikidata.org/entity/Q253019 Point(8.51861 51.58) +https://nwbib.de/spatial#Q183345 http://www.wikidata.org/entity/Q183345 Bad Wünnenberg http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q42744322 Point(8.7 51.516666666) +https://nwbib.de/spatial#Q655526 http://www.wikidata.org/entity/Q655526 Merheim http://www.wikidata.org/entity/Q15632166 Point(7.05 50.949722222) +https://nwbib.de/spatial#Q1568375 http://www.wikidata.org/entity/Q1568375 Hagen http://www.wikidata.org/entity/Q253019 Point(8.79125 52.0158) +https://nwbib.de/spatial#Q1428626 http://www.wikidata.org/entity/Q1428626 Fliesteden http://www.wikidata.org/entity/Q253019 Point(6.74026 50.993) +https://nwbib.de/spatial#Q797469 http://www.wikidata.org/entity/Q797469 Baal http://www.wikidata.org/entity/Q253019 Point(6.28333 51.0333) +https://nwbib.de/spatial#Q1589008 http://www.wikidata.org/entity/Q1589008 Hatterscheid http://www.wikidata.org/entity/Q253019 Point(7.3988 50.8147) +https://nwbib.de/spatial#Q1368649 http://www.wikidata.org/entity/Q1368649 Stadtwald http://www.wikidata.org/entity/Q253019 Point(7.024167 51.420833) +https://nwbib.de/spatial#Q1770852 http://www.wikidata.org/entity/Q1770852 Lintorf http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q56061 Point(6.830833333 51.332777777) +https://nwbib.de/spatial#Q1621640 http://www.wikidata.org/entity/Q1621640 Theesen http://www.wikidata.org/entity/Q253019 Point(8.51667 52.0667) +https://nwbib.de/spatial#Q1253050 http://www.wikidata.org/entity/Q1253050 Lannesdorf http://www.wikidata.org/entity/Q253019 Point(7.17028 50.6639) +https://nwbib.de/spatial#Q1258782 http://www.wikidata.org/entity/Q1258782 Drewer http://www.wikidata.org/entity/Q253019 Point(8.37197 51.5007) +https://nwbib.de/spatial#Q1601919 http://www.wikidata.org/entity/Q1601919 Helenabrunn http://www.wikidata.org/entity/Q253019 Point(6.42 51.2283) +https://nwbib.de/spatial#Q1301886 http://www.wikidata.org/entity/Q1301886 Eichhagen http://www.wikidata.org/entity/Q253019 Point(7.834 51.057) +https://nwbib.de/spatial#Q553182 http://www.wikidata.org/entity/Q553182 Grafschaft Sayn http://www.wikidata.org/entity/Q353344 Point(7.57638889 50.43833333) +https://nwbib.de/spatial#Q151285 http://www.wikidata.org/entity/Q151285 Bensberg http://www.wikidata.org/entity/Q2983893 Point(7.157030555 50.965633333) +https://nwbib.de/spatial#Q1805065 http://www.wikidata.org/entity/Q1805065 Langenholdinghausen http://www.wikidata.org/entity/Q253019 Point(7.97056 50.9164) +https://nwbib.de/spatial#Q1507743 http://www.wikidata.org/entity/Q1507743 Rebbeke http://www.wikidata.org/entity/Q253019 Point(8.45972 51.7092) +https://nwbib.de/spatial#Q1588032 http://www.wikidata.org/entity/Q1588032 Harzheim http://www.wikidata.org/entity/Q253019 Point(6.68595 50.5503) +https://nwbib.de/spatial#Q2593914 http://www.wikidata.org/entity/Q2593914 Wormeln http://www.wikidata.org/entity/Q253019 Point(9.134722222 51.472222222) +https://nwbib.de/spatial#Q1923800 http://www.wikidata.org/entity/Q1923800 Stadt Blankenberg http://www.wikidata.org/entity/Q253019 Point(7.363611111 50.761666666) +https://nwbib.de/spatial#Q19687959 http://www.wikidata.org/entity/Q19687959 Weltersbach http://www.wikidata.org/entity/Q253019 Point(7.079666944 51.1085) +https://nwbib.de/spatial#Q1534645 http://www.wikidata.org/entity/Q1534645 Nippes http://www.wikidata.org/entity/Q15632166 Point(6.95833 50.9644) +https://nwbib.de/spatial#Q1588776 http://www.wikidata.org/entity/Q1588776 Hasten http://www.wikidata.org/entity/Q2983893 Point(7.16583333 51.19638889) +https://nwbib.de/spatial#Q1769716 http://www.wikidata.org/entity/Q1769716 Neesen http://www.wikidata.org/entity/Q253019 Point(8.928888888 52.264444444) +https://nwbib.de/spatial#Q1738418 http://www.wikidata.org/entity/Q1738418 Kelzenberg http://www.wikidata.org/entity/Q253019 Point(6.50271 51.1193) +https://nwbib.de/spatial#Q1910891 http://www.wikidata.org/entity/Q1910891 Matzerath (Erkelenz) http://www.wikidata.org/entity/Q253019 Point(6.28361 51.0786) +https://nwbib.de/spatial#Q7025 http://www.wikidata.org/entity/Q7025 Erkelenz http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.315555555 51.08) +https://nwbib.de/spatial#Q248822 http://www.wikidata.org/entity/Q248822 Züschen http://www.wikidata.org/entity/Q253019 Point(8.56187 51.1526) +https://nwbib.de/spatial#Q1528807 http://www.wikidata.org/entity/Q1528807 Oelgershausen http://www.wikidata.org/entity/Q253019 Point(8.08806 50.9242) +https://nwbib.de/spatial#Q44172870 http://www.wikidata.org/entity/Q44172870 Raestrup http://www.wikidata.org/entity/Q253019 Point(7.868055555 51.965833333) +https://nwbib.de/spatial#Q1897900 http://www.wikidata.org/entity/Q1897900 Stadtbezirk Marienloh http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2740635 Point(8.78333 51.7667) +https://nwbib.de/spatial#Q896173 http://www.wikidata.org/entity/Q896173 Lippramsdorf http://www.wikidata.org/entity/Q253019 Point(7.096388888 51.715277777) +https://nwbib.de/spatial#Q1643237 http://www.wikidata.org/entity/Q1643237 Vogelsmühle http://www.wikidata.org/entity/Q253019 Point(7.30528 51.2211) +https://nwbib.de/spatial#Q1625560 http://www.wikidata.org/entity/Q1625560 Holzheim http://www.wikidata.org/entity/Q2983893 Point(6.6675 51.1606) +https://nwbib.de/spatial#Q242149 http://www.wikidata.org/entity/Q242149 Brakel http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(9.183333333 51.716666666) +https://nwbib.de/spatial#Q10919 http://www.wikidata.org/entity/Q10919 Medebach http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(8.706944444 51.197222222) +https://nwbib.de/spatial#Q2791950 http://www.wikidata.org/entity/Q2791950 Gemen http://www.wikidata.org/entity/Q253019 Point(6.87667 51.85278) +https://nwbib.de/spatial#Q1354991 http://www.wikidata.org/entity/Q1354991 Erkeln http://www.wikidata.org/entity/Q253019 Point(9.22472 51.6883) +https://nwbib.de/spatial#Q15126859 http://www.wikidata.org/entity/Q15126859 Sallinghausen http://www.wikidata.org/entity/Q253019 Point(8.17817 51.26768) +https://nwbib.de/spatial#Q2201799 http://www.wikidata.org/entity/Q2201799 Saarn http://www.wikidata.org/entity/Q2983893 Point(6.875261111 51.40335) +https://nwbib.de/spatial#Q15109159 http://www.wikidata.org/entity/Q15109159 Dahl http://www.wikidata.org/entity/Q253019 Point(6.438185 51.181896) +https://nwbib.de/spatial#Q15830483 http://www.wikidata.org/entity/Q15830483 Poppelsdorf http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q1390618 +https://nwbib.de/spatial#Q819732 http://www.wikidata.org/entity/Q819732 Berghausen http://www.wikidata.org/entity/Q253019 Point(8.24444 51.1861) +https://nwbib.de/spatial#Q1643995 http://www.wikidata.org/entity/Q1643995 Höllen http://www.wikidata.org/entity/Q253019 Point(6.464166666 50.956388888) +https://nwbib.de/spatial#Q153974 http://www.wikidata.org/entity/Q153974 Barmen http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q1549591 Point(7.2 51.266666666) +https://nwbib.de/spatial#Q2197261 http://www.wikidata.org/entity/Q2197261 Warbeyen http://www.wikidata.org/entity/Q253019 Point(6.201111111 51.811944444) +https://nwbib.de/spatial#Q1353444 http://www.wikidata.org/entity/Q1353444 Nuttlar http://www.wikidata.org/entity/Q253019 Point(8.42466 51.3702) +https://nwbib.de/spatial#Q19687880 http://www.wikidata.org/entity/Q19687880 Altendorf http://www.wikidata.org/entity/Q253019 Point(7.67472219 51.48055649) +https://nwbib.de/spatial#Q1827431 http://www.wikidata.org/entity/Q1827431 Lippborg http://www.wikidata.org/entity/Q253019 Point(8.04361 51.6633) +https://nwbib.de/spatial#Q637807 http://www.wikidata.org/entity/Q637807 Oppum http://www.wikidata.org/entity/Q253019 Point(6.61278 51.3292) +https://nwbib.de/spatial#Q257398 http://www.wikidata.org/entity/Q257398 Margarethenhöhe http://www.wikidata.org/entity/Q2983893 Point(6.977222 51.4325) +https://nwbib.de/spatial#Q1602705 http://www.wikidata.org/entity/Q1602705 Rahm http://www.wikidata.org/entity/Q253019 Point(7.387222 51.523333) +https://nwbib.de/spatial#Q1811312 http://www.wikidata.org/entity/Q1811312 Lechenich http://www.wikidata.org/entity/Q253019 Point(6.766666666 50.8) +https://nwbib.de/spatial#Q1523280 http://www.wikidata.org/entity/Q1523280 Gierath http://www.wikidata.org/entity/Q253019 Point(7.09944 50.976) +https://nwbib.de/spatial#Q14208738 http://www.wikidata.org/entity/Q14208738 Stadtbezirk IX (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1261488 http://www.wikidata.org/entity/Q1261488 Herkenrath http://www.wikidata.org/entity/Q253019 Point(7.19278 50.9867) +https://nwbib.de/spatial#Q15115285 http://www.wikidata.org/entity/Q15115285 Huck http://www.wikidata.org/entity/Q253019 Point(6.53138889 51.57194444) +https://nwbib.de/spatial#Q27998647 http://www.wikidata.org/entity/Q27998647 Kreutzhäuschen http://www.wikidata.org/entity/Q253019 Point(7.272608 50.956168) +https://nwbib.de/spatial#Q1250681 http://www.wikidata.org/entity/Q1250681 Oestrich http://www.wikidata.org/entity/Q253019 Point(7.36667 51.5667) +https://nwbib.de/spatial#Q1496158 http://www.wikidata.org/entity/Q1496158 Leuscheid http://www.wikidata.org/entity/Q253019 Point(7.561 50.769) +https://nwbib.de/spatial#Q1263809 http://www.wikidata.org/entity/Q1263809 Methler http://www.wikidata.org/entity/Q253019 Point(7.6 51.566666666) +https://nwbib.de/spatial#Q1573594 http://www.wikidata.org/entity/Q1573594 Hamlingdorf http://www.wikidata.org/entity/Q253019 Point(8.30035 52.0946) +https://nwbib.de/spatial#Q90685626 http://www.wikidata.org/entity/Q90685626 Geisbruch http://www.wikidata.org/entity/Q253019 Point(6.532555555 51.495444444) +https://nwbib.de/spatial#Q798787 http://www.wikidata.org/entity/Q798787 Bad Waldliesborn http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q6882870 Point(8.33647 51.7142) +https://nwbib.de/spatial#Q880944 http://www.wikidata.org/entity/Q880944 Höntrop http://www.wikidata.org/entity/Q253019 Point(7.151944444 51.463888888) +https://nwbib.de/spatial#Q2553836 http://www.wikidata.org/entity/Q2553836 Weckinghausen http://www.wikidata.org/entity/Q253019 Point(8.32333 51.635) +https://nwbib.de/spatial#Q19968083 http://www.wikidata.org/entity/Q19968083 Voerde http://www.wikidata.org/entity/Q253019 Point(7.3866 51.3086) +https://nwbib.de/spatial#Q1281198 http://www.wikidata.org/entity/Q1281198 Echtrop http://www.wikidata.org/entity/Q253019 Point(8.18194 51.5092) +https://nwbib.de/spatial#Q993810 http://www.wikidata.org/entity/Q993810 Windelsbleiche http://www.wikidata.org/entity/Q253019 Point(8.52427 51.9586) +https://nwbib.de/spatial#Q6858 http://www.wikidata.org/entity/Q6858 Bad Oeynhausen http://www.wikidata.org/entity/Q6882870, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.8 52.2) +https://nwbib.de/spatial#Q1251308 http://www.wikidata.org/entity/Q1251308 Dotzlar http://www.wikidata.org/entity/Q253019 Point(8.411388888 51.014722222) +https://nwbib.de/spatial#Q1258786 http://www.wikidata.org/entity/Q1258786 Drewer http://www.wikidata.org/entity/Q253019 Point(7.13 51.64) +https://nwbib.de/spatial#Q2015199 http://www.wikidata.org/entity/Q2015199 Oesdorf http://www.wikidata.org/entity/Q253019 Point(8.87532 51.5067) +https://nwbib.de/spatial#Q1805120 http://www.wikidata.org/entity/Q1805120 Langenstraße-Heddinghausen http://www.wikidata.org/entity/Q253019 Point(8.46321 51.5604) +https://nwbib.de/spatial#Q55647406 http://www.wikidata.org/entity/Q55647406 Nahmer http://www.wikidata.org/entity/Q253019 Point(7.573055555 51.328888888) +https://nwbib.de/spatial#Q1631517 http://www.wikidata.org/entity/Q1631517 Houverath http://www.wikidata.org/entity/Q253019 Point(6.90186 50.5417) +https://nwbib.de/spatial#Q200640 http://www.wikidata.org/entity/Q200640 Gescher http://www.wikidata.org/entity/Q42744322 Point(7.005555555 51.956944444) +https://nwbib.de/spatial#Q5279 http://www.wikidata.org/entity/Q5279 Nachrodt-Wiblingwerde http://www.wikidata.org/entity/Q262166 Point(7.65 51.316666666) +https://nwbib.de/spatial#Q1452282 http://www.wikidata.org/entity/Q1452282 Wörderfeld http://www.wikidata.org/entity/Q19730508, http://www.wikidata.org/entity/Q253019 Point(9.32083 51.9092) +https://nwbib.de/spatial#Q1670981 http://www.wikidata.org/entity/Q1670981 Rorup http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(7.27306 51.8961) +https://nwbib.de/spatial#Q3830 http://www.wikidata.org/entity/Q3830 Neustadt-Süd http://www.wikidata.org/entity/Q15632166, http://www.wikidata.org/entity/Q2983893 Point(6.94762 50.92509) +https://nwbib.de/spatial#Q923730 http://www.wikidata.org/entity/Q923730 Brockhagen http://www.wikidata.org/entity/Q253019 Point(8.35 51.9919) +https://nwbib.de/spatial#Q1019615 http://www.wikidata.org/entity/Q1019615 Böddeken http://www.wikidata.org/entity/Q253019 Point(8.67902 51.5959) +https://nwbib.de/spatial#Q1980069 http://www.wikidata.org/entity/Q1980069 Neuenknick http://www.wikidata.org/entity/Q253019 Point(9.06639 52.4211) +https://nwbib.de/spatial#Q894180 http://www.wikidata.org/entity/Q894180 Borschemich http://www.wikidata.org/entity/Q253019 Point(6.429444444 51.08) +https://nwbib.de/spatial#Q1959115 http://www.wikidata.org/entity/Q1959115 Stadtbezirk Münster-Süd-Ost http://www.wikidata.org/entity/Q2740635 Point(7.68056 51.925) +https://nwbib.de/spatial#Q1749655 http://www.wikidata.org/entity/Q1749655 Niederrheinischer Höhenzug http://www.wikidata.org/entity/Q467208 Point(6.35222 51.65528) +https://nwbib.de/spatial#Q23560847 http://www.wikidata.org/entity/Q23560847 Nümmen http://www.wikidata.org/entity/Q253019 Point(7.06359722 51.19689389) +https://nwbib.de/spatial#Q10890 http://www.wikidata.org/entity/Q10890 Drolshagen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.766666666 51.033333333) +https://nwbib.de/spatial#Q883858 http://www.wikidata.org/entity/Q883858 Blerichen http://www.wikidata.org/entity/Q253019 Point(6.576358333 50.9838) +https://nwbib.de/spatial#Q1625873 http://www.wikidata.org/entity/Q1625873 Homburg-Bröl http://www.wikidata.org/entity/Q253019 Point(7.52972 50.9117) +https://nwbib.de/spatial#Q32860701 http://www.wikidata.org/entity/Q32860701 Biggen http://www.wikidata.org/entity/Q253019 Point(7.924 51.131) +https://nwbib.de/spatial#Q1499808 http://www.wikidata.org/entity/Q1499808 Bulmke-Hüllen http://www.wikidata.org/entity/Q253019 Point(7.11056 51.5175) +https://nwbib.de/spatial#Q1494531 http://www.wikidata.org/entity/Q1494531 Garsdorf http://www.wikidata.org/entity/Q253019 Point(6.6352 51.0077) +https://nwbib.de/spatial#Q1618782 http://www.wikidata.org/entity/Q1618782 Niese http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q19730508 Point(9.29333 51.8583) +https://nwbib.de/spatial#Q1124848 http://www.wikidata.org/entity/Q1124848 Föckinghausen http://www.wikidata.org/entity/Q253019 Point(8.317777777 51.241111111) +https://nwbib.de/spatial#Q11049 http://www.wikidata.org/entity/Q11049 Marienheide http://www.wikidata.org/entity/Q262166 Point(7.533333333 51.083333333) +https://nwbib.de/spatial#Q1797750 http://www.wikidata.org/entity/Q1797750 Upsprunge http://www.wikidata.org/entity/Q253019 Point(8.60194 51.6567) +https://nwbib.de/spatial#Q1355151 http://www.wikidata.org/entity/Q1355151 Hochdahl http://www.wikidata.org/entity/Q2983893 Point(6.95694 51.2078) +https://nwbib.de/spatial#Q1695433 http://www.wikidata.org/entity/Q1695433 Scheiderhöhe http://www.wikidata.org/entity/Q253019 Point(7.2279 50.8733) +https://nwbib.de/spatial#Q6214 http://www.wikidata.org/entity/Q6214 Kreis Recklinghausen http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(7.17 51.67) +https://nwbib.de/spatial#Q2076235 http://www.wikidata.org/entity/Q2076235 Praest http://www.wikidata.org/entity/Q253019 Point(6.33333333 51.81666667) +https://nwbib.de/spatial#Q2455470 http://www.wikidata.org/entity/Q2455470 Trophagen http://www.wikidata.org/entity/Q253019 Point(8.86258 51.9959) +https://nwbib.de/spatial#Q1362040 http://www.wikidata.org/entity/Q1362040 Gestringen http://www.wikidata.org/entity/Q253019 Point(8.61111 52.3539) +https://nwbib.de/spatial#Q1319045 http://www.wikidata.org/entity/Q1319045 Weiershagen http://www.wikidata.org/entity/Q253019 Point(7.48972 50.9739) +https://nwbib.de/spatial#Q1368622 http://www.wikidata.org/entity/Q1368622 Freisenbruch http://www.wikidata.org/entity/Q253019 Point(7.100556 51.451667) +https://nwbib.de/spatial#Q693107 http://www.wikidata.org/entity/Q693107 Berzdorf http://www.wikidata.org/entity/Q253019 Point(6.94444 50.8311) +https://nwbib.de/spatial#Q1571190 http://www.wikidata.org/entity/Q1571190 Halingen http://www.wikidata.org/entity/Q253019 Point(7.72716 51.4638) +https://nwbib.de/spatial#Q12444 http://www.wikidata.org/entity/Q12444 Königswinter http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.183333333 50.683333333) +https://nwbib.de/spatial#Q797634 http://www.wikidata.org/entity/Q797634 Babenhausen http://www.wikidata.org/entity/Q253019 Point(8.4775 52.0564) +https://nwbib.de/spatial#Q2253044 http://www.wikidata.org/entity/Q2253044 Schwanenberg http://www.wikidata.org/entity/Q253019 Point(6.26667 51.1) +https://nwbib.de/spatial#Q1593189 http://www.wikidata.org/entity/Q1593189 Hedderhagen http://www.wikidata.org/entity/Q253019 Point(8.86262 51.9799) +https://nwbib.de/spatial#Q2034979 http://www.wikidata.org/entity/Q2034979 Ostenfelde http://www.wikidata.org/entity/Q253019 Point(8.08 51.8656) +https://nwbib.de/spatial#Q1479675 http://www.wikidata.org/entity/Q1479675 Koch http://www.wikidata.org/entity/Q253019 Point(6.3383 51.1697) +https://nwbib.de/spatial#Q1588753 http://www.wikidata.org/entity/Q1588753 Hassum http://www.wikidata.org/entity/Q2983893 Point(6.069186111 51.679008333) +https://nwbib.de/spatial#Q1958715 http://www.wikidata.org/entity/Q1958715 Müllenbach http://www.wikidata.org/entity/Q253019 Point(7.57861 51.0678) +https://nwbib.de/spatial#Q199968 http://www.wikidata.org/entity/Q199968 Aldenhoven http://www.wikidata.org/entity/Q262166 Point(6.283055555 50.895833333) +https://nwbib.de/spatial#Q16831816 http://www.wikidata.org/entity/Q16831816 Hervest http://www.wikidata.org/entity/Q110207589 Point(6.99 51.66944444) +https://nwbib.de/spatial#Q1457153 http://www.wikidata.org/entity/Q1457153 Friedewalde http://www.wikidata.org/entity/Q253019 Point(8.85 52.3533) +https://nwbib.de/spatial#Q56033157 http://www.wikidata.org/entity/Q56033157 Nordmünsterland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q19687883 http://www.wikidata.org/entity/Q19687883 Berge http://www.wikidata.org/entity/Q253019 Point(7.84111111 51.64972222) +https://nwbib.de/spatial#Q1098922 http://www.wikidata.org/entity/Q1098922 Clausen http://www.wikidata.org/entity/Q253019 Point(7.17389 51.2736) +https://nwbib.de/spatial#Q1259051 http://www.wikidata.org/entity/Q1259051 Dringenberg http://www.wikidata.org/entity/Q253019 Point(9.056666666 51.671944444) +https://nwbib.de/spatial#Q1259204 http://www.wikidata.org/entity/Q1259204 Eller http://www.wikidata.org/entity/Q1852178 Point(6.83889 51.2006) +https://nwbib.de/spatial#Q633582 http://www.wikidata.org/entity/Q633582 Sülz http://www.wikidata.org/entity/Q15632166 Point(6.924166666 50.9175) +https://nwbib.de/spatial#Q1207790 http://www.wikidata.org/entity/Q1207790 Dhünn http://www.wikidata.org/entity/Q2983893 Point(7.25556 51.10889) +https://nwbib.de/spatial#Q1017351 http://www.wikidata.org/entity/Q1017351 Buschhütten http://www.wikidata.org/entity/Q253019 Point(8.00083 50.9397) +https://nwbib.de/spatial#Q2464018 http://www.wikidata.org/entity/Q2464018 Tönisberg http://www.wikidata.org/entity/Q253019 Point(6.505 51.4136) +https://nwbib.de/spatial#Q6136 http://www.wikidata.org/entity/Q6136 Wickede http://www.wikidata.org/entity/Q262166 Point(7.865833333 51.496388888) +https://nwbib.de/spatial#Q1604846 http://www.wikidata.org/entity/Q1604846 Hemmerden http://www.wikidata.org/entity/Q253019 Point(6.58982 51.1263) +https://nwbib.de/spatial#Q1884 http://www.wikidata.org/entity/Q1884 Düren http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626 Point(6.483333333 50.8) +https://nwbib.de/spatial#Q2563272 http://www.wikidata.org/entity/Q2563272 Werpe http://www.wikidata.org/entity/Q253019 Point(8.25111 51.1556) +https://nwbib.de/spatial#Q56577099 http://www.wikidata.org/entity/Q56577099 Sträßchen http://www.wikidata.org/entity/Q253019 Point(7.127333333 51.072777777) +https://nwbib.de/spatial#Q2564620 http://www.wikidata.org/entity/Q2564620 Westenfeld http://www.wikidata.org/entity/Q253019 Point(8.0494 51.3234) +https://nwbib.de/spatial#Q1510420 http://www.wikidata.org/entity/Q1510420 Weldergoven http://www.wikidata.org/entity/Q253019 Point(7.31333 50.7781) +https://nwbib.de/spatial#Q880989 http://www.wikidata.org/entity/Q880989 Kinderhaus http://www.wikidata.org/entity/Q253019 Point(7.604166666 51.995833333) +https://nwbib.de/spatial#Q19687956 http://www.wikidata.org/entity/Q19687956 Weetfeld http://www.wikidata.org/entity/Q253019 Point(7.78694444 51.62611111) +https://nwbib.de/spatial#Q1403245 http://www.wikidata.org/entity/Q1403245 Millingen http://www.wikidata.org/entity/Q2983893 Point(6.39611 51.8089) +https://nwbib.de/spatial#Q1343348 http://www.wikidata.org/entity/Q1343348 Ennigloh http://www.wikidata.org/entity/Q253019 Point(8.562222222 52.203333333) +https://nwbib.de/spatial#Q1402170 http://www.wikidata.org/entity/Q1402170 Krudenburg http://www.wikidata.org/entity/Q253019 Point(6.75667 51.6505) +https://nwbib.de/spatial#N16 http://www.wikidata.org/entity/Q580471 Siegerland http://www.wikidata.org/entity/Q82794 Point(7.96666667 50.85) +https://nwbib.de/spatial#Q11046 http://www.wikidata.org/entity/Q11046 Engelskirchen http://www.wikidata.org/entity/Q262166 Point(7.416666666 50.983333333) +https://nwbib.de/spatial#Q1948206 http://www.wikidata.org/entity/Q1948206 Morken-Harff http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q2112582 http://www.wikidata.org/entity/Q2112582 Schröttinghausen http://www.wikidata.org/entity/Q253019 Point(8.46692 52.3304) +https://nwbib.de/spatial#Q1638807 http://www.wikidata.org/entity/Q1638807 Welldorf http://www.wikidata.org/entity/Q253019 Point(6.416666666 50.95) +https://nwbib.de/spatial#Q1318888 http://www.wikidata.org/entity/Q1318888 Stadtbezirk Münster-West http://www.wikidata.org/entity/Q2740635 Point(7.56667 51.9722) +https://nwbib.de/spatial#Q1225940 http://www.wikidata.org/entity/Q1225940 Kirchherten http://www.wikidata.org/entity/Q253019 Point(6.486116666 51.006752777) +https://nwbib.de/spatial#Q939035 http://www.wikidata.org/entity/Q939035 Hohenhausen http://www.wikidata.org/entity/Q253019 Point(8.948611111 52.106944444) +https://nwbib.de/spatial#Q1870653 http://www.wikidata.org/entity/Q1870653 Rumeln-Kaldenhausen http://www.wikidata.org/entity/Q253019 Point(6.6578 51.3978) +https://nwbib.de/spatial#Q1241616 http://www.wikidata.org/entity/Q1241616 Donk http://www.wikidata.org/entity/Q253019 Point(6.44389 51.2475) +https://nwbib.de/spatial#Q55587449 http://www.wikidata.org/entity/Q55587449 Essel http://www.wikidata.org/entity/Q253019 Point(7.252777777 51.621944444) +https://nwbib.de/spatial#Q243206 http://www.wikidata.org/entity/Q243206 Rheurdt http://www.wikidata.org/entity/Q262166 Point(6.466666666 51.466666666) +https://nwbib.de/spatial#Q1593803 http://www.wikidata.org/entity/Q1593803 Heibach http://www.wikidata.org/entity/Q253019 Point(7.36389 51.0392) +https://nwbib.de/spatial#Q863347 http://www.wikidata.org/entity/Q863347 Bilstein http://www.wikidata.org/entity/Q253019 Point(8.01889 51.0944) +https://nwbib.de/spatial#Q1607341 http://www.wikidata.org/entity/Q1607341 Seeberg http://www.wikidata.org/entity/Q15632166 Point(6.91258 51.0148) +https://nwbib.de/spatial#Q1250591 http://www.wikidata.org/entity/Q1250591 Brechten http://www.wikidata.org/entity/Q253019 Point(7.46667 51.5833) +https://nwbib.de/spatial#Q1471934 http://www.wikidata.org/entity/Q1471934 Sinthern http://www.wikidata.org/entity/Q253019 Point(6.78075 50.9747) +https://nwbib.de/spatial#Q56008108 http://www.wikidata.org/entity/Q56008108 Laacherhof http://www.wikidata.org/entity/Q253019 Point(6.923111111 51.083416666) +https://nwbib.de/spatial#Q1572677 http://www.wikidata.org/entity/Q1572677 Hambach http://www.wikidata.org/entity/Q253019 Point(6.45 50.9) +https://nwbib.de/spatial#Q59138732 http://www.wikidata.org/entity/Q59138732 Stadtbezirk Schildesche http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59140253 http://www.wikidata.org/entity/Q59140253 Stadtbezirk Gelsenkirchen-Nord http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q2148291 http://www.wikidata.org/entity/Q2148291 Spyck http://www.wikidata.org/entity/Q253019 Point(6.17 51.83556) +https://nwbib.de/spatial#Q923086 http://www.wikidata.org/entity/Q923086 Eidinghausen http://www.wikidata.org/entity/Q253019 Point(8.79806 52.2222) +https://nwbib.de/spatial#Q1855196 http://www.wikidata.org/entity/Q1855196 Welz http://www.wikidata.org/entity/Q253019 Point(6.25889 50.9603) +https://nwbib.de/spatial#Q58456 http://www.wikidata.org/entity/Q58456 Schalksmühle http://www.wikidata.org/entity/Q262166 Point(7.533333333 51.240277777) +https://nwbib.de/spatial#Q182938 http://www.wikidata.org/entity/Q182938 Preußisch Oldendorf http://www.wikidata.org/entity/Q42744322 Point(8.5 52.283333333) +https://nwbib.de/spatial#Q1255779 http://www.wikidata.org/entity/Q1255779 Drankhausen http://www.wikidata.org/entity/Q253019 Point(9.20768 51.6171) +https://nwbib.de/spatial#Q4175 http://www.wikidata.org/entity/Q4175 Ibbenbüren http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.716666666 52.277777777) +https://nwbib.de/spatial#Q835962 http://www.wikidata.org/entity/Q835962 Kleinbüllesheim http://www.wikidata.org/entity/Q253019 Point(6.824444444 50.674444444) +https://nwbib.de/spatial#Q896823 http://www.wikidata.org/entity/Q896823 Gievenbeck http://www.wikidata.org/entity/Q253019 Point(7.575 51.9667) +https://nwbib.de/spatial#Q2135747 http://www.wikidata.org/entity/Q2135747 Recklingsen http://www.wikidata.org/entity/Q253019 Point(7.99606 51.6234) +https://nwbib.de/spatial#Q177864 http://www.wikidata.org/entity/Q177864 Bausenhagen http://www.wikidata.org/entity/Q253019 Point(7.80167 51.5069) +https://nwbib.de/spatial#Q254649 http://www.wikidata.org/entity/Q254649 Eitorf http://www.wikidata.org/entity/Q262166 Point(7.451666666 50.769722222) +https://nwbib.de/spatial#Q1248779 http://www.wikidata.org/entity/Q1248779 Milse http://www.wikidata.org/entity/Q253019 Point(8.6025 52.0553) +https://nwbib.de/spatial#Q1382464 http://www.wikidata.org/entity/Q1382464 Evingsen http://www.wikidata.org/entity/Q253019 Point(7.7294 51.3065) +https://nwbib.de/spatial#Q1292052 http://www.wikidata.org/entity/Q1292052 Lanzenbach http://www.wikidata.org/entity/Q253019 Point(7.30984 50.7494) +https://nwbib.de/spatial#Q2161088 http://www.wikidata.org/entity/Q2161088 Rodert http://www.wikidata.org/entity/Q253019 Point(6.774833333 50.549991666) +https://nwbib.de/spatial#Q1739726 http://www.wikidata.org/entity/Q1739726 Kervendonk http://www.wikidata.org/entity/Q253019 Point(6.26447 51.6088) +https://nwbib.de/spatial#Q2584967 http://www.wikidata.org/entity/Q2584967 Winterborn http://www.wikidata.org/entity/Q253019 Point(7.58806 50.9133) +https://nwbib.de/spatial#Q1376273 http://www.wikidata.org/entity/Q1376273 Heide http://www.wikidata.org/entity/Q253019 Point(7.4725 50.8875) +https://nwbib.de/spatial#Q55988759 http://www.wikidata.org/entity/Q55988759 Hees http://www.wikidata.org/entity/Q253019 Point(6.170194444 51.611444444) +https://nwbib.de/spatial#Q1977189 http://www.wikidata.org/entity/Q1977189 Nemmenich http://www.wikidata.org/entity/Q253019 Point(6.685833333 50.689722222) +https://nwbib.de/spatial#Q15718877 http://www.wikidata.org/entity/Q15718877 Neuenkamp http://www.wikidata.org/entity/Q2983893 Point(6.72732 51.43406) +https://nwbib.de/spatial#Q117769 http://www.wikidata.org/entity/Q117769 Schönemark http://www.wikidata.org/entity/Q253019 Point(8.935833333 51.907777777) +https://nwbib.de/spatial#Q1378663 http://www.wikidata.org/entity/Q1378663 Kreis Bünde http://www.wikidata.org/entity/Q106658 Point(8.56934 52.2177) +https://nwbib.de/spatial#Q17124794 http://www.wikidata.org/entity/Q17124794 Moese http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.39113 51.75683) +https://nwbib.de/spatial#Q56099214 http://www.wikidata.org/entity/Q56099214 Niersenbruch http://www.wikidata.org/entity/Q253019 Point(6.53225 51.51425) +https://nwbib.de/spatial#Q66132704 http://www.wikidata.org/entity/Q66132704 Wissen http://www.wikidata.org/entity/Q253019 Point(6.221667 51.614444) +https://nwbib.de/spatial#Q1627299 http://www.wikidata.org/entity/Q1627299 Honsberg http://www.wikidata.org/entity/Q2983893 Point(7.18389 51.1719) +https://nwbib.de/spatial#Q56597785 http://www.wikidata.org/entity/Q56597785 Annaberg http://www.wikidata.org/entity/Q253019 Point(6.577166666 51.543861111) +https://nwbib.de/spatial#Q61726089 http://www.wikidata.org/entity/Q61726089 Waat http://www.wikidata.org/entity/Q253019 Point(6.494444444 51.143944444) +https://nwbib.de/spatial#Q474482 http://www.wikidata.org/entity/Q474482 Ampen http://www.wikidata.org/entity/Q253019 Point(8.05333 51.5528) +https://nwbib.de/spatial#Q1756787 http://www.wikidata.org/entity/Q1756787 Ossenberg http://www.wikidata.org/entity/Q253019 Point(6.57991 51.5694) +https://nwbib.de/spatial#Q995744 http://www.wikidata.org/entity/Q995744 Bröl http://www.wikidata.org/entity/Q253019 Point(7.32833 50.7911) +https://nwbib.de/spatial#N54 http://www.wikidata.org/entity/Q67206648 Kleinere weltliche Territorien im Rheinland http://www.wikidata.org/entity/Q16889133 +https://nwbib.de/spatial#Q1787383 http://www.wikidata.org/entity/Q1787383 Kreis Lippstadt http://www.wikidata.org/entity/Q106658 Point(8.35 51.6667) +https://nwbib.de/spatial#Q1539317 http://www.wikidata.org/entity/Q1539317 Obersteinbeck http://www.wikidata.org/entity/Q253019 Point(7.65 52.3458) +https://nwbib.de/spatial#Q1570311 http://www.wikidata.org/entity/Q1570311 Halberbracht http://www.wikidata.org/entity/Q253019 Point(8.08694 51.1367) +https://nwbib.de/spatial#Q2358130 http://www.wikidata.org/entity/Q2358130 Stuckenbusch http://www.wikidata.org/entity/Q253019 Point(7.17678 51.5915) +https://nwbib.de/spatial#Q28109555 http://www.wikidata.org/entity/Q28109555 Spormecke http://www.wikidata.org/entity/Q253019 Point(7.568694 51.257806) +https://nwbib.de/spatial#Q17543808 http://www.wikidata.org/entity/Q17543808 Persebeck-Kruckel-Schnee http://www.wikidata.org/entity/Q253019 Point(7.4 51.45) +https://nwbib.de/spatial#Q44290573 http://www.wikidata.org/entity/Q44290573 Büngern http://www.wikidata.org/entity/Q253019 Point(6.678611111 51.81) +https://nwbib.de/spatial#Q591601 http://www.wikidata.org/entity/Q591601 Schmidt http://www.wikidata.org/entity/Q253019 Point(6.40944 50.6586) +https://nwbib.de/spatial#Q2229979 http://www.wikidata.org/entity/Q2229979 Schaephuysen http://www.wikidata.org/entity/Q253019 Point(6.48389 51.4422) +https://nwbib.de/spatial#Q1440777 http://www.wikidata.org/entity/Q1440777 Reusrath http://www.wikidata.org/entity/Q253019 Point(6.97294 51.0848) +https://nwbib.de/spatial#Q1624335 http://www.wikidata.org/entity/Q1624335 Lichtenplatz http://www.wikidata.org/entity/Q253019 Point(7.19056 51.2464) +https://nwbib.de/spatial#Q897473 http://www.wikidata.org/entity/Q897473 Brake http://www.wikidata.org/entity/Q253019 Point(8.60611 52.07) +https://nwbib.de/spatial#Q1403770 http://www.wikidata.org/entity/Q1403770 Westick http://www.wikidata.org/entity/Q253019 Point(7.62556 51.575) +https://nwbib.de/spatial#Q1248160 http://www.wikidata.org/entity/Q1248160 Merbeck http://www.wikidata.org/entity/Q253019 Point(6.24861 51.1736) +https://nwbib.de/spatial#Q39695707 http://www.wikidata.org/entity/Q39695707 Amtmannscherf http://www.wikidata.org/entity/Q253019 Point(7.155769 51.026663) +https://nwbib.de/spatial#Q15134144 http://www.wikidata.org/entity/Q15134144 Vollmerhausen http://www.wikidata.org/entity/Q253019 Point(7.55305556 50.98972222) +https://nwbib.de/spatial#Q117777 http://www.wikidata.org/entity/Q117777 Spork-Eichholz http://www.wikidata.org/entity/Q253019 Point(8.90111 51.9197) +https://nwbib.de/spatial#Q883320 http://www.wikidata.org/entity/Q883320 Rath/Heumar http://www.wikidata.org/entity/Q15632166 Point(7.081666666 50.921388888) +https://nwbib.de/spatial#Q19968107 http://www.wikidata.org/entity/Q19968107 Wersbach http://www.wikidata.org/entity/Q253019 Point(7.11297222 51.108) +https://nwbib.de/spatial#Q182753 http://www.wikidata.org/entity/Q182753 Hüllhorst http://www.wikidata.org/entity/Q262166 Point(8.666666666 52.283333333) +https://nwbib.de/spatial#Q1669317 http://www.wikidata.org/entity/Q1669317 Merlsheim http://www.wikidata.org/entity/Q253019 Point(9.0253 51.7956) +https://nwbib.de/spatial#Q204743 http://www.wikidata.org/entity/Q204743 Selfkant http://www.wikidata.org/entity/Q262166 Point(5.916666666 51.016666666) +https://nwbib.de/spatial#Q6896 http://www.wikidata.org/entity/Q6896 Rheda-Wiedenbrück http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.3 51.841666666) +https://nwbib.de/spatial#Q683292 http://www.wikidata.org/entity/Q683292 Neuehrenfeld http://www.wikidata.org/entity/Q15632166 Point(6.93583 50.9567) +https://nwbib.de/spatial#Q14906310 http://www.wikidata.org/entity/Q14906310 Apweiler http://www.wikidata.org/entity/Q253019 Point(6.1925 50.9533) +https://nwbib.de/spatial#Q55499826 http://www.wikidata.org/entity/Q55499826 Haßley http://www.wikidata.org/entity/Q253019 Point(7.530555555 51.353333333) +https://nwbib.de/spatial#Q1313398 http://www.wikidata.org/entity/Q1313398 Eiserfeld http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q42744322 Point(7.98861 50.8358) +https://nwbib.de/spatial#Q1489419 http://www.wikidata.org/entity/Q1489419 Wielpütz http://www.wikidata.org/entity/Q253019 Point(7.22869 50.8658) +https://nwbib.de/spatial#Q241358 http://www.wikidata.org/entity/Q241358 Schleiden http://www.wikidata.org/entity/Q42744322 Point(6.466666666 50.533055555) +https://nwbib.de/spatial#Q17679522 http://www.wikidata.org/entity/Q17679522 Kurl-Husen http://www.wikidata.org/entity/Q253019 Point(7.58333 51.55) +https://nwbib.de/spatial#Q2366330 http://www.wikidata.org/entity/Q2366330 Sundwig http://www.wikidata.org/entity/Q253019 Point(7.77167 51.3758) +https://nwbib.de/spatial#Q2139844 http://www.wikidata.org/entity/Q2139844 Reichswalde http://www.wikidata.org/entity/Q253019 Point(6.09778 51.7611) +https://nwbib.de/spatial#Q551530 http://www.wikidata.org/entity/Q551530 Herzogtum Arenberg http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q26879769 Point(4.7019 50.8792) +https://nwbib.de/spatial#Q459769 http://www.wikidata.org/entity/Q459769 Benrath http://www.wikidata.org/entity/Q1852178 Point(6.87389 51.1614) +https://nwbib.de/spatial#Q1716872 http://www.wikidata.org/entity/Q1716872 Jüngersdorf http://www.wikidata.org/entity/Q253019 Point(6.375 50.810277777) +https://nwbib.de/spatial#Q1028921 http://www.wikidata.org/entity/Q1028921 Langenich http://www.wikidata.org/entity/Q253019 Point(6.6725 50.862777777) +https://nwbib.de/spatial#Q59207767 http://www.wikidata.org/entity/Q59207767 Stadtbezirk Hiltrup http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q163425 http://www.wikidata.org/entity/Q163425 Ückesdorf http://www.wikidata.org/entity/Q253019 Point(7.06438 50.6913) +https://nwbib.de/spatial#Q55498123 http://www.wikidata.org/entity/Q55498123 Kabel http://www.wikidata.org/entity/Q253019 Point(7.48 51.402222222) +https://nwbib.de/spatial#Q31553414 http://www.wikidata.org/entity/Q31553414 Arnsberger Wald http://www.wikidata.org/entity/Q4421 Point(8.12818 51.44979) +https://nwbib.de/spatial#Q1487002 http://www.wikidata.org/entity/Q1487002 Homert http://www.wikidata.org/entity/Q8502 Point(8.10639 51.2644) +https://nwbib.de/spatial#Q400169 http://www.wikidata.org/entity/Q400169 Ahe http://www.wikidata.org/entity/Q253019 Point(6.65861 50.9261) +https://nwbib.de/spatial#Q1625527 http://www.wikidata.org/entity/Q1625527 Holzhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.14 50.735) +https://nwbib.de/spatial#Q1254407 http://www.wikidata.org/entity/Q1254407 Wockerath http://www.wikidata.org/entity/Q253019 Point(6.34528 51.0747) +https://nwbib.de/spatial#Q1321879 http://www.wikidata.org/entity/Q1321879 Leese http://www.wikidata.org/entity/Q253019 Point(8.85967 52.0439) +https://nwbib.de/spatial#Q1446244 http://www.wikidata.org/entity/Q1446244 Waldorf http://www.wikidata.org/entity/Q253019 Point(6.61667 50.3833) +https://nwbib.de/spatial#Q47012203 http://www.wikidata.org/entity/Q47012203 Walsum http://www.wikidata.org/entity/Q253019 Point(6.717416666 51.526694444) +https://nwbib.de/spatial#Q1119843 http://www.wikidata.org/entity/Q1119843 Tengern http://www.wikidata.org/entity/Q253019 Point(8.70083 52.2537) +https://nwbib.de/spatial#Q6924 http://www.wikidata.org/entity/Q6924 Gronau http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.041666666 52.2125) +https://nwbib.de/spatial#Q1003109 http://www.wikidata.org/entity/Q1003109 Buisdorf http://www.wikidata.org/entity/Q253019 Point(7.23197 50.7824) +https://nwbib.de/spatial#Q1562104 http://www.wikidata.org/entity/Q1562104 Gürzenich http://www.wikidata.org/entity/Q253019 Point(6.44139 50.7906) +https://nwbib.de/spatial#Q1381629 http://www.wikidata.org/entity/Q1381629 Kollerbeck http://www.wikidata.org/entity/Q253019 Point(9.24001 51.8548) +https://nwbib.de/spatial#Q1325041 http://www.wikidata.org/entity/Q1325041 Elbach http://www.wikidata.org/entity/Q253019 Point(7.45917 51.0272) +https://nwbib.de/spatial#Q1469580 http://www.wikidata.org/entity/Q1469580 Frohlinde http://www.wikidata.org/entity/Q253019 Point(7.35347 51.53) +https://nwbib.de/spatial#Q54803602 http://www.wikidata.org/entity/Q54803602 Stadtbezirk VI (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1303799 http://www.wikidata.org/entity/Q1303799 Eikeloh http://www.wikidata.org/entity/Q253019 Point(8.39972 51.62) +https://nwbib.de/spatial#Q2596680 http://www.wikidata.org/entity/Q2596680 Würdinghausen http://www.wikidata.org/entity/Q253019 Point(8.12056 51.0853) +https://nwbib.de/spatial#Q1825949 http://www.wikidata.org/entity/Q1825949 Linde http://www.wikidata.org/entity/Q253019 Point(7.32167 51.0197) +https://nwbib.de/spatial#Q1958401 http://www.wikidata.org/entity/Q1958401 Mühleip http://www.wikidata.org/entity/Q253019 Point(7.45135 50.7312) +https://nwbib.de/spatial#Q6114 http://www.wikidata.org/entity/Q6114 Braunsfeld http://www.wikidata.org/entity/Q15632166 Point(6.90028 50.9369) +https://nwbib.de/spatial#Q63078887 http://www.wikidata.org/entity/Q63078887 Kirchenkreis An der Ruhr http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q200698 http://www.wikidata.org/entity/Q200698 Glehn http://www.wikidata.org/entity/Q253019 Point(6.59444 50.6033) +https://nwbib.de/spatial#Q2282613 http://www.wikidata.org/entity/Q2282613 Siedlung Eisenheim http://www.wikidata.org/entity/Q2983893 Point(6.86593 51.5029) +https://nwbib.de/spatial#Q1226548 http://www.wikidata.org/entity/Q1226548 Dinker http://www.wikidata.org/entity/Q253019 Point(7.96365 51.6426) +https://nwbib.de/spatial#Q1609562 http://www.wikidata.org/entity/Q1609562 Herchen http://www.wikidata.org/entity/Q253019 Point(7.515 50.7806) +https://nwbib.de/spatial#Q991968 http://www.wikidata.org/entity/Q991968 Bruchhausen http://www.wikidata.org/entity/Q253019 Point(9.28861 51.7053) +https://nwbib.de/spatial#Q1743182 http://www.wikidata.org/entity/Q1743182 Liedberg http://www.wikidata.org/entity/Q253019 Point(6.54176 51.1699) +https://nwbib.de/spatial#Q53907 http://www.wikidata.org/entity/Q53907 Vlotho http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q3957 Point(8.849722222 52.166666666) +https://nwbib.de/spatial#Q650721 http://www.wikidata.org/entity/Q650721 Sechtem http://www.wikidata.org/entity/Q253019 Point(6.953055555 50.790277777) +https://nwbib.de/spatial#Q1264301 http://www.wikidata.org/entity/Q1264301 Duissern http://www.wikidata.org/entity/Q253019 Point(6.790555555 51.435277777) +https://nwbib.de/spatial#Q1104 http://www.wikidata.org/entity/Q1104 Hemer http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.766666666 51.383333333) +https://nwbib.de/spatial#Q2539468 http://www.wikidata.org/entity/Q2539468 Wahlen http://www.wikidata.org/entity/Q253019 Point(6.55806 50.4861) +https://nwbib.de/spatial#Q11145 http://www.wikidata.org/entity/Q11145 Welver http://www.wikidata.org/entity/Q262166 Point(7.958333333 51.616666666) +https://nwbib.de/spatial#Q1003093 http://www.wikidata.org/entity/Q1003093 Buir http://www.wikidata.org/entity/Q253019 Point(6.58278 50.8592) +https://nwbib.de/spatial#Q1504995 http://www.wikidata.org/entity/Q1504995 Ottenheim http://www.wikidata.org/entity/Q253019 Point(6.81638889 50.705) +https://nwbib.de/spatial#Q2036158 http://www.wikidata.org/entity/Q2036158 Osttünnen http://www.wikidata.org/entity/Q253019 Point(7.88569 51.6445) +https://nwbib.de/spatial#Q316951 http://www.wikidata.org/entity/Q316951 Kalterherberg http://www.wikidata.org/entity/Q253019 Point(6.220277777 50.521111111) +https://nwbib.de/spatial#Q2268372 http://www.wikidata.org/entity/Q2268372 Selkentrop http://www.wikidata.org/entity/Q253019 Point(8.21478 51.1677) +https://nwbib.de/spatial#Q59259723 http://www.wikidata.org/entity/Q59259723 Stadtbezirk Siegen-Ost http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59035909 http://www.wikidata.org/entity/Q59035909 Erberich http://www.wikidata.org/entity/Q253019 Point(7.108452777 51.050497222) +https://nwbib.de/spatial#Q4615 http://www.wikidata.org/entity/Q4615 Elsdorf http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q54935786 Point(6.566666666 50.933333333) +https://nwbib.de/spatial#Q1411352 http://www.wikidata.org/entity/Q1411352 Lieck http://www.wikidata.org/entity/Q253019 Point(6.0809 51.0654) +https://nwbib.de/spatial#Q315481 http://www.wikidata.org/entity/Q315481 Angermund http://www.wikidata.org/entity/Q253019 Point(6.78011 51.33) +https://nwbib.de/spatial#Q894873 http://www.wikidata.org/entity/Q894873 Bottenbroich http://www.wikidata.org/entity/Q253019 Point(6.76277 50.8938) +https://nwbib.de/spatial#Q2838 http://www.wikidata.org/entity/Q2838 Oberhausen http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q42744322 Point(6.8514 51.4699) +https://nwbib.de/spatial#Q382268 http://www.wikidata.org/entity/Q382268 Affeln http://www.wikidata.org/entity/Q253019 Point(7.856944444 51.274166666) +https://nwbib.de/spatial#Q3840 http://www.wikidata.org/entity/Q3840 Velbert http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518 Point(7.041629 51.340048) +https://nwbib.de/spatial#Q10903 http://www.wikidata.org/entity/Q10903 Finnentrop http://www.wikidata.org/entity/Q262166 Point(7.9725 51.173055555) +https://nwbib.de/spatial#Q1315076 http://www.wikidata.org/entity/Q1315076 Alchen http://www.wikidata.org/entity/Q253019 Point(7.94417 50.9006) +https://nwbib.de/spatial#Q1234818 http://www.wikidata.org/entity/Q1234818 Marbeck http://www.wikidata.org/entity/Q253019 Point(6.90083 51.8142) +https://nwbib.de/spatial#Q1278273 http://www.wikidata.org/entity/Q1278273 Kelz http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.595 50.768611111) +https://nwbib.de/spatial#Q829042 http://www.wikidata.org/entity/Q829042 Strümp http://www.wikidata.org/entity/Q253019 Point(6.659722222 51.283888888) +https://nwbib.de/spatial#Q1747394 http://www.wikidata.org/entity/Q1747394 Rehme http://www.wikidata.org/entity/Q253019 Point(8.82556 52.2133) +https://nwbib.de/spatial#Q1157420 http://www.wikidata.org/entity/Q1157420 Dahl http://www.wikidata.org/entity/Q253019 Point(7.84722 51.0017) +https://nwbib.de/spatial#Q1922073 http://www.wikidata.org/entity/Q1922073 Mersch (Jülich) http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.37889 50.9608) +https://nwbib.de/spatial#Q870650 http://www.wikidata.org/entity/Q870650 Hassel http://www.wikidata.org/entity/Q253019 Point(7.04972 51.6031) +https://nwbib.de/spatial#Q894022 http://www.wikidata.org/entity/Q894022 Borntosten http://www.wikidata.org/entity/Q253019 Point(8.84728 51.3911) +https://nwbib.de/spatial#Q1297472 http://www.wikidata.org/entity/Q1297472 Welda http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(9.110833333 51.452777777) +https://nwbib.de/spatial#Q2543195 http://www.wikidata.org/entity/Q2543195 Walpersdorf http://www.wikidata.org/entity/Q253019 Point(8.20778 50.9036) +https://nwbib.de/spatial#Q1989319 http://www.wikidata.org/entity/Q1989319 Niesen http://www.wikidata.org/entity/Q253019 Point(9.13307 51.6236) +https://nwbib.de/spatial#Q907110 http://www.wikidata.org/entity/Q907110 Brelen http://www.wikidata.org/entity/Q253019 Point(7.80333 51.4069) +https://nwbib.de/spatial#Q1683673 http://www.wikidata.org/entity/Q1683673 Mönekind http://www.wikidata.org/entity/Q253019 Point(8.30333 51.27) +https://nwbib.de/spatial#Q7379734 http://www.wikidata.org/entity/Q7379734 Kreis Aachen http://www.wikidata.org/entity/Q106658 Point(6.25 50.75) +https://nwbib.de/spatial#Q1642592 http://www.wikidata.org/entity/Q1642592 Häverstädt http://www.wikidata.org/entity/Q253019 Point(8.87083 52.2586) +https://nwbib.de/spatial#Q317729 http://www.wikidata.org/entity/Q317729 Gymnich http://www.wikidata.org/entity/Q253019 Point(6.75 50.833888888) +https://nwbib.de/spatial#Q1250693 http://www.wikidata.org/entity/Q1250693 Schnee http://www.wikidata.org/entity/Q253019 Point(7.42 51.4308) +https://nwbib.de/spatial#Q241235 http://www.wikidata.org/entity/Q241235 Blankenheim http://www.wikidata.org/entity/Q262166 Point(6.65 50.433055555) +https://nwbib.de/spatial#Q2498068 http://www.wikidata.org/entity/Q2498068 Untermaubach http://www.wikidata.org/entity/Q253019 Point(6.456388888 50.726666666) +https://nwbib.de/spatial#Q20826158 http://www.wikidata.org/entity/Q20826158 Rhynern http://www.wikidata.org/entity/Q253019 Point(7.84666667 51.62861111) +https://nwbib.de/spatial#Q2066 http://www.wikidata.org/entity/Q2066 Essen http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q1907114, http://www.wikidata.org/entity/Q707813 Point(7.013055555 51.450833333) +https://nwbib.de/spatial#Q153745 http://www.wikidata.org/entity/Q153745 Beuel http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q42744322 Point(7.121666666 50.734166666) +https://nwbib.de/spatial#Q6249 http://www.wikidata.org/entity/Q6249 Kreis Viersen http://www.wikidata.org/entity/Q20738811 Point(6.4 51.27) +https://nwbib.de/spatial#Q1570787 http://www.wikidata.org/entity/Q1570787 Haldern http://www.wikidata.org/entity/Q2983893 Point(6.45806 51.77361) +https://nwbib.de/spatial#Q1787374 http://www.wikidata.org/entity/Q1787374 Kreis Lechenich http://www.wikidata.org/entity/Q106658 Point(6.772266111 50.800331944) +https://nwbib.de/spatial#Q146853 http://www.wikidata.org/entity/Q146853 Zange http://www.wikidata.org/entity/Q253019 Point(7.19956 50.7926) +https://nwbib.de/spatial#Q1796600 http://www.wikidata.org/entity/Q1796600 Körbecke http://www.wikidata.org/entity/Q253019 Point(9.28206 51.5349) +https://nwbib.de/spatial#Q1631836 http://www.wikidata.org/entity/Q1631836 Wulmeringhausen http://www.wikidata.org/entity/Q253019 Point(8.48917 51.3139) +https://nwbib.de/spatial#Q19968091 http://www.wikidata.org/entity/Q19968091 Wasserkurl http://www.wikidata.org/entity/Q253019 Point(7.625 51.56) +https://nwbib.de/spatial#Q2255451 http://www.wikidata.org/entity/Q2255451 Schweicheln-Bermbeck http://www.wikidata.org/entity/Q253019 Point(8.66889 52.1583) +https://nwbib.de/spatial#Q1704362 http://www.wikidata.org/entity/Q1704362 Kastor http://www.wikidata.org/entity/Q253019 Point(7.34528 50.9803) +https://nwbib.de/spatial#Q2416466 http://www.wikidata.org/entity/Q2416466 Theenhausen http://www.wikidata.org/entity/Q253019 Point(8.36833 52.109) +https://nwbib.de/spatial#Q2291534 http://www.wikidata.org/entity/Q2291534 Hillmicke http://www.wikidata.org/entity/Q253019 Point(7.813889 50.976389) +https://nwbib.de/spatial#Q1692676 http://www.wikidata.org/entity/Q1692676 Niederberg http://www.wikidata.org/entity/Q253019 Point(6.76944 50.7353) +https://nwbib.de/spatial#Q328649 http://www.wikidata.org/entity/Q328649 Burtscheid http://www.wikidata.org/entity/Q253019 Point(6.112222 50.765556) +https://nwbib.de/spatial#Q258118 http://www.wikidata.org/entity/Q258118 Heisingen http://www.wikidata.org/entity/Q253019 Point(7.065 51.403889) +https://nwbib.de/spatial#Q201061 http://www.wikidata.org/entity/Q201061 Silberg http://www.wikidata.org/entity/Q253019 Point(8.03333 51.0333) +https://nwbib.de/spatial#Q163570 http://www.wikidata.org/entity/Q163570 Tönisvorst http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.493055555 51.320833333) +https://nwbib.de/spatial#Q1632788 http://www.wikidata.org/entity/Q1632788 Kuchhausen http://www.wikidata.org/entity/Q253019 Point(7.56722 50.7483) +https://nwbib.de/spatial#Q16064919 http://www.wikidata.org/entity/Q16064919 Grünewiese http://www.wikidata.org/entity/Q253019 Point(7.648695 51.257555) +https://nwbib.de/spatial#Q1529265 http://www.wikidata.org/entity/Q1529265 Maumke http://www.wikidata.org/entity/Q253019 Point(8.05167 51.1211) +https://nwbib.de/spatial#Q2594846 http://www.wikidata.org/entity/Q2594846 Wulfen http://www.wikidata.org/entity/Q253019 Point(7.017 51.717) +https://nwbib.de/spatial#Q1816286 http://www.wikidata.org/entity/Q1816286 Leitmar http://www.wikidata.org/entity/Q253019 Point(8.86736 51.403) +https://nwbib.de/spatial#Q56084804 http://www.wikidata.org/entity/Q56084804 Niederwald http://www.wikidata.org/entity/Q253019 Point(6.430444444 51.554388888) +https://nwbib.de/spatial#Q1587141 http://www.wikidata.org/entity/Q1587141 Harth http://www.wikidata.org/entity/Q253019 Point(8.57972 51.5042) +https://nwbib.de/spatial#Q1587685 http://www.wikidata.org/entity/Q1587685 Hartum http://www.wikidata.org/entity/Q253019 Point(8.820277777 52.313888888) +https://nwbib.de/spatial#Q440267 http://www.wikidata.org/entity/Q440267 Altglück http://www.wikidata.org/entity/Q253019 Point(7.33444 50.7097) +https://nwbib.de/spatial#Q1827438 http://www.wikidata.org/entity/Q1827438 Lippe http://www.wikidata.org/entity/Q253019 Point(8.05833 50.7083) +https://nwbib.de/spatial#Q1496828 http://www.wikidata.org/entity/Q1496828 Geber http://www.wikidata.org/entity/Q253019 Point(7.26351 50.8486) +https://nwbib.de/spatial#Q1731353 http://www.wikidata.org/entity/Q1731353 Schlüsselburg http://www.wikidata.org/entity/Q253019 Point(9.07028 52.4819) +https://nwbib.de/spatial#Q2179384 http://www.wikidata.org/entity/Q2179384 Rödingen http://www.wikidata.org/entity/Q253019 Point(6.459166666 50.965555555) +https://nwbib.de/spatial#Q1617638 http://www.wikidata.org/entity/Q1617638 Hiesfeld http://www.wikidata.org/entity/Q2983893 Point(6.76417 51.5625) +https://nwbib.de/spatial#Q1157444 http://www.wikidata.org/entity/Q1157444 Dahlerbrück http://www.wikidata.org/entity/Q253019 Point(7.515 51.2528) +https://nwbib.de/spatial#Q1797252 http://www.wikidata.org/entity/Q1797252 Küppersteg http://www.wikidata.org/entity/Q253019 Point(7.00241 51.0522) +https://nwbib.de/spatial#Q884451 http://www.wikidata.org/entity/Q884451 Mehlem http://www.wikidata.org/entity/Q253019 Point(7.191944444 50.660833333) +https://nwbib.de/spatial#Q2232647 http://www.wikidata.org/entity/Q2232647 Scheideweg http://www.wikidata.org/entity/Q253019 Point(7.29417 51.1367) +https://nwbib.de/spatial#Q1625212 http://www.wikidata.org/entity/Q1625212 Holthausen http://www.wikidata.org/entity/Q253019 Point(8.34083 51.1825) +https://nwbib.de/spatial#Q908114 http://www.wikidata.org/entity/Q908114 Bremke http://www.wikidata.org/entity/Q253019 Point(9.10814 52.1255) +https://nwbib.de/spatial#Q1686522 http://www.wikidata.org/entity/Q1686522 Wehringhausen http://www.wikidata.org/entity/Q253019 Point(7.458519444 51.3527) +https://nwbib.de/spatial#Q1158611 http://www.wikidata.org/entity/Q1158611 Damm http://www.wikidata.org/entity/Q253019 Point(6.7995 51.6801) +https://nwbib.de/spatial#Q1946909 http://www.wikidata.org/entity/Q1946909 Moorshoven http://www.wikidata.org/entity/Q253019 Point(6.31889 51.1278) +https://nwbib.de/spatial#Q458126 http://www.wikidata.org/entity/Q458126 Köln-Ehrenfeld (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(6.91833 50.9464) +https://nwbib.de/spatial#Q47461972 http://www.wikidata.org/entity/Q47461972 Kirchenkreis Arnsberg http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462060 http://www.wikidata.org/entity/Q47462060 Kirchenkreis Bochum http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462240 http://www.wikidata.org/entity/Q47462240 Kirchenkreis Schwelm http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462263 http://www.wikidata.org/entity/Q47462263 Kirchenkreis Tecklenburg http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q876233 http://www.wikidata.org/entity/Q876233 Flehe http://www.wikidata.org/entity/Q1852178 Point(6.77222 51.1878) +https://nwbib.de/spatial#Q2042260 http://www.wikidata.org/entity/Q2042260 Ovenhausen http://www.wikidata.org/entity/Q253019 Point(9.29898 51.7777) +https://nwbib.de/spatial#Q11119 http://www.wikidata.org/entity/Q11119 Warstein http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.366666666 51.45) +https://nwbib.de/spatial#Q1368655 http://www.wikidata.org/entity/Q1368655 Westviertel http://www.wikidata.org/entity/Q253019 Point(6.998889 51.456389) +https://nwbib.de/spatial#Q1987628 http://www.wikidata.org/entity/Q1987628 Niederbergheim http://www.wikidata.org/entity/Q253019 Point(8.226111111 51.476111111) +https://nwbib.de/spatial#Q96877974 http://www.wikidata.org/entity/Q96877974 Belmen http://www.wikidata.org/entity/Q253019 Point(6.572027777 51.086) +https://nwbib.de/spatial#Q572216 http://www.wikidata.org/entity/Q572216 Antfeld http://www.wikidata.org/entity/Q253019 Point(8.46639 51.3731) +https://nwbib.de/spatial#Q6597667 http://www.wikidata.org/entity/Q6597667 Asbeck http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.31833 51.3417) +https://nwbib.de/spatial#Q47012334 http://www.wikidata.org/entity/Q47012334 Knechtsteden http://www.wikidata.org/entity/Q253019 Point(6.761722222 51.087027777) +https://nwbib.de/spatial#Q21042080 http://www.wikidata.org/entity/Q21042080 Scherpenberg http://www.wikidata.org/entity/Q253019 Point(6.67444444 51.44972222) +https://nwbib.de/spatial#Q1561876 http://www.wikidata.org/entity/Q1561876 Hellerhof http://www.wikidata.org/entity/Q1852178 Point(6.90814 51.1324) +https://nwbib.de/spatial#Q1243986 http://www.wikidata.org/entity/Q1243986 Niederrheinische Bucht http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q2015310 http://www.wikidata.org/entity/Q2015310 Oetinghausen http://www.wikidata.org/entity/Q253019 Point(8.619166666 52.143333333) +https://nwbib.de/spatial#Q4192 http://www.wikidata.org/entity/Q4192 Bergkamen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.633333333 51.616666666) +https://nwbib.de/spatial#Q1309282 http://www.wikidata.org/entity/Q1309282 Lichtenbroich http://www.wikidata.org/entity/Q1852178 Point(6.78333 51.2683) +https://nwbib.de/spatial#Q1795729 http://www.wikidata.org/entity/Q1795729 Wildenrath http://www.wikidata.org/entity/Q253019 Point(6.183333333 51.116666666) +https://nwbib.de/spatial#Q19968116 http://www.wikidata.org/entity/Q19968116 Westhemmerde http://www.wikidata.org/entity/Q253019 Point(7.78666687 51.54722214) +https://nwbib.de/spatial#Q1034822 http://www.wikidata.org/entity/Q1034822 Cappel http://www.wikidata.org/entity/Q253019 Point(8.99778 51.9572) +https://nwbib.de/spatial#Q1718 http://www.wikidata.org/entity/Q1718 Düsseldorf http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q14784328, http://www.wikidata.org/entity/Q15253706, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591 Point(6.772380555 51.231144444) +https://nwbib.de/spatial#Q1732504 http://www.wikidata.org/entity/Q1732504 Neu-Elfgen http://www.wikidata.org/entity/Q253019 Point(6.56918 51.0869) +https://nwbib.de/spatial#Q241655 http://www.wikidata.org/entity/Q241655 Marienmünster http://www.wikidata.org/entity/Q42744322 Point(9.183055555 51.816666666) +https://nwbib.de/spatial#Q24035846 http://www.wikidata.org/entity/Q24035846 Hasseldelle http://www.wikidata.org/entity/Q253019 Point(7.107442777 51.18206) +https://nwbib.de/spatial#Q180116 http://www.wikidata.org/entity/Q180116 Atteln http://www.wikidata.org/entity/Q253019 Point(8.8 51.6) +https://nwbib.de/spatial#Q827068 http://www.wikidata.org/entity/Q827068 Berrenrath http://www.wikidata.org/entity/Q253019 Point(6.81333 50.8756) +https://nwbib.de/spatial#Q314047 http://www.wikidata.org/entity/Q314047 Kirchhellen http://www.wikidata.org/entity/Q253019 Point(6.92194 51.6047) +https://nwbib.de/spatial#Q1579548 http://www.wikidata.org/entity/Q1579548 Hemmerde http://www.wikidata.org/entity/Q253019 Point(7.81194 51.5467) +https://nwbib.de/spatial#Q2015281 http://www.wikidata.org/entity/Q2015281 Oestrich http://www.wikidata.org/entity/Q253019 Point(7.63306 51.3722) +https://nwbib.de/spatial#Q1686779 http://www.wikidata.org/entity/Q1686779 Twismecke http://www.wikidata.org/entity/Q253019 Point(8.23627 51.2366) +https://nwbib.de/spatial#Q1184019 http://www.wikidata.org/entity/Q1184019 Delbrücker Land http://www.wikidata.org/entity/Q82794 Point(8.59543 51.7908) +https://nwbib.de/spatial#Q61726764 http://www.wikidata.org/entity/Q61726764 Schaan http://www.wikidata.org/entity/Q253019 Point(6.488055555 51.112638888) +https://nwbib.de/spatial#Q56033664 http://www.wikidata.org/entity/Q56033664 Dorp http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q15132395 http://www.wikidata.org/entity/Q15132395 Todenfeld http://www.wikidata.org/entity/Q253019 Point(6.94775 50.57744) +https://nwbib.de/spatial#Q1591063 http://www.wikidata.org/entity/Q1591063 Hausdorp http://www.wikidata.org/entity/Q253019 Point(7.26758 50.8738) +https://nwbib.de/spatial#Q1524924 http://www.wikidata.org/entity/Q1524924 Neu-Bottenbroich http://www.wikidata.org/entity/Q253019 Point(6.72182 50.9144) +https://nwbib.de/spatial#Q1345672 http://www.wikidata.org/entity/Q1345672 Floverich http://www.wikidata.org/entity/Q253019 Point(6.185833333 50.939722222) +https://nwbib.de/spatial#Q19259110 http://www.wikidata.org/entity/Q19259110 Altfinnentrop http://www.wikidata.org/entity/Q253019 Point(7.959968 51.164032) +https://nwbib.de/spatial#Q320896 http://www.wikidata.org/entity/Q320896 Stadtbezirk 2 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.813055555 51.226944444) +https://nwbib.de/spatial#Q1737863 http://www.wikidata.org/entity/Q1737863 Nierbachtal http://www.wikidata.org/entity/Q253019 Point(8.36083 51.3375) +https://nwbib.de/spatial#Q245579 http://www.wikidata.org/entity/Q245579 Burscheid http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q3957 Point(7.116666666 51.1) +https://nwbib.de/spatial#Q1250579 http://www.wikidata.org/entity/Q1250579 Asseln http://www.wikidata.org/entity/Q253019 Point(7.58333 51.5333) +https://nwbib.de/spatial#Q1250725 http://www.wikidata.org/entity/Q1250725 Wischlingen http://www.wikidata.org/entity/Q253019 Point(7.39778 51.5181) +https://nwbib.de/spatial#Q1414992 http://www.wikidata.org/entity/Q1414992 Herbern http://www.wikidata.org/entity/Q253019 Point(7.66167 51.7411) +https://nwbib.de/spatial#Q1547771 http://www.wikidata.org/entity/Q1547771 Grouven http://www.wikidata.org/entity/Q253019 Point(6.6035 50.9361) +https://nwbib.de/spatial#Q1739523 http://www.wikidata.org/entity/Q1739523 Kreis Lübbecke http://www.wikidata.org/entity/Q106658 Point(8.62306 52.3081) +https://nwbib.de/spatial#Q884418 http://www.wikidata.org/entity/Q884418 Blintrop http://www.wikidata.org/entity/Q253019 Point(7.85444 51.2906) +https://nwbib.de/spatial#Q1637057 http://www.wikidata.org/entity/Q1637057 Humfeld http://www.wikidata.org/entity/Q253019 Point(9.05595 52.0261) +https://nwbib.de/spatial#Q831793 http://www.wikidata.org/entity/Q831793 Pütz http://www.wikidata.org/entity/Q253019 Point(6.51479 50.997) +https://nwbib.de/spatial#Q47021768 http://www.wikidata.org/entity/Q47021768 Kirchenkreis Bad Godesberg-Voreifel http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1475402 http://www.wikidata.org/entity/Q1475402 Fusternberg http://www.wikidata.org/entity/Q253019 Point(6.63231 51.654) +https://nwbib.de/spatial#Q1326530 http://www.wikidata.org/entity/Q1326530 Neusserfurth http://www.wikidata.org/entity/Q2983893 Point(6.65909 51.2176) +https://nwbib.de/spatial#Q2238627 http://www.wikidata.org/entity/Q2238627 Schleckheim http://www.wikidata.org/entity/Q253019 Point(6.155 50.72) +https://nwbib.de/spatial#Q1258777 http://www.wikidata.org/entity/Q1258777 Landkreis Dortmund http://www.wikidata.org/entity/Q5283531 Point(7.465277777 51.513888888) +https://nwbib.de/spatial#Q55629960 http://www.wikidata.org/entity/Q55629960 Gerlingen http://www.wikidata.org/entity/Q253019 Point(7.85 50.988333333) +https://nwbib.de/spatial#Q1589053 http://www.wikidata.org/entity/Q1589053 Hattropholsen http://www.wikidata.org/entity/Q253019 Point(8.05863 51.5923) +https://nwbib.de/spatial#Q882757 http://www.wikidata.org/entity/Q882757 Silbach http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(8.482997222 51.229788888) +https://nwbib.de/spatial#Q830139 http://www.wikidata.org/entity/Q830139 Bessenich http://www.wikidata.org/entity/Q253019 Point(6.656388888 50.712777777) +https://nwbib.de/spatial#Q2564472 http://www.wikidata.org/entity/Q2564472 Westbevern http://www.wikidata.org/entity/Q253019 Point(7.77941 52.0225) +https://nwbib.de/spatial#Q1693885 http://www.wikidata.org/entity/Q1693885 Welper http://www.wikidata.org/entity/Q253019 Point(7.206444444 51.412111111) +https://nwbib.de/spatial#Q1980697 http://www.wikidata.org/entity/Q1980697 Neuhonrath http://www.wikidata.org/entity/Q253019 Point(7.27385 50.9001) +https://nwbib.de/spatial#Q1958710 http://www.wikidata.org/entity/Q1958710 Müllenacker http://www.wikidata.org/entity/Q253019 Point(7.47917 50.7728) +https://nwbib.de/spatial#Q54803599 http://www.wikidata.org/entity/Q54803599 Stadtbezirk III (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q54803600 http://www.wikidata.org/entity/Q54803600 Stadtbezirk IV (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q65388 http://www.wikidata.org/entity/Q65388 Hardthöhe http://www.wikidata.org/entity/Q253019 Point(7.04028 50.6992) +https://nwbib.de/spatial#Q1301831 http://www.wikidata.org/entity/Q1301831 Eicherscheid http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.30263 50.5789) +https://nwbib.de/spatial#Q1699967 http://www.wikidata.org/entity/Q1699967 Kapellen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.59722 51.4156) +https://nwbib.de/spatial#Q1368653 http://www.wikidata.org/entity/Q1368653 Südostviertel http://www.wikidata.org/entity/Q253019 Point(7.030833 51.452778) +https://nwbib.de/spatial#Q437424 http://www.wikidata.org/entity/Q437424 Altenmellrich http://www.wikidata.org/entity/Q253019 Point(8.26417 51.5331) +https://nwbib.de/spatial#Q434684 http://www.wikidata.org/entity/Q434684 Altastenberg http://www.wikidata.org/entity/Q253019 Point(8.465677777 51.189386111) +https://nwbib.de/spatial#Q1250670 http://www.wikidata.org/entity/Q1250670 Lücklemberg http://www.wikidata.org/entity/Q253019 Point(7.46722 51.4614) +https://nwbib.de/spatial#Q1262952 http://www.wikidata.org/entity/Q1262952 Kendenich http://www.wikidata.org/entity/Q253019 Point(6.88 50.8625) +https://nwbib.de/spatial#Q2130385 http://www.wikidata.org/entity/Q2130385 Ramscheid http://www.wikidata.org/entity/Q253019 Point(6.39745 50.446419444) +https://nwbib.de/spatial#Q1524922 http://www.wikidata.org/entity/Q1524922 Gindorf http://www.wikidata.org/entity/Q253019 Point(6.56296 51.074) +https://nwbib.de/spatial#Q1632070 http://www.wikidata.org/entity/Q1632070 Hoxfeld http://www.wikidata.org/entity/Q253019 Point(6.799083333 51.8435) +https://nwbib.de/spatial#Q1368623 http://www.wikidata.org/entity/Q1368623 Frillendorf http://www.wikidata.org/entity/Q253019 Point(7.046667 51.462778) +https://nwbib.de/spatial#Q1573752 http://www.wikidata.org/entity/Q1573752 Landkreis Neuß http://www.wikidata.org/entity/Q5283531 Point(6.670906944 51.115026944) +https://nwbib.de/spatial#Q2120997 http://www.wikidata.org/entity/Q2120997 Pützlohn http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(6.30472222 50.85416667) +https://nwbib.de/spatial#Q56556446 http://www.wikidata.org/entity/Q56556446 Hagenbroich http://www.wikidata.org/entity/Q253019 Point(6.353305555 51.311583333) +https://nwbib.de/spatial#Q1595195 http://www.wikidata.org/entity/Q1595195 Heiligenhoven http://www.wikidata.org/entity/Q253019 Point(7.35778 51.01) +https://nwbib.de/spatial#Q1554319 http://www.wikidata.org/entity/Q1554319 Niedersalwey http://www.wikidata.org/entity/Q253019 Point(8.12444 51.2519) +https://nwbib.de/spatial#Q19965731 http://www.wikidata.org/entity/Q19965731 Rüspe http://www.wikidata.org/entity/Q253019 Point(8.23 51.054) +https://nwbib.de/spatial#Q1474327 http://www.wikidata.org/entity/Q1474327 Kutenhausen http://www.wikidata.org/entity/Q253019 Point(8.90444 52.3322) +https://nwbib.de/spatial#Q1661581 http://www.wikidata.org/entity/Q1661581 Kardorf http://www.wikidata.org/entity/Q253019 Point(6.93833 50.7672) +https://nwbib.de/spatial#Q2142006 http://www.wikidata.org/entity/Q2142006 Reiste http://www.wikidata.org/entity/Q253019 Point(8.24277778 51.265) +https://nwbib.de/spatial#Q2135741 http://www.wikidata.org/entity/Q2135741 Recklinghausen http://www.wikidata.org/entity/Q253019 Point(8.02667 51.3077) +https://nwbib.de/spatial#Q1727374 http://www.wikidata.org/entity/Q1727374 Lössel http://www.wikidata.org/entity/Q253019 Point(7.6525 51.3492) +https://nwbib.de/spatial#Q902128 http://www.wikidata.org/entity/Q902128 Braunsrath http://www.wikidata.org/entity/Q253019 Point(6.03875 51.055638888) +https://nwbib.de/spatial#Q1252946 http://www.wikidata.org/entity/Q1252946 Doveren http://www.wikidata.org/entity/Q253019 Point(6.2475 51.0464) +https://nwbib.de/spatial#Q16107 http://www.wikidata.org/entity/Q16107 Höxter http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(9.366666666 51.766666666) +https://nwbib.de/spatial#Q1235231 http://www.wikidata.org/entity/Q1235231 Niederaden http://www.wikidata.org/entity/Q253019 Point(7.56917 51.5939) +https://nwbib.de/spatial#Q14888 http://www.wikidata.org/entity/Q14888 Ahaus http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.01344 52.07936) +https://nwbib.de/spatial#Q1250711 http://www.wikidata.org/entity/Q1250711 Westrich http://www.wikidata.org/entity/Q253019 Point(7.35056 51.5181) +https://nwbib.de/spatial#Q1491133 http://www.wikidata.org/entity/Q1491133 Gahlen http://www.wikidata.org/entity/Q253019 Point(6.875 51.6667) +https://nwbib.de/spatial#Q2532818 http://www.wikidata.org/entity/Q2532818 Volnsberg http://www.wikidata.org/entity/Q253019 Point(8.08056 50.8828) +https://nwbib.de/spatial#Q1547300 http://www.wikidata.org/entity/Q1547300 Gronau (Bergisch Gladbach) http://www.wikidata.org/entity/Q253019 Point(7.1169 50.9841) +https://nwbib.de/spatial#Q1562398 http://www.wikidata.org/entity/Q1562398 Oberdreisbach http://www.wikidata.org/entity/Q253019 Point(7.45 50.9) +https://nwbib.de/spatial#Q1243933 http://www.wikidata.org/entity/Q1243933 Ville http://www.wikidata.org/entity/Q46831 Point(6.845805555 50.853888888) +https://nwbib.de/spatial#Q1787514 http://www.wikidata.org/entity/Q1787514 Kreis Siegen http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(8.016666666 50.875555555) +https://nwbib.de/spatial#Q2971 http://www.wikidata.org/entity/Q2971 Paderborn http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322 Point(8.766666666 51.716666666) +https://nwbib.de/spatial#Q1241123 http://www.wikidata.org/entity/Q1241123 Dondorf http://www.wikidata.org/entity/Q253019 Point(7.32639 50.7661) +https://nwbib.de/spatial#Q183052 http://www.wikidata.org/entity/Q183052 Stemwede http://www.wikidata.org/entity/Q262166 Point(8.433333333 52.416666666) +https://nwbib.de/spatial#Q732024 http://www.wikidata.org/entity/Q732024 Winden http://www.wikidata.org/entity/Q253019 Point(6.48083 50.7356) +https://nwbib.de/spatial#Q245290 http://www.wikidata.org/entity/Q245290 Zyfflich http://www.wikidata.org/entity/Q253019 Point(5.973888888 51.823888888) +https://nwbib.de/spatial#Q1301094 http://www.wikidata.org/entity/Q1301094 Oberbauerschaft http://www.wikidata.org/entity/Q253019 Point(8.598611111 52.264722222) +https://nwbib.de/spatial#Q2834 http://www.wikidata.org/entity/Q2834 Wadersloh http://www.wikidata.org/entity/Q262166 Point(8.251388888 51.738611111) +https://nwbib.de/spatial#Q317702 http://www.wikidata.org/entity/Q317702 Obermarsberg http://www.wikidata.org/entity/Q253019 Point(8.85 51.466666666) +https://nwbib.de/spatial#Q33133656 http://www.wikidata.org/entity/Q33133656 Opmünden http://www.wikidata.org/entity/Q253019 Point(8.1622 51.5595) +https://nwbib.de/spatial#Q2798606 http://www.wikidata.org/entity/Q2798606 Rosmart http://www.wikidata.org/entity/Q253019 Point(7.67793 51.2497) +https://nwbib.de/spatial#Q1392863 http://www.wikidata.org/entity/Q1392863 Maaslingen http://www.wikidata.org/entity/Q253019 Point(8.90833 52.3917) +https://nwbib.de/spatial#Q1631621 http://www.wikidata.org/entity/Q1631621 Hoven (Düren) http://www.wikidata.org/entity/Q253019 Point(6.44111 50.83) +https://nwbib.de/spatial#Q1368636 http://www.wikidata.org/entity/Q1368636 Leithe http://www.wikidata.org/entity/Q253019 Point(7.096667 51.465833) +https://nwbib.de/spatial#Q6111 http://www.wikidata.org/entity/Q6111 Ense http://www.wikidata.org/entity/Q262166 Point(7.975 51.500555555) +https://nwbib.de/spatial#Q998498 http://www.wikidata.org/entity/Q998498 Buchholz http://www.wikidata.org/entity/Q253019 Point(9.01083 52.4536) +https://nwbib.de/spatial#Q1787246 http://www.wikidata.org/entity/Q1787246 Kreis Büren http://www.wikidata.org/entity/Q106658 Point(8.56667 51.55) +https://nwbib.de/spatial#Q1609702 http://www.wikidata.org/entity/Q1609702 Herdringen http://www.wikidata.org/entity/Q253019 Point(7.96556 51.4219) +https://nwbib.de/spatial#Q1621595 http://www.wikidata.org/entity/Q1621595 Hoberge-Uerentrup http://www.wikidata.org/entity/Q253019 Point(8.48639 52.0231) +https://nwbib.de/spatial#Q32860691 http://www.wikidata.org/entity/Q32860691 Neu-Listernohl http://www.wikidata.org/entity/Q253019 Point(7.876583333 51.113305555) +https://nwbib.de/spatial#Q1625546 http://www.wikidata.org/entity/Q1625546 Holzhausen II http://www.wikidata.org/entity/Q253019 Point(8.83111 52.3378) +https://nwbib.de/spatial#Q1333866 http://www.wikidata.org/entity/Q1333866 Elspe http://www.wikidata.org/entity/Q253019 Point(8.058055555 51.154166666) +https://nwbib.de/spatial#Q834780 http://www.wikidata.org/entity/Q834780 Braunshausen http://www.wikidata.org/entity/Q253019 Point(8.67991 51.1142) +https://nwbib.de/spatial#Q1760219 http://www.wikidata.org/entity/Q1760219 Kohlhagen http://www.wikidata.org/entity/Q253019 Point(8.077 51.045) +https://nwbib.de/spatial#Q894514 http://www.wikidata.org/entity/Q894514 Bosseborn http://www.wikidata.org/entity/Q253019 Point(9.30556 51.75) +https://nwbib.de/spatial#Q2035002 http://www.wikidata.org/entity/Q2035002 Ostenwalde http://www.wikidata.org/entity/Q253019 Point(7.58 52.3392) +https://nwbib.de/spatial#Q6224 http://www.wikidata.org/entity/Q6224 Kreis Paderborn http://www.wikidata.org/entity/Q20738811 Point(8.74 51.71) +https://nwbib.de/spatial#Q2541035 http://www.wikidata.org/entity/Q2541035 Wald http://www.wikidata.org/entity/Q2983893 Point(7.04222 51.1817) +https://nwbib.de/spatial#Q10944 http://www.wikidata.org/entity/Q10944 Bad Berleburg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q12350930 Point(8.4 51.049722222) +https://nwbib.de/spatial#Q702259 http://www.wikidata.org/entity/Q702259 Elberfeld http://www.wikidata.org/entity/Q2983893 Point(7.149167 51.257222) +https://nwbib.de/spatial#Q56372838 http://www.wikidata.org/entity/Q56372838 Dekanat Ahlen http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q445288 http://www.wikidata.org/entity/Q445288 Altschermbeck http://www.wikidata.org/entity/Q253019 Point(6.87697 51.696) +https://nwbib.de/spatial#Q21039789 http://www.wikidata.org/entity/Q21039789 Hochlarmark http://www.wikidata.org/entity/Q2983893 Point(7.185 51.5691) +https://nwbib.de/spatial#Q15123706 http://www.wikidata.org/entity/Q15123706 Ostviertel http://www.wikidata.org/entity/Q253019 Point(7.2154 51.61811) +https://nwbib.de/spatial#Q1400126 http://www.wikidata.org/entity/Q1400126 Federath http://www.wikidata.org/entity/Q253019 Point(7.37631 50.9438) +https://nwbib.de/spatial#Q1955891 http://www.wikidata.org/entity/Q1955891 Mutscheid http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.843119444 50.480211111) +https://nwbib.de/spatial#Q151322 http://www.wikidata.org/entity/Q151322 Orr http://www.wikidata.org/entity/Q253019 Point(6.82861 51.0075) +https://nwbib.de/spatial#Q1625374 http://www.wikidata.org/entity/Q1625374 Holz http://www.wikidata.org/entity/Q253019 Point(6.46689 51.0909) +https://nwbib.de/spatial#Q973411 http://www.wikidata.org/entity/Q973411 Hohenhain http://www.wikidata.org/entity/Q253019 Point(7.84916667 50.91138889) +https://nwbib.de/spatial#Q1591015 http://www.wikidata.org/entity/Q1591015 Hausberge http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q12350930 Point(8.92639 52.2389) +https://nwbib.de/spatial#Q51875134 http://www.wikidata.org/entity/Q51875134 Elben http://www.wikidata.org/entity/Q253019 Point(8.17434 51.08838) +https://nwbib.de/spatial#Q882706 http://www.wikidata.org/entity/Q882706 Freienohl http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(8.171111111 51.375) +https://nwbib.de/spatial#Q13446935 http://www.wikidata.org/entity/Q13446935 Bylerward http://www.wikidata.org/entity/Q253019 Point(6.28494 51.79123) +https://nwbib.de/spatial#Q1821058 http://www.wikidata.org/entity/Q1821058 Leteln-Aminghausen http://www.wikidata.org/entity/Q253019 Point(8.95889 52.3139) +https://nwbib.de/spatial#Q895174 http://www.wikidata.org/entity/Q895174 Bourauel http://www.wikidata.org/entity/Q253019 Point(7.42637 50.7791) +https://nwbib.de/spatial#Q26836889 http://www.wikidata.org/entity/Q26836889 Fuhr http://www.wikidata.org/entity/Q253019 Point(7.0538775 51.193952777) +https://nwbib.de/spatial#Q1506575 http://www.wikidata.org/entity/Q1506575 Ende http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.436111111 51.419583333) +https://nwbib.de/spatial#Q857431 http://www.wikidata.org/entity/Q857431 Biemenhorst http://www.wikidata.org/entity/Q253019 Point(6.58333 51.8097) +https://nwbib.de/spatial#Q3708105 http://www.wikidata.org/entity/Q3708105 Fürstbistum Corvey http://www.wikidata.org/entity/Q3146899 Point(9.41 51.7778) +https://nwbib.de/spatial#Q2040103 http://www.wikidata.org/entity/Q2040103 Wallenbrück http://www.wikidata.org/entity/Q253019 Point(8.443055555 52.147777777) +https://nwbib.de/spatial#Q1826169 http://www.wikidata.org/entity/Q1826169 Lindern http://www.wikidata.org/entity/Q253019 Point(6.21389 50.9964) +https://nwbib.de/spatial#Q200275 http://www.wikidata.org/entity/Q200275 Heiden http://www.wikidata.org/entity/Q262166 Point(6.933055555 51.825833333) +https://nwbib.de/spatial#Q206380 http://www.wikidata.org/entity/Q206380 Annen http://www.wikidata.org/entity/Q253019 Point(7.375556 51.449722) +https://nwbib.de/spatial#Q56395068 http://www.wikidata.org/entity/Q56395068 Dekanat Lippe http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1656583 http://www.wikidata.org/entity/Q1656583 Reinshagen http://www.wikidata.org/entity/Q253019 Point(7.15444 51.1629) +https://nwbib.de/spatial#Q56395213 http://www.wikidata.org/entity/Q56395213 Dekanat Recklinghausen http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56397874 http://www.wikidata.org/entity/Q56397874 Dekanat Bigge-Medebach http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1751616 http://www.wikidata.org/entity/Q1751616 Werl-Aspe http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.73444 52.0611) +https://nwbib.de/spatial#Q518491 http://www.wikidata.org/entity/Q518491 Köln-Lindenthal (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(6.91 50.926111111) +https://nwbib.de/spatial#Q2354004 http://www.wikidata.org/entity/Q2354004 Strauch (Simmerath) http://www.wikidata.org/entity/Q253019 Point(6.33611 50.6261) +https://nwbib.de/spatial#Q998485 http://www.wikidata.org/entity/Q998485 Buchholz http://www.wikidata.org/entity/Q2983893 Point(6.76556 51.3786) +https://nwbib.de/spatial#Q5965 http://www.wikidata.org/entity/Q5965 Kreis Soest http://www.wikidata.org/entity/Q20738811 Point(8.25 51.58) +https://nwbib.de/spatial#Q1577024 http://www.wikidata.org/entity/Q1577024 Niederwipper http://www.wikidata.org/entity/Q253019 Point(7.43694 51.1203) +https://nwbib.de/spatial#Q11058 http://www.wikidata.org/entity/Q11058 Reichshof http://www.wikidata.org/entity/Q262166 Point(7.7 50.966666666) +https://nwbib.de/spatial#Q1618131 http://www.wikidata.org/entity/Q1618131 Hilbeck http://www.wikidata.org/entity/Q253019 Point(7.86429 51.5781) +https://nwbib.de/spatial#Q2132757 http://www.wikidata.org/entity/Q2132757 Ratingen-West http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q56061 Point(6.81796 51.2925) +https://nwbib.de/spatial#Q813585 http://www.wikidata.org/entity/Q813585 Bechen http://www.wikidata.org/entity/Q253019 Point(7.20996 51.0404) +https://nwbib.de/spatial#Q1659971 http://www.wikidata.org/entity/Q1659971 Immekeppel http://www.wikidata.org/entity/Q253019 Point(7.23793 50.9701) +https://nwbib.de/spatial#Q15055936 http://www.wikidata.org/entity/Q15055936 Eickelborn http://www.wikidata.org/entity/Q253019 Point(8.21388889 51.65305556) +https://nwbib.de/spatial#Q1644202 http://www.wikidata.org/entity/Q1644202 Hönnepel http://www.wikidata.org/entity/Q253019 Point(6.33083 51.7547) +https://nwbib.de/spatial#Q815919 http://www.wikidata.org/entity/Q815919 Bellersen http://www.wikidata.org/entity/Q253019 Point(9.19167 51.7772) +https://nwbib.de/spatial#Q43865697 http://www.wikidata.org/entity/Q43865697 Overhagen http://www.wikidata.org/entity/Q253019 Point(8.315 51.656666666) +https://nwbib.de/spatial#Q1325222 http://www.wikidata.org/entity/Q1325222 Elberfeld http://www.wikidata.org/entity/Q13415859 Point(7.14917 51.2572) +https://nwbib.de/spatial#Q3978 http://www.wikidata.org/entity/Q3978 Dormagen http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(6.84 51.0964) +https://nwbib.de/spatial#Q1307856 http://www.wikidata.org/entity/Q1307856 Laffeld http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q253019 Point(6.058611111 51.039722222) +https://nwbib.de/spatial#Q14884 http://www.wikidata.org/entity/Q14884 Hückelhoven http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.219722222 51.060833333) +https://nwbib.de/spatial#Q2273757 http://www.wikidata.org/entity/Q2273757 Serm http://www.wikidata.org/entity/Q253019 Point(6.71167 51.3492) +https://nwbib.de/spatial#Q819461 http://www.wikidata.org/entity/Q819461 Berge http://www.wikidata.org/entity/Q253019 Point(8.37195 51.5689) +https://nwbib.de/spatial#Q1262424 http://www.wikidata.org/entity/Q1262424 Obermarxloh http://www.wikidata.org/entity/Q253019 Point(6.7825 51.5003) +https://nwbib.de/spatial#Q1374337 http://www.wikidata.org/entity/Q1374337 Euregio http://www.wikidata.org/entity/Q153026 +https://nwbib.de/spatial#Q56098426 http://www.wikidata.org/entity/Q56098426 Krähenbach http://www.wikidata.org/entity/Q253019 Point(7.265194444 51.094722222) +https://nwbib.de/spatial#Q742001 http://www.wikidata.org/entity/Q742001 Assinghausen http://www.wikidata.org/entity/Q253019 Point(8.50389 51.3056) +https://nwbib.de/spatial#Q895356 http://www.wikidata.org/entity/Q895356 Bovert http://www.wikidata.org/entity/Q253019 Point(6.63942 51.2673) +https://nwbib.de/spatial#Q1250660 http://www.wikidata.org/entity/Q1250660 Kruckel http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q253019 Point(7.41083 51.455) +https://nwbib.de/spatial#Q1229463 http://www.wikidata.org/entity/Q1229463 Disternich http://www.wikidata.org/entity/Q253019 Point(6.669722222 50.739444444) +https://nwbib.de/spatial#Q769183 http://www.wikidata.org/entity/Q769183 Cronenberg http://www.wikidata.org/entity/Q13415859 Point(7.12889 51.2058) +https://nwbib.de/spatial#Q659562 http://www.wikidata.org/entity/Q659562 Rinthe http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.347222222 51.006111111) +https://nwbib.de/spatial#N12 http://www.wikidata.org/entity/Q72931 Weserbergland http://www.wikidata.org/entity/Q46831 Point(9.5 51.966666666) +https://nwbib.de/spatial#Q819821 http://www.wikidata.org/entity/Q819821 Bergisch Born http://www.wikidata.org/entity/Q253019 Point(7.26407 51.1549) +https://nwbib.de/spatial#Q1795770 http://www.wikidata.org/entity/Q1795770 Roggendorf/Thenhoven http://www.wikidata.org/entity/Q15632166 Point(6.84889 51.0464) +https://nwbib.de/spatial#Q813735 http://www.wikidata.org/entity/Q813735 Beckrath http://www.wikidata.org/entity/Q253019 Point(6.38333333 51.11666667) +https://nwbib.de/spatial#Q20183677 http://www.wikidata.org/entity/Q20183677 Stadtbezirk Eickel http://www.wikidata.org/entity/Q2740635 Point(7.17916679 51.51388931) +https://nwbib.de/spatial#Q621848 http://www.wikidata.org/entity/Q621848 Apricke http://www.wikidata.org/entity/Q253019 Point(7.81111 51.3928) +https://nwbib.de/spatial#Q2035427 http://www.wikidata.org/entity/Q2035427 Osterwald http://www.wikidata.org/entity/Q253019 Point(8.37222 51.22) +https://nwbib.de/spatial#Q27027146 http://www.wikidata.org/entity/Q27027146 Keppeln http://www.wikidata.org/entity/Q253019 Point(6.267722 51.689528) +https://nwbib.de/spatial#Q55888099 http://www.wikidata.org/entity/Q55888099 Herrschaft Horstmar http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q1146720 http://www.wikidata.org/entity/Q1146720 Fiestel http://www.wikidata.org/entity/Q253019 Point(8.56389 52.3536) +https://nwbib.de/spatial#Q896929 http://www.wikidata.org/entity/Q896929 Regierungsbezirk Aachen http://www.wikidata.org/entity/Q1850612, http://www.wikidata.org/entity/Q829277 +https://nwbib.de/spatial#Q323607 http://www.wikidata.org/entity/Q323607 Stadtbezirk 4 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.754722222 51.230277777) +https://nwbib.de/spatial#Q117900 http://www.wikidata.org/entity/Q117900 Pivitsheide V. L. http://www.wikidata.org/entity/Q253019 Point(8.783055555 51.946666666) +https://nwbib.de/spatial#Q2300600 http://www.wikidata.org/entity/Q2300600 Sommersell http://www.wikidata.org/entity/Q253019 Point(9.17436 51.8407) +https://nwbib.de/spatial#Q1503134 http://www.wikidata.org/entity/Q1503134 Stadtbezirk Münster-Ost http://www.wikidata.org/entity/Q2740635 Point(7.67944 51.9644) +https://nwbib.de/spatial#Q857730 http://www.wikidata.org/entity/Q857730 Bierbaum http://www.wikidata.org/entity/Q253019 Point(7.65191 51.2012) +https://nwbib.de/spatial#Q45745941 http://www.wikidata.org/entity/Q45745941 Hombergen http://www.wikidata.org/entity/Q253019 Point(6.263138888 51.344055555) +https://nwbib.de/spatial#Q437145 http://www.wikidata.org/entity/Q437145 Altenhagen http://www.wikidata.org/entity/Q253019 Point(8.64549 52.0473) +https://nwbib.de/spatial#Q2553859 http://www.wikidata.org/entity/Q2553859 Wedau http://www.wikidata.org/entity/Q253019 Point(6.79306 51.3928) +https://nwbib.de/spatial#Q1368634 http://www.wikidata.org/entity/Q1368634 Karnap http://www.wikidata.org/entity/Q253019 Point(7.008889 51.523611) +https://nwbib.de/spatial#Q142760 http://www.wikidata.org/entity/Q142760 Carlstadt http://www.wikidata.org/entity/Q1852178 Point(6.77083 51.2228) +https://nwbib.de/spatial#Q1553204 http://www.wikidata.org/entity/Q1553204 Rhonard http://www.wikidata.org/entity/Q253019 Point(7.883888888 51.013888888) +https://nwbib.de/spatial#Q15061704 http://www.wikidata.org/entity/Q15061704 Weddinghofen http://www.wikidata.org/entity/Q253019 Point(7.61928 51.6051) +https://nwbib.de/spatial#Q881558 http://www.wikidata.org/entity/Q881558 Blankenau http://www.wikidata.org/entity/Q253019 Point(9.38278 51.6939) +https://nwbib.de/spatial#Q1865555 http://www.wikidata.org/entity/Q1865555 Littfeld http://www.wikidata.org/entity/Q253019 Point(7.977222222 51.004166666) +https://nwbib.de/spatial#Q241048 http://www.wikidata.org/entity/Q241048 Dahlem http://www.wikidata.org/entity/Q262166 Point(6.549722222 50.383055555) +https://nwbib.de/spatial#Q2046064 http://www.wikidata.org/entity/Q2046064 St. Arnold http://www.wikidata.org/entity/Q253019 Point(7.401388888 52.213888888) +https://nwbib.de/spatial#Q1495868 http://www.wikidata.org/entity/Q1495868 Gatzweiler http://www.wikidata.org/entity/Q253019 Point(6.3147 51.1516) +https://nwbib.de/spatial#Q798266 http://www.wikidata.org/entity/Q798266 Bachum http://www.wikidata.org/entity/Q253019 Point(7.931111111 51.463611111) +https://nwbib.de/spatial#Q14810 http://www.wikidata.org/entity/Q14810 Nettetal http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.283333333 51.316666666) +https://nwbib.de/spatial#Q2225754 http://www.wikidata.org/entity/Q2225754 Sassenhausen http://www.wikidata.org/entity/Q253019 Point(8.393055555 50.9925) +https://nwbib.de/spatial#Q257147 http://www.wikidata.org/entity/Q257147 Rellinghausen http://www.wikidata.org/entity/Q2983893 Point(7.048889 51.428611) +https://nwbib.de/spatial#Q43872971 http://www.wikidata.org/entity/Q43872971 Elsey http://www.wikidata.org/entity/Q253019 Point(7.566666666 51.366666666) +https://nwbib.de/spatial#Q1306971 http://www.wikidata.org/entity/Q1306971 Einen http://www.wikidata.org/entity/Q253019 Point(7.89698 51.975) +https://nwbib.de/spatial#Q1469067 http://www.wikidata.org/entity/Q1469067 Sythen http://www.wikidata.org/entity/Q253019 Point(7.222778 51.774722) +https://nwbib.de/spatial#Q6089 http://www.wikidata.org/entity/Q6089 Bocklemünd/Mengenich http://www.wikidata.org/entity/Q15632166 Point(6.85889 50.9756) +https://nwbib.de/spatial#Q1706066 http://www.wikidata.org/entity/Q1706066 Lohe http://www.wikidata.org/entity/Q253019 Point(8.80056 52.18) +https://nwbib.de/spatial#Q2259078 http://www.wikidata.org/entity/Q2259078 Schönenberg http://www.wikidata.org/entity/Q253019 Point(7.2651 50.8895) +https://nwbib.de/spatial#Q2348419 http://www.wikidata.org/entity/Q2348419 Stieghorst http://www.wikidata.org/entity/Q253019 Point(8.583333333 52.0) +https://nwbib.de/spatial#Q26220308 http://www.wikidata.org/entity/Q26220308 Wittenberg http://www.wikidata.org/entity/Q253019 Point(6.664444444 51.658055555) +https://nwbib.de/spatial#Q2543282 http://www.wikidata.org/entity/Q2543282 Walstedde http://www.wikidata.org/entity/Q253019 Point(7.79205 51.762) +https://nwbib.de/spatial#Q1508869 http://www.wikidata.org/entity/Q1508869 Oberbarmen-Schwarzbach http://www.wikidata.org/entity/Q253019 Point(7.21278 51.2803) +https://nwbib.de/spatial#Q883741 http://www.wikidata.org/entity/Q883741 Niehl http://www.wikidata.org/entity/Q15632166 Point(6.96139 50.9894) +https://nwbib.de/spatial#Q114402 http://www.wikidata.org/entity/Q114402 Langerfeld-Beyenburg http://www.wikidata.org/entity/Q13415859 Point(7.263611111 51.254166666) +https://nwbib.de/spatial#Q1246869 http://www.wikidata.org/entity/Q1246869 Köttingen http://www.wikidata.org/entity/Q253019 Point(6.80543 50.8278) +https://nwbib.de/spatial#Q1588676 http://www.wikidata.org/entity/Q1588676 Hasselsweiler http://www.wikidata.org/entity/Q253019 Point(6.396388888 50.991111111) +https://nwbib.de/spatial#Q330792 http://www.wikidata.org/entity/Q330792 Übach http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(6.13722 50.9128) +https://nwbib.de/spatial#Q898990 http://www.wikidata.org/entity/Q898990 Braschoß http://www.wikidata.org/entity/Q253019 Point(7.28528 50.8225) +https://nwbib.de/spatial#Q2015245 http://www.wikidata.org/entity/Q2015245 Oesterholz-Haustenbeck http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(8.83722 51.8344) +https://nwbib.de/spatial#Q1747139 http://www.wikidata.org/entity/Q1747139 Käsberg http://www.wikidata.org/entity/Q253019 Point(7.47056 50.7514) +https://nwbib.de/spatial#Q927847 http://www.wikidata.org/entity/Q927847 Bronsfeld http://www.wikidata.org/entity/Q253019 Point(6.44279 50.519) +https://nwbib.de/spatial#Q1617325 http://www.wikidata.org/entity/Q1617325 Hiddingsel http://www.wikidata.org/entity/Q532, http://www.wikidata.org/entity/Q253019 Point(7.4025 51.8358) +https://nwbib.de/spatial#Q1017276 http://www.wikidata.org/entity/Q1017276 Busch http://www.wikidata.org/entity/Q253019 Point(6.59693 51.1465) +https://nwbib.de/spatial#Q2534952 http://www.wikidata.org/entity/Q2534952 Voßhagen http://www.wikidata.org/entity/Q253019 Point(7.3075 51.1717) +https://nwbib.de/spatial#Q1428808 http://www.wikidata.org/entity/Q1428808 Flingern http://www.wikidata.org/entity/Q1852178 Point(6.81306 51.2269) +https://nwbib.de/spatial#Q820673 http://www.wikidata.org/entity/Q820673 Beringhausen http://www.wikidata.org/entity/Q253019 Point(8.7561 51.4087) +https://nwbib.de/spatial#Q1523684 http://www.wikidata.org/entity/Q1523684 Chorweiler http://www.wikidata.org/entity/Q15632166 Point(6.89611 51.0256) +https://nwbib.de/spatial#Q545414 http://www.wikidata.org/entity/Q545414 Anholt http://www.wikidata.org/entity/Q253019 Point(6.426111111 51.850555555) +https://nwbib.de/spatial#Q818231 http://www.wikidata.org/entity/Q818231 Bentfeld http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(8.626388888 51.738055555) +https://nwbib.de/spatial#Q1946634 http://www.wikidata.org/entity/Q1946634 Traar http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.597222222 51.377777777) +https://nwbib.de/spatial#Q923980 http://www.wikidata.org/entity/Q923980 Losheim http://www.wikidata.org/entity/Q253019 Point(6.37389 50.36) +https://nwbib.de/spatial#Q43497701 http://www.wikidata.org/entity/Q43497701 Währentrup http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(8.712777777 51.956944444) +https://nwbib.de/spatial#Q1743618 http://www.wikidata.org/entity/Q1743618 Kirspenich http://www.wikidata.org/entity/Q253019 Point(6.799133333 50.602216666) +https://nwbib.de/spatial#Q723699 http://www.wikidata.org/entity/Q723699 Asendorf http://www.wikidata.org/entity/Q253019 Point(9.01083 52.1014) +https://nwbib.de/spatial#Q1627740 http://www.wikidata.org/entity/Q1627740 Hoppengarten http://www.wikidata.org/entity/Q253019 Point(7.525 50.7997) +https://nwbib.de/spatial#Q142350 http://www.wikidata.org/entity/Q142350 Auerberg http://www.wikidata.org/entity/Q253019 Point(7.07111 50.7578) +https://nwbib.de/spatial#Q1741640 http://www.wikidata.org/entity/Q1741640 Schildgen http://www.wikidata.org/entity/Q253019 Point(7.08389 51.0203) +https://nwbib.de/spatial#Q1404753 http://www.wikidata.org/entity/Q1404753 Sümmern http://www.wikidata.org/entity/Q253019 Point(7.7126 51.4186) +https://nwbib.de/spatial#Q3971 http://www.wikidata.org/entity/Q3971 Herford http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q134626 Point(8.673430555 52.114569444) +https://nwbib.de/spatial#Q2322464 http://www.wikidata.org/entity/Q2322464 Sankt Peter http://www.wikidata.org/entity/Q253019 Point(6.801555555 51.135888888) +https://nwbib.de/spatial#Q1622823 http://www.wikidata.org/entity/Q1622823 Hoeningen http://www.wikidata.org/entity/Q253019 Point(6.691611111 51.092416666) +https://nwbib.de/spatial#Q1806507 http://www.wikidata.org/entity/Q1806507 Lasbeck http://www.wikidata.org/entity/Q253019 Point(7.63406 51.3455) +https://nwbib.de/spatial#Q1347709 http://www.wikidata.org/entity/Q1347709 Epsingsen http://www.wikidata.org/entity/Q253019 Point(8.04534 51.5372) +https://nwbib.de/spatial#Q1641919 http://www.wikidata.org/entity/Q1641919 Häger http://www.wikidata.org/entity/Q253019 Point(8.45291 52.0979) +https://nwbib.de/spatial#Q15131753 http://www.wikidata.org/entity/Q15131753 Südlengern http://www.wikidata.org/entity/Q253019 Point(8.62472222 52.19277778) +https://nwbib.de/spatial#Q655835 http://www.wikidata.org/entity/Q655835 Dahlerau http://www.wikidata.org/entity/Q253019 Point(7.283333333 51.233333333) +https://nwbib.de/spatial#Q6992 http://www.wikidata.org/entity/Q6992 Alsdorf http://www.wikidata.org/entity/Q1401585, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.161527777 50.874361111) +https://nwbib.de/spatial#Q1297432 http://www.wikidata.org/entity/Q1297432 Eggeberg http://www.wikidata.org/entity/Q253019 Point(8.35978 52.0863) +https://nwbib.de/spatial#Q1221275 http://www.wikidata.org/entity/Q1221275 Dieringhausen http://www.wikidata.org/entity/Q253019 Point(7.53167 50.9828) +https://nwbib.de/spatial#Q615951 http://www.wikidata.org/entity/Q615951 Ottenstein http://www.wikidata.org/entity/Q253019 Point(6.91806 52.0742) +https://nwbib.de/spatial#Q317697 http://www.wikidata.org/entity/Q317697 Meiderich http://www.wikidata.org/entity/Q2983893 Point(6.766666666 51.466666666) +https://nwbib.de/spatial#Q883208 http://www.wikidata.org/entity/Q883208 Sterkrade http://www.wikidata.org/entity/Q253019 Point(6.8499 51.516) +https://nwbib.de/spatial#Q639130 http://www.wikidata.org/entity/Q639130 Immendorf http://www.wikidata.org/entity/Q15632166 Point(6.959166666 50.860277777) +https://nwbib.de/spatial#Q2526306 http://www.wikidata.org/entity/Q2526306 Vilsendorf http://www.wikidata.org/entity/Q253019 Point(8.5479 52.0788) +https://nwbib.de/spatial#Q1959054 http://www.wikidata.org/entity/Q1959054 Mündt http://www.wikidata.org/entity/Q253019 Point(6.44694 51.0117) +https://nwbib.de/spatial#Q1638053 http://www.wikidata.org/entity/Q1638053 Hunstig http://www.wikidata.org/entity/Q253019 Point(7.51861 50.9775) +https://nwbib.de/spatial#Q1787563 http://www.wikidata.org/entity/Q1787563 Kreis Warburg http://www.wikidata.org/entity/Q106658 Point(9.14 51.4881) +https://nwbib.de/spatial#Q2041996 http://www.wikidata.org/entity/Q2041996 Langenholzhausen http://www.wikidata.org/entity/Q253019 Point(8.96437 52.1463) +https://nwbib.de/spatial#Q56476212 http://www.wikidata.org/entity/Q56476212 Stachelhausen http://www.wikidata.org/entity/Q2983893 Point(7.186861111 51.174916666) +https://nwbib.de/spatial#Q1265400 http://www.wikidata.org/entity/Q1265400 Rotingdorf http://www.wikidata.org/entity/Q253019 Point(8.39361 52.0922) +https://nwbib.de/spatial#Q2584596 http://www.wikidata.org/entity/Q2584596 Winkhausen http://www.wikidata.org/entity/Q253019 Point(8.33944 51.1597) +https://nwbib.de/spatial#Q20826977 http://www.wikidata.org/entity/Q20826977 Uentrop http://www.wikidata.org/entity/Q253019 Point(7.94638889 51.6925) +https://nwbib.de/spatial#Q1566450 http://www.wikidata.org/entity/Q1566450 Haarbrück http://www.wikidata.org/entity/Q253019 Point(9.33972222 51.62138889) +https://nwbib.de/spatial#Q996844 http://www.wikidata.org/entity/Q996844 Brügge http://www.wikidata.org/entity/Q253019 Point(7.56806 51.2097) +https://nwbib.de/spatial#Q1937561 http://www.wikidata.org/entity/Q1937561 Mintard http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.904311111 51.372113888) +https://nwbib.de/spatial#Q1673853 http://www.wikidata.org/entity/Q1673853 Odenkirchen http://www.wikidata.org/entity/Q253019 Point(6.45028 51.1322) +https://nwbib.de/spatial#Q225432 http://www.wikidata.org/entity/Q225432 Schloß Holte-Stukenbrock http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.616666666 51.883333333) +https://nwbib.de/spatial#Q1281876 http://www.wikidata.org/entity/Q1281876 Eckmannshausen http://www.wikidata.org/entity/Q253019 Point(8.07361 50.9281) +https://nwbib.de/spatial#Q776646 http://www.wikidata.org/entity/Q776646 Grengel http://www.wikidata.org/entity/Q15632166 Point(7.10139 50.88) +https://nwbib.de/spatial#Q12809655 http://www.wikidata.org/entity/Q12809655 Feldmark http://www.wikidata.org/entity/Q253019 Point(7.074166666 51.508055555) +https://nwbib.de/spatial#Q2123012 http://www.wikidata.org/entity/Q2123012 Quetzen http://www.wikidata.org/entity/Q253019 Point(9.03583 52.3478) +https://nwbib.de/spatial#Q1888241 http://www.wikidata.org/entity/Q1888241 Oechelhausen http://www.wikidata.org/entity/Q253019 Point(8.128308333 50.954144444) +https://nwbib.de/spatial#Q1543589 http://www.wikidata.org/entity/Q1543589 Grastrup-Hölsen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.78572 52.0515) +https://nwbib.de/spatial#Q2102669 http://www.wikidata.org/entity/Q2102669 Polsum http://www.wikidata.org/entity/Q253019 Point(7.05222 51.6258) +https://nwbib.de/spatial#Q1311410 http://www.wikidata.org/entity/Q1311410 Fürstenau http://www.wikidata.org/entity/Q253019 Point(9.32056 51.8292) +https://nwbib.de/spatial#Q1233107 http://www.wikidata.org/entity/Q1233107 Fettehenne http://www.wikidata.org/entity/Q253019 Point(7.22472 51.2731) +https://nwbib.de/spatial#Q436691 http://www.wikidata.org/entity/Q436691 Altenberg http://www.wikidata.org/entity/Q253019 Point(7.133333333 51.05) +https://nwbib.de/spatial#Q1522909 http://www.wikidata.org/entity/Q1522909 Scharmede http://www.wikidata.org/entity/Q253019 Point(8.6333 51.7167) +https://nwbib.de/spatial#Q884423 http://www.wikidata.org/entity/Q884423 Venusberg http://www.wikidata.org/entity/Q253019 Point(7.09639 50.7033) +https://nwbib.de/spatial#Q1599807 http://www.wikidata.org/entity/Q1599807 Heinsberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(8.15014 51.0412) +https://nwbib.de/spatial#Q886298 http://www.wikidata.org/entity/Q886298 Blumenthal (Hellenthal) http://www.wikidata.org/entity/Q253019 Point(6.46028 50.4964) +https://nwbib.de/spatial#Q59259446 http://www.wikidata.org/entity/Q59259446 Stadtbezirk Geisweid http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1343346 http://www.wikidata.org/entity/Q1343346 Enniger http://www.wikidata.org/entity/Q253019 Point(7.94889 51.8308) +https://nwbib.de/spatial#Q4108 http://www.wikidata.org/entity/Q4108 Bad Salzuflen http://www.wikidata.org/entity/Q4946461, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.746666666 52.083333333) +https://nwbib.de/spatial#Q26208582 http://www.wikidata.org/entity/Q26208582 Lackhausen http://www.wikidata.org/entity/Q253019 Point(6.626667 51.679722) +https://nwbib.de/spatial#Q2637330 http://www.wikidata.org/entity/Q2637330 Albaum http://www.wikidata.org/entity/Q253019 Point(8.1136 51.0638) +https://nwbib.de/spatial#Q3791 http://www.wikidata.org/entity/Q3791 Ratingen http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(6.85 51.3) +https://nwbib.de/spatial#Q44085301 http://www.wikidata.org/entity/Q44085301 Herzebocholt http://www.wikidata.org/entity/Q253019 Point(6.475 51.841388888) +https://nwbib.de/spatial#Q2220648 http://www.wikidata.org/entity/Q2220648 Sandfeld http://www.wikidata.org/entity/Q253019 Point(7.0813 51.2546) +https://nwbib.de/spatial#Q1272259 http://www.wikidata.org/entity/Q1272259 Dürscheven http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.716111111 50.669444444) +https://nwbib.de/spatial#Q1921016 http://www.wikidata.org/entity/Q1921016 Menzelen http://www.wikidata.org/entity/Q253019 Point(6.53056 51.6158) +https://nwbib.de/spatial#Q1627261 http://www.wikidata.org/entity/Q1627261 Villigst http://www.wikidata.org/entity/Q253019 Point(7.595 51.4342) +https://nwbib.de/spatial#Q1968389 http://www.wikidata.org/entity/Q1968389 Pfalzdorf http://www.wikidata.org/entity/Q253019 Point(6.16444 51.7083) +https://nwbib.de/spatial#Q2114412 http://www.wikidata.org/entity/Q2114412 Prummern http://www.wikidata.org/entity/Q253019 Point(6.16806 50.9689) +https://nwbib.de/spatial#Q2267511 http://www.wikidata.org/entity/Q2267511 Selbecke http://www.wikidata.org/entity/Q253019 Point(7.47787 51.3363) +https://nwbib.de/spatial#Q2249233 http://www.wikidata.org/entity/Q2249233 Schotthock http://www.wikidata.org/entity/Q253019 Point(7.44806 52.2919) +https://nwbib.de/spatial#Q576096 http://www.wikidata.org/entity/Q576096 Derschlag http://www.wikidata.org/entity/Q253019 Point(7.623333333 51.008333333) +https://nwbib.de/spatial#Q1434840 http://www.wikidata.org/entity/Q1434840 Niederpleis http://www.wikidata.org/entity/Q253019 Point(7.21 50.7719) +https://nwbib.de/spatial#Q323588 http://www.wikidata.org/entity/Q323588 Stadtbezirk 5 (Düsseldorf) http://www.wikidata.org/entity/Q317669 Point(6.739166666 51.297222222) +https://nwbib.de/spatial#Q2128453 http://www.wikidata.org/entity/Q2128453 Klein-Netterden http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.260472222 51.852444444) +https://nwbib.de/spatial#Q1456426 http://www.wikidata.org/entity/Q1456426 Oeventrop http://www.wikidata.org/entity/Q253019 Point(8.13528 51.3917) +https://nwbib.de/spatial#Q978734 http://www.wikidata.org/entity/Q978734 Rimbeck http://www.wikidata.org/entity/Q253019 Point(9.051388888 51.5275) +https://nwbib.de/spatial#Q1568943 http://www.wikidata.org/entity/Q1568943 Hahnerberg http://www.wikidata.org/entity/Q253019 Point(7.15212 51.2216) +https://nwbib.de/spatial#Q2252731 http://www.wikidata.org/entity/Q2252731 Schwadorf http://www.wikidata.org/entity/Q253019 Point(6.91528 50.8033) +https://nwbib.de/spatial#Q1797097 http://www.wikidata.org/entity/Q1797097 Künsebeck http://www.wikidata.org/entity/Q253019 Point(8.38611 52.0417) +https://nwbib.de/spatial#Q15110163 http://www.wikidata.org/entity/Q15110163 Eicken http://www.wikidata.org/entity/Q253019 Point(6.445836 51.208518) +https://nwbib.de/spatial#Q2247030 http://www.wikidata.org/entity/Q2247030 Schnathorst http://www.wikidata.org/entity/Q253019 Point(8.71026 52.2753) +https://nwbib.de/spatial#Q1157899 http://www.wikidata.org/entity/Q1157899 Dalheim http://www.wikidata.org/entity/Q253019 Point(8.84056 51.5664) +https://nwbib.de/spatial#Q1395453 http://www.wikidata.org/entity/Q1395453 Siersdorf http://www.wikidata.org/entity/Q253019 Point(6.22684 50.89827) +https://nwbib.de/spatial#Q1250600 http://www.wikidata.org/entity/Q1250600 Deusen http://www.wikidata.org/entity/Q253019 Point(7.42806 51.5467) +https://nwbib.de/spatial#Q2010945 http://www.wikidata.org/entity/Q2010945 Oberschönrath http://www.wikidata.org/entity/Q253019 Point(7.211 50.892) +https://nwbib.de/spatial#Q1824274 http://www.wikidata.org/entity/Q1824274 Liesborn http://www.wikidata.org/entity/Q253019 Point(8.25611 51.7097) +https://nwbib.de/spatial#Q1664975 http://www.wikidata.org/entity/Q1664975 Unterbarmen http://www.wikidata.org/entity/Q2983893 Point(7.17191 51.2683) +https://nwbib.de/spatial#Q15106862 http://www.wikidata.org/entity/Q15106862 Asberg http://www.wikidata.org/entity/Q253019 Point(6.651933 51.443278) +https://nwbib.de/spatial#Q1172775 http://www.wikidata.org/entity/Q1172775 Daubenrath http://www.wikidata.org/entity/Q253019 Point(6.417777777 50.893055555) +https://nwbib.de/spatial#Q819743 http://www.wikidata.org/entity/Q819743 Bergheim http://www.wikidata.org/entity/Q253019 Point(6.68333 51.4167) +https://nwbib.de/spatial#Q881039 http://www.wikidata.org/entity/Q881039 Bladersbach http://www.wikidata.org/entity/Q2983893 Point(7.55833 50.8519) +https://nwbib.de/spatial#Q3764 http://www.wikidata.org/entity/Q3764 Witten http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q42744322 Point(7.333333333 51.433333333) +https://nwbib.de/spatial#Q114961 http://www.wikidata.org/entity/Q114961 Qualburg http://www.wikidata.org/entity/Q253019 Point(6.178333333 51.7775) +https://nwbib.de/spatial#Q1302363 http://www.wikidata.org/entity/Q1302363 Eicks http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.618233333 50.624227777) +https://nwbib.de/spatial#Q629048 http://www.wikidata.org/entity/Q629048 Breitenbruch http://www.wikidata.org/entity/Q253019 Point(8.10194 51.4347) +https://nwbib.de/spatial#Q25158419 http://www.wikidata.org/entity/Q25158419 Obercastrop http://www.wikidata.org/entity/Q253019 Point(7.309 51.54081) +https://nwbib.de/spatial#Q1795751 http://www.wikidata.org/entity/Q1795751 Kasselberg http://www.wikidata.org/entity/Q253019 Point(6.94361 51.0397) +https://nwbib.de/spatial#Q1628051 http://www.wikidata.org/entity/Q1628051 Horchheim http://www.wikidata.org/entity/Q253019 Point(6.81622 50.7313) +https://nwbib.de/spatial#Q1499726 http://www.wikidata.org/entity/Q1499726 Gellendorf http://www.wikidata.org/entity/Q253019 Point(7.475 52.2611) +https://nwbib.de/spatial#Q2563752 http://www.wikidata.org/entity/Q2563752 Weseke http://www.wikidata.org/entity/Q253019 Point(6.85778 51.9081) +https://nwbib.de/spatial#Q2719987 http://www.wikidata.org/entity/Q2719987 Niederfleckenberg http://www.wikidata.org/entity/Q253019 Point(8.25055556 51.135) +https://nwbib.de/spatial#Q163772 http://www.wikidata.org/entity/Q163772 Grefrath http://www.wikidata.org/entity/Q262166 Point(6.340761111 51.336280555) +https://nwbib.de/spatial#Q759074 http://www.wikidata.org/entity/Q759074 Aue http://www.wikidata.org/entity/Q253019 Point(6.238 50.807) +https://nwbib.de/spatial#Q1632960 http://www.wikidata.org/entity/Q1632960 Hubbelrath http://www.wikidata.org/entity/Q1852178, http://www.wikidata.org/entity/Q15284 Point(6.910833333 51.256666666) +https://nwbib.de/spatial#Q884493 http://www.wikidata.org/entity/Q884493 Stadtbezirk Dornberg http://www.wikidata.org/entity/Q2740635 Point(8.46667 52.05) +https://nwbib.de/spatial#Q1530767 http://www.wikidata.org/entity/Q1530767 Sieveringen http://www.wikidata.org/entity/Q253019 Point(8.01028 51.5314) +https://nwbib.de/spatial#Q814017 http://www.wikidata.org/entity/Q814017 Beeck http://www.wikidata.org/entity/Q253019 Point(6.73417 51.4786) +https://nwbib.de/spatial#Q1550437 http://www.wikidata.org/entity/Q1550437 Grund http://www.wikidata.org/entity/Q253019 Point(7.32528 51.0789) +https://nwbib.de/spatial#Q905595 http://www.wikidata.org/entity/Q905595 Breidtersteegsmühle http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q185187, http://www.wikidata.org/entity/Q4632675 Point(7.27037 50.8487) +https://nwbib.de/spatial#Q990936 http://www.wikidata.org/entity/Q990936 Krummenerl http://www.wikidata.org/entity/Q253019 Point(7.75572 51.08) +https://nwbib.de/spatial#Q723625 http://www.wikidata.org/entity/Q723625 Asemissen http://www.wikidata.org/entity/Q253019 Point(8.67093 51.9816) +https://nwbib.de/spatial#Q257616 http://www.wikidata.org/entity/Q257616 Bochold http://www.wikidata.org/entity/Q253019 Point(6.9675 51.475) +https://nwbib.de/spatial#Q56008538 http://www.wikidata.org/entity/Q56008538 Buchholz http://www.wikidata.org/entity/Q253019 Point(6.361361111 51.119277777) +https://nwbib.de/spatial#Q2570575 http://www.wikidata.org/entity/Q2570575 Wildenburg (Hellenthal) http://www.wikidata.org/entity/Q253019 Point(6.49552 50.4624) +https://nwbib.de/spatial#Q3005 http://www.wikidata.org/entity/Q3005 Altstadt-Nord http://www.wikidata.org/entity/Q676050, http://www.wikidata.org/entity/Q15632166 Point(6.956111111 50.938888888) +https://nwbib.de/spatial#Q2147438 http://www.wikidata.org/entity/Q2147438 Rheidt-Hüchelhoven http://www.wikidata.org/entity/Q253019 Point(6.68312 51.0117) +https://nwbib.de/spatial#Q1405932 http://www.wikidata.org/entity/Q1405932 Blens http://www.wikidata.org/entity/Q253019 Point(6.480277777 50.660277777) +https://nwbib.de/spatial#Q278635 http://www.wikidata.org/entity/Q278635 Hausweiler http://www.wikidata.org/entity/Q253019 Point(6.816556024 50.716507511) +https://nwbib.de/spatial#Q1566715 http://www.wikidata.org/entity/Q1566715 Habbelrath http://www.wikidata.org/entity/Q253019 Point(6.75017 50.9122) +https://nwbib.de/spatial#Q53908 http://www.wikidata.org/entity/Q53908 Hiddenhausen http://www.wikidata.org/entity/Q262166 Point(8.616666666 52.166666666) +https://nwbib.de/spatial#Q1332008 http://www.wikidata.org/entity/Q1332008 Elleringhausen http://www.wikidata.org/entity/Q253019 Point(8.5451 51.3388) +https://nwbib.de/spatial#Q3771 http://www.wikidata.org/entity/Q3771 Gütersloh http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q42744322 Point(8.383333333 51.9) +https://nwbib.de/spatial#Q2839 http://www.wikidata.org/entity/Q2839 Kreis Warendorf http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(7.92 51.92) +https://nwbib.de/spatial#Q55587313 http://www.wikidata.org/entity/Q55587313 Horst http://www.wikidata.org/entity/Q253019 Point(7.693055555 51.698055555) +https://nwbib.de/spatial#Q2758 http://www.wikidata.org/entity/Q2758 Mönchengladbach http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q42744322 Point(6.433333333 51.2) +https://nwbib.de/spatial#Q1464902 http://www.wikidata.org/entity/Q1464902 Frille http://www.wikidata.org/entity/Q253019 Point(8.99353 52.3388) +https://nwbib.de/spatial#Q2202772 http://www.wikidata.org/entity/Q2202772 Rösberg http://www.wikidata.org/entity/Q2983893 Point(6.91806 50.7675) +https://nwbib.de/spatial#Q2011352 http://www.wikidata.org/entity/Q2011352 Oberveischede http://www.wikidata.org/entity/Q253019 Point(7.948055555 51.075833333) +https://nwbib.de/spatial#Q188425 http://www.wikidata.org/entity/Q188425 Niedermarsberg http://www.wikidata.org/entity/Q253019 Point(8.86267 51.4656) +https://nwbib.de/spatial#Q1342922 http://www.wikidata.org/entity/Q1342922 Kreis Wipperfürth http://www.wikidata.org/entity/Q5283531 Point(7.39861111 51.11694444) +https://nwbib.de/spatial#Q893345 http://www.wikidata.org/entity/Q893345 Borbeck http://www.wikidata.org/entity/Q253019 Point(7.425 51.2158) +https://nwbib.de/spatial#Q18028189 http://www.wikidata.org/entity/Q18028189 Stockum http://www.wikidata.org/entity/Q253019 Point(7.7753103 51.5443193) +https://nwbib.de/spatial#Q56034025 http://www.wikidata.org/entity/Q56034025 Stahldorf http://www.wikidata.org/entity/Q253019 Point(6.557972222 51.308916666) +https://nwbib.de/spatial#Q2769211 http://www.wikidata.org/entity/Q2769211 Bracht http://www.wikidata.org/entity/Q253019 Point(6.19778 51.2819) +https://nwbib.de/spatial#Q181981 http://www.wikidata.org/entity/Q181981 Lienen http://www.wikidata.org/entity/Q262166 Point(7.973888888 52.146111111) +https://nwbib.de/spatial#Q1997843 http://www.wikidata.org/entity/Q1997843 Nordeifel http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q1395976 http://www.wikidata.org/entity/Q1395976 Oberelvenich http://www.wikidata.org/entity/Q2983893 Point(6.708055555 50.700277777) +https://nwbib.de/spatial#Q1869600 http://www.wikidata.org/entity/Q1869600 Welschen Ennest http://www.wikidata.org/entity/Q253019 Point(8.003333333 51.042777777) +https://nwbib.de/spatial#Q1541708 http://www.wikidata.org/entity/Q1541708 Grafschaft Kerpen und Lommersum http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q6910 http://www.wikidata.org/entity/Q6910 Dülmen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.278333333 51.830833333) +https://nwbib.de/spatial#Q55499395 http://www.wikidata.org/entity/Q55499395 Oege http://www.wikidata.org/entity/Q253019 Point(7.593333333 51.346944444) +https://nwbib.de/spatial#Q5937 http://www.wikidata.org/entity/Q5937 Märkischer Kreis http://www.wikidata.org/entity/Q20738811 Point(7.614444444 51.225) +https://nwbib.de/spatial#Q153919 http://www.wikidata.org/entity/Q153919 Zwillbrock http://www.wikidata.org/entity/Q253019 Point(6.691111111 52.054166666) +https://nwbib.de/spatial#Q994082 http://www.wikidata.org/entity/Q994082 Brunskappel http://www.wikidata.org/entity/Q253019 Point(8.4775 51.2783) +https://nwbib.de/spatial#Q1589054 http://www.wikidata.org/entity/Q1589054 Hattrop http://www.wikidata.org/entity/Q253019 Point(8.05872 51.5832) +https://nwbib.de/spatial#Q1499068 http://www.wikidata.org/entity/Q1499068 Geisweid http://www.wikidata.org/entity/Q253019 Point(8.00139 50.9269) +https://nwbib.de/spatial#Q1366844 http://www.wikidata.org/entity/Q1366844 Esch http://www.wikidata.org/entity/Q253019 Point(6.54339 50.9414) +https://nwbib.de/spatial#Q896387 http://www.wikidata.org/entity/Q896387 Stommeln http://www.wikidata.org/entity/Q253019 Point(6.759722222 51.019722222) +https://nwbib.de/spatial#Q15130492 http://www.wikidata.org/entity/Q15130492 Stift Corvey http://www.wikidata.org/entity/Q26830017 Point(9.41 51.77777778) +https://nwbib.de/spatial#Q1652202 http://www.wikidata.org/entity/Q1652202 Hüingsen http://www.wikidata.org/entity/Q253019 Point(7.82361 51.4075) +https://nwbib.de/spatial#Q1602737 http://www.wikidata.org/entity/Q1602737 Hellefeld http://www.wikidata.org/entity/Q253019 Point(8.08577 51.3314) +https://nwbib.de/spatial#Q2015206 http://www.wikidata.org/entity/Q2015206 Oese http://www.wikidata.org/entity/Q253019 Point(7.78472 51.3992) +https://nwbib.de/spatial#Q11343 http://www.wikidata.org/entity/Q11343 Wetter http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q486972 Point(7.390736 51.38374) +https://nwbib.de/spatial#Q151282 http://www.wikidata.org/entity/Q151282 Zweifall http://www.wikidata.org/entity/Q253019 Point(6.25694 50.7181) +https://nwbib.de/spatial#Q1989307 http://www.wikidata.org/entity/Q1989307 Nierswalde http://www.wikidata.org/entity/Q253019 Point(6.138972222 51.724686111) +https://nwbib.de/spatial#Q2259083 http://www.wikidata.org/entity/Q2259083 Schönenberg http://www.wikidata.org/entity/Q253019 Point(7.43689 50.839) +https://nwbib.de/spatial#Q1266697 http://www.wikidata.org/entity/Q1266697 Volmerswerth http://www.wikidata.org/entity/Q1852178 Point(6.76389 51.1883) +https://nwbib.de/spatial#Q402668 http://www.wikidata.org/entity/Q402668 Ahrdorf http://www.wikidata.org/entity/Q253019 Point(6.7775 50.372777777) +https://nwbib.de/spatial#Q620752 http://www.wikidata.org/entity/Q620752 Appeldorn http://www.wikidata.org/entity/Q253019 Point(6.351813888 51.723997222) +https://nwbib.de/spatial#Q1394210 http://www.wikidata.org/entity/Q1394210 Falkenhagen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q19730508 Point(9.30472 51.89) +https://nwbib.de/spatial#Q2134395 http://www.wikidata.org/entity/Q2134395 Wichterich http://www.wikidata.org/entity/Q253019 Point(6.739722222 50.707777777) +https://nwbib.de/spatial#Q1027189 http://www.wikidata.org/entity/Q1027189 Calle http://www.wikidata.org/entity/Q253019 Point(7.72499 51.3812) +https://nwbib.de/spatial#Q1603708 http://www.wikidata.org/entity/Q1603708 Scharfenberg http://www.wikidata.org/entity/Q253019 Point(8.52972 51.4258) +https://nwbib.de/spatial#Q1926480 http://www.wikidata.org/entity/Q1926480 Meßlingen http://www.wikidata.org/entity/Q253019 Point(8.89674 52.378) +https://nwbib.de/spatial#Q59282655 http://www.wikidata.org/entity/Q59282655 Hochlar http://www.wikidata.org/entity/Q253019 Point(7.173333333 51.605555555) +https://nwbib.de/spatial#Q872196 http://www.wikidata.org/entity/Q872196 Kallenhardt http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(8.42389 51.4517) +https://nwbib.de/spatial#Q1250615 http://www.wikidata.org/entity/Q1250615 Simonskall http://www.wikidata.org/entity/Q253019 Point(6.35 50.666666666) +https://nwbib.de/spatial#Q518604 http://www.wikidata.org/entity/Q518604 Köln-Nippes (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(6.95833 50.9644) +https://nwbib.de/spatial#Q1250606 http://www.wikidata.org/entity/Q1250606 Ellinghausen http://www.wikidata.org/entity/Q253019 Point(7.41496 51.5623) +https://nwbib.de/spatial#Q19687905 http://www.wikidata.org/entity/Q19687905 Frielinghausen http://www.wikidata.org/entity/Q253019 Point(7.94027778 51.66666667) +https://nwbib.de/spatial#Q1879111 http://www.wikidata.org/entity/Q1879111 Lämershagen-Gräfinghagen http://www.wikidata.org/entity/Q253019 Point(8.61903 51.9718) +https://nwbib.de/spatial#Q681425 http://www.wikidata.org/entity/Q681425 Ronsdorf http://www.wikidata.org/entity/Q13415859 Point(7.2 51.233333333) +https://nwbib.de/spatial#Q1250592 http://www.wikidata.org/entity/Q1250592 Bodelschwingh http://www.wikidata.org/entity/Q253019 Point(7.36667 51.55) +https://nwbib.de/spatial#Q1700980 http://www.wikidata.org/entity/Q1700980 Sondern http://www.wikidata.org/entity/Q253019 Point(7.84139 51.0733) +https://nwbib.de/spatial#Q1624800 http://www.wikidata.org/entity/Q1624800 Hollerath http://www.wikidata.org/entity/Q253019 Point(6.403611111 50.455833333) +https://nwbib.de/spatial#Q1257549 http://www.wikidata.org/entity/Q1257549 Dreierwalde http://www.wikidata.org/entity/Q253019 Point(7.50383 52.3331) +https://nwbib.de/spatial#Q819826 http://www.wikidata.org/entity/Q819826 Bergisch Neukirchen http://www.wikidata.org/entity/Q253019 Point(7.0346 51.0779) +https://nwbib.de/spatial#Q19309648 http://www.wikidata.org/entity/Q19309648 Stöppel http://www.wikidata.org/entity/Q253019 Point(8.12555556 51.12861111) +https://nwbib.de/spatial#Q1397108 http://www.wikidata.org/entity/Q1397108 Marienthal http://www.wikidata.org/entity/Q253019 Point(6.73778 51.7317) +https://nwbib.de/spatial#Q1271362 http://www.wikidata.org/entity/Q1271362 Dörpfelderhöhe http://www.wikidata.org/entity/Q253019 Point(7.28936 51.1273) +https://nwbib.de/spatial#Q365 http://www.wikidata.org/entity/Q365 Köln http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q200250, http://www.wikidata.org/entity/Q2202509, http://www.wikidata.org/entity/Q1637706 Point(6.957777777 50.942222222) +https://nwbib.de/spatial#Q998304 http://www.wikidata.org/entity/Q998304 Buchenhofen http://www.wikidata.org/entity/Q253019 Point(7.10472 51.2253) +https://nwbib.de/spatial#Q16018 http://www.wikidata.org/entity/Q16018 Steinfurt http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626 Point(7.33664 52.15045) +https://nwbib.de/spatial#Q1478782 http://www.wikidata.org/entity/Q1478782 Mariaweiler http://www.wikidata.org/entity/Q253019 Point(6.445833333 50.815833333) +https://nwbib.de/spatial#Q881635 http://www.wikidata.org/entity/Q881635 Wipperfeld http://www.wikidata.org/entity/Q253019 Point(7.324444444 51.088888888) +https://nwbib.de/spatial#Q1817702 http://www.wikidata.org/entity/Q1817702 Lenhausen http://www.wikidata.org/entity/Q253019 Point(7.96694 51.2008) +https://nwbib.de/spatial#Q1558904 http://www.wikidata.org/entity/Q1558904 Algert http://www.wikidata.org/entity/Q253019 Point(7.26001 50.8403) +https://nwbib.de/spatial#Q48219 http://www.wikidata.org/entity/Q48219 Heidenoldendorf http://www.wikidata.org/entity/Q253019 Point(8.839444444 51.9425) +https://nwbib.de/spatial#Q1593792 http://www.wikidata.org/entity/Q1593792 Hehn http://www.wikidata.org/entity/Q253019 Point(6.37194 51.1842) +https://nwbib.de/spatial#Q14914 http://www.wikidata.org/entity/Q14914 Coesfeld http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q707813 Point(7.1675 51.945833333) +https://nwbib.de/spatial#Q24390299 http://www.wikidata.org/entity/Q24390299 Haffen http://www.wikidata.org/entity/Q253019 Point(6.45305556 51.73722222) +https://nwbib.de/spatial#Q151621 http://www.wikidata.org/entity/Q151621 Giesenkirchen http://www.wikidata.org/entity/Q2983893 Point(6.4922 51.1587) +https://nwbib.de/spatial#Q9182180 http://www.wikidata.org/entity/Q9182180 Burgsteinfurt http://www.wikidata.org/entity/Q253019 Point(7.35 52.15) +https://nwbib.de/spatial#Q47192504 http://www.wikidata.org/entity/Q47192504 Welte http://www.wikidata.org/entity/Q1484611, http://www.wikidata.org/entity/Q253019 Point(7.234722222 51.873888888) +https://nwbib.de/spatial#Q200087 http://www.wikidata.org/entity/Q200087 Vettweiß http://www.wikidata.org/entity/Q262166 Point(6.597222222 50.738888888) +https://nwbib.de/spatial#Q1772435 http://www.wikidata.org/entity/Q1772435 Weringhausen http://www.wikidata.org/entity/Q253019 Point(7.999166666 51.169722222) +https://nwbib.de/spatial#Q1281544 http://www.wikidata.org/entity/Q1281544 Eckenhagen http://www.wikidata.org/entity/Q1595408, http://www.wikidata.org/entity/Q253019 Point(7.69361 50.9881) +https://nwbib.de/spatial#Q151306 http://www.wikidata.org/entity/Q151306 Münsterbusch http://www.wikidata.org/entity/Q253019 Point(6.213888888 50.768611111) +https://nwbib.de/spatial#Q1250705 http://www.wikidata.org/entity/Q1250705 Sölde http://www.wikidata.org/entity/Q253019 Point(7.58778 51.4958) +https://nwbib.de/spatial#Q2583535 http://www.wikidata.org/entity/Q2583535 Windhausen http://www.wikidata.org/entity/Q253019 Point(6.09819 50.9435) +https://nwbib.de/spatial#Q56033772 http://www.wikidata.org/entity/Q56033772 Laar http://www.wikidata.org/entity/Q253019 Point(6.209305555 51.228694444) +https://nwbib.de/spatial#Q889194 http://www.wikidata.org/entity/Q889194 Bocket http://www.wikidata.org/entity/Q253019 Point(5.997222222 51.051944444) +https://nwbib.de/spatial#Q44229223 http://www.wikidata.org/entity/Q44229223 Metzkausen http://www.wikidata.org/entity/Q253019 Point(6.953061 51.265084) +https://nwbib.de/spatial#Q1250654 http://www.wikidata.org/entity/Q1250654 Kirchhörde http://www.wikidata.org/entity/Q253019 Point(7.45722 51.4544) +https://nwbib.de/spatial#Q1325414 http://www.wikidata.org/entity/Q1325414 Elbrinxen http://www.wikidata.org/entity/Q19730508, http://www.wikidata.org/entity/Q253019 Point(9.2525 51.91) +https://nwbib.de/spatial#Q1801610 http://www.wikidata.org/entity/Q1801610 Lammersdorf http://www.wikidata.org/entity/Q253019 Point(6.279444444 50.631666666) +https://nwbib.de/spatial#Q19965738 http://www.wikidata.org/entity/Q19965738 Sandbochum http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.69416666 51.65833282) +https://nwbib.de/spatial#Q1392090 http://www.wikidata.org/entity/Q1392090 Fahlenscheid http://www.wikidata.org/entity/Q253019 Point(7.945833333 51.057777777) +https://nwbib.de/spatial#Q23758642 http://www.wikidata.org/entity/Q23758642 Stadtbezirk Wanne http://www.wikidata.org/entity/Q2740635 Point(7.1484749 51.537505) +https://nwbib.de/spatial#Q1601704 http://www.wikidata.org/entity/Q1601704 Helden http://www.wikidata.org/entity/Q253019 Point(7.9532 51.1166) +https://nwbib.de/spatial#Q1355054 http://www.wikidata.org/entity/Q1355054 Erkensruhr http://www.wikidata.org/entity/Q253019 Point(6.363055555 50.566111111) +https://nwbib.de/spatial#Q2691247 http://www.wikidata.org/entity/Q2691247 Ehrsen-Breden http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.77849 52.066) +https://nwbib.de/spatial#Q2211344 http://www.wikidata.org/entity/Q2211344 Saeffelen http://www.wikidata.org/entity/Q253019 Point(5.96083 51.0322) +https://nwbib.de/spatial#Q2232281 http://www.wikidata.org/entity/Q2232281 Scheel http://www.wikidata.org/entity/Q253019 Point(7.43917 51.0519) +https://nwbib.de/spatial#Q56008513 http://www.wikidata.org/entity/Q56008513 Hehler http://www.wikidata.org/entity/Q253019 Point(6.310222222 51.202611111) +https://nwbib.de/spatial#Q1448338 http://www.wikidata.org/entity/Q1448338 Meckinghoven http://www.wikidata.org/entity/Q253019 Point(7.32694 51.6297) +https://nwbib.de/spatial#Q878096 http://www.wikidata.org/entity/Q878096 Kreuzweingarten http://www.wikidata.org/entity/Q253019 Point(6.79111 50.6108) +https://nwbib.de/spatial#Q1752455 http://www.wikidata.org/entity/Q1752455 Riesel http://www.wikidata.org/entity/Q253019 Point(9.16083 51.6989) +https://nwbib.de/spatial#Q11043 http://www.wikidata.org/entity/Q11043 Wiehl http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q515 Point(7.533333333 50.95) +https://nwbib.de/spatial#Q1265317 http://www.wikidata.org/entity/Q1265317 Neustadt http://www.wikidata.org/entity/Q253019 Point(8.67083 52.1192) +https://nwbib.de/spatial#Q47190993 http://www.wikidata.org/entity/Q47190993 Oelinghausen http://www.wikidata.org/entity/Q253019 Point(7.944166666 51.412777777) +https://nwbib.de/spatial#Q2132373 http://www.wikidata.org/entity/Q2132373 Rath http://www.wikidata.org/entity/Q1852178 Point(6.81417 51.2661) +https://nwbib.de/spatial#Q3902 http://www.wikidata.org/entity/Q3902 Viersen http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626 Point(6.39168 51.25557) +https://nwbib.de/spatial#Q1356817 http://www.wikidata.org/entity/Q1356817 Hegensdorf http://www.wikidata.org/entity/Q253019 Point(8.62917 51.5292) +https://nwbib.de/spatial#Q27973169 http://www.wikidata.org/entity/Q27973169 Stadtbezirk Bochum-Nord http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q437554 http://www.wikidata.org/entity/Q437554 Altenseelbach http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(7.995 50.7789) +https://nwbib.de/spatial#Q1445255 http://www.wikidata.org/entity/Q1445255 Longerich http://www.wikidata.org/entity/Q15632166 Point(6.92056 50.995) +https://nwbib.de/spatial#Q895229 http://www.wikidata.org/entity/Q895229 Bourheim http://www.wikidata.org/entity/Q253019 Point(6.333333333 50.9) +https://nwbib.de/spatial#Q2532468 http://www.wikidata.org/entity/Q2532468 Vollem http://www.wikidata.org/entity/Q253019 Point(6.64699 50.5497) +https://nwbib.de/spatial#Q1234953 http://www.wikidata.org/entity/Q1234953 Osterholz http://www.wikidata.org/entity/Q253019 Point(7.05556 51.2311) +https://nwbib.de/spatial#N03 http://www.wikidata.org/entity/Q152243 Rheinland http://www.wikidata.org/entity/Q82794 Point(6.860735 50.276989) +https://nwbib.de/spatial#Q204966 http://www.wikidata.org/entity/Q204966 Übach-Palenberg http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.119444444 50.919722222) +https://nwbib.de/spatial#Q1567402 http://www.wikidata.org/entity/Q1567402 Hadem http://www.wikidata.org/entity/Q253019 Point(8.120444444 50.999505555) +https://nwbib.de/spatial#Q1351231 http://www.wikidata.org/entity/Q1351231 Womelsdorf http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.26194 51.0097) +https://nwbib.de/spatial#N69 http://www.wikidata.org/entity/Q573290 Grafschaft Ravensberg http://www.wikidata.org/entity/Q353344 Point(8.57071 52.0922) +https://nwbib.de/spatial#Q47462041 http://www.wikidata.org/entity/Q47462041 Kirchenkreis Bielefeld http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q242632 http://www.wikidata.org/entity/Q242632 Augustdorf http://www.wikidata.org/entity/Q262166 Point(8.73173 51.90944) +https://nwbib.de/spatial#Q593247 http://www.wikidata.org/entity/Q593247 Handorf http://www.wikidata.org/entity/Q253019 Point(7.70556 51.9889) +https://nwbib.de/spatial#Q2498315 http://www.wikidata.org/entity/Q2498315 Wunderthausen http://www.wikidata.org/entity/Q253019 Point(8.511261111 51.094711111) +https://nwbib.de/spatial#Q1250646 http://www.wikidata.org/entity/Q1250646 Kemminghausen http://www.wikidata.org/entity/Q253019 Point(7.48028 51.5575) +https://nwbib.de/spatial#Q1802000 http://www.wikidata.org/entity/Q1802000 Landenbeck http://www.wikidata.org/entity/Q253019 Point(8.26028 51.2578) +https://nwbib.de/spatial#Q52092035 http://www.wikidata.org/entity/Q52092035 Hillen http://www.wikidata.org/entity/Q253019 Point(7.2218 51.6089) +https://nwbib.de/spatial#Q1797023 http://www.wikidata.org/entity/Q1797023 Küllenhahn http://www.wikidata.org/entity/Q253019 Point(7.13556 51.2294) +https://nwbib.de/spatial#Q1949455 http://www.wikidata.org/entity/Q1949455 Mossenberg-Wöhren http://www.wikidata.org/entity/Q532, http://www.wikidata.org/entity/Q253019 Point(9.018055555 51.951944444) +https://nwbib.de/spatial#Q2037367 http://www.wikidata.org/entity/Q2037367 Ottbergen http://www.wikidata.org/entity/Q253019 Point(9.30602 51.7112) +https://nwbib.de/spatial#Q1021846 http://www.wikidata.org/entity/Q1021846 Büttgen http://www.wikidata.org/entity/Q253019 Point(6.60694 51.1961) +https://nwbib.de/spatial#Q1778914 http://www.wikidata.org/entity/Q1778914 Mecklinghausen http://www.wikidata.org/entity/Q253019 Point(7.95743 51.1053) +https://nwbib.de/spatial#Q1157454 http://www.wikidata.org/entity/Q1157454 Dahlhausen http://www.wikidata.org/entity/Q253019 Point(7.31028 51.215) +https://nwbib.de/spatial#Q2046093 http://www.wikidata.org/entity/Q2046093 Paffrath http://www.wikidata.org/entity/Q253019 Point(7.09942 50.9991) +https://nwbib.de/spatial#Q1541523 http://www.wikidata.org/entity/Q1541523 Grafenwald http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q4421 Point(6.89611 51.575) +https://nwbib.de/spatial#Q1464254 http://www.wikidata.org/entity/Q1464254 Niederbergstraße http://www.wikidata.org/entity/Q253019 Point(7.9742 51.5798) +https://nwbib.de/spatial#Q1743319 http://www.wikidata.org/entity/Q1743319 Kirchlengern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q15303838 Point(8.63333 52.2) +https://nwbib.de/spatial#Q470160 http://www.wikidata.org/entity/Q470160 Amern http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.25 51.2333) +https://nwbib.de/spatial#Q861878 http://www.wikidata.org/entity/Q861878 Bilk http://www.wikidata.org/entity/Q1852178 Point(6.77667 51.2081) +https://nwbib.de/spatial#Q1646501 http://www.wikidata.org/entity/Q1646501 Sedansberg http://www.wikidata.org/entity/Q253019 Point(7.19639 51.2806) +https://nwbib.de/spatial#Q1645841 http://www.wikidata.org/entity/Q1645841 Sellmecke http://www.wikidata.org/entity/Q253019 Point(8.3047 51.241480555) +https://nwbib.de/spatial#Q1583744 http://www.wikidata.org/entity/Q1583744 Hanselaer http://www.wikidata.org/entity/Q253019 Point(6.313055555 51.735555555) +https://nwbib.de/spatial#Q314456 http://www.wikidata.org/entity/Q314456 Vohwinkel http://www.wikidata.org/entity/Q13415859 Point(7.07 51.23111) +https://nwbib.de/spatial#Q32860696 http://www.wikidata.org/entity/Q32860696 Rieflinghausen http://www.wikidata.org/entity/Q253019 Point(7.926583333 51.095083333) +https://nwbib.de/spatial#Q1157455 http://www.wikidata.org/entity/Q1157455 Dahlhausen http://www.wikidata.org/entity/Q253019 Point(7.7078 51.4638) +https://nwbib.de/spatial#Q1245547 http://www.wikidata.org/entity/Q1245547 Dorn http://www.wikidata.org/entity/Q253019 Point(7.62111 50.9897) +https://nwbib.de/spatial#Q1367005 http://www.wikidata.org/entity/Q1367005 Eschendorf http://www.wikidata.org/entity/Q253019 Point(7.465 52.28) +https://nwbib.de/spatial#Q1625201 http://www.wikidata.org/entity/Q1625201 Holtfeld http://www.wikidata.org/entity/Q253019 Point(8.28146 52.0655) +https://nwbib.de/spatial#Q1408098 http://www.wikidata.org/entity/Q1408098 Uentrop http://www.wikidata.org/entity/Q253019 Point(8.088 51.4017) +https://nwbib.de/spatial#Q2230503 http://www.wikidata.org/entity/Q2230503 Schallern http://www.wikidata.org/entity/Q253019 Point(8.21556 51.6014) +https://nwbib.de/spatial#Q10933 http://www.wikidata.org/entity/Q10933 Fröndenberg/Ruhr http://www.wikidata.org/entity/Q42744322 Point(7.765833333 51.471944444) +https://nwbib.de/spatial#Q1257549 http://www.wikidata.org/entity/Q1257549 Dreierwalde http://www.wikidata.org/entity/Q253019 Point(7.48246 52.29074) +https://nwbib.de/spatial#Q1307269 http://www.wikidata.org/entity/Q1307269 Sankt Vit http://www.wikidata.org/entity/Q253019 Point(8.2775 51.8255) +https://nwbib.de/spatial#Q151325 http://www.wikidata.org/entity/Q151325 Atsch http://www.wikidata.org/entity/Q253019 Point(6.204722222 50.784166666) +https://nwbib.de/spatial#Q1750246 http://www.wikidata.org/entity/Q1750246 Coerde http://www.wikidata.org/entity/Q253019 Point(7.64722 51.9928) +https://nwbib.de/spatial#Q19310644 http://www.wikidata.org/entity/Q19310644 Unterthal http://www.wikidata.org/entity/Q253019 Point(7.192728 51.011403) +https://nwbib.de/spatial#Q6149 http://www.wikidata.org/entity/Q6149 Soest http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q134626 Point(8.109166666 51.571111111) +https://nwbib.de/spatial#Q10958 http://www.wikidata.org/entity/Q10958 Neunkirchen http://www.wikidata.org/entity/Q262166 Point(8.005555555 50.786111111) +https://nwbib.de/spatial#Q28543311 http://www.wikidata.org/entity/Q28543311 Grunewald http://www.wikidata.org/entity/Q253019 Point(7.2178091 51.0949398) +https://nwbib.de/spatial#Q1530418 http://www.wikidata.org/entity/Q1530418 Gleidorf http://www.wikidata.org/entity/Q253019 Point(8.31278 51.1644) +https://nwbib.de/spatial#Q29960537 http://www.wikidata.org/entity/Q29960537 Schultheismühle http://www.wikidata.org/entity/Q253019 Point(7.300361111 51.044916666) +https://nwbib.de/spatial#Q1397086 http://www.wikidata.org/entity/Q1397086 Flerke http://www.wikidata.org/entity/Q253019 Point(7.95674 51.5957) +https://nwbib.de/spatial#Q27113552 http://www.wikidata.org/entity/Q27113552 Reeserschanz http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q91203 Point(6.394444444 51.751111111) +https://nwbib.de/spatial#Q26833669 http://www.wikidata.org/entity/Q26833669 Rützkausen http://www.wikidata.org/entity/Q253019 Point(7.045790555 51.3246175) +https://nwbib.de/spatial#Q881495 http://www.wikidata.org/entity/Q881495 Wittlaer http://www.wikidata.org/entity/Q1852178, http://www.wikidata.org/entity/Q253019 Point(6.74333 51.3186) +https://nwbib.de/spatial#Q895714 http://www.wikidata.org/entity/Q895714 Elten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2039348, http://www.wikidata.org/entity/Q1822469 Point(6.159722 51.871111) +https://nwbib.de/spatial#Q1523281 http://www.wikidata.org/entity/Q1523281 Gierath http://www.wikidata.org/entity/Q253019 Point(6.54415 51.1125) +https://nwbib.de/spatial#Q876278 http://www.wikidata.org/entity/Q876278 Düsseltal http://www.wikidata.org/entity/Q1852178 Point(6.80944 51.2367) +https://nwbib.de/spatial#Q570295 http://www.wikidata.org/entity/Q570295 Anstel http://www.wikidata.org/entity/Q253019 Point(6.71471 51.0624) +https://nwbib.de/spatial#Q1285056 http://www.wikidata.org/entity/Q1285056 Hävern http://www.wikidata.org/entity/Q253019 Point(8.99861 52.4264) +https://nwbib.de/spatial#Q594680 http://www.wikidata.org/entity/Q594680 Sevinghausen http://www.wikidata.org/entity/Q253019 Point(7.1303 51.4586) +https://nwbib.de/spatial#Q142780 http://www.wikidata.org/entity/Q142780 Wüllen http://www.wikidata.org/entity/Q253019 Point(6.97333 52.06611) +https://nwbib.de/spatial#Q182979 http://www.wikidata.org/entity/Q182979 Rahden http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q42744322 Point(8.616666666 52.416666666) +https://nwbib.de/spatial#Q1520243 http://www.wikidata.org/entity/Q1520243 Gevelsdorf http://www.wikidata.org/entity/Q253019 Point(6.386666666 51.008888888) +https://nwbib.de/spatial#Q1281184 http://www.wikidata.org/entity/Q1281184 Echthausen http://www.wikidata.org/entity/Q253019 Point(7.89778 51.4944) +https://nwbib.de/spatial#Q153898 http://www.wikidata.org/entity/Q153898 Werth http://www.wikidata.org/entity/Q253019 Point(6.28222 50.7806) +https://nwbib.de/spatial#Q902505 http://www.wikidata.org/entity/Q902505 Brauweiler http://www.wikidata.org/entity/Q2983893 Point(6.783333333 50.966666666) +https://nwbib.de/spatial#Q6852 http://www.wikidata.org/entity/Q6852 Bornheim http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.005 50.759166666) +https://nwbib.de/spatial#Q1281637 http://www.wikidata.org/entity/Q1281637 Eckesey http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.4525 51.380555555) +https://nwbib.de/spatial#Q815546 http://www.wikidata.org/entity/Q815546 Belgisches Viertel http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.93469 50.9384) +https://nwbib.de/spatial#Q1254173 http://www.wikidata.org/entity/Q1254173 Drabenderhöhe http://www.wikidata.org/entity/Q253019 Point(7.45583 50.9433) +https://nwbib.de/spatial#Q1368625 http://www.wikidata.org/entity/Q1368625 Fulerum http://www.wikidata.org/entity/Q253019 Point(6.963889 51.43) +https://nwbib.de/spatial#Q1934396 http://www.wikidata.org/entity/Q1934396 Milchenbach http://www.wikidata.org/entity/Q253019 Point(8.212 51.115) +https://nwbib.de/spatial#Q2250456 http://www.wikidata.org/entity/Q2250456 Schröttinghausen http://www.wikidata.org/entity/Q253019 Point(8.47359 52.0789) +https://nwbib.de/spatial#Q28167777 http://www.wikidata.org/entity/Q28167777 Dilkrath http://www.wikidata.org/entity/Q253019 Point(6.262072 51.251156) +https://nwbib.de/spatial#Q50046754 http://www.wikidata.org/entity/Q50046754 Wiescheid http://www.wikidata.org/entity/Q253019 Point(7.32475 50.826833333) +https://nwbib.de/spatial#Q662025 http://www.wikidata.org/entity/Q662025 Ostenland http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.613333333 51.785277777) +https://nwbib.de/spatial#Q163693 http://www.wikidata.org/entity/Q163693 Brüggen http://www.wikidata.org/entity/Q262166 Point(6.182222222 51.241666666) +https://nwbib.de/spatial#Q1030104 http://www.wikidata.org/entity/Q1030104 Helgersdorf http://www.wikidata.org/entity/Q253019 Point(8.18 50.8667) +https://nwbib.de/spatial#Q55499627 http://www.wikidata.org/entity/Q55499627 Herbeck http://www.wikidata.org/entity/Q253019 Point(7.526944444 51.365555555) +https://nwbib.de/spatial#Q1616345 http://www.wikidata.org/entity/Q1616345 Hetzerath http://www.wikidata.org/entity/Q253019 Point(6.2725 51.0581) +https://nwbib.de/spatial#Q10887 http://www.wikidata.org/entity/Q10887 Attendorn http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.90333 51.12645) +https://nwbib.de/spatial#Q21042113 http://www.wikidata.org/entity/Q21042113 Deininghausen http://www.wikidata.org/entity/Q253019 Point(7.336584 51.568469) +https://nwbib.de/spatial#Q1250629 http://www.wikidata.org/entity/Q1250629 Groppenbruch http://www.wikidata.org/entity/Q253019 Point(7.39758 51.5861) +https://nwbib.de/spatial#Q1625777 http://www.wikidata.org/entity/Q1625777 Holzweiler http://www.wikidata.org/entity/Q2983893 Point(6.40556 51.0478) +https://nwbib.de/spatial#Q2541604 http://www.wikidata.org/entity/Q2541604 Waldhausen http://www.wikidata.org/entity/Q253019 Point(8.28833 51.5108) +https://nwbib.de/spatial#Q61790035 http://www.wikidata.org/entity/Q61790035 Eppinghofen http://www.wikidata.org/entity/Q2983893 Point(6.8892 51.4343) +https://nwbib.de/spatial#Q1250578 http://www.wikidata.org/entity/Q1250578 Barop http://www.wikidata.org/entity/Q253019 Point(7.43333 51.4833) +https://nwbib.de/spatial#Q1476033 http://www.wikidata.org/entity/Q1476033 Langenberg (Rheinland) http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q2983893 Point(7.12167 51.3519) +https://nwbib.de/spatial#Q759070 http://www.wikidata.org/entity/Q759070 Aue http://www.wikidata.org/entity/Q253019 Point(8.29861 51.0492) +https://nwbib.de/spatial#Q1651963 http://www.wikidata.org/entity/Q1651963 Hövelriege http://www.wikidata.org/entity/Q253019 Point(8.6375 51.85861111) +https://nwbib.de/spatial#Q1182208 http://www.wikidata.org/entity/Q1182208 Dedinghausen http://www.wikidata.org/entity/Q253019 Point(8.40677 51.6698) +https://nwbib.de/spatial#Q908932 http://www.wikidata.org/entity/Q908932 Brenken http://www.wikidata.org/entity/Q253019 Point(8.592222222 51.582777777) +https://nwbib.de/spatial#Q47021505 http://www.wikidata.org/entity/Q47021505 Kirchenkreis Bonn http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47021915 http://www.wikidata.org/entity/Q47021915 Kirchenkreis Essen http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47022310 http://www.wikidata.org/entity/Q47022310 Kirchenkreis Moers http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1258325 http://www.wikidata.org/entity/Q1258325 Dremmen http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q253019 Point(6.146666666 51.039444444) +https://nwbib.de/spatial#Q241761 http://www.wikidata.org/entity/Q241761 Nieheim http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1595408, http://www.wikidata.org/entity/Q707813 Point(9.109722222 51.799722222) +https://nwbib.de/spatial#Q1304021 http://www.wikidata.org/entity/Q1304021 Eilendorf http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q15284 Point(6.1625 50.779444444) +https://nwbib.de/spatial#Q1338238 http://www.wikidata.org/entity/Q1338238 Wolbeck http://www.wikidata.org/entity/Q253019 Point(7.72917 51.9194) +https://nwbib.de/spatial#Q1738494 http://www.wikidata.org/entity/Q1738494 Kemmerich http://www.wikidata.org/entity/Q253019 Point(7.33694 51.01) +https://nwbib.de/spatial#Q46221995 http://www.wikidata.org/entity/Q46221995 Möllmicke http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.858611111 50.973611111) +https://nwbib.de/spatial#Q851239 http://www.wikidata.org/entity/Q851239 Beusingsen http://www.wikidata.org/entity/Q253019 Point(8.17731 51.5464) +https://nwbib.de/spatial#Q1237145 http://www.wikidata.org/entity/Q1237145 Walbrecken http://www.wikidata.org/entity/Q253019 Point(7.29417 51.2281) +https://nwbib.de/spatial#Q1786291 http://www.wikidata.org/entity/Q1786291 Krahwinkel http://www.wikidata.org/entity/Q253019 Point(7.29078 50.8517) +https://nwbib.de/spatial#Q1766125 http://www.wikidata.org/entity/Q1766125 Margarethenhöhe http://www.wikidata.org/entity/Q253019 Point(7.24912 50.6766) +https://nwbib.de/spatial#Q1647277 http://www.wikidata.org/entity/Q1647277 Vormwald http://www.wikidata.org/entity/Q253019 Point(8.13396 50.986) +https://nwbib.de/spatial#Q6823 http://www.wikidata.org/entity/Q6823 Frechen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.816666666 50.916666666) +https://nwbib.de/spatial#Q1502416 http://www.wikidata.org/entity/Q1502416 Gennebreck http://www.wikidata.org/entity/Q253019 Point(7.20267 51.3113) +https://nwbib.de/spatial#Q2559591 http://www.wikidata.org/entity/Q2559591 Wennemen http://www.wikidata.org/entity/Q253019 Point(8.1958 51.3537) +https://nwbib.de/spatial#Q21039639 http://www.wikidata.org/entity/Q21039639 Schwafheim http://www.wikidata.org/entity/Q253019 Point(6.65333319 51.42361069) +https://nwbib.de/spatial#Q1250675 http://www.wikidata.org/entity/Q1250675 Mengede http://www.wikidata.org/entity/Q253019 Point(7.38417 51.5744) +https://nwbib.de/spatial#Q1268302 http://www.wikidata.org/entity/Q1268302 Schophoven http://www.wikidata.org/entity/Q253019 Point(6.396111111 50.877222222) +https://nwbib.de/spatial#Q1490832 http://www.wikidata.org/entity/Q1490832 Stadtbezirk Gadderbaum http://www.wikidata.org/entity/Q2740635 Point(8.516666666 52.0) +https://nwbib.de/spatial#Q740743 http://www.wikidata.org/entity/Q740743 Fischeln http://www.wikidata.org/entity/Q253019 Point(6.58694 51.3056) +https://nwbib.de/spatial#Q917022 http://www.wikidata.org/entity/Q917022 Brill http://www.wikidata.org/entity/Q253019 Point(7.12778 51.2583) +https://nwbib.de/spatial#Q257023 http://www.wikidata.org/entity/Q257023 Stadtbezirk Elsen http://www.wikidata.org/entity/Q2740635 Point(8.683333333 51.733333333) +https://nwbib.de/spatial#Q63860001 http://www.wikidata.org/entity/Q63860001 Büren http://www.wikidata.org/entity/Q253019 Point(7.976666666 52.305833333) +https://nwbib.de/spatial#Q772131 http://www.wikidata.org/entity/Q772131 Moitzfeld http://www.wikidata.org/entity/Q253019 Point(7.183333333 50.966666666) +https://nwbib.de/spatial#Q61725690 http://www.wikidata.org/entity/Q61725690 Hackhausen http://www.wikidata.org/entity/Q253019 Point(6.472444444 51.10425) +https://nwbib.de/spatial#Q1157419 http://www.wikidata.org/entity/Q1157419 Stadtbezirk Dahl http://www.wikidata.org/entity/Q2740635 Point(8.85 51.7) +https://nwbib.de/spatial#Q16054325 http://www.wikidata.org/entity/Q16054325 Altroggenrahmede http://www.wikidata.org/entity/Q253019 Point(7.661748 51.256866) +https://nwbib.de/spatial#Q870633 http://www.wikidata.org/entity/Q870633 Altenbochum http://www.wikidata.org/entity/Q123705, http://www.wikidata.org/entity/Q253019 Point(7.24634 51.4709) +https://nwbib.de/spatial#Q25158536 http://www.wikidata.org/entity/Q25158536 Obersteeg http://www.wikidata.org/entity/Q253019 Point(7.257693 50.968887) +https://nwbib.de/spatial#Q798686 http://www.wikidata.org/entity/Q798686 Bad Fredeburg http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q253019 Point(8.31056 51.1914) +https://nwbib.de/spatial#Q53901 http://www.wikidata.org/entity/Q53901 Enger http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.566666666 52.133333333) +https://nwbib.de/spatial#Q1376264 http://www.wikidata.org/entity/Q1376264 Wessum http://www.wikidata.org/entity/Q253019 Point(6.970833333 52.09) +https://nwbib.de/spatial#Q1258686 http://www.wikidata.org/entity/Q1258686 Drevenack http://www.wikidata.org/entity/Q253019 Point(6.74861 51.6611) +https://nwbib.de/spatial#Q153774 http://www.wikidata.org/entity/Q153774 Duisdorf http://www.wikidata.org/entity/Q253019 Point(7.05121 50.7164) +https://nwbib.de/spatial#Q1282032 http://www.wikidata.org/entity/Q1282032 Kükenbruch http://www.wikidata.org/entity/Q253019 Point(9.0678 52.12658) +https://nwbib.de/spatial#Q1360552 http://www.wikidata.org/entity/Q1360552 Kray http://www.wikidata.org/entity/Q253019 Point(7.080833 51.466111) +https://nwbib.de/spatial#Q1478496 http://www.wikidata.org/entity/Q1478496 Fußhollen http://www.wikidata.org/entity/Q253019 Point(7.39361 50.8061) +https://nwbib.de/spatial#Q58317 http://www.wikidata.org/entity/Q58317 Mosebeck http://www.wikidata.org/entity/Q253019 Point(8.955833333 51.957777777) +https://nwbib.de/spatial#Q1525990 http://www.wikidata.org/entity/Q1525990 Vahlhausen http://www.wikidata.org/entity/Q253019 Point(9.00278 51.8847) +https://nwbib.de/spatial#Q2651466 http://www.wikidata.org/entity/Q2651466 Alstaden http://www.wikidata.org/entity/Q253019 Point(6.832977777 51.460097222) +https://nwbib.de/spatial#Q1575260 http://www.wikidata.org/entity/Q1575260 Lockhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.69167 52.0639) +https://nwbib.de/spatial#Q1260064 http://www.wikidata.org/entity/Q1260064 Drohne http://www.wikidata.org/entity/Q253019 Point(8.33545 52.4313) +https://nwbib.de/spatial#Q1368635 http://www.wikidata.org/entity/Q1368635 Kupferdreh http://www.wikidata.org/entity/Q253019 Point(7.0825 51.392222) +https://nwbib.de/spatial#Q19687953 http://www.wikidata.org/entity/Q19687953 Wandhofen http://www.wikidata.org/entity/Q253019 Point(7.55555556 51.43055556) +https://nwbib.de/spatial#Q56240302 http://www.wikidata.org/entity/Q56240302 Wupperfeld http://www.wikidata.org/entity/Q2983893 Point(7.212916666 51.274) +https://nwbib.de/spatial#Q44023866 http://www.wikidata.org/entity/Q44023866 Knittkuhl http://www.wikidata.org/entity/Q1852178 Point(6.87192 51.26759) +https://nwbib.de/spatial#Q18668419 http://www.wikidata.org/entity/Q18668419 Berkum (Wachtberg) http://www.wikidata.org/entity/Q253019 Point(7.13463 50.62531) +https://nwbib.de/spatial#Q1288658 http://www.wikidata.org/entity/Q1288658 Höhscheid http://www.wikidata.org/entity/Q253019 Point(7.078611111 51.160277777) +https://nwbib.de/spatial#Q1292925 http://www.wikidata.org/entity/Q1292925 Niederhemer http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(7.76167 51.3919) +https://nwbib.de/spatial#Q1860350 http://www.wikidata.org/entity/Q1860350 Steinhorst http://www.wikidata.org/entity/Q253019 Point(8.55 51.8167) +https://nwbib.de/spatial#Q745683 http://www.wikidata.org/entity/Q745683 Sieglar http://www.wikidata.org/entity/Q253019 Point(7.12558 50.8) +https://nwbib.de/spatial#Q2239829 http://www.wikidata.org/entity/Q2239829 Schliprüthen http://www.wikidata.org/entity/Q253019 Point(8.08333 51.2333) +https://nwbib.de/spatial#Q2380832 http://www.wikidata.org/entity/Q2380832 Südkirchen http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(7.54722 51.7092) +https://nwbib.de/spatial#Q911514 http://www.wikidata.org/entity/Q911514 Breyell http://www.wikidata.org/entity/Q253019 Point(6.252222 51.295556) +https://nwbib.de/spatial#Q1285735 http://www.wikidata.org/entity/Q1285735 Winkel http://www.wikidata.org/entity/Q253019 Point(7.2811 50.8452) +https://nwbib.de/spatial#Q1627309 http://www.wikidata.org/entity/Q1627309 Honscheid http://www.wikidata.org/entity/Q253019 Point(7.38056 50.7908) +https://nwbib.de/spatial#Q2880 http://www.wikidata.org/entity/Q2880 Hamm http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q106517174 Point(7.816666666 51.666666666) +https://nwbib.de/spatial#Q14921 http://www.wikidata.org/entity/Q14921 Ascheberg http://www.wikidata.org/entity/Q262166 Point(7.62 51.788888888) +https://nwbib.de/spatial#Q4181 http://www.wikidata.org/entity/Q4181 Gummersbach http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q54935786 Point(7.566666666 51.033333333) +https://nwbib.de/spatial#Q1310921 http://www.wikidata.org/entity/Q1310921 Eisborn http://www.wikidata.org/entity/Q253019 Point(7.8825 51.3864) +https://nwbib.de/spatial#Q2498723 http://www.wikidata.org/entity/Q2498723 Unterrath http://www.wikidata.org/entity/Q1852178 Point(6.79056 51.2736) +https://nwbib.de/spatial#Q1469641 http://www.wikidata.org/entity/Q1469641 Frohnhausen http://www.wikidata.org/entity/Q253019 Point(8.09972 50.9381) +https://nwbib.de/spatial#Q2133595 http://www.wikidata.org/entity/Q2133595 Rauxel http://www.wikidata.org/entity/Q253019 Point(7.31667 51.5667) +https://nwbib.de/spatial#Q1418975 http://www.wikidata.org/entity/Q1418975 Himmighausen http://www.wikidata.org/entity/Q253019 Point(9.02372 51.8121) +https://nwbib.de/spatial#Q1458817 http://www.wikidata.org/entity/Q1458817 Loope http://www.wikidata.org/entity/Q253019 Point(7.36556 50.9731) +https://nwbib.de/spatial#Q1271987 http://www.wikidata.org/entity/Q1271987 Dürboslar http://www.wikidata.org/entity/Q253019 Point(6.253888888 50.905) +https://nwbib.de/spatial#Q1783581 http://www.wikidata.org/entity/Q1783581 Konzen http://www.wikidata.org/entity/Q253019 Point(6.255555555 50.586666666) +https://nwbib.de/spatial#Q883699 http://www.wikidata.org/entity/Q883699 Bleiwäsche http://www.wikidata.org/entity/Q253019 Point(8.702777777 51.472222222) +https://nwbib.de/spatial#Q204919 http://www.wikidata.org/entity/Q204919 Wassenberg http://www.wikidata.org/entity/Q42744322 Point(6.15 51.1) +https://nwbib.de/spatial#Q1428340 http://www.wikidata.org/entity/Q1428340 Fley http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.50083 51.3903) +https://nwbib.de/spatial#Q1787578 http://www.wikidata.org/entity/Q1787578 Kreis Wittgenstein http://www.wikidata.org/entity/Q106658 Point(8.39 51.05) +https://nwbib.de/spatial#Q886350 http://www.wikidata.org/entity/Q886350 Blumroth http://www.wikidata.org/entity/Q253019 Point(8.06713 51.6172) +https://nwbib.de/spatial#Q2015269 http://www.wikidata.org/entity/Q2015269 Oesterweg http://www.wikidata.org/entity/Q253019 Point(8.19611 52.0347) +https://nwbib.de/spatial#Q7666409 http://www.wikidata.org/entity/Q7666409 Söntgerath http://www.wikidata.org/entity/Q3257686, http://www.wikidata.org/entity/Q253019 Point(7.363 50.866) +https://nwbib.de/spatial#Q1363657 http://www.wikidata.org/entity/Q1363657 Erwitzen http://www.wikidata.org/entity/Q253019 Point(9.12025 51.7694) +https://nwbib.de/spatial#Q61725747 http://www.wikidata.org/entity/Q61725747 Niederforstbach http://www.wikidata.org/entity/Q253019 Point(6.150638888 50.735944444) +https://nwbib.de/spatial#Q436998 http://www.wikidata.org/entity/Q436998 Altendorf http://www.wikidata.org/entity/Q253019 Point(7.01315 50.5903) +https://nwbib.de/spatial#Q7924 http://www.wikidata.org/entity/Q7924 Regierungsbezirk Arnsberg http://www.wikidata.org/entity/Q829277, http://www.wikidata.org/entity/Q1850612 Point(8.0071 51.32967) +https://nwbib.de/spatial#Q923471 http://www.wikidata.org/entity/Q923471 Brochterbeck http://www.wikidata.org/entity/Q253019 Point(7.74583 52.2236) +https://nwbib.de/spatial#Q907346 http://www.wikidata.org/entity/Q907346 Bremen http://www.wikidata.org/entity/Q253019 Point(7.95926 51.5042) +https://nwbib.de/spatial#Q2517719 http://www.wikidata.org/entity/Q2517719 Verr http://www.wikidata.org/entity/Q253019 Point(7.44194 50.9531) +https://nwbib.de/spatial#Q1804945 http://www.wikidata.org/entity/Q1804945 Langel http://www.wikidata.org/entity/Q253019 Point(6.91444 51.0519) +https://nwbib.de/spatial#Q643789 http://www.wikidata.org/entity/Q643789 Arfeld http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(8.437222222 51.015277777) +https://nwbib.de/spatial#Q16146 http://www.wikidata.org/entity/Q16146 Delbrück http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(8.566666666 51.766666666) +https://nwbib.de/spatial#Q55585995 http://www.wikidata.org/entity/Q55585995 Hasperbach http://www.wikidata.org/entity/Q253019 Point(7.416944444 51.325555555) +https://nwbib.de/spatial#Q391177 http://www.wikidata.org/entity/Q391177 Agathaberg http://www.wikidata.org/entity/Q253019 Point(7.42167 51.0972) +https://nwbib.de/spatial#Q1735839 http://www.wikidata.org/entity/Q1735839 Katernberg http://www.wikidata.org/entity/Q253019 Point(7.11611 51.2753) +https://nwbib.de/spatial#Q1427624 http://www.wikidata.org/entity/Q1427624 Fleckenberg http://www.wikidata.org/entity/Q253019 Point(8.25 51.133333333) +https://nwbib.de/spatial#Q1355865 http://www.wikidata.org/entity/Q1355865 Tente http://www.wikidata.org/entity/Q253019 Point(7.1925 51.1231) +https://nwbib.de/spatial#Q1520057 http://www.wikidata.org/entity/Q1520057 Reuschenberg http://www.wikidata.org/entity/Q253019 Point(6.68479 51.1686) +https://nwbib.de/spatial#Q2238773 http://www.wikidata.org/entity/Q2238773 Schleiden http://www.wikidata.org/entity/Q253019 Point(6.24306 50.8847) +https://nwbib.de/spatial#Q1347813 http://www.wikidata.org/entity/Q1347813 Holtkamp http://www.wikidata.org/entity/Q253019 Point(8.40115 51.963) +https://nwbib.de/spatial#Q6219 http://www.wikidata.org/entity/Q6219 Nettersheim http://www.wikidata.org/entity/Q262166 Point(6.629722222 50.4925) +https://nwbib.de/spatial#N68 http://www.wikidata.org/entity/Q700198 Grafschaft Mark http://www.wikidata.org/entity/Q353344 Point(7.815833333 51.673611111) +https://nwbib.de/spatial#Q1557491 http://www.wikidata.org/entity/Q1557491 Lohn http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q15284 Point(6.31083 50.8641) +https://nwbib.de/spatial#Q1987595 http://www.wikidata.org/entity/Q1987595 Niederbachem http://www.wikidata.org/entity/Q253019 Point(7.18145 50.6477) +https://nwbib.de/spatial#Q1020132 http://www.wikidata.org/entity/Q1020132 Bösperde http://www.wikidata.org/entity/Q253019 Point(7.7682 51.457) +https://nwbib.de/spatial#Q57652427 http://www.wikidata.org/entity/Q57652427 Uellendahl http://www.wikidata.org/entity/Q253019 Point(7.161083333 51.278111111) +https://nwbib.de/spatial#Q2097533 http://www.wikidata.org/entity/Q2097533 Pixwaag http://www.wikidata.org/entity/Q253019 Point(7.32944 51.1525) +https://nwbib.de/spatial#Q2190271 http://www.wikidata.org/entity/Q2190271 Verlautenheide http://www.wikidata.org/entity/Q253019 Point(6.155555555 50.796388888) +https://nwbib.de/spatial#Q1603205 http://www.wikidata.org/entity/Q1603205 Helmern http://www.wikidata.org/entity/Q253019 Point(8.76611 51.5697) +https://nwbib.de/spatial#Q5982 http://www.wikidata.org/entity/Q5982 Kreis Siegen-Wittgenstein http://www.wikidata.org/entity/Q20738811 Point(8.17 50.92) +https://nwbib.de/spatial#Q2230278 http://www.wikidata.org/entity/Q2230278 Schalbruch http://www.wikidata.org/entity/Q253019 Point(5.90416667 51.05194444) +https://nwbib.de/spatial#Q2740 http://www.wikidata.org/entity/Q2740 Sendenhorst http://www.wikidata.org/entity/Q42744322 Point(7.827777777 51.843888888) +https://nwbib.de/spatial#Q2588462 http://www.wikidata.org/entity/Q2588462 Dörperhöhe http://www.wikidata.org/entity/Q253019 Point(7.30277778 51.18027778) +https://nwbib.de/spatial#Q806421 http://www.wikidata.org/entity/Q806421 Banfe http://www.wikidata.org/entity/Q253019 Point(8.351666666 50.914166666) +https://nwbib.de/spatial#Q2245902 http://www.wikidata.org/entity/Q2245902 Schmedehausen http://www.wikidata.org/entity/Q253019 Point(7.72194 52.095) +https://nwbib.de/spatial#Q1863961 http://www.wikidata.org/entity/Q1863961 Oberndorf http://www.wikidata.org/entity/Q253019 Point(8.14961 51.0068) +https://nwbib.de/spatial#Q1271519 http://www.wikidata.org/entity/Q1271519 Dössel http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(9.165277777 51.523055555) +https://nwbib.de/spatial#Q42387069 http://www.wikidata.org/entity/Q42387069 Friedrichsthal http://www.wikidata.org/entity/Q253019 Point(7.840833333 51.001388888) +https://nwbib.de/spatial#Q66724629 http://www.wikidata.org/entity/Q66724629 Heßler http://www.wikidata.org/entity/Q253019 Point(7.057222222 51.520833333) +https://nwbib.de/spatial#Q1543241 http://www.wikidata.org/entity/Q1543241 Rüppershausen http://www.wikidata.org/entity/Q253019 Point(8.309722222 50.959722222) +https://nwbib.de/spatial#Q1659265 http://www.wikidata.org/entity/Q1659265 Ilvese http://www.wikidata.org/entity/Q253019 Point(9.03 52.4572) +https://nwbib.de/spatial#Q57006 http://www.wikidata.org/entity/Q57006 Emmerich am Rhein http://www.wikidata.org/entity/Q902814, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q2264924 Point(6.245277777 51.835) +https://nwbib.de/spatial#Q2566258 http://www.wikidata.org/entity/Q2566258 Wevelinghoven http://www.wikidata.org/entity/Q253019 Point(6.62194 51.1072) +https://nwbib.de/spatial#Q1499729 http://www.wikidata.org/entity/Q1499729 Gellershagen http://www.wikidata.org/entity/Q253019 Point(8.51226 52.044) +https://nwbib.de/spatial#Q1459751 http://www.wikidata.org/entity/Q1459751 Kalldorf http://www.wikidata.org/entity/Q253019 Point(8.92294 52.1575) +https://nwbib.de/spatial#Q1588790 http://www.wikidata.org/entity/Q1588790 Hastenrath http://www.wikidata.org/entity/Q253019 Point(6.28139 50.7906) +https://nwbib.de/spatial#N10 http://www.wikidata.org/entity/Q462011 Westfälische Bucht http://www.wikidata.org/entity/Q107425 Point(7.62869444 51.96294444) +https://nwbib.de/spatial#Q3922 http://www.wikidata.org/entity/Q3922 Detmold http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q1548518 Point(8.883333333 51.937777777) +https://nwbib.de/spatial#Q1252653 http://www.wikidata.org/entity/Q1252653 Haarzopf http://www.wikidata.org/entity/Q253019 Point(6.958889 51.419722) +https://nwbib.de/spatial#Q1459863 http://www.wikidata.org/entity/Q1459863 Harmonie http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(7.42722 50.7756) +https://nwbib.de/spatial#Q44939213 http://www.wikidata.org/entity/Q44939213 Müllingsen http://www.wikidata.org/entity/Q253019 Point(8.138611111 51.542222222) +https://nwbib.de/spatial#Q30602340 http://www.wikidata.org/entity/Q30602340 Osning http://www.wikidata.org/entity/Q740445 Point(8.6 51.983333333) +https://nwbib.de/spatial#Q1786041 http://www.wikidata.org/entity/Q1786041 Merkenich http://www.wikidata.org/entity/Q15632166 Point(6.95861 51.0253) +https://nwbib.de/spatial#Q182054 http://www.wikidata.org/entity/Q182054 Metelen http://www.wikidata.org/entity/Q262166 Point(7.211944444 52.144444444) +https://nwbib.de/spatial#Q2265208 http://www.wikidata.org/entity/Q2265208 Seelenfeld http://www.wikidata.org/entity/Q253019 Point(9.06944 52.4353) +https://nwbib.de/spatial#Q243177 http://www.wikidata.org/entity/Q243177 Uedem http://www.wikidata.org/entity/Q262166 Point(6.275 51.6675) +https://nwbib.de/spatial#Q1787562 http://www.wikidata.org/entity/Q1787562 Kreis Waldbröl http://www.wikidata.org/entity/Q5283531 Point(7.61722231 50.87638855) +https://nwbib.de/spatial#Q1625542 http://www.wikidata.org/entity/Q1625542 Holzhausen http://www.wikidata.org/entity/Q253019 Point(8.90306 52.2289) +https://nwbib.de/spatial#Q1544856 http://www.wikidata.org/entity/Q1544856 Greffen http://www.wikidata.org/entity/Q253019 Point(8.14444 51.9772) +https://nwbib.de/spatial#Q1632285 http://www.wikidata.org/entity/Q1632285 Lindenberg http://www.wikidata.org/entity/Q253019 Point(7.92639 50.9) +https://nwbib.de/spatial#Q1823811 http://www.wikidata.org/entity/Q1823811 Lieberhausen http://www.wikidata.org/entity/Q253019 Point(7.66417 51.0625) +https://nwbib.de/spatial#Q814659 http://www.wikidata.org/entity/Q814659 Beienbach http://www.wikidata.org/entity/Q253019 Point(8.14 50.8981) +https://nwbib.de/spatial#Q56085395 http://www.wikidata.org/entity/Q56085395 Herb http://www.wikidata.org/entity/Q253019 Point(6.149027777 51.033805555) +https://nwbib.de/spatial#Q1354624 http://www.wikidata.org/entity/Q1354624 Eringerfeld http://www.wikidata.org/entity/Q253019 Point(8.46833 51.5878) +https://nwbib.de/spatial#Q835981 http://www.wikidata.org/entity/Q835981 Flamersheim http://www.wikidata.org/entity/Q253019 Point(6.851388888 50.623055555) +https://nwbib.de/spatial#Q1803148 http://www.wikidata.org/entity/Q1803148 Landkreis Essen http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q55987237 http://www.wikidata.org/entity/Q55987237 Rupelrath http://www.wikidata.org/entity/Q253019 Point(7.000361111 51.124333333) +https://nwbib.de/spatial#Q878257 http://www.wikidata.org/entity/Q878257 Großbüllesheim http://www.wikidata.org/entity/Q253019 Point(6.821111111 50.684166666) +https://nwbib.de/spatial#Q1652632 http://www.wikidata.org/entity/Q1652632 Hüttental http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q253019 Point(8.033333333 50.916666666) +https://nwbib.de/spatial#Q874918 http://www.wikidata.org/entity/Q874918 Hesselbach http://www.wikidata.org/entity/Q253019 Point(8.37222 50.8853) +https://nwbib.de/spatial#Q1261781 http://www.wikidata.org/entity/Q1261781 Alme http://www.wikidata.org/entity/Q253019 Point(8.62028 51.4558) +https://nwbib.de/spatial#Q1746783 http://www.wikidata.org/entity/Q1746783 Kleinfischbach http://www.wikidata.org/entity/Q253019 Point(7.54056 50.9381) +https://nwbib.de/spatial#Q200581 http://www.wikidata.org/entity/Q200581 Rhede http://www.wikidata.org/entity/Q42744322 Point(6.700555555 51.833333333) +https://nwbib.de/spatial#Q1880361 http://www.wikidata.org/entity/Q1880361 Lüntenbeck http://www.wikidata.org/entity/Q253019 Point(7.08417 51.2503) +https://nwbib.de/spatial#Q620755 http://www.wikidata.org/entity/Q620755 Appelhülsen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(7.42375 51.898) +https://nwbib.de/spatial#Q1110953 http://www.wikidata.org/entity/Q1110953 Landkreis Grevenbroich-Neuß http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q26696033 http://www.wikidata.org/entity/Q26696033 Neheim http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q3257686 Point(7.9694283 51.4522612) +https://nwbib.de/spatial#Q1604848 http://www.wikidata.org/entity/Q1604848 Hemmerich http://www.wikidata.org/entity/Q253019 Point(6.92903 50.7634) +https://nwbib.de/spatial#Q11301 http://www.wikidata.org/entity/Q11301 Ennepetal http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.3425 51.302119444) +https://nwbib.de/spatial#Q1877734 http://www.wikidata.org/entity/Q1877734 Lustheide http://www.wikidata.org/entity/Q253019 Point(7.10333 50.9528) +https://nwbib.de/spatial#Q2147425 http://www.wikidata.org/entity/Q2147425 Rheder http://www.wikidata.org/entity/Q253019 Point(9.16361 51.6814) +https://nwbib.de/spatial#Q1396319 http://www.wikidata.org/entity/Q1396319 Holtrup http://www.wikidata.org/entity/Q253019 Point(8.87167 52.2028) +https://nwbib.de/spatial#Q28823621 http://www.wikidata.org/entity/Q28823621 Werrich/Perrich http://www.wikidata.org/entity/Q253019 Point(6.546111111 51.652778055) +https://nwbib.de/spatial#Q153406 http://www.wikidata.org/entity/Q153406 Worringen http://www.wikidata.org/entity/Q15632166 Point(6.865 51.065556) +https://nwbib.de/spatial#Q1316766 http://www.wikidata.org/entity/Q1316766 Rheinkassel http://www.wikidata.org/entity/Q253019 Point(6.93416667 51.04111111) +https://nwbib.de/spatial#Q1680366 http://www.wikidata.org/entity/Q1680366 Oberhenneborn http://www.wikidata.org/entity/Q253019 Point(8.297255555 51.233244444) +https://nwbib.de/spatial#Q652822 http://www.wikidata.org/entity/Q652822 Finkenberg http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q15632166 Point(7.06208 50.8971) +https://nwbib.de/spatial#Q2259877 http://www.wikidata.org/entity/Q2259877 Seelscheid http://www.wikidata.org/entity/Q253019 Point(7.324705555 50.872116666) +https://nwbib.de/spatial#Q820111 http://www.wikidata.org/entity/Q820111 Bergrath http://www.wikidata.org/entity/Q253019 Point(6.28444 50.8056) +https://nwbib.de/spatial#Q1429141 http://www.wikidata.org/entity/Q1429141 Floisdorf http://www.wikidata.org/entity/Q253019 Point(6.60972 50.6358) +https://nwbib.de/spatial#Q1279445 http://www.wikidata.org/entity/Q1279445 Friesdorf http://www.wikidata.org/entity/Q253019 Point(7.12841 50.6976) +https://nwbib.de/spatial#Q1382121 http://www.wikidata.org/entity/Q1382121 Eversen http://www.wikidata.org/entity/Q253019 Point(9.12552 51.8364) +https://nwbib.de/spatial#Q1646188 http://www.wikidata.org/entity/Q1646188 Neulouisendorf http://www.wikidata.org/entity/Q253019 Point(6.291944444 51.711666666) +https://nwbib.de/spatial#Q1959080 http://www.wikidata.org/entity/Q1959080 Amelsbüren http://www.wikidata.org/entity/Q253019 Point(7.6 51.8833) +https://nwbib.de/spatial#Q318612 http://www.wikidata.org/entity/Q318612 Odendorf http://www.wikidata.org/entity/Q253019 Point(6.880555555 50.647777777) +https://nwbib.de/spatial#Q1669858 http://www.wikidata.org/entity/Q1669858 St. Mauritz http://www.wikidata.org/entity/Q253019 Point(7.67222 51.9625) +https://nwbib.de/spatial#Q437275 http://www.wikidata.org/entity/Q437275 Altenhundem http://www.wikidata.org/entity/Q253019 Point(8.07306 51.1053) +https://nwbib.de/spatial#Q1545612 http://www.wikidata.org/entity/Q1545612 Kriegsdorf http://www.wikidata.org/entity/Q253019 Point(7.10138 50.8067) +https://nwbib.de/spatial#Q1625856 http://www.wikidata.org/entity/Q1625856 Homberg-Meiersberg http://www.wikidata.org/entity/Q253019 Point(6.9277 51.2934) +https://nwbib.de/spatial#Q1679505 http://www.wikidata.org/entity/Q1679505 Jakobsberg http://www.wikidata.org/entity/Q253019 Point(9.32956 51.6323) +https://nwbib.de/spatial#Q1644498 http://www.wikidata.org/entity/Q1644498 Ründeroth http://www.wikidata.org/entity/Q253019 Point(7.45 50.9917) +https://nwbib.de/spatial#Q1265066 http://www.wikidata.org/entity/Q1265066 Gilverath http://www.wikidata.org/entity/Q253019 Point(6.63325 51.1292) +https://nwbib.de/spatial#Q799671 http://www.wikidata.org/entity/Q799671 Badorf http://www.wikidata.org/entity/Q253019 Point(6.89111 50.8069) +https://nwbib.de/spatial#Q12472 http://www.wikidata.org/entity/Q12472 Niederkassel http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.033333333 50.816666666) +https://nwbib.de/spatial#Q1756856 http://www.wikidata.org/entity/Q1756856 Meiste http://www.wikidata.org/entity/Q253019 Point(8.48909 51.5114) +https://nwbib.de/spatial#Q1115398 http://www.wikidata.org/entity/Q1115398 Commerden http://www.wikidata.org/entity/Q253019 Point(6.30278 51.0636) +https://nwbib.de/spatial#Q1787239 http://www.wikidata.org/entity/Q1787239 Kreis Brilon http://www.wikidata.org/entity/Q106658 Point(8.56667 51.3833) +https://nwbib.de/spatial#Q163068 http://www.wikidata.org/entity/Q163068 Schermbeck http://www.wikidata.org/entity/Q262166 Point(6.875555555 51.695) +https://nwbib.de/spatial#Q15056742 http://www.wikidata.org/entity/Q15056742 Honsdorf http://www.wikidata.org/entity/Q253019 Point(6.18833333 51.00166667) +https://nwbib.de/spatial#Q19369337 http://www.wikidata.org/entity/Q19369337 Himmelmert http://www.wikidata.org/entity/Q253019 Point(7.828055555 51.1725) +https://nwbib.de/spatial#Q29639269 http://www.wikidata.org/entity/Q29639269 Neichen http://www.wikidata.org/entity/Q253019 Point(7.22445 50.947711111) +https://nwbib.de/spatial#Q56397628 http://www.wikidata.org/entity/Q56397628 Dekanat Meschede http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1787267 http://www.wikidata.org/entity/Q1787267 Kreis Düsseldorf-Mettmann http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.97 51.25) +https://nwbib.de/spatial#Q288376 http://www.wikidata.org/entity/Q288376 Massen http://www.wikidata.org/entity/Q253019 Point(7.65389 51.5397) +https://nwbib.de/spatial#Q1499806 http://www.wikidata.org/entity/Q1499806 Bismarck http://www.wikidata.org/entity/Q253019 Point(7.11806 51.53) +https://nwbib.de/spatial#Q2309758 http://www.wikidata.org/entity/Q2309758 Allenbach http://www.wikidata.org/entity/Q253019 Point(8.09216 50.9811) +https://nwbib.de/spatial#Q2146499 http://www.wikidata.org/entity/Q2146499 Retzen http://www.wikidata.org/entity/Q253019 Point(8.8054 52.0511) +https://nwbib.de/spatial#Q5764545 http://www.wikidata.org/entity/Q5764545 Meiderich/Beeck (Stadtbezirk) http://www.wikidata.org/entity/Q2740635 Point(6.76683333 51.46638889) +https://nwbib.de/spatial#Q819752 http://www.wikidata.org/entity/Q819752 Bergheim http://www.wikidata.org/entity/Q253019 Point(9.05028 51.8342) +https://nwbib.de/spatial#Q2357464 http://www.wikidata.org/entity/Q2357464 Struthütten http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(7.97333333 50.78305556) +https://nwbib.de/spatial#N74 http://www.wikidata.org/entity/Q67206680 Kleinere weltliche Territorien in Westfalen http://www.wikidata.org/entity/Q16889133 +https://nwbib.de/spatial#Q884073 http://www.wikidata.org/entity/Q884073 Bliesheim http://www.wikidata.org/entity/Q253019 Point(6.820555555 50.781388888) +https://nwbib.de/spatial#Q1455745 http://www.wikidata.org/entity/Q1455745 Frettermühle http://www.wikidata.org/entity/Q253019 Point(8.01139 51.18) +https://nwbib.de/spatial#Q1419894 http://www.wikidata.org/entity/Q1419894 Fischelbach http://www.wikidata.org/entity/Q253019 Point(8.354 50.874) +https://nwbib.de/spatial#Q2007164 http://www.wikidata.org/entity/Q2007164 Nützenberg http://www.wikidata.org/entity/Q253019 Point(7.11306 51.2531) +https://nwbib.de/spatial#Q1236434 http://www.wikidata.org/entity/Q1236434 Hatzfeld http://www.wikidata.org/entity/Q253019 Point(7.18139 51.2869) +https://nwbib.de/spatial#Q18816341 http://www.wikidata.org/entity/Q18816341 Illeschlade http://www.wikidata.org/entity/Q253019 Point(7.952525 51.164576) +https://nwbib.de/spatial#Q1784044 http://www.wikidata.org/entity/Q1784044 Oberense http://www.wikidata.org/entity/Q253019 Point(7.99757 51.5087) +https://nwbib.de/spatial#Q1667729 http://www.wikidata.org/entity/Q1667729 Kuckum http://www.wikidata.org/entity/Q253019 Point(6.39083 51.0831) +https://nwbib.de/spatial#Q2534487 http://www.wikidata.org/entity/Q2534487 Vorst http://www.wikidata.org/entity/Q253019 Point(6.58073 51.2135) +https://nwbib.de/spatial#Q1332110 http://www.wikidata.org/entity/Q1332110 Röspe http://www.wikidata.org/entity/Q253019 Point(8.251111111 51.034444444) +https://nwbib.de/spatial#Q73091 http://www.wikidata.org/entity/Q73091 Albaxen http://www.wikidata.org/entity/Q253019 Point(9.40111 51.8211) +https://nwbib.de/spatial#Q1470596 http://www.wikidata.org/entity/Q1470596 Frotheim http://www.wikidata.org/entity/Q253019 Point(8.675277777 52.356111111) +https://nwbib.de/spatial#Q1021693 http://www.wikidata.org/entity/Q1021693 Bürrig http://www.wikidata.org/entity/Q253019 Point(6.98178 51.0481) +https://nwbib.de/spatial#Q56008057 http://www.wikidata.org/entity/Q56008057 Raadt http://www.wikidata.org/entity/Q253019 Point(6.932527777 51.408166666) +https://nwbib.de/spatial#Q200528 http://www.wikidata.org/entity/Q200528 Vreden http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(6.833055555 52.033055555) +https://nwbib.de/spatial#Q2554785 http://www.wikidata.org/entity/Q2554785 Weiberg http://www.wikidata.org/entity/Q253019 Point(8.590555555 51.5125) +https://nwbib.de/spatial#Q543197 http://www.wikidata.org/entity/Q543197 Hofstede http://www.wikidata.org/entity/Q253019 Point(7.19583 51.5053) +https://nwbib.de/spatial#Q2143169 http://www.wikidata.org/entity/Q2143169 Remshagen http://www.wikidata.org/entity/Q253019 Point(7.42 51.0219) +https://nwbib.de/spatial#Q1316769 http://www.wikidata.org/entity/Q1316769 Ludenberg http://www.wikidata.org/entity/Q1852178 Point(6.86417 51.2572) +https://nwbib.de/spatial#Q519764 http://www.wikidata.org/entity/Q519764 Haspe http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.423611111 51.347777777) +https://nwbib.de/spatial#Q181673 http://www.wikidata.org/entity/Q181673 Ochtrup http://www.wikidata.org/entity/Q42744322 Point(7.190277777 52.205555555) +https://nwbib.de/spatial#Q2527080 http://www.wikidata.org/entity/Q2527080 Vinn http://www.wikidata.org/entity/Q253019 Point(6.05598 51.086) +https://nwbib.de/spatial#Q1479841 http://www.wikidata.org/entity/Q1479841 Fölsen http://www.wikidata.org/entity/Q253019 Point(9.09943 51.6252) +https://nwbib.de/spatial#Q20826156 http://www.wikidata.org/entity/Q20826156 Herringen http://www.wikidata.org/entity/Q253019 Point(7.74083328 51.66166687) +https://nwbib.de/spatial#Q43869610 http://www.wikidata.org/entity/Q43869610 Bentlage http://www.wikidata.org/entity/Q253019 Point(7.405833333 52.295833333) +https://nwbib.de/spatial#Q1402750 http://www.wikidata.org/entity/Q1402750 Feldmark http://www.wikidata.org/entity/Q253019 Point(6.60975 51.6758) +https://nwbib.de/spatial#Q48879889 http://www.wikidata.org/entity/Q48879889 Spork http://www.wikidata.org/entity/Q253019 Point(6.561111111 51.863333333) +https://nwbib.de/spatial#Q1296597 http://www.wikidata.org/entity/Q1296597 Rehmerloh http://www.wikidata.org/entity/Q253019 Point(8.663888888 52.239444444) +https://nwbib.de/spatial#Q27479164 http://www.wikidata.org/entity/Q27479164 Iseringhausen http://www.wikidata.org/entity/Q253019 Point(7.779267 50.997782) +https://nwbib.de/spatial#Q674702 http://www.wikidata.org/entity/Q674702 Berghausen http://www.wikidata.org/entity/Q253019 Point(8.35 51.0344) +https://nwbib.de/spatial#Q1803000 http://www.wikidata.org/entity/Q1803000 Landhausen http://www.wikidata.org/entity/Q253019 Point(7.73722 51.4011) +https://nwbib.de/spatial#Q814023 http://www.wikidata.org/entity/Q814023 Beeckerwerth http://www.wikidata.org/entity/Q253019 Point(6.70111 51.4753) +https://nwbib.de/spatial#Q1799334 http://www.wikidata.org/entity/Q1799334 Laar http://www.wikidata.org/entity/Q253019 Point(6.73333 51.465) +https://nwbib.de/spatial#Q1630503 http://www.wikidata.org/entity/Q1630503 Rupperath http://www.wikidata.org/entity/Q253019 Point(6.877847222 50.471161111) +https://nwbib.de/spatial#Q1659080 http://www.wikidata.org/entity/Q1659080 Ilse http://www.wikidata.org/entity/Q253019 Point(9.04111 52.3994) +https://nwbib.de/spatial#Q1796746 http://www.wikidata.org/entity/Q1796746 Köterberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q19730508 Point(9.32028 51.8597) +https://nwbib.de/spatial#Q1624051 http://www.wikidata.org/entity/Q1624051 Urft http://www.wikidata.org/entity/Q253019 Point(6.57556 50.5108) +https://nwbib.de/spatial#Q896722 http://www.wikidata.org/entity/Q896722 Brüser Berg http://www.wikidata.org/entity/Q253019 Point(7.056227777 50.698577777) +https://nwbib.de/spatial#Q1741053 http://www.wikidata.org/entity/Q1741053 Kierdorf http://www.wikidata.org/entity/Q253019 Point(6.78889 50.8406) +https://nwbib.de/spatial#Q15815893 http://www.wikidata.org/entity/Q15815893 Honschaft Obschwarzbach http://www.wikidata.org/entity/Q253019 Point(6.995 51.28638889) +https://nwbib.de/spatial#N04 http://www.wikidata.org/entity/Q8614 Westfalen http://www.wikidata.org/entity/Q82794 Point(8.0 52.0) +https://nwbib.de/spatial#Q326318 http://www.wikidata.org/entity/Q326318 Bentrup http://www.wikidata.org/entity/Q253019 Point(8.881388888 51.986944444) +https://nwbib.de/spatial#Q819472 http://www.wikidata.org/entity/Q819472 Berge http://www.wikidata.org/entity/Q253019 Point(8.15493 51.3315) +https://nwbib.de/spatial#Q1668349 http://www.wikidata.org/entity/Q1668349 Oberdielfen http://www.wikidata.org/entity/Q253019 Point(8.09389 50.8394) +https://nwbib.de/spatial#Q1628011 http://www.wikidata.org/entity/Q1628011 Horbach (Aachen) http://www.wikidata.org/entity/Q253019 Point(6.04444 50.8333) +https://nwbib.de/spatial#Q1342525 http://www.wikidata.org/entity/Q1342525 Gronau http://www.wikidata.org/entity/Q253019 Point(7.12283 50.7183) +https://nwbib.de/spatial#Q1302370 http://www.wikidata.org/entity/Q1302370 Eickum http://www.wikidata.org/entity/Q253019 Point(8.608333333 52.116666666) +https://nwbib.de/spatial#Q883745 http://www.wikidata.org/entity/Q883745 Langerfeld http://www.wikidata.org/entity/Q2983893 Point(7.24444 51.2744) +https://nwbib.de/spatial#Q1607669 http://www.wikidata.org/entity/Q1607669 Heppen http://www.wikidata.org/entity/Q253019 Point(8.13861 51.6011) +https://nwbib.de/spatial#Q2301766 http://www.wikidata.org/entity/Q2301766 Sonnborn http://www.wikidata.org/entity/Q253019 Point(7.09762 51.2382) +https://nwbib.de/spatial#Q49720038 http://www.wikidata.org/entity/Q49720038 Birken http://www.wikidata.org/entity/Q253019 Point(7.330194444 50.819777777) +https://nwbib.de/spatial#Q432818 http://www.wikidata.org/entity/Q432818 Alsum http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(6.72777 51.4959) +https://nwbib.de/spatial#Q889063 http://www.wikidata.org/entity/Q889063 Hiltrop http://www.wikidata.org/entity/Q253019 Point(7.25917 51.5144) +https://nwbib.de/spatial#Q1017751 http://www.wikidata.org/entity/Q1017751 Bustedt http://www.wikidata.org/entity/Q253019 Point(8.596111111 52.174444444) +https://nwbib.de/spatial#Q1464224 http://www.wikidata.org/entity/Q1464224 Friedrichsfeld http://www.wikidata.org/entity/Q253019 Point(6.65472 51.6269) +https://nwbib.de/spatial#Q2165971 http://www.wikidata.org/entity/Q2165971 Ronnewinkel http://www.wikidata.org/entity/Q253019 Point(7.82917 51.0361) +https://nwbib.de/spatial#Q1425975 http://www.wikidata.org/entity/Q1425975 Vaalserquartier http://www.wikidata.org/entity/Q253019 Point(6.027222222 50.768055555) +https://nwbib.de/spatial#Q2340651 http://www.wikidata.org/entity/Q2340651 Steinforth-Rubbelrath http://www.wikidata.org/entity/Q253019 Point(6.54776572 51.14774806) +https://nwbib.de/spatial#Q2142866 http://www.wikidata.org/entity/Q2142866 Remblinghausen http://www.wikidata.org/entity/Q253019 Point(8.30448 51.3039) +https://nwbib.de/spatial#Q1300847 http://www.wikidata.org/entity/Q1300847 Gehrden http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q2195811 Point(9.12139 51.6561) +https://nwbib.de/spatial#N46 http://www.wikidata.org/entity/Q249428 Großherzogtum Berg http://www.wikidata.org/entity/Q26879769, http://www.wikidata.org/entity/Q165116 +https://nwbib.de/spatial#Q153444 http://www.wikidata.org/entity/Q153444 Kettwig http://www.wikidata.org/entity/Q253019 Point(6.94 51.368333) +https://nwbib.de/spatial#Q2148416 http://www.wikidata.org/entity/Q2148416 Rhöndorf http://www.wikidata.org/entity/Q253019 Point(7.21282 50.6595) +https://nwbib.de/spatial#Q2050613 http://www.wikidata.org/entity/Q2050613 Papenhöfen http://www.wikidata.org/entity/Q253019 Point(9.25747 51.8424) +https://nwbib.de/spatial#Q599193 http://www.wikidata.org/entity/Q599193 Hohes Venn http://www.wikidata.org/entity/Q1414991, http://www.wikidata.org/entity/Q46831, http://www.wikidata.org/entity/Q1970725 Point(6.102778 50.521389) +https://nwbib.de/spatial#Q5575 http://www.wikidata.org/entity/Q5575 Werdohl http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.756169444 51.256269444) +https://nwbib.de/spatial#Q1250633 http://www.wikidata.org/entity/Q1250633 Holthausen http://www.wikidata.org/entity/Q253019 Point(7.44 51.566111111) +https://nwbib.de/spatial#Q1872219 http://www.wikidata.org/entity/Q1872219 Louisendorf http://www.wikidata.org/entity/Q253019 Point(6.231822222 51.727666666) +https://nwbib.de/spatial#Q2256779 http://www.wikidata.org/entity/Q2256779 Schwelle http://www.wikidata.org/entity/Q253019 Point(8.52361 51.7064) +https://nwbib.de/spatial#Q2563342 http://www.wikidata.org/entity/Q2563342 Werringsen http://www.wikidata.org/entity/Q253019 Point(7.8385 51.4557) +https://nwbib.de/spatial#Q1651965 http://www.wikidata.org/entity/Q1651965 Hövelsenne http://www.wikidata.org/entity/Q350895, http://www.wikidata.org/entity/Q253019 Point(8.72 51.8367) +https://nwbib.de/spatial#Q2156182 http://www.wikidata.org/entity/Q2156182 Robend http://www.wikidata.org/entity/Q253019 Point(6.415 51.256666666) +https://nwbib.de/spatial#Q1597127 http://www.wikidata.org/entity/Q1597127 Wippringsen http://www.wikidata.org/entity/Q253019 Point(8.09096 51.5152) +https://nwbib.de/spatial#Q2163933 http://www.wikidata.org/entity/Q2163933 Rolfzen http://www.wikidata.org/entity/Q253019 Point(9.14354 51.8469) +https://nwbib.de/spatial#Q903333 http://www.wikidata.org/entity/Q903333 Braßhagen http://www.wikidata.org/entity/Q253019 Point(7.30399 51.1561) +https://nwbib.de/spatial#Q812014 http://www.wikidata.org/entity/Q812014 Bavenhausen http://www.wikidata.org/entity/Q253019 Point(8.9406 52.0818) +https://nwbib.de/spatial#Q1368051 http://www.wikidata.org/entity/Q1368051 Espeln http://www.wikidata.org/entity/Q253019 Point(8.59333 51.8214) +https://nwbib.de/spatial#Q1464915 http://www.wikidata.org/entity/Q1464915 Frimmersdorf http://www.wikidata.org/entity/Q123705 Point(6.57682 51.0454) +https://nwbib.de/spatial#Q10941 http://www.wikidata.org/entity/Q10941 Holzwickede http://www.wikidata.org/entity/Q262166 Point(7.616666666 51.5) +https://nwbib.de/spatial#Q19428914 http://www.wikidata.org/entity/Q19428914 Osterwick http://www.wikidata.org/entity/Q253019 Point(7.2104 52.0173) +https://nwbib.de/spatial#Q15059086 http://www.wikidata.org/entity/Q15059086 Queckenberg http://www.wikidata.org/entity/Q253019 Point(6.8914772 50.594028) +https://nwbib.de/spatial#Q2585200 http://www.wikidata.org/entity/Q2585200 Winz-Baak http://www.wikidata.org/entity/Q253019 Point(7.167222222 51.414722222) +https://nwbib.de/spatial#Q225120 http://www.wikidata.org/entity/Q225120 Herzebrock-Clarholz http://www.wikidata.org/entity/Q262166 Point(8.233333333 51.883333333) +https://nwbib.de/spatial#Q48200720 http://www.wikidata.org/entity/Q48200720 Butendorf http://www.wikidata.org/entity/Q253019 Point(7.000277777 51.561944444) +https://nwbib.de/spatial#Q14926 http://www.wikidata.org/entity/Q14926 Senden http://www.wikidata.org/entity/Q262166 Point(7.482777777 51.857222222) +https://nwbib.de/spatial#Q983939 http://www.wikidata.org/entity/Q983939 Walbeck http://www.wikidata.org/entity/Q253019 Point(6.24139 51.49694) +https://nwbib.de/spatial#Q10780109 http://www.wikidata.org/entity/Q10780109 Schöndelt http://www.wikidata.org/entity/Q253019 Point(8.10111 51.195) +https://nwbib.de/spatial#Q2805 http://www.wikidata.org/entity/Q2805 Krefeld http://www.wikidata.org/entity/Q85635630, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q42744322 Point(6.566666666 51.333333333) +https://nwbib.de/spatial#Q448824 http://www.wikidata.org/entity/Q448824 Alverskirchen http://www.wikidata.org/entity/Q253019 Point(7.80972 51.9128) +https://nwbib.de/spatial#Q876037 http://www.wikidata.org/entity/Q876037 Dünstekoven http://www.wikidata.org/entity/Q253019 Point(6.933333333 50.7) +https://nwbib.de/spatial#Q884844 http://www.wikidata.org/entity/Q884844 Jerxen-Orbke http://www.wikidata.org/entity/Q253019 Point(8.85806 51.9553) +https://nwbib.de/spatial#Q11323 http://www.wikidata.org/entity/Q11323 Breckerfeld http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(7.466666666 51.261111111) +https://nwbib.de/spatial#Q817833 http://www.wikidata.org/entity/Q817833 Bennerscheid http://www.wikidata.org/entity/Q253019 Point(7.31998 50.7074) +https://nwbib.de/spatial#Q642199 http://www.wikidata.org/entity/Q642199 Stetternich http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.406027777 50.922527777) +https://nwbib.de/spatial#Q2303894 http://www.wikidata.org/entity/Q2303894 Sottenbach http://www.wikidata.org/entity/Q253019 Point(7.22102 50.8562) +https://nwbib.de/spatial#Q1521837 http://www.wikidata.org/entity/Q1521837 Schweinheim http://www.wikidata.org/entity/Q253019 Point(6.86944 50.6128) +https://nwbib.de/spatial#Q1017273 http://www.wikidata.org/entity/Q1017273 Busch http://www.wikidata.org/entity/Q253019 Point(6.13444 50.8792) +https://nwbib.de/spatial#Q1353462 http://www.wikidata.org/entity/Q1353462 Wulwesort http://www.wikidata.org/entity/Q253019 Point(8.25784 51.1166) +https://nwbib.de/spatial#Q1908910 http://www.wikidata.org/entity/Q1908910 Matorf-Kirchheide http://www.wikidata.org/entity/Q253019 Point(8.87524 52.0796) +https://nwbib.de/spatial#Q10893 http://www.wikidata.org/entity/Q10893 Lennestadt http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.068055555 51.123611111) +https://nwbib.de/spatial#Q699441 http://www.wikidata.org/entity/Q699441 Arrenkamp http://www.wikidata.org/entity/Q253019 Point(8.42081 52.4286) +https://nwbib.de/spatial#Q1722366 http://www.wikidata.org/entity/Q1722366 Kalkkuhl http://www.wikidata.org/entity/Q253019 Point(7.47611 51.0328) +https://nwbib.de/spatial#Q2246325 http://www.wikidata.org/entity/Q2246325 Schmidtheim http://www.wikidata.org/entity/Q253019 Point(6.56056 50.4161) +https://nwbib.de/spatial#Q19369328 http://www.wikidata.org/entity/Q19369328 Bennert http://www.wikidata.org/entity/Q253019 Point(7.03127778 51.11905556) +https://nwbib.de/spatial#Q2151108 http://www.wikidata.org/entity/Q2151108 Richerzhagen http://www.wikidata.org/entity/Q253019 Point(7.2202 51.0561) +https://nwbib.de/spatial#Q1110266 http://www.wikidata.org/entity/Q1110266 Hilfarth http://www.wikidata.org/entity/Q2983893 Point(6.21889 51.0397) +https://nwbib.de/spatial#Q1677990 http://www.wikidata.org/entity/Q1677990 Oberwennerscheid http://www.wikidata.org/entity/Q253019 Point(7.34917 50.8636) +https://nwbib.de/spatial#Q1361890 http://www.wikidata.org/entity/Q1361890 Kellen http://www.wikidata.org/entity/Q2983893 Point(6.16125 51.799861111) +https://nwbib.de/spatial#Q1311631 http://www.wikidata.org/entity/Q1311631 Meindorf http://www.wikidata.org/entity/Q253019 Point(7.13861 50.7778) +https://nwbib.de/spatial#Q47445689 http://www.wikidata.org/entity/Q47445689 Schwalm-Nette-Platte http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q14956 http://www.wikidata.org/entity/Q14956 Wesseling http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q42744322 Point(6.9786 50.82075) +https://nwbib.de/spatial#Q2072908 http://www.wikidata.org/entity/Q2072908 Pesch http://www.wikidata.org/entity/Q253019 Point(6.45639 51.0544) +https://nwbib.de/spatial#Q1104598 http://www.wikidata.org/entity/Q1104598 Cobbenrode http://www.wikidata.org/entity/Q253019 Point(8.15861 51.1994) +https://nwbib.de/spatial#Q53913 http://www.wikidata.org/entity/Q53913 Rödinghausen http://www.wikidata.org/entity/Q262166 Point(8.481666666 52.255) +https://nwbib.de/spatial#Q2010494 http://www.wikidata.org/entity/Q2010494 Obernbeck http://www.wikidata.org/entity/Q253019 Point(8.702222222 52.202777777) +https://nwbib.de/spatial#Q64951002 http://www.wikidata.org/entity/Q64951002 Salmorth http://www.wikidata.org/entity/Q253019 Point(6.141836 51.834556) +https://nwbib.de/spatial#Q315660 http://www.wikidata.org/entity/Q315660 Erp http://www.wikidata.org/entity/Q253019 Point(6.72389 50.76556) +https://nwbib.de/spatial#Q1120297 http://www.wikidata.org/entity/Q1120297 Haaren http://www.wikidata.org/entity/Q253019 Point(8.72833 51.5664) +https://nwbib.de/spatial#Q47462077 http://www.wikidata.org/entity/Q47462077 Kirchenkreis Dortmund http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q47462109 http://www.wikidata.org/entity/Q47462109 Kirchenkreis Gladbeck-Bottrop-Dorsten http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q1250678 http://www.wikidata.org/entity/Q1250678 Nette http://www.wikidata.org/entity/Q253019 Point(7.38333 51.5667) +https://nwbib.de/spatial#N47 http://www.wikidata.org/entity/Q152420 Herzogtum Geldern http://www.wikidata.org/entity/Q26830017, http://www.wikidata.org/entity/Q3024240 Point(6.33333333 51.51666667) +https://nwbib.de/spatial#Q1747972 http://www.wikidata.org/entity/Q1747972 Raumland http://www.wikidata.org/entity/Q253019 Point(8.386111111 51.0325) +https://nwbib.de/spatial#Q2252473 http://www.wikidata.org/entity/Q2252473 Schwaam http://www.wikidata.org/entity/Q253019 Point(6.27667 51.175) +https://nwbib.de/spatial#Q1523373 http://www.wikidata.org/entity/Q1523373 Giesendorf http://www.wikidata.org/entity/Q253019 Point(6.57919 50.9286) +https://nwbib.de/spatial#Q220420 http://www.wikidata.org/entity/Q220420 Zopp http://www.wikidata.org/entity/Q253019 Point(6.136944444 50.868888888) +https://nwbib.de/spatial#Q15122844 http://www.wikidata.org/entity/Q15122844 Niederdrees http://www.wikidata.org/entity/Q253019 Point(6.91632 50.65049) +https://nwbib.de/spatial#Q1604708 http://www.wikidata.org/entity/Q1604708 Hembsen http://www.wikidata.org/entity/Q253019 Point(9.24083 51.7097) +https://nwbib.de/spatial#Q19371153 http://www.wikidata.org/entity/Q19371153 Horst http://www.wikidata.org/entity/Q253019 Point(6.17616177 51.028856) +https://nwbib.de/spatial#Q151448 http://www.wikidata.org/entity/Q151448 Schelsen http://www.wikidata.org/entity/Q253019 Point(6.51884 51.1545) +https://nwbib.de/spatial#Q1525372 http://www.wikidata.org/entity/Q1525372 Nievenheim http://www.wikidata.org/entity/Q253019 Point(6.76861 51.1142) +https://nwbib.de/spatial#Q2282582 http://www.wikidata.org/entity/Q2282582 Siedlinghausen http://www.wikidata.org/entity/Q253019 Point(8.4711 51.253) +https://nwbib.de/spatial#Q446967 http://www.wikidata.org/entity/Q446967 Altwindeck http://www.wikidata.org/entity/Q253019 Point(7.57407 50.8118) +https://nwbib.de/spatial#Q1342942 http://www.wikidata.org/entity/Q1342942 Engstfeld http://www.wikidata.org/entity/Q253019 Point(7.47463 51.1498) +https://nwbib.de/spatial#Q14923 http://www.wikidata.org/entity/Q14923 Nordkirchen http://www.wikidata.org/entity/Q262166 Point(7.525555555 51.738055555) +https://nwbib.de/spatial#Q1250668 http://www.wikidata.org/entity/Q1250668 Lindenhorst http://www.wikidata.org/entity/Q253019 Point(7.44 51.5661) +https://nwbib.de/spatial#Q870887 http://www.wikidata.org/entity/Q870887 Günnigfeld http://www.wikidata.org/entity/Q253019 Point(7.147777777 51.495833333) +https://nwbib.de/spatial#Q1626140 http://www.wikidata.org/entity/Q1626140 Hommersum http://www.wikidata.org/entity/Q253019 Point(6.033333333 51.683611111) +https://nwbib.de/spatial#Q31312912 http://www.wikidata.org/entity/Q31312912 Lippischer Wald http://www.wikidata.org/entity/Q4421, http://www.wikidata.org/entity/Q54050 Point(8.819722222 51.901111111) +https://nwbib.de/spatial#Q876829 http://www.wikidata.org/entity/Q876829 Geislar http://www.wikidata.org/entity/Q253019 Point(7.127036111 50.760405555) +https://nwbib.de/spatial#Q878277 http://www.wikidata.org/entity/Q878277 Stotzheim http://www.wikidata.org/entity/Q253019 Point(6.81222 50.6286) +https://nwbib.de/spatial#Q55936383 http://www.wikidata.org/entity/Q55936383 Herrschaft Canstein http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q1368642 http://www.wikidata.org/entity/Q1368642 Schonnebeck http://www.wikidata.org/entity/Q253019 Point(7.064722 51.487222) +https://nwbib.de/spatial#Q1646561 http://www.wikidata.org/entity/Q1646561 Krekel http://www.wikidata.org/entity/Q253019 Point(6.53333 50.4711) +https://nwbib.de/spatial#Q1265603 http://www.wikidata.org/entity/Q1265603 Göstrup http://www.wikidata.org/entity/Q253019 Point(9.03958 52.0931) +https://nwbib.de/spatial#Q2100 http://www.wikidata.org/entity/Q2100 Duisburg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q253030, http://www.wikidata.org/entity/Q85635630 Point(6.761111111 51.432222222) +https://nwbib.de/spatial#Q19965161 http://www.wikidata.org/entity/Q19965161 Kessebüren http://www.wikidata.org/entity/Q253019 Point(7.72572222 51.52038889) +https://nwbib.de/spatial#Q2054052 http://www.wikidata.org/entity/Q2054052 Buschdorf http://www.wikidata.org/entity/Q253019 Point(7.05061 50.7593) +https://nwbib.de/spatial#Q20181706 http://www.wikidata.org/entity/Q20181706 Ostendorf http://www.wikidata.org/entity/Q253019 Point(7.309 52.1061) +https://nwbib.de/spatial#Q1805078 http://www.wikidata.org/entity/Q1805078 Oberelspe http://www.wikidata.org/entity/Q253019 Point(8.08806 51.1592) +https://nwbib.de/spatial#Q317111 http://www.wikidata.org/entity/Q317111 Schwarzrheindorf/Vilich-Rheindorf http://www.wikidata.org/entity/Q253019 Point(7.119722222 50.747777777) +https://nwbib.de/spatial#Q29878913 http://www.wikidata.org/entity/Q29878913 Enkeln http://www.wikidata.org/entity/Q253019 Point(7.272388888 51.070444444) +https://nwbib.de/spatial#Q879553 http://www.wikidata.org/entity/Q879553 Hochneukirch http://www.wikidata.org/entity/Q253019 Point(6.455277777 51.100555555) +https://nwbib.de/spatial#Q1609471 http://www.wikidata.org/entity/Q1609471 Herbram http://www.wikidata.org/entity/Q253019 Point(8.916111111 51.671388888) +https://nwbib.de/spatial#Q2141962 http://www.wikidata.org/entity/Q2141962 Reisholz http://www.wikidata.org/entity/Q1852178 Point(6.86583 51.1767) +https://nwbib.de/spatial#Q1534520 http://www.wikidata.org/entity/Q1534520 Golbach http://www.wikidata.org/entity/Q253019 Point(6.52972 50.5275) +https://nwbib.de/spatial#Q1221477 http://www.wikidata.org/entity/Q1221477 Diestedde http://www.wikidata.org/entity/Q253019 Point(8.17278 51.7361) +https://nwbib.de/spatial#Q6298 http://www.wikidata.org/entity/Q6298 Oberbergischer Kreis http://www.wikidata.org/entity/Q20738811 Point(7.516666666 51.033333333) +https://nwbib.de/spatial#Q1499032 http://www.wikidata.org/entity/Q1499032 Geistingen http://www.wikidata.org/entity/Q253019 Point(7.27 50.7717) +https://nwbib.de/spatial#Q1520802 http://www.wikidata.org/entity/Q1520802 Lülsdorf http://www.wikidata.org/entity/Q253019 Point(7.01444 50.8292) +https://nwbib.de/spatial#Q1261376 http://www.wikidata.org/entity/Q1261376 Harlinghausen http://www.wikidata.org/entity/Q253019 Point(8.48472 52.3133) +https://nwbib.de/spatial#Q1761685 http://www.wikidata.org/entity/Q1761685 Stadtbezirk Münster-Nord http://www.wikidata.org/entity/Q2740635 Point(7.61667 51.9917) +https://nwbib.de/spatial#Q1367211 http://www.wikidata.org/entity/Q1367211 Eschweiler über Feld http://www.wikidata.org/entity/Q253019 Point(6.588333333 50.812777777) +https://nwbib.de/spatial#Q1921007 http://www.wikidata.org/entity/Q1921007 Menzel http://www.wikidata.org/entity/Q253019 Point(8.40814 51.5257) +https://nwbib.de/spatial#Q15055964 http://www.wikidata.org/entity/Q15055964 Elfringhausen http://www.wikidata.org/entity/Q253019 Point(7.176328 51.338104) +https://nwbib.de/spatial#Q1271200 http://www.wikidata.org/entity/Q1271200 Dörenhagen http://www.wikidata.org/entity/Q253019 Point(8.833888888 51.672222222) +https://nwbib.de/spatial#Q245542 http://www.wikidata.org/entity/Q245542 Kürten http://www.wikidata.org/entity/Q262166 Point(7.26667 51.05) +https://nwbib.de/spatial#Q721313 http://www.wikidata.org/entity/Q721313 Asbeck http://www.wikidata.org/entity/Q253019 Point(7.88188 51.4021) +https://nwbib.de/spatial#Q2559393 http://www.wikidata.org/entity/Q2559393 Wenholthausen http://www.wikidata.org/entity/Q253019 Point(8.17923 51.2877) +https://nwbib.de/spatial#Q56022363 http://www.wikidata.org/entity/Q56022363 Stessen http://www.wikidata.org/entity/Q253019 Point(6.554055555 51.121583333) +https://nwbib.de/spatial#Q1613468 http://www.wikidata.org/entity/Q1613468 Krebsöge http://www.wikidata.org/entity/Q253019 Point(7.30194 51.2011) +https://nwbib.de/spatial#Q1625196 http://www.wikidata.org/entity/Q1625196 Holterhöfe http://www.wikidata.org/entity/Q253019 Point(6.50833 51.2917) +https://nwbib.de/spatial#Q1593632 http://www.wikidata.org/entity/Q1593632 Heesfeld http://www.wikidata.org/entity/Q253019 Point(7.53851 51.2092) +https://nwbib.de/spatial#Q817148 http://www.wikidata.org/entity/Q817148 Benfe http://www.wikidata.org/entity/Q253019 Point(8.2425 50.9339) +https://nwbib.de/spatial#Q55986074 http://www.wikidata.org/entity/Q55986074 Geistenbeck http://www.wikidata.org/entity/Q2983893 Point(6.439472222 51.151111111) +https://nwbib.de/spatial#Q1271623 http://www.wikidata.org/entity/Q1271623 Düdinghausen http://www.wikidata.org/entity/Q253019 Point(8.69361 51.2617) +https://nwbib.de/spatial#Q2041586 http://www.wikidata.org/entity/Q2041586 Otzenrath http://www.wikidata.org/entity/Q253019 Point(6.464444444 51.070555555) +https://nwbib.de/spatial#Q2564643 http://www.wikidata.org/entity/Q2564643 Westenholz http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.470277777 51.756388888) +https://nwbib.de/spatial#Q485684 http://www.wikidata.org/entity/Q485684 Suderwick http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(6.502222 51.859167) +https://nwbib.de/spatial#Q168646 http://www.wikidata.org/entity/Q168646 Blomberg http://www.wikidata.org/entity/Q42744322 Point(9.083055555 51.933055555) +https://nwbib.de/spatial#Q2147631 http://www.wikidata.org/entity/Q2147631 Rheinfeld http://www.wikidata.org/entity/Q253019 Point(6.85684 51.1128) +https://nwbib.de/spatial#Q1558532 http://www.wikidata.org/entity/Q1558532 Harzberg http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q19730508 Point(9.20194 51.9283) +https://nwbib.de/spatial#Q1699153 http://www.wikidata.org/entity/Q1699153 Wachendorf http://www.wikidata.org/entity/Q253019 Point(6.74056 50.5956) +https://nwbib.de/spatial#Q54803595 http://www.wikidata.org/entity/Q54803595 Stadtbezirk I (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q56007480 http://www.wikidata.org/entity/Q56007480 Winkhausen http://www.wikidata.org/entity/Q253019 Point(6.909916666 51.447055555) +https://nwbib.de/spatial#Q1585120 http://www.wikidata.org/entity/Q1585120 Hardissen http://www.wikidata.org/entity/Q253019 Point(8.82686 52.0083) +https://nwbib.de/spatial#Q822015 http://www.wikidata.org/entity/Q822015 Bermershausen http://www.wikidata.org/entity/Q253019 Point(8.346111111 50.951388888) +https://nwbib.de/spatial#Q1628288 http://www.wikidata.org/entity/Q1628288 Horn http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(8.94444 51.8728) +https://nwbib.de/spatial#Q1700 http://www.wikidata.org/entity/Q1700 Münsterland http://www.wikidata.org/entity/Q82794 Point(7.62869444 51.96294444) +https://nwbib.de/spatial#Q1236620 http://www.wikidata.org/entity/Q1236620 Stedefreund http://www.wikidata.org/entity/Q253019 Point(8.607777777 52.0825) +https://nwbib.de/spatial#Q55986040 http://www.wikidata.org/entity/Q55986040 Herrschaft Volmarstein http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q3890 http://www.wikidata.org/entity/Q3890 Rheine http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.433333333 52.283333333) +https://nwbib.de/spatial#Q1475395 http://www.wikidata.org/entity/Q1475395 Broich http://www.wikidata.org/entity/Q2983893 Point(6.85341 51.4216) +https://nwbib.de/spatial#Q740616 http://www.wikidata.org/entity/Q740616 Lüttringhausen http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q2740635 Point(7.233333333 51.216666666) +https://nwbib.de/spatial#Q1614154 http://www.wikidata.org/entity/Q1614154 Herrenstrunden http://www.wikidata.org/entity/Q253019 Point(7.181111111 51.007222222) +https://nwbib.de/spatial#Q6210 http://www.wikidata.org/entity/Q6210 Kreis Coesfeld http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q20738811 Point(7.383333333 51.866666666) +https://nwbib.de/spatial#Q1610148 http://www.wikidata.org/entity/Q1610148 Herlinghausen http://www.wikidata.org/entity/Q253019 Point(9.205555555 51.47) +https://nwbib.de/spatial#Q1538414 http://www.wikidata.org/entity/Q1538414 Gorspen-Vahlsen http://www.wikidata.org/entity/Q253019 Point(9.02611 52.3847) +https://nwbib.de/spatial#Q1183214 http://www.wikidata.org/entity/Q1183214 Deilinghofen http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q253019 Point(7.801111111 51.376666666) +https://nwbib.de/spatial#Q325202 http://www.wikidata.org/entity/Q325202 Benediktinerkloster Aachen Burtscheid http://www.wikidata.org/entity/Q160742, http://www.wikidata.org/entity/Q44613, http://www.wikidata.org/entity/Q2742167 Point(6.09333 50.7631) +https://nwbib.de/spatial#Q26208587 http://www.wikidata.org/entity/Q26208587 Obrighoven-Lackhausen http://www.wikidata.org/entity/Q253019 Point(6.648055555 51.672777777) +https://nwbib.de/spatial#Q19968056 http://www.wikidata.org/entity/Q19968056 Hofolpe http://www.wikidata.org/entity/Q253019 Point(8.066666666 51.066666666) +https://nwbib.de/spatial#Q1610635 http://www.wikidata.org/entity/Q1610635 Norf http://www.wikidata.org/entity/Q2983893 Point(6.72243 51.1588) +https://nwbib.de/spatial#Q1571550 http://www.wikidata.org/entity/Q1571550 Pingsdorf http://www.wikidata.org/entity/Q2983893 Point(6.88944 50.8156) +https://nwbib.de/spatial#Q153260 http://www.wikidata.org/entity/Q153260 Bad Godesberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q2740635 Point(7.15 50.683333333) +https://nwbib.de/spatial#Q1541878 http://www.wikidata.org/entity/Q1541878 Grafwegen http://www.wikidata.org/entity/Q253019 Point(5.9575 51.749444444) +https://nwbib.de/spatial#Q1304137 http://www.wikidata.org/entity/Q1304137 Eilshausen http://www.wikidata.org/entity/Q253019 Point(8.635 52.168055555) +https://nwbib.de/spatial#Q254774 http://www.wikidata.org/entity/Q254774 Alfter http://www.wikidata.org/entity/Q262166 Point(7.009166666 50.735555555) +https://nwbib.de/spatial#Q1761517 http://www.wikidata.org/entity/Q1761517 Oidtweiler http://www.wikidata.org/entity/Q253019 Point(6.183333333 50.9) +https://nwbib.de/spatial#Q1652212 http://www.wikidata.org/entity/Q1652212 Hülhoven http://www.wikidata.org/entity/Q253019 Point(6.146388888 51.046388888) +https://nwbib.de/spatial#Q15282657 http://www.wikidata.org/entity/Q15282657 Vorst (Viersen) http://www.wikidata.org/entity/Q253019 Point(6.359056 51.2992) +https://nwbib.de/spatial#Q1283656 http://www.wikidata.org/entity/Q1283656 Ederen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.25 50.95) +https://nwbib.de/spatial#Q2147624 http://www.wikidata.org/entity/Q2147624 Rheindahlen http://www.wikidata.org/entity/Q2983893 Point(6.36167 51.1503) +https://nwbib.de/spatial#Q15080279 http://www.wikidata.org/entity/Q15080279 Silschede http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.330518055 51.35028) +https://nwbib.de/spatial#Q2309080 http://www.wikidata.org/entity/Q2309080 Spenrath http://www.wikidata.org/entity/Q253019 Point(6.453 51.063) +https://nwbib.de/spatial#Q225621 http://www.wikidata.org/entity/Q225621 Rietberg http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.433333333 51.8) +https://nwbib.de/spatial#Q12464 http://www.wikidata.org/entity/Q12464 Meckenheim http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.016666666 50.633333333) +https://nwbib.de/spatial#Q1019959 http://www.wikidata.org/entity/Q1019959 Börnig http://www.wikidata.org/entity/Q253019 Point(7.263846 51.551375) +https://nwbib.de/spatial#Q1242115 http://www.wikidata.org/entity/Q1242115 Donsbrüggen http://www.wikidata.org/entity/Q253019 Point(6.095555555 51.801388888) +https://nwbib.de/spatial#Q1622822 http://www.wikidata.org/entity/Q1622822 Hoengen http://www.wikidata.org/entity/Q253019 Point(6.209444444 50.865833333) +https://nwbib.de/spatial#Q1868132 http://www.wikidata.org/entity/Q1868132 Lohausen http://www.wikidata.org/entity/Q1852178 Point(6.73667 51.2808) +https://nwbib.de/spatial#Q394833 http://www.wikidata.org/entity/Q394833 Agnesviertel http://www.wikidata.org/entity/Q2983893 Point(6.95715 50.954) +https://nwbib.de/spatial#Q243337 http://www.wikidata.org/entity/Q243337 Issum http://www.wikidata.org/entity/Q262166 Point(6.423611111 51.538888888) +https://nwbib.de/spatial#Q1258922 http://www.wikidata.org/entity/Q1258922 Driesch http://www.wikidata.org/entity/Q253019 Point(6.5918 51.2069) +https://nwbib.de/spatial#Q2563404 http://www.wikidata.org/entity/Q2563404 Werste http://www.wikidata.org/entity/Q253019 Point(8.77953 52.223) +https://nwbib.de/spatial#Q1250649 http://www.wikidata.org/entity/Q1250649 Kirchderne http://www.wikidata.org/entity/Q253019 Point(7.50778 51.5553) +https://nwbib.de/spatial#Q866662 http://www.wikidata.org/entity/Q866662 Bissen http://www.wikidata.org/entity/Q253019 Point(6.26833 51.1361) +https://nwbib.de/spatial#Q48223 http://www.wikidata.org/entity/Q48223 Diestelbruch http://www.wikidata.org/entity/Q253019 Point(8.949444444 51.931388888) +https://nwbib.de/spatial#Q1601677 http://www.wikidata.org/entity/Q1601677 Helberhausen http://www.wikidata.org/entity/Q253019 Point(8.137336111 51.000502777) +https://nwbib.de/spatial#Q2356192 http://www.wikidata.org/entity/Q2356192 Striefen http://www.wikidata.org/entity/Q253019 Point(7.34056 50.7592) +https://nwbib.de/spatial#Q112078933 http://www.wikidata.org/entity/Q112078933 Lohauserholz http://www.wikidata.org/entity/Q253019 Point(7.798611111 51.652777777) +https://nwbib.de/spatial#Q23785305 http://www.wikidata.org/entity/Q23785305 Horsthausen http://www.wikidata.org/entity/Q253019 Point(7.23074 51.55432) +https://nwbib.de/spatial#Q1368620 http://www.wikidata.org/entity/Q1368620 Byfang http://www.wikidata.org/entity/Q253019 Point(7.098056 51.405556) +https://nwbib.de/spatial#Q1405696 http://www.wikidata.org/entity/Q1405696 Heeren-Werve http://www.wikidata.org/entity/Q253019 Point(7.71833 51.5806) +https://nwbib.de/spatial#Q2350688 http://www.wikidata.org/entity/Q2350688 Stockhausen http://www.wikidata.org/entity/Q253019 Point(8.59028 52.3219) +https://nwbib.de/spatial#Q20820284 http://www.wikidata.org/entity/Q20820284 Aldenrade http://www.wikidata.org/entity/Q253019 Point(6.74369717 51.52636719) +https://nwbib.de/spatial#Q151725 http://www.wikidata.org/entity/Q151725 Kirchhoven http://www.wikidata.org/entity/Q253019 Point(6.07333 51.0739) +https://nwbib.de/spatial#Q10921 http://www.wikidata.org/entity/Q10921 Olsberg http://www.wikidata.org/entity/Q12350930, http://www.wikidata.org/entity/Q42744322 Point(8.483333333 51.35) +https://nwbib.de/spatial#Q2567764 http://www.wikidata.org/entity/Q2567764 Widdig http://www.wikidata.org/entity/Q253019 Point(7.02306 50.7975) +https://nwbib.de/spatial#Q1334027 http://www.wikidata.org/entity/Q1334027 Elte (Rheine) http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(7.52222 52.2431) +https://nwbib.de/spatial#Q1674171 http://www.wikidata.org/entity/Q1674171 Sabbenhausen http://www.wikidata.org/entity/Q19730508, http://www.wikidata.org/entity/Q253019 Point(9.28583 51.9128) +https://nwbib.de/spatial#Q1450941 http://www.wikidata.org/entity/Q1450941 Langenei http://www.wikidata.org/entity/Q253019 Point(8.11833 51.1133) +https://nwbib.de/spatial#Q999517 http://www.wikidata.org/entity/Q999517 Odenspiel http://www.wikidata.org/entity/Q253019 Point(7.71639 50.9289) +https://nwbib.de/spatial#Q7021 http://www.wikidata.org/entity/Q7021 Bünde http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(8.6 52.2) +https://nwbib.de/spatial#Q437149 http://www.wikidata.org/entity/Q437149 Altenhagen http://www.wikidata.org/entity/Q253019 Point(7.46585 51.3725) +https://nwbib.de/spatial#Q245495 http://www.wikidata.org/entity/Q245495 Leichlingen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.016666666 51.116666666) +https://nwbib.de/spatial#Q1536609 http://www.wikidata.org/entity/Q1536609 Visbeck http://www.wikidata.org/entity/Q253019 Point(8.13173 51.3327) +https://nwbib.de/spatial#Q814683 http://www.wikidata.org/entity/Q814683 Beifang http://www.wikidata.org/entity/Q253019 Point(7.46501 51.6903) +https://nwbib.de/spatial#Q1924305 http://www.wikidata.org/entity/Q1924305 Messinghausen http://www.wikidata.org/entity/Q253019 Point(8.67194 51.3933) +https://nwbib.de/spatial#Q2104601 http://www.wikidata.org/entity/Q2104601 Porselen http://www.wikidata.org/entity/Q253019 Point(6.172222222 51.038333333) +https://nwbib.de/spatial#Q16042 http://www.wikidata.org/entity/Q16042 Korschenbroich http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.516666666 51.183333333) +https://nwbib.de/spatial#Q891205 http://www.wikidata.org/entity/Q891205 Bokel http://www.wikidata.org/entity/Q253019 Point(8.38333 51.8) +https://nwbib.de/spatial#Q56042007 http://www.wikidata.org/entity/Q56042007 Westsauerland http://www.wikidata.org/entity/Q82794 +https://nwbib.de/spatial#Q863291 http://www.wikidata.org/entity/Q863291 Bilme http://www.wikidata.org/entity/Q253019 Point(8.0134 51.5153) +https://nwbib.de/spatial#Q5573 http://www.wikidata.org/entity/Q5573 Meinerzhagen http://www.wikidata.org/entity/Q42744322 Point(7.640277777 51.106111111) +https://nwbib.de/spatial#Q19275644 http://www.wikidata.org/entity/Q19275644 Bornefeld http://www.wikidata.org/entity/Q253019 Point(7.26980556 51.15436111) +https://nwbib.de/spatial#Q1020097 http://www.wikidata.org/entity/Q1020097 Bösensell http://www.wikidata.org/entity/Q253019 Point(7.47944 51.9156) +https://nwbib.de/spatial#Q55721822 http://www.wikidata.org/entity/Q55721822 Herrschaft Anholt http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q1765128 http://www.wikidata.org/entity/Q1765128 Hahlen http://www.wikidata.org/entity/Q253019 Point(8.84472 52.3056) +https://nwbib.de/spatial#Q200256 http://www.wikidata.org/entity/Q200256 Legden http://www.wikidata.org/entity/Q262166 Point(7.099722222 52.033055555) +https://nwbib.de/spatial#Q2511719 http://www.wikidata.org/entity/Q2511719 Veen http://www.wikidata.org/entity/Q253019 Point(6.4565 51.6134) +https://nwbib.de/spatial#Q486577 http://www.wikidata.org/entity/Q486577 Lennep http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q2740635 Point(7.257091666 51.192591666) +https://nwbib.de/spatial#Q1457929 http://www.wikidata.org/entity/Q1457929 Friedrich-Wilhelms-Hütte http://www.wikidata.org/entity/Q253019 Point(7.15081 50.8007) +https://nwbib.de/spatial#Q2284594 http://www.wikidata.org/entity/Q2284594 Sievernich http://www.wikidata.org/entity/Q253019 Point(6.664444444 50.727222222) +https://nwbib.de/spatial#Q1334196 http://www.wikidata.org/entity/Q1334196 Elverdissen http://www.wikidata.org/entity/Q253019 Point(8.655555555 52.081944444) +https://nwbib.de/spatial#Q1132 http://www.wikidata.org/entity/Q1132 Ahlen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813 Point(7.891111111 51.763333333) +https://nwbib.de/spatial#Q1958682 http://www.wikidata.org/entity/Q1958682 Mülhausen http://www.wikidata.org/entity/Q253019 Point(6.36528 51.3414) +https://nwbib.de/spatial#Q1624160 http://www.wikidata.org/entity/Q1624160 Hoholz http://www.wikidata.org/entity/Q253019 Point(7.20197 50.7416) +https://nwbib.de/spatial#Q1017277 http://www.wikidata.org/entity/Q1017277 Busch http://www.wikidata.org/entity/Q253019 Point(6.29167 51.1525) +https://nwbib.de/spatial#Q592477 http://www.wikidata.org/entity/Q592477 Müggenhausen http://www.wikidata.org/entity/Q253019 Point(6.876388888 50.713611111) +https://nwbib.de/spatial#Q2729570 http://www.wikidata.org/entity/Q2729570 Hüthum http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.20277778 51.85055556) +https://nwbib.de/spatial#Q1644208 http://www.wikidata.org/entity/Q1644208 Hönnetal http://www.wikidata.org/entity/Q253019 Point(7.84861 51.3872) +https://nwbib.de/spatial#Q1494780 http://www.wikidata.org/entity/Q1494780 Gartrop-Bühl http://www.wikidata.org/entity/Q253019 Point(6.80569 51.6591) +https://nwbib.de/spatial#Q1169310 http://www.wikidata.org/entity/Q1169310 Vennebeck http://www.wikidata.org/entity/Q253019 Point(8.87 52.2156) +https://nwbib.de/spatial#Q1494684 http://www.wikidata.org/entity/Q1494684 Gartenstadt (Krefeld) http://www.wikidata.org/entity/Q253019 Point(6.62 51.367) +https://nwbib.de/spatial#Q1683573 http://www.wikidata.org/entity/Q1683573 Raderbroich http://www.wikidata.org/entity/Q253019 Point(6.52734 51.2069) +https://nwbib.de/spatial#Q878236 http://www.wikidata.org/entity/Q878236 Kirchheim http://www.wikidata.org/entity/Q253019 Point(6.83639 50.6061) +https://nwbib.de/spatial#N48 http://www.wikidata.org/entity/Q708742 Niederrheinisch-Westfälischer Reichskreis http://www.wikidata.org/entity/Q460338 +https://nwbib.de/spatial#Q1230192 http://www.wikidata.org/entity/Q1230192 Müddersheim http://www.wikidata.org/entity/Q253019 Point(6.663611111 50.7525) +https://nwbib.de/spatial#Q881250 http://www.wikidata.org/entity/Q881250 Stiepel http://www.wikidata.org/entity/Q253019 Point(7.245277777 51.418333333) +https://nwbib.de/spatial#Q1336361 http://www.wikidata.org/entity/Q1336361 Mülheim http://www.wikidata.org/entity/Q253019 Point(6.68417 50.4489) +https://nwbib.de/spatial#Q602330 http://www.wikidata.org/entity/Q602330 Padberg http://www.wikidata.org/entity/Q253019 Point(8.76502 51.4055) +https://nwbib.de/spatial#Q2554376 http://www.wikidata.org/entity/Q2554376 Wehdem http://www.wikidata.org/entity/Q253019 Point(8.465 52.4381) +https://nwbib.de/spatial#Q205050 http://www.wikidata.org/entity/Q205050 Geilenkirchen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.119444444 50.965277777) +https://nwbib.de/spatial#Q1220700 http://www.wikidata.org/entity/Q1220700 Dielingen http://www.wikidata.org/entity/Q253019 Point(8.34583 52.4425) +https://nwbib.de/spatial#Q1432757 http://www.wikidata.org/entity/Q1432757 Paderborner Hochfläche http://www.wikidata.org/entity/Q1970725 Point(8.833333333 51.716666666) +https://nwbib.de/spatial#Q2564788 http://www.wikidata.org/entity/Q2564788 Westerholt http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(7.09167 51.6006) +https://nwbib.de/spatial#Q446864 http://www.wikidata.org/entity/Q446864 Köln-Chorweiler (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(6.89564 51.0438) +https://nwbib.de/spatial#Q1385691 http://www.wikidata.org/entity/Q1385691 Glehn http://www.wikidata.org/entity/Q253019 Point(6.57575 51.1691) +https://nwbib.de/spatial#Q5953 http://www.wikidata.org/entity/Q5953 Kreis Olpe http://www.wikidata.org/entity/Q20738811 Point(8.0 51.08) +https://nwbib.de/spatial#Q1568819 http://www.wikidata.org/entity/Q1568819 Hahn (Aachen) http://www.wikidata.org/entity/Q253019 Point(6.19806 50.7114) +https://nwbib.de/spatial#Q2692901 http://www.wikidata.org/entity/Q2692901 Unterfeldhaus http://www.wikidata.org/entity/Q253019 Point(6.92259 51.2004) +https://nwbib.de/spatial#Q45743228 http://www.wikidata.org/entity/Q45743228 Kleinkönigsdorf http://www.wikidata.org/entity/Q253019 Point(6.781777777 50.939111111) +https://nwbib.de/spatial#Q16292802 http://www.wikidata.org/entity/Q16292802 Repelen http://www.wikidata.org/entity/Q253019 Point(6.615895 51.483949) +https://nwbib.de/spatial#Q1250618 http://www.wikidata.org/entity/Q1250618 Grevel http://www.wikidata.org/entity/Q253019 Point(7.55 51.565) +https://nwbib.de/spatial#Q15059789 http://www.wikidata.org/entity/Q15059789 Schierwaldenrath http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.01472222 51.02027778) +https://nwbib.de/spatial#Q1787361 http://www.wikidata.org/entity/Q1787361 Kreis Kempen-Krefeld http://www.wikidata.org/entity/Q106658 Point(6.41944 51.3658) +https://nwbib.de/spatial#Q2249242 http://www.wikidata.org/entity/Q2249242 Schottheide http://www.wikidata.org/entity/Q253019 Point(6.040080555 51.769938888) +https://nwbib.de/spatial#Q1455080 http://www.wikidata.org/entity/Q1455080 Hebborn http://www.wikidata.org/entity/Q253019 Point(7.13047 51.0142) +https://nwbib.de/spatial#Q2352469 http://www.wikidata.org/entity/Q2352469 Stoßdorf http://www.wikidata.org/entity/Q253019 Point(7.25222 50.7831) +https://nwbib.de/spatial#Q27869680 http://www.wikidata.org/entity/Q27869680 Sinsen-Lenkerbeck http://www.wikidata.org/entity/Q253019 Point(7.151673 51.670682) +https://nwbib.de/spatial#Q161575 http://www.wikidata.org/entity/Q161575 Waltrop http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(7.397222222 51.623611111) +https://nwbib.de/spatial#Q2553834 http://www.wikidata.org/entity/Q2553834 Weckhoven http://www.wikidata.org/entity/Q253019 Point(6.69256 51.1581) +https://nwbib.de/spatial#Q1795777 http://www.wikidata.org/entity/Q1795777 Westhoven http://www.wikidata.org/entity/Q15632166 Point(7.01056 50.9044) +https://nwbib.de/spatial#Q165763 http://www.wikidata.org/entity/Q165763 Waldeck http://www.wikidata.org/entity/Q26879769, http://www.wikidata.org/entity/Q208500 Point(11.782778 50.9125) +https://nwbib.de/spatial#Q255235 http://www.wikidata.org/entity/Q255235 Rommerskirchen http://www.wikidata.org/entity/Q262166 Point(6.691388888 51.034722222) +https://nwbib.de/spatial#Q11331 http://www.wikidata.org/entity/Q11331 Gevelsberg http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.3559 51.32645) +https://nwbib.de/spatial#Q2203983 http://www.wikidata.org/entity/Q2203983 Rüngsdorf http://www.wikidata.org/entity/Q253019 Point(7.17093 50.6839) +https://nwbib.de/spatial#Q63191391 http://www.wikidata.org/entity/Q63191391 Monschauer Land http://www.wikidata.org/entity/Q1970725 +https://nwbib.de/spatial#Q1469183 http://www.wikidata.org/entity/Q1469183 Fritzdorf http://www.wikidata.org/entity/Q253019 Point(7.090172222 50.595997222) +https://nwbib.de/spatial#Q24816568 http://www.wikidata.org/entity/Q24816568 Bettenkamp http://www.wikidata.org/entity/Q253019 Point(6.6098 51.4321) +https://nwbib.de/spatial#N01 http://www.wikidata.org/entity/Q1198 Nordrhein-Westfalen http://www.wikidata.org/entity/Q1221156 Point(7.55 51.466666666) +https://nwbib.de/spatial#Q836178 http://www.wikidata.org/entity/Q836178 Schönau http://www.wikidata.org/entity/Q253019 Point(6.77653 50.5107) +https://nwbib.de/spatial#Q2147850 http://www.wikidata.org/entity/Q2147850 Rheinkamp http://www.wikidata.org/entity/Q253019 Point(6.61139 51.5069) +https://nwbib.de/spatial#Q19588522 http://www.wikidata.org/entity/Q19588522 Wambeln http://www.wikidata.org/entity/Q253019 Point(7.90138889 51.60444444) +https://nwbib.de/spatial#Q14895 http://www.wikidata.org/entity/Q14895 Kamp-Lintfort http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.533333333 51.5) +https://nwbib.de/spatial#Q1021783 http://www.wikidata.org/entity/Q1021783 Büsdorf http://www.wikidata.org/entity/Q253019 Point(6.708 50.990527777) +https://nwbib.de/spatial#Q905591 http://www.wikidata.org/entity/Q905591 Breidt http://www.wikidata.org/entity/Q253019 Point(7.27492 50.8538) +https://nwbib.de/spatial#Q56008582 http://www.wikidata.org/entity/Q56008582 Emmelkamp http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1272287 http://www.wikidata.org/entity/Q1272287 Düssel http://www.wikidata.org/entity/Q253019 Point(7.05614 51.2622) +https://nwbib.de/spatial#Q857453 http://www.wikidata.org/entity/Q857453 Biemsen-Ahmsen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.699 52.082) +https://nwbib.de/spatial#Q2024532 http://www.wikidata.org/entity/Q2024532 Stadtbezirk Hörde http://www.wikidata.org/entity/Q2740635 Point(7.5 51.483333333) +https://nwbib.de/spatial#Q832411 http://www.wikidata.org/entity/Q832411 Bettenhoven http://www.wikidata.org/entity/Q253019 Point(6.47306 50.9575) +https://nwbib.de/spatial#Q2534024 http://www.wikidata.org/entity/Q2534024 Vorhalle http://www.wikidata.org/entity/Q253019 Point(7.435 51.389569444) +https://nwbib.de/spatial#Q314425 http://www.wikidata.org/entity/Q314425 Süchteln http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q2983893 Point(6.383333333 51.283333333) +https://nwbib.de/spatial#Q2168602 http://www.wikidata.org/entity/Q2168602 Rothe (Beverungen) http://www.wikidata.org/entity/Q253019 Point(9.27055556 51.65027778) +https://nwbib.de/spatial#Q1719793 http://www.wikidata.org/entity/Q1719793 Uellendahl-Katernberg http://www.wikidata.org/entity/Q13415859 Point(7.12361 51.2806) +https://nwbib.de/spatial#Q1747717 http://www.wikidata.org/entity/Q1747717 Kreis Meschede http://www.wikidata.org/entity/Q106658 Point(8.28 51.35) +https://nwbib.de/spatial#Q3905 http://www.wikidata.org/entity/Q3905 Gladbeck http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(6.98267 51.57134) +https://nwbib.de/spatial#Q1848844 http://www.wikidata.org/entity/Q1848844 Oberaußem http://www.wikidata.org/entity/Q253019 Point(6.677777777 50.973888888) +https://nwbib.de/spatial#Q461819 http://www.wikidata.org/entity/Q461819 Ameln http://www.wikidata.org/entity/Q253019 Point(6.433333333 50.983333333) +https://nwbib.de/spatial#Q909620 http://www.wikidata.org/entity/Q909620 Brenschede http://www.wikidata.org/entity/Q253019 Point(8.0611 51.2707) +https://nwbib.de/spatial#Q7062 http://www.wikidata.org/entity/Q7062 Monheim am Rhein http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(6.9 51.1) +https://nwbib.de/spatial#Q884948 http://www.wikidata.org/entity/Q884948 Pesch http://www.wikidata.org/entity/Q253019 Point(6.5375 51.179166666) +https://nwbib.de/spatial#Q1805008 http://www.wikidata.org/entity/Q1805008 Langenbroich http://www.wikidata.org/entity/Q253019 Point(6.456388888 50.741388888) +https://nwbib.de/spatial#Q1427151 http://www.wikidata.org/entity/Q1427151 Flape http://www.wikidata.org/entity/Q253019 Point(8.09254 51.0749) +https://nwbib.de/spatial#Q1546849 http://www.wikidata.org/entity/Q1546849 Grimlinghausen http://www.wikidata.org/entity/Q253019 Point(6.74083 51.1775) +https://nwbib.de/spatial#Q55985393 http://www.wikidata.org/entity/Q55985393 Rahm http://www.wikidata.org/entity/Q253019 Point(6.439416666 51.431416666) +https://nwbib.de/spatial#Q1823348 http://www.wikidata.org/entity/Q1823348 Lichtenberg http://www.wikidata.org/entity/Q253019 Point(7.3375 50.7411) +https://nwbib.de/spatial#Q56008369 http://www.wikidata.org/entity/Q56008369 Ruhrfeld http://www.wikidata.org/entity/Q253019 Point(6.447166666 51.136527777) +https://nwbib.de/spatial#Q1667307 http://www.wikidata.org/entity/Q1667307 Sinsteden http://www.wikidata.org/entity/Q253019 Point(6.66111 51.0472) +https://nwbib.de/spatial#Q1545933 http://www.wikidata.org/entity/Q1545933 Greste http://www.wikidata.org/entity/Q253019 Point(8.70376 51.9902) +https://nwbib.de/spatial#Q2512628 http://www.wikidata.org/entity/Q2512628 Hambüren http://www.wikidata.org/entity/Q253019 Point(7.85833 52.2689) +https://nwbib.de/spatial#Q1500671 http://www.wikidata.org/entity/Q1500671 Kreis Blankenheim http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q2406610 http://www.wikidata.org/entity/Q2406610 Tetelrath http://www.wikidata.org/entity/Q253019 Point(6.24389 51.1828) +https://nwbib.de/spatial#Q865698 http://www.wikidata.org/entity/Q865698 Birlenbach http://www.wikidata.org/entity/Q253019 Point(7.99092 50.9035) +https://nwbib.de/spatial#Q2456479 http://www.wikidata.org/entity/Q2456479 Trupbach http://www.wikidata.org/entity/Q253019 Point(7.98222 50.8911) +https://nwbib.de/spatial#Q400407 http://www.wikidata.org/entity/Q400407 Ahle http://www.wikidata.org/entity/Q253019 Point(8.51611 52.1944) +https://nwbib.de/spatial#Q1616623 http://www.wikidata.org/entity/Q1616623 Hewingsen http://www.wikidata.org/entity/Q253019 Point(8.04472 51.5197) +https://nwbib.de/spatial#Q871980 http://www.wikidata.org/entity/Q871980 Wyler http://www.wikidata.org/entity/Q253019 Point(5.966388888 51.805555555) +https://nwbib.de/spatial#Q896382 http://www.wikidata.org/entity/Q896382 Orsoy http://www.wikidata.org/entity/Q2983893 Point(6.686666666 51.524444444) +https://nwbib.de/spatial#Q32945246 http://www.wikidata.org/entity/Q32945246 Wamge http://www.wikidata.org/entity/Q253019 Point(7.848294 51.104263) +https://nwbib.de/spatial#Q1758699 http://www.wikidata.org/entity/Q1758699 Buchheim http://www.wikidata.org/entity/Q15632166 Point(7.01306 50.9561) +https://nwbib.de/spatial#Q2268305 http://www.wikidata.org/entity/Q2268305 Selikum http://www.wikidata.org/entity/Q253019 Point(6.70381 51.1731) +https://nwbib.de/spatial#Q1548565 http://www.wikidata.org/entity/Q1548565 Großenheerse http://www.wikidata.org/entity/Q253019 Point(8.98944 52.4472) +https://nwbib.de/spatial#Q1413468 http://www.wikidata.org/entity/Q1413468 Schwefe http://www.wikidata.org/entity/Q253019 Point(8.03469 51.5807) +https://nwbib.de/spatial#Q437637 http://www.wikidata.org/entity/Q437637 Altensturmberg http://www.wikidata.org/entity/Q253019 Point(7.44806 51.1106) +https://nwbib.de/spatial#Q25391997 http://www.wikidata.org/entity/Q25391997 Holsterhausen http://www.wikidata.org/entity/Q253019 Point(7.19621 51.53299) +https://nwbib.de/spatial#Q27994630 http://www.wikidata.org/entity/Q27994630 Stadtbezirk Haspe http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q595227 http://www.wikidata.org/entity/Q595227 Lindweiler http://www.wikidata.org/entity/Q2983893, http://www.wikidata.org/entity/Q15632166 Point(6.88889 51.0033) +https://nwbib.de/spatial#Q1281908 http://www.wikidata.org/entity/Q1281908 Eckum http://www.wikidata.org/entity/Q253019 Point(6.6996 51.0378) +https://nwbib.de/spatial#Q2380038 http://www.wikidata.org/entity/Q2380038 Sötenich http://www.wikidata.org/entity/Q253019 Point(6.55694 50.5244) +https://nwbib.de/spatial#Q1360719 http://www.wikidata.org/entity/Q1360719 Refrath http://www.wikidata.org/entity/Q253019 Point(7.11528 50.9611) +https://nwbib.de/spatial#Q19687913 http://www.wikidata.org/entity/Q19687913 Heil http://www.wikidata.org/entity/Q253019 Point(7.58666667 51.63138889) +https://nwbib.de/spatial#Q1748353 http://www.wikidata.org/entity/Q1748353 Nordrheda-Ems http://www.wikidata.org/entity/Q253019 Point(8.29703 51.8813) +https://nwbib.de/spatial#Q878973 http://www.wikidata.org/entity/Q878973 Henglarn http://www.wikidata.org/entity/Q253019 Point(8.774722222 51.599444444) +https://nwbib.de/spatial#Q1358628 http://www.wikidata.org/entity/Q1358628 Reetz http://www.wikidata.org/entity/Q253019 Point(6.69639 50.4256) +https://nwbib.de/spatial#Q989822 http://www.wikidata.org/entity/Q989822 Stadtbezirk Eving http://www.wikidata.org/entity/Q2740635 Point(7.466666666 51.55) +https://nwbib.de/spatial#Q1795762 http://www.wikidata.org/entity/Q1795762 Mauenheim http://www.wikidata.org/entity/Q15632166 Point(6.94611 50.9733) +https://nwbib.de/spatial#Q2123006 http://www.wikidata.org/entity/Q2123006 Quettingen http://www.wikidata.org/entity/Q253019 Point(7.0182 51.0723) +https://nwbib.de/spatial#Q1438577 http://www.wikidata.org/entity/Q1438577 Strempt http://www.wikidata.org/entity/Q253019 Point(6.617222222 50.581388888) +https://nwbib.de/spatial#Q50607911 http://www.wikidata.org/entity/Q50607911 Klieve http://www.wikidata.org/entity/Q253019 Point(8.2875 51.571666666) +https://nwbib.de/spatial#Q1595187 http://www.wikidata.org/entity/Q1595187 Heiligenhaus http://www.wikidata.org/entity/Q253019 Point(7.25639 50.9382) +https://nwbib.de/spatial#Q1493739 http://www.wikidata.org/entity/Q1493739 Gerkerath http://www.wikidata.org/entity/Q253019 Point(6.35827 51.1649) +https://nwbib.de/spatial#Q2428477 http://www.wikidata.org/entity/Q2428477 Thomasberg (Königswinter) http://www.wikidata.org/entity/Q253019 Point(7.24389 50.6969) +https://nwbib.de/spatial#Q1250595 http://www.wikidata.org/entity/Q1250595 Bövinghausen http://www.wikidata.org/entity/Q253019 Point(7.32528 51.5189) +https://nwbib.de/spatial#Q1988748 http://www.wikidata.org/entity/Q1988748 Niederwennerscheid http://www.wikidata.org/entity/Q253019 Point(7.33861 50.8561) +https://nwbib.de/spatial#Q16006 http://www.wikidata.org/entity/Q16006 Goch http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.161944444 51.683888888) +https://nwbib.de/spatial#Q14917523 http://www.wikidata.org/entity/Q14917523 Biesfeld http://www.wikidata.org/entity/Q253019 Point(7.24426 51.0195) +https://nwbib.de/spatial#Q1593759 http://www.wikidata.org/entity/Q1593759 Heggen http://www.wikidata.org/entity/Q253019 Point(7.95194 51.1556) +https://nwbib.de/spatial#Q56008058 http://www.wikidata.org/entity/Q56008058 Grafschaft Grönebach http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q2130361 http://www.wikidata.org/entity/Q2130361 Ramsbeck http://www.wikidata.org/entity/Q253019 Point(8.40056 51.3092) +https://nwbib.de/spatial#Q850112 http://www.wikidata.org/entity/Q850112 Bettinghausen http://www.wikidata.org/entity/Q253019 Point(8.19735 51.6233) +https://nwbib.de/spatial#Q1479624 http://www.wikidata.org/entity/Q1479624 Föckinghausen http://www.wikidata.org/entity/Q253019 Point(8.39389 51.3744) +https://nwbib.de/spatial#Q1534965 http://www.wikidata.org/entity/Q1534965 Sürth http://www.wikidata.org/entity/Q15632166 Point(7.006111111 50.861111111) +https://nwbib.de/spatial#Q1376993 http://www.wikidata.org/entity/Q1376993 Röthgen http://www.wikidata.org/entity/Q253019 Point(6.26056 50.815) +https://nwbib.de/spatial#Q15115491 http://www.wikidata.org/entity/Q15115491 Imbach http://www.wikidata.org/entity/Q253019 Point(7.06163 51.09425) +https://nwbib.de/spatial#Q380934 http://www.wikidata.org/entity/Q380934 Aengenesch http://www.wikidata.org/entity/Q253019 Point(6.380555555 51.5325) +https://nwbib.de/spatial#Q1906190 http://www.wikidata.org/entity/Q1906190 Marxloh http://www.wikidata.org/entity/Q2983893 Point(6.75694 51.5019) +https://nwbib.de/spatial#Q4060 http://www.wikidata.org/entity/Q4060 Hürth http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.876111111 50.8775) +https://nwbib.de/spatial#Q1625538 http://www.wikidata.org/entity/Q1625538 Holzhausen http://www.wikidata.org/entity/Q253019 Point(9.13702 51.7878) +https://nwbib.de/spatial#Q59261667 http://www.wikidata.org/entity/Q59261667 Stadtbezirk Siegen-Süd http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59261814 http://www.wikidata.org/entity/Q59261814 Stadtbezirk Siegen-West http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q877774 http://www.wikidata.org/entity/Q877774 Rothe Erde http://www.wikidata.org/entity/Q253019 Point(6.122222222 50.776388888) +https://nwbib.de/spatial#Q175458 http://www.wikidata.org/entity/Q175458 Leversbach http://www.wikidata.org/entity/Q253019 Point(6.466111111 50.716388888) +https://nwbib.de/spatial#Q973810 http://www.wikidata.org/entity/Q973810 Hücker-Aschen http://www.wikidata.org/entity/Q253019 Point(8.51472 52.1714) +https://nwbib.de/spatial#Q437203 http://www.wikidata.org/entity/Q437203 Altenheerse http://www.wikidata.org/entity/Q253019 Point(9.04733 51.6498) +https://nwbib.de/spatial#Q59263010 http://www.wikidata.org/entity/Q59263010 Stadtbezirk Weidenau http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1959107 http://www.wikidata.org/entity/Q1959107 Mecklenbeck http://www.wikidata.org/entity/Q253019 Point(7.58333 51.9306) +https://nwbib.de/spatial#Q2202653 http://www.wikidata.org/entity/Q2202653 Römlinghoven http://www.wikidata.org/entity/Q253019 Point(7.18101 50.7074) +https://nwbib.de/spatial#Q1301824 http://www.wikidata.org/entity/Q1301824 Eicherscheid http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.76922 50.5332) +https://nwbib.de/spatial#Q29878899 http://www.wikidata.org/entity/Q29878899 Durhaus http://www.wikidata.org/entity/Q4632675 Point(7.231926 51.029311) +https://nwbib.de/spatial#Q798142 http://www.wikidata.org/entity/Q798142 Bachem http://www.wikidata.org/entity/Q253019 Point(6.81983 50.8982) +https://nwbib.de/spatial#Q16830973 http://www.wikidata.org/entity/Q16830973 Dackmar http://www.wikidata.org/entity/Q253019 Point(8.069215 51.975645) +https://nwbib.de/spatial#Q163125 http://www.wikidata.org/entity/Q163125 Randerath http://www.wikidata.org/entity/Q253019 Point(6.17475 51.018019444) +https://nwbib.de/spatial#Q1708785 http://www.wikidata.org/entity/Q1708785 Schreckenberg http://www.wikidata.org/entity/Q253019 Point(7.35722 50.8105) +https://nwbib.de/spatial#Q1778631 http://www.wikidata.org/entity/Q1778631 Kohlfurth http://www.wikidata.org/entity/Q253019 Point(7.11 51.1933) +https://nwbib.de/spatial#Q1603875 http://www.wikidata.org/entity/Q1603875 Niedermerz http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.266388888 50.883888888) +https://nwbib.de/spatial#Q1281286 http://www.wikidata.org/entity/Q1281286 Eckardtsheim http://www.wikidata.org/entity/Q253019 Point(8.5575 51.9325) +https://nwbib.de/spatial#Q253940 http://www.wikidata.org/entity/Q253940 Ruppichteroth http://www.wikidata.org/entity/Q262166 Point(7.488055555 50.845555555) +https://nwbib.de/spatial#Q7507 http://www.wikidata.org/entity/Q7507 Wermelskirchen http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.205119444 51.139180555) +https://nwbib.de/spatial#Q2549079 http://www.wikidata.org/entity/Q2549079 Warden http://www.wikidata.org/entity/Q253019 Point(6.21889 50.86) +https://nwbib.de/spatial#Q2536402 http://www.wikidata.org/entity/Q2536402 Völlinghausen http://www.wikidata.org/entity/Q253019 Point(8.20021 51.4799) +https://nwbib.de/spatial#Q372678 http://www.wikidata.org/entity/Q372678 Schaufenberg http://www.wikidata.org/entity/Q253019 Point(6.17306 50.88) +https://nwbib.de/spatial#Q109773 http://www.wikidata.org/entity/Q109773 Teutoburger Wald http://www.wikidata.org/entity/Q4421, http://www.wikidata.org/entity/Q674541 Point(8.813611111 51.895555555) +https://nwbib.de/spatial#Q1289090 http://www.wikidata.org/entity/Q1289090 Scheid http://www.wikidata.org/entity/Q253019 Point(7.23714 50.8947) +https://nwbib.de/spatial#Q820982 http://www.wikidata.org/entity/Q820982 Berlar http://www.wikidata.org/entity/Q253019 Point(8.38194 51.3161) +https://nwbib.de/spatial#Q1533286 http://www.wikidata.org/entity/Q1533286 Hardt http://www.wikidata.org/entity/Q253019 Point(6.97043 51.1132) +https://nwbib.de/spatial#Q2570408 http://www.wikidata.org/entity/Q2570408 Wildbergerhütte http://www.wikidata.org/entity/Q253019 Point(7.75167 50.9356) +https://nwbib.de/spatial#Q1313406 http://www.wikidata.org/entity/Q1313406 Eiserfey http://www.wikidata.org/entity/Q253019 Point(6.66 50.551111111) +https://nwbib.de/spatial#Q1511042 http://www.wikidata.org/entity/Q1511042 Gerderath http://www.wikidata.org/entity/Q253019 Point(6.21667 51.1) +https://nwbib.de/spatial#Q1411067 http://www.wikidata.org/entity/Q1411067 Rimberg http://www.wikidata.org/entity/Q253019 Point(8.34917 51.2175) +https://nwbib.de/spatial#Q28151475 http://www.wikidata.org/entity/Q28151475 Lüttelforst http://www.wikidata.org/entity/Q253019 Point(6.261606 51.188328) +https://nwbib.de/spatial#Q1797990 http://www.wikidata.org/entity/Q1797990 Wiesdorf http://www.wikidata.org/entity/Q253019 Point(6.97546 51.0354) +https://nwbib.de/spatial#Q2362403 http://www.wikidata.org/entity/Q2362403 Wingeshausen http://www.wikidata.org/entity/Q253019 Point(8.289794444 51.069730555) +https://nwbib.de/spatial#Q56373671 http://www.wikidata.org/entity/Q56373671 Dekanat Ahaus-Vreden http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56373947 http://www.wikidata.org/entity/Q56373947 Dekanat Borken http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q2192405 http://www.wikidata.org/entity/Q2192405 Weine http://www.wikidata.org/entity/Q253019 Point(8.52472 51.5417) +https://nwbib.de/spatial#Q56374635 http://www.wikidata.org/entity/Q56374635 Dekanat Steinfurt http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q174197 http://www.wikidata.org/entity/Q174197 Sandebeck http://www.wikidata.org/entity/Q253019 Point(8.987222222 51.821388888) +https://nwbib.de/spatial#Q1531431 http://www.wikidata.org/entity/Q1531431 Glimbach http://www.wikidata.org/entity/Q253019 Point(6.293055555 50.995277777) +https://nwbib.de/spatial#Q19365476 http://www.wikidata.org/entity/Q19365476 Kückelheim http://www.wikidata.org/entity/Q253019 Point(7.8531 51.17238) +https://nwbib.de/spatial#Q1294497 http://www.wikidata.org/entity/Q1294497 Südhemmern http://www.wikidata.org/entity/Q253019 Point(8.78722 52.3192) +https://nwbib.de/spatial#Q1579537 http://www.wikidata.org/entity/Q1579537 Höven http://www.wikidata.org/entity/Q253019 Point(7.13901 51.9799) +https://nwbib.de/spatial#Q1655309 http://www.wikidata.org/entity/Q1655309 Stockheim http://www.wikidata.org/entity/Q253019 Point(7.54389 50.9294) +https://nwbib.de/spatial#Q14900 http://www.wikidata.org/entity/Q14900 Haltern am See http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813 Point(7.183333333 51.75) +https://nwbib.de/spatial#Q1444625 http://www.wikidata.org/entity/Q1444625 Frankenforst http://www.wikidata.org/entity/Q253019 Point(7.13866 50.9562) +https://nwbib.de/spatial#Q219964 http://www.wikidata.org/entity/Q219964 Zons http://www.wikidata.org/entity/Q2983893 Point(6.84278 51.1219) +https://nwbib.de/spatial#Q1265044 http://www.wikidata.org/entity/Q1265044 Grafschaft Dortmund http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q78855747 http://www.wikidata.org/entity/Q78855747 Gadderbaum http://www.wikidata.org/entity/Q253019 Point(8.516944444 52.001944444) +https://nwbib.de/spatial#Q43054377 http://www.wikidata.org/entity/Q43054377 Mellrich http://www.wikidata.org/entity/Q253019 Point(8.291944444 51.541666666) +https://nwbib.de/spatial#Q1543152 http://www.wikidata.org/entity/Q1543152 Kreis Lemgo http://www.wikidata.org/entity/Q106658 Point(8.91167 52.0272) +https://nwbib.de/spatial#Q1959104 http://www.wikidata.org/entity/Q1959104 Stadtbezirk Münster-Mitte http://www.wikidata.org/entity/Q2740635 Point(7.62583 51.9606) +https://nwbib.de/spatial#Q400551 http://www.wikidata.org/entity/Q400551 Ahlsen-Reineberg http://www.wikidata.org/entity/Q253019 Point(8.66278 52.2875) +https://nwbib.de/spatial#Q1258067 http://www.wikidata.org/entity/Q1258067 Nettelstedt http://www.wikidata.org/entity/Q253019 Point(8.7 52.3) +https://nwbib.de/spatial#Q460145 http://www.wikidata.org/entity/Q460145 Garath http://www.wikidata.org/entity/Q1852178 Point(6.89722 51.1433) +https://nwbib.de/spatial#Q56395271 http://www.wikidata.org/entity/Q56395271 Dekanat Vechta http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1533439 http://www.wikidata.org/entity/Q1533439 Ulenburg http://www.wikidata.org/entity/Q253019 Point(8.686388888 52.225) +https://nwbib.de/spatial#Q1987844 http://www.wikidata.org/entity/Q1987844 Niederhenneborn http://www.wikidata.org/entity/Q253019 Point(8.28187 51.2454) +https://nwbib.de/spatial#Q56397821 http://www.wikidata.org/entity/Q56397821 Dekanat Wormbach http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56398551 http://www.wikidata.org/entity/Q56398551 Dekanat Werl http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1614586 http://www.wikidata.org/entity/Q1614586 Herstelle http://www.wikidata.org/entity/Q253019 Point(9.417777777 51.642222222) +https://nwbib.de/spatial#Q15965177 http://www.wikidata.org/entity/Q15965177 Munscheid http://www.wikidata.org/entity/Q253019 Point(7.17143658 51.43922839) +https://nwbib.de/spatial#Q242572 http://www.wikidata.org/entity/Q242572 Dörentrup http://www.wikidata.org/entity/Q262166 Point(9.0 52.033055555) +https://nwbib.de/spatial#Q798710 http://www.wikidata.org/entity/Q798710 Bad Holzhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q6882870 Point(8.54028 52.2892) +https://nwbib.de/spatial#Q2350846 http://www.wikidata.org/entity/Q2350846 Stockum http://www.wikidata.org/entity/Q1852178 Point(6.75361 51.26) +https://nwbib.de/spatial#Q1879713 http://www.wikidata.org/entity/Q1879713 Löllinghausen http://www.wikidata.org/entity/Q253019 Point(8.32833 51.3119) +https://nwbib.de/spatial#Q29282808 http://www.wikidata.org/entity/Q29282808 Winterberg http://www.wikidata.org/entity/Q253019 Point(7.225352 51.010929) +https://nwbib.de/spatial#Q1597379 http://www.wikidata.org/entity/Q1597379 Sief http://www.wikidata.org/entity/Q253019 Point(6.14 50.692777777) +https://nwbib.de/spatial#Q16024 http://www.wikidata.org/entity/Q16024 Geldern http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(6.3325 51.519722222) +https://nwbib.de/spatial#Q1504397 http://www.wikidata.org/entity/Q1504397 Manrode http://www.wikidata.org/entity/Q253019 Point(9.340947222 51.583527777) +https://nwbib.de/spatial#Q1751131 http://www.wikidata.org/entity/Q1751131 Voßwinkel http://www.wikidata.org/entity/Q253019 Point(7.9085 51.465333333) +https://nwbib.de/spatial#Q2310669 http://www.wikidata.org/entity/Q2310669 Oeding http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q3257686 Point(6.811199 51.933151) +https://nwbib.de/spatial#Q2133651 http://www.wikidata.org/entity/Q2133651 Ravensberger Land http://www.wikidata.org/entity/Q1129474 Point(8.66667 52.1167) +https://nwbib.de/spatial#Q7926 http://www.wikidata.org/entity/Q7926 Regierungsbezirk Düsseldorf http://www.wikidata.org/entity/Q829277, http://www.wikidata.org/entity/Q1850612 Point(6.67 51.42) +https://nwbib.de/spatial#Q166787 http://www.wikidata.org/entity/Q166787 Kreis Halle http://www.wikidata.org/entity/Q106658 Point(8.35972 52.0608) +https://nwbib.de/spatial#Q2592814 http://www.wikidata.org/entity/Q2592814 Wolsdorf http://www.wikidata.org/entity/Q253019 Point(7.22306 50.795) +https://nwbib.de/spatial#Q56008489 http://www.wikidata.org/entity/Q56008489 Dohr http://www.wikidata.org/entity/Q253019 Point(6.466777777 51.157111111) +https://nwbib.de/spatial#Q1424058 http://www.wikidata.org/entity/Q1424058 Kirchenkreis Vlotho http://www.wikidata.org/entity/Q897303 Point(8.79494 52.2046) +https://nwbib.de/spatial#Q257276 http://www.wikidata.org/entity/Q257276 Frohnhausen http://www.wikidata.org/entity/Q253019 Point(6.974167 51.450833) +https://nwbib.de/spatial#Q2474035 http://www.wikidata.org/entity/Q2474035 Weidenhausen http://www.wikidata.org/entity/Q253019 Point(8.36556 50.9931) +https://nwbib.de/spatial#Q1458651 http://www.wikidata.org/entity/Q1458651 Nierst http://www.wikidata.org/entity/Q253019 Point(6.715277777 51.315555555) +https://nwbib.de/spatial#Q1304125 http://www.wikidata.org/entity/Q1304125 Stadtbezirk Eilpe/Dahl http://www.wikidata.org/entity/Q2740635 Point(7.495 51.3426) +https://nwbib.de/spatial#Q2569665 http://www.wikidata.org/entity/Q2569665 Wietersheim http://www.wikidata.org/entity/Q253019 Point(8.95083 52.3381) +https://nwbib.de/spatial#Q6863 http://www.wikidata.org/entity/Q6863 Schwerte http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813 Point(7.565277777 51.445833333) +https://nwbib.de/spatial#Q678456 http://www.wikidata.org/entity/Q678456 Kaiserswerth http://www.wikidata.org/entity/Q1852178 Point(6.739166666 51.3) +https://nwbib.de/spatial#Q35747848 http://www.wikidata.org/entity/Q35747848 Hostert http://www.wikidata.org/entity/Q253019 Point(6.3087 51.2095) +https://nwbib.de/spatial#Q19284594 http://www.wikidata.org/entity/Q19284594 Göttingen http://www.wikidata.org/entity/Q253019 Point(8.23163509 51.66526031) +https://nwbib.de/spatial#Q850814 http://www.wikidata.org/entity/Q850814 Beuel http://www.wikidata.org/entity/Q253019 Point(7.23647 50.6418) +https://nwbib.de/spatial#Q1411667 http://www.wikidata.org/entity/Q1411667 Mahlberg http://www.wikidata.org/entity/Q253019 Point(6.80802 50.5106) +https://nwbib.de/spatial#Q2009315 http://www.wikidata.org/entity/Q2009315 Oberdresselndorf http://www.wikidata.org/entity/Q253019 Point(8.13444 50.7128) +https://nwbib.de/spatial#Q316969 http://www.wikidata.org/entity/Q316969 Bödefeld http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(8.39306 51.2469) +https://nwbib.de/spatial#Q1535297 http://www.wikidata.org/entity/Q1535297 Ittenbach http://www.wikidata.org/entity/Q253019 Point(7.265 50.6811) +https://nwbib.de/spatial#Q1762849 http://www.wikidata.org/entity/Q1762849 Schlich http://www.wikidata.org/entity/Q253019 Point(6.403333333 50.800277777) +https://nwbib.de/spatial#Q1921817 http://www.wikidata.org/entity/Q1921817 Merklinde http://www.wikidata.org/entity/Q253019 Point(7.32364 51.5257) +https://nwbib.de/spatial#Q2597021 http://www.wikidata.org/entity/Q2597021 Wüschheim http://www.wikidata.org/entity/Q253019 Point(6.81333 50.6894) +https://nwbib.de/spatial#Q5542 http://www.wikidata.org/entity/Q5542 Plettenberg http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.871519444 51.212761111) +https://nwbib.de/spatial#Q1297587 http://www.wikidata.org/entity/Q1297587 Eggerscheidt http://www.wikidata.org/entity/Q253019 Point(6.8875 51.3164) +https://nwbib.de/spatial#Q1880451 http://www.wikidata.org/entity/Q1880451 Lüttenglehn http://www.wikidata.org/entity/Q253019 Point(6.52004 51.1763) +https://nwbib.de/spatial#Q1250637 http://www.wikidata.org/entity/Q1250637 Hostedde http://www.wikidata.org/entity/Q253019 Point(7.537 51.566) +https://nwbib.de/spatial#Q871033 http://www.wikidata.org/entity/Q871033 Dehme http://www.wikidata.org/entity/Q253019 Point(8.8275 52.234166666) +https://nwbib.de/spatial#Q441894 http://www.wikidata.org/entity/Q441894 Altkalkar http://www.wikidata.org/entity/Q253019 Point(6.28333 51.7167) +https://nwbib.de/spatial#Q2363162 http://www.wikidata.org/entity/Q2363162 Suderwich http://www.wikidata.org/entity/Q253019 Point(7.26444 51.6094) +https://nwbib.de/spatial#Q1592072 http://www.wikidata.org/entity/Q1592072 Leckingsen http://www.wikidata.org/entity/Q253019 Point(7.66567 51.4157) +https://nwbib.de/spatial#Q688373 http://www.wikidata.org/entity/Q688373 Reichsabtei Werden an der Ruhr http://www.wikidata.org/entity/Q44613, http://www.wikidata.org/entity/Q160742, http://www.wikidata.org/entity/Q2742167 Point(7.00472 51.38806) +https://nwbib.de/spatial#Q1333858 http://www.wikidata.org/entity/Q1333858 Elsoff http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(8.50944 51.0236) +https://nwbib.de/spatial#Q1753653 http://www.wikidata.org/entity/Q1753653 Preußisch Ströhen http://www.wikidata.org/entity/Q253019 Point(8.63056 52.5097) +https://nwbib.de/spatial#Q1451890 http://www.wikidata.org/entity/Q1451890 Frauenthal http://www.wikidata.org/entity/Q253019 Point(6.8053 50.807) +https://nwbib.de/spatial#Q2586693 http://www.wikidata.org/entity/Q2586693 Bommern http://www.wikidata.org/entity/Q253019 Point(7.337777777 51.424722222) +https://nwbib.de/spatial#Q43161686 http://www.wikidata.org/entity/Q43161686 Estern http://www.wikidata.org/entity/Q253019 Point(6.94581 51.9622) +https://nwbib.de/spatial#Q56025323 http://www.wikidata.org/entity/Q56025323 Trompet http://www.wikidata.org/entity/Q253019 Point(6.664472222 51.41775) +https://nwbib.de/spatial#Q665088 http://www.wikidata.org/entity/Q665088 Walberberg http://www.wikidata.org/entity/Q253019 Point(6.91222 50.7978) +https://nwbib.de/spatial#Q245466 http://www.wikidata.org/entity/Q245466 Odenthal http://www.wikidata.org/entity/Q262166 Point(7.116666666 51.033333333) +https://nwbib.de/spatial#Q1250708 http://www.wikidata.org/entity/Q1250708 Syburg http://www.wikidata.org/entity/Q253019 Point(7.487222222 51.425555555) +https://nwbib.de/spatial#Q974597 http://www.wikidata.org/entity/Q974597 Hermerath http://www.wikidata.org/entity/Q253019 Point(7.39639 50.8486) +https://nwbib.de/spatial#Q1910973 http://www.wikidata.org/entity/Q1910973 Mauel (Windeck) http://www.wikidata.org/entity/Q253019 Point(7.60028 50.805) +https://nwbib.de/spatial#Q2118153 http://www.wikidata.org/entity/Q2118153 Pumpe-Stich http://www.wikidata.org/entity/Q253019 Point(6.24139 50.8031) +https://nwbib.de/spatial#Q1524733 http://www.wikidata.org/entity/Q1524733 Gimbte http://www.wikidata.org/entity/Q253019 Point(7.64167 52.0606) +https://nwbib.de/spatial#Q56398251 http://www.wikidata.org/entity/Q56398251 Dekanat Attendorn http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56398420 http://www.wikidata.org/entity/Q56398420 Dekanat Iserlohn http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q56398585 http://www.wikidata.org/entity/Q56398585 Dekanat Wattenscheid http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q45744530 http://www.wikidata.org/entity/Q45744530 Großkönigsdorf http://www.wikidata.org/entity/Q253019 Point(6.765555555 50.938861111) +https://nwbib.de/spatial#Q56402341 http://www.wikidata.org/entity/Q56402341 Dekanat Steinheim http://www.wikidata.org/entity/Q385337 +https://nwbib.de/spatial#Q1651861 http://www.wikidata.org/entity/Q1651861 Hörste http://www.wikidata.org/entity/Q253019 Point(8.75349 51.9461) +https://nwbib.de/spatial#Q56009217 http://www.wikidata.org/entity/Q56009217 Lind http://www.wikidata.org/entity/Q253019 Point(6.483222222 51.42825) +https://nwbib.de/spatial#Q2299820 http://www.wikidata.org/entity/Q2299820 Wey http://www.wikidata.org/entity/Q253019 Point(6.50361 51.135) +https://nwbib.de/spatial#Q1136483 http://www.wikidata.org/entity/Q1136483 Costedt http://www.wikidata.org/entity/Q253019 Point(8.87111 52.2292) +https://nwbib.de/spatial#Q1550705 http://www.wikidata.org/entity/Q1550705 Grundsteinheim http://www.wikidata.org/entity/Q253019 Point(8.875277777 51.654722222) +https://nwbib.de/spatial#Q811538 http://www.wikidata.org/entity/Q811538 Baumen http://www.wikidata.org/entity/Q253019 Point(7.62389 50.8575) +https://nwbib.de/spatial#Q2540361 http://www.wikidata.org/entity/Q2540361 Wahlscheid http://www.wikidata.org/entity/Q253019 Point(7.25222 50.8901) +https://nwbib.de/spatial#Q911182 http://www.wikidata.org/entity/Q911182 Breun http://www.wikidata.org/entity/Q253019 Point(7.405277777 51.064722222) +https://nwbib.de/spatial#Q2009245 http://www.wikidata.org/entity/Q2009245 Oberbrügge http://www.wikidata.org/entity/Q253019 Point(7.56917 51.1922) +https://nwbib.de/spatial#Q1209932 http://www.wikidata.org/entity/Q1209932 Dickenberg http://www.wikidata.org/entity/Q253019 Point(7.67167 52.3136) +https://nwbib.de/spatial#Q1491143 http://www.wikidata.org/entity/Q1491143 Gahmen http://www.wikidata.org/entity/Q253019 Point(7.51417 51.5919) +https://nwbib.de/spatial#Q1603875 http://www.wikidata.org/entity/Q1603875 Niedermerz http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.266388888 50.881388888) +https://nwbib.de/spatial#Q1963851 http://www.wikidata.org/entity/Q1963851 Pier http://www.wikidata.org/entity/Q253019 Point(6.39639 50.8628) +https://nwbib.de/spatial#Q1258280 http://www.wikidata.org/entity/Q1258280 Westtünnen http://www.wikidata.org/entity/Q253019 Point(7.85611 51.6547) +https://nwbib.de/spatial#Q23362420 http://www.wikidata.org/entity/Q23362420 Bergkirchen http://www.wikidata.org/entity/Q253019 Point(8.7744 52.2686) +https://nwbib.de/spatial#Q908901 http://www.wikidata.org/entity/Q908901 Brenig http://www.wikidata.org/entity/Q253019 Point(6.98611 50.7458) +https://nwbib.de/spatial#Q19299173 http://www.wikidata.org/entity/Q19299173 Rimburg http://www.wikidata.org/entity/Q253019 Point(6.08972222 50.91388889) +https://nwbib.de/spatial#Q870893 http://www.wikidata.org/entity/Q870893 Gerthe http://www.wikidata.org/entity/Q253019 Point(7.272222222 51.516388888) +https://nwbib.de/spatial#Q1520236 http://www.wikidata.org/entity/Q1520236 Gevelinghausen http://www.wikidata.org/entity/Q253019 Point(8.44111 51.3508) +https://nwbib.de/spatial#Q181809 http://www.wikidata.org/entity/Q181809 Altenberge http://www.wikidata.org/entity/Q262166 Point(7.465277777 52.045833333) +https://nwbib.de/spatial#Q759109 http://www.wikidata.org/entity/Q759109 Auenhausen http://www.wikidata.org/entity/Q253019 Point(9.21086 51.6486) +https://nwbib.de/spatial#Q894381 http://www.wikidata.org/entity/Q894381 Boscheln http://www.wikidata.org/entity/Q253019 Point(6.13758 50.9175) +https://nwbib.de/spatial#Q1236910 http://www.wikidata.org/entity/Q1236910 Irsen http://www.wikidata.org/entity/Q253019 Point(7.59111 50.7425) +https://nwbib.de/spatial#Q56570939 http://www.wikidata.org/entity/Q56570939 Roggendorf http://www.wikidata.org/entity/Q253019 Point(6.786083333 50.836277777) +https://nwbib.de/spatial#Q1646541 http://www.wikidata.org/entity/Q1646541 Rothebusch http://www.wikidata.org/entity/Q253019 Point(6.89044 51.5117) +https://nwbib.de/spatial#Q2011523 http://www.wikidata.org/entity/Q2011523 Oberwälder Land http://www.wikidata.org/entity/Q1970725 Point(9.32911 51.7227) +https://nwbib.de/spatial#Q4219 http://www.wikidata.org/entity/Q4219 Rothaargebirge http://www.wikidata.org/entity/Q46831, http://www.wikidata.org/entity/Q1437459 Point(8.25 51.083333333) +https://nwbib.de/spatial#Q868907 http://www.wikidata.org/entity/Q868907 Wewelsburg http://www.wikidata.org/entity/Q253019 Point(8.65248 51.6054) +https://nwbib.de/spatial#Q1637915 http://www.wikidata.org/entity/Q1637915 Oerath http://www.wikidata.org/entity/Q253019 Point(6.30028 51.0936) +https://nwbib.de/spatial#Q1614442 http://www.wikidata.org/entity/Q1614442 Grafschaft Steinfurt http://www.wikidata.org/entity/Q353344, http://www.wikidata.org/entity/Q196068 +https://nwbib.de/spatial#Q2156182 http://www.wikidata.org/entity/Q2156182 Robend http://www.wikidata.org/entity/Q253019 Point(6.41389 51.2569) +https://nwbib.de/spatial#Q1612286 http://www.wikidata.org/entity/Q1612286 Peckelsheim http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q253019 Point(9.12778 51.5972) +https://nwbib.de/spatial#Q851588 http://www.wikidata.org/entity/Q851588 Bevergern http://www.wikidata.org/entity/Q253019 Point(7.58333 52.2742) +https://nwbib.de/spatial#Q637751 http://www.wikidata.org/entity/Q637751 Merkstein http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.116388888 50.882777777) +https://nwbib.de/spatial#Q44692662 http://www.wikidata.org/entity/Q44692662 Wethmar http://www.wikidata.org/entity/Q253019 Point(7.547222222 51.624722222) +https://nwbib.de/spatial#Q832145 http://www.wikidata.org/entity/Q832145 Albachten http://www.wikidata.org/entity/Q253019 Point(7.52639 51.9236) +https://nwbib.de/spatial#Q2390512 http://www.wikidata.org/entity/Q2390512 Talle http://www.wikidata.org/entity/Q253019 Point(8.90659 52.0965) +https://nwbib.de/spatial#Q327423 http://www.wikidata.org/entity/Q327423 Tannenbusch http://www.wikidata.org/entity/Q253019 Point(7.05751 50.7475) +https://nwbib.de/spatial#Q6272 http://www.wikidata.org/entity/Q6272 Städteregion Aachen http://www.wikidata.org/entity/Q13221722, http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q1780389 Point(6.097 50.7687) +https://nwbib.de/spatial#Q1392770 http://www.wikidata.org/entity/Q1392770 Würm http://www.wikidata.org/entity/Q253019 Point(6.17861 50.9925) +https://nwbib.de/spatial#Q1980075 http://www.wikidata.org/entity/Q1980075 Neuenkleusheim http://www.wikidata.org/entity/Q253019 Point(7.915277777 51.023888888) +https://nwbib.de/spatial#Q1806112 http://www.wikidata.org/entity/Q1806112 Ottenhausen http://www.wikidata.org/entity/Q253019 Point(9.0366 51.8705) +https://nwbib.de/spatial#Q1808050 http://www.wikidata.org/entity/Q1808050 Laurensberg http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q2740635, http://www.wikidata.org/entity/Q2983893 Point(6.062777777 50.797222222) +https://nwbib.de/spatial#Q2009136 http://www.wikidata.org/entity/Q2009136 Oberbantenberg http://www.wikidata.org/entity/Q253019 Point(7.51306 50.9714) +https://nwbib.de/spatial#Q1614856 http://www.wikidata.org/entity/Q1614856 Herweg http://www.wikidata.org/entity/Q253019 Point(7.36278 51.1783) +https://nwbib.de/spatial#Q2362997 http://www.wikidata.org/entity/Q2362997 Sudberg http://www.wikidata.org/entity/Q253019 Point(7.13926 51.1832) +https://nwbib.de/spatial#Q1625155 http://www.wikidata.org/entity/Q1625155 Holsterhausen http://www.wikidata.org/entity/Q253019 Point(6.9493567 51.6790016) +https://nwbib.de/spatial#Q25158553 http://www.wikidata.org/entity/Q25158553 Vennikel http://www.wikidata.org/entity/Q253019 Point(6.60815 51.4085) +https://nwbib.de/spatial#Q2584531 http://www.wikidata.org/entity/Q2584531 Winkeln http://www.wikidata.org/entity/Q253019 Point(6.37228 51.2062) +https://nwbib.de/spatial#Q2508050 http://www.wikidata.org/entity/Q2508050 Valdorf http://www.wikidata.org/entity/Q253019 Point(8.85556 52.1419) +https://nwbib.de/spatial#Q2350757 http://www.wikidata.org/entity/Q2350757 Stocklarn http://www.wikidata.org/entity/Q253019 Point(8.05137 51.6261) +https://nwbib.de/spatial#Q1988468 http://www.wikidata.org/entity/Q1988468 Niedersetzen http://www.wikidata.org/entity/Q253019 Point(8.03292 50.9238) +https://nwbib.de/spatial#Q2177050 http://www.wikidata.org/entity/Q2177050 Vinsebeck http://www.wikidata.org/entity/Q253019 Point(9.029444444 51.848333333) +https://nwbib.de/spatial#Q1625256 http://www.wikidata.org/entity/Q1625256 Holtum http://www.wikidata.org/entity/Q253019 Point(7.85806 51.5503) +https://nwbib.de/spatial#Q1322719 http://www.wikidata.org/entity/Q1322719 Kreis Iserlohn http://www.wikidata.org/entity/Q106658 Point(7.66667 51.3833) +https://nwbib.de/spatial#Q1875959 http://www.wikidata.org/entity/Q1875959 Materborn http://www.wikidata.org/entity/Q253019 Point(6.114166666 51.772222222) +https://nwbib.de/spatial#Q1624184 http://www.wikidata.org/entity/Q1624184 Hoinkhausen http://www.wikidata.org/entity/Q253019 Point(8.39668 51.5592) +https://nwbib.de/spatial#Q2563757 http://www.wikidata.org/entity/Q2563757 Weselerwald http://www.wikidata.org/entity/Q4421, http://www.wikidata.org/entity/Q253019 Point(6.7495 51.7166) +https://nwbib.de/spatial#Q17558355 http://www.wikidata.org/entity/Q17558355 Jungferntal-Rahm http://www.wikidata.org/entity/Q253019 Point(7.36667 51.5167) +https://nwbib.de/spatial#Q778810 http://www.wikidata.org/entity/Q778810 Ebbegebirge http://www.wikidata.org/entity/Q46831 Point(7.756388888 51.148333333) +https://nwbib.de/spatial#Q10912 http://www.wikidata.org/entity/Q10912 Wenden http://www.wikidata.org/entity/Q262166 Point(7.866666666 50.966666666) +https://nwbib.de/spatial#Q2271723 http://www.wikidata.org/entity/Q2271723 Seppenrade http://www.wikidata.org/entity/Q253019 Point(7.39556 51.7622) +https://nwbib.de/spatial#Q1959088 http://www.wikidata.org/entity/Q1959088 Gelmer http://www.wikidata.org/entity/Q253019 Point(7.675 52.0292) +https://nwbib.de/spatial#Q1887998 http://www.wikidata.org/entity/Q1887998 Malzhagen http://www.wikidata.org/entity/Q253019 Point(7.57583 50.9006) +https://nwbib.de/spatial#Q1664344 http://www.wikidata.org/entity/Q1664344 Inrath http://www.wikidata.org/entity/Q253019 Point(6.54916667 51.34555556) +https://nwbib.de/spatial#Q1795761 http://www.wikidata.org/entity/Q1795761 Marsdorf http://www.wikidata.org/entity/Q253019 Point(6.85111 50.9189) +https://nwbib.de/spatial#Q1469327 http://www.wikidata.org/entity/Q1469327 Frixheim http://www.wikidata.org/entity/Q253019 Point(6.71694 51.0558) +https://nwbib.de/spatial#Q1228321 http://www.wikidata.org/entity/Q1228321 Waldenrath http://www.wikidata.org/entity/Q253019 Point(6.07444 51.0128) +https://nwbib.de/spatial#Q1762392 http://www.wikidata.org/entity/Q1762392 Niederdornberg-Deppendorf http://www.wikidata.org/entity/Q253019 Point(8.46768 52.0621) +https://nwbib.de/spatial#Q820672 http://www.wikidata.org/entity/Q820672 Beringhausen http://www.wikidata.org/entity/Q253019 Point(8.3358 51.3261) +https://nwbib.de/spatial#Q1361871 http://www.wikidata.org/entity/Q1361871 Vieringhausen http://www.wikidata.org/entity/Q253019 Point(7.16444 51.1758) +https://nwbib.de/spatial#Q16320175 http://www.wikidata.org/entity/Q16320175 Lövenich http://www.wikidata.org/entity/Q253019 Point(6.32277778 51.03277778) +https://nwbib.de/spatial#Q3813 http://www.wikidata.org/entity/Q3813 Marl http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(7.116666666 51.666666666) +https://nwbib.de/spatial#Q44291935 http://www.wikidata.org/entity/Q44291935 Heelden http://www.wikidata.org/entity/Q253019 Point(6.441666666 51.811666666) +https://nwbib.de/spatial#Q2230085 http://www.wikidata.org/entity/Q2230085 Schafhausen http://www.wikidata.org/entity/Q253019 Point(6.11194 51.0522) +https://nwbib.de/spatial#Q1631254 http://www.wikidata.org/entity/Q1631254 Hottorf http://www.wikidata.org/entity/Q253019 Point(6.346388888 51.000833333) +https://nwbib.de/spatial#Q613377 http://www.wikidata.org/entity/Q613377 Linden http://www.wikidata.org/entity/Q253019 Point(7.160555555 51.425555555) +https://nwbib.de/spatial#Q1297577 http://www.wikidata.org/entity/Q1297577 Eggerode http://www.wikidata.org/entity/Q253019 Point(7.24333 52.0631) +https://nwbib.de/spatial#Q2348460 http://www.wikidata.org/entity/Q2348460 Stieldorf http://www.wikidata.org/entity/Q2983893 Point(7.21944 50.7303) +https://nwbib.de/spatial#Q586 http://www.wikidata.org/entity/Q586 Bonn http://www.wikidata.org/entity/Q1901835, http://www.wikidata.org/entity/Q1180262, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q1549591, http://www.wikidata.org/entity/Q537250, http://www.wikidata.org/entity/Q1187811, http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q253030, http://www.wikidata.org/entity/Q85635630 Point(7.099722222 50.733888888) +https://nwbib.de/spatial#Q2493621 http://www.wikidata.org/entity/Q2493621 Unglinghausen http://www.wikidata.org/entity/Q253019 Point(8.06056 50.9442) +https://nwbib.de/spatial#Q20826938 http://www.wikidata.org/entity/Q20826938 Osterflierich http://www.wikidata.org/entity/Q253019 Point(7.82916667 51.60027778) +https://nwbib.de/spatial#Q766190 http://www.wikidata.org/entity/Q766190 Junkersdorf http://www.wikidata.org/entity/Q15632166 Point(6.85722 50.9319) +https://nwbib.de/spatial#Q2220521 http://www.wikidata.org/entity/Q2220521 Sande http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.66027 51.7608) +https://nwbib.de/spatial#Q56597338 http://www.wikidata.org/entity/Q56597338 Blauenstein http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q5084 Point(6.117916666 51.013888888) +https://nwbib.de/spatial#Q862796 http://www.wikidata.org/entity/Q862796 Billerbeck http://www.wikidata.org/entity/Q253019 Point(9.03926 51.8791) +https://nwbib.de/spatial#Q56005590 http://www.wikidata.org/entity/Q56005590 Grafschaft Wittgenstein http://www.wikidata.org/entity/Q353344 +https://nwbib.de/spatial#Q1639801 http://www.wikidata.org/entity/Q1639801 Schlebusch http://www.wikidata.org/entity/Q253019 Point(7.05254 51.039) +https://nwbib.de/spatial#Q1250610 http://www.wikidata.org/entity/Q1250610 Eichlinghofen http://www.wikidata.org/entity/Q253019 Point(7.40611 51.4786) +https://nwbib.de/spatial#Q859622 http://www.wikidata.org/entity/Q859622 Bigge http://www.wikidata.org/entity/Q253019 Point(8.47111 51.3581) +https://nwbib.de/spatial#Q876263 http://www.wikidata.org/entity/Q876263 Golzheim http://www.wikidata.org/entity/Q1852178 Point(6.77222 51.2433) +https://nwbib.de/spatial#Q5654 http://www.wikidata.org/entity/Q5654 Bickendorf http://www.wikidata.org/entity/Q15632166 Point(6.90028 50.9575) +https://nwbib.de/spatial#Q23926582 http://www.wikidata.org/entity/Q23926582 Grütlohn http://www.wikidata.org/entity/Q253019 Point(6.825833 51.823889) +https://nwbib.de/spatial#Q819253 http://www.wikidata.org/entity/Q819253 Berg http://www.wikidata.org/entity/Q253019 Point(6.44254 50.88) +https://nwbib.de/spatial#Q1805663 http://www.wikidata.org/entity/Q1805663 Lirich http://www.wikidata.org/entity/Q253019 Point(6.83586 51.4805) +https://nwbib.de/spatial#Q787920 http://www.wikidata.org/entity/Q787920 Hermülheim http://www.wikidata.org/entity/Q253019 Point(6.8825 50.8817) +https://nwbib.de/spatial#Q182174 http://www.wikidata.org/entity/Q182174 Mettingen http://www.wikidata.org/entity/Q262166 Point(7.780555555 52.316666666) +https://nwbib.de/spatial#N03 http://www.wikidata.org/entity/Q4236 Siebengebirge http://www.wikidata.org/entity/Q372363, http://www.wikidata.org/entity/Q46831, http://www.wikidata.org/entity/Q1437459 Point(7.248333333 50.679444444) +https://nwbib.de/spatial#Q2018765 http://www.wikidata.org/entity/Q2018765 Oldentrup http://www.wikidata.org/entity/Q253019 Point(8.60833 52.0125) +https://nwbib.de/spatial#Q56005598 http://www.wikidata.org/entity/Q56005598 Eyll http://www.wikidata.org/entity/Q253019 Point(6.401333333 51.435944444) +https://nwbib.de/spatial#Q19601651 http://www.wikidata.org/entity/Q19601651 Holzem http://www.wikidata.org/entity/Q253019 Point(7.10451 50.62416) +https://nwbib.de/spatial#Q1798962 http://www.wikidata.org/entity/Q1798962 Vilkerath http://www.wikidata.org/entity/Q253019 Point(7.31861 50.9614) +https://nwbib.de/spatial#Q19687890 http://www.wikidata.org/entity/Q19687890 Braam-Ostwennemar http://www.wikidata.org/entity/Q253019 Point(7.87527778 51.67583333) +https://nwbib.de/spatial#Q2054178 http://www.wikidata.org/entity/Q2054178 Parsit http://www.wikidata.org/entity/Q253019 Point(7.96278 51.4981) +https://nwbib.de/spatial#Q13388983 http://www.wikidata.org/entity/Q13388983 Barmen (Stadtbezirk) http://www.wikidata.org/entity/Q13415859 Point(7.19167 51.2694) +https://nwbib.de/spatial#Q2462352 http://www.wikidata.org/entity/Q2462352 Twisteden http://www.wikidata.org/entity/Q253019 Point(6.21418 51.5529) +https://nwbib.de/spatial#Q1493482 http://www.wikidata.org/entity/Q1493482 Kaiserau http://www.wikidata.org/entity/Q253019 Point(7.60833 51.5692) +https://nwbib.de/spatial#Q1457938 http://www.wikidata.org/entity/Q1457938 Stadtbezirk Senne http://www.wikidata.org/entity/Q2740635 Point(8.5 51.9333) +https://nwbib.de/spatial#Q806001 http://www.wikidata.org/entity/Q806001 Bamenohl http://www.wikidata.org/entity/Q253019 Point(7.984166666 51.165277777) +https://nwbib.de/spatial#Q1907285 http://www.wikidata.org/entity/Q1907285 Maspe http://www.wikidata.org/entity/Q253019 Point(9.08 51.9236) +https://nwbib.de/spatial#Q200177 http://www.wikidata.org/entity/Q200177 Südlohn http://www.wikidata.org/entity/Q262166 Point(6.866388888 51.943611111) +https://nwbib.de/spatial#Q2535566 http://www.wikidata.org/entity/Q2535566 Vynen http://www.wikidata.org/entity/Q253019 Point(6.40806 51.7053) +https://nwbib.de/spatial#Q2554251 http://www.wikidata.org/entity/Q2554251 Wegeringhausen http://www.wikidata.org/entity/Q253019 Point(7.74079 51.045) +https://nwbib.de/spatial#Q2563757 http://www.wikidata.org/entity/Q2563757 Weselerwald http://www.wikidata.org/entity/Q4421, http://www.wikidata.org/entity/Q253019 Point(6.73333 51.71667) +https://nwbib.de/spatial#Q243554 http://www.wikidata.org/entity/Q243554 Kalkar http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(6.2925 51.738888888) +https://nwbib.de/spatial#Q748446 http://www.wikidata.org/entity/Q748446 Asterlagen http://www.wikidata.org/entity/Q253019 Point(6.69222 51.4261) +https://nwbib.de/spatial#Q1749525 http://www.wikidata.org/entity/Q1749525 Noithausen http://www.wikidata.org/entity/Q253019 Point(6.58253 51.1165) +https://nwbib.de/spatial#Q30011679 http://www.wikidata.org/entity/Q30011679 Sendschotten http://www.wikidata.org/entity/Q253019 Point(7.7648 51.0415) +https://nwbib.de/spatial#Q11052 http://www.wikidata.org/entity/Q11052 Nümbrecht http://www.wikidata.org/entity/Q262166, http://www.wikidata.org/entity/Q1595408 Point(7.542222222 50.905277777) +https://nwbib.de/spatial#Q1250657 http://www.wikidata.org/entity/Q1250657 Lanstrop http://www.wikidata.org/entity/Q253019 Point(7.56694 51.5764) +https://nwbib.de/spatial#Q453 http://www.wikidata.org/entity/Q453 Borken http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q134626, http://www.wikidata.org/entity/Q42744322 Point(6.858333333 51.843888888) +https://nwbib.de/spatial#Q813747 http://www.wikidata.org/entity/Q813747 Beckum http://www.wikidata.org/entity/Q253019 Point(7.89639 51.3556) +https://nwbib.de/spatial#Q151319 http://www.wikidata.org/entity/Q151319 Wenau http://www.wikidata.org/entity/Q253019 Point(6.335 50.79) +https://nwbib.de/spatial#Q925301 http://www.wikidata.org/entity/Q925301 Broich http://www.wikidata.org/entity/Q486972, http://www.wikidata.org/entity/Q253019 Point(6.33667 50.9494) +https://nwbib.de/spatial#N64 http://www.wikidata.org/entity/Q650645 Hochstift Minden http://www.wikidata.org/entity/Q463742, http://www.wikidata.org/entity/Q26830017 Point(8.85361 52.3156) +https://nwbib.de/spatial#Q1880443 http://www.wikidata.org/entity/Q1880443 Lütringhausen http://www.wikidata.org/entity/Q253019 Point(7.872777777 51.037222222) +https://nwbib.de/spatial#Q1651863 http://www.wikidata.org/entity/Q1651863 Hörste http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q532 Point(8.4375 51.6894) +https://nwbib.de/spatial#Q1921797 http://www.wikidata.org/entity/Q1921797 Merken http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.423055555 50.845833333) +https://nwbib.de/spatial#Q26696030 http://www.wikidata.org/entity/Q26696030 Hüsten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(7.99144 51.42845) +https://nwbib.de/spatial#Q29878907 http://www.wikidata.org/entity/Q29878907 Forsten http://www.wikidata.org/entity/Q253019 Point(7.304805555 51.055444444) +https://nwbib.de/spatial#Q183449 http://www.wikidata.org/entity/Q183449 Hövelhof http://www.wikidata.org/entity/Q262166 Point(8.65 51.816666666) +https://nwbib.de/spatial#Q153908 http://www.wikidata.org/entity/Q153908 Ostheim http://www.wikidata.org/entity/Q15632166 Point(7.04083 50.9294) +https://nwbib.de/spatial#Q317255 http://www.wikidata.org/entity/Q317255 Stromberg http://www.wikidata.org/entity/Q253019 Point(8.200830555 51.8042) +https://nwbib.de/spatial#Q779108 http://www.wikidata.org/entity/Q779108 Höfen http://www.wikidata.org/entity/Q253019 Point(6.25259 50.5406) +https://nwbib.de/spatial#Q2136692 http://www.wikidata.org/entity/Q2136692 Referinghausen http://www.wikidata.org/entity/Q253019 Point(8.67913 51.2477) +https://nwbib.de/spatial#Q1594385 http://www.wikidata.org/entity/Q1594385 Heidkamp http://www.wikidata.org/entity/Q253019 Point(7.13918 50.9833) +https://nwbib.de/spatial#Q2006319 http://www.wikidata.org/entity/Q2006319 Nächstebreck http://www.wikidata.org/entity/Q253019 Point(7.25177 51.3029) +https://nwbib.de/spatial#Q2230416 http://www.wikidata.org/entity/Q2230416 Vinkrath http://www.wikidata.org/entity/Q253019 Point(6.334281 51.353805) +https://nwbib.de/spatial#Q1543215 http://www.wikidata.org/entity/Q1543215 Granterath http://www.wikidata.org/entity/Q253019 Point(6.29472 51.055) +https://nwbib.de/spatial#Q2284186 http://www.wikidata.org/entity/Q2284186 Sieker http://www.wikidata.org/entity/Q253019 Point(8.56667 52.0067) +https://nwbib.de/spatial#Q979067 http://www.wikidata.org/entity/Q979067 Marienberg http://www.wikidata.org/entity/Q253019 Point(6.08883 50.9258) +https://nwbib.de/spatial#Q1428062 http://www.wikidata.org/entity/Q1428062 Flerzheim http://www.wikidata.org/entity/Q253019 Point(6.9875 50.6469) +https://nwbib.de/spatial#Q10938 http://www.wikidata.org/entity/Q10938 Bönen http://www.wikidata.org/entity/Q262166 Point(7.759166666 51.598611111) +https://nwbib.de/spatial#Q1437975 http://www.wikidata.org/entity/Q1437975 Forsbach http://www.wikidata.org/entity/Q253019 Point(7.17463 50.9222) +https://nwbib.de/spatial#Q436744 http://www.wikidata.org/entity/Q436744 Altenbergen http://www.wikidata.org/entity/Q253019 Point(9.24306 51.7928) +https://nwbib.de/spatial#Q322426 http://www.wikidata.org/entity/Q322426 Essig http://www.wikidata.org/entity/Q253019 Point(6.886666666 50.658333333) +https://nwbib.de/spatial#Q1871068 http://www.wikidata.org/entity/Q1871068 Lothe http://www.wikidata.org/entity/Q253019 Point(9.15278 51.8786) +https://nwbib.de/spatial#Q11126 http://www.wikidata.org/entity/Q11126 Anröchte http://www.wikidata.org/entity/Q262166 Point(8.333333333 51.566666666) +https://nwbib.de/spatial#Q240887 http://www.wikidata.org/entity/Q240887 Kall http://www.wikidata.org/entity/Q262166 Point(6.549722222 50.549722222) +https://nwbib.de/spatial#Q15056481 http://www.wikidata.org/entity/Q15056481 Götterswickerhamm http://www.wikidata.org/entity/Q253019 Point(6.663898 51.580822) +https://nwbib.de/spatial#Q151331 http://www.wikidata.org/entity/Q151331 Schevenhütte http://www.wikidata.org/entity/Q253019 Point(6.325277777 50.769444444) +https://nwbib.de/spatial#Q1514274 http://www.wikidata.org/entity/Q1514274 Germete http://www.wikidata.org/entity/Q253019 Point(9.103055555 51.485277777) +https://nwbib.de/spatial#Q2473781 http://www.wikidata.org/entity/Q2473781 Uffeln http://www.wikidata.org/entity/Q253019 Point(8.87 52.1747) +https://nwbib.de/spatial#Q2051124 http://www.wikidata.org/entity/Q2051124 Sankt Tönis http://www.wikidata.org/entity/Q2983893 Point(6.483333333 51.316666666) +https://nwbib.de/spatial#Q675820 http://www.wikidata.org/entity/Q675820 Arloff http://www.wikidata.org/entity/Q253019 Point(6.791566666 50.594413888) +https://nwbib.de/spatial#Q26836848 http://www.wikidata.org/entity/Q26836848 Offermannsheide http://www.wikidata.org/entity/Q253019 Point(7.263298 50.99763) +https://nwbib.de/spatial#Q1838195 http://www.wikidata.org/entity/Q1838195 Alfen http://www.wikidata.org/entity/Q253019 Point(8.70167 51.6519) +https://nwbib.de/spatial#Q5657 http://www.wikidata.org/entity/Q5657 Bilderstöckchen http://www.wikidata.org/entity/Q15632166 Point(6.92917 50.9686) +https://nwbib.de/spatial#Q8856 http://www.wikidata.org/entity/Q8856 Straelen http://www.wikidata.org/entity/Q902814, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q13220204, http://www.wikidata.org/entity/Q42744322 Point(6.266666666 51.45) +https://nwbib.de/spatial#Q1628281 http://www.wikidata.org/entity/Q1628281 Horn-Millinghausen http://www.wikidata.org/entity/Q253019 Point(8.2475 51.6128) +https://nwbib.de/spatial#Q1589115 http://www.wikidata.org/entity/Q1589115 Havert http://www.wikidata.org/entity/Q253019 Point(5.909166666 51.038055555) +https://nwbib.de/spatial#Q1511953 http://www.wikidata.org/entity/Q1511953 Möllbergen http://www.wikidata.org/entity/Q253019 Point(8.92611 52.2019) +https://nwbib.de/spatial#Q1019064 http://www.wikidata.org/entity/Q1019064 Bärbroich http://www.wikidata.org/entity/Q253019 Point(7.22111 50.9836) +https://nwbib.de/spatial#Q402942 http://www.wikidata.org/entity/Q402942 Ahsen http://www.wikidata.org/entity/Q253019 Point(7.30917 51.7003) +https://nwbib.de/spatial#Q1368646 http://www.wikidata.org/entity/Q1368646 Schuir http://www.wikidata.org/entity/Q253019 Point(6.963611 51.388056) +https://nwbib.de/spatial#Q815905 http://www.wikidata.org/entity/Q815905 Beller http://www.wikidata.org/entity/Q253019 Point(9.24392 51.7023) +https://nwbib.de/spatial#N34 http://www.wikidata.org/entity/Q1413205 Lippische Landeskirche http://www.wikidata.org/entity/Q565744 +https://nwbib.de/spatial#Q1720900 http://www.wikidata.org/entity/Q1720900 Kachtenhausen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q262166 Point(8.733 51.977) +https://nwbib.de/spatial#Q1738154 http://www.wikidata.org/entity/Q1738154 Keldenich http://www.wikidata.org/entity/Q253019 Point(6.96889 50.8114) +https://nwbib.de/spatial#Q1987842 http://www.wikidata.org/entity/Q1987842 Niederhelden http://www.wikidata.org/entity/Q253019 Point(7.9734 51.1214) +https://nwbib.de/spatial#Q5398 http://www.wikidata.org/entity/Q5398 Zülpich http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q515 Point(6.65 50.7) +https://nwbib.de/spatial#Q2009808 http://www.wikidata.org/entity/Q2009808 Oberhees http://www.wikidata.org/entity/Q253019 Point(7.93556 50.9403) +https://nwbib.de/spatial#Q15842309 http://www.wikidata.org/entity/Q15842309 Rheinhausen-Mitte http://www.wikidata.org/entity/Q253019 Point(6.71194444 51.40722222) +https://nwbib.de/spatial#Q1855990 http://www.wikidata.org/entity/Q1855990 Richstein http://www.wikidata.org/entity/Q253019 Point(8.461388888 50.985833333) +https://nwbib.de/spatial#Q1347645 http://www.wikidata.org/entity/Q1347645 Epprath http://www.wikidata.org/entity/Q253019 Point(6.56142 51.0065) +https://nwbib.de/spatial#Q1541601 http://www.wikidata.org/entity/Q1541601 Grafschaft http://www.wikidata.org/entity/Q1595408, http://www.wikidata.org/entity/Q253019 Point(8.32528 51.1458) +https://nwbib.de/spatial#Q1368836 http://www.wikidata.org/entity/Q1368836 Esshoff http://www.wikidata.org/entity/Q253019 Point(8.46889 51.4011) +https://nwbib.de/spatial#Q1625258 http://www.wikidata.org/entity/Q1625258 Holtwick http://www.wikidata.org/entity/Q253019 Point(7.12944 52.0092) +https://nwbib.de/spatial#Q653132 http://www.wikidata.org/entity/Q653132 Einruhr http://www.wikidata.org/entity/Q253019 Point(6.380352777 50.583752777) +https://nwbib.de/spatial#Q1774701 http://www.wikidata.org/entity/Q1774701 Klinkum http://www.wikidata.org/entity/Q253019 Point(6.25417 51.1356) +https://nwbib.de/spatial#Q1020294 http://www.wikidata.org/entity/Q1020294 Büchel http://www.wikidata.org/entity/Q253019 Point(7.40278 50.8389) +https://nwbib.de/spatial#Q955320 http://www.wikidata.org/entity/Q955320 Sinnersdorf http://www.wikidata.org/entity/Q253019 Point(6.81775 51.0236) +https://nwbib.de/spatial#Q1301502 http://www.wikidata.org/entity/Q1301502 Eichen http://www.wikidata.org/entity/Q253019 Point(7.96944 50.9792) +https://nwbib.de/spatial#Q2326759 http://www.wikidata.org/entity/Q2326759 Stadtbezirk Scharnhorst http://www.wikidata.org/entity/Q2740635 Point(7.533333333 51.55) +https://nwbib.de/spatial#Q1733988 http://www.wikidata.org/entity/Q1733988 Lenningsen http://www.wikidata.org/entity/Q253019 Point(7.787 51.577) +https://nwbib.de/spatial#Q1570860 http://www.wikidata.org/entity/Q1570860 Halen http://www.wikidata.org/entity/Q253019 Point(7.93972 52.3403) +https://nwbib.de/spatial#Q5645 http://www.wikidata.org/entity/Q5645 Marsberg http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(8.85 51.45) +https://nwbib.de/spatial#Q19279706 http://www.wikidata.org/entity/Q19279706 Forsten http://www.wikidata.org/entity/Q253019 Point(7.28402778 51.16355556) +https://nwbib.de/spatial#Q59138276 http://www.wikidata.org/entity/Q59138276 Stadtbezirk Heepen http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59138834 http://www.wikidata.org/entity/Q59138834 Stadtbezirk Sennestadt http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q1552236 http://www.wikidata.org/entity/Q1552236 Grüngürtel http://www.wikidata.org/entity/Q253019 Point(6.49541 50.812) +https://nwbib.de/spatial#Q11280 http://www.wikidata.org/entity/Q11280 Ennepe-Ruhr-Kreis http://www.wikidata.org/entity/Q106517174, http://www.wikidata.org/entity/Q20738811 Point(7.316666666 51.35) +https://nwbib.de/spatial#Q59139996 http://www.wikidata.org/entity/Q59139996 Stadtbezirk Kirchhellen http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59140398 http://www.wikidata.org/entity/Q59140398 Stadtbezirk Gelsenkirchen-Süd http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q29475554 http://www.wikidata.org/entity/Q29475554 Neuhurden http://www.wikidata.org/entity/Q253019 Point(7.245361 50.954489) +https://nwbib.de/spatial#Q1768089 http://www.wikidata.org/entity/Q1768089 Tietelsen http://www.wikidata.org/entity/Q253019 Point(9.27371 51.6582) +https://nwbib.de/spatial#Q2142939 http://www.wikidata.org/entity/Q2142939 Remerscheid http://www.wikidata.org/entity/Q253019 Point(7.45667 51.0092) +https://nwbib.de/spatial#Q200059 http://www.wikidata.org/entity/Q200059 Niederzier http://www.wikidata.org/entity/Q262166 Point(6.466666666 50.883055555) +https://nwbib.de/spatial#Q1302347 http://www.wikidata.org/entity/Q1302347 Eickhorst http://www.wikidata.org/entity/Q253019 Point(8.73528 52.3044) +https://nwbib.de/spatial#Q181984 http://www.wikidata.org/entity/Q181984 Crange http://www.wikidata.org/entity/Q253019 Point(7.1566 51.5445) +https://nwbib.de/spatial#Q1305626 http://www.wikidata.org/entity/Q1305626 Glesch http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.591805555 50.972277777) +https://nwbib.de/spatial#Q1977321 http://www.wikidata.org/entity/Q1977321 Nenkersdorf http://www.wikidata.org/entity/Q253019 Point(8.19306 50.8961) +https://nwbib.de/spatial#Q1250613 http://www.wikidata.org/entity/Q1250613 Eving http://www.wikidata.org/entity/Q253019 Point(7.47444 51.5528) +https://nwbib.de/spatial#Q151297 http://www.wikidata.org/entity/Q151297 Velau http://www.wikidata.org/entity/Q253019 Point(6.225 50.7869) +https://nwbib.de/spatial#Q2054915 http://www.wikidata.org/entity/Q2054915 Rißdorf http://www.wikidata.org/entity/Q253019 Point(6.716111111 50.593611111) +https://nwbib.de/spatial#Q1795772 http://www.wikidata.org/entity/Q1795772 Vogelsang http://www.wikidata.org/entity/Q15632166 Point(6.87306 50.9578) +https://nwbib.de/spatial#Q19296251 http://www.wikidata.org/entity/Q19296251 Merscheid http://www.wikidata.org/entity/Q253019 Point(7.02859211 51.16867828) +https://nwbib.de/spatial#Q2322464 http://www.wikidata.org/entity/Q2322464 Sankt Peter http://www.wikidata.org/entity/Q253019 Point(6.80405 51.1343) +https://nwbib.de/spatial#Q153759 http://www.wikidata.org/entity/Q153759 Endenich http://www.wikidata.org/entity/Q253019 Point(7.072777777 50.725) +https://nwbib.de/spatial#Q2334065 http://www.wikidata.org/entity/Q2334065 Witzhelden http://www.wikidata.org/entity/Q253019 Point(7.110277777 51.115555555) +https://nwbib.de/spatial#Q1260647 http://www.wikidata.org/entity/Q1260647 Drove http://www.wikidata.org/entity/Q253019 Point(6.513888888 50.730833333) +https://nwbib.de/spatial#Q153779 http://www.wikidata.org/entity/Q153779 Köln-Mülheim (Stadtbezirk) http://www.wikidata.org/entity/Q15632133 Point(7.016666666 50.966666666) +https://nwbib.de/spatial#Q6015 http://www.wikidata.org/entity/Q6015 Sundern (Sauerland) http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q54935786 Point(8.0 51.316666666) +https://nwbib.de/spatial#Q1742395 http://www.wikidata.org/entity/Q1742395 Kipshoven http://www.wikidata.org/entity/Q253019 Point(6.33111 51.13) +https://nwbib.de/spatial#Q1304126 http://www.wikidata.org/entity/Q1304126 Eilpe http://www.wikidata.org/entity/Q253019 Point(7.493333333 51.346388888) +https://nwbib.de/spatial#Q1935808 http://www.wikidata.org/entity/Q1935808 Milte http://www.wikidata.org/entity/Q253019 Point(7.947219444 52.0) +https://nwbib.de/spatial#Q56660352 http://www.wikidata.org/entity/Q56660352 Achterhoek http://www.wikidata.org/entity/Q253019 Point(6.344944444 51.587083333) +https://nwbib.de/spatial#Q2769174 http://www.wikidata.org/entity/Q2769174 Bracht http://www.wikidata.org/entity/Q253019 Point(8.165 51.1658) +https://nwbib.de/spatial#Q873555 http://www.wikidata.org/entity/Q873555 Lembeck http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.99958 51.75903) +https://nwbib.de/spatial#Q2564457 http://www.wikidata.org/entity/Q2564457 Westbarthausen http://www.wikidata.org/entity/Q253019 Point(8.23238 52.0902) +https://nwbib.de/spatial#Q2430669 http://www.wikidata.org/entity/Q2430669 Thöningsen http://www.wikidata.org/entity/Q253019 Point(8.11972 51.6144) +https://nwbib.de/spatial#Q1570318 http://www.wikidata.org/entity/Q1570318 Halberg http://www.wikidata.org/entity/Q253019 Point(7.243 50.848) +https://nwbib.de/spatial#Q1464434 http://www.wikidata.org/entity/Q1464434 Frielentrop http://www.wikidata.org/entity/Q253019 Point(7.96611 51.1911) +https://nwbib.de/spatial#Q56476182 http://www.wikidata.org/entity/Q56476182 Alpsray http://www.wikidata.org/entity/Q253019 Point(6.545444444 51.535138888) +https://nwbib.de/spatial#Q1659238 http://www.wikidata.org/entity/Q1659238 Ilserheide http://www.wikidata.org/entity/Q253019 Point(9.05278 52.3856) +https://nwbib.de/spatial#Q2505754 http://www.wikidata.org/entity/Q2505754 Vrasselt http://www.wikidata.org/entity/Q253019 Point(6.31194 51.82722) +https://nwbib.de/spatial#N14 http://www.wikidata.org/entity/Q4194 Sauerland http://www.wikidata.org/entity/Q82794 Point(8.0 51.25) +https://nwbib.de/spatial#Q1944295 http://www.wikidata.org/entity/Q1944295 Mondorf http://www.wikidata.org/entity/Q253019 Point(7.06861 50.7769) +https://nwbib.de/spatial#Q866685 http://www.wikidata.org/entity/Q866685 Bissingheim http://www.wikidata.org/entity/Q253019 Point(6.80667 51.3978) +https://nwbib.de/spatial#Q1256434 http://www.wikidata.org/entity/Q1256434 Stoppenberg http://www.wikidata.org/entity/Q253019 Point(7.038889 51.4775) +https://nwbib.de/spatial#Q56231200 http://www.wikidata.org/entity/Q56231200 Kamperlings http://www.wikidata.org/entity/Q2983893 Point(6.421777777 51.348777777) +https://nwbib.de/spatial#Q1448695 http://www.wikidata.org/entity/Q1448695 Spradow http://www.wikidata.org/entity/Q253019 Point(8.601111111 52.209166666) +https://nwbib.de/spatial#Q1350655 http://www.wikidata.org/entity/Q1350655 Ergste http://www.wikidata.org/entity/Q253019 Point(7.567519444 51.417838888) +https://nwbib.de/spatial#Q808352 http://www.wikidata.org/entity/Q808352 Barmen http://www.wikidata.org/entity/Q253019 Point(6.30417 50.9436) +https://nwbib.de/spatial#Q1918845 http://www.wikidata.org/entity/Q1918845 Hochelten http://www.wikidata.org/entity/Q253019 Point(6.17226 51.8659) +https://nwbib.de/spatial#Q1376600 http://www.wikidata.org/entity/Q1376600 Giershagen http://www.wikidata.org/entity/Q253019 Point(8.826061111 51.405311111) +https://nwbib.de/spatial#Q1470000 http://www.wikidata.org/entity/Q1470000 Marienberghausen http://www.wikidata.org/entity/Q253019 Point(7.495 50.9197) +https://nwbib.de/spatial#Q1380920 http://www.wikidata.org/entity/Q1380920 Schöning http://www.wikidata.org/entity/Q253019 Point(8.49444 51.7869) +https://nwbib.de/spatial#Q1737878 http://www.wikidata.org/entity/Q1737878 Kehrum http://www.wikidata.org/entity/Q253019 Point(6.33944 51.7097) +https://nwbib.de/spatial#Q758375 http://www.wikidata.org/entity/Q758375 Au (Sieg) http://www.wikidata.org/entity/Q253019 Point(7.65299 50.7731) +https://nwbib.de/spatial#Q65182530 http://www.wikidata.org/entity/Q65182530 Groin http://www.wikidata.org/entity/Q123705 Point(6.416944444 51.776944444) +https://nwbib.de/spatial#Q1301157 http://www.wikidata.org/entity/Q1301157 Eiberg http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q253019 Point(7.11583 51.4425) +https://nwbib.de/spatial#Q2125590 http://www.wikidata.org/entity/Q2125590 Radewig http://www.wikidata.org/entity/Q253019 Point(8.66528 52.1153) +https://nwbib.de/spatial#Q45710346 http://www.wikidata.org/entity/Q45710346 Rönsahl http://www.wikidata.org/entity/Q253019 Point(7.509722222 51.109722222) +https://nwbib.de/spatial#Q1675398 http://www.wikidata.org/entity/Q1675398 Pattern http://www.wikidata.org/entity/Q253019 Point(6.388 50.954) +https://nwbib.de/spatial#Q1390078 http://www.wikidata.org/entity/Q1390078 Kleinenbreden http://www.wikidata.org/entity/Q253019 Point(9.24368 51.8375) +https://nwbib.de/spatial#Q1601351 http://www.wikidata.org/entity/Q1601351 Heisterbacherrott http://www.wikidata.org/entity/Q253019 Point(7.23611 50.6967) +https://nwbib.de/spatial#Q1827522 http://www.wikidata.org/entity/Q1827522 Lippinghausen http://www.wikidata.org/entity/Q253019 Point(8.641944444 52.150833333) +https://nwbib.de/spatial#Q19369359 http://www.wikidata.org/entity/Q19369359 Widdert http://www.wikidata.org/entity/Q253019 Point(7.06258893 51.13467587) +https://nwbib.de/spatial#Q2429959 http://www.wikidata.org/entity/Q2429959 Wanheim-Angerhausen http://www.wikidata.org/entity/Q253019 Point(6.7436 51.3839) +https://nwbib.de/spatial#Q29567461 http://www.wikidata.org/entity/Q29567461 Gemen http://www.wikidata.org/entity/Q253019 Point(7.13634 52.0918) +https://nwbib.de/spatial#Q1250585 http://www.wikidata.org/entity/Q1250585 Berghofen http://www.wikidata.org/entity/Q253019 Point(7.52972 51.4783) +https://nwbib.de/spatial#Q1520246 http://www.wikidata.org/entity/Q1520246 Gevenich (Linnich) http://www.wikidata.org/entity/Q253019 Point(6.30972 50.9886) +https://nwbib.de/spatial#Q26208588 http://www.wikidata.org/entity/Q26208588 Diersfordt http://www.wikidata.org/entity/Q253019 Point(6.549444444 51.691388888) +https://nwbib.de/spatial#Q1409428 http://www.wikidata.org/entity/Q1409428 Feudingen http://www.wikidata.org/entity/Q253019 Point(8.325 50.941666666) +https://nwbib.de/spatial#Q895708 http://www.wikidata.org/entity/Q895708 Diedenshausen http://www.wikidata.org/entity/Q253019 Point(8.503055555 51.074166666) +https://nwbib.de/spatial#Q1279233 http://www.wikidata.org/entity/Q1279233 Lierenfeld http://www.wikidata.org/entity/Q1852178 Point(6.8275 51.2092) +https://nwbib.de/spatial#Q2015961 http://www.wikidata.org/entity/Q2015961 Offlum http://www.wikidata.org/entity/Q253019 Point(7.34444 52.2472) +https://nwbib.de/spatial#Q1370875 http://www.wikidata.org/entity/Q1370875 Störmede http://www.wikidata.org/entity/Q253019 Point(8.46917 51.6381) +https://nwbib.de/spatial#Q29236129 http://www.wikidata.org/entity/Q29236129 Meiswinkel http://www.wikidata.org/entity/Q253019 Point(7.224239 51.022058) +https://nwbib.de/spatial#Q2179402 http://www.wikidata.org/entity/Q2179402 Röhe http://www.wikidata.org/entity/Q253019 Point(6.23861 50.8217) +https://nwbib.de/spatial#Q1564808 http://www.wikidata.org/entity/Q1564808 Meinkenbracht http://www.wikidata.org/entity/Q253019 Point(8.089533333 51.281275) +https://nwbib.de/spatial#Q1675319 http://www.wikidata.org/entity/Q1675319 Itter http://www.wikidata.org/entity/Q1852178 Point(6.815 51.165) +https://nwbib.de/spatial#Q2549096 http://www.wikidata.org/entity/Q2549096 Wardt http://www.wikidata.org/entity/Q253019 Point(6.43417 51.6881) +https://nwbib.de/spatial#Q1556957 http://www.wikidata.org/entity/Q1556957 Gut Hospelt http://www.wikidata.org/entity/Q253019 Point(6.884005555 50.495411111) +https://nwbib.de/spatial#Q2233764 http://www.wikidata.org/entity/Q2233764 Scherpenseel http://www.wikidata.org/entity/Q253019 Point(6.06778 50.9278) +https://nwbib.de/spatial#Q992110 http://www.wikidata.org/entity/Q992110 Bruckhausen http://www.wikidata.org/entity/Q253019 Point(6.75381 51.5994) +https://nwbib.de/spatial#Q202377 http://www.wikidata.org/entity/Q202377 Steinheim http://www.wikidata.org/entity/Q42744322 Point(9.094444444 51.865833333) +https://nwbib.de/spatial#Q1738506 http://www.wikidata.org/entity/Q1738506 Kemna http://www.wikidata.org/entity/Q253019 Point(7.2663 51.2546) +https://nwbib.de/spatial#Q2473574 http://www.wikidata.org/entity/Q2473574 Uedorf http://www.wikidata.org/entity/Q253019 Point(7.03306 50.7833) +https://nwbib.de/spatial#Q1674301 http://www.wikidata.org/entity/Q1674301 Wickrathberg http://www.wikidata.org/entity/Q2983893 Point(6.41689 51.1118) +https://nwbib.de/spatial#Q62099199 http://www.wikidata.org/entity/Q62099199 Roland http://www.wikidata.org/entity/Q253019 +https://nwbib.de/spatial#Q1548555 http://www.wikidata.org/entity/Q1548555 Großeneder http://www.wikidata.org/entity/Q253019 Point(9.157838888 51.551061111) +https://nwbib.de/spatial#Q883426 http://www.wikidata.org/entity/Q883426 Gruiten http://www.wikidata.org/entity/Q253019 Point(7.011388888 51.218055555) +https://nwbib.de/spatial#Q1897697 http://www.wikidata.org/entity/Q1897697 Marienhagen http://www.wikidata.org/entity/Q253019 Point(7.58028 50.9811) +https://nwbib.de/spatial#Q2570401 http://www.wikidata.org/entity/Q2570401 Wildberg http://www.wikidata.org/entity/Q253019 Point(7.76722 50.9325) +https://nwbib.de/spatial#Q1719997 http://www.wikidata.org/entity/Q1719997 Kallmuth http://www.wikidata.org/entity/Q253019 Point(6.61973 50.556) +https://nwbib.de/spatial#Q1795764 http://www.wikidata.org/entity/Q1795764 Meschenich http://www.wikidata.org/entity/Q15632166 Point(6.930555555 50.861388888) +https://nwbib.de/spatial#Q1625077 http://www.wikidata.org/entity/Q1625077 Holpe http://www.wikidata.org/entity/Q253019 Point(7.67167 50.8417) +https://nwbib.de/spatial#Q889054 http://www.wikidata.org/entity/Q889054 Bergen http://www.wikidata.org/entity/Q253019 Point(7.24394 51.5168) +https://nwbib.de/spatial#Q808328 http://www.wikidata.org/entity/Q808328 Barlo http://www.wikidata.org/entity/Q253019 Point(6.661111111 51.886388888) +https://nwbib.de/spatial#Q501505 http://www.wikidata.org/entity/Q501505 Andreasberg http://www.wikidata.org/entity/Q253019 Point(8.43111 51.325) +https://nwbib.de/spatial#Q25392878 http://www.wikidata.org/entity/Q25392878 Stadtbezirk Herne-Mitte http://www.wikidata.org/entity/Q2740635 Point(7.21263 51.54366) +https://nwbib.de/spatial#Q1675619 http://www.wikidata.org/entity/Q1675619 Konradsheim http://www.wikidata.org/entity/Q253019 Point(6.76611 50.8125) +https://nwbib.de/spatial#Q1556866 http://www.wikidata.org/entity/Q1556866 Gustorf http://www.wikidata.org/entity/Q253019 Point(6.567125007 51.071675392) +https://nwbib.de/spatial#Q1368652 http://www.wikidata.org/entity/Q1368652 Steele http://www.wikidata.org/entity/Q253019 Point(7.076389 51.449444) +https://nwbib.de/spatial#Q1300846 http://www.wikidata.org/entity/Q1300846 Ehringhausen http://www.wikidata.org/entity/Q253019 Point(8.44944 51.6581) +https://nwbib.de/spatial#Q2009449 http://www.wikidata.org/entity/Q2009449 Oberembt http://www.wikidata.org/entity/Q253019 Point(6.499958333 50.956480555) +https://nwbib.de/spatial#Q897478 http://www.wikidata.org/entity/Q897478 Brakelsiek http://www.wikidata.org/entity/Q253019 Point(9.16901 51.8923) +https://nwbib.de/spatial#Q1377603 http://www.wikidata.org/entity/Q1377603 Almena http://www.wikidata.org/entity/Q253019 Point(9.07861 52.1058) +https://nwbib.de/spatial#Q1410545 http://www.wikidata.org/entity/Q1410545 Zooviertel http://www.wikidata.org/entity/Q253019 Point(7.11009 51.2442) +https://nwbib.de/spatial#Q1433123 http://www.wikidata.org/entity/Q1433123 Wöbbel http://www.wikidata.org/entity/Q253019 Point(9.1012 51.8976) +https://nwbib.de/spatial#Q2565372 http://www.wikidata.org/entity/Q2565372 Westhofen http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(7.53167 51.4233) +https://nwbib.de/spatial#Q2327223 http://www.wikidata.org/entity/Q2327223 Niederdorf http://www.wikidata.org/entity/Q253019 Point(6.24416667 51.38638889) +https://nwbib.de/spatial#Q2015240 http://www.wikidata.org/entity/Q2015240 Oestereiden http://www.wikidata.org/entity/Q253019 Point(8.42456 51.5678) +https://nwbib.de/spatial#Q151302 http://www.wikidata.org/entity/Q151302 Mausbach http://www.wikidata.org/entity/Q253019 Point(6.27778 50.7578) +https://nwbib.de/spatial#Q19687930 http://www.wikidata.org/entity/Q19687930 Lichtendorf http://www.wikidata.org/entity/Q253019 Point(7.60333347 51.46944427) +https://nwbib.de/spatial#Q1343208 http://www.wikidata.org/entity/Q1343208 Enkesen im Klei http://www.wikidata.org/entity/Q253019 Point(8.2135 51.5674) +https://nwbib.de/spatial#Q1787972 http://www.wikidata.org/entity/Q1787972 Krentrup http://www.wikidata.org/entity/Q253019 Point(8.715 52.023) +https://nwbib.de/spatial#Q737320 http://www.wikidata.org/entity/Q737320 Hoven http://www.wikidata.org/entity/Q253019 Point(6.64361 50.685) +https://nwbib.de/spatial#Q458704 http://www.wikidata.org/entity/Q458704 Ambrock http://www.wikidata.org/entity/Q253019 Point(7.514222222 51.321361111) +https://nwbib.de/spatial#Q2593731 http://www.wikidata.org/entity/Q2593731 Tüschen http://www.wikidata.org/entity/Q253019 Point(6.986111111 51.354169444) +https://nwbib.de/spatial#Q249710 http://www.wikidata.org/entity/Q249710 Dellwig http://www.wikidata.org/entity/Q253019 Point(6.924722 51.4875) +https://nwbib.de/spatial#Q1743178 http://www.wikidata.org/entity/Q1743178 Kirchenkreis Steinfurt-Coesfeld-Borken http://www.wikidata.org/entity/Q897303 +https://nwbib.de/spatial#Q16858120 http://www.wikidata.org/entity/Q16858120 Wulfshof http://www.wikidata.org/entity/Q253019 Point(7.207929 50.972409) +https://nwbib.de/spatial#Q1110161 http://www.wikidata.org/entity/Q1110161 Lüllingen http://www.wikidata.org/entity/Q253019 Point(6.243333 51.536389) +https://nwbib.de/spatial#Q18028242 http://www.wikidata.org/entity/Q18028242 Sudmühle http://www.wikidata.org/entity/Q253019 Point(7.68613 51.9936) +https://nwbib.de/spatial#Q2035400 http://www.wikidata.org/entity/Q2035400 Ostersbaum http://www.wikidata.org/entity/Q253019 Point(7.15583 51.265) +https://nwbib.de/spatial#Q57327312 http://www.wikidata.org/entity/Q57327312 Vorselaer http://www.wikidata.org/entity/Q253019 Point(6.227611111 51.6285) +https://nwbib.de/spatial#Q1554715 http://www.wikidata.org/entity/Q1554715 Stadtbezirk Lütgendortmund http://www.wikidata.org/entity/Q2740635 Point(7.35 51.5) +https://nwbib.de/spatial#Q9177531 http://www.wikidata.org/entity/Q9177531 Borghorst http://www.wikidata.org/entity/Q253019 Point(7.35 52.15) +https://nwbib.de/spatial#Q6246 http://www.wikidata.org/entity/Q6246 Kreis Kleve http://www.wikidata.org/entity/Q20738811, http://www.wikidata.org/entity/Q106517174 Point(6.25 51.666666666) +https://nwbib.de/spatial#Q1638354 http://www.wikidata.org/entity/Q1638354 Huppenbroich http://www.wikidata.org/entity/Q253019 Point(6.317225 50.590444444) +https://nwbib.de/spatial#Q1804946 http://www.wikidata.org/entity/Q1804946 Langeland http://www.wikidata.org/entity/Q253019 Point(8.99639 51.7817) +https://nwbib.de/spatial#Q1749999 http://www.wikidata.org/entity/Q1749999 Schwerfen http://www.wikidata.org/entity/Q253019 Point(6.646666666 50.643611111) +https://nwbib.de/spatial#Q2010510 http://www.wikidata.org/entity/Q2010510 Oberndorf (Bad Laasphe) http://www.wikidata.org/entity/Q253019 Point(8.29528 50.9592) +https://nwbib.de/spatial#Q2381500 http://www.wikidata.org/entity/Q2381500 Südstadt http://www.wikidata.org/entity/Q253019 Point(6.60861 51.08) +https://nwbib.de/spatial#Q1366743 http://www.wikidata.org/entity/Q1366743 Esborn http://www.wikidata.org/entity/Q1499928, http://www.wikidata.org/entity/Q253019 Point(7.33667 51.3864) +https://nwbib.de/spatial#Q2155793 http://www.wikidata.org/entity/Q2155793 Rixen http://www.wikidata.org/entity/Q253019 Point(8.50472 51.4133) +https://nwbib.de/spatial#Q11064 http://www.wikidata.org/entity/Q11064 Erwitte http://www.wikidata.org/entity/Q42744322 Point(8.349722222 51.616666666) +https://nwbib.de/spatial#Q245438 http://www.wikidata.org/entity/Q245438 Overath http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.283888888 50.932777777) +https://nwbib.de/spatial#Q200836 http://www.wikidata.org/entity/Q200836 Simmerath http://www.wikidata.org/entity/Q262166 Point(6.299722222 50.6) +https://nwbib.de/spatial#Q1514479 http://www.wikidata.org/entity/Q1514479 Gernsdorf http://www.wikidata.org/entity/Q253019 Point(8.17389 50.845) +https://nwbib.de/spatial#Q3939 http://www.wikidata.org/entity/Q3939 Dinslaken http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(6.733333333 51.566666666) +https://nwbib.de/spatial#Q2137878 http://www.wikidata.org/entity/Q2137878 Schwarzenau http://www.wikidata.org/entity/Q253019 Point(8.47528 51.0242) +https://nwbib.de/spatial#Q19834455 http://www.wikidata.org/entity/Q19834455 Altenbögge-Bönen http://www.wikidata.org/entity/Q253019 Point(7.7575 51.59852778) +https://nwbib.de/spatial#Q1959144 http://www.wikidata.org/entity/Q1959144 Münsterbrock http://www.wikidata.org/entity/Q253019 Point(9.1948 51.8358) +https://nwbib.de/spatial#Q2047677 http://www.wikidata.org/entity/Q2047677 Palenberg http://www.wikidata.org/entity/Q253019 Point(6.10361 50.9256) +https://nwbib.de/spatial#Q2586971 http://www.wikidata.org/entity/Q2586971 Witzerath http://www.wikidata.org/entity/Q253019 Point(6.309444444 50.613055555) +https://nwbib.de/spatial#Q21839544 http://www.wikidata.org/entity/Q21839544 Lichtenbusch http://www.wikidata.org/entity/Q253019 Point(6.125 50.7133) +https://nwbib.de/spatial#Q1919499 http://www.wikidata.org/entity/Q1919499 Mellen http://www.wikidata.org/entity/Q253019 Point(7.9025 51.3289) +https://nwbib.de/spatial#Q1410629 http://www.wikidata.org/entity/Q1410629 Griesemert http://www.wikidata.org/entity/Q253019 Point(7.885555555 51.048888888) +https://nwbib.de/spatial#Q1240042 http://www.wikidata.org/entity/Q1240042 Rossel http://www.wikidata.org/entity/Q253019 Point(7.53534 50.8136) +https://nwbib.de/spatial#Q2585095 http://www.wikidata.org/entity/Q2585095 Winterscheid http://www.wikidata.org/entity/Q253019 Point(7.375 50.815) +https://nwbib.de/spatial#Q241866 http://www.wikidata.org/entity/Q241866 Willebadessen http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q42744322 Point(9.033055555 51.633055555) +https://nwbib.de/spatial#Q458131 http://www.wikidata.org/entity/Q458131 Derendorf http://www.wikidata.org/entity/Q1852178 Point(6.79222 51.2439) +https://nwbib.de/spatial#Q817897 http://www.wikidata.org/entity/Q817897 Benninghausen http://www.wikidata.org/entity/Q253019 Point(8.24444 51.655) +https://nwbib.de/spatial#Q895928 http://www.wikidata.org/entity/Q895928 Rummenohl http://www.wikidata.org/entity/Q253019 Point(7.528888888 51.278333333) +https://nwbib.de/spatial#Q1658102 http://www.wikidata.org/entity/Q1658102 Ikenhausen http://www.wikidata.org/entity/Q253019 Point(9.08398 51.5599) +https://nwbib.de/spatial#Q881226 http://www.wikidata.org/entity/Q881226 Hamme http://www.wikidata.org/entity/Q253019 Point(7.2 51.5) +https://nwbib.de/spatial#Q1304658 http://www.wikidata.org/entity/Q1304658 Lipperode http://www.wikidata.org/entity/Q253019 Point(8.37667 51.6922) +https://nwbib.de/spatial#Q1725602 http://www.wikidata.org/entity/Q1725602 Obermörmter http://www.wikidata.org/entity/Q253019 Point(6.401666666 51.728888888) +https://nwbib.de/spatial#Q1593198 http://www.wikidata.org/entity/Q1593198 Heddinghausen http://www.wikidata.org/entity/Q253019 Point(8.89605 51.4029) +https://nwbib.de/spatial#Q893533 http://www.wikidata.org/entity/Q893533 Borgeln http://www.wikidata.org/entity/Q253019 Point(8.03722 51.6006) +https://nwbib.de/spatial#Q18746973 http://www.wikidata.org/entity/Q18746973 Ennepe http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q350895 Point(7.45922232 51.19124985) +https://nwbib.de/spatial#Q19964897 http://www.wikidata.org/entity/Q19964897 Herrntrop http://www.wikidata.org/entity/Q253019 Point(8.10305595 51.08833313) +https://nwbib.de/spatial#Q437079 http://www.wikidata.org/entity/Q437079 Altengeseke http://www.wikidata.org/entity/Q253019 Point(8.244602 51.556467) +https://nwbib.de/spatial#Q1275993 http://www.wikidata.org/entity/Q1275993 Mülldorf http://www.wikidata.org/entity/Q253019 Point(7.19278 50.7842) +https://nwbib.de/spatial#Q5276 http://www.wikidata.org/entity/Q5276 Altena http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q515, http://www.wikidata.org/entity/Q42744322 Point(7.666666666 51.3) +https://nwbib.de/spatial#Q992109 http://www.wikidata.org/entity/Q992109 Bruckhausen http://www.wikidata.org/entity/Q253019 Point(6.73972 51.4875) +https://nwbib.de/spatial#Q1746830 http://www.wikidata.org/entity/Q1746830 Kleinhau http://www.wikidata.org/entity/Q253019 Point(6.393866666 50.723166666) +https://nwbib.de/spatial#Q47890385 http://www.wikidata.org/entity/Q47890385 Wallrath http://www.wikidata.org/entity/Q253019 Point(6.548416666 51.136) +https://nwbib.de/spatial#Q783466 http://www.wikidata.org/entity/Q783466 Ossendorf http://www.wikidata.org/entity/Q15632166 Point(6.905 50.9686) +https://nwbib.de/spatial#Q1775987 http://www.wikidata.org/entity/Q1775987 Kreis Eslohe http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q1947767 http://www.wikidata.org/entity/Q1947767 Morgensternsheide http://www.wikidata.org/entity/Q253019 Point(6.6525 51.2086) +https://nwbib.de/spatial#Q1019910 http://www.wikidata.org/entity/Q1019910 Bönninghausen http://www.wikidata.org/entity/Q253019 Point(8.47278 51.6622) +https://nwbib.de/spatial#Q807998 http://www.wikidata.org/entity/Q807998 Bardenberg http://www.wikidata.org/entity/Q253019 Point(6.111388888 50.839722222) +https://nwbib.de/spatial#Q876741 http://www.wikidata.org/entity/Q876741 Liesen http://www.wikidata.org/entity/Q253019 Point(8.617722222 51.135083333) +https://nwbib.de/spatial#Q11102 http://www.wikidata.org/entity/Q11102 Geseke http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q42744322 Point(8.516666666 51.649722222) +https://nwbib.de/spatial#Q1529594 http://www.wikidata.org/entity/Q1529594 Windberg http://www.wikidata.org/entity/Q253019 Point(6.41207 51.2045) +https://nwbib.de/spatial#Q11136 http://www.wikidata.org/entity/Q11136 Lippetal http://www.wikidata.org/entity/Q262166 Point(8.083055555 51.649722222) +https://nwbib.de/spatial#Q200326 http://www.wikidata.org/entity/Q200326 Heek http://www.wikidata.org/entity/Q262166 Point(7.099722222 52.116666666) +https://nwbib.de/spatial#Q61727598 http://www.wikidata.org/entity/Q61727598 Essenberg http://www.wikidata.org/entity/Q253019 Point(6.702888888 51.442333333) +https://nwbib.de/spatial#Q151295 http://www.wikidata.org/entity/Q151295 Vicht http://www.wikidata.org/entity/Q253019 Point(6.265833333 50.743611111) +https://nwbib.de/spatial#Q2350842 http://www.wikidata.org/entity/Q2350842 Stockum http://www.wikidata.org/entity/Q253019 Point(6.65917 51.6108) +https://nwbib.de/spatial#Q109773 http://www.wikidata.org/entity/Q109773 Teutoburger Wald http://www.wikidata.org/entity/Q4421, http://www.wikidata.org/entity/Q674541 Point(8.63148 51.96334) +https://nwbib.de/spatial#Q27973016 http://www.wikidata.org/entity/Q27973016 Stadtbezirk Bochum-Südwest http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q59138859 http://www.wikidata.org/entity/Q59138859 Hamborn http://www.wikidata.org/entity/Q2983893 Point(6.772972222 51.490611111) +https://nwbib.de/spatial#Q315410 http://www.wikidata.org/entity/Q315410 Langscheid http://www.wikidata.org/entity/Q253019 Point(7.95724 51.3545) +https://nwbib.de/spatial#Q3959 http://www.wikidata.org/entity/Q3959 Kerpen http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q1548518 Point(6.696111111 50.871944444) +https://nwbib.de/spatial#Q2804 http://www.wikidata.org/entity/Q2804 Ostbevern http://www.wikidata.org/entity/Q262166 Point(7.845833333 52.038888888) +https://nwbib.de/spatial#Q995951 http://www.wikidata.org/entity/Q995951 Brück http://www.wikidata.org/entity/Q253019 Point(6.46944 50.6892) +https://nwbib.de/spatial#Q2340484 http://www.wikidata.org/entity/Q2340484 Steinenbrück http://www.wikidata.org/entity/Q253019 Point(7.22708 50.9378) +https://nwbib.de/spatial#Q476731 http://www.wikidata.org/entity/Q476731 Oberbolheim http://www.wikidata.org/entity/Q253019 Point(6.65389 50.8108) +https://nwbib.de/spatial#Q23559794 http://www.wikidata.org/entity/Q23559794 Bethel http://www.wikidata.org/entity/Q253019 Point(8.520639 52.00853) +https://nwbib.de/spatial#Q1184764 http://www.wikidata.org/entity/Q1184764 Delstern http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q1499928 Point(7.507777777 51.343888888) +https://nwbib.de/spatial#Q1531266 http://www.wikidata.org/entity/Q1531266 Gleuel http://www.wikidata.org/entity/Q253019 Point(6.83667 50.8889) +https://nwbib.de/spatial#Q1803464 http://www.wikidata.org/entity/Q1803464 Landkreis Solingen http://www.wikidata.org/entity/Q192611, http://www.wikidata.org/entity/Q5283531 +https://nwbib.de/spatial#Q2380724 http://www.wikidata.org/entity/Q2380724 Südfelde http://www.wikidata.org/entity/Q253019 Point(8.87944 52.3681) +https://nwbib.de/spatial#Q19835476 http://www.wikidata.org/entity/Q19835476 Billmerich http://www.wikidata.org/entity/Q253019 Point(7.67305556 51.50377778) +https://nwbib.de/spatial#Q1625558 http://www.wikidata.org/entity/Q1625558 Holzheim http://www.wikidata.org/entity/Q253019 Point(6.69667 50.5678) +https://nwbib.de/spatial#Q240964 http://www.wikidata.org/entity/Q240964 Hellenthal http://www.wikidata.org/entity/Q262166 Point(6.433055555 50.483055555) +https://nwbib.de/spatial#Q1564083 http://www.wikidata.org/entity/Q1564083 Sistig http://www.wikidata.org/entity/Q253019 Point(6.518055555 50.491944444) +https://nwbib.de/spatial#Q2594854 http://www.wikidata.org/entity/Q2594854 Wulferdingsen http://www.wikidata.org/entity/Q253019 Point(8.74556 52.2531) +https://nwbib.de/spatial#Q7920 http://www.wikidata.org/entity/Q7920 Regierungsbezirk Münster http://www.wikidata.org/entity/Q829277, http://www.wikidata.org/entity/Q1850612 Point(7.5 52.0) +https://nwbib.de/spatial#Q2649349 http://www.wikidata.org/entity/Q2649349 Allner http://www.wikidata.org/entity/Q253019 Point(7.29639 50.7814) +https://nwbib.de/spatial#Q1987736 http://www.wikidata.org/entity/Q1987736 Niedereimer http://www.wikidata.org/entity/Q253019 Point(8.047777777 51.420833333) +https://nwbib.de/spatial#Q1019826 http://www.wikidata.org/entity/Q1019826 Bökenförde http://www.wikidata.org/entity/Q253019 Point(8.39417 51.6408) +https://nwbib.de/spatial#Q177893 http://www.wikidata.org/entity/Q177893 Grumme http://www.wikidata.org/entity/Q253019 Point(7.228333333 51.499722222) +https://nwbib.de/spatial#Q1026604 http://www.wikidata.org/entity/Q1026604 Calenberg http://www.wikidata.org/entity/Q253019 Point(9.16423 51.4674) +https://nwbib.de/spatial#Q1533738 http://www.wikidata.org/entity/Q1533738 Godelheim http://www.wikidata.org/entity/Q253019 Point(9.36645 51.7313) +https://nwbib.de/spatial#Q26696030 http://www.wikidata.org/entity/Q26696030 Hüsten http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q707813 Point(7.976842099 51.4306202) +https://nwbib.de/spatial#Q2340611 http://www.wikidata.org/entity/Q2340611 Steinfeld http://www.wikidata.org/entity/Q253019 Point(6.56389 50.5014) +https://nwbib.de/spatial#Q2563512 http://www.wikidata.org/entity/Q2563512 Werthhoven http://www.wikidata.org/entity/Q253019 Point(7.13944 50.6097) +https://nwbib.de/spatial#Q1158316 http://www.wikidata.org/entity/Q1158316 Dambroich http://www.wikidata.org/entity/Q253019 Point(7.24194 50.7469) +https://nwbib.de/spatial#Q127660 http://www.wikidata.org/entity/Q127660 Ruhrort http://www.wikidata.org/entity/Q2983893 Point(6.732222222 51.456111111) +https://nwbib.de/spatial#Q813664 http://www.wikidata.org/entity/Q813664 Becke http://www.wikidata.org/entity/Q253019 Point(7.78472 51.3992) +https://nwbib.de/spatial#Q1524730 http://www.wikidata.org/entity/Q1524730 Gimborn http://www.wikidata.org/entity/Q253019 Point(7.47694 51.0606) +https://nwbib.de/spatial#Q881219 http://www.wikidata.org/entity/Q881219 Riemke http://www.wikidata.org/entity/Q253019 Point(7.210833333 51.51) +https://nwbib.de/spatial#Q815827 http://www.wikidata.org/entity/Q815827 Belle http://www.wikidata.org/entity/Q253019 Point(9.05282 51.898) +https://nwbib.de/spatial#Q1594292 http://www.wikidata.org/entity/Q1594292 Werth http://www.wikidata.org/entity/Q253019 Point(6.51167 51.8208) +https://nwbib.de/spatial#Q1566490 http://www.wikidata.org/entity/Q1566490 Haaren http://www.wikidata.org/entity/Q15284, http://www.wikidata.org/entity/Q2740635 Point(6.12694 50.7956) +https://nwbib.de/spatial#Q19295196 http://www.wikidata.org/entity/Q19295196 Lüdorf http://www.wikidata.org/entity/Q253019 Point(7.27822222 51.16922222) +https://nwbib.de/spatial#Q797502 http://www.wikidata.org/entity/Q797502 Baasem http://www.wikidata.org/entity/Q253019 Point(6.49639 50.3703) +https://nwbib.de/spatial#Q999703 http://www.wikidata.org/entity/Q999703 Mörmter http://www.wikidata.org/entity/Q253019 Point(6.4 51.6833) +https://nwbib.de/spatial#Q1787032 http://www.wikidata.org/entity/Q1787032 Kredenbach http://www.wikidata.org/entity/Q253019 Point(8.04222 50.9628) +https://nwbib.de/spatial#Q55586826 http://www.wikidata.org/entity/Q55586826 Büecke http://www.wikidata.org/entity/Q253019 Point(8.107222222 51.516388888) +https://nwbib.de/spatial#Q1625213 http://www.wikidata.org/entity/Q1625213 Holthausen http://www.wikidata.org/entity/Q253019 Point(6.68333 51.6) +https://nwbib.de/spatial#Q684314 http://www.wikidata.org/entity/Q684314 Bistum Aachen http://www.wikidata.org/entity/Q105388829 +https://nwbib.de/spatial#Q1668814 http://www.wikidata.org/entity/Q1668814 Rölsdorf http://www.wikidata.org/entity/Q253019 Point(6.46417 50.79) +https://nwbib.de/spatial#Q15815887 http://www.wikidata.org/entity/Q15815887 Honschaft Millrath http://www.wikidata.org/entity/Q1627183, http://www.wikidata.org/entity/Q253019 Point(6.962166666 51.213638888) +https://nwbib.de/spatial#Q1740478 http://www.wikidata.org/entity/Q1740478 Mittelottersbach http://www.wikidata.org/entity/Q253019 Point(7.47917 50.7981) +https://nwbib.de/spatial#Q1709198 http://www.wikidata.org/entity/Q1709198 Möhler http://www.wikidata.org/entity/Q253019 Point(8.20972222 51.86111111) +https://nwbib.de/spatial#Q879119 http://www.wikidata.org/entity/Q879119 Bitze http://www.wikidata.org/entity/Q253019 Point(7.4825 50.7602) +https://nwbib.de/spatial#Q1286567 http://www.wikidata.org/entity/Q1286567 Gereonsweiler http://www.wikidata.org/entity/Q253019, http://www.wikidata.org/entity/Q486972 Point(6.223055555 50.957777777) +https://nwbib.de/spatial#Q315663 http://www.wikidata.org/entity/Q315663 Grafschaft Limburg http://www.wikidata.org/entity/Q353344 Point(7.5675 51.36361111) +https://nwbib.de/spatial#Q1391790 http://www.wikidata.org/entity/Q1391790 Freckenhorst http://www.wikidata.org/entity/Q253019 Point(7.96611 51.92) +https://nwbib.de/spatial#Q47483940 http://www.wikidata.org/entity/Q47483940 Marl-Hüls http://www.wikidata.org/entity/Q253019 Point(7.128333333 51.676111111) +https://nwbib.de/spatial#Q1727980 http://www.wikidata.org/entity/Q1727980 Stachelau http://www.wikidata.org/entity/Q253019 Point(7.8925 51.038611111) +https://nwbib.de/spatial#Q699438 http://www.wikidata.org/entity/Q699438 Arrenberg http://www.wikidata.org/entity/Q253019 Point(7.1325 51.2492) +https://nwbib.de/spatial#Q1795741 http://www.wikidata.org/entity/Q1795741 Ensen http://www.wikidata.org/entity/Q15632166 Point(7.03111 50.8997) +https://nwbib.de/spatial#Q56033650 http://www.wikidata.org/entity/Q56033650 Wupperhof http://www.wikidata.org/entity/Q253019 Point(7.083416666 51.137277777) +https://nwbib.de/spatial#Q1805073 http://www.wikidata.org/entity/Q1805073 Langenhorst http://www.wikidata.org/entity/Q253019 Point(7.23667 52.1969) +https://nwbib.de/spatial#Q2547670 http://www.wikidata.org/entity/Q2547670 Waltringen http://www.wikidata.org/entity/Q253019 Point(7.92194444 51.50666667) +https://nwbib.de/spatial#Q1736872 http://www.wikidata.org/entity/Q1736872 Katzem http://www.wikidata.org/entity/Q253019 Point(6.355 51.0344) +https://nwbib.de/spatial#Q835940 http://www.wikidata.org/entity/Q835940 Roitzheim http://www.wikidata.org/entity/Q253019 Point(6.809444444 50.643888888) +https://nwbib.de/spatial#Q1792312 http://www.wikidata.org/entity/Q1792312 Kunst Wittgenstein http://www.wikidata.org/entity/Q253019 Point(8.386 50.932) +https://nwbib.de/spatial#Q1795703 http://www.wikidata.org/entity/Q1795703 Kölkebeck http://www.wikidata.org/entity/Q253019 Point(8.285 52.0069) +https://nwbib.de/spatial#Q23906455 http://www.wikidata.org/entity/Q23906455 Groß Reken http://www.wikidata.org/entity/Q253019 Point(7.046111 51.831111) +https://nwbib.de/spatial#Q21042076 http://www.wikidata.org/entity/Q21042076 Genend http://www.wikidata.org/entity/Q253019 Point(6.59472227 51.47277832) +https://nwbib.de/spatial#Q199977 http://www.wikidata.org/entity/Q199977 Inden http://www.wikidata.org/entity/Q262166 Point(6.357777777 50.846666666) +https://nwbib.de/spatial#Q1951696 http://www.wikidata.org/entity/Q1951696 Muddenhagen http://www.wikidata.org/entity/Q253019 Point(9.32667 51.5592) +https://nwbib.de/spatial#Q2105340 http://www.wikidata.org/entity/Q2105340 Rövenich http://www.wikidata.org/entity/Q253019 Point(6.686944444 50.709166666) +https://nwbib.de/spatial#Q1359899 http://www.wikidata.org/entity/Q1359899 Varl http://www.wikidata.org/entity/Q253019 Point(8.57972 52.4403) +https://nwbib.de/spatial#Q3943 http://www.wikidata.org/entity/Q3943 Lippstadt http://www.wikidata.org/entity/Q707813, http://www.wikidata.org/entity/Q1548518, http://www.wikidata.org/entity/Q42744322 Point(8.35 51.666666666) +https://nwbib.de/spatial#Q124705 http://www.wikidata.org/entity/Q124705 Südstadt http://www.wikidata.org/entity/Q253019 Point(7.09996 50.7265) +https://nwbib.de/spatial#Q1599752 http://www.wikidata.org/entity/Q1599752 Heinrichsdorf http://www.wikidata.org/entity/Q253019 Point(8.4275 51.28694444) +https://nwbib.de/spatial#Q811575 http://www.wikidata.org/entity/Q811575 Baumheide http://www.wikidata.org/entity/Q253019 Point(8.59376 52.0458) +https://nwbib.de/spatial#Q19310542 http://www.wikidata.org/entity/Q19310542 Uedelhoven http://www.wikidata.org/entity/Q253019 Point(6.772963 50.37797) +https://nwbib.de/spatial#Q925319 http://www.wikidata.org/entity/Q925319 Broich (Schleiden) http://www.wikidata.org/entity/Q253019 Point(6.5025 50.5225) +https://nwbib.de/spatial#Q776527 http://www.wikidata.org/entity/Q776527 Bredenborn http://www.wikidata.org/entity/Q253019 Point(9.185833333 51.810833333) +https://nwbib.de/spatial#Q808046 http://www.wikidata.org/entity/Q808046 Bardüttingdorf http://www.wikidata.org/entity/Q253019 Point(8.422222222 52.120833333) +https://nwbib.de/spatial#Q15126199 http://www.wikidata.org/entity/Q15126199 Albringhausen http://www.wikidata.org/entity/Q253019 Point(7.831618055 51.108103055) +https://nwbib.de/spatial#Q1485657 http://www.wikidata.org/entity/Q1485657 Knapsack http://www.wikidata.org/entity/Q253019 Point(6.84861 50.8578) +https://nwbib.de/spatial#Q4094 http://www.wikidata.org/entity/Q4094 Hilden http://www.wikidata.org/entity/Q42744322, http://www.wikidata.org/entity/Q54935786 Point(6.939444444 51.171388888) +https://nwbib.de/spatial#Q5644 http://www.wikidata.org/entity/Q5644 Hallenberg http://www.wikidata.org/entity/Q42744322 Point(8.6216 51.112) +https://nwbib.de/spatial#Q1419125 http://www.wikidata.org/entity/Q1419125 Firmenich http://www.wikidata.org/entity/Q253019 Point(6.68939 50.6294) +https://nwbib.de/spatial#Q2035192 http://www.wikidata.org/entity/Q2035192 Osterhagen http://www.wikidata.org/entity/Q253019 Point(8.92007 52.0884) +https://nwbib.de/spatial#Q54803601 http://www.wikidata.org/entity/Q54803601 Stadtbezirk V (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q54803604 http://www.wikidata.org/entity/Q54803604 Stadtbezirk VIII (Essen) http://www.wikidata.org/entity/Q2740635 +https://nwbib.de/spatial#Q2498025 http://www.wikidata.org/entity/Q2498025 Unterlübbe http://www.wikidata.org/entity/Q253019 Point(8.76917 52.2956) +https://nwbib.de/spatial#Q12449 http://www.wikidata.org/entity/Q12449 Lohmar http://www.wikidata.org/entity/Q3957, http://www.wikidata.org/entity/Q54935786, http://www.wikidata.org/entity/Q42744322 Point(7.2166 50.841480555) +https://nwbib.de/spatial#Q257028 http://www.wikidata.org/entity/Q257028 Nordviertel http://www.wikidata.org/entity/Q253019 Point(7.014722 51.470556) +https://nwbib.de/spatial#Q182510 http://www.wikidata.org/entity/Q182510 Wettringen http://www.wikidata.org/entity/Q262166 Point(7.316666666 52.208333333) +https://nwbib.de/spatial#Q1366459 http://www.wikidata.org/entity/Q1366459 Kreis Schleiden http://www.wikidata.org/entity/Q106658, http://www.wikidata.org/entity/Q5283531 Point(6.47638889 50.53) +https://nwbib.de/spatial#Q1625196 http://www.wikidata.org/entity/Q1625196 Holterhöfe http://www.wikidata.org/entity/Q253019 Point(6.496194444 51.285583333) +https://nwbib.de/spatial#Q151680 http://www.wikidata.org/entity/Q151680 Hersel http://www.wikidata.org/entity/Q253019 Point(7.04639 50.7733) +https://nwbib.de/spatial#Q26208581 http://www.wikidata.org/entity/Q26208581 Obrighoven http://www.wikidata.org/entity/Q253019 Point(6.648056 51.672778) +https://nwbib.de/spatial#Q1519397 http://www.wikidata.org/entity/Q1519397 Gesseln http://www.wikidata.org/entity/Q253019 Point(8.66142 51.7373) +https://nwbib.de/spatial#Q1156588 http://www.wikidata.org/entity/Q1156588 Dabringhausen http://www.wikidata.org/entity/Q2983893 Point(7.18944 51.0922) +https://nwbib.de/spatial#Q1475430 http://www.wikidata.org/entity/Q1475430 Garbeck http://www.wikidata.org/entity/Q253019 Point(7.82917 51.3175) +https://nwbib.de/spatial#Q1523571 http://www.wikidata.org/entity/Q1523571 Rhedebrügge http://www.wikidata.org/entity/Q253019 Point(6.77049 51.8275) diff --git a/conf/hebisMarc2lobid-transformation/maps/picaCreatorId2Isil.tsv b/conf/hebisMarc2lobid-transformation/maps/picaCreatorId2Isil.tsv new file mode 100644 index 0000000..fa0f86c --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/picaCreatorId2Isil.tsv @@ -0,0 +1,749 @@ +Urheberkennung Name der Bibliothek ISIL-Bibliothek +0001 Berlin SBB [1+1a+1w] DE-1 +0001 Berlin SBB [1+1a+1w] DE-1 +0001 Berlin SBB [1+1a+1w] DE-1 +0001 Berlin SBB (Level 3) DE-1 +0003 Halle UuLB FE3 DE-3 +0003 Halle ULB, Sprach-Red DE-3 +0003 Halle ULB DE-3 +0003 Halle UuLB FE1 DE-3 +0003 Halle ULB, VD17 DE-3 +0003 Halle UuLB FE3 DE-3 +0003 Halle UuLB SE3 DE-3 +0004 Marburg UB [4] DE-4 +0004 Marburg UB, FE-Red DE-4 +0004 Marburg UB, FE DE-4 +0006 Münster UuLB ONS/SRU RU DE-6 +0007 Goettingen SuUB, SE-Red DE-7 +0007 Goettingen SuUB FE3 DE-7 +0007 Goettingen SuUB, Sprach-Red DE-7 +0007 Goettingen SUB FE1 DE-7 +0007 Goettingen SuUB, VD17 DE-7 +0007 Goettingen SUB (SE Level 3) DE-7 +0007 GOETTINGEN MATH. INST. (LEV. 3) DE-7-003 +0007 Goettingen UB Bibl. d. Jur. Sem. DE-7-037 +0007 Goettingen Sem. Dt. Phil. (L. 3) DE-7-052 +0008 Kiel UB FE3 DE-8 +0008 Kiel UB. Sprach-Red. DE-8 +0008 Kiel UB FE1 DE-8 +0008 Kiel UB, VD17 DE-8 +0008 Kiel UB (Level 3) DE-8 +0008 Kiel UB DE-8 +0009 Greifswald UB FE3 DE-9 +0009 Greifswald UB, Sprach-Red DE-9 +0009 Greifswald UB FE1 DE-9 +0009 Greifswald UB (Level 3) DE-9 +0012 Muenchen BSB, SE-Red. DE-12 +0012 Muenchen BSB, FE-Red DE-12 +0012 Muenchen BSB, FE DE-12 +0012 Muenchen BSB, Sprach-Red. DE-12 +0012 Muenchen BSB, SE-Red. 2 (Lev. 3) DE-12 +0012 Muenchen BSB, FE 2 DE-12 +0014 Dresden SLUB [14] DE-14 +0014 Dresden SLUB, FE DE-14 +0014 Dresden SLUB (Level 3) DE-14 +0014 Dresden SLUB FE4 DE-14 +0014 Dresden SLUB SE4 DE-14 +0015 Leipzig UB, FE DE-15 +0015 Leipzig UB (Level 4) DE-15 +0016 Heidelberg UB [16] DE-16 +0016 Heidelberg UB, SE DE-16 +0016 Heidelberg UB, FE DE-16 +0016 Heidelberg UB SE-Red (L. 1) DE-16 +0016 Heidelberg UB (Level 3) DE-16 +0016 Heidelberg UB (FE Level 4) DE-16 +0016 Heidelberg UB (SE Level 4) DE-16 +0016 Heidelberg HSbibliographie (L3) DE-16-250 +0016 Heidelberg HSbibliographie (L4) DE-16-250 +0016 Heidelberg UB, SAI, SE DE-16-77 +0016 Heidelberg UB, SAI, FE DE-16-77 +0016 Heidelberg UB, SAI (Level 3) DE-16-77 +0017 Darmstadt ULB [17] DE-17 +0017 Darmstadt ULB, FE-Red DE-17 +0017 Darmstadt ULB, FE DE-17 +0017 Darmstadt ULB, SE-Red DE-17 +0018 Hamburg SUB, SE-Red DE-18 +0018 Hamburg SUB FE3 DE-18 +0018 Hamburg SUB, Sprach-Red DE-18 +0018 Hamburg SUB FE1 DE-18 +0018 Hamburg SUB, VD17 DE-18 +0018 Hamburg SUB Zentr. Normd. FE3 DE-18-312 +0018 Hamburg HAW FB LS FE3 DE-18-284 +0018 Hamburg HAW (Level 3) DE-18-302 +0018 Hamburg UKE FE3 DE-18-64 +0019 Muenchen UB, SE-Red. DE-19 +0019 Muenchen UB, FE-Red. DE-19 +0019 Muenchen UB, FE DE-19 +0020 Wuerzburg UB, FE-Red DE-20 +0020 Wuerzburg UB, FE DE-20 +0021 Tuebingen UB, SE-Red DE-21 +0021 Tuebingen UB, FE DE-21 +0021 Tuebingen UB (Level 3) DE-21 +0021 Tübingen Inst. Kriminolog. FE3 DE-21-110 +0021 Tübingen Theologicum FE3 DE-21-31 +0021 Tuebingen UB (KIZ) (Level 4) DE-21 +0023 Wolfenbuettel HAB, FE-Red. DE-23 +0023 Wolfenbuettel HAB, FE DE-23 +0023 Wolfenbuettel HAB DE-23 +0023 Wolfenbuettel HAB (Level 3) DE-23 +0024 Stuttgart Württ. LB [24] DE-24 +0024 Stuttgart WLB, SE-Red DE-24 +0024 Stuttgart Wuertt. LB, FE DE-24 +0024 Stuttgart WLB (Level 3) DE-24 +0024 Stuttgart WLB (Level 4) DE-24 +0025 Freiburg UB [25] DE-25 +0025 Freiburg UB [25] DE-25 +0025 Freiburg UB, SE-Red DE-25 +0025 Freiburg UB, FE DE-25 +0025 Freiburg UB (Level 3) DE-25 +0025 Freiburg UB (Level 4) DE-25 +0026 Giessen UB [26] DE-26 +0026 Giessen UB, FE-Red DE-26 +0026 Giessen UB, FE DE-26 +0026 Giessen UB, FE DE-26 +0027 Jena THULB FE3 DE-27 +0027 Jena THULB Musik FE3 DE-27 +0027 Jena ThULB FE1 DE-27 +0027 Jena THULB (Level 3) DE-27 +0028 Rostock UB, FE Red. DE-28 +0028 Rostock UB, FE DE-28 +0028 Rostock UB (Level 3) DE-28 +0029 Erlangen UB, FE-Red DE-29 +0029 Erlangen UB, FE DE-29 +0030 Frankfurt/M StuUB [30] DE-30 +0030 Frankfurt/M StuUB, FE-Red DE-30 +0030 Frankfurt/M StuUB, FE DE-30 +0031 Karlsruhe BLB, FE DE-31 +0031 Karlsruhe BLB (Level 3) DE-31 +0031 Karlsruhe BLB (Level 4) DE-31 +0032 Weimar HAAB FE3 DE-32 +0032 Weimar HAAB FE1 DE-32 +0032 Weimar HAAB, VD17 DE-32 +0032 Weimar HAAB FE3 DE-32 +0032 Weimar HAAB SE3 DE-32 +0033 Schwerin LBMV, FE DE-33 +0033 Schwerin LBMV (Level 3) DE-33 +0034 Kassel GHB [34] DE-34 +0034 Kassel GHB, FE-Red DE-34 +0034 Kassel GHB, FE DE-34 +0035 Hannover NLB, FE DE-35 +0035 Hannover NLB, VD17 DE-35 +0036 Mainz StBi [36] DE-36 +0036 Mainz StBi, FE-Red DE-36 +0036 Mainz StBi, FE DE-36 +0038 Koeln UuSTB, SE DE-38 +0043 Wiesbaden LB [43] DE-43 +0043 Wiesbaden LB [43], FE-Red DE-43 +0043 Wiesbaden LB [43], FE DE-43 +0045 Oldenburg LB, FE DE-45 +0046 Bremen SuUB FE3 DE-46 +0046 Bremen SuUB FE1 DE-46 +0046 Bremen SuUB Musik FE3 DE-46 +0048 Luebeck StB FE1 DE-48 +0056 Braunschweig StBi VD17 DE-56 +0056 Braunschweig StBi DE-56 +0059 Chemnitz STB (Level 3) DE-59 +0066 Fulda HLB [66] DE-66 +0066 Fulda HLB, FE-Red DE-66 +0066 Fulda HLB, FE DE-66 +0068 Kiel LB, FE DE-68 +0068 Kiel LB SE3 DE-68 +0075 Nuernberg StB, FE DE-75 +0077 Mainz UB [77] DE-77 +0077 Mainz UB, FE-Red DE-77 +0077 Mainz UB, FE DE-77 +0083 Berlin UB TU, SE DE-83 +0083 Berlin UB TU, FE DE-83 +0083 Berlin, UB TU, GKD DE-83 +0084 Braunschweig UB TU, FE DE-84 +0089 Hannover TIB FE3 DE-89 +0089 Hannover TIB/UB (Level 3) DE-89 +0090 Karlsruhe UB, FE DE-90 +0090 Karlsruhe UB (KIT) (Level 3) DE-90 +0090 Karlsruhe UB (KIT) (Level 4) DE-90 +0091 Muenchen TU, FE-Red DE-91 +0091 Muenchen TU, FE DE-91 +0093 Stuttgart UB [93] DE-93 +0093 Stuttgart UB, FE DE-93 +0093 Stuttgart UB (Level 3) DE-93 +0093 Stuttgart UB (Level 4) DE-93 +0095 Hannover TierHS, FE-Red DE-95 +0095 Hannover TierHS, FE DE-95 +0100 Stuttgart UB Hohenheim, FE DE-100 +0100 Stuttgart-Hoh. KIM (Level 3) DE100 +0100 Stuttgart-Hoh. KIM (Level 4) DE-100 +0103 SBB / ZKA DE-611 +0103 SBB / ZKA (Level 1) DE-611 +0103 SBB / ZKA (Level 1) DE-611 +0104 Clausthal-Z. UB [104] DE-104 +0105 Freiberg TU BA, FE DE-105 +0105 Freiberg TU BA (Level 3) DE-105 +0105 Freiberg TU BA (Level 4) DE-105 +0125 Zwickau RSB DE-125 +0125 Zwickau RSB SE3 DE-125 +0180 Mannheim UB, FE DE-180 +0180 Mannheim UB (Level 3) DE-180 +0180 Mannheim UB (Level 4) DE-180 +0188 Berlin UB FU, SE-Red DE-188 +0204 Berlin IAI FE1 DE-204 +0204 Berlin IAI FE3 DE-204 +0206 Kiel ZBW [206] DE-206 +0206 Kiel ZBW WGL FE1 DE-206 +0206 Kiel ZBW WGL FE3 DE-206 +0208 Karlsruhe BGH (Level 3) DE-208 +0212 Stuttgart Inst. Auslandsbez, FE DE-212 +0212 Stuttgart IFAS SE3 DE-212 +0253 Braunschweig FAL, FE DE-253 +0255 München ZIKG [255] DE-255 +0255 Muenchen ZIKG, FE-Red. DE-255 +0255 München ZIKG [255] DE-255 +0255 Rom Bibl. Hertziana [Y2] DE-Y2 +0255 Rom Bibl. Hertziana [Y2] DE-Y2 +0255 Florenz KHI [Y3] DE-Y3 +0255 Florenz KHI, FE-Red. DE-Y3 +0255 Florenz KHI [Y3] DE-Y3 +0255 Paris DFK, SE DE-Y7 +0255 Paris DFK, FE DE-Y7 +0281 Berlin Bundestag Bibliothek FE3 DE-281 +0289 Ulm UB, FE DE-289 +0289 Ulm UB (KIZ) (Level 3) DE-289 +0289 Ulm UB (KIZ) (FE Level 4) DE-289 +0291 Saarbrücken UuLB [291] DE-291 +0291 Saarbrücken SULB [291] DE-0291 +0291 Saarbruecken SULB, FE DE-291 +0291 Saarbruecken SULB (Level 3) DE-291 +0291 Saarbruecken SULB (Level 4) DE-291 +0296 Singen Hegau-B DE-296 +0352 Konstanz UB [352] DE-352 +0352 Konstanz UB, FE DE-352 +0352 Konstanz UB (Level 3) DE-352 +0352 Konstanz UB (Level 4) DE-352 +0354 Hannover Med HS, FE DE-354 +0354 Hannover Med. HS (Level 3) DE-354 +0355 Regensburg UB, SE-Red DE-355 +0355 Regensburg UB, FE-Red DE-355 +0355 Regensburg UB, FE DE-355 +0384 Augsburg UB, SE-Red DE-384 +0384 Augsburg UB, FE-Red. DE-384 +0384 Augsburg UB, FE DE-384 +0384 Augsburg UB, VD17 DE-384 +0460 Darmstadt Staatsarchiv DE-460 +0468 Wuppertal UB [468] DE-468 +0473 Bamberg UB, FE-Red DE-473 +0473 Bamberg UB, FE DE-473 +0500 HBZ DE-605 +5000 HBZ / Zentralredaktion DE-605 +0500 HBZ / SE Red. DE-605 +0500 HBZ, FE DE-605 +0517 Potsdam UB, FE DE-517 +0521 Frankfurt/O UB, FE-Red. DE-521 +0521 Frankfurt/O UB, FE DE-521 +0522 Brandenburg FH, FE DE-522 +0523 Berlin HTW, FE DE-523 +0526 Wildau TH, FE DE-526 +0540 Dresden HfBK FE Lev. 3 DE-540 +0547 Erfurt UB FE1 DE-547 +0547 Erfurt UB FE3 DE-547 +0547 Erfurt/Gotha UFB, VD17 DE-547 +0563 Rostock HS Musik L. 3 DE-563 +0600 HEBIS DE-603 +0600 HEBIS, SE-Red DE-603 +0600 HEBIS, FE-Red. DE-603 +0600 HEBIS, FE DE-603 +0614 Muenster Int.Port.Westf.Gesch DE-614 +0631 Stuttgart LABI BAW (Level 1) DE-631 +0700 Osnabrueck UB, FE DE-700 +0703 Bayreuth UB [703], FE-Red DE-703 +0703 Bayreuth UB, FE DE-703 +0705 Hamburg UniBW (HSU), FE DE-705 +0706 Muenchen UniBW, FE-Red DE-706 +0706 Muenchen UniBW, FE DE-706 +0715 Oldenburg BIS, FE DE-715 +0739 Passau UB, FE-Red DE-739 +0739 Passau UB, FE DE-739 +0747 Weingarten HSB (Level 3) DE-747 +0755 Emden/Leer FH, FE DE-755 +0824 Eichstaett UB, FE-Red DE-824 +0824 Eichstaett UB, FE DE-824 +0830 Hamburg UB TU, FE DE-830 +0830 Hamburg TUHH FE1 DE-830 +0832 Koeln FHB, SE DE-832 +0834 Braunschweig HBK (Level 3) DE-834 +0839 WHV Jade Hochschule FE3 DE-839 +0839 Wilhelmshaven FH, GKD DE-839 +0839 WHV Jade Hochschule FE1 DE-839 +0897 Elsfleth Jade HS DE-897-1 +0897 Oldenburg Jade-Hochschule FE3 DE-897 +0916 Wolfenbuettel FH, GKD DE-916 +0916 Wolfenbuettel Ostfalia HS (Lev3) DE-916 +0929 Koblenz LB [929] DE-929 +0955 Rottenburg HS Forstw DE-955 +0960 Hannover FHB, FE DE-960 +0969 Wiesbaden FHB [969] DE-969 +0969 Wiesbaden FHB, FE-Red DE-969 +0969 Wiesbaden FHB, FE DE-969 +0974 Giessen-Friedberg FHB [974] DE-974 +0974 Giessen-Friedberg FHB, FE-Red DE-974 +0974 Giessen-Friedberg FHB, FE DE-974 +0984 Schwäbisch Gmünd HS Gestalt. DE-984 +0996 Hannover HMTM/FMG, FE DE-996 +0996 Hannover HMT, GKD DE-996 +0996 Hannover HMTM SE3 DE-996 +1015 Darmstadt Ev. HS DE-1015 +1015 Darmstadt Ev. HS DE-1015 +1030 SBB / Sacherschliessung DE-1 +1031 SBB, FE-Red DE-1 +1031 SBB, FE DE-1 +1031 SBB, Sprach-Red DE-1 +1031 SBB, VD17 DE-1 +1158 Guestrow FH oeff. Verw., GKD DE-1158 +1373 Hamburg HafenCity FE3 DE-1373 +1400 OBV / UB WIEN (SWD) AT-OBV +1401 OBV (PND) AT-OBV +1401 OBV, FE-Red AT-OBV +1401 OBV, FE AT-OBV +1402 OENDV, FE AT-NOELB +1403 OENDV (Normdaten) AT-NOeLB +1403 OENDV Normdaten-Red. (Level 1) AT-NOELB +1500 Suedwest-Verbund DE-576 +1501 BSZ Baden-Wuerttemberg - SWD DE-576 +1502 BSZ, Sonstige SWB-Bibl., FE DE-576 +1510 BSZ Baden-Wuerttemberg - PND DE-576-2 +1520 Reutlingen EKZ DE-Rt5 +1600 Bern NB CH-000001-5 +1610 IDS-SE CH-IDSGNDS +1620 Bern BSG CH-000001-5 +1620 Bern BSG CH-000001-5 +1702 Neuendetttelsau VThK (THB) DE-613 +1703 Bremen Stiftung FLF / DaSinD, FE DE-Bre15 +1704 Bonn GESIS (SE-Red.) DE-587b +1705 Koblenz Bundesarchiv, FE DE-12 +1706 Braunschweig PTB, FE DE-Bs68 +1707 Braunschweig GEI, FE DE-Bs78 +1708 Dresden SLUB, Digi-Projekt DE-14 +1711 Berlin DZA FE3 DE-B1562 +1712 Gatersleben IPK FE3 DE-Gat1 +1713 Kiel FH FE3 DE-Ki95 +1714 Hamburg GBB/MKGH FE3 DE-H22 +1715 Berlin Stiftung Aufarbeitung, FE DE-B1548 +1716 Frankfurt DIF DE-Wi17FP +1716 Frankfurt DIF DE-Wi17FP +1717 Hildesheim Dombibliothek DE-Hil6 +1718 Berlin BfR, GKD DE-B12 +1719 Hannover Landtag FE3 DE-Hv14 +1719 Hannover LT Nie (GKD) DE-Hv14 +1719 Hannover Landtag FE1 DE-Hv14 +1719 Hannover LT Nie (Level 3) DE-Hv14 +1720 Karlsruhe BFI, GKD DE-Ka51 +1721 Jena FLI, GKD DE-J120 +1722 Weimar HS Musik, FE DE-Wim8 +1723 Berlin Hertie School, GKD DE-B1570 +1724 Hildesheim Nieders. LRH, FE DE-Hil5 +1724 Hildesheim Nieders. LRH, GKD DE-Hil5 +1725 Wismar FH, FE DE-Wis1 +1725 Wismar FH, GKD DE-Wis1 +1726 Muenster Int.Port.Westf.Gesch. DE-614 +1727 Berlin Dt. Inst.f.Menschenr.,FE DE-B1547 +1728 Marburg Hess Landesamt, FE DE-Mb107 +1728 Marburg Hess Landesamt, LAGIS DE-Mb107 +1729 Emden JALB, FE DE-Em2 +1730 Goettingen GWDG, FE DE-Goe168 +1732 Hamburg Bucerius Law School, FE DE-H360 +1733 Ilmenau UB, FE DE-Ilm1 +1734 Jena FH, FE DE-J59 +1735 Jena Thuering. OLG, FE DE-J153 +1736 Magdeburg UB, FE DE-Ma9 +1737 Oldenburg Ev.Luth. Oberk., FE DE-Old3 +1737 Oldenburg Ev.Luth.Oberk. (Lev.3) DE-Old3 +1738 Schmalkalden FH, FE DE-Shm2 +1739 Vechta UB, FE DE-Va1 +1740 Weimar UB, FE DE-Wim2 +1742 Chemnitz UB (Level 3) DE-CH1 +1742 Chemnitz UB (Level 4) DE-Ch1 +1744 Braunschweig HAUM, FE DE-Bs75 +1745 Bremen La.ki.Bibl., GKD DE-Bre4 +1746 Goettingen Otto-Hahn-Bibl., GKD DE-Goe116 +1748 Berlin PTB, GKD DE-B108 +1749 Osnabrueck FH Teilb. Musik, GKD DE-959-2 +1750 Marburg FSt Personalschriften FE DE-Mb108 +1751 Dresden ISGV SAEBI DE-D174a +1752 Marburg Ev. HS Tabor, FE DE-Mb109 +1753 Berlin UdK, SE DE-B170 +1753 Berlin UdK, FE DE-B170 +1756 Gotha Schlossmuseum Bibl. DE-G16 +1757 Kiel IFM-GEOMAR DE-Ki109 +1758 Cottbus BTU, SE DE-Co1 +1758 Cottbus BTU, FE DE-634 +1758 Cottbus BTU, GKD DE-634 +1759 Eberswalde FH, FE DE-Eb1 +1761 Senftenberg BTU, FE DE-634 +1762 Potsdam TFA DE-Po84 +1763 Halle Franckesche Stiftungen, FE DE-Ha33 +1764 Marbach DLA DE-Mar1 +1764 Marbach DLA SE1 DE-Mar1 +1765 Marburg DFG-Projekt Thenom DE-Mb111 +1766 Foto Marburg (Level 1) DE-Mb112 +1766 Marburg Foto (Level 3) DE-Mb112 +1767 Bad Koesen Landesschule Pforte DE-Pf1 +1768 Halle/S Marienbibliothek DE-Ha32 +1769 Bern HLS Schweiz CH-001499-7 +1770 Bern DoDIS CH-001661-0 +1771 Bern Foto CH CH-001651-4 +1772 Muenchen BMLO DE-M512 +1773 Goettingen Germ. Sacra, FE DE-Goe172 +1774 Goettingen Sanskrit Woerterbuch DE-7-911 +1775 Zuerich SIK, FE CH-000479-X +1776 Basel UB Porträtsammlung, FE CH-BaUGNF +1777 Berlin Wikimedia Deutschland DE-B1592 +1778 Beirut Orient-Institut DE-Y9 +1779 Bremen Forschungsst. Osteuropa DE-Bre12 +1780 Wiesbaden Hess. Hauptstaatsarch. DE-Wi1 +1780 Wiesbaden Hess. Hauptstaatsarch. DE-Wi1 +1781 Muencheberg Senckenberg DEI DE-B15 +1781 Muencheberg Senckenberg DEI DE-B15 +1782 Frankfurt Staedel Museum DE-F10 +1782 Frankfurt Staedel Museum DE-F10 +1783 Bad Homburg Stadtarchiv DE-Hog1 +1783 Bad Homburg Stadtarchiv DE-Hog1 +1784 Mainz NHM Naturhistor. Museum DE-Mz119 +1784 Mainz NHM Naturhistor. Museum DE-Mz119 +1785 Mittweida HS (Level 3) DE-Mit1 +1786 Zwickau HS (Level 3) DE-Zwi2 +1787 Dresden LFA Sachsen (Level 3) DE-D115 +1787 Dresden LFA Sachsen SE3 DE-D115 +1788 Dresden HFM (Level 3) DE-D117 +1789 Dresden SKD (Level 3) DE-D13 +1790 Freiburg MFO (Level 3) DE-Frei3c +1791 Freiburg Caritas Bibl. (Level 3) DE-Frei26 +1792 Freiburg MPI CC (Level 3) DE-Frei85 +1793 Freiburg DVA (Level 3) DE-Frei99 +1794 Freiburg ABI (Level 3) DE-Frei119 +1795 Freiburg Augustiner-Museum (L3) DE-Frei123 +1796 Kehl HS (Level 3) DE-Kh1 +1797 Offenburg HS (Level 3) DE-Ofb1 +1798 Heidelberg PH (Level 3) DE-He76 +1799 Heidelberg MPIL (Level 3) DE-B208 +1800 Stuttgart LABW FE3 DE-1951 +1801 Karlsruhe BVerfG (Level 3) DE-Ka26 +1802 Karlsruhe HfM (Level 3) DE-Ka84 +1803 Karlsruhe ZKM (Level 3) DE-Ka88 +1804 Karlsruhe Kunsthalle (Level 3) DE-Ka23 +1805 Leipzig Bach-Archiv (Level 3) DE-L326 +1806 Leipzig BVerwG (Level 3) DE-B791 +1807 Leipzig HTWK (Level 3) DE-L189 +1808 Leipzig HMT (Level 3) DE-L152 +1809 Mannheim MUHO (Level 3) DE-Mh31 +1810 Mannheim TECHNOSEUM (Lev. 3) DE-Mh34 +1811 Stuttgart LKZB (Level 3) DE-Stg117 +1812 Stuttgart Haus Birkach (Level 3) DE-Stg257 +1813 Stuttgart HDG (Level 3) DE-Stg269 +1814 Stuttgart MH (Level 3) DE-Stg111 +1815 Stuttgart Stadtarchiv (Level 3) DE-Stg277 +1816 Trossingen MH (Level 3) DE-Trs1 +1817 Stuttgart WABW (Level 3) DE-Stg256 +1818 Ludwigsburg DFI (Level 3) DE-Lg3 +1818 Ludwigsburg DFI SE3 DE-Lg3 +1819 Rottenburg DioezesanB (Level 3) DE-Rot2 +1820 Sigmaringen STA (Level 3) DE-Sig1 +1821 Tuebingen JS (Level 3) DE-21-24 +1822 München Goethe-Zentr. (Level 3 DE-M504 +1823 Hamburg MPI Priv. (Level 3) DE-B212 +1824 Kassel documenta Archiv (Lev. 3) DE-Ks17 +1825 Nuernberg GNM (Level 3) DE-N1 +1826 Speyer DHV (Level 3) DE-Sp3 +1827 Hannover Ev.Luth.Landesk.(Lev.3) DE-Hv111 +1828 Berlin GSTA (FE Level 3) DE-B41 +1828 Berlin GSTA (SE Level3) DE-B41 +1829 Berlin SIM (FE Level 3) DE-B763 +1829 Berlin SIM (SE Level 3) DE-B763 +1830 Berlin KB (FE Level 3) DE-B11 +1830 Berlin KB (SE Level 3) DE-B11 +1831 Darmstadt HLM (Level 1) DE-Ds82 +1831 Darmstadt HLM (Level 3) DE-Ds82 +1832 Tübingen Brechtbau-Bib (Lev. 3 DE-21-108 +1833 Reutlingen HSB (Level 3) DE-Rt2 +1834 Mannheim MZES (Level 3) DE-180-4-2 +1835 Goerlitz OLB (Level 3) DE-Gl2 +1836 Dresden HAIT (Level 3) DE-D264 +1837 Esslingen Stadtarchiv (Level 3) DE-Ess4 +1838 Hamburg HS Musik (Level 3) DE-18-258 +1839 Hildesheim UB (Level 3) DE-Hil2 +1840 Erfurt TFM (Level 3) DE-Ef32 +1841 Stuttgart Lindenmuseum (Level 3) DE-Stg5 +1842 Zittau/Goerlitz HS (Level 3) DE-Zi4 +1843 Weimar TLDA FE3 DE-Wim7 +1844 Aurich LandschaftsB (Level 3) DE-Au3 +1845 Berlin AdW B (Level 3) DE-B4 +1846 Berlin AdW GRA (Level 3) DE-B4-556 +1847 MPI Bildungsforsch. (Level 3) DE-B1532 +1848 Center for World Music (Level 3) DE-Hil8 +1849 Hamburger Kunsthalle (Level 3) DE-H13 +1850 Hamburg Ärztl. Verein (Lev. 3) DE-H20 +1851 Museum Arbeit Hamburg (L. 3) DE-H353 +1852 Mus. Hamburg. Geschichte (L. 3) DE-H77 +1853 Rostock Inst.Ostseefor. FE L. 3 DE-Wa1 +1854 Dummerstorf Inst Nutztierbiol. DE-R48 +1855 Hamburg, Bibliothek Geowiss. DE-H144 +1856 Museum am Rothenbaum DE-H16 +1857 Kassel MHK DE-Ks14 +1858 Tuebingen IxTheo (FE Lev. 3) DE-Tue135 +1859 Mannheim IDS WGL DE-Mh39 +1860 Stuttgart Landesmuseum DE-Stg266 +1861 Loerrach Duale Hochschule BW DE-Loer2 +1862 Bremerhaven A.-Wegener-Inst. DE-Bv2 +1863 Hamburg Nordkirchenbibliothek DE-H99 +1864 Freiburg HS Musik Bibl. DE-Frei50 +1865 Saarbruecken Stift. Kulturbesitz DE-Sa27 +1866 Bochum HSG FE3 DE-1866 +1867 Weimar Hauptstaatsarchiv DE-Wim6 +1868 Zuerich, GTA (FE 3) CH-001803-8 +1869 Nuertingen HKT-Bibl. FE3 DE-1869 +1870 Frankfurt/M HFMDK (FE 1) DE-F78 +1870 Frankfurt/M HFMDK (SE1) DE-F78 +1870 Frankfurt/M HFMDK (FE 3) DE-F78 +1871 Hamm ZfW DE-1871 +1873 Fulda Priesterseminar (FE 1) DE-Ful2 +1874 Luebeck MusikHS DE-Lue12 +1875 FFM Frau und Musik Level 3 DE-Ks15 +1876 FFM Stadtgeschichte Level 3 DE-F186 +1877 FFM FDH/FGM Level 3 DE-F25 +1878 FFM ARCHAEOL. MUS. Level 3 DE-F225 +1879 FFM Kunsthandwerksmus. Level 3 DE-F146 +1880 FFM DIF Level 3 DE-Wi17 +1881 FFM DAM Level 3 DE-F219 +1882 OF Klingspor-Mus. Level 3 DE-Of2 +1883 FFM Hist. Mus. Level 3 DE-F207 +1884 FFM Rat f. Formgebung Level 3 DE-Ds108 +1885 NB, Alphabet. Katalog., Red. CH-001821-6 +1885 NB, Alphabet. Katalog. CH-001821-6 +1886 NB, Periodika, Redaktion CH-001821-6 +1886 NB, Periodika CH-001821-6 +1887 NB, e-Helvetica, Redaktion CH-001821-6 +1887 NB, e-Helvetica CH-001821-6 +1888 NB, Helvetica, ONS/SRU RU CH-001821-6 +1889 NB HelveticArchives Red FE1 CH-001821-6 +1889 NB HelveticArchives Red FE3 CH-001821-6 +1923 Normdaten DE-101 +1925 Kalliope-Verbund DE-611 +1926 Lippstadt ZfW DE-1926 +1971 FFM Weltkulturen Mus. SE3 DE-1971 +1973 FFM STAEDELSCHULE Level 3 DE-1973 +1973 FFM Staedelschule SE3 DE-1973 +1975 FFM MUS. MOD. KUNST Level 3 DE-1975 +1978 FFM MUS. KOMMUNIKATION Level 3 DE-1978 +1979 FFM JUED. MUS. Level 3 DE-1979 +1995 Weitere Bibliotheken 1 DE-600 +1995 Weitere Bibliotheken 1 DE-600 +1996 Weitere Bibliotheken 2 DE-600 +1999 Berlin BGK DE-109 +2008 Bonn FIZ Bundeswehr DE-1073 +2100 HG Kreisarchiv (FE Level 1) DE-1962 +2101 MPI Aesthetik (FE Level 1) DE-2177 +2102 Thurgau Kantonsbibl SE1 CH-000086-2 +2102 Thurgau Kantonsbibl FE3 CH-000086-2 +2103 Eisenbibliothek Schlatt (SE 3) CH-000728-7 +2104 NB, e-codices (FE, Lev. 4) CH-001667-5 +2105 ExLibris DE-632 +2106 Berlin Bundesrat FE Level 3 DE-Bo151 +2107 Graz Steiermaerk. LB SE3 AT-LBST +2108 OBVSG SE Level 1 AT-OBVSG +2109 Karlsruhe Badisches Landesmus. DE-Ka23a +2110 Mannheim MARCHIVUM SE3 DE-Mh40 +2111 Gotha Schlossmuseum FE3 DE-G16 +2112 Frankfurt/M CIBEDO DE-2287 +2113 Weil/Rhein vdmb FE3 DE-Wlr1 +2114 Berlin AA SE3 DE-B19 +2115 Freiburg Staatsarchiv FE3 DE-Frei145 +2116 Salem KrsB FE3 DE-Sam1 +2117 Hamburg ZB Behoerden FE3 DE-H216 +2118 Wernigerode Harzbuecherei FE3 DE-We21 +2119 Halle/S Dt Akad Naturfor FE3 DE-Ha2 +2120 Bremen Seeverkehrswirtschaft FE3 DE-Bre2 +2121 Zuerich ETHB FE1 CH-ZuETHB +2122 Bern UB FE1 CH-BeUB +2123 Bremen StB FE3 DE-478 +2124 Bremen Ueberseemuseum FE3 DE-Bre3 +2125 Konstanz BSZ/MusIS FE3 DE-576-3 +2129 Esslingen Kreisarchiv DE-Ess6 +2130 Hamburg HfBK FE3 DE-18-26 +2133 Mainz Stadtarchiv Bibliothek FE1 DE-2397 +2134 Koethen HSB HSA FE3 DE-Kt1 +2135 Bremen ZMT FE3 DE-Bre14 +2138 HSC SE1 DE-2489 +2139 Duesseldorf ArchBiblEvKirche SE3 DE-Due72 +2140 Leipzig Museum Voelkerkunde SE3 DE-L228 +2141 Boppard Ev. Archivstelle SE3 DE-Bpd1 +2142 Berlin DGAP SE3 DE-F131 +2143 Berlin SWP SE3 DE-B1567 +2144 Bonn BICC SE3 DE-2421 +2145 Bonn DIE SE3 DE-B1503 +2146 Frankfurt HSFK SE3 DE-F197 +2147 Hamburg GIGA SE3 DE-H221 +2148 Hamburg IFSH SE3 DE-18-226 +2149 Regensburg RIOS SE3 DE-Re13 +2150 Stuttgart Landesarchiv A1u2 FE3 DE-Stg285 +2151 StadtALB FE3 DE-Lg4 +2152 DHI Rom FE3 DE-2491 +2153 Bautzen Sorbisches Institut SE3 DE-Bn1 +2154 Hamburg Zeitgeschichte FE3 DE-H250 +2155 Bad Oldesloe Kreisarchiv FE3 DE-2410 +2164 Mainz Martinus-Bibl. FE1 DE-Mz2 +2164 Mainz Martinus-Bibl. FE3 DE-Mz2 +2165 Frankfurt/M Fritz Bauer Inst. FE DE-2508 +2166 Rottweil Kreisarchiv FE3 DE-2156 +2167 Karlsruhe HSB FE3 DE-751 +2168 Freiburg PH FE3 DE-Frei129 +2170 Berlin MPI Wiss.-Gesch. FE3 DE-B2226 +2171 Clausthal-Z. UB FE3 DE-104 +2172 Stade Landsch.-Verb. FE3 DE-Sta5 +2173 Halle/S IWH FE3 DE-2173 +2174 Berlin VÖBB Redaktion DE-609 +2174 Berlin VÖBB DE-609 +2175 Leipzig IFL GZB SE3 DE-185 +2182 Stuttgart Hochsch Medien SE3 DE-958 +2184 Kiel digiCULT-Verbund FE3 DE-2436 +2186 Luebeck ZHB FE3 DE-841 +2187 Koeln LVR-Dez. Kultur FE3 DE-2624 +2188 Bonn LVR-LandesMuseum FE3 DE-Bo1 +2189 Bern RISM CH FE1 CH-001555-8 +2189 Bern RISM CH FE3 CH-001555-8 +2190 Hamburg Kuehne Logistics UB FE3 DE-H376 +2192 Gera DHGE FE3 DE-Ga20 +2193 Bingen TH FE1 DE-Bin1 +2193 Bingen TH FE3 DE-Bin1 +2194 Limburg Dioez.-Bibl. FE1 DE-Li2 +2194 Limburg Dioez.-Bibl. FE3 DE-Li2 +2198 Leipzig GWZO FE3 DE-L327 +2199 Furtwangen HS FE3 DE-Fn1 +2200 Tuebingen KirchenmusikHS FE3 DE-Ess3 +2201 Weimar Klassik Stiftung DE-638 +2202 Neubrandenburg HS FE3 DE-519 +2203 Berlin EHB F3 DE-B1556 +2204 Magdeburg MPI DKTS FE3 DE-Ma54 +2206 Hannover NLD FE3 DE-2300 +2207 Frankfurt/M. FSI FE1 DE-30-160 +2208 Berlin KHSB FE3 DE-B2224 +2209 Eutin LB FE3 DE-138 +2210 Magdeburg Kulturhist Museum FE3 DE-Ma33 +2211 Potsdam Zeithist Forsch FE3 DE-Po82 +2212 Leipzig StB FE3 DE-197 +2213 Hannover BGR SE3 DE-Hv112 +2214 Gotha FB FE1 DE-39 +2214 Gotha FB FE3 DE-39 +2214 Gotha FB SE3 DE-39 +2215 Zürich ZB SE1 CH-ZuZBS +2217 Reinach Pro Acta FE1 CH-002093-6 +2218 LEO-BW-REGIONAL RED SE3 DE-641 +2221 Ludwigsburg PH FE3 DE-Lg1 +2222 Sigmaringen LRA FE3 DE-Sig4 +2223 Biberach HBC FE3 DE-949 +2224 Dresden HTW FE3 DE-520 +2225 Dresden Senckenberg Geologie FE3 DE-D29 +2226 Dresden Senckenberg Zoologie FE3 DE-D5 +2227 Dresden Palucca-HS Tanz FE3 DE-2296 +2228 Leipzig Samuel Heinicke Sch FE3 DE-L245 +2230 Bregenz Vorarlberger LB SE1 AT-VLB +2231 Vaduz Liechtensteinische LB SE1 LI-VaLIL +2234 Offenbach Ledermuseum DE-Of1 +2235 Berlin Berlinische Galerie DE-B1586 +3032 Berlin BBF/DIPF DE-B478 +3032 Frankfurt/M DIPF DE-F43 +3110 Lueneburg UB, FE DE-Luen4 +4025 Köln HBZ Elektron. Zsn [WWW 2] DE-WWW2 +4048 Witzenhausen Arch Jugendbew FE1 DE-2355 +7777 GBV (GND) DE-601 +7777 GBV (GND) DE-601 +7777 GBV, FE DE-601 +7777 GBV, FE DE-601 +8007 Nationallizenzen (Paketpaten) DE-600 +8007 Nationallizenzen (Paketpaten) DE-600 +8012 Ev. Landeskirche Wuerttemberg DE-Stg117 +8100 Klagenfurt UB AT-UBK +8109 Linz UB AT-UBL +8110 Salzburg Univ. Mozarteum AT-UBMS +8111 Salzburg UB AT-UBS +8112 Graz UB AT-UBG +8116 Innsbruck UB AT-UBI +8117 Wien Kammer ArbeiterAngest. AT-AKW +8121 Wien Oester. Akad. Wiss. AT-OeAW +8122 Wien Oester. NB AT-OeNB +8123 Wien Akad. bild. Künste SRU RU AT-UBABW +8124 Wien Univ.angew.Kunst AT-UBAW +8125 Wien Univ. Bodenkultur AT-UBBW +8126 Wien Med. Univ. UB AT-UBMUW +8127 Wien Univ. Musik Kunst AT-UBMW +8128 Wien TU UB AT-UBTUW +8129 Wien Veterinaermedizin.Univ.UB AT-UBVUW +8130 Wien Univ. UB AT-UBW +8131 Wien Wirtschaftsuniv. UB AT-UBWW +8132 Wien Verbund Bildung Kultur AT-VBK +8134 Fachhochschule St. Pölten AT-FHSTP +8135 Fachhochschule Burgenland AT-FHB +8136 Wien Bundesmin. f. Finanzen Bibl AT-BMF +8137 Wien Max Perutz Library AT-IMP +8138 Salzburg Stiftung Mozarteum AT-MOZ +8139 Klagenfurt Landesmus. Kärnten AT-LMK +8140 Wien MAK Österr. Mus. f. angew AT-MAKW +8141 Wien Öster. Mus. f. Volkskunde AT-VKW +8142 Graz FH d. Wirtschaft Campus 02 AT-FHWG +8143 Krems Donau Univ. Bib. SRU RU AT-DUK-B +8144 Salzburg FH Bib. Kuchl. Urstein AT-FHS +8145 Wien Mediathek AT-FHCW +8146 Wien FH Studieng Wirtschaftskamm AT-FHWW +8147 Linz Oberöster Landeskulturein AT-OOeLK +8148 Salzburg Paracelsus Med Priv Uni AT-PMUS +8149 Wien Wienbibliothek AT-WBR +8150 Wien Diözesanbibliothek AT-DBW +8151 Wien Jüd. Mus. AT-JWM +8152 Linz Lentos Kunstmuseum AT-LENT +8153 Leoben MUL AT-UBMUL +8154 Admont Benediktinerstift AT-STFTADMONT +8155 GRAZ TU HB AT-UBTUG-HB +8156 Wien Wiesenthal Inst. Holocaust AT-VWIHS +8157 SLSP Zürich CH-ZuSLS +8158 Linz Anton Bruckner Privatuniv. AT-ABPU +8159 Diözese Linz AT-DLI +8160 Wien FH bfi AT-FHBFIW +8161 FH Kärnten Bibliothek AT-FHK +8162 FH Joanneum Bibliothek AT-FHJ +8163 FH Oberösterreich Bibliothek AT-FHOOe +8164 Fachhochschule Technikum Wien AT-FTW +8165 Bundesministerium BMEIA AT-BMA +8166 Diözesanbibliothek Salzburg AT-DBSBG +8167 Diözese St. Pölten AT-DSP +8168 Salzburger Landesarchiv AT-SLA +8169 Zisterzienserstift Heiligenkreuz AT-STFTHLGKR-BIB +8170 MODUL University Vienna AT-MUV +8171 New Design University AT-NDU +8172 Albertina Wien AT-GSA +8173 Diözese Gurk-Klagenfurt AT-DBGK +8174 Sigmund-Freud-Privatstiftung AT-SFP +8175 Galerie Belvedere, Bibliothek AT-OeGW +8176 Burgenland PH AT-PHB +8177 Wien AT Parlamentsbibliothek AT-PARL +8178 Wien BMI SIAK Bibliothek AT-SIAK +8179 Kufstein FH, Bibliothek AT-FKU +8180 Graz KUG UB AT-UBMG +8181 Salzburg Museum AT-MCA +8182 Graz Medizinische Universität AT-UBMUG +8478 Luzern ZHB SE1 CH-LnZHB +8500 OBVSG Wien AT-OBV +8508 Linz UB künst. indust. Gestal. AT-UBGL +8897 München Bay. Verdienstorden DE-2045 +8999 Muenchen BVB-Zentrale DE-12 +9001 ZR Titel DE-600 +9001 ZR Titel DE-600 +9001 SBB ZR Titel, FE Red DE-600 +9002 ZR GKD DE-1 +9002 Berlin SBB ZR GKD FE1 DE-1 +9003 GKD-Redaktion DDB Frankfurt DE-101 +9004 GKD-Redaktion BSB DE-12 +9005 GKD-Redaktion Oesterreich AT-OBV +9009 Offline GKD BSZ DE-576 +9019 GKD-Redaktion DDB Leipzig DE-101 +9019 GKD-Redaktion DDB Leipzig DE-101 +9999 OFFLINE DE-101 + + + + diff --git a/conf/hebisMarc2lobid-transformation/maps/rpb-spatial.ttl b/conf/hebisMarc2lobid-transformation/maps/rpb-spatial.ttl new file mode 100644 index 0000000..d258ffc --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/rpb-spatial.ttl @@ -0,0 +1,22162 @@ +@prefix : . +@prefix dct: . +@prefix skos: . +@prefix vann: . +@prefix wd: . +@prefix foaf: . + +:n235031480104 a skos:Concept ; + skos:broader :n23503148 ; + skos:inScheme ; + skos:prefLabel "Scharzhofberg"@de . + +:n33705073 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Siebeldingen"@de . + +:n138010030200 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Limbach"@de . + +:n131042110102 a skos:Concept ; + skos:broader :n13104211 ; + skos:inScheme ; + skos:prefLabel "Wabern"@de . + +:n07 a skos:Concept ; + skos:broader :n1 ; + skos:inScheme ; + skos:prefLabel "Pfalz"@de . + +:n14302215 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Dreifelden"@de . + +:n33702018 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Dierbach"@de . + +:n14004030 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Dillendorf"@de . + +:n23506078 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Longuich"@de . + +:n14107137 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Welterod"@de . + +:n33100003 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Alzey, Stadt"@de . + +:n235070690105 a skos:Concept ; + skos:broader :n23507069 ; + skos:inScheme ; + skos:prefLabel "Kimmlingerhof"@de . + +:n312000000300 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Einsiedlerhof (Ortsbezirk)"@de . + +:n131015010200 a skos:Concept ; + skos:broader :n13101501 ; + skos:inScheme ; + skos:prefLabel "Lückenbach (Ortsbezirk)"@de . + +:n34001029 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Ludwigswinkel"@de . + +:n23301079 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Wallenborn"@de . + +:n33207012 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Ebertsheim"@de . + +:n33901 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Rhein-Nahe, Verbandsgemeinde"@de . + +:n339010030203 a skos:Concept ; + skos:broader :n33901003 ; + skos:inScheme ; + skos:prefLabel "Nauheim"@de . + +:n14103077 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Laurenburg"@de . + +:n131010370202 a skos:Concept ; + skos:broader :n13101037 ; + skos:inScheme ; + skos:prefLabel "Hochacht"@de . + +:n133000060659 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Trombacherhof"@de . + +:n14309224 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Gemünden"@de . + +:n13210100 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Schürdt"@de . + +:n14111126 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Schönborn"@de . + +:n13210094 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Rettersen"@de . + +:n33702076 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Steinfeld"@de . + +:n13707224 a skos:Concept ; + skos:broader :n13707 ; + skos:inScheme ; + skos:prefLabel "Urbar"@de . + +:n13101085 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Winnerath"@de . + +:n13210015 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Bürdenbach"@de . + +:n231010810109 a skos:Concept ; + skos:broader :n23101081 ; + skos:inScheme ; + skos:prefLabel "Siebenborn"@de . + +:n14107116 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Rettershain"@de . + +:n33501201 a skos:Concept ; + skos:broader :n33501 ; + skos:inScheme ; + skos:prefLabel "Lambsborn"@de . + +:n235075010400 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Möhn (Ortsbezirk)"@de . + +:n33201039 a skos:Concept ; + skos:broader :n33201 ; + skos:inScheme ; + skos:prefLabel "Niederkirchen bei Deidesheim"@de . + +:n13703079 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Nachtsheim"@de . + +:n335100290400 a skos:Concept ; + skos:broader :n33510029 ; + skos:inScheme ; + skos:prefLabel "Wörsbach (Ortsbezirk)"@de . + +:n13702080 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Naunheim"@de . + +:n137092120313 a skos:Concept ; + skos:broader :n13709212 ; + skos:inScheme ; + skos:prefLabel "Sürzerhof"@de . + +:n335100350114 a skos:Concept ; + skos:broader :n33510035 ; + skos:inScheme ; + skos:prefLabel "Münchschwanderhof"@de . + +:n137072260108 a skos:Concept ; + skos:broader :n13707226 ; + skos:inScheme ; + skos:prefLabel "Mallendarerberg, Hof"@de . + +:n14302252 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Kundert"@de . + +:n33702055 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Niederhorbach"@de . + +:n33705031 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Göcklingen"@de . + +:n132100640101 a skos:Concept ; + skos:broader :n13210064 ; + skos:inScheme ; + skos:prefLabel "Heuberg"@de . + +:n13501056 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Lütz"@de . + +:n33908202 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Wolfsheim"@de . + +:n4058411n2 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Südeifel"@de . + +:n333020380102 a skos:Concept ; + skos:broader :n33302038 ; + skos:inScheme ; + skos:prefLabel "Göllheimer Häuschen (T.a.Ortsbezirk Rosenthal)"@de . + +:n235071110200 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Godendorf (Ortsbezirk)"@de . + +:n13809010 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Datzeroth"@de . + +:n138000450400 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Gladbach (Ortsbezirk)"@de . + +:n141091080101 a skos:Concept ; + skos:broader :n14109108 ; + skos:inScheme ; + skos:prefLabel "Büchelborn"@de . + +:n4031415n7 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Regierungsbezirk Koblenz (1946-1999)"@de . + +:n233015010800 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Weiersbach (Ortsbezirk)"@de . + +:n33806009 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Großniedesheim"@de . + +:n23207107 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Preist"@de . + +:n235071510107 a skos:Concept ; + skos:broader :n23507151 ; + skos:inScheme ; + skos:prefLabel "Rodt (Ortsbezirk)"@de . + +:n132060130101 a skos:Concept ; + skos:broader :n13206013 ; + skos:inScheme ; + skos:prefLabel "Mühlental"@de . + +:n332000020400 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Ungstein (Ortsbezirk)"@de . + +:n23109020 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Diefenbach"@de . + +:n14306285 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Rehe"@de . + +:n135030830103 a skos:Concept ; + skos:broader :n13503083 ; + skos:inScheme ; + skos:prefLabel "Furth"@de . + +:n23306239 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Schüller"@de . + +:n333070790103 a skos:Concept ; + skos:broader :n33307079 ; + skos:inScheme ; + skos:prefLabel "Wolfsmühle"@de . + +:n312000002001 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Bahnheim"@de . + +:n33907033 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Köngernheim"@de . + +:n23 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Oberrheinisches Tiefland / Nord"@de . + +:n33610098 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Theisbergstegen"@de . + +:n132081170101 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Altenbrendebach"@de . + +:n33608104 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Wiesweiler"@de . + +:n13104502 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Kempenich"@de . + +:n13804 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Linz a.Rh., Verbandsgemeinde"@de . + +:n13210052 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Hilgenroth"@de . + +:n4666501n8 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Brohltal"@de . + +:n133092010101 a skos:Concept ; + skos:broader :n13309201 ; + skos:inScheme ; + skos:prefLabel "Rudolfshaus"@de . + +:n235010300101 a skos:Concept ; + skos:broader :n23501030 ; + skos:inScheme ; + skos:prefLabel "Abtei"@de . + +:n132070450102 a skos:Concept ; + skos:broader :n13207045 ; + skos:inScheme ; + skos:prefLabel "Hinhausen"@de . + +:n332070420101 a skos:Concept ; + skos:broader :n33207042 ; + skos:inScheme ; + skos:prefLabel "Boßweiler"@de . + +:n138010440216 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Kodden (ehem.Gem.Elsaffthal)"@de . + +:n33608019 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Einöllen"@de . + +:n34001045 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Schönau (Pfalz)"@de . + +:n23208313 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Steinborn"@de . + +:n23506015 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Detzem"@de . + +:n33402021 a skos:Concept ; + skos:broader :n33402 ; + skos:inScheme ; + skos:prefLabel "Neuburg am Rhein"@de . + +:n143080110200 a skos:Concept ; + skos:broader :n14308011 ; + skos:inScheme ; + skos:prefLabel "Pütschbach"@de . + +:n33206 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Wachenheim an der Weinstraße, Verbandsgemeinde"@de . + +:n232012850100 a skos:Concept ; + skos:broader :n23201285 ; + skos:inScheme ; + skos:prefLabel "Merkeshausen"@de . + +:n23301016 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Demerath"@de . + +:n141091220104 a skos:Concept ; + skos:broader :n14109122 ; + skos:inScheme ; + skos:prefLabel "Sauerburg"@de . + +:n13505068 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Neef"@de . + +:n23208228 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Gransdorf"@de . + +:n33306075 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Steinbach am Donnersberg"@de . + +:n4126432n0 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Mittelrheintal"@de . + +:n33907012 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Dienheim"@de . + +:n33610077 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Pfeffelbach"@de . + +:n14103014 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Birlenbach"@de . + +:n13306021 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Dalberg"@de . + +:n13210031 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Fiersbach"@de . + +:n231010700600 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Oberkleinich (Ortsbezirk)"@de . + +:n33702013 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Böllenborn"@de . + +:n13101022 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Fuchshofen"@de . + +:n335010030100 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Bruchmühlbach"@de . + +:n138090710200 a skos:Concept ; + skos:broader :n13809071 ; + skos:inScheme ; + skos:prefLabel "Jahrsfeld"@de . + +:n23301074 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Udler"@de . + +:n14107047 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Gemmerich"@de . + +:n133000060654 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Burg Ebernburg"@de . + +:n33702071 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Schweigen-Rechtenbach"@de . + +:n13501072 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Pommern"@de . + +:n143040480400 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Ettersdorf (Ortsbezirk)"@de . + +:n14111036 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Eisighofen"@de . + +:n33307202 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Reichsthal"@de . + +:n13101001 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Adenau, Stadt"@de . + +:n231010810104 a skos:Concept ; + skos:broader :n23101081 ; + skos:inScheme ; + skos:prefLabel "Laymühle"@de . + +:n23207123 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Speicher, Stadt"@de . + +:n337060700102 a skos:Concept ; + skos:broader :n33706070 ; + skos:inScheme ; + skos:prefLabel "Kropsburg, Gastst."@de . + +:n333040460102 a skos:Concept ; + skos:broader :n33304046 ; + skos:inScheme ; + skos:prefLabel "Pfaffenloch"@de . + +:n132080110122 a skos:Concept ; + skos:broader :n13208011 ; + skos:inScheme ; + skos:prefLabel "Steckenstein"@de . + +:n143082630102 a skos:Concept ; + skos:broader :n14308263 ; + skos:inScheme ; + skos:prefLabel "Langwiesen"@de . + +:n4490539n7 a skos:Concept ; + skos:broader :n11 ; + skos:inScheme ; + skos:prefLabel "Aartal"@de . + +:n13703074 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Monreal"@de . + +:n132070760105 a skos:Concept ; + skos:broader :n13207076 ; + skos:inScheme ; + skos:prefLabel "Hahnhof"@de . + +:n14100075 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Lahnstein, große kreisangehörige Stadt"@de . + +:n137072260103 a skos:Concept ; + skos:broader :n13707226 ; + skos:inScheme ; + skos:prefLabel "Berg Schönstatt"@de . + +:n332050140108 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Iggelbach"@de . + +:n140091120200 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Langscheid (Ortsbezirk)"@de . + +:n33306033 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Imsbach"@de . + +:n14009036 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Emmelshausen, Stadt"@de . + +:n332070010105 a skos:Concept ; + skos:broader :n33207001 ; + skos:inScheme ; + skos:prefLabel "Höningen"@de . + +:n131000070601 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Green"@de . + +:n33608035 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Hausweiler"@de . + +:n33705 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Landau-Land, Verbandsgemeinde"@de . + +:n23503055 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Kanzem"@de . + +:n133110950103 a skos:Concept ; + skos:broader :n13311095 ; + skos:inScheme ; + skos:prefLabel "Füllenbacherhof"@de . + +:n231005020900 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Hundheim (Ortsbezirk)"@de . + +:n14107084 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Marienfels"@de . + +:n133090410100 a skos:Concept ; + skos:broader :n13309041 ; + skos:inScheme ; + skos:prefLabel "Heimberg"@de . + +:n13401051 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Leitzweiler"@de . + +:n132080110101 a skos:Concept ; + skos:broader :n13208011 ; + skos:inScheme ; + skos:prefLabel "Blickhausen"@de . + +:n232062310200 a skos:Concept ; + skos:broader :n23206231 ; + skos:inScheme ; + skos:prefLabel "Hollnich"@de . + +:n14103030 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Dörnberg"@de . + +:n137030600102 a skos:Concept ; + skos:broader :n13703060 ; + skos:inScheme ; + skos:prefLabel "Sankt Jost"@de . + +:n137020890112 a skos:Concept ; + skos:broader :n13702089 ; + skos:inScheme ; + skos:prefLabel "Nettesürsch"@de . + +:n319000000900 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Leiselheim (Ortsbezirk)"@de . + +:n14111073 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Klingelbach"@de . + +:n33703028 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Gleisweiler"@de . + +:n132100820300 a skos:Concept ; + skos:broader :n13210082 ; + skos:inScheme ; + skos:prefLabel "Rimbach"@de . + +:n13311110 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Warmsroth"@de . + +:n337070410200 a skos:Concept ; + skos:broader :n33707041 ; + skos:inScheme ; + skos:prefLabel "Oberhochstadt"@de . + +:n13300006 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Bad Kreuznach, große kreisangehörige Stadt"@de . + +:n33608014 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Deimberg"@de . + +:n13311025 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Dörrebach"@de . + +:n132081170409 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Holschbach"@de . + +:n14107063 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Hunzel"@de . + +:n33201 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Deidesheim, Verbandsgemeinde"@de . + +:n23301011 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Brockscheid"@de . + +:n137000030301 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Bad Tönisstein, Kuranlage und Hotel"@de . + +:n141000750200 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Oberlahnstein"@de . + +:n13402029 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Gimbweiler"@de . + +:n311000000200 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Eppstein (Ortsbezirk)"@de . + +:n131000700300 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Oberwinter (T.a. Ortsbezirk 3)"@de . + +:n132091110101 a skos:Concept ; + skos:broader :n13209111 ; + skos:inScheme ; + skos:prefLabel "Dasberg"@de . + +:n131042020303 a skos:Concept ; + skos:broader :n13104202 ; + skos:inScheme ; + skos:prefLabel "Buchholz"@de . + +:n33608072 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Oberweiler im Tal"@de . + +:n13209025 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Elkenroth"@de . + +:n132070370158 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Steeg"@de . + +:n235010930103 a skos:Concept ; + skos:broader :n23501093 ; + skos:inScheme ; + skos:prefLabel "Schmelz"@de . + +:n34001502 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Bundenthal"@de . + +:n137095040102 a skos:Concept ; + skos:broader :n13709504 ; + skos:inScheme ; + skos:prefLabel "Lehmerhöfe"@de . + +:n332020190103 a skos:Concept ; + skos:broader :n33202019 ; + skos:inScheme ; + skos:prefLabel "Lindemannsruhe"@de . + +:n332000020204 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Weilach, Forsthaus"@de . + +:n111000000600 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Güls (Ortsbezirk 4)"@de . + +:n13801080 a skos:Concept ; + skos:broader :n13801 ; + skos:inScheme ; + skos:prefLabel "Buchholz (Westerwald)"@de . + +:n331030480100 a skos:Concept ; + skos:broader :n33103048 ; + skos:inScheme ; + skos:prefLabel "Kriegsheim"@de . + +:n339000050300 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Büdesheim"@de . + +:n33202049 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Weisenheim am Berg"@de . + +:n13210 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Altenkirchen-Flammersfeld, Verbandsgemeinde"@de . + +:n138010770205 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Stockhausen"@de . + +:n336100980100 a skos:Concept ; + skos:broader :n33610098 ; + skos:inScheme ; + skos:prefLabel "Godelhausen"@de . + +:n13703011 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Bermel"@de . + +:n138030310102 a skos:Concept ; + skos:broader :n13803031 ; + skos:inScheme ; + skos:prefLabel "Isenburg, Sdlg."@de . + +:n33610051 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Körborn"@de . + +:n235030680502 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Löllberg"@de . + +:n333075020100 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Dörnbach (Ortsbezirk)"@de . + +:n140091330203 a skos:Concept ; + skos:broader :n14009133 ; + skos:inScheme ; + skos:prefLabel "Rheinfels, Burgschenke"@de . + +:n33101050 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Nack"@de . + +:n13206028 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Etzbach"@de . + +:n233015010100 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Boverath (Ortsbezirk)"@de . + +:n131000770300 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Koisdorf (Ortsbezirk)"@de . + +:n320000000300 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Ernstweiler"@de . + +:n33202028 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Kallstadt"@de . + +:n140090840103 a skos:Concept ; + skos:broader :n14009084 ; + skos:inScheme ; + skos:prefLabel "Sauerbrunnen"@de . + +:n134050410101 a skos:Concept ; + skos:broader :n13405041 ; + skos:inScheme ; + skos:prefLabel "Siedlung Wassergall"@de . + +:n132070760100 a skos:Concept ; + skos:broader :n13207076 ; + skos:inScheme ; + skos:prefLabel "Hüttseifen"@de . + +:n13301106 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Volxheim"@de . + +:n332050140103 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Erlenbach (ehem.Gem.Wilgartswiesen)"@de . + +:n4607820n4 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Bingerwald"@de . + +:n13502045 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Kaisersesch, Stadt"@de . + +:n14009031 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Dörth"@de . + +:n23108117 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Sehlem"@de . + +:n13104 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Brohltal, Verbandsgemeinde"@de . + +:n33608030 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Glanbrücken"@de . + +:n333060200104 a skos:Concept ; + skos:broader :n33306020 ; + skos:inScheme ; + skos:prefLabel "Wambacherhof"@de . + +:n132060100101 a skos:Concept ; + skos:broader :n13206010 ; + skos:inScheme ; + skos:prefLabel "Dünebusch"@de . + +:n137000680400 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Mayen"@de . + +:n14111010 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de . + +:n138010800200 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Griesenbach"@de . + +:n13206007 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Birkenbeul"@de . + +:n332060460104 a skos:Concept ; + skos:broader :n33206046 ; + skos:inScheme ; + skos:prefLabel "Mundhardterhof"@de . + +:n13805013 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Döttesfeld"@de . + +:n232000180500 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Matzen (Ortsbezirk)"@de . + +:n33908022 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Grolsheim"@de . + +:n211000001506 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Sievenicherhof"@de . + +:n337050400200 a skos:Concept ; + skos:broader :n33705040 ; + skos:inScheme ; + skos:prefLabel "Klingen"@de . + +:n232051020105 a skos:Concept ; + skos:broader :n23205102 ; + skos:inScheme ; + skos:prefLabel "Rußdorf"@de . + +:n111000001700 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Oberwerth"@de . + +:n33508030 a skos:Concept ; + skos:broader :n33508 ; + skos:inScheme ; + skos:prefLabel "Niedermohr"@de . + +:n33105062 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Stein-Bockenheim"@de . + +:n335020040100 a skos:Concept ; + skos:broader :n33502004 ; + skos:inScheme ; + skos:prefLabel "Alsenborn"@de . + +:n14310 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Wirges, Verbandsgemeinde"@de . + +:n33609008 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Börsborn"@de . + +:n140032020100 a skos:Concept ; + skos:broader :n14003202 ; + skos:inScheme ; + skos:prefLabel "Dommershausen (Ortsbezirk)"@de . + +:n13402024 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Ellweiler"@de . + +:n317000000600 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Windsberg (Ortsbezirk)"@de . + +:n337010010102 a skos:Concept ; + skos:broader :n33701001 ; + skos:inScheme ; + skos:prefLabel "St. Johann"@de . + +:n13310009 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Bärweiler"@de . + +:n137092070105 a skos:Concept ; + skos:broader :n13709207 ; + skos:inScheme ; + skos:prefLabel "Kondertal"@de . + +:n33703002 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Altdorf"@de . + +:n13206044 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Hamm (Sieg)"@de . + +:n13209020 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Dickendorf"@de . + +:n13102011 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Berg"@de . + +:n132070370153 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Schmalenbachsmühle"@de . + +:n33509 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Weilerbach, Verbandsgemeinde"@de . + +:n23208133 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Wettlingen"@de . + +:n23108069 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Klausen"@de . + +:n14308316 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Zehnhausen bei Wallmerod"@de . + +:n211000000401 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Duisburgerhof"@de . + +:n13805050 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Niederwambach"@de . + +:n23306038 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Kerpen (Eifel)"@de . + +:n23206305 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Schwirzheim"@de . + +:n13310067 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Monzingen"@de . + +:n23208048 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Heilenbach"@de . + +:n33307043 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Mannweiler-Cölln"@de . + +:n132070630609 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Winnersbach"@de . + +:n14003095 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Michelbach"@de . + +:n13709207 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Dieblich"@de . + +:n14310073 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Staudt"@de . + +:n13301037 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Hackenheim"@de . + +:n33106019 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Ensheim"@de . + +:n132070370132 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Krottorf"@de . + +:n339010440103 a skos:Concept ; + skos:broader :n33901044 ; + skos:inScheme ; + skos:prefLabel "Winzberg"@de . + +:n13402061 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Nohen"@de . + +:n231005020200 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Elzerath (Ortsbezirk)"@de . + +:n23100502 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Morbach"@de . + +:n143092300104 a skos:Concept ; + skos:broader :n14309230 ; + skos:inScheme ; + skos:prefLabel "Witzelbach"@de . + +:n337015010300 a skos:Concept ; + skos:broader :n33701501 ; + skos:inScheme ; + skos:prefLabel "Gräfenhausen (Ortsbezirk)"@de . + +:n13803201 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Marienhausen"@de . + +:n23208027 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Dudeldorf"@de . + +:n134020850105 a skos:Concept ; + skos:broader :n13402085 ; + skos:inScheme ; + skos:prefLabel "Winnenberg"@de . + +:n4115441n1 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Ösling"@de . + +:n235081420102 a skos:Concept ; + skos:broader :n23508142 ; + skos:inScheme ; + skos:prefLabel "Mühlscheid"@de . + +:n33707014 a skos:Concept ; + skos:broader :n33707 ; + skos:inScheme ; + skos:prefLabel "Bornheim"@de . + +:n33704038 a skos:Concept ; + skos:broader :n33704 ; + skos:inScheme ; + skos:prefLabel "Herxheim bei Landau (Pfalz)"@de . + +:n13502040 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Hauroth"@de . + +:n33304046 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Mörsfeld"@de . + +:n23508104 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Palzem"@de . + +:n23501153 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Züsch"@de . + +:n23508098 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Ockfen"@de . + +:n319000000200 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Abenheim (Ortsbezirk)"@de . + +:n33502015 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Hochspeyer"@de . + +:n13405049 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Krummenau"@de . + +:n34006025 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Horbach"@de . + +:n333030180101 a skos:Concept ; + skos:broader :n33303018 ; + skos:inScheme ; + skos:prefLabel "Wiesenmühle"@de . + +:n138010030307 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Heckenhahn"@de . + +:n23504044 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Herl"@de . + +:n338000170106 a skos:Concept ; + skos:broader :n33800017 ; + skos:inScheme ; + skos:prefLabel "Rehhütte"@de . + +:n23101076 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Lösnich"@de . + +:n134000450600 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Kirchenbollenbach"@de . + +:n135050920101 a skos:Concept ; + skos:broader :n13505092 ; + skos:inScheme ; + skos:prefLabel "Barl"@de . + +:n137030360101 a skos:Concept ; + skos:broader :n13703036 ; + skos:inScheme ; + skos:prefLabel "Kreuznick"@de . + +:n33610 a skos:Concept ; + skos:broader :n336 ; + skos:inScheme ; + skos:prefLabel "Kusel-Altenglan, Verbandsgemeinde"@de . + +:n13502502 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Leienkaul"@de . + +:n33509024 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Mackenbach"@de . + +:n33609082 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Rehweiler"@de . + +:n33106056 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Partenheim"@de . + +:n13503018 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Büchel"@de . + +:n211000000900 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Irsch (Ortsbezirk 15)"@de . + +:n132060380104 a skos:Concept ; + skos:broader :n13206038 ; + skos:inScheme ; + skos:prefLabel "Opsen"@de . + +:n14109136 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Weisel"@de . + +:n137092230200 a skos:Concept ; + skos:broader :n13709223 ; + skos:inScheme ; + skos:prefLabel "Oberspay"@de . + +:n23108085 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Minderlittgen"@de . + +:n336 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Kusel, Landkreis"@de . + +:n13405028 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Gerach"@de . + +:n336080730101 a skos:Concept ; + skos:broader :n33608073 ; + skos:inScheme ; + skos:prefLabel "Oberweiler"@de . + +:n34003028 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Lemberg"@de . + +:n33102002 a skos:Concept ; + skos:broader :n33102 ; + skos:inScheme ; + skos:prefLabel "Alsheim"@de . + +:n23306054 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Oberehe-Stroheich"@de . + +:n23206321 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Wawern"@de . + +:n33404004 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Erlenbach bei Kandel"@de . + +:n13310083 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Rehborn"@de . + +:n23501047 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Hinzert-Pölert"@de . + +:n339070430200 a skos:Concept ; + skos:broader :n33907043 ; + skos:inScheme ; + skos:prefLabel "Schwabsburg (Ortsbezirk)"@de . + +:n23205088 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Neuerburg, Stadt"@de . + +:n135010860103 a skos:Concept ; + skos:broader :n13501086 ; + skos:inScheme ; + skos:prefLabel "Valwigerberg"@de . + +:n23304226 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Mosbruch"@de . + +:n338000050200 a skos:Concept ; + skos:broader :n33800005 ; + skos:inScheme ; + skos:prefLabel "Iggelheim"@de . + +:n13709223 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Spay"@de . + +:n23206236 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Heckhuscheid"@de . + +:n131000070400 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Heimersheim (Ortsbezirk)"@de . + +:n13405086 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Sonnschied"@de . + +:n231005021300 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Morscheid-Riedenburg (Ortsbezirk)"@de . + +:n131020390200 a skos:Concept ; + skos:broader :n13102039 ; + skos:inScheme ; + skos:prefLabel "Staffel"@de . + +:n335080300300 a skos:Concept ; + skos:broader :n33508030 ; + skos:inScheme ; + skos:prefLabel "Schrollbach"@de . + +:n131020400103 a skos:Concept ; + skos:broader :n13102040 ; + skos:inScheme ; + skos:prefLabel "Hürnig"@de . + +:n14310010 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Dernbach (Westerwald)"@de . + +:n14109115 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Reitzenhain"@de . + +:n131000900400 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Gelsdorf (Ortsbezirk)"@de . + +:n34008209 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Großbundenbach"@de . + +:n14307078 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Vielbach"@de . + +:n23306033 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Hohenfels-Essingen"@de . + +:n23206300 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Rommersheim"@de . + +:n319000001300 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Rheindürkheim (Ortsbezirk)"@de . + +:n13310062 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Martinstein"@de . + +:n235010450104 a skos:Concept ; + skos:broader :n23501045 ; + skos:inScheme ; + skos:prefLabel "Höfchen"@de . + +:n232082280101 a skos:Concept ; + skos:broader :n23208228 ; + skos:inScheme ; + skos:prefLabel "Biermühle"@de . + +:n23208043 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Gindorf"@de . + +:n23205067 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Körperich"@de . + +:n23304205 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Bodenbach"@de . + +:n231085030300 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Niederkail (Ortsbezirk)"@de . + +:n14110128 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Seelbach"@de . + +:n33701078 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Völkersweiler"@de . + +:n33304062 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Rittersheim"@de . + +:n111000000903 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Kondertal"@de . + +:n13301032 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Fürfeld"@de . + +:n13405065 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Oberkirn"@de . + +:n140040670102 a skos:Concept ; + skos:broader :n14004067 ; + skos:inScheme ; + skos:prefLabel "Denzen"@de . + +:n13104211 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Weibern"@de . + +:n23101092 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Neumagen-Dhron"@de . + +:n23205131 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Wallendorf"@de . + +:n23201229 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Großkampenberg"@de . + +:n233010340102 a skos:Concept ; + skos:broader :n23301034 ; + skos:inScheme ; + skos:prefLabel "Immerathermühle"@de . + +:n23506207 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Trittenheim"@de . + +:n137092210103 a skos:Concept ; + skos:broader :n13709221 ; + skos:inScheme ; + skos:prefLabel "Hünenfeld"@de . + +:n23501005 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Bescheid"@de . + +:n33509040 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Rodenbach"@de . + +:n138090530103 a skos:Concept ; + skos:broader :n13809053 ; + skos:inScheme ; + skos:prefLabel "Oberhonnefeld"@de . + +:n4377902n5 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Mittelrheintal / Nord"@de . + +:n13503034 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Gevenich"@de . + +:n111000001000 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Kesselheim (Ortsbezirk 5)"@de . + +:n13405044 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Hottenbach"@de . + +:n33502010 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Frankenstein"@de . + +:n132070630100 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Freusburg (Ortsbezirk)"@de . + +:n23201287 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Olmscheid"@de . + +:n143022670102 a skos:Concept ; + skos:broader :n14302267 ; + skos:inScheme ; + skos:prefLabel "Hanwerth"@de . + +:n138010030302 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Altenhofen"@de . + +:n340020570104 a skos:Concept ; + skos:broader :n34002057 ; + skos:inScheme ; + skos:prefLabel "Hofstätten (Ortsbezirk)"@de . + +:n33404020 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Minfeld"@de . + +:n23108022 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Dierscheid"@de . + +:n23101071 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Kommen"@de . + +:n23205110 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Rodershausen"@de . + +:n14008 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Simmern-Rheinböllen, Verbandsgemeinde"@de . + +:n14308263 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Meudt"@de . + +:n23304242 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Uersfeld"@de . + +:n13310020 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Callbach"@de . + +:n23205025 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Dauwelshausen"@de . + +:n340090370101 a skos:Concept ; + skos:broader :n34009037 ; + skos:inScheme ; + skos:prefLabel "Staffelhof"@de . + +:n235030680301 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Konzerbrück"@de . + +:n333070770101 a skos:Concept ; + skos:broader :n33307077 ; + skos:inScheme ; + skos:prefLabel "Mausmühle"@de . + +:n141095010200 a skos:Concept ; + skos:broader :n14109501 ; + skos:inScheme ; + skos:prefLabel "Hinterwald (Ortsbezirk)"@de . + +:n316000000500 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Gimmeldingen (Ortsbezirk)"@de . + +:n23508072 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Lampaden"@de . + +:n132100650101 a skos:Concept ; + skos:broader :n13210065 ; + skos:inScheme ; + skos:prefLabel "Epgert"@de . + +:n23108080 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Manderscheid, Stadt"@de . + +:n331 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Alzey-Worms, Landkreis"@de . + +:n33207029 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Kindenheim"@de . + +:n235070010101 a skos:Concept ; + skos:broader :n23507001 ; + skos:inScheme ; + skos:prefLabel "Hohensonne"@de . + +:n138090060113 a skos:Concept ; + skos:broader :n13809006 ; + skos:inScheme ; + skos:prefLabel "Nassen"@de . + +:n33401023 a skos:Concept ; + skos:broader :n33401 ; + skos:inScheme ; + skos:prefLabel "Ottersheim bei Landau"@de . + +:n13306107 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Waldböckelheim"@de . + +:n23108001 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Altrich"@de . + +:n13309077 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Otzweiler"@de . + +:n14307015 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Ellenhausen"@de . + +:n23304221 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Kötterichen"@de . + +:n14303040 a skos:Concept ; + skos:broader :n14303 ; + skos:inScheme ; + skos:prefLabel "Kammerforst"@de . + +:n14304039 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Kadenbach"@de . + +:n132060140101 a skos:Concept ; + skos:broader :n13206014 ; + skos:inScheme ; + skos:prefLabel "Haderschen"@de . + +:n14004111 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Ober Kostenz"@de . + +:n13208117 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Wissen, Stadt"@de . + +:n23206231 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Habscheid"@de . + +:n23205004 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Ammeldingen an der Our"@de . + +:n13405081 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Sensweiler"@de . + +:n33103054 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Offstein"@de . + +:n4283491n0 a skos:Concept ; + skos:broader :n18 ; + skos:inScheme ; + skos:prefLabel "Oberes Nahebergland"@de . + +:n23201245 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Irrhausen"@de . + +:n23200018 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Bitburg, Stadt"@de . + +:n14008144 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Simmern / Hunsrück, Stadt"@de . + +:n111000002100 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Stolzenfels (Ortsbezirk 8)"@de . + +:n335080160101 a skos:Concept ; + skos:broader :n33508016 ; + skos:inScheme ; + skos:prefLabel "Elschbacherhof"@de . + +:n14301270 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Neunkhausen"@de . + +:n14302269 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Müschenbach"@de . + +:n140030090500 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Völkenroth (Ortsbezirk)"@de . + +:n13405060 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Niederwörresbach"@de . + +:n13207012 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Brachbach"@de . + +:n132060070103 a skos:Concept ; + skos:broader :n13206007 ; + skos:inScheme ; + skos:prefLabel "Weißenbrüchen"@de . + +:n14109083 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Lykershausen"@de . + +:n132100480103 a skos:Concept ; + skos:broader :n13210048 ; + skos:inScheme ; + skos:prefLabel "Helmerotherhöhe"@de . + +:n14008123 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Reich"@de . + +:n132080540105 a skos:Concept ; + skos:broader :n13208054 ; + skos:inScheme ; + skos:prefLabel "Niederhövels"@de . + +:n235030680800 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Oberemmel (Ortsbezirk 5)"@de . + +:n14109004 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Auel"@de . + +:n23205041 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Gemünd"@de . + +:n232085010102 a skos:Concept ; + skos:broader :n23208501 ; + skos:inScheme ; + skos:prefLabel "Koosbüsch (Ortsbezirk)"@de . + +:n13210069 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Mehren"@de . + +:n13809006 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Breitscheid"@de . + +:n337020720102 a skos:Concept ; + skos:broader :n33702072 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n133000060300 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Ippesheim (Ortsbezirk)"@de . + +:n137072240101 a skos:Concept ; + skos:broader :n13707224 ; + skos:inScheme ; + skos:prefLabel "Besselich"@de . + +:n34004038 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Rodalben, Stadt"@de . + +:n140005011001 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Fleckertshöhe"@de . + +:n140030100200 a skos:Concept ; + skos:broader :n14003010 ; + skos:inScheme ; + skos:prefLabel "Frankweiler (Ortsbezirk)"@de . + +:n211000000200 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Biewer (T.a. Ortsbezirk 6)"@de . + +:n33511047 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Trippstadt"@de . + +:n141101030102 a skos:Concept ; + skos:broader :n14110103 ; + skos:inScheme ; + skos:prefLabel "Langenau"@de . + +:n140005010400 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Herschwiesen (Ortsbezirk)"@de . + +:n14003 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Kastellaun, Verbandsgemeinde"@de . + +:n13800045 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Neuwied, große kreisangehörige Stadt"@de . + +:n14304055 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Nomborn"@de . + +:n338010060200 a skos:Concept ; + skos:broader :n33801006 ; + skos:inScheme ; + skos:prefLabel "Schauernheim"@de . + +:n14008096 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Mörschbach"@de . + +:n13402 a skos:Concept ; + skos:broader :n134 ; + skos:inScheme ; + skos:prefLabel "Birkenfeld, Verbandsgemeinde"@de . + +:n19 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Hunsrück"@de . + +:n4049765n3 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Regierungsbezirk Rheinhessen-Pfalz (1946-1999)"@de . + +:n13210048 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Helmeroth"@de . + +:n340010040102 a skos:Concept ; + skos:broader :n34001004 ; + skos:inScheme ; + skos:prefLabel "Fischwoogmühle"@de . + +:n33302038 a skos:Concept ; + skos:broader :n33302 ; + skos:inScheme ; + skos:prefLabel "Kerzenheim"@de . + +:n34009219 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Obernheim-Kirchenarnbach"@de . + +:n333070040101 a skos:Concept ; + skos:broader :n33307004 ; + skos:inScheme ; + skos:prefLabel "Bremricherhof"@de . + +:n233042180300 a skos:Concept ; + skos:broader :n23304218 ; + skos:inScheme ; + skos:prefLabel "Köttelbach (Ortsbezirk)"@de . + +:n235071370201 a skos:Concept ; + skos:broader :n23507137 ; + skos:inScheme ; + skos:prefLabel "Neuhaus"@de . + +:n231091240100 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Kautenbach (Ortsbezirk)"@de . + +:n23106019 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Dhronecken"@de . + +:n132090060101 a skos:Concept ; + skos:broader :n13209006 ; + skos:inScheme ; + skos:prefLabel "Bruche"@de . + +:n14304034 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Horbach"@de . + +:n231060790102 a skos:Concept ; + skos:broader :n23106079 ; + skos:inScheme ; + skos:prefLabel "Echternach"@de . + +:n13104073 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Schalkenbach"@de . + +:n134050460104 a skos:Concept ; + skos:broader :n13405046 ; + skos:inScheme ; + skos:prefLabel "Wildenburg"@de . + +:n337020790102 a skos:Concept ; + skos:broader :n33702079 ; + skos:inScheme ; + skos:prefLabel "Lindelbrunn"@de . + +:n13809043 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Melsbach"@de . + +:n33400007 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Germersheim, Stadt"@de . + +:n314000000200 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Friesenheim (Ortsbezirk)"@de . + +:n138090470108 a skos:Concept ; + skos:broader :n13809047 ; + skos:inScheme ; + skos:prefLabel "Wolfenacker"@de . + +:n340090550300 a skos:Concept ; + skos:broader :n34009055 ; + skos:inScheme ; + skos:prefLabel "Zeselberg"@de . + +:n137040690100 a skos:Concept ; + skos:broader :n13704069 ; + skos:inScheme ; + skos:prefLabel "Niedermendig"@de . + +:n138090070116 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Wallbachsmühle (ehem.Gem.Dattenberg)"@de . + +:n13210027 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Ersfeld"@de . + +:n313000000800 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Wollmesheim (Ortsbezirk)"@de . + +:n13101018 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Dorsel"@de . + +:n333065030103 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Sattelhof"@de . + +:n134000451000 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Regulshausen"@de . + +:n143022360101 a skos:Concept ; + skos:broader :n14302236 ; + skos:inScheme ; + skos:prefLabel "Ehrlich"@de . + +:n140005010209 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Jakobsberg"@de . + +:n23201240 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Herzfeld"@de . + +:n140091120302 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Engehöll (Ortsbezirk)"@de . + +:n33207003 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Battenberg (Pfalz)"@de . + +:n33907066 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Wintersheim"@de . + +:n138070730106 a skos:Concept ; + skos:broader :n13807073 ; + skos:inScheme ; + skos:prefLabel "Stuxhöhe"@de . + +:n13306075 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Oberstreit"@de . + +:n14304013 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Eitelborn"@de . + +:n13210085 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Obersteinebach"@de . + +:n211000001300 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Oberkirch (T.a. Ortsbezirk 10)"@de . + +:n14111117 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Rettert"@de . + +:n33705043 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Impflingen"@de . + +:n138010800307 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Seifen"@de . + +:n33807 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Römerberg-Dudenhofen, Verbandsgemeinde"@de . + +:n13101076 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Sierscheid"@de . + +:n4101050n4 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Mittelrheinisches Becken"@de . + +:n135 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Cochem-Zell, Landkreis"@de . + +:n00Sn02k2161a a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Breisiger Ländchen"@de . + +:n14110033 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Dornholzhausen"@de . + +:n14107107 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Oelsberg"@de . + +:n14306303 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Waldmühlen"@de . + +:n143022020103 a skos:Concept ; + skos:broader :n14302202 ; + skos:inScheme ; + skos:prefLabel "Hirtscheid"@de . + +:n14304071 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Simmern"@de . + +:n23301049 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Nerdlen"@de . + +:n13401068 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Reichenbach"@de . + +:n14009117 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Pfalzfeld"@de . + +:n135030050101 a skos:Concept ; + skos:broader :n13503005 ; + skos:inScheme ; + skos:prefLabel "Waldfrieden"@de . + +:n35 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Katholische Kirche / Diözese Limburg"@de . + +:n335095010400 a skos:Concept ; + skos:broader :n33509501 ; + skos:inScheme ; + skos:prefLabel "Reichenbachsteegen"@de . + +:n132081170113 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Niederhombach"@de . + +:n143013000100 a skos:Concept ; + skos:broader :n14301300 ; + skos:inScheme ; + skos:prefLabel "Korb"@de . + +:n14306218 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Elsoff (Westerwald)"@de . + +:n13210064 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Kraam"@de . + +:n14110091 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Nassau, Stadt"@de . + +:n33702046 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Kapsweyer"@de . + +:n33705022 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Eschbach"@de . + +:n333030260104 a skos:Concept ; + skos:broader :n33303026 ; + skos:inScheme ; + skos:prefLabel "Gundheimerhof"@de . + +:n333072010200 a skos:Concept ; + skos:broader :n33307201 ; + skos:inScheme ; + skos:prefLabel "Rudolphskirchen"@de . + +:n33303 a skos:Concept ; + skos:broader :n333 ; + skos:inScheme ; + skos:prefLabel "Göllheim, Verbandsgemeinde"@de . + +:n138010440228 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Unterelsaff (ehem.Gem.Elsaffthal)"@de . + +:n33207040 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Obersülzen"@de . + +:n317000000707 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Rehmühle"@de . + +:n93 a skos:Concept ; + skos:broader :n5 ; + skos:inScheme ; + skos:prefLabel "Rhein-Neckar-Raum"@de . + +:n315000000400 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Ebersheim (Ortsbezirk)"@de . + +:n141101280103 a skos:Concept ; + skos:broader :n14110128 ; + skos:inScheme ; + skos:prefLabel "Hollerich"@de . + +:n23106035 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Gielert"@de . + +:n337050070400 a skos:Concept ; + skos:broader :n33705007 ; + skos:inScheme ; + skos:prefLabel "Mühlhofen"@de . + +:n232080130101 a skos:Concept ; + skos:broader :n23208013 ; + skos:inScheme ; + skos:prefLabel "Alt-Bettingen"@de . + +:n33201009 a skos:Concept ; + skos:broader :n33201 ; + skos:inScheme ; + skos:prefLabel "Deidesheim, Stadt"@de . + +:n4054887n9 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Siegerland"@de . + +:n33907024 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Guntersblum"@de . + +:n135030570100 a skos:Concept ; + skos:broader :n13503057 ; + skos:inScheme ; + skos:prefLabel "Driesch"@de . + +:n13703049 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Kirchwald"@de . + +:n14 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Vorderpfalz"@de . + +:n132070630403 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Freusburgermühle"@de . + +:n33610089 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Rutsweiler am Glan"@de . + +:n13306033 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Gebroth"@de . + +:n332070410300 a skos:Concept ; + skos:broader :n33207041 ; + skos:inScheme ; + skos:prefLabel "Mühlheim"@de . + +:n133100110200 a skos:Concept ; + skos:broader :n13310011 ; + skos:inScheme ; + skos:prefLabel "Gangloff"@de . + +:n13210043 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Güllesheim"@de . + +:n13101034 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Insul"@de . + +:n340040310101 a skos:Concept ; + skos:broader :n34004031 ; + skos:inScheme ; + skos:prefLabel "Birkwieserhof"@de . + +:n14008012 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Bergenhausen"@de . + +:n331000030300 a skos:Concept ; + skos:broader :n33100003 ; + skos:inScheme ; + skos:prefLabel "Heimersheim (Ortsbezirk)"@de . + +:n23106093 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Neunkirchen"@de . + +:n137082160202 a skos:Concept ; + skos:broader :n13708216 ; + skos:inScheme ; + skos:prefLabel "Depot-Siedlung"@de . + +:n131042060102 a skos:Concept ; + skos:broader :n13104206 ; + skos:inScheme ; + skos:prefLabel "Lederbach"@de . + +:n33511021 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Krickenbach"@de . + +:n340082110105 a skos:Concept ; + skos:broader :n34008211 ; + skos:inScheme ; + skos:prefLabel "Stuppacherhof"@de . + +:n131010440101 a skos:Concept ; + skos:broader :n13101044 ; + skos:inScheme ; + skos:prefLabel "Adorferhof"@de . + +:n13703113 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Welschenbach"@de . + +:n23306209 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Densborn"@de . + +:n339000300100 a skos:Concept ; + skos:broader :n33900030 ; + skos:inScheme ; + skos:prefLabel "Großwinternheim (Ortsbezirk)"@de . + +:n13401026 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Fohren-Linden"@de . + +:n320000001003 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Heidelbingerhof"@de . + +:n14008070 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Klosterkumbd"@de . + +:n33610068 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Niederstaufenbach"@de . + +:n14103005 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Aull"@de . + +:n233015010202 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Gemünden (Ortsbezirk)"@de . + +:n33101067 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Wahlheim"@de . + +:n13210022 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Eichelhardt"@de . + +:n138010030101 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Bennau (ehemals Gemeinde Elsaff)"@de . + +:n140005010204 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Eisenbolz"@de . + +:n23301065 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Schutz"@de . + +:n143022960101 a skos:Concept ; + skos:broader :n14302296 ; + skos:inScheme ; + skos:prefLabel "Alhausen"@de . + +:n131020030107 a skos:Concept ; + skos:broader :n13102003 ; + skos:inScheme ; + skos:prefLabel "Reimerzhoven"@de . + +:n14009133 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Sankt Goar, Stadt"@de . + +:n235081310201 a skos:Concept ; + skos:broader :n23508131 ; + skos:inScheme ; + skos:prefLabel "Forstgut Hundscheid"@de . + +:n137092050103 a skos:Concept ; + skos:broader :n13709205 ; + skos:inScheme ; + skos:prefLabel "Ehrenburgertal"@de . + +:n13203036 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Friedewald"@de . + +:n51 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Rheinprovinz"@de . + +:n13206 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Hamm(Sieg), Verbandsgemeinde"@de . + +:n135010820200 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Treis"@de . + +:n13306070 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Niederhausen"@de . + +:n231001340500 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Wengerohr (Ortsbezirk)"@de . + +:n14305007 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Caan"@de . + +:n33702062 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Pleisweiler-Oberhofen"@de . + +:n13401005 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Baumholder, Stadt"@de . + +:n235030680100 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Filzen (Ortsbezirk 1)"@de . + +:n138050700200 a skos:Concept ; + skos:broader :n13805070 ; + skos:inScheme ; + skos:prefLabel "Weroth"@de . + +:n13208080 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Katzwinkel (Sieg)"@de . + +:n13708209 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Kaltenengers"@de . + +:n315000001500 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Oberstadt (Ortsbezirk)"@de . + +:n143062950101 a skos:Concept ; + skos:broader :n14306295 ; + skos:inScheme ; + skos:prefLabel "Neukirch"@de . + +:n13703007 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Baar"@de . + +:n311000000500 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Studernheim (Ortsbezirk)"@de . + +:n235080820101 a skos:Concept ; + skos:broader :n23508082 ; + skos:inScheme ; + skos:prefLabel "Kümmern"@de . + +:n141100910100 a skos:Concept ; + skos:broader :n14110091 ; + skos:inScheme ; + skos:prefLabel "Bergnassau"@de . + +:n13210001 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Almersbach"@de . + +:n33806016 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Lambsheim"@de . + +:n4110084n0 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Eifel / Ost"@de . + +:n143022990103 a skos:Concept ; + skos:broader :n14302299 ; + skos:inScheme ; + skos:prefLabel "Kloster Marienstatt"@de . + +:n333020190104 a skos:Concept ; + skos:broader :n33302019 ; + skos:inScheme ; + skos:prefLabel "Lauberhof"@de . + +:n14306292 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Seck"@de . + +:n134020580104 a skos:Concept ; + skos:broader :n13402058 ; + skos:inScheme ; + skos:prefLabel "Heupweiler"@de . + +:n233062400100 a skos:Concept ; + skos:broader :n23306240 ; + skos:inScheme ; + skos:prefLabel "Schönfeld (Ortsbezirk)"@de . + +:n137025010102 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Pilligerheck"@de . + +:n14009112 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Oberwesel, Stadt"@de . + +:n30 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Evangelische Kirche im Rheinland"@de . + +:n232081260101 a skos:Concept ; + skos:broader :n23208126 ; + skos:inScheme ; + skos:prefLabel "Teitelbach"@de . + +:n135050710200 a skos:Concept ; + skos:broader :n13505071 ; + skos:inScheme ; + skos:prefLabel "Peterswald"@de . + +:n340082080105 a skos:Concept ; + skos:broader :n34008208 ; + skos:inScheme ; + skos:prefLabel "Monbijou"@de . + +:n13102049 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Mayschoß"@de . + +:n13101050 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Meuspath"@de . + +:n13807019 a skos:Concept ; + skos:broader :n13807 ; + skos:inScheme ; + skos:prefLabel "Erpel"@de . + +:n33101025 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Flonheim"@de . + +:n235081050101 a skos:Concept ; + skos:broader :n23508105 ; + skos:inScheme ; + skos:prefLabel "Benratherhof"@de . + +:n23506022 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Fell"@de . + +:n138030120300 a skos:Concept ; + skos:broader :n13803012 ; + skos:inScheme ; + skos:prefLabel "Elgert (Ortsbezirk)"@de . + +:n14306271 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Neunkirchen"@de . + +:n33400501 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Wörth am Rhein, Stadt"@de . + +:n143093080200 a skos:Concept ; + skos:broader :n14309308 ; + skos:inScheme ; + skos:prefLabel "Sainscheid"@de . + +:n13700068 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Mayen, große kreisangehörige Stadt"@de . + +:n33610084 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Reichweiler"@de . + +:n14103021 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Charlottenberg"@de . + +:n211000000503 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Schloß Monaise"@de . + +:n138040750106 a skos:Concept ; + skos:broader :n13804075 ; + skos:inScheme ; + skos:prefLabel "Oberwillscheid"@de . + +:n13501021 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Dohr"@de . + +:n13311095 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Seibersbach"@de . + +:n14306 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Rennerod, Verbandsgemeinde"@de . + +:n138010440202 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Bertenau"@de . + +:n33608005 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Aschbach"@de . + +:n313000000100 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Arzheim (Ortsbezirk)"@de . + +:n33205037 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Neidenfels"@de . + +:n23301081 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Weidenbach"@de . + +:n312000000700 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Hohenecken (Ortsbezirk)"@de . + +:n134050430104 a skos:Concept ; + skos:broader :n13405043 ; + skos:inScheme ; + skos:prefLabel "Neumühle"@de . + +:n235061250215 a skos:Concept ; + skos:broader :n23506125 ; + skos:inScheme ; + skos:prefLabel "Molitorsmühle"@de . + +:n336080360100 a skos:Concept ; + skos:broader :n33608036 ; + skos:inScheme ; + skos:prefLabel "Berzweiler"@de . + +:n140091330300 a skos:Concept ; + skos:broader :n14009133 ; + skos:inScheme ; + skos:prefLabel "Werlau (Ortsbezirk)"@de . + +:n23306204 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Birresborn"@de . + +:n33703077 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Venningen"@de . + +:n333040100104 a skos:Concept ; + skos:broader :n33304010 ; + skos:inScheme ; + skos:prefLabel "Weierhof"@de . + +:n13401021 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Eckersweiler"@de . + +:n13505054 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Liesenich"@de . + +:n13708225 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Urmitz"@de . + +:n13209095 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Rosenheim (Lkr. Altenkirchen)"@de . + +:n33107 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Wonnegau, Verbandsgemeinde"@de . + +:n14111043 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Flacht"@de . + +:n33303006 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Biedesheim"@de . + +:n23208129 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Usch"@de . + +:n34001010 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Erlenbach bei Dahn"@de . + +:n13402078 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Schmißberg"@de . + +:n33205016 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Esthal"@de . + +:n131030060204 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Auf Wallers"@de . + +:n333070430100 a skos:Concept ; + skos:broader :n33307043 ; + skos:inScheme ; + skos:prefLabel "Cölln"@de . + +:n14009043 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Gondershausen"@de . + +:n33303064 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Rüssingen"@de . + +:n137092140200 a skos:Concept ; + skos:broader :n13709214 ; + skos:inScheme ; + skos:prefLabel "Kattenes"@de . + +:n133100580102 a skos:Concept ; + skos:broader :n13310058 ; + skos:inScheme ; + skos:prefLabel "Neudorferhof"@de . + +:n33608042 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Hinzweiler"@de . + +:n34009018 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Hettenhausen"@de . + +:n4393883n8 a skos:Concept ; + skos:broader :n15 ; + skos:inScheme ; + skos:prefLabel "Stumpfwald"@de . + +:n137000680412 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Katzenberg, Schiefergrube"@de . + +:n233010750200 a skos:Concept ; + skos:broader :n23301075 ; + skos:inScheme ; + skos:prefLabel "Trittscheid (Ortsbezirk)"@de . + +:n235071110600 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Wintersdorf (Ortsbezirk)"@de . + +:n138000450800 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Niederbieber (Ortsbezirk)"@de . + +:n23306241 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Steffeln"@de . + +:n13805025 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Hanroth"@de . + +:n13402057 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Niederbrombach"@de . + +:n33202019 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Freinsheim, Stadt"@de . + +:n333035010100 a skos:Concept ; + skos:broader :n33303501 ; + skos:inScheme ; + skos:prefLabel "Harxheim (Ortsbezirk)"@de . + +:n14107012 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Bettendorf"@de . + +:n13703060 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Langenfeld"@de . + +:n232051310101 a skos:Concept ; + skos:broader :n23205131 ; + skos:inScheme ; + skos:prefLabel "Gaymühle"@de . + +:n336080190102 a skos:Concept ; + skos:broader :n33608019 ; + skos:inScheme ; + skos:prefLabel "Hobstätterhof"@de . + +:n33703035 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Großfischlingen"@de . + +:n13206077 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Niederirsen"@de . + +:n23108108 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Plein"@de . + +:n33610021 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Elzweiler"@de . + +:n232062260200 a skos:Concept ; + skos:broader :n23206226 ; + skos:inScheme ; + skos:prefLabel "Hermespand"@de . + +:n33101020 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Eppelsheim"@de . + +:n235081040401 a skos:Concept ; + skos:broader :n23508104 ; + skos:inScheme ; + skos:prefLabel "Schloß Thorn"@de . + +:n14111001 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Allendorf"@de . + +:n132070120101 a skos:Concept ; + skos:broader :n13207012 ; + skos:inScheme ; + skos:prefLabel "Büdenholz"@de . + +:n235080720108 a skos:Concept ; + skos:broader :n23508072 ; + skos:inScheme ; + skos:prefLabel "Obersehr"@de . + +:n33403022 a skos:Concept ; + skos:broader :n33403 ; + skos:inScheme ; + skos:prefLabel "Neupotz"@de . + +:n14107070 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Kehlbach"@de . + +:n23301501 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Daun, Stadt"@de . + +:n143022650100 a skos:Concept ; + skos:broader :n14302265 ; + skos:inScheme ; + skos:prefLabel "Niedermörsbach"@de . + +:n13505070 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Panzweiler"@de . + +:n14009080 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Laudert"@de . + +:n131000900502 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Esch"@de . + +:n33901062 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Waldalgesheim"@de . + +:n335020480102 a skos:Concept ; + skos:broader :n33502048 ; + skos:inScheme ; + skos:prefLabel "Stüterhof"@de . + +:n138040750101 a skos:Concept ; + skos:broader :n13804075 ; + skos:inScheme ; + skos:prefLabel "Kalenborn"@de . + +:n339060570200 a skos:Concept ; + skos:broader :n33906057 ; + skos:inScheme ; + skos:prefLabel "Stadecken"@de . + +:n134020720102 a skos:Concept ; + skos:broader :n13402072 ; + skos:inScheme ; + skos:prefLabel "Rötsweiler"@de . + +:n34009055 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Weselberg"@de . + +:n138020040101 a skos:Concept ; + skos:broader :n13802004 ; + skos:inScheme ; + skos:prefLabel "Arenfels, Schloß und Hsgr."@de . + +:n14301 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Bad Marienberg (Ww), Verbandsgemeinde"@de . + +:n23101136 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Zeltingen-Rachtig"@de . + +:n13402094 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Wilzenberg-Hußweiler"@de . + +:n33205032 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Lambrecht (Pfalz), Stadt"@de . + +:n335010030500 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Vogelbachermühle"@de . + +:n338000040103 a skos:Concept ; + skos:broader :n33800004 ; + skos:inScheme ; + skos:prefLabel "Nonnenhof"@de . + +:n232063320200 a skos:Concept ; + skos:broader :n23206332 ; + skos:inScheme ; + skos:prefLabel "Oberhersdorf"@de . + +:n132105010200 a skos:Concept ; + skos:broader :n13210501 ; + skos:inScheme ; + skos:prefLabel "Dieperzen"@de . + +:n13402015 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Brücken"@de . + +:n33307055 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Oberndorf"@de . + +:n338070230300 a skos:Concept ; + skos:broader :n33807023 ; + skos:inScheme ; + skos:prefLabel "Mechtersheim"@de . + +:n13709219 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Nörtershausen"@de . + +:n235075010105 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Kostermühle"@de . + +:n33502048 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Waldleiningen"@de . + +:n33102 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Eich, Verbandsgemeinde"@de . + +:n331070150100 a skos:Concept ; + skos:broader :n33107015 ; + skos:inScheme ; + skos:prefLabel "Dittelsheim"@de . + +:n141000750101 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Allerheiligenberg"@de . + +:n137030970101 a skos:Concept ; + skos:broader :n13703097 ; + skos:inScheme ; + skos:prefLabel "Bürresheim, Schloß und Hof"@de . + +:n311000000101 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Ormsheimerhof"@de . + +:n33303001 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Albisheim (Pfrimm)"@de . + +:n13102002 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Ahrbrück"@de . + +:n143040480800 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Wirzenborn (Ortsbezirk)"@de . + +:n23208124 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Stockem"@de . + +:n332070120200 a skos:Concept ; + skos:broader :n33207012 ; + skos:inScheme ; + skos:prefLabel "Rodenbach (Ortsbezirk)"@de . + +:n23306029 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Hillesheim, Stadt"@de . + +:n335110470108 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Johanniskreuz"@de . + +:n13310058 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Lettweiler"@de . + +:n33908050 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Sankt Johann"@de . + +:n23208039 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Fließem"@de . + +:n332050140110 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Röderthal"@de . + +:n13502052 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Laubach"@de . + +:n33200025 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Haßloch"@de . + +:n33307034 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Imsweiler"@de . + +:n23504141 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Waldrach"@de . + +:n137002030105 a skos:Concept ; + skos:broader :n13700203 ; + skos:inScheme ; + skos:prefLabel "Sayn"@de . + +:n336090920400 a skos:Concept ; + skos:broader :n33609092 ; + skos:inScheme ; + skos:prefLabel "Schönenberg"@de . + +:n13206014 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Bruchertseifen"@de . + +:n23504056 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Kasel"@de . + +:n141091210102 a skos:Concept ; + skos:broader :n14109121 ; + skos:inScheme ; + skos:prefLabel "Burg Katz"@de . + +:n23205127 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Übereisenbach"@de . + +:n23208097 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Oberstedem"@de . + +:n231061230100 a skos:Concept ; + skos:broader :n23106123 ; + skos:inScheme ; + skos:prefLabel "Bäsch (Ortsbezirk)"@de . + +:n232062960200 a skos:Concept ; + skos:broader :n23206296 ; + skos:inScheme ; + skos:prefLabel "Niederprüm"@de . + +:n337020450101 a skos:Concept ; + skos:broader :n33702045 ; + skos:inScheme ; + skos:prefLabel "Deutschhof"@de . + +:n33106068 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Wallertheim"@de . + +:n131010860102 a skos:Concept ; + skos:broader :n13101086 ; + skos:inScheme ; + skos:prefLabel "Kirmutscheid"@de . + +:n13502031 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Forst (Eifel)"@de . + +:n232063290200 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Urb"@de . + +:n23108103 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Osann-Monzel"@de . + +:n34006016 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Hermersberg"@de . + +:n33804008 a skos:Concept ; + skos:broader :n33804 ; + skos:inScheme ; + skos:prefLabel "Fußgönheim"@de . + +:n336090370100 a skos:Concept ; + skos:broader :n33609037 ; + skos:inScheme ; + skos:prefLabel "Haschbach"@de . + +:n23205106 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Plascheid"@de . + +:n23208076 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Malbergweich"@de . + +:n13402031 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Gollenberg"@de . + +:n14004128 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Rödelhausen"@de . + +:n137030070108 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Wanderath"@de . + +:n13701057 a skos:Concept ; + skos:broader :n13701 ; + skos:inScheme ; + skos:prefLabel "Kruft"@de . + +:n131000700700 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Rolandswerth (Ortsbezirk 5)"@de . + +:n235081540100 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Dittlingen (Ortsbezirk)"@de . + +:n13405019 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Dickesbach"@de . + +:n34002020 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Hinterweidenthal"@de . + +:n34003019 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Hilst"@de . + +:n138090060109 a skos:Concept ; + skos:broader :n13809006 ; + skos:inScheme ; + skos:prefLabel "Gersthahnsmühle"@de . + +:n3 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Kirchliche Gebiete in Rheinland-Pfalz"@de . + +:n339000050700 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Kempten"@de . + +:n23304217 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Kaperich"@de . + +:n13402010 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Birkenfeld, Stadt"@de . + +:n14004107 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Niedersohren"@de . + +:n33307050 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Niederhausen an der Appel"@de . + +:n13709214 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Löf"@de . + +:n23206227 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Gondenbrett"@de . + +:n312000001604 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Eselsfürth"@de . + +:n231080010102 a skos:Concept ; + skos:broader :n23108001 ; + skos:inScheme ; + skos:prefLabel "Haardt"@de . + +:n335100290100 a skos:Concept ; + skos:broader :n33510029 ; + skos:inScheme ; + skos:prefLabel "Heimkirchen (Ortsbezirk)"@de . + +:n13405077 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Schmidthachenbach"@de . + +:n14307069 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Sessenhausen"@de . + +:n138000450100 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Altwied (Ortsbezirk)"@de . + +:n14004165 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Würrich"@de . + +:n233015010500 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Rengen (Ortsbezirk)"@de . + +:n13310053 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Kirschroth"@de . + +:n143092490102 a skos:Concept ; + skos:broader :n14309249 ; + skos:inScheme ; + skos:prefLabel "Schönberg"@de . + +:n320000000700 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Mörsbach (Ortsbezirk)"@de . + +:n232050120101 a skos:Concept ; + skos:broader :n23205012 ; + skos:inScheme ; + skos:prefLabel "Gaymühle"@de . + +:n23208034 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Eßlingen"@de . + +:n333070650106 a skos:Concept ; + skos:broader :n33307065 ; + skos:inScheme ; + skos:prefLabel "Unter-Tierwasen"@de . + +:n332000020100 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Bad Dürkheim"@de . + +:n337010240103 a skos:Concept ; + skos:broader :n33701024 ; + skos:inScheme ; + skos:prefLabel "Sanatorium Eußerthal"@de . + +:n23206206 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Bleialf"@de . + +:n13309201 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Bruschied"@de . + +:n135050700101 a skos:Concept ; + skos:broader :n13505070 ; + skos:inScheme ; + skos:prefLabel "Gassenhof"@de . + +:n13405056 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Mörschied"@de . + +:n137002030100 a skos:Concept ; + skos:broader :n13700203 ; + skos:inScheme ; + skos:prefLabel "Bendorf"@de . + +:n33609031 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Glan-Münchweiler"@de . + +:n13104202 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Burgbrohl"@de . + +:n140030180200 a skos:Concept ; + skos:broader :n14003018 ; + skos:inScheme ; + skos:prefLabel "Dudenroth (Ortsbezirk)"@de . + +:n138050140102 a skos:Concept ; + skos:broader :n13805014 ; + skos:inScheme ; + skos:prefLabel "Muscheid"@de . + +:n14109079 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Lierschied"@de . + +:n23205122 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Sinspelt"@de . + +:n23208092 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Niederweiler"@de . + +:n14008119 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Ravengiersburg"@de . + +:n33906047 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Ober-Olm"@de . + +:n23208013 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Bettingen"@de . + +:n23205037 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Ferschweiler"@de . + +:n33106063 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Sulzheim"@de . + +:n140081000200 a skos:Concept ; + skos:broader :n14008100 ; + skos:inScheme ; + skos:prefLabel "Nickweiler"@de . + +:n137025010400 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Metternich (Ortsbezirk)"@de . + +:n13405035 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Hausen"@de . + +:n333075020309 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Schacherhof"@de . + +:n33609010 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Breitenbach"@de . + +:n232012530300 a skos:Concept ; + skos:broader :n23201253 ; + skos:inScheme ; + skos:prefLabel "Ringhuscheid"@de . + +:n138050520103 a skos:Concept ; + skos:broader :n13805052 ; + skos:inScheme ; + skos:prefLabel "Lautzert"@de . + +:n33804003 a skos:Concept ; + skos:broader :n33804 ; + skos:inScheme ; + skos:prefLabel "Birkenheide"@de . + +:n231010700300 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Götzeroth (Ortsbezirk)"@de . + +:n13310090 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Schmittweiler"@de . + +:n23208071 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Kyllburgweiler"@de . + +:n23108013 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Bruch"@de . + +:n23205095 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Nusbaum"@de . + +:n331030230100 a skos:Concept ; + skos:broader :n33103023 ; + skos:inScheme ; + skos:prefLabel "Dalsheim"@de . + +:n23304233 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Reimerath"@de . + +:n13503083 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Ulmen, Stadt"@de . + +:n13709230 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Winningen"@de . + +:n137030070103 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Freilingen"@de . + +:n336091020104 a skos:Concept ; + skos:broader :n33609102 ; + skos:inScheme ; + skos:prefLabel "Eichelscheiderhof"@de . + +:n13310011 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Becherbach"@de . + +:n333070230102 a skos:Concept ; + skos:broader :n33307023 ; + skos:inScheme ; + skos:prefLabel "Leiningerhof"@de . + +:n23205016 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Biesdorf"@de . + +:n13405093 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Wickenrodt"@de . + +:n33103066 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Wachenheim"@de . + +:n134000450501 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Algenrodt"@de . + +:n133090460200 a skos:Concept ; + skos:broader :n13309046 ; + skos:inScheme ; + skos:prefLabel "Hochstetten"@de . + +:n33511 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Landstuhl, Verbandsgemeinde"@de . + +:n13207045 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Harbach"@de . + +:n14109122 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Sauerthal"@de . + +:n13405014 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Bruchweiler"@de . + +:n14307085 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Wölferlingen"@de . + +:n141095010106 a skos:Concept ; + skos:broader :n14109501 ; + skos:inScheme ; + skos:prefLabel "Marksburg"@de . + +:n143040480100 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Bladernheim (Ortsbezirk)"@de . + +:n33401014 a skos:Concept ; + skos:broader :n33401 ; + skos:inScheme ; + skos:prefLabel "Knittelsheim"@de . + +:n23101041 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Graach an der Mosel"@de . + +:n14303031 a skos:Concept ; + skos:broader :n14303 ; + skos:inScheme ; + skos:prefLabel "Hillscheid"@de . + +:n14110135 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Weinähr"@de . + +:n23304212 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Gelenberg"@de . + +:n4095533n3 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Hoher Westerwald"@de . + +:n233060290100 a skos:Concept ; + skos:broader :n23306029 ; + skos:inScheme ; + skos:prefLabel "Bolsdorf (Ortsbezirk)"@de . + +:n132081170300 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Schönstein"@de . + +:n23206222 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Feuerscheid"@de . + +:n340090350101 a skos:Concept ; + skos:broader :n34009035 ; + skos:inScheme ; + skos:prefLabel "Bärenhütte"@de . + +:n340060540104 a skos:Concept ; + skos:broader :n34006054 ; + skos:inScheme ; + skos:prefLabel "Maria Rosenberg"@de . + +:n131020110105 a skos:Concept ; + skos:broader :n13102011 ; + skos:inScheme ; + skos:prefLabel "Unter-Krälingen"@de . + +:n233060260800 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Müllenborn (Ortsbezirk)"@de . + +:n23108050 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Heckenmünster"@de . + +:n340040320101 a skos:Concept ; + skos:broader :n34004032 ; + skos:inScheme ; + skos:prefLabel "Beckenhof"@de . + +:n34006 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Waldfischbach-Burgalben, Verbandsgemeinde"@de . + +:n14307064 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Rückeroth"@de . + +:n340030280108 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Salzwoog (Ortsbezirk)"@de . + +:n33405 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Lingenfeld, Verbandsgemeinde"@de . + +:n14109016 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Bornich"@de . + +:n23205053 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Holsthum"@de . + +:n13309047 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Horbach"@de . + +:n231005020600 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Heinzerath (Ortsbezirk)"@de . + +:n333070650101 a skos:Concept ; + skos:broader :n33307065 ; + skos:inScheme ; + skos:prefLabel "Ober-Gerbacherhof"@de . + +:n33701064 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Ramberg"@de . + +:n335020280104 a skos:Concept ; + skos:broader :n33502028 ; + skos:inScheme ; + skos:prefLabel "Randeckerhof"@de . + +:n141110200103 a skos:Concept ; + skos:broader :n14111020 ; + skos:inScheme ; + skos:prefLabel "Zollhaus"@de . + +:n333060710101 a skos:Concept ; + skos:broader :n33306071 ; + skos:inScheme ; + skos:prefLabel "Pfrimmerhof"@de . + +:n33903008 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Bubenheim"@de . + +:n23201294 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Preischeid"@de . + +:n141091080109 a skos:Concept ; + skos:broader :n14109108 ; + skos:inScheme ; + skos:prefLabel "Schloß Liebeneck"@de . + +:n319000000600 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Horchheim (Ortsbezirk)"@de . + +:n231060420101 a skos:Concept ; + skos:broader :n23106042 ; + skos:inScheme ; + skos:prefLabel "Krakesmühle"@de . + +:n331010320100 a skos:Concept ; + skos:broader :n33101032 ; + skos:inScheme ; + skos:prefLabel "Gau-Köngernheim"@de . + +:n337010330200 a skos:Concept ; + skos:broader :n33701033 ; + skos:inScheme ; + skos:prefLabel "Stein"@de . + +:n33906042 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Nieder-Olm, Stadt"@de . + +:n13809076 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Waldbreitbach"@de . + +:n331020020102 a skos:Concept ; + skos:broader :n33102002 ; + skos:inScheme ; + skos:prefLabel "Hangen-Wahlheim"@de . + +:n138010440309 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Strauscheid"@de . + +:n23507 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Trier-Land, Verbandsgemeinde"@de . + +:n14110087 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Misselberg"@de . + +:n23506108 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Pölich"@de . + +:n13405030 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Gösenroth"@de . + +:n231011050201 a skos:Concept ; + skos:broader :n23101105 ; + skos:inScheme ; + skos:prefLabel "Ferres"@de . + +:n4026464n6 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Idarwald"@de . + +:n33207036 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Mertesheim"@de . + +:n14110008 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Becheln"@de . + +:n140081190101 a skos:Concept ; + skos:broader :n14008119 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n23205090 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Niederraden"@de . + +:n13803012 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Dierdorf, Stadt"@de . + +:n14307022 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Goddert"@de . + +:n111000000300 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Asterstein"@de . + +:n333065030200 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Hochstein"@de . + +:n233062410100 a skos:Concept ; + skos:broader :n23306241 ; + skos:inScheme ; + skos:prefLabel "Auel (Ortsbezirk)"@de . + +:n23205011 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Berkoth"@de . + +:n33107036 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Gundersheim"@de . + +:n336080300100 a skos:Concept ; + skos:broader :n33608030 ; + skos:inScheme ; + skos:prefLabel "Hachenbach"@de . + +:n132101140102 a skos:Concept ; + skos:broader :n13210114 ; + skos:inScheme ; + skos:prefLabel "Leingen"@de . + +:n14008008 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Belgweiler"@de . + +:n132070720103 a skos:Concept ; + skos:broader :n13207072 ; + skos:inScheme ; + skos:prefLabel "Niederschelden, Bhf."@de . + +:n14309312 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Willmenrod"@de . + +:n231005021700 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Weiperath (Ortsbezirk)"@de . + +:n138070190102 a skos:Concept ; + skos:broader :n13807019 ; + skos:inScheme ; + skos:prefLabel "Reifstein"@de . + +:n34008211 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Hornbach,Stadt"@de . + +:n131000900800 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Leimersdorf (Ortsbezirk)"@de . + +:n340092220200 a skos:Concept ; + skos:broader :n34009222 ; + skos:inScheme ; + skos:prefLabel "Rieschweiler"@de . + +:n33402008 a skos:Concept ; + skos:broader :n33402 ; + skos:inScheme ; + skos:prefLabel "Hagenbach, Stadt"@de . + +:n4329692n0 a skos:Concept ; + skos:broader :n11 ; + skos:inScheme ; + skos:prefLabel "Einrich"@de . + +:n14302276 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Nister"@de . + +:n13309063 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Meckenbach"@de . + +:n232 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Eifelkreis Bitburg-Prüm"@de . + +:n13210103 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Seelbach (Westerwald)"@de . + +:n13210097 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Rott"@de . + +:n33702079 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Vorderweidenthal"@de . + +:n33701080 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Waldhambach"@de . + +:n4110085n2 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Eifel / West"@de . + +:n333060090104 a skos:Concept ; + skos:broader :n33306009 ; + skos:inScheme ; + skos:prefLabel "Herfingerhof"@de . + +:n143022350300 a skos:Concept ; + skos:broader :n14302235 ; + skos:inScheme ; + skos:prefLabel "Oberhattert"@de . + +:n33107015 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Dittelsheim-Heßloch"@de . + +:n33701001 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Albersweiler"@de . + +:n13101009 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Bauler"@de . + +:n132100880102 a skos:Concept ; + skos:broader :n13210088 ; + skos:inScheme ; + skos:prefLabel "Hahn"@de . + +:n14306315 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Zehnhausen bei Rennerod"@de . + +:n34001 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Dahner Felsenland, Verbandsgemeinde"@de . + +:n14308058 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Obererbach"@de . + +:n23304037 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Katzwinkel"@de . + +:n137000680100 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Alzheim (Ortsbezirk)"@de . + +:n340030280103 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Glashütte (Ortsbezirk)"@de . + +:n47 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Pfalz-Zweibrücken"@de . + +:n14103059 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Holzappel"@de . + +:n13309042 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Heinzenberg"@de . + +:n137000030500 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Namedy (Ortsbezirk)"@de . + +:n33702058 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Oberhausen"@de . + +:n23503148 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Wiltingen"@de . + +:n232000180200 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Erdorf (Ortsbezirk)"@de . + +:n333020380105 a skos:Concept ; + skos:broader :n33302038 ; + skos:inScheme ; + skos:prefLabel "Kerzweilerhof (T.a.Ortsbezirk Rosenthal)"@de . + +:n111000001400 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Moselweiß"@de . + +:n132070630500 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Offhausen (Ortsbezirk)"@de . + +:n4264313n2 a skos:Concept ; + skos:broader :n24 ; + skos:inScheme ; + skos:prefLabel "Untermosel-Gebiet"@de . + +:n135030830106 a skos:Concept ; + skos:broader :n13503083 ; + skos:inScheme ; + skos:prefLabel "Vorpochten"@de . + +:n4205902n1 a skos:Concept ; + skos:broader :n15 ; + skos:inScheme ; + skos:prefLabel "Gräfensteiner Land"@de . + +:n14308037 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Hundsangen"@de . + +:n14009108 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Niedert"@de . + +:n26 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Nahetal"@de . + +:n14103038 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Eppenrod"@de . + +:n13809071 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Straßenhaus"@de . + +:n138010440304 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Niederhoppen, Hof"@de . + +:n13807 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Unkel, Verbandsgemeinde"@de . + +:n13210055 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Horhausen (Westerwald)"@de . + +:n137030740108 a skos:Concept ; + skos:broader :n13703074 ; + skos:inScheme ; + skos:prefLabel "Schnürenhof"@de . + +:n14110082 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Lollschied"@de . + +:n33702037 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Hergersweiler"@de . + +:n317000000300 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Gersbach (Ortsbezirk)"@de . + +:n138010440219 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Mittelelsaff (ehem.Gem.Elsaffthal)"@de . + +:n4051098n0 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Saargau"@de . + +:n316000000900 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Lachen-Speyerdorf (Ortsbezirk)"@de . + +:n14110003 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Attenhausen"@de . + +:n33207031 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Kleinkarlbach"@de . + +:n320000001100 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Wattweiler (Ortsbezirk)"@de . + +:n131020470300 a skos:Concept ; + skos:broader :n13102047 ; + skos:inScheme ; + skos:prefLabel "Plittersdorf"@de . + +:n133100940101 a skos:Concept ; + skos:broader :n13310094 ; + skos:inScheme ; + skos:prefLabel "Waldfriede"@de . + +:n211000000101 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Petrisberg"@de . + +:n33907015 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Eimsheim"@de . + +:n233060360100 a skos:Concept ; + skos:broader :n23306036 ; + skos:inScheme ; + skos:prefLabel "Kalenborn"@de . + +:n05 a skos:Concept ; + skos:broader :n1 ; + skos:inScheme ; + skos:prefLabel "Rheinhessen"@de . + +:n13702041 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Kalt"@de . + +:n4114920n8 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Maifeld"@de . + +:n140090450102 a skos:Concept ; + skos:broader :n14009045 ; + skos:inScheme ; + skos:prefLabel "Ehr"@de . + +:n13501017 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Bruttig-Fankel"@de . + +:n14008003 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Argenthal"@de . + +:n23503106 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Pellingen"@de . + +:n138010030113 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Rindhausen (ehemals Gemeinde Elsaff)"@de . + +:n335010030103 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Tausendmühle"@de . + +:n137092200101 a skos:Concept ; + skos:broader :n13709220 ; + skos:inScheme ; + skos:prefLabel "Bleidenbergerhof"@de . + +:n14308074 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Steinefrenz"@de . + +:n34004003 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Clausen"@de . + +:n33207010 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Dirmstein"@de . + +:n23301077 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Utzerath"@de . + +:n33511012 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Hauptstuhl"@de . + +:n233060260100 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Bewingen (Ortsbezirk)"@de . + +:n143092420400 a skos:Concept ; + skos:broader :n14309242 ; + skos:inScheme ; + skos:prefLabel "Schönberg"@de . + +:n4101955n6 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Ober-Westerwald"@de . + +:n14306246 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Irmtraut"@de . + +:n14304020 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Gackenbach"@de . + +:n13210092 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Racksen"@de . + +:n33705050 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Knöringen"@de . + +:n134020110103 a skos:Concept ; + skos:broader :n13402011 ; + skos:inScheme ; + skos:prefLabel "Thranenweier (ehem.Gem.Allenbach)"@de . + +:n13101083 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Wiesemscheid"@de . + +:n13703019 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Ditscheid"@de . + +:n138090070102 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Bremscheid"@de . + +:n14111039 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Ergeshausen"@de . + +:n333035010202 a skos:Concept ; + skos:broader :n33303501 ; + skos:inScheme ; + skos:prefLabel "Reitzenmühle"@de . + +:n138045010200 a skos:Concept ; + skos:broader :n13804501 ; + skos:inScheme ; + skos:prefLabel "Ohlenberg"@de . + +:n13101004 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Antweiler"@de . + +:n23304032 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Hörschhausen"@de . + +:n13401075 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Ruschberg"@de . + +:n232063290307 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Wallmerath"@de . + +:n132100150102 a skos:Concept ; + skos:broader :n13210015 ; + skos:inScheme ; + skos:prefLabel "Bürdenbach-Bruch"@de . + +:n13703077 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Münk"@de . + +:n13306061 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Mandel"@de . + +:n14302250 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Kroppach"@de . + +:n232063000100 a skos:Concept ; + skos:broader :n23206300 ; + skos:inScheme ; + skos:prefLabel "Ellwerath"@de . + +:n134000450300 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Göttschied"@de . + +:n23503143 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Wasserliesch"@de . + +:n13101062 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Ohlenhard"@de . + +:n232062220101 a skos:Concept ; + skos:broader :n23206222 ; + skos:inScheme ; + skos:prefLabel "Denterhof"@de . + +:n33608038 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Heinzenhausen"@de . + +:n211000001201 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Brubacherhof"@de . + +:n137000680408 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Geisheckerhof"@de . + +:n14111018 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Bremberg"@de . + +:n23109501 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Irmenach"@de . + +:n33406015 a skos:Concept ; + skos:broader :n33406 ; + skos:inScheme ; + skos:prefLabel "Kuhardt"@de . + +:n211000000600 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Feyen (T.a. Ortsbezirk 17)"@de . + +:n140030100600 a skos:Concept ; + skos:broader :n14003010 ; + skos:inScheme ; + skos:prefLabel "Sevenich (Ortsbezirk)"@de . + +:n23106042 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Gräfendhron"@de . + +:n14306283 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Oberroßbach"@de . + +:n23306237 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Scheid"@de . + +:n143022940101 a skos:Concept ; + skos:broader :n14302294 ; + skos:inScheme ; + skos:prefLabel "Langenbaum"@de . + +:n13401054 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Mettweiler"@de . + +:n140005010800 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Rheinbay (Ortsbezirk)"@de . + +:n143100420101 a skos:Concept ; + skos:broader :n14310042 ; + skos:inScheme ; + skos:prefLabel "Hosten"@de . + +:n21 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Ingelheimer Rheinebene"@de . + +:n33508038 a skos:Concept ; + skos:broader :n33508 ; + skos:inScheme ; + skos:prefLabel "Ramstein-Miesenbach, Stadt"@de . + +:n13306040 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Hargesheim"@de . + +:n232082100106 a skos:Concept ; + skos:broader :n23208210 ; + skos:inScheme ; + skos:prefLabel "Neustraßburg"@de . + +:n13802 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Bad Hönningen, Verbandsgemeinde"@de . + +:n336090310100 a skos:Concept ; + skos:broader :n33609031 ; + skos:inScheme ; + skos:prefLabel "Bettenhausen"@de . + +:n137030740103 a skos:Concept ; + skos:broader :n13703074 ; + skos:inScheme ; + skos:prefLabel "Lauxhof"@de . + +:n235030950300 a skos:Concept ; + skos:broader :n23503095 ; + skos:inScheme ; + skos:prefLabel "Rehlingen (Ortsbezirk)"@de . + +:n138010440214 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Hombachsmühle"@de . + +:n34001043 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Schindhard"@de . + +:n131000070100 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Ahrweiler (Ortsbezirk)"@de . + +:n14009161 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Wiebelsheim"@de . + +:n13311028 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Eckenroth"@de . + +:n231005021000 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Hunolstein (Ortsbezirk)"@de . + +:n132100570101 a skos:Concept ; + skos:broader :n13210057 ; + skos:inScheme ; + skos:prefLabel "Bahnhof Ingelbach"@de . + +:n131000900100 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Bengen (Ortsbezirk)"@de . + +:n14308011 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Dreikirchen"@de . + +:n13401033 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Hahnweiler"@de . + +:n23301014 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Darscheid"@de . + +:n4267498n0 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Schneifel"@de . + +:n31500000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Mainz, Kreisfreie Stadt"@de . + +:n235070940300 a skos:Concept ; + skos:broader :n23507094 ; + skos:inScheme ; + skos:prefLabel "Lorich (Ortsbezirk)"@de . + +:n33907010 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Dalheim"@de . + +:n33901058 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Trechtingshausen"@de . + +:n13703035 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Herresbach"@de . + +:n319000001000 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Neuhausen (Ortsbezirk)"@de . + +:n33608075 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Offenbach-Hundheim"@de . + +:n340082060105 a skos:Concept ; + skos:broader :n34008206 ; + skos:inScheme ; + skos:prefLabel "Offweilerhof"@de . + +:n23503101 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Onsdorf"@de . + +:n13501012 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Bremm"@de . + +:n33303018 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Einselthum"@de . + +:n314000000600 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Oppau (Ortsbezirk)"@de . + +:n132100470101 a skos:Concept ; + skos:broader :n13210047 ; + skos:inScheme ; + skos:prefLabel "Oberölfen"@de . + +:n23503095 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Nittel"@de . + +:n13805058 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Ratzert"@de . + +:n4316101n7 a skos:Concept ; + skos:broader :n24 ; + skos:inScheme ; + skos:prefLabel "Mittelmosel-Gebiet"@de . + +:n31400000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Ludwigshafen am Rhein, Kreisfreie Stadt"@de . + +:n14009140 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Schwall"@de . + +:n235010080200 a skos:Concept ; + skos:broader :n23501008 ; + skos:inScheme ; + skos:prefLabel "Prosterath"@de . + +:n232081000103 a skos:Concept ; + skos:broader :n23208100 ; + skos:inScheme ; + skos:prefLabel "Hoorhof"@de . + +:n137092050110 a skos:Concept ; + skos:broader :n13709205 ; + skos:inScheme ; + skos:prefLabel "Stabenhof"@de . + +:n135050920300 a skos:Concept ; + skos:broader :n13505092 ; + skos:inScheme ; + skos:prefLabel "Zell"@de . + +:n337020710100 a skos:Concept ; + skos:broader :n33702071 ; + skos:inScheme ; + skos:prefLabel "Rechtenbach"@de . + +:n23306 a skos:Concept ; + skos:broader :n233 ; + skos:inScheme ; + skos:prefLabel "Gerolstein, Verbandsgemeinde"@de . + +:n13708216 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Mülheim-Kärlich, Stadt"@de . + +:n211000001700 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Ruwer (T.a. Ortsbezirk 7)"@de . + +:n13703014 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Boos"@de . + +:n143070750101 a skos:Concept ; + skos:broader :n14307075 ; + skos:inScheme ; + skos:prefLabel "Kautenmühle"@de . + +:n33101053 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Offenheim"@de . + +:n14111034 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Ebertshausen"@de . + +:n4055608n6 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Soonwald"@de . + +:n335100460200 a skos:Concept ; + skos:broader :n33510046 ; + skos:inScheme ; + skos:prefLabel "Untersulzbach"@de . + +:n34001001 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Bobenthal"@de . + +:n143082630100 a skos:Concept ; + skos:broader :n14308263 ; + skos:inScheme ; + skos:prefLabel "Dahlen"@de . + +:n232063290302 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Eigelscheid"@de . + +:n135010200102 a skos:Concept ; + skos:broader :n13501020 ; + skos:inScheme ; + skos:prefLabel "Cochem-Brauheck"@de . + +:n141035030200 a skos:Concept ; + skos:broader :n14103503 ; + skos:inScheme ; + skos:prefLabel "Schaumburg"@de . + +:n132070760103 a skos:Concept ; + skos:broader :n13207076 ; + skos:inScheme ; + skos:prefLabel "Fischbacherhütte"@de . + +:n332050140106 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Helmbach"@de . + +:n143050620200 a skos:Concept ; + skos:broader :n14305062 ; + skos:inScheme ; + skos:prefLabel "Ransbach"@de . + +:n138010440230 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Wied (ehem.Gem.Elsaffthal)"@de . + +:n33608033 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Grumbach"@de . + +:n33101032 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Gau-Odernheim"@de . + +:n141075020200 a skos:Concept ; + skos:broader :n14107502 ; + skos:inScheme ; + skos:prefLabel "Münchenroth"@de . + +:n132061020101 a skos:Concept ; + skos:broader :n13206102 ; + skos:inScheme ; + skos:prefLabel "Marienthal"@de . + +:n14111013 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Biebrich"@de . + +:n138010800203 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Mendt"@de . + +:n33806002 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Beindersheim"@de . + +:n33703 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Edenkoben, Verbandsgemeinde"@de . + +:n316000000200 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Diedesfeld (Ortsbezirk)"@de . + +:n4010909n4 a skos:Concept ; + skos:broader :n15 ; + skos:inScheme ; + skos:prefLabel "Dahner Felsenland"@de . + +:n23306232 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Ormont"@de . + +:n13402048 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Kronweiler"@de . + +:n23301030 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Hinterweiler"@de . + +:n315000000800 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Laubenheim (Ortsbezirk)"@de . + +:n33610091 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Schellweiler"@de . + +:n141091090102 a skos:Concept ; + skos:broader :n14109109 ; + skos:inScheme ; + skos:prefLabel "Hasenbachtal"@de . + +:n13505003 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Altlay"@de . + +:n23504116 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Riveris"@de . + +:n338000040200 a skos:Concept ; + skos:broader :n33800004 ; + skos:inScheme ; + skos:prefLabel "Roxheim"@de . + +:n137092120200 a skos:Concept ; + skos:broader :n13709212 ; + skos:inScheme ; + skos:prefLabel "Gondorf"@de . + +:n33501003 a skos:Concept ; + skos:broader :n33501 ; + skos:inScheme ; + skos:prefLabel "Bruchmühlbach-Miesau"@de . + +:n13805074 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Urbach"@de . + +:n33608012 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Buborn"@de . + +:n13311023 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Daxweiler"@de . + +:n233062140104 a skos:Concept ; + skos:broader :n23306214 ; + skos:inScheme ; + skos:prefLabel "Steinebrück"@de . + +:n23206329 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Winterspelt"@de . + +:n23306211 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Duppach"@de . + +:n33703084 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Weyher in der Pfalz"@de . + +:n13505061 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Mittelstrimmig"@de . + +:n33307067 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Schiersfeld"@de . + +:n23508149 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Wincheringen"@de . + +:n33908004 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Badenheim"@de . + +:n33610070 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Oberalben"@de . + +:n132090660200 a skos:Concept ; + skos:broader :n13209066 ; + skos:inScheme ; + skos:prefLabel "Steineberg"@de . + +:n14111050 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Gutenacker"@de . + +:n137092070108 a skos:Concept ; + skos:broader :n13709207 ; + skos:inScheme ; + skos:prefLabel "Mariaroth"@de . + +:n320000000802 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Gersbergerhof"@de . + +:n140030090200 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Hundheim (Ortsbezirk)"@de . + +:n13402085 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Sonnenberg-Winnenberg"@de . + +:n23206308 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Sellerich"@de . + +:n135010790101 a skos:Concept ; + skos:broader :n13501079 ; + skos:inScheme ; + skos:prefLabel "Senhals"@de . + +:n14107040 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Eschbach"@de . + +:n143040650200 a skos:Concept ; + skos:broader :n14304065 ; + skos:inScheme ; + skos:prefLabel "Ruppach"@de . + +:n138010440103 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Etscheid"@de . + +:n23301 a skos:Concept ; + skos:broader :n233 ; + skos:inScheme ; + skos:prefLabel "Daun, Verbandsgemeinde"@de . + +:n13708211 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Kettig"@de . + +:n13704008 a skos:Concept ; + skos:broader :n13704 ; + skos:inScheme ; + skos:prefLabel "Bell"@de . + +:n235030680500 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Konz"@de . + +:n235081520105 a skos:Concept ; + skos:broader :n23508152 ; + skos:inScheme ; + skos:prefLabel "Frommersbach"@de . + +:n13209002 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Alsdorf"@de . + +:n23208115 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Scharfbillig"@de . + +:n33202026 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Herxheim am Berg"@de . + +:n14107502 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Diethardt"@de . + +:n13310049 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Hundsbach"@de . + +:n13301104 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Tiefenthal"@de . + +:n140005010100 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Bad Salzig (Ortsbezirk)"@de . + +:n13502043 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Kaifenheim"@de . + +:n333070140102 a skos:Concept ; + skos:broader :n33307014 ; + skos:inScheme ; + skos:prefLabel "Hanauerhof"@de . + +:n33307025 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Gerbach"@de . + +:n13102 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Altenahr, Verbandsgemeinde"@de . + +:n140091170101 a skos:Concept ; + skos:broader :n14009117 ; + skos:inScheme ; + skos:prefLabel "Nenzhäuserhof, Hsgr."@de . + +:n33609027 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Frohnhofen"@de . + +:n333060200102 a skos:Concept ; + skos:broader :n33306020 ; + skos:inScheme ; + skos:prefLabel "Fuchshof"@de . + +:n134020150103 a skos:Concept ; + skos:broader :n13402015 ; + skos:inScheme ; + skos:prefLabel "Traunen"@de . + +:n337030200101 a skos:Concept ; + skos:broader :n33703020 ; + skos:inScheme ; + skos:prefLabel "Heldenstein, Forsthaus"@de . + +:n13805011 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Dernbach"@de . + +:n33202005 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Bobenheim am Berg"@de . + +:n335080160300 a skos:Concept ; + skos:broader :n33508016 ; + skos:inScheme ; + skos:prefLabel "Spesbach"@de . + +:n33307083 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Winterborn"@de . + +:n335100170105 a skos:Concept ; + skos:broader :n33510017 ; + skos:inScheme ; + skos:prefLabel "Schafmühle"@de . + +:n23207010 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Beilingen"@de . + +:n23208009 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Baustert"@de . + +:n4094352n5 a skos:Concept ; + skos:broader :n15 ; + skos:inScheme ; + skos:prefLabel "Haardt"@de . + +:n33105060 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Siefersheim"@de . + +:n131042080102 a skos:Concept ; + skos:broader :n13104208 ; + skos:inScheme ; + skos:prefLabel "Heulingshof"@de . + +:n33106059 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Schornsheim"@de . + +:n33703021 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Edesheim"@de . + +:n13502022 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Dünfus"@de . + +:n333070660101 a skos:Concept ; + skos:broader :n33307066 ; + skos:inScheme ; + skos:prefLabel "Hengstbacherhof"@de . + +:n33307004 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Bayerfeld-Steckweiler"@de . + +:n339 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Mainz-Bingen, Landkreis"@de . + +:n132081170402 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Brückhöfe"@de . + +:n231085040201 a skos:Concept ; + skos:broader :n23108504 ; + skos:inScheme ; + skos:prefLabel "Wenzelhausen"@de . + +:n313000000500 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Mörzheim (Ortsbezirk)"@de . + +:n23108009 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Bettenfeld"@de . + +:n13402022 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Elchweiler"@de . + +:n135020310102 a skos:Concept ; + skos:broader :n13502031 ; + skos:inScheme ; + skos:prefLabel "Molzig"@de . + +:n13405089 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Veitsrodt"@de . + +:n233042170102 a skos:Concept ; + skos:broader :n23304217 ; + skos:inScheme ; + skos:prefLabel "Kölnische Höfe"@de . + +:n131000070403 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Heppingen (Ortsbezirk)"@de . + +:n33509006 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Eulenbis"@de . + +:n33609064 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Nanzdietschweiler"@de . + +:n34009041 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Saalstadt"@de . + +:n235040850101 a skos:Concept ; + skos:broader :n23504085 ; + skos:inScheme ; + skos:prefLabel "Eisenbahnhaltepunkt Grünhaus-Mertesdorf"@de . + +:n211000001000 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Kernscheid (Ortsbezirk 16)"@de . + +:n33304007 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Bischheim"@de . + +:n23501114 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Reinsfeld"@de . + +:n137021140101 a skos:Concept ; + skos:broader :n13702114 ; + skos:inScheme ; + skos:prefLabel "Burg Eltz"@de . + +:n13402080 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Schwollen"@de . + +:n23306036 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Kalenborn-Scheuern"@de . + +:n319000001303 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Fahrt"@de . + +:n335110470115 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n131040410101 a skos:Concept ; + skos:broader :n13104041 ; + skos:inScheme ; + skos:prefLabel "Landgut Leyerhof"@de . + +:n13310065 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Meisenheim, Stadt"@de . + +:n235010450107 a skos:Concept ; + skos:broader :n23501045 ; + skos:inScheme ; + skos:prefLabel "Lascheiderhof"@de . + +:n23208046 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Hamm"@de . + +:n332000020112 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Jägertal"@de . + +:n13402001 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Abentheuer"@de . + +:n336090640300 a skos:Concept ; + skos:broader :n33609064 ; + skos:inScheme ; + skos:prefLabel "Nanzweiler"@de . + +:n23508123 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Schömerich"@de . + +:n13709205 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Brodenbach"@de . + +:n33902026 a skos:Concept ; + skos:broader :n33902 ; + skos:inScheme ; + skos:prefLabel "Harxheim"@de . + +:n332070070200 a skos:Concept ; + skos:broader :n33207007 ; + skos:inScheme ; + skos:prefLabel "Hertlingshausen"@de . + +:n339060470101 a skos:Concept ; + skos:broader :n33906047 ; + skos:inScheme ; + skos:prefLabel "Am Wald"@de . + +:n335095010100 a skos:Concept ; + skos:broader :n33509501 ; + skos:inScheme ; + skos:prefLabel "Albersbach"@de . + +:n34006044 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Schmalenberg"@de . + +:n143092540100 a skos:Concept ; + skos:broader :n14309254 ; + skos:inScheme ; + skos:prefLabel "Hinterkirchen"@de . + +:n231010920100 a skos:Concept ; + skos:broader :n23101092 ; + skos:inScheme ; + skos:prefLabel "Dhron"@de . + +:n23108046 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Großlittgen"@de . + +:n235071370400 a skos:Concept ; + skos:broader :n23507137 ; + skos:inScheme ; + skos:prefLabel "Udelfangen (Ortsbezirk)"@de . + +:n23501008 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Beuren (Hochwald)"@de . + +:n23206276 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Niederlauch"@de . + +:n23101016 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Burgen"@de . + +:n33509043 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Schwedelbach"@de . + +:n14308208 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Berod bei Wallmerod"@de . + +:n335100130102 a skos:Concept ; + skos:broader :n33510013 ; + skos:inScheme ; + skos:prefLabel "Horterhof"@de . + +:n340030260101 a skos:Concept ; + skos:broader :n34003026 ; + skos:inScheme ; + skos:prefLabel "Einöderwiesenhof"@de . + +:n337050070100 a skos:Concept ; + skos:broader :n33705007 ; + skos:inScheme ; + skos:prefLabel "Appenhofen"@de . + +:n13405047 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Kirschweiler"@de . + +:n23507501 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Welschbillig"@de . + +:n232050670500 a skos:Concept ; + skos:broader :n23205067 ; + skos:inScheme ; + skos:prefLabel "Seimerich"@de . + +:n131030060100 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Niederbreisig"@de . + +:n334050180100 a skos:Concept ; + skos:broader :n33405018 ; + skos:inScheme ; + skos:prefLabel "Niederlustadt"@de . + +:n23108025 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Eckfeld"@de . + +:n23208083 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Mülbach"@de . + +:n14308266 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Molsberg"@de . + +:n33511204 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Schopp"@de . + +:n14004135 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Schlierschied"@de . + +:n23205028 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Echternacherbrück"@de . + +:n334 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Germersheim, Landkreis"@de . + +:n34003026 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Kröppen"@de . + +:n235070010104 a skos:Concept ; + skos:broader :n23507001 ; + skos:inScheme ; + skos:prefLabel "Neuhaus"@de . + +:n33510035 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Otterberg, Stadt"@de . + +:n23504021 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Farschweiler"@de . + +:n13310081 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Raumbach"@de . + +:n23501045 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Hermeskeil, Stadt"@de . + +:n23208062 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Ingendorf"@de . + +:n14301300 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Unnau"@de . + +:n23304224 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Lirstal"@de . + +:n14307018 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Freilingen"@de . + +:n235081490100 a skos:Concept ; + skos:broader :n23508149 ; + skos:inScheme ; + skos:prefLabel "Bilzingen (Ortsbezirk)"@de . + +:n133105010301 a skos:Concept ; + skos:broader :n13310501 ; + skos:inScheme ; + skos:prefLabel "Dörndich"@de . + +:n13709221 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Rhens, Stadt"@de . + +:n33906017 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Essenheim"@de . + +:n23201333 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Üttfeld"@de . + +:n33106033 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Gau-Weinheim"@de . + +:n231001340200 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Dorf (Ortsbezirk)"@de . + +:n14004029 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Dill"@de . + +:n33502 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Enkenbach-Alsenborn, Verbandsgemeinde"@de . + +:n14309308 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Westerburg, Stadt"@de . + +:n23108062 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Hupperath"@de . + +:n34008207 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Dellfeld"@de . + +:n23201248 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Kickeshausen"@de . + +:n315000001200 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Weisenau (Ortsbezirk)"@de . + +:n140090430100 a skos:Concept ; + skos:broader :n14009043 ; + skos:inScheme ; + skos:prefLabel "Niedergondershausen"@de . + +:n33510014 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Hirschhorn (Pfalz)"@de . + +:n334005010300 a skos:Concept ; + skos:broader :n33400501 ; + skos:inScheme ; + skos:prefLabel "Schaidt (Ortsbezirk)"@de . + +:n335110470110 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Langensohl"@de . + +:n13310060 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Löllbach"@de . + +:n132080080122 a skos:Concept ; + skos:broader :n13208008 ; + skos:inScheme ; + skos:prefLabel "Steckelbach"@de . + +:n23205065 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Kaschenbach"@de . + +:n13309059 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Limbach"@de . + +:n23304203 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Berenbach"@de . + +:n233060760300 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Niederehe (Ortsbezirk)"@de . + +:n132070630602 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Düsternseifen"@de . + +:n231010080400 a skos:Concept ; + skos:broader :n23101008 ; + skos:inScheme ; + skos:prefLabel "Wehlen (Ortsbezirk)"@de . + +:n13301030 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Feilbingert"@de . + +:n143012060200 a skos:Concept ; + skos:broader :n14301206 ; + skos:inScheme ; + skos:prefLabel "Eichenstruth"@de . + +:n340092250101 a skos:Concept ; + skos:broader :n34009225 ; + skos:inScheme ; + skos:prefLabel "Seitershof"@de . + +:n138020380105 a skos:Concept ; + skos:broader :n13802038 ; + skos:inScheme ; + skos:prefLabel "Marienburg"@de . + +:n134020420201 a skos:Concept ; + skos:broader :n13402042 ; + skos:inScheme ; + skos:prefLabel "Bleiderdingen"@de . + +:n23508033 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Greimerath"@de . + +:n23101090 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Mülheim an der Mosel"@de . + +:n132030500100 a skos:Concept ; + skos:broader :n13203050 ; + skos:inScheme ; + skos:prefLabel "Dermbach (Ortsbezirk)"@de . + +:n14304079 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Welschneudorf"@de . + +:n14008126 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Riegenroth"@de . + +:n14004151 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Todenroth"@de . + +:n23206271 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Mützenich"@de . + +:n33906054 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Sörgenloch"@de . + +:n132080080101 a skos:Concept ; + skos:broader :n13208008 ; + skos:inScheme ; + skos:prefLabel "Bilgenroth"@de . + +:n23208020 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Brecht"@de . + +:n13309038 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Hahnenbach"@de . + +:n14308203 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Arnshöfen"@de . + +:n138040680300 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Notscheid"@de . + +:n340082210101 a skos:Concept ; + skos:broader :n34008221 ; + skos:inScheme ; + skos:prefLabel "Riedelbergermühle"@de . + +:n23201285 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Oberpierscheid"@de . + +:n131000770601 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Beuler Hof"@de . + +:n131040590104 a skos:Concept ; + skos:broader :n13104059 ; + skos:inScheme ; + skos:prefLabel "Schelborn"@de . + +:n23108503 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Landscheid"@de . + +:n138010030300 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Schöneberg"@de . + +:n231011260103 a skos:Concept ; + skos:broader :n23101126 ; + skos:inScheme ; + skos:prefLabel "Thalveldenz"@de . + +:n33405017 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Lingenfeld"@de . + +:n13309096 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Simmertal"@de . + +:n14006 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Simmern-Rheinböllen, Verbandsgemeinde"@de . + +:n13310501 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Bad Sobernheim, Stadt"@de . + +:n14004130 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Rohrbach"@de . + +:n14008099 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Mutterschied"@de . + +:n13405 a skos:Concept ; + skos:broader :n134 ; + skos:inScheme ; + skos:prefLabel "Herrstein-Rhaunen, Verbandsgemeinde"@de . + +:n333070280102 a skos:Concept ; + skos:broader :n33307028 ; + skos:inScheme ; + skos:prefLabel "Messersbacherhof"@de . + +:n23206250 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Kleinlangenfeld"@de . + +:n14301231 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Hahn bei Marienberg"@de . + +:n133061150102 a skos:Concept ; + skos:broader :n13306115 ; + skos:inScheme ; + skos:prefLabel "Kreershäuschen"@de . + +:n131015010300 a skos:Concept ; + skos:broader :n13101501 ; + skos:inScheme ; + skos:prefLabel "Niederadenau (Ortsbezirk)"@de . + +:n312000000400 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Erfenbach (Ortsbezirk)"@de . + +:n132100510101 a skos:Concept ; + skos:broader :n13210051 ; + skos:inScheme ; + skos:prefLabel "Beul"@de . + +:n33705009 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Birkweiler"@de . + +:n233060260202 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Niedereich"@de . + +:n34008223 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Rosenkopf"@de . + +:n23201264 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Manderscheid"@de . + +:n235081540500 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Portz (Ortsbezirk)"@de . + +:n33207027 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Hettenleidelheim"@de . + +:n140081000101 a skos:Concept ; + skos:broader :n14008100 ; + skos:inScheme ; + skos:prefLabel "Auf dem Schmiedel"@de . + +:n13306105 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Traisen"@de . + +:n13306099 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Spabrücken"@de . + +:n133060270103 a skos:Concept ; + skos:broader :n13306027 ; + skos:inScheme ; + skos:prefLabel "Montforterhof"@de . + +:n13210115 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Weyerbusch"@de . + +:n23205002 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Alsdorf"@de . + +:n14004024 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Büchenbeuren"@de . + +:n34008202 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Battweiler"@de . + +:n339070240103 a skos:Concept ; + skos:broader :n33907024 ; + skos:inScheme ; + skos:prefLabel "Wasserwerk"@de . + +:n138000451101 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Monrepos"@de . + +:n33207006 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Bockenheim an der Weinstraße"@de . + +:n232080090101 a skos:Concept ; + skos:broader :n23208009 ; + skos:inScheme ; + skos:prefLabel "Baustertgraben"@de . + +:n14109023 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Dachsenhausen"@de . + +:n235071110300 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Kersch (Ortsbezirk)"@de . + +:n337070230101 a skos:Concept ; + skos:broader :n33707023 ; + skos:inScheme ; + skos:prefLabel "Dreihof"@de . + +:n13702095 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Rüber"@de . + +:n135010820208 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Maria Engelport, Kloster"@de . + +:n138000450500 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Heimbach-Weis (Ortsbezirk)"@de . + +:n14302267 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Mudenbach"@de . + +:n13210088 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Orfgen"@de . + +:n340040380109 a skos:Concept ; + skos:broader :n34004038 ; + skos:inScheme ; + skos:prefLabel "Imsbachermühle"@de . + +:n13707218 a skos:Concept ; + skos:broader :n13707 ; + skos:inScheme ; + skos:prefLabel "Niederwerth"@de . + +:n13104055 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Niederzissen"@de . + +:n14004082 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Lautzenhausen"@de . + +:n13101079 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Trierscheid"@de . + +:n23109120 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Starkenburg"@de . + +:n138020240102 a skos:Concept ; + skos:broader :n13802024 ; + skos:inScheme ; + skos:prefLabel "Niederhammerstein"@de . + +:n138 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Neuwied, Landkreis"@de . + +:n33107006 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Bechtheim"@de . + +:n312000002101 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Erzhütten"@de . + +:n14009205 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Morshausen"@de . + +:n13210009 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Birnbach"@de . + +:n33808001 a skos:Concept ; + skos:broader :n33808 ; + skos:inScheme ; + skos:prefLabel "Altrip"@de . + +:n132060070101 a skos:Concept ; + skos:broader :n13206007 ; + skos:inScheme ; + skos:prefLabel "Kratzhahn"@de . + +:n33405033 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Westheim (Pfalz)"@de . + +:n232063040200 a skos:Concept ; + skos:broader :n23206304 ; + skos:inScheme ; + skos:prefLabel "Wetteldorf"@de . + +:n231011330108 a skos:Concept ; + skos:broader :n23101133 ; + skos:inScheme ; + skos:prefLabel "Rondel"@de . + +:n231080800105 a skos:Concept ; + skos:broader :n23108080 ; + skos:inScheme ; + skos:prefLabel "Kapellenhof"@de . + +:n132100480101 a skos:Concept ; + skos:broader :n13210048 ; + skos:inScheme ; + skos:prefLabel "Eng"@de . + +:n38 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Katholische Kirche / Diözese Trier"@de . + +:n232085010100 a skos:Concept ; + skos:broader :n23208501 ; + skos:inScheme ; + skos:prefLabel "Hermesdorf (Ortsbezirk)"@de . + +:n13210067 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Mammelzen"@de . + +:n33702049 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Klingenmünster"@de . + +:n23506115 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Riol"@de . + +:n13101058 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Nürburg"@de . + +:n335080300102 a skos:Concept ; + skos:broader :n33508030 ; + skos:inScheme ; + skos:prefLabel "Kirchmohr"@de . + +:n23106123 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Thalfang"@de . + +:n33306 a skos:Concept ; + skos:broader :n333 ; + skos:inScheme ; + skos:prefLabel "Winnweiler, Verbandsgemeinde"@de . + +:n335080440100 a skos:Concept ; + skos:broader :n33508044 ; + skos:inScheme ; + skos:prefLabel "Obermohr"@de . + +:n33511045 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Stelzenberg"@de . + +:n138040680210 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Steinshardt"@de . + +:n23109014 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Burg (Mosel)"@de . + +:n14302310 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Wied"@de . + +:n23201201 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Arzfeld"@de . + +:n14304053 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Niederelbert"@de . + +:n231010700700 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Pilmeroth (Ortsbezirk)"@de . + +:n231085030102 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Heeg"@de . + +:n14008100 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Nannhausen"@de . + +:n335010030200 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Buchholz"@de . + +:n17 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Nordpfälzer Bergland"@de . + +:n13702053 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Kollig"@de . + +:n14103029 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Diez,Stadt"@de . + +:n138090710300 a skos:Concept ; + skos:broader :n13809071 ; + skos:inScheme ; + skos:prefLabel "Niederhonnefeld"@de . + +:n13306036 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Gutenberg"@de . + +:n14302225 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Giesenhausen"@de . + +:n132100620104 a skos:Concept ; + skos:broader :n13210062 ; + skos:inScheme ; + skos:prefLabel "Neuenhof"@de . + +:n13210046 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Hasselbach"@de . + +:n13501029 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Faid"@de . + +:n14004040 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Gehlweiler"@de . + +:n14008015 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Biebern"@de . + +:n13101037 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Kaltenborn"@de . + +:n23109072 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Kröv"@de . + +:n137082160205 a skos:Concept ; + skos:broader :n13708216 ; + skos:inScheme ; + skos:prefLabel "Urmitz-Bahnhof"@de . + +:n34009217 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Maßweiler"@de . + +:n34001039 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Rumbach"@de . + +:n231090570107 a skos:Concept ; + skos:broader :n23109057 ; + skos:inScheme ; + skos:prefLabel "Krinkhof (Ortsbezirk)"@de . + +:n23106017 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Burtscheid"@de . + +:n13306100 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Spall"@de . + +:n143040480500 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Horressen (Ortsbezirk)"@de . + +:n13210110 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Volkerzen"@de . + +:n141111250101 a skos:Concept ; + skos:broader :n14111125 ; + skos:inScheme ; + skos:prefLabel "Zollhaus"@de . + +:n143030320107 a skos:Concept ; + skos:broader :n14303032 ; + skos:inScheme ; + skos:prefLabel "Höhr"@de . + +:n33306069 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Schweisweiler"@de . + +:n138040680104 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Noll"@de . + +:n13306015 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Braunweiler"@de . + +:n131020270108 a skos:Concept ; + skos:broader :n13102027 ; + skos:inScheme ; + skos:prefLabel "Oberheckenbach"@de . + +:n14302204 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Astert"@de . + +:n138090070114 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Solscheid"@de . + +:n333065030101 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Bahnhof Langmeil"@de . + +:n23506067 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Köwerich"@de . + +:n138040090107 a skos:Concept ; + skos:broader :n13804009 ; + skos:inScheme ; + skos:prefLabel "Wallen"@de . + +:n235081040600 a skos:Concept ; + skos:broader :n23508104 ; + skos:inScheme ; + skos:prefLabel "Wehr (Ortsbezirk)"@de . + +:n13804055 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Ockenfels"@de . + +:n336090920100 a skos:Concept ; + skos:broader :n33609092 ; + skos:inScheme ; + skos:prefLabel "Kübelberg"@de . + +:n33207001 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Altleiningen"@de . + +:n23301068 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Steiningen"@de . + +:n14109501 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Braubach, Stadt"@de . + +:n137092050106 a skos:Concept ; + skos:broader :n13709205 ; + skos:inScheme ; + skos:prefLabel "Jahrsbergerhöfe"@de . + +:n13209 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Betzdorf-Gebhardshain, Verbandsgemeinde"@de . + +:n33907064 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Weinolsheim"@de . + +:n334050330101 a skos:Concept ; + skos:broader :n33405033 ; + skos:inScheme ; + skos:prefLabel "Holzmühle"@de . + +:n54 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Staat Nassau"@de . + +:n138070730104 a skos:Concept ; + skos:broader :n13807073 ; + skos:inScheme ; + skos:prefLabel "Hohenunkel, Hof u.Erhh."@de . + +:n135010820203 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Gotteshäuserhof"@de . + +:n14309213 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Brandscheid"@de . + +:n14306237 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Hellenhahn-Schellenberg"@de . + +:n14302262 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Merkelbach"@de . + +:n232062020401 a skos:Concept ; + skos:broader :n23206202 ; + skos:inScheme ; + skos:prefLabel "Verschneid"@de . + +:n13210083 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Oberlahr"@de . + +:n138010800305 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Kölsch-Büllesbach"@de . + +:n13401008 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Berschweiler bei Baumholder"@de . + +:n13501066 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Müden (Mosel)"@de . + +:n33306048 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Münchweiler an der Alsenz"@de . + +:n339010030107 a skos:Concept ; + skos:broader :n33901003 ; + skos:inScheme ; + skos:prefLabel "Medenscheid (Ortsbezirk)"@de . + +:n13101074 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Schuld"@de . + +:n133090410200 a skos:Concept ; + skos:broader :n13309041 ; + skos:inScheme ; + skos:prefLabel "Krebsweiler"@de . + +:n133 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Bad Kreuznach, Landkreis"@de . + +:n13210004 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Bachenberg"@de . + +:n14107105 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Oberwallmenach"@de . + +:n14103130 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Steinsberg"@de . + +:n14306295 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Stein-Neukirch"@de . + +:n23106054 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Hilscheid"@de . + +:n131020290200 a skos:Concept ; + skos:broader :n13102029 ; + skos:inScheme ; + skos:prefLabel "Liers"@de . + +:n231080800100 a skos:Concept ; + skos:broader :n23108080 ; + skos:inScheme ; + skos:prefLabel "Manderscheid"@de . + +:n137030060101 a skos:Concept ; + skos:broader :n13703006 ; + skos:inScheme ; + skos:prefLabel "Netterhöfe"@de . + +:n143022020101 a skos:Concept ; + skos:broader :n14302202 ; + skos:inScheme ; + skos:prefLabel "Dehlingen"@de . + +:n14305068 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Sessenbach"@de . + +:n133105010100 a skos:Concept ; + skos:broader :n13310501 ; + skos:inScheme ; + skos:prefLabel "Eckweiler"@de . + +:n33907043 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Nierstein, Stadt"@de . + +:n14103045 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Geilnau"@de . + +:n13203018 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Daaden, Stadt"@de . + +:n14302241 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Höchstenbach"@de . + +:n14111088 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Mittelfischbach"@de . + +:n13210062 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Kircheib"@de . + +:n231081130100 a skos:Concept ; + skos:broader :n23108113 ; + skos:inScheme ; + skos:prefLabel "Dörbach"@de . + +:n33306027 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Gonbach"@de . + +:n336080430101 a skos:Concept ; + skos:broader :n33608043 ; + skos:inScheme ; + skos:prefLabel "Sulzhof"@de . + +:n137000030401 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Nettehammer"@de . + +:n33608029 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Ginsweiler"@de . + +:n34004031 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Merzalben"@de . + +:n132060910104 a skos:Concept ; + skos:broader :n13206091 ; + skos:inScheme ; + skos:prefLabel "Niederhausen"@de . + +:n311000000300 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Flomersheim (Ortsbezirk)"@de . + +:n131000700400 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Oedingen (Ortsbezirk 4)"@de . + +:n132100970105 a skos:Concept ; + skos:broader :n13210097 ; + skos:inScheme ; + skos:prefLabel "Kaffroth"@de . + +:n91 a skos:Concept ; + skos:broader :n5 ; + skos:inScheme ; + skos:prefLabel "Saar-Lor-Lux"@de . + +:n14107078 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Lautert"@de . + +:n141101280101 a skos:Concept ; + skos:broader :n14110128 ; + skos:inScheme ; + skos:prefLabel "Arnstein, Kloster"@de . + +:n14306274 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Niederroßbach"@de . + +:n231081030100 a skos:Concept ; + skos:broader :n23108103 ; + skos:inScheme ; + skos:prefLabel "Monzel"@de . + +:n138050580101 a skos:Concept ; + skos:broader :n13805058 ; + skos:inScheme ; + skos:prefLabel "Brubbach"@de . + +:n12 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Rheinhessisches Hügelland"@de . + +:n111000000700 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Horchheim"@de . + +:n33608087 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Rothselberg"@de . + +:n339000050400 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Dietersheim"@de . + +:n13210041 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Giershausen"@de . + +:n13501024 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Ediger-Eller"@de . + +:n14309 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Westerburg, Verbandsgemeinde"@de . + +:n23506083 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Mehring"@de . + +:n13101032 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Honerath"@de . + +:n336080950100 a skos:Concept ; + skos:broader :n33608095 ; + skos:inScheme ; + skos:prefLabel "Eschenau"@de . + +:n13310 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Nahe-Glan, Verbandsgemeinde"@de . + +:n340010290101 a skos:Concept ; + skos:broader :n34001029 ; + skos:inScheme ; + skos:prefLabel "Reißlerhof"@de . + +:n137082160200 a skos:Concept ; + skos:broader :n13708216 ; + skos:inScheme ; + skos:prefLabel "Mülheim"@de . + +:n138010440205 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Dinkelbach (ehemals Gemeinde Elsaff)"@de . + +:n34001034 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Nothweiler"@de . + +:n33101007 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Bechtolsheim"@de . + +:n23301084 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Winkel (Eifel)"@de . + +:n13708 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Weißenthurm, Verbandsgemeinde"@de . + +:n23506004 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Bekond"@de . + +:n70 a skos:Concept ; + skos:broader :n5 ; + skos:inScheme ; + skos:prefLabel "Saarland"@de . + +:n33403009 a skos:Concept ; + skos:broader :n33403 ; + skos:inScheme ; + skos:prefLabel "Hatzenbühl"@de . + +:n333075020200 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Marienthal (Ortsbezirk)"@de . + +:n13501082 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Treis-Karden"@de . + +:n13708228 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Weißenthurm, Stadt"@de . + +:n13209098 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Scheuerfeld"@de . + +:n33610066 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Neunkirchen am Potzberg"@de . + +:n320000000400 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Hengstbach"@de . + +:n131000770400 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Löhndorf (Ortsbezirk)"@de . + +:n33502205 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Sembach"@de . + +:n4653560n3 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Ahreifel"@de . + +:n140005010202 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Buchenau"@de . + +:n333070670101 a skos:Concept ; + skos:broader :n33307067 ; + skos:inScheme ; + skos:prefLabel "Sulzhof"@de . + +:n14305084 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Wittgert"@de . + +:n23301063 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Schalkenmehren"@de . + +:n135010200114 a skos:Concept ; + skos:broader :n13501020 ; + skos:inScheme ; + skos:prefLabel "Sehl"@de . + +:n143023010103 a skos:Concept ; + skos:broader :n14302301 ; + skos:inScheme ; + skos:prefLabel "Marzauer Mühle"@de . + +:n14103061 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Holzheim"@de . + +:n137000680500 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Nitztal (Ortsbezirk)"@de . + +:n33702060 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Oberschlettenbach"@de . + +:n138010800300 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Krautscheid"@de . + +:n13102068 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Rech"@de . + +:n33608045 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Hoppstädten"@de . + +:n33101044 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Mauchenheim"@de . + +:n232000180600 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Mötsch (Ortsbezirk)"@de . + +:n13311056 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Laubenheim"@de . + +:n14107100 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Oberbachheim"@de . + +:n14107094 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Niederbachheim"@de . + +:n111000001800 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Pfaffendorf"@de . + +:n231010410101 a skos:Concept ; + skos:broader :n23101041 ; + skos:inScheme ; + skos:prefLabel "Graacher Schäferei"@de . + +:n134020580102 a skos:Concept ; + skos:broader :n13402058 ; + skos:inScheme ; + skos:prefLabel "Burbach"@de . + +:n233060350103 a skos:Concept ; + skos:broader :n23306035 ; + skos:inScheme ; + skos:prefLabel "Glaadt"@de . + +:n137025010100 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Keldung (Ortsbezirk)"@de . + +:n23301042 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Mehren"@de . + +:n337030280101 a skos:Concept ; + skos:broader :n33703028 ; + skos:inScheme ; + skos:prefLabel "Hainbachtal, Papiermühle"@de . + +:n14009110 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Norath"@de . + +:n335020040200 a skos:Concept ; + skos:broader :n33502004 ; + skos:inScheme ; + skos:prefLabel "Enkenbach"@de . + +:n13703063 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Lind"@de . + +:n14107015 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Bogel"@de . + +:n340082080103 a skos:Concept ; + skos:broader :n34008208 ; + skos:inScheme ; + skos:prefLabel "Kirschbachermühle"@de . + +:n13102047 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Lind"@de . + +:n14009025 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Damscheid"@de . + +:n140032020200 a skos:Concept ; + skos:broader :n14003202 ; + skos:inScheme ; + skos:prefLabel "Dorweiler (Ortsbezirk)"@de . + +:n33901007 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Breitscheid"@de . + +:n33610024 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Etschberg"@de . + +:n34002049 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Spirkelbach"@de . + +:n317000000700 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Winzeln (Ortsbezirk)"@de . + +:n13311035 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Guldental"@de . + +:n132081170419 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Widderbach"@de . + +:n14308501 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Elbingen"@de . + +:n23306223 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Kopp"@de . + +:n141000750210 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Friedland"@de . + +:n23301021 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Ellscheid"@de . + +:n13505073 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Pünderich"@de . + +:n33307079 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Waldgrehweiler"@de . + +:n33306080 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Wartenberg-Rohrbach"@de . + +:n33609 a skos:Concept ; + skos:broader :n336 ; + skos:inScheme ; + skos:prefLabel "Oberes Glantal, Verbandsgemeinde"@de . + +:n133000060601 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Bad Münster am Stein"@de . + +:n23207006 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Auw an der Kyll"@de . + +:n211000000501 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Herresthal"@de . + +:n335100340200 a skos:Concept ; + skos:broader :n33510034 ; + skos:inScheme ; + skos:prefLabel "Sambach (Ortsbezirk)"@de . + +:n13311093 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Schweppenhausen"@de . + +:n23504107 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Pluwig"@de . + +:n132070370168 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Wildenburg"@de . + +:n14304 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Montabaur, Verbandsgemeinde"@de . + +:n33610003 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Altenglan"@de . + +:n13703 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Vordereifel, Verbandsgemeinde"@de . + +:n235040900104 a skos:Concept ; + skos:broader :n23504090 ; + skos:inScheme ; + skos:prefLabel "Schloß Marienlay"@de . + +:n13203050 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Herdorf, Stadt"@de . + +:n232013330404 a skos:Concept ; + skos:broader :n23201333 ; + skos:inScheme ; + skos:prefLabel "Spielmannsholz"@de . + +:n233060260500 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Hinterhausen (Ortsbezirk)"@de . + +:n13402018 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Dambach"@de . + +:n33901044 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Oberdiebach"@de . + +:n33105 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Wöllstein, Verbandsgemeinde"@de . + +:n33608061 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Medard"@de . + +:n34009037 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Petersberg"@de . + +:n33105035 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Gumbsheim"@de . + +:n231005020300 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Gonzerath (Ortsbezirk)"@de . + +:n337015010400 a skos:Concept ; + skos:broader :n33701501 ; + skos:inScheme ; + skos:prefLabel "Queichhambach (Ortsbezirk)"@de . + +:n13206038 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Fürthen"@de . + +:n132070370147 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Oberweidenbruch"@de . + +:n233010630106 a skos:Concept ; + skos:broader :n23301063 ; + skos:inScheme ; + skos:prefLabel "Observatorium Hoher List"@de . + +:n33205014 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Elmstein"@de . + +:n135010250102 a skos:Concept ; + skos:broader :n13501025 ; + skos:inScheme ; + skos:prefLabel "Poltersdorf"@de . + +:n319000000300 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Heppenheim (Ortsbezirk)"@de . + +:n13206102 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Seelbach bei Hamm (Sieg)"@de . + +:n33307037 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Katzenbach"@de . + +:n23508119 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Schillingen"@de . + +:n13708202 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Bassenheim"@de . + +:n13206096 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Roth"@de . + +:n23108127 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Wallscheid"@de . + +:n134000450700 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Mittelbollenbach"@de . + +:n33608040 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Herren-Sulzbach"@de . + +:n33102038 a skos:Concept ; + skos:broader :n33102 ; + skos:inScheme ; + skos:prefLabel "Hamm am Rhein"@de . + +:n14111020 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Burgschwalbach"@de . + +:n23207 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Speicher, Verbandsgemeinde"@de . + +:n340060120101 a skos:Concept ; + skos:broader :n34006012 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n14003153 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Uhler"@de . + +:n134020200101 a skos:Concept ; + skos:broader :n13402020 ; + skos:inScheme ; + skos:prefLabel "Eborn"@de . + +:n232081370102 a skos:Concept ; + skos:broader :n23208137 ; + skos:inScheme ; + skos:prefLabel "Wolsfelderberg"@de . + +:n33105072 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Wöllstein"@de . + + + a skos:ConceptScheme ; + dct:description "This controlled vocabulary for areas in Rineland-Palatinate was created for use in the Bibliography of Rhineland (RPB)." ; + dct:issued "2022-08-26" ; + dct:license ; + dct:modified "2022-10-21" ; + dct:publisher ; + dct:title "Spatial classification scheme for the Bibiography of Rhineland-Palatinate"@en , "Raumsystematik der Rheinland-Pfälzischen Bibliographie"@de ; + vann:preferredNamespacePrefix "rpb-spatial" ; + vann:preferredNamespaceUri "https://rpb.lobid.org/spatial#" ; + skos:hasTopConcept :n4 , :n5 , :n2 , :n3 , :n1 , :n6 . + +:n13505010 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Blankenrath"@de . + +:n336090960100 a skos:Concept ; + skos:broader :n33609096 ; + skos:inScheme ; + skos:prefLabel "Frutzweiler"@de . + +:n33307016 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Dörrmoschel"@de . + +:n33303041 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Lautersheim"@de . + +:n13700003 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Andernach, große kreisangehörige Stadt"@de . + +:n232081130104 a skos:Concept ; + skos:broader :n23208113 ; + skos:inScheme ; + skos:prefLabel "St.Johann"@de . + +:n132081170414 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Pirzenthal"@de . + +:n23504038 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Gutweiler"@de . + +:n131000070500 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Kirchdaun (Ortsbezirk)"@de . + +:n134020100101 a skos:Concept ; + skos:broader :n13402010 ; + skos:inScheme ; + skos:prefLabel "Burgbirkenfeld"@de . + +:n23208079 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Messerich"@de . + +:n231005021400 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Odert (Ortsbezirk)"@de . + +:n335090490105 a skos:Concept ; + skos:broader :n33509049 ; + skos:inScheme ; + skos:prefLabel "Schellenbergerhof"@de . + +:n13402034 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Hattgenstein"@de . + +:n132090240102 a skos:Concept ; + skos:broader :n13209024 ; + skos:inScheme ; + skos:prefLabel "Weiselstein"@de . + +:n131000900500 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Holzweiler (Ortsbezirk)"@de . + +:n33609076 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Ohmbach"@de . + +:n231090050105 a skos:Concept ; + skos:broader :n23109005 ; + skos:inScheme ; + skos:prefLabel "Springiersbach"@de . + +:n319000001400 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Weinsheim (Ortsbezirk)"@de . + +:n13209030 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Fensdorf"@de . + +:n333040450103 a skos:Concept ; + skos:broader :n33304045 ; + skos:inScheme ; + skos:prefLabel "Froschauerhof"@de . + +:n6 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Einzelne Landkreise, Verbandsgemeinden, Orte und Ortsteile"@de . + +:n338000040101 a skos:Concept ; + skos:broader :n33800004 ; + skos:inScheme ; + skos:prefLabel "Am Binnendamm"@de . + +:n23208058 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Hüttingen an der Kyll"@de . + +:n143022290201 a skos:Concept ; + skos:broader :n14302229 ; + skos:inScheme ; + skos:prefLabel "Hof Kleeberg"@de . + +:n33307053 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Oberhausen an der Appel"@de . + +:n13709217 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Niederfell"@de . + +:n337050090103 a skos:Concept ; + skos:broader :n33705009 ; + skos:inScheme ; + skos:prefLabel "Herrenbergerhof"@de . + +:n340092190103 a skos:Concept ; + skos:broader :n34009219 ; + skos:inScheme ; + skos:prefLabel "Obernheim"@de . + +:n33105030 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Gau-Bickelheim"@de . + +:n33106029 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Gabsheim"@de . + +:n336080230103 a skos:Concept ; + skos:broader :n33608023 ; + skos:inScheme ; + skos:prefLabel "Schneeweiderhof"@de . + +:n137000030200 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Eich (Ortsbezirk)"@de . + +:n23507051 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Igel"@de . + +:n14109109 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Patersberg"@de . + +:n13802063 a skos:Concept ; + skos:broader :n13802 ; + skos:inScheme ; + skos:prefLabel "Rheinbrohl"@de . + +:n233010630101 a skos:Concept ; + skos:broader :n23301063 ; + skos:inScheme ; + skos:prefLabel "Altburg"@de . + +:n13402071 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Rinzenberg"@de . + +:n336080850102 a skos:Concept ; + skos:broader :n33608085 ; + skos:inScheme ; + skos:prefLabel "Ingweilerhof"@de . + +:n111000001100 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Lay (Ortsbezirk 6)"@de . + +:n23109206 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Lötzbeuren"@de . + +:n23206288 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Olzheim"@de . + +:n132070630200 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Herkersdorf (Ortsbezirk)"@de . + +:n14307221 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Ewighausen"@de . + +:n333070540101 a skos:Concept ; + skos:broader :n33307054 ; + skos:inScheme ; + skos:prefLabel "Kahlforsterhof"@de . + +:n33304056 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Oberwiesen"@de . + +:n13206091 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Pracht"@de . + +:n23206209 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Büdesheim"@de . + +:n13309204 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Schneppenbach"@de . + +:n13405059 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Niederhosenbach"@de . + +:n143063110101 a skos:Concept ; + skos:broader :n14306311 ; + skos:inScheme ; + skos:prefLabel "Fuchskauten"@de . + +:n138010770104 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Hallerbach"@de . + +:n132081050101 a skos:Concept ; + skos:broader :n13208105 ; + skos:inScheme ; + skos:prefLabel "Brunken"@de . + +:n13104205 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Glees"@de . + +:n232050880101 a skos:Concept ; + skos:broader :n23205088 ; + skos:inScheme ; + skos:prefLabel "Daudistel"@de . + +:n23208101 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Orsfeld"@de . + +:n23108037 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Gladbach"@de . + +:n23101086 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Minheim"@de . + +:n312000000502 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Gersweilerhof"@de . + +:n13402050 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Leisel"@de . + +:n316000000600 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Haardt (Ortsbezirk)"@de . + +:n132100320101 a skos:Concept ; + skos:broader :n13210032 ; + skos:inScheme ; + skos:prefLabel "Ahlbach"@de . + +:n339070250103 a skos:Concept ; + skos:broader :n33907025 ; + skos:inScheme ; + skos:prefLabel "Wahlheimerhof"@de . + +:n14301248 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Kirburg"@de . + +:n143012770200 a skos:Concept ; + skos:broader :n14301277 ; + skos:inScheme ; + skos:prefLabel "Pfuhl"@de . + +:n33609092 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Schönenberg-Kübelberg"@de . + +:n141030640300 a skos:Concept ; + skos:broader :n14103064 ; + skos:inScheme ; + skos:prefLabel "Ruppenrod"@de . + +:n33200002 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Bad Dürkheim, Stadt"@de . + +:n33304035 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Jakobsweiler"@de . + +:n131010330203 a skos:Concept ; + skos:broader :n13101033 ; + skos:inScheme ; + skos:prefLabel "Hümmeler Mühle"@de . + +:n23108101 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Oberscheidweiler"@de . + +:n23108095 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Niederöfflingen"@de . + +:n33502004 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Enkenbach-Alsenborn"@de . + +:n13405038 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Herborn"@de . + +:n320000000114 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Tschifflick"@de . + +:n23208074 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Ließem"@de . + +:n23304236 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Sassen"@de . + +:n132100700102 a skos:Concept ; + skos:broader :n13210070 ; + skos:inScheme ; + skos:prefLabel "Widderstein"@de . + +:n33707061 a skos:Concept ; + skos:broader :n33707 ; + skos:inScheme ; + skos:prefLabel "Offenbach an der Queich"@de . + +:n141110510102 a skos:Concept ; + skos:broader :n14111051 ; + skos:inScheme ; + skos:prefLabel "Zollhaus"@de . + +:n23205019 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Bollendorf"@de . + +:n14301227 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Großseifen"@de . + +:n138090650104 a skos:Concept ; + skos:broader :n13809065 ; + skos:inScheme ; + skos:prefLabel "Reifert"@de . + +:n111000002200 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Wallersheim"@de . + +:n14003042 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Gödenroth"@de . + +:n23108074 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Laufeld"@de . + +:n13405017 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Bundenbach"@de . + +:n132100600102 a skos:Concept ; + skos:broader :n13210060 ; + skos:inScheme ; + skos:prefLabel "Püscheid"@de . + +:n1 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Rheinland-Pfalz insgesamt. Landesteile"@de . + +:n335110470122 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Wilensteinermühle"@de . + +:n140030090600 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Wohnroth (Ortsbezirk)"@de . + +:n13310072 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Nußbaum"@de . + +:n23501036 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Gusenburg"@de . + +:n23304215 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Höchstberg"@de . + +:n143082030101 a skos:Concept ; + skos:broader :n14308203 ; + skos:inScheme ; + skos:prefLabel "Etzelbach"@de . + +:n14004105 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Nieder Kostenz"@de . + +:n13709212 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Kobern-Gondorf"@de . + +:n131020490104 a skos:Concept ; + skos:broader :n13102049 ; + skos:inScheme ; + skos:prefLabel "Lochmühle"@de . + +:n14301206 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Bad Marienberg (Westerwald), Stadt"@de . + +:n4076027n3 a skos:Concept ; + skos:broader :n16 ; + skos:inScheme ; + skos:prefLabel "Pfälzer Gebrüch"@de . + +:n340090350104 a skos:Concept ; + skos:broader :n34009035 ; + skos:inScheme ; + skos:prefLabel "Huberhof"@de . + +:n333030170107 a skos:Concept ; + skos:broader :n33303017 ; + skos:inScheme ; + skos:prefLabel "Münsterhof"@de . + +:n340010110200 a skos:Concept ; + skos:broader :n34001011 ; + skos:inScheme ; + skos:prefLabel "Petersbächel (Ortsbezirk)"@de . + +:n333060330103 a skos:Concept ; + skos:broader :n33306033 ; + skos:inScheme ; + skos:prefLabel "Röderhof"@de . + +:n14003504 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Zilshausen"@de . + +:n135020160102 a skos:Concept ; + skos:broader :n13502016 ; + skos:inScheme ; + skos:prefLabel "Einigsmühle"@de . + +:n33103048 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Monsheim"@de . + +:n14003021 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Buch"@de . + +:n23504070 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Korlingen"@de . + +:n23108053 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Hetzerath"@de . + +:n34009 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Thaleischweiler-Wallhalben, Verbandsgemeinde"@de . + +:n14307067 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Selters (Westerwald), Stadt"@de . + +:n134050920101 a skos:Concept ; + skos:broader :n13405092 ; + skos:inScheme ; + skos:prefLabel "Weitersbacher Hütte"@de . + +:n23306022 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Esch"@de . + +:n14004163 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Womrath"@de . + +:n14008138 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Schnorbach"@de . + +:n335110470101 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Antonihof"@de . + +:n133000060400 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Planig (Ortsbezirk)"@de . + +:n13310051 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Jeckenbach"@de . + +:n23206283 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Oberlascheid"@de . + +:n23208032 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Enzen"@de . + +:n340030520102 a skos:Concept ; + skos:broader :n34003052 ; + skos:inScheme ; + skos:prefLabel "Hochstellerhof (Ortsbezirk)"@de . + +:n23205056 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Hütten"@de . + +:n14301264 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Mörlen"@de . + +:n140030100300 a skos:Concept ; + skos:broader :n14003010 ; + skos:inScheme ; + skos:prefLabel "Heyweiler (Ortsbezirk)"@de . + +:n211000000300 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Ehrang (Ortsbezirk 4)"@de . + +:n33701067 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Rinnthal"@de . + +:n132100530104 a skos:Concept ; + skos:broader :n13210053 ; + skos:inScheme ; + skos:prefLabel "Maulsbach"@de . + +:n140005010500 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Hirzenach (Ortsbezirk)"@de . + +:n14103 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Diez, Verbandsgemeinde"@de . + +:n23201297 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Reiff"@de . + +:n141111260101 a skos:Concept ; + skos:broader :n14111126 ; + skos:inScheme ; + skos:prefLabel "Apfelhof Bärbach"@de . + +:n231085030204 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Raskop"@de . + +:n23306080 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Walsdorf"@de . + +:n235081230102 a skos:Concept ; + skos:broader :n23508123 ; + skos:inScheme ; + skos:prefLabel "Kimmlerhof"@de . + +:n13502 a skos:Concept ; + skos:broader :n135 ; + skos:inScheme ; + skos:prefLabel "Kaisersesch, Verbandsgemeinde"@de . + +:n33404030 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Steinweiler"@de . + +:n23101081 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Maring-Noviand"@de . + +:n232081200104 a skos:Concept ; + skos:broader :n23208120 ; + skos:inScheme ; + skos:prefLabel "Waxbrunnen"@de . + +:n14308273 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Niederahr"@de . + +:n14307046 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Maxsain"@de . + +:n235070510103 a skos:Concept ; + skos:broader :n23507051 ; + skos:inScheme ; + skos:prefLabel "Löwener Mühle"@de . + +:n133110870101 a skos:Concept ; + skos:broader :n13311087 ; + skos:inScheme ; + skos:prefLabel "Burg Layen"@de . + +:n23106204 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Heidenburg"@de . + +:n14301243 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Hof"@de . + +:n233042180400 a skos:Concept ; + skos:broader :n23304218 ; + skos:inScheme ; + skos:prefLabel "Rothenbach-Meisenthal (Ortsbezirk)"@de . + +:n33106061 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Spiesheim"@de . + +:n231091240200 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Traben-Trarbach"@de . + +:n23508082 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Mannebach"@de . + +:n33510042 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Schneckenhausen"@de . + +:n14302306 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Welkenbach"@de . + +:n131040540102 a skos:Concept ; + skos:broader :n13104054 ; + skos:inScheme ; + skos:prefLabel "Lochmühle"@de . + +:n23508003 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Baldringen"@de . + +:n314000000300 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Maudach (Ortsbezirk)"@de . + +:n13306117 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Rüdesheim"@de . + +:n235010470100 a skos:Concept ; + skos:broader :n23501047 ; + skos:inScheme ; + skos:prefLabel "Hinzert"@de . + +:n23205093 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Niederweis"@de . + +:n137040690200 a skos:Concept ; + skos:broader :n13704069 ; + skos:inScheme ; + skos:prefLabel "Obermendig"@de . + +:n14307025 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Hartenfels"@de . + +:n138010030206 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Sessenhausen"@de . + +:n336100090200 a skos:Concept ; + skos:broader :n33610009 ; + skos:inScheme ; + skos:prefLabel "Friedelhausen (Ortsbezirk)"@de . + +:n332000240300 a skos:Concept ; + skos:broader :n33200024 ; + skos:inScheme ; + skos:prefLabel "Sausenheim (Ortsbezirk)"@de . + +:n334040300101 a skos:Concept ; + skos:broader :n33404030 ; + skos:inScheme ; + skos:prefLabel "Archenweyermühle"@de . + +:n137030070101 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Büchel"@de . + +:n134000451100 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Weierbach"@de . + +:n33903048 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Ockenheim"@de . + +:n336100240101 a skos:Concept ; + skos:broader :n33610024 ; + skos:inScheme ; + skos:prefLabel "Gehöft Hub, Leidsthalerhube"@de . + +:n13405091 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Weiden"@de . + +:n13309008 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Bärenbach"@de . + +:n14301222 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Fehl-Ritzhausen"@de . + +:n33107039 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Hangen-Weisheim"@de . + +:n235041070104 a skos:Concept ; + skos:broader :n23504107 ; + skos:inScheme ; + skos:prefLabel "Willmerich"@de . + +:n13503002 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Alflen"@de . + +:n143040200102 a skos:Concept ; + skos:broader :n14304020 ; + skos:inScheme ; + skos:prefLabel "Kirchähr"@de . + +:n13405012 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Bollenbach"@de . + +:n211000001400 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Olewig (Ortsbezirk 11)"@de . + +:n23201255 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lascheid"@de . + +:n23109068 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Kinheim"@de . + +:n34008214 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Kleinsteinhausen"@de . + +:n337020490104 a skos:Concept ; + skos:broader :n33702049 ; + skos:inScheme ; + skos:prefLabel "Magdalenenhof"@de . + +:n336080440101 a skos:Concept ; + skos:broader :n33608044 ; + skos:inScheme ; + skos:prefLabel "Schönbornerhof"@de . + +:n33907 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Rhein-Selz, Verbandsgemeinde"@de . + +:n131000900803 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Oeverich"@de . + +:n14301280 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Norken"@de . + +:n235 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Trier-Saarburg, Landkreis"@de . + +:n23205072 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Lahr"@de . + +:n140091020101 a skos:Concept ; + skos:broader :n14009102 ; + skos:inScheme ; + skos:prefLabel "Dieler"@de . + +:n23304210 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Drees"@de . + +:n13210106 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Sörth"@de . + +:n33701083 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Wernersberg"@de . + +:n235060780101 a skos:Concept ; + skos:broader :n23506078 ; + skos:inScheme ; + skos:prefLabel "Kirsch"@de . + +:n14004094 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Metzenhausen"@de . + +:n23109132 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Willwerscheid"@de . + +:n233062400205 a skos:Concept ; + skos:broader :n23306240 ; + skos:inScheme ; + skos:prefLabel "Niederkyll"@de . + +:n133060700102 a skos:Concept ; + skos:broader :n13306070 ; + skos:inScheme ; + skos:prefLabel "Ehemalige Weinbaudomäne"@de . + +:n00Sn02m0557a a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Viertäler"@de . + +:n133105010202 a skos:Concept ; + skos:broader :n13310501 ; + skos:inScheme ; + skos:prefLabel "Entenpfuhl mit Martinshof"@de . + +:n14309288 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Rotenhain"@de . + +:n23508040 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Heddert"@de . + +:n132081170213 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Weidacker"@de . + +:n233060380200 a skos:Concept ; + skos:broader :n23306038 ; + skos:inScheme ; + skos:prefLabel "Loogh (Ortsbezirk)"@de . + +:n143013000200 a skos:Concept ; + skos:broader :n14301300 ; + skos:inScheme ; + skos:prefLabel "Stangenrod"@de . + +:n132080800109 a skos:Concept ; + skos:broader :n13208080 ; + skos:inScheme ; + skos:prefLabel "Elkhausen"@de . + +:n332050160101 a skos:Concept ; + skos:broader :n33205016 ; + skos:inScheme ; + skos:prefLabel "Breitenstein"@de . + +:n23201234 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Harspelt"@de . + +:n34004 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Rodalben, Verbandsgemeinde"@de . + +:n137030490100 a skos:Concept ; + skos:broader :n13703049 ; + skos:inScheme ; + skos:prefLabel "Kirchesch"@de . + +:n340030280106 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Langmühle (Ortsbezirk)"@de . + +:n137020410102 a skos:Concept ; + skos:broader :n13702041 ; + skos:inScheme ; + skos:prefLabel "Heidgermühle"@de . + +:n13702086 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Ochtendung"@de . + +:n33403 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Jockgrim, Verbandsgemeinde"@de . + +:n14309209 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Berzhahn"@de . + +:n14308210 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Bilkheim"@de . + +:n14302258 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Linden"@de . + +:n335112040102 a skos:Concept ; + skos:broader :n33511204 ; + skos:inScheme ; + skos:prefLabel "Pulvermühle"@de . + +:n137030110104 a skos:Concept ; + skos:broader :n13703011 ; + skos:inScheme ; + skos:prefLabel "Fensterseifen"@de . + +:n315000000500 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Finthen (Ortsbezirk)"@de . + +:n14110027 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Dienethal"@de . + +:n233060760201 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Flesten"@de . + +:n14109072 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Kestert"@de . + +:n23201213 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Daleiden"@de . + +:n13803031 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Isenburg"@de . + +:n14307041 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Krümmel"@de . + +:n14304065 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Ruppach-Goldhausen"@de . + +:n133100110300 a skos:Concept ; + skos:broader :n13310011 ; + skos:inScheme ; + skos:prefLabel "Roth"@de . + +:n331000030400 a skos:Concept ; + skos:broader :n33100003 ; + skos:inScheme ; + skos:prefLabel "Schafhausen (Ortsbezirk)"@de . + +:n13702065 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Lonnig"@de . + +:n13503501 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Bad Bertrich"@de . + +:n13306048 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Hüffelsheim"@de . + +:n33107055 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Osthofen, Stadt"@de . + +:n131010440201 a skos:Concept ; + skos:broader :n13101044 ; + skos:inScheme ; + skos:prefLabel "Birnbachsmühle"@de . + +:n13210058 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Isert"@de . + +:n4678434n2 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Lützelsoon"@de . + +:n14008027 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Dichtelbach"@de . + +:n33900009 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Budenheim"@de . + +:n34004027 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Leimen"@de . + +:n14110006 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Bad Ems, Stadt"@de . + +:n33402027 a skos:Concept ; + skos:broader :n33402 ; + skos:inScheme ; + skos:prefLabel "Scheibenhardt"@de . + +:n233010430103 a skos:Concept ; + skos:broader :n23301043 ; + skos:inScheme ; + skos:prefLabel "Siedlung Rackenbach"@de . + +:n13306112 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Weinsheim"@de . + +:n23109005 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Bengel"@de . + +:n14302301 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Wahlrod"@de . + +:n232012600100 a skos:Concept ; + skos:broader :n23201260 ; + skos:inScheme ; + skos:prefLabel "Kopscheid"@de . + +:n13804009 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Dattenberg"@de . + +:n14008085 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Liebshausen"@de . + +:n333070340103 a skos:Concept ; + skos:broader :n33307034 ; + skos:inScheme ; + skos:prefLabel "Spreiterhof"@de . + +:n33907018 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Friesenheim"@de . + +:n13809053 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Oberhonnefeld-Gierend"@de . + +:n13306027 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Duchroth"@de . + +:n33702019 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Dörrenbach"@de . + +:n132070720101 a skos:Concept ; + skos:broader :n13207072 ; + skos:inScheme ; + skos:prefLabel "Birken"@de . + +:n135020230102 a skos:Concept ; + skos:broader :n13502023 ; + skos:inScheme ; + skos:prefLabel "Lehnholz"@de . + +:n13101028 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Herschbroich"@de . + +:n13306 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Rüdesheim, Verbandsgemeinde"@de . + +:n132080800125 a skos:Concept ; + skos:broader :n13208080 ; + skos:inScheme ; + skos:prefLabel "Scheuern"@de . + +:n316000001000 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Mußbach (Ortsbezirk)"@de . + +:n235030680200 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Hamm (Ortsbezirk)"@de . + +:n33902 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Bodenheim, Verbandsgemeinde"@de . + +:n315000001600 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Hartenberg/Münchfeld (Ortsbezirk)"@de . + +:n235070730300 a skos:Concept ; + skos:broader :n23507073 ; + skos:inScheme ; + skos:prefLabel "Mesenich (Ortsbezirk)"@de . + +:n141100910200 a skos:Concept ; + skos:broader :n14110091 ; + skos:inScheme ; + skos:prefLabel "Nassau"@de . + +:n232000180702 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Wingertsberg"@de . + +:n14304023 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Görgeshausen"@de . + +:n333060300103 a skos:Concept ; + skos:broader :n33306030 ; + skos:inScheme ; + skos:prefLabel "Wingertsweilerhof"@de . + +:n13101086 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Wirft"@de . + +:n13702023 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Einig"@de . + +:n138090070105 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Langscheid"@de . + +:n13210016 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Burglahr"@de . + +:n33501202 a skos:Concept ; + skos:broader :n33501 ; + skos:inScheme ; + skos:prefLabel "Langwieden"@de . + +:n34001009 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Erfweiler"@de . + +:n340030280101 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Altenwoogsmühle, Gastst."@de . + +:n45 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Hochstift Speyer"@de . + +:n14103057 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Hirschberg"@de . + +:n33107071 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Westhofen"@de . + +:n33702056 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Niederotterbach"@de . + +:n23503146 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Wellen"@de . + +:n13104041 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Königsfeld"@de . + +:n138030120400 a skos:Concept ; + skos:broader :n13803012 ; + skos:inScheme ; + skos:prefLabel "Giershofen (Ortsbezirk)"@de . + +:n13101065 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Pomster"@de . + +:n232080770101 a skos:Concept ; + skos:broader :n23208077 ; + skos:inScheme ; + skos:prefLabel "Meilbrück"@de . + +:n33903001 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Appenheim"@de . + +:n143093080300 a skos:Concept ; + skos:broader :n14309308 ; + skos:inScheme ; + skos:prefLabel "Wengenroth"@de . + +:n235071510108 a skos:Concept ; + skos:broader :n23507151 ; + skos:inScheme ; + skos:prefLabel "Schleidweiler (Ortsbezirk)"@de . + +:n332000020401 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Pfeffingen"@de . + +:n14306286 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Rennerod, Stadt"@de . + +:n135030830104 a skos:Concept ; + skos:broader :n13503083 ; + skos:inScheme ; + skos:prefLabel "Meiserich (Ortsbezirk)"@de . + +:n14305059 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Oberhaid"@de . + +:n132080110107 a skos:Concept ; + skos:broader :n13208011 ; + skos:inScheme ; + skos:prefLabel "Kleehahn"@de . + +:n312000002002 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Blechhammer"@de . + +:n33800025 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Schifferstadt, Stadt"@de . + +:n24 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Moseltal"@de . + +:n33610099 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Ulmet"@de . + +:n137092170104 a skos:Concept ; + skos:broader :n13709217 ; + skos:inScheme ; + skos:prefLabel "Kühr"@de . + +:n33608105 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Wolfstein, Stadt"@de . + +:n313000000200 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Dammheim (Ortsbezirk)"@de . + +:n13805 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Puderbach, Verbandsgemeinde"@de . + +:n13210053 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Hirz-Maulsbach"@de . + +:n13501036 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Greimersburg"@de . + +:n340092200101 a skos:Concept ; + skos:broader :n34009220 ; + skos:inScheme ; + skos:prefLabel "Stockbornerhof"@de . + +:n14310275 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Niedersayn"@de . + +:n13101044 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Leimbach"@de . + +:n312000000800 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Mölschbach (Ortsbezirk)"@de . + +:n334000070100 a skos:Concept ; + skos:broader :n33400007 ; + skos:inScheme ; + skos:prefLabel "Germersheim"@de . + +:n34009224 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Schmitshausen"@de . + +:n131000070103 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Bachem (Ortsbezirk)"@de . + +:n33511031 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Oberarnbach"@de . + +:n33207 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Leiningerland, Verbandsgemeinde"@de . + +:n23306219 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Kerschenbach"@de . + +:n14305038 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Hundsdorf"@de . + +:n13401036 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Heimbach"@de . + +:n23301017 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Deudesfeld"@de . + +:n33800004 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Bobenheim-Roxheim"@de . + +:n03 a skos:Concept ; + skos:broader :n1 ; + skos:inScheme ; + skos:prefLabel "Rheinland"@de . + +:n33907013 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Dolgesheim"@de . + +:n340082060108 a skos:Concept ; + skos:broader :n34008206 ; + skos:inScheme ; + skos:prefLabel "Truppacherhof"@de . + +:n13210032 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Flammersfeld"@de . + +:n13501015 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Briedern"@de . + +:n23506074 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Leiwen"@de . + +:n340010100101 a skos:Concept ; + skos:broader :n34001010 ; + skos:inScheme ; + skos:prefLabel "Berwartstein, Burg und Gastst."@de . + +:n13301 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Bad Kreuznach, Verbandsgemeinde"@de . + +:n235070690101 a skos:Concept ; + skos:broader :n23507069 ; + skos:inScheme ; + skos:prefLabel "Burg Ramstein, Gastst."@de . + +:n23301075 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Üdersdorf"@de . + +:n333070430200 a skos:Concept ; + skos:broader :n33307043 ; + skos:inScheme ; + skos:prefLabel "Mannweiler"@de . + +:n133090520300 a skos:Concept ; + skos:broader :n13309052 ; + skos:inScheme ; + skos:prefLabel "Kirnsulzbach (Ortsbezirk)"@de . + +:n135025020101 a skos:Concept ; + skos:broader :n13502502 ; + skos:inScheme ; + skos:prefLabel "Kloster Maria Martental"@de . + +:n14306244 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Homberg"@de . + +:n13210090 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Pleckhausen"@de . + +:n33702072 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Schweighofen"@de . + +:n33706047 a skos:Concept ; + skos:broader :n33706 ; + skos:inScheme ; + skos:prefLabel "Kirrweiler (Pfalz)"@de . + +:n13702501 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Münstermaifeld, Stadt"@de . + +:n134020110101 a skos:Concept ; + skos:broader :n13402011 ; + skos:inScheme ; + skos:prefLabel "Einschiederhof"@de . + +:n23507137 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Trierweiler"@de . + +:n138000450900 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Oberbieber (Ortsbezirk)"@de . + +:n235071370100 a skos:Concept ; + skos:broader :n23507137 ; + skos:inScheme ; + skos:prefLabel "Fusenich (Ortsbezirk)"@de . + +:n33608057 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Langweiler"@de . + +:n140 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Rhein-Hunsrück-Kreis"@de . + +:n4051096n7 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Saardepartement"@de . + +:n333035010200 a skos:Concept ; + skos:broader :n33303501 ; + skos:inScheme ; + skos:prefLabel "Niefernheim (Ortsbezirk)"@de . + +:n33307203 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Seelen"@de . + +:n231010810105 a skos:Concept ; + skos:broader :n23101081 ; + skos:inScheme ; + skos:prefLabel "Maring"@de . + +:n13208011 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Mittelhof"@de . + +:n340092170101 a skos:Concept ; + skos:broader :n34009217 ; + skos:inScheme ; + skos:prefLabel "Faustermühle"@de . + +:n13804041 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Linz am Rhein, Stadt"@de . + +:n34001004 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Dahn, Stadt"@de . + +:n13401073 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Rohrbach"@de . + +:n33201035 a skos:Concept ; + skos:broader :n33201 ; + skos:inScheme ; + skos:prefLabel "Meckenheim"@de . + +:n312000001900 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Bännjerrück/Karl-Pfaff-Siedlung"@de . + +:n232050670200 a skos:Concept ; + skos:broader :n23205067 ; + skos:inScheme ; + skos:prefLabel "Niedersgegen"@de . + +:n232063290305 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Hemmeres"@de . + +:n14103052 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Hambach"@de . + +:n332050140109 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Mückenwiese"@de . + +:n4526161n1 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Département des Forêts"@de . + +:n14111101 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Oberfischbach"@de . + +:n140091120201 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Engelsburg"@de . + +:n14111095 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Niederneisen"@de . + +:n33303058 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Ottersheim"@de . + +:n143022650200 a skos:Concept ; + skos:broader :n14302265 ; + skos:inScheme ; + skos:prefLabel "Obermörsbach"@de . + +:n33608036 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Hefersweiler"@de . + +:n33706 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Maikammer, Verbandsgemeinde"@de . + +:n231005020901 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Gipsmühle, Baldenauermühle"@de . + +:n14107085 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Miehlen"@de . + +:n232050720101 a skos:Concept ; + skos:broader :n23205072 ; + skos:inScheme ; + skos:prefLabel "Bierendorf"@de . + +:n13801044 a skos:Concept ; + skos:broader :n13801 ; + skos:inScheme ; + skos:prefLabel "Neustadt (Wied)"@de . + +:n23306235 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Reuth"@de . + +:n235071110509 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Schäferei"@de . + +:n33610094 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Selchenbach"@de . + +:n33608100 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Unterjeckenbach"@de . + +:n137020890113 a skos:Concept ; + skos:broader :n13702089 ; + skos:inScheme ; + skos:prefLabel "Ruitsch (Ortsbezirk)"@de . + +:n14111074 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Kördorf"@de . + +:n14009016 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Birkheim"@de . + +:n33610015 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Dennweiler-Frohnbach"@de . + +:n335090430100 a skos:Concept ; + skos:broader :n33509043 ; + skos:inScheme ; + skos:prefLabel "Pörrbach"@de . + +:n13807008 a skos:Concept ; + skos:broader :n13807 ; + skos:inScheme ; + skos:prefLabel "Bruchhausen"@de . + +:n33101014 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Dintesheim"@de . + +:n13311026 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Dorsheim"@de . + +:n4133948n4 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Mainzer Republik"@de . + +:n232063180106 a skos:Concept ; + skos:broader :n23206318 ; + skos:inScheme ; + skos:prefLabel "Weißenseifen"@de . + +:n33202 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Freinsheim, Verbandsgemeinde"@de . + +:n331070150200 a skos:Concept ; + skos:broader :n33107015 ; + skos:inScheme ; + skos:prefLabel "Heßloch"@de . + +:n23306214 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Hallschlag"@de . + +:n13505064 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Moritzheim"@de . + +:n13209111 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Wallmenroth"@de . + +:n33306071 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Sippersfeld"@de . + +:n33608073 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Oberweiler-Tiefenbach"@de . + +:n13101501 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Dümpelfeld"@de . + +:n337050730103 a skos:Concept ; + skos:broader :n33705073 ; + skos:inScheme ; + skos:prefLabel "Kindingermühle, Untermühle"@de . + +:n13502009 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Binningen"@de . + +:n135035010200 a skos:Concept ; + skos:broader :n13503501 ; + skos:inScheme ; + skos:prefLabel "Kennfus (Ortsbezirk)"@de . + +:n235010930104 a skos:Concept ; + skos:broader :n23501093 ; + skos:inScheme ; + skos:prefLabel "Zinsershütten"@de . + +:n13102017 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Dernau"@de . + +:n4321205n0 a skos:Concept ; + skos:broader :n12 ; + skos:inScheme ; + skos:prefLabel "Rheinhessische Schweiz"@de . + +:n132070630302 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Euteneuen"@de . + +:n231010080100 a skos:Concept ; + skos:broader :n23101008 ; + skos:inScheme ; + skos:prefLabel "Andel (Ortsbezirk)"@de . + +:n23301070 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Strohn"@de . + +:n23208282 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Oberkail"@de . + +:n33908065 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Welgesheim"@de . + +:n23207055 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Hosten"@de . + +:n33703066 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Rhodt unter Rietburg"@de . + +:n13502067 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Müllenbach"@de . + +:n23304 a skos:Concept ; + skos:broader :n233 ; + skos:inScheme ; + skos:prefLabel "Kelberg, Verbandsgemeinde"@de . + +:n33307049 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Münsterappel"@de . + +:n33303074 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Standenbühl"@de . + +:n23208203 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Balesfeld"@de . + +:n141091210202 a skos:Concept ; + skos:broader :n14109121 ; + skos:inScheme ; + skos:prefLabel "Ehrenthal"@de . + +:n33610052 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Konken"@de . + +:n231061230200 a skos:Concept ; + skos:broader :n23106123 ; + skos:inScheme ; + skos:prefLabel "Thalfang"@de . + +:n235030680503 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Roscheiderhof"@de . + +:n137030430105 a skos:Concept ; + skos:broader :n13703043 ; + skos:inScheme ; + skos:prefLabel "Neumühle"@de . + +:n140091330204 a skos:Concept ; + skos:broader :n14009133 ; + skos:inScheme ; + skos:prefLabel "Fellen"@de . + +:n33101051 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Nieder-Wiesen"@de . + +:n14111032 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Dörsdorf"@de . + +:n235081520108 a skos:Concept ; + skos:broader :n23508152 ; + skos:inScheme ; + skos:prefLabel "Niederzerf"@de . + +:n23208118 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Schleid"@de . + +:n141090720102 a skos:Concept ; + skos:broader :n14109072 ; + skos:inScheme ; + skos:prefLabel "Oberkestert"@de . + +:n13704069 a skos:Concept ; + skos:broader :n13704 ; + skos:inScheme ; + skos:prefLabel "Mendig,Stadt"@de . + +:n232012540100 a skos:Concept ; + skos:broader :n23201254 ; + skos:inScheme ; + skos:prefLabel "Greimelscheid"@de . + +:n235081310100 a skos:Concept ; + skos:broader :n23508131 ; + skos:inScheme ; + skos:prefLabel "Hamm (Ortsbezirk)"@de . + +:n33307028 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Gundersweiler"@de . + +:n13502046 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Kalenborn"@de . + +:n23504135 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Thomm"@de . + +:n23507111 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Ralingen"@de . + +:n331010250200 a skos:Concept ; + skos:broader :n33101025 ; + skos:inScheme ; + skos:prefLabel "Uffhofen"@de . + +:n14111011 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Berndroth"@de . + +:n33701 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Annweiler am Trifels, Verbandsgemeinde"@de . + +:n337020290101 a skos:Concept ; + skos:broader :n33702029 ; + skos:inScheme ; + skos:prefLabel "Gleishorbach"@de . + +:n13310116 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Winterburg"@de . + +:n14107080 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Lipporn"@de . + +:n332060460105 a skos:Concept ; + skos:broader :n33206046 ; + skos:inScheme ; + skos:prefLabel "Odinstal"@de . + +:n131000700800 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Unkelbach (Ortsbezirk 6)"@de . + +:n13805014 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Dürrholz"@de . + +:n13802038 a skos:Concept ; + skos:broader :n13802 ; + skos:inScheme ; + skos:prefLabel "Leutesdorf"@de . + +:n33202008 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Dackenheim"@de . + +:n13505080 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Sosberg"@de . + +:n141030300103 a skos:Concept ; + skos:broader :n14103030 ; + skos:inScheme ; + skos:prefLabel "Hütte"@de . + +:n235081540200 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Kelsen (Ortsbezirk)"@de . + +:n133060990103 a skos:Concept ; + skos:broader :n13306099 ; + skos:inScheme ; + skos:prefLabel "Gräfenbacherhütte"@de . + +:n33801014 a skos:Concept ; + skos:broader :n33801 ; + skos:inScheme ; + skos:prefLabel "Hochdorf-Assenheim"@de . + +:n13505001 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Alf"@de . + +:n340030530102 a skos:Concept ; + skos:broader :n34003053 ; + skos:inScheme ; + skos:prefLabel "Luthersbrunn, ev.Pfarrhaus"@de . + +:n33303032 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Immesheim"@de . + +:n13209042 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Grünebach"@de . + +:n339000050800 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Sponsheim"@de . + +:n336100030200 a skos:Concept ; + skos:broader :n33610003 ; + skos:inScheme ; + skos:prefLabel "Mühlbach (Ortsbezirk)"@de . + +:n233060290205 a skos:Concept ; + skos:broader :n23306029 ; + skos:inScheme ; + skos:prefLabel "Crumps Mühle"@de . + +:n235075010200 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Hofweiler (Ortsbezirk)"@de . + +:n335100290200 a skos:Concept ; + skos:broader :n33510029 ; + skos:inScheme ; + skos:prefLabel "Morbach (Ortsbezirk)"@de . + +:n340030080103 a skos:Concept ; + skos:broader :n34003008 ; + skos:inScheme ; + skos:prefLabel "Ransbrunnerhof"@de . + +:n235080810102 a skos:Concept ; + skos:broader :n23508081 ; + skos:inScheme ; + skos:prefLabel "Niederkell"@de . + +:n317000000601 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Langenbergerhof"@de . + +:n33307065 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Ruppertsecken"@de . + +:n33908002 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Aspisheim"@de . + +:n235081180303 a skos:Concept ; + skos:broader :n23508118 ; + skos:inScheme ; + skos:prefLabel "Beurig"@de . + +:n141090690102 a skos:Concept ; + skos:broader :n14109069 ; + skos:inScheme ; + skos:prefLabel "Burg Gutenfels"@de . + +:n4004655n2 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Unterelsass"@de . + +:n138000450200 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Engers (Ortsbezirk)"@de . + +:n235040850104 a skos:Concept ; + skos:broader :n23504085 ; + skos:inScheme ; + skos:prefLabel "Maximin Grünhaus"@de . + +:n233015010600 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Steinborn (Ortsbezirk)"@de . + +:n320000000800 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Niederauerbach"@de . + +:n23101125 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Ürzig"@de . + +:n23208134 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Wiersdorf"@de . + +:n332000020200 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Hardenburg (Ortsbezirk)"@de . + +:n34002014 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Hauenstein"@de . + +:n334030240106 a skos:Concept ; + skos:broader :n33403024 ; + skos:inScheme ; + skos:prefLabel "Wanzheimer Mühle"@de . + +:n137041010101 a skos:Concept ; + skos:broader :n13704101 ; + skos:inScheme ; + skos:prefLabel "Fraukirch"@de . + +:n232081250102 a skos:Concept ; + skos:broader :n23208125 ; + skos:inScheme ; + skos:prefLabel "Looskyllermühle"@de . + +:n137002030200 a skos:Concept ; + skos:broader :n13700203 ; + skos:inScheme ; + skos:prefLabel "Stromberg"@de . + +:n23207050 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Herforst"@de . + +:n138010440101 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Brüchen"@de . + +:n13502062 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Möntenich"@de . + +:n140030180300 a skos:Concept ; + skos:broader :n14003018 ; + skos:inScheme ; + skos:prefLabel "Ebschied (Ortsbezirk)"@de . + +:n23508126 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Serrig"@de . + +:n13709208 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Hatzenport"@de . + +:n34009023 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Höheischweiler"@de . + +:n33102045 a skos:Concept ; + skos:broader :n33102 ; + skos:inScheme ; + skos:prefLabel "Mettenheim"@de . + +:n132105010104 a skos:Concept ; + skos:broader :n13210501 ; + skos:inScheme ; + skos:prefLabel "Leuzbach"@de . + +:n231010920103 a skos:Concept ; + skos:broader :n23101092 ; + skos:inScheme ; + skos:prefLabel "Papiermühle"@de . + +:n333030010102 a skos:Concept ; + skos:broader :n33303001 ; + skos:inScheme ; + skos:prefLabel "Heyerhof"@de . + +:n23208113 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Sankt Thomas"@de . + +:n23108049 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Hasborn"@de . + +:n333040570101 a skos:Concept ; + skos:broader :n33304057 ; + skos:inScheme ; + skos:prefLabel "Leithof"@de . + +:n13402062 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Oberbrombach"@de . + +:n14004159 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Wahlenau"@de . + +:n23206279 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Nimshuscheid"@de . + +:n131010330300 a skos:Concept ; + skos:broader :n13101033 ; + skos:inScheme ; + skos:prefLabel "Pitscheid"@de . + +:n13701088 a skos:Concept ; + skos:broader :n13701 ; + skos:inScheme ; + skos:prefLabel "Plaidt"@de . + +:n137025010500 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Mörz (Ortsbezirk)"@de . + +:n235081420103 a skos:Concept ; + skos:broader :n23508142 ; + skos:inScheme ; + skos:prefLabel "Niederkell"@de . + +:n133010300101 a skos:Concept ; + skos:broader :n13301030 ; + skos:inScheme ; + skos:prefLabel "Bingert"@de . + +:n336100150101 a skos:Concept ; + skos:broader :n33610015 ; + skos:inScheme ; + skos:prefLabel "Frohnbacherhof"@de . + +:n33704039 a skos:Concept ; + skos:broader :n33704 ; + skos:inScheme ; + skos:prefLabel "Herxheimweyher"@de . + +:n33307023 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Gaugrehweiler"@de . + +:n33304047 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Morschheim"@de . + +:n336091070100 a skos:Concept ; + skos:broader :n33609107 ; + skos:inScheme ; + skos:prefLabel "Gimsbach"@de . + +:n231010700400 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Ilsbach (Ortsbezirk)"@de . + +:n23508105 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Paschel"@de . + +:n23108113 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Salmtal"@de . + +:n331030230200 a skos:Concept ; + skos:broader :n33103023 ; + skos:inScheme ; + skos:prefLabel "Niederflörsheim"@de . + +:n23306076 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Üxheim"@de . + +:n33804018 a skos:Concept ; + skos:broader :n33804 ; + skos:inScheme ; + skos:prefLabel "Maxdorf"@de . + +:n13310111 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Weiler bei Monzingen"@de . + +:n23101077 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Longkamp"@de . + +:n23205116 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Scheitenkorb"@de . + +:n23208086 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Nattenheim"@de . + +:n133090460300 a skos:Concept ; + skos:broader :n13309046 ; + skos:inScheme ; + skos:prefLabel "Schloß Dhaun (Ortsbezirk)"@de . + +:n23108 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Wittlich-Land, Verbandsgemeinde"@de . + +:n232051020101 a skos:Concept ; + skos:broader :n23205102 ; + skos:inScheme ; + skos:prefLabel "Buscht"@de . + +:n23208007 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Badem"@de . + +:n231080030103 a skos:Concept ; + skos:broader :n23108003 ; + skos:inScheme ; + skos:prefLabel "Mellich"@de . + +:n143040480200 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Elgendorf (Ortsbezirk)"@de . + +:n132100400101 a skos:Concept ; + skos:broader :n13210040 ; + skos:inScheme ; + skos:prefLabel "Amteroth"@de . + +:n337 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Südliche Weinstraße, Landkreis"@de . + +:n336080730102 a skos:Concept ; + skos:broader :n33608073 ; + skos:inScheme ; + skos:prefLabel "Tiefenbach"@de . + +:n33609004 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Altenkirchen"@de . + +:n34002030 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Lug"@de . + +:n320000000105 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Freudenbergerhof"@de . + +:n33404005 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Freckenfeld"@de . + +:n13310084 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Reiffelbach"@de . + +:n23108007 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Bergweiler"@de . + +:n23101056 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Hochscheid"@de . + +:n23205089 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Niedergeckler"@de . + +:n14301297 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Stockhausen-Illfurth"@de . + +:n13402020 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Dienstweiler"@de . + +:n23508142 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Waldweiler"@de . + +:n233060260900 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Oos (Ortsbezirk)"@de . + +:n13310005 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Auen"@de . + +:n141110110101 a skos:Concept ; + skos:broader :n14111011 ; + skos:inScheme ; + skos:prefLabel "Ackerbach"@de . + +:n13405087 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Stipshausen"@de . + +:n131000901002 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Beller"@de . + +:n33304005 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Bennhausen"@de . + +:n131020400104 a skos:Concept ; + skos:broader :n13102040 ; + skos:inScheme ; + skos:prefLabel "Winnen"@de . + +:n13103006 a skos:Concept ; + skos:broader :n13103 ; + skos:inScheme ; + skos:prefLabel "Bad Breisig, Stadt"@de . + +:n23501112 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Rascheid"@de . + +:n23508057 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Kastel-Staadt"@de . + +:n23108065 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Karl"@de . + +:n231005020700 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Hinzerath (Ortsbezirk)"@de . + +:n13803069 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Stebach"@de . + +:n34003008 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Eppenbrunn"@de . + +:n33510017 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Katzweiler"@de . + +:n335110470113 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Meisertal"@de . + +:n23206295 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Pronsfeld"@de . + +:n23208044 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Gondorf"@de . + +:n23205068 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Koxhausen"@de . + +:n332000020110 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Hausen"@de . + +:n23304206 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Bongard"@de . + +:n231085030301 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Mulbach"@de . + +:n14110129 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Singhofen"@de . + +:n319000000700 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Ibersheim (Ortsbezirk)"@de . + +:n132100820100 a skos:Concept ; + skos:broader :n13210082 ; + skos:inScheme ; + skos:prefLabel "Marenbach"@de . + +:n23206216 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Dingdorf"@de . + +:n23201315 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Strickscheid"@de . + +:n13405066 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Oberreidenbach"@de . + +:n33609041 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Herschweiler-Pettersheim"@de . + +:n232013330300 a skos:Concept ; + skos:broader :n23201333 ; + skos:inScheme ; + skos:prefLabel "Niederüttfeld"@de . + +:n235070510200 a skos:Concept ; + skos:broader :n23507051 ; + skos:inScheme ; + skos:prefLabel "Liersberg (Ortsbezirk)"@de . + +:n33807010 a skos:Concept ; + skos:broader :n33807 ; + skos:inScheme ; + skos:prefLabel "Hanhofen"@de . + +:n23108044 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Greimerath"@de . + +:n23205132 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Weidingen"@de . + +:n132101150100 a skos:Concept ; + skos:broader :n13210115 ; + skos:inScheme ; + skos:prefLabel "Hilkhausen (Ortsbezirk)"@de . + +:n14004154 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Unzenberg"@de . + +:n131000700100 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Bandorf (T.a.Ortsbezirk 3)"@de . + +:n33906057 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Stadecken-Elsheim"@de . + +:n132080080104 a skos:Concept ; + skos:broader :n13208008 ; + skos:inScheme ; + skos:prefLabel "Bruchen"@de . + +:n23205047 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Heilbach"@de . + +:n14301255 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Lautzenbrücken"@de . + +:n31300000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Landau in der Pfalz, Kreisfreie Stadt"@de . + +:n33106073 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Wörrstadt,Stadt"@de . + +:n13503035 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Gillenbeuren"@de . + +:n13207076 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Niederfischbach"@de . + +:n13301012 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Biebelsheim"@de . + +:n111000000400 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Bubenheim (Ortsbezirk 3)"@de . + +:n333065030300 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Potzbach (Ortsbezirk)"@de . + +:n138010030303 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Dasbach"@de . + +:n23208081 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Metterich"@de . + +:n23108023 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Dodenburg"@de . + +:n14009 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Hunsrück-Mittelrhein, Verbandsgemeinde"@de . + +:n31200000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Kaiserslautern, Kreisfreie Stadt"@de . + +:n23304243 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Ueß"@de . + +:n335110450101 a skos:Concept ; + skos:broader :n33511045 ; + skos:inScheme ; + skos:prefLabel "Alte Schmelz"@de . + +:n336080300200 a skos:Concept ; + skos:broader :n33608030 ; + skos:inScheme ; + skos:prefLabel "Niedereisenbach"@de . + +:n231005021800 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Wenigerath (Ortsbezirk)"@de . + +:n14301234 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Hardt"@de . + +:n312000000403 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Lampertsmühle"@de . + +:n131000900900 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Nierendorf (Ortsbezirk)"@de . + +:n14004048 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Hecken"@de . + +:n135010240100 a skos:Concept ; + skos:broader :n13501024 ; + skos:inScheme ; + skos:prefLabel "Ediger"@de . + +:n233062110102 a skos:Concept ; + skos:broader :n23306211 ; + skos:inScheme ; + skos:prefLabel "Weiermühle"@de . + +:n334020270101 a skos:Concept ; + skos:broader :n33402027 ; + skos:inScheme ; + skos:prefLabel "Bienwaldmühle"@de . + +:n34008226 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Walshausen"@de . + +:n332 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Bad Dürkheim, Landkreis"@de . + +:n23201267 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Mauel"@de . + +:n23306050 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Neroth"@de . + +:n33510033 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Olsbrücken"@de . + +:n14008166 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Wüschheim"@de . + +:n131000770100 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Bad Bodendorf (Ortsbezirk)"@de . + +:n138090060114 a skos:Concept ; + skos:broader :n13809006 ; + skos:inScheme ; + skos:prefLabel "Siebenmorgen"@de . + +:n235080430103 a skos:Concept ; + skos:broader :n23508043 ; + skos:inScheme ; + skos:prefLabel "Steinbachweier"@de . + +:n337015010105 a skos:Concept ; + skos:broader :n33701501 ; + skos:inScheme ; + skos:prefLabel "Sarnstall (Ortsbezirk)"@de . + +:n23208060 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Idenheim"@de . + +:n23205084 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Muxerath"@de . + +:n231060540102 a skos:Concept ; + skos:broader :n23106054 ; + skos:inScheme ; + skos:prefLabel "Forsthaus Röderbach"@de . + +:n23304222 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Kolverath"@de . + +:n132060140102 a skos:Concept ; + skos:broader :n13206014 ; + skos:inScheme ; + skos:prefLabel "Hofacker"@de . + +:n141090660102 a skos:Concept ; + skos:broader :n14109066 ; + skos:inScheme ; + skos:prefLabel "Burg Liebenstein"@de . + +:n13210118 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Wölmersen"@de . + +:n231060790108 a skos:Concept ; + skos:broader :n23106079 ; + skos:inScheme ; + skos:prefLabel "Thiergarten (Ortsbezirk)"@de . + +:n132100550102 a skos:Concept ; + skos:broader :n13210055 ; + skos:inScheme ; + skos:prefLabel "Huf"@de . + +:n235031320100 a skos:Concept ; + skos:broader :n23503132 ; + skos:inScheme ; + skos:prefLabel "Fellerich (Ortsbezirk)"@de . + +:n23205005 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Ammeldingen bei Neuerburg"@de . + +:n13405082 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Sien"@de . + +:n137000680200 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Hausen (Ortsbezirk)"@de . + +:n23508052 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Irsch"@de . + +:n23201246 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Jucken"@de . + +:n13405003 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Allenbach"@de . + +:n232000180300 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Irsch (Ortsbezirk)"@de . + +:n23207289 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Orenhofen"@de . + +:n23206290 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Orlenbach"@de . + +:n111000001500 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Neuendorf"@de . + +:n23101030 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Erden"@de . + +:n23205063 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Irrel"@de . + +:n23304201 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Arbach"@de . + +:n232071070101 a skos:Concept ; + skos:broader :n23207107 ; + skos:inScheme ; + skos:prefLabel "Heinzkyller Mühle"@de . + +:n33701074 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Silz"@de . + +:n132070630600 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Wingendorf (Ortsbezirk)"@de . + +:n14110 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Bad Ems-Nassau, Verbandsgemeinde"@de . + +:n333040400103 a skos:Concept ; + skos:broader :n33304040 ; + skos:inScheme ; + skos:prefLabel "Schniftenbergerhof"@de . + +:n23201310 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Sevenig (Our)"@de . + +:n33107009 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Bermersheim"@de . + +:n312000002104 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Wiesenthalerhof"@de . + +:n14004006 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Bärenbach"@de . + +:n233010200100 a skos:Concept ; + skos:broader :n23301020 ; + skos:inScheme ; + skos:prefLabel "Brück"@de . + +:n14306309 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Westernohe"@de . + +:n14304077 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Untershausen"@de . + +:n137010560105 a skos:Concept ; + skos:broader :n13701056 ; + skos:inScheme ; + skos:prefLabel "Grube Meurin"@de . + +:n135020840102 a skos:Concept ; + skos:broader :n13502084 ; + skos:inScheme ; + skos:prefLabel "Schuwerackerhof"@de . + +:n23208501 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Wißmannsdorf"@de . + +:n317000000400 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Hengsberg (Ortsbezirk)"@de . + +:n132080540106 a skos:Concept ; + skos:broader :n13208054 ; + skos:inScheme ; + skos:prefLabel "Obergüdeln"@de . + +:n23205042 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Gentingen"@de . + +:n14110103 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Obernhof"@de . + +:n13503030 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Filz"@de . + +:n14008039 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Fronhofen"@de . + +:n13809007 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Hausen (Wied)"@de . + +:n337020720103 a skos:Concept ; + skos:broader :n33702072 ; + skos:inScheme ; + skos:prefLabel "Windhof"@de . + +:n13405040 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Hettenrodt"@de . + +:n340010010101 a skos:Concept ; + skos:broader :n34001001 ; + skos:inScheme ; + skos:prefLabel "Sankt Germanshof"@de . + +:n34003040 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Ruppertsweiler"@de . + +:n232012850203 a skos:Concept ; + skos:broader :n23201285 ; + skos:inScheme ; + skos:prefLabel "Luppertsseifen"@de . + +:n211000000201 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Altenhof"@de . + +:n140005010401 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Schloß Schöneck"@de . + +:n141031300103 a skos:Concept ; + skos:broader :n14103130 ; + skos:inScheme ; + skos:prefLabel "Rupbach"@de . + +:n14302313 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Winkelbach"@de . + +:n14004 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Kirchberg / Hunsrück, Verbandsgemeinde"@de . + +:n232012010200 a skos:Concept ; + skos:broader :n23201201 ; + skos:inScheme ; + skos:prefLabel "Halenbach"@de . + +:n132070630409 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Wehbach (Ortsbezirk)"@de . + +:n33906031 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Jugenheim in Rheinhessen"@de . + +:n13809065 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Roßbach"@de . + +:n13210049 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Hemmelzen"@de . + +:n33705007 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Billigheim-Ingenheim"@de . + +:n233060260200 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Büscheich (Ortsbezirk)"@de . + +:n13405502 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Langweiler"@de . + +:n13104016 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Dedenbach"@de . + +:n34008221 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Riedelberg"@de . + +:n23201262 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lünebach"@de . + +:n333070040102 a skos:Concept ; + skos:broader :n33307004 ; + skos:inScheme ; + skos:prefLabel "Neubau"@de . + +:n33511027 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Mittelbrunn"@de . + +:n231091240101 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Bad Wildstein"@de . + +:n23207311 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Spangdahlem"@de . + +:n14109042 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Filsen"@de . + +:n13309073 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Oberhausen bei Kirn"@de . + +:n33705065 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Ranschbach"@de . + +:n14008076 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Külz (Hunsrück)"@de . + +:n137092040101 a skos:Concept ; + skos:broader :n13709204 ; + skos:inScheme ; + skos:prefLabel "Siebenborn"@de . + +:n33808020 a skos:Concept ; + skos:broader :n33808 ; + skos:inScheme ; + skos:prefLabel "Neuhofen"@de . + +:n333065030104 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Wäschbacherhof"@de . + +:n143022360102 a skos:Concept ; + skos:broader :n14302236 ; + skos:inScheme ; + skos:prefLabel "Lützelau"@de . + +:n23106078 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Lückenburg"@de . + +:n340090510100 a skos:Concept ; + skos:broader :n34009051 ; + skos:inScheme ; + skos:prefLabel "Thaleischweiler"@de . + +:n33207004 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Bissersheim"@de . + +:n134000450400 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Hammerstein"@de . + +:n336080290101 a skos:Concept ; + skos:broader :n33608029 ; + skos:inScheme ; + skos:prefLabel "Naumburgerhof"@de . + +:n135010820206 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Lützbach"@de . + +:n13309052 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Kirn, Stadt"@de . + +:n14302265 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Mörsbach"@de . + +:n14111118 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Roth"@de . + +:n13210086 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Oberwambach"@de . + +:n13501069 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Nehren"@de . + +:n33808 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Rheinauen, Verbandsgemeinde"@de . + +:n23506134 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Thörnich"@de . + +:n211000000700 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Filsch (Ortsbezirk 14)"@de . + +:n233060830100 a skos:Concept ; + skos:broader :n23306083 ; + skos:inScheme ; + skos:prefLabel "Mirbach (Ortsbezirk)"@de . + +:n140005010900 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Udenhausen (Ortsbezirk)"@de . + +:n132030260102 a skos:Concept ; + skos:broader :n13203026 ; + skos:inScheme ; + skos:prefLabel "Stegskopf"@de . + +:n14103133 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Wasenbach"@de . + +:n23109033 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Flußbach"@de . + +:n23201220 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Eschfeld"@de . + +:n13804037 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Leubsdorf"@de . + +:n134010050101 a skos:Concept ; + skos:broader :n13401005 ; + skos:inScheme ; + skos:prefLabel "Breitsesterhof"@de . + +:n14304072 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Stahlhofen"@de . + +:n36 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Katholische Kirche / Diözese Mainz"@de . + +:n335100350106 a skos:Concept ; + skos:broader :n33510035 ; + skos:inScheme ; + skos:prefLabel "Drehenthalerhof (Ortsbezirk)"@de . + +:n131000070200 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Bad Neuenahr (Ortsbezirk)"@de . + +:n13210065 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Krunkel"@de . + +:n231005021100 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Merscheid (Ortsbezirk)"@de . + +:n131030140106 a skos:Concept ; + skos:broader :n13103014 ; + skos:inScheme ; + skos:prefLabel "Schweppenburg (ehem. Gem. Niederlützingen)"@de . + +:n134050040101 a skos:Concept ; + skos:broader :n13405004 ; + skos:inScheme ; + skos:prefLabel "Asbacherhütte, Pflegeanst."@de . + +:n33304 a skos:Concept ; + skos:broader :n333 ; + skos:inScheme ; + skos:prefLabel "Kirchheimbolanden, Verbandsgemeinde"@de . + +:n318000000108 a skos:Concept ; + skos:broader :n31800000 ; + skos:inScheme ; + skos:prefLabel "Rinkenbergerhof"@de . + +:n13809002 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Anhausen"@de . + +:n131000900200 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Birresdorf (Ortsbezirk)"@de . + +:n33207041 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Obrigheim (Pfalz)"@de . + +:n317000000708 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Schelermühle"@de . + +:n13203079 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Nisterberg"@de . + +:n334005010102 a skos:Concept ; + skos:broader :n33400501 ; + skos:inScheme ; + skos:prefLabel "Langenberg"@de . + +:n94 a skos:Concept ; + skos:broader :n5 ; + skos:inScheme ; + skos:prefLabel "Rhein-Nahe-Raum"@de . + +:n232000180104 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Pützhöhe"@de . + +:n319000001100 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Pfeddersheim (Ortsbezirk)"@de . + +:n141101280104 a skos:Concept ; + skos:broader :n14110128 ; + skos:inScheme ; + skos:prefLabel "Kalkofen"@de . + +:n14304051 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Nentershausen"@de . + +:n337020130101 a skos:Concept ; + skos:broader :n33702013 ; + skos:inScheme ; + skos:prefLabel "Reisdorf"@de . + +:n141000750218 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Lahnstein auf der Höhe"@de . + +:n232080130102 a skos:Concept ; + skos:broader :n23208013 ; + skos:inScheme ; + skos:prefLabel "Altenhof"@de . + +:n231085030100 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Burg/Salm (Ortsbezirk)"@de . + +:n14008092 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Mengerschied"@de . + +:n314000000700 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Rheingönheim (Ortsbezirk)"@de . + +:n15 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Pfälzer Wald"@de . + +:n132070630404 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Grindel"@de . + +:n33907025 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Hahnheim"@de . + +:n13309010 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Becherbach bei Kirn"@de . + +:n14302223 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Gehlert"@de . + +:n4107291n1 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Schwarzwälder Hochwald"@de . + +:n333060800102 a skos:Concept ; + skos:broader :n33306080 ; + skos:inScheme ; + skos:prefLabel "Rohrbach"@de . + +:n14110071 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Kemmenau"@de . + +:n13501027 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Ernst"@de . + +:n232080750101 a skos:Concept ; + skos:broader :n23208075 ; + skos:inScheme ; + skos:prefLabel "Mohrweiler"@de . + +:n33306009 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Börrstadt"@de . + +:n34009215 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Knopp-Labach"@de . + +:n138010440208 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Fernthal"@de . + +:n337020710200 a skos:Concept ; + skos:broader :n33702071 ; + skos:inScheme ; + skos:prefLabel "Schweigen"@de . + +:n14009155 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Urbar"@de . + +:n33511022 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Landstuhl, Sickingenstadt, Stadt"@de . + +:n340082110106 a skos:Concept ; + skos:broader :n34008211 ; + skos:inScheme ; + skos:prefLabel "Unterbeiwalderhof"@de . + +:n211000001800 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Tarforst (Ortsbezirk 13)"@de . + +:n14306256 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Liebenscheid"@de . + +:n335012030101 a skos:Concept ; + skos:broader :n33501203 ; + skos:inScheme ; + skos:prefLabel "Schernau"@de . + +:n13401027 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Frauenberg"@de . + +:n23301008 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Bleckhausen"@de . + +:n231011050100 a skos:Concept ; + skos:broader :n23101105 ; + skos:inScheme ; + skos:prefLabel "Niederemmel"@de . + +:n143030320105 a skos:Concept ; + skos:broader :n14303032 ; + skos:inScheme ; + skos:prefLabel "Grenzhausen"@de . + +:n13209107 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Steinebach (Sieg)"@de . + +:n13702030 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Gierschnach"@de . + +:n14302202 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Alpenrod"@de . + +:n131020270106 a skos:Concept ; + skos:broader :n13102027 ; + skos:inScheme ; + skos:prefLabel "Fronrath"@de . + +:n13306013 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Bockenau"@de . + +:n33608069 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Nußbach"@de . + +:n320000000403 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Wahlerhof"@de . + +:n138090070112 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Seidenhahn"@de . + +:n13210023 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Eichen"@de . + +:n33702005 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Bad Bergzabern, Stadt"@de . + +:n13801077 a skos:Concept ; + skos:broader :n13801 ; + skos:inScheme ; + skos:prefLabel "Windhagen"@de . + +:n143022960102 a skos:Concept ; + skos:broader :n14302296 ; + skos:inScheme ; + skos:prefLabel "Altburg"@de . + +:n52 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Kleinere Territorien des 19. und 20. Jh."@de . + +:n13207 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Kirchen(Sieg), Verbandsgemeinde"@de . + +:n14103064 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Isselbach"@de . + +:n132100690102 a skos:Concept ; + skos:broader :n13210069 ; + skos:inScheme ; + skos:prefLabel "Seifen"@de . + +:n13306071 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Norheim"@de . + +:n14302260 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Luckenbach"@de . + +:n13210081 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Obererbach (Westerwald)"@de . + +:n14111113 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Reckenroth"@de . + +:n4025288n7 a skos:Concept ; + skos:broader :n19 ; + skos:inScheme ; + skos:prefLabel "Hochwald / Hunsrück"@de . + +:n13505039 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Haserich"@de . + +:n339010030105 a skos:Concept ; + skos:broader :n33901003 ; + skos:inScheme ; + skos:prefLabel "Henschhausen (Ortsbezirk)"@de . + +:n13101072 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Rodder"@de . + +:n315000001501 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Zahlbach"@de . + +:n316000000300 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Duttweiler (Ortsbezirk)"@de . + +:n33608048 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Jettenbach"@de . + +:n141100910101 a skos:Concept ; + skos:broader :n14110091 ; + skos:inScheme ; + skos:prefLabel "Burg Nassau"@de . + +:n131 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Ahrweiler, Landkreis"@de . + +:n315000000900 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Lerchenberg (Ortsbezirk)"@de . + +:n23503068 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Konz,Stadt"@de . + +:n33406025 a skos:Concept ; + skos:broader :n33406 ; + skos:inScheme ; + skos:prefLabel "Rülzheim"@de . + +:n13203101 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Schutzbach"@de . + +:n14107097 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Niederwallmenach"@de . + +:n331020180103 a skos:Concept ; + skos:broader :n33102018 ; + skos:inScheme ; + skos:prefLabel "Sandhof"@de . + +:n335020040203 a skos:Concept ; + skos:broader :n33502004 ; + skos:inScheme ; + skos:prefLabel "Daubenbornerhof"@de . + +:n31 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Evangelische Kirche in Hessen und Nassau"@de . + +:n13703066 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Luxem"@de . + +:n137092120300 a skos:Concept ; + skos:broader :n13709212 ; + skos:inScheme ; + skos:prefLabel "Kobern"@de . + +:n14306214 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Bretthausen"@de . + +:n13210060 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Kescheid"@de . + +:n235075010302 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Kyll"@de . + +:n23503132 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Tawern"@de . + +:n13101051 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Müllenbach"@de . + +:n13209059 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Kausen"@de . + +:n138010440224 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Rott (ehem.Gem.Elsaffthal)"@de . + +:n131000070110 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Marienthal"@de . + +:n132060910102 a skos:Concept ; + skos:broader :n13206091 ; + skos:inScheme ; + skos:prefLabel "Hassel"@de . + +:n33101026 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Framersheim"@de . + +:n235081050102 a skos:Concept ; + skos:broader :n23508105 ; + skos:inScheme ; + skos:prefLabel "Steinbachweier"@de . + +:n135010560101 a skos:Concept ; + skos:broader :n13501056 ; + skos:inScheme ; + skos:prefLabel "Lützbachtal (ehem.Gem.Burgen)"@de . + +:n138030120301 a skos:Concept ; + skos:broader :n13803012 ; + skos:inScheme ; + skos:prefLabel "Wiedischhausen"@de . + +:n14306272 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Neustadt (Westerwald)"@de . + +:n340082060200 a skos:Concept ; + skos:broader :n34008206 ; + skos:inScheme ; + skos:prefLabel "Stambach"@de . + +:n4117847n6 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Neuwieder Becken"@de . + +:n13505076 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Sankt Aldegund"@de . + +:n137095040200 a skos:Concept ; + skos:broader :n13709504 ; + skos:inScheme ; + skos:prefLabel "Moselsürsch"@de . + +:n10 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Westerwald"@de . + +:n14103022 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Cramberg"@de . + +:n140030090300 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Krastel (Ortsbezirk)"@de . + +:n131010010200 a skos:Concept ; + skos:broader :n13101001 ; + skos:inScheme ; + skos:prefLabel "Breidscheid"@de . + +:n33608085 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Reipoltskirchen"@de . + +:n14111065 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Kaltenholzhausen"@de . + +:n13101030 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Hoffeld"@de . + +:n13102029 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Hönningen"@de . + +:n14307 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Selters(Ww), Verbandsgemeinde"@de . + +:n14107140 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Winterwerb"@de . + +:n33610006 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Blaubach"@de . + +:n138010440203 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Borscheid"@de . + +:n33101005 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Bechenheim"@de . + +:n14003204 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Mastershausen"@de . + +:n340082110101 a skos:Concept ; + skos:broader :n34008211 ; + skos:inScheme ; + skos:prefLabel "Bickenaschbacherhof"@de . + +:n338010220100 a skos:Concept ; + skos:broader :n33801022 ; + skos:inScheme ; + skos:prefLabel "Gronau"@de . + +:n14107055 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Himmighofen"@de . + +:n235030680600 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Krettnach (T.a. Ortsbezirk 4)"@de . + +:n233062230103 a skos:Concept ; + skos:broader :n23306223 ; + skos:inScheme ; + skos:prefLabel "Eigelbach"@de . + +:n13210501 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Altenkirchen (Westerwald), Stadt"@de . + +:n131020270101 a skos:Concept ; + skos:broader :n13102027 ; + skos:inScheme ; + skos:prefLabel "Beilstein"@de . + +:n340082010101 a skos:Concept ; + skos:broader :n34008201 ; + skos:inScheme ; + skos:prefLabel "Bödingerhof"@de . + +:n23506060 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Kenn"@de . + +:n34001011 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Fischbach bei Dahn"@de . + +:n14305082 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Wirscheid"@de . + +:n23301061 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Sarmersbach"@de . + +:n23208273 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Neuheilenbach"@de . + +:n33908056 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Sprendlingen"@de . + +:n332050140116 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Wolfsgrube, Forsthaus"@de . + +:n13502058 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Masburg"@de . + +:n232062270400 a skos:Concept ; + skos:broader :n23206227 ; + skos:inScheme ; + skos:prefLabel "Wascheid"@de . + +:n333070430101 a skos:Concept ; + skos:broader :n33307043 ; + skos:inScheme ; + skos:prefLabel "Morsbacherhof"@de . + +:n231010120200 a skos:Concept ; + skos:broader :n23101012 ; + skos:inScheme ; + skos:prefLabel "Filzen"@de . + +:n23205218 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Eisenach"@de . + +:n33608043 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Hohenöllen"@de . + +:n33101042 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Kettenheim"@de . + +:n33105017 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Eckelsheim"@de . + +:n233042180100 a skos:Concept ; + skos:broader :n23304218 ; + skos:inScheme ; + skos:prefLabel "Hünerbach (Ortsbezirk)"@de . + +:n235080620300 a skos:Concept ; + skos:broader :n23508062 ; + skos:inScheme ; + skos:prefLabel "Meurich (Ortsbezirk)"@de . + +:n33806012 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Heßheim"@de . + +:n13311054 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Langenlonsheim"@de . + +:n138000450801 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Torney (Ortsbezirk)"@de . + +:n14107092 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Nastätten, Stadt"@de . + +:n23208109 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Rittersdorf"@de . + +:n337020050200 a skos:Concept ; + skos:broader :n33702005 ; + skos:inScheme ; + skos:prefLabel "Blankenborn (Ortsbezirk)"@de . + +:n336100340102 a skos:Concept ; + skos:broader :n33610034 ; + skos:inScheme ; + skos:prefLabel "Remigiusberg"@de . + +:n235081260105 a skos:Concept ; + skos:broader :n23508126 ; + skos:inScheme ; + skos:prefLabel "Saarfels, Schloß"@de . + +:n23301040 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Kradenbach"@de . + +:n13402058 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Niederhambach"@de . + +:n13505092 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Zell (Mosel), Stadt"@de . + +:n13703061 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Langscheid"@de . + +:n14111081 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Lohrheim"@de . + +:n33306503 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Winnweiler"@de . + +:n33105075 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Wonsheim"@de . + +:n232080340100 a skos:Concept ; + skos:broader :n23208034 ; + skos:inScheme ; + skos:prefLabel "Badenborn"@de . + +:n33703036 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Hainfeld"@de . + +:n340090550100 a skos:Concept ; + skos:broader :n34009055 ; + skos:inScheme ; + skos:prefLabel "Harsberg"@de . + +:n13505013 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Briedel"@de . + +:n14310049 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Moschheim"@de . + +:n33306020 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Falkenstein"@de . + +:n312000001801 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Bremerhof"@de . + +:n313000000600 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Nußdorf (Ortsbezirk)"@de . + +:n33610022 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Erdesbach"@de . + +:n34002047 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Schwanheim"@de . + +:n33101021 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Erbes-Büdesheim"@de . + +:n134020100104 a skos:Concept ; + skos:broader :n13402010 ; + skos:inScheme ; + skos:prefLabel "Ulmenhof"@de . + +:n211000001100 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Kürenz (Ortsbezirk 12)"@de . + +:n33706070 a skos:Concept ; + skos:broader :n33706 ; + skos:inScheme ; + skos:prefLabel "Sankt Martin"@de . + +:n13505071 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Peterswald-Löffelscheid"@de . + +:n33307077 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Teschenmoschel"@de . + +:n33901063 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Weiler bei Bingen"@de . + +:n13807073 a skos:Concept ; + skos:broader :n13807 ; + skos:inScheme ; + skos:prefLabel "Unkel, Stadt"@de . + +:n340040070101 a skos:Concept ; + skos:broader :n34004007 ; + skos:inScheme ; + skos:prefLabel "Biebermühle"@de . + +:n33703015 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Burrweiler"@de . + +:n13311091 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Schöneberg"@de . + +:n13502016 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Brohl"@de . + +:n138020040102 a skos:Concept ; + skos:broader :n13802004 ; + skos:inScheme ; + skos:prefLabel "Ariendorf"@de . + +:n14302 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Hachenburg, Verbandsgemeinde"@de . + +:n14310028 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Helferskirchen"@de . + +:n335020100107 a skos:Concept ; + skos:broader :n33502010 ; + skos:inScheme ; + skos:prefLabel "Klaftertalerhof"@de . + +:n33608001 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Adenbach"@de . + +:n13701 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Pellenz, Verbandsgemeinde"@de . + +:n335080200102 a skos:Concept ; + skos:broader :n33508020 ; + skos:inScheme ; + skos:prefLabel "Schwanden"@de . + +:n23206318 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Wallersheim"@de . + +:n335095010200 a skos:Concept ; + skos:broader :n33509501 ; + skos:inScheme ; + skos:prefLabel "Fockenberg-Limbach (Ortsbezirk)"@de . + +:n232063320201 a skos:Concept ; + skos:broader :n23206332 ; + skos:inScheme ; + skos:prefLabel "Anzelterhof"@de . + +:n231010920200 a skos:Concept ; + skos:broader :n23101092 ; + skos:inScheme ; + skos:prefLabel "Neumagen"@de . + +:n13402016 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Buhlenberg"@de . + +:n132105010201 a skos:Concept ; + skos:broader :n13210501 ; + skos:inScheme ; + skos:prefLabel "Landgut Honneroth"@de . + +:n235075010106 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Kunkelborn"@de . + +:n14009060 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Hungenroth"@de . + +:n33303081 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Weitersweiler"@de . + +:n23208210 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Burbach"@de . + +:n231060170101 a skos:Concept ; + skos:broader :n23106017 ; + skos:inScheme ; + skos:prefLabel "Flakhaus"@de . + +:n33103 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Monsheim, Verbandsgemeinde"@de . + +:n34009035 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Nünschweiler"@de . + +:n317000000507 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Ruhbank"@de . + +:n13102003 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Altenahr"@de . + +:n132070370145 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Oberhausen"@de . + +:n23208125 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Sülm"@de . + +:n315000000200 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Bretzenheim (Ortsbezirk)"@de . + +:n34002005 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Darstein"@de . + +:n337050070200 a skos:Concept ; + skos:broader :n33705007 ; + skos:inScheme ; + skos:prefLabel "Billigheim"@de . + +:n332050140111 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Schafhof"@de . + +:n140030090104 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Rothenbergerhof, Hsgr."@de . + +:n143062920102 a skos:Concept ; + skos:broader :n14306292 ; + skos:inScheme ; + skos:prefLabel "Dappricher Hof"@de . + +:n131030060200 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Oberbreisig"@de . + +:n332070410100 a skos:Concept ; + skos:broader :n33207041 ; + skos:inScheme ; + skos:prefLabel "Albsheim"@de . + +:n337030840101 a skos:Concept ; + skos:broader :n33703084 ; + skos:inScheme ; + skos:prefLabel "Buschmühle"@de . + +:n334050180200 a skos:Concept ; + skos:broader :n33405018 ; + skos:inScheme ; + skos:prefLabel "Oberlustadt"@de . + +:n33502028 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Neuhemsbach"@de . + +:n33609037 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Henschtal"@de . + +:n235060220100 a skos:Concept ; + skos:broader :n23506022 ; + skos:inScheme ; + skos:prefLabel "Fastrau (Ortsbezirk)"@de . + +:n138010770107 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Schweifeld"@de . + +:n13104208 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Spessart"@de . + +:n23205 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Südeifel, Verbandsgemeinde"@de . + +:n233062270108 a skos:Concept ; + skos:broader :n23306227 ; + skos:inScheme ; + skos:prefLabel "Weißenseifen"@de . + +:n137092190104 a skos:Concept ; + skos:broader :n13709219 ; + skos:inScheme ; + skos:prefLabel "Pfaffenheck"@de . + +:n331060730100 a skos:Concept ; + skos:broader :n33106073 ; + skos:inScheme ; + skos:prefLabel "Rommersheim (Ortsbezirk)"@de . + +:n23205128 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Uppershausen"@de . + +:n23208098 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Oberweiler"@de . + +:n33202015 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Erpolzheim"@de . + +:n13402053 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Meckenbach"@de . + +:n131020020200 a skos:Concept ; + skos:broader :n13102002 ; + skos:inScheme ; + skos:prefLabel "Brück"@de . + +:n33609101 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Wahnwegen"@de . + +:n33105070 a skos:Concept ; + skos:broader :n33105 ; + skos:inScheme ; + skos:prefLabel "Wendelsheim"@de . + +:n33307014 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Dielkirchen"@de . + +:n13102040 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Kirchsahr"@de . + +:n23108104 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Pantenburg"@de . + +:n33502007 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Fischbach"@de . + +:n33609016 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Dittweiler"@de . + +:n235081490200 a skos:Concept ; + skos:broader :n23508149 ; + skos:inScheme ; + skos:prefLabel "Söst (Ortsbezirk)"@de . + +:n141110890101 a skos:Concept ; + skos:broader :n14111089 ; + skos:inScheme ; + skos:prefLabel "Bonscheuer"@de . + +:n13310102 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Staudernheim"@de . + +:n132070370103 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Busenbach"@de . + +:n23208077 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Meckel"@de . + +:n13802024 a skos:Concept ; + skos:broader :n13802 ; + skos:inScheme ; + skos:prefLabel "Hammerstein"@de . + +:n231001340300 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Lüxem (Ortsbezirk)"@de . + +:n13503089 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Weiler"@de . + +:n14004129 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Rödern"@de . + +:n33307072 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Sitters"@de . + +:n23508154 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Merzkirchen"@de . + +:n13310017 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Breitenheim"@de . + +:n143092420103 a skos:Concept ; + skos:broader :n14309242 ; + skos:inScheme ; + skos:prefLabel "Hilpischmühle"@de . + +:n315000001300 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Altstadt (Ortsbezirk)"@de . + +:n34009051 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Thaleischweiler-Fröschen"@de . + +:n131000700701 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Insel Nonnenwerth"@de . + +:n33303501 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Zellertal"@de . + +:n140090430200 a skos:Concept ; + skos:broader :n14009043 ; + skos:inScheme ; + skos:prefLabel "Obergondershausen"@de . + +:n13502011 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Brachtendorf"@de . + +:n143092890201 a skos:Concept ; + skos:broader :n14309289 ; + skos:inScheme ; + skos:prefLabel "Himburg"@de . + +:n235081190102 a skos:Concept ; + skos:broader :n23508119 ; + skos:inScheme ; + skos:prefLabel "Burg Heid, Hof"@de . + +:n23504100 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Ollmuth"@de . + +:n233060760400 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Üxheim-Ahütte (Ortsbezirk)"@de . + +:n33510029 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Niederkirchen"@de . + +:n340010020101 a skos:Concept ; + skos:broader :n34001002 ; + skos:inScheme ; + skos:prefLabel "Bärenbrunnerhof"@de . + +:n4 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Historische Territorien und Gebiete"@de . + +:n143012060300 a skos:Concept ; + skos:broader :n14301206 ; + skos:inScheme ; + skos:prefLabel "Langenbach"@de . + +:n14308239 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Herschbach (Oberwesterwald)"@de . + +:n23304218 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Kelberg"@de . + +:n13402011 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Börfink"@de . + +:n33307051 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Niedermoschel"@de . + +:n13709215 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Macken"@de . + +:n14310081 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Wirges, Stadt"@de . + +:n335100290101 a skos:Concept ; + skos:broader :n33510029 ; + skos:inScheme ; + skos:prefLabel "Holbornerhof"@de . + +:n231080010103 a skos:Concept ; + skos:broader :n23108001 ; + skos:inScheme ; + skos:prefLabel "Kirchhof"@de . + +:n13301045 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Hochstätten"@de . + +:n34006054 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Waldfischbach-Burgalben"@de . + +:n340092190101 a skos:Concept ; + skos:broader :n34009219 ; + skos:inScheme ; + skos:prefLabel "Kirchenarnbach"@de . + +:n23208120 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Sefferweich"@de . + +:n138030120100 a skos:Concept ; + skos:broader :n13803012 ; + skos:inScheme ; + skos:prefLabel "Brückrachdorf (Ortsbezirk)"@de . + +:n131042020200 a skos:Concept ; + skos:broader :n13104202 ; + skos:inScheme ; + skos:prefLabel "Lützingen"@de . + +:n23208035 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Etteldorf"@de . + +:n23205059 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Hüttingen bei Lahr"@de . + +:n336100550100 a skos:Concept ; + skos:broader :n33610055 ; + skos:inScheme ; + skos:prefLabel "Bledesbach (Ortsbezirk)"@de . + +:n211000000303 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Bahnhof Ehrang"@de . + +:n23206207 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Brandscheid"@de . + +:n337010240104 a skos:Concept ; + skos:broader :n33701024 ; + skos:inScheme ; + skos:prefLabel "Vogelstockerhof"@de . + +:n14310060 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Ötzingen"@de . + +:n13309202 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Kellenbach"@de . + +:n235061250100 a skos:Concept ; + skos:broader :n23506125 ; + skos:inScheme ; + skos:prefLabel "Issel (Ortsbezirk)"@de . + +:n33609032 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Gries"@de . + +:n336080750100 a skos:Concept ; + skos:broader :n33608075 ; + skos:inScheme ; + skos:prefLabel "Hundheim"@de . + +:n23306083 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Wiesbaum"@de . + +:n138010030315 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Krumscheid"@de . + +:n13505 a skos:Concept ; + skos:broader :n135 ; + skos:inScheme ; + skos:prefLabel "Zell (Mosel), Verbandsgemeinde"@de . + +:n231095010100 a skos:Concept ; + skos:broader :n23109501 ; + skos:inScheme ; + skos:prefLabel "Beuren"@de . + +:n4118625n4 a skos:Concept ; + skos:broader :n16 ; + skos:inScheme ; + skos:prefLabel "Sickinger Höhe"@de . + +:n13206010 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Bitzen"@de . + +:n138050140103 a skos:Concept ; + skos:broader :n13805014 ; + skos:inScheme ; + skos:prefLabel "Werlenbach"@de . + +:n312000000500 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Erlenbach (Ortsbezirk)"@de . + +:n140091330100 a skos:Concept ; + skos:broader :n14009133 ; + skos:inScheme ; + skos:prefLabel "Biebernheim (Ortsbezirk)"@de . + +:n23306004 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Berlingen"@de . + +:n14004145 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Sohren"@de . + +:n23206265 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Masthorn"@de . + +:n23208014 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Bickendorf"@de . + +:n235081540600 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Rommelfangen (Ortsbezirk)"@de . + +:n33106064 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Udenheim"@de . + +:n143062560200 a skos:Concept ; + skos:broader :n14306256 ; + skos:inScheme ; + skos:prefLabel "Löhnfeld"@de . + +:n13301003 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Altenbamberg"@de . + +:n34006012 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Geiselberg"@de . + +:n33609011 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Brücken (Pfalz)"@de . + +:n34003036 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Obersimten"@de . + +:n320000000112 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Rothenbergerhof"@de . + +:n33401036 a skos:Concept ; + skos:broader :n33401 ; + skos:inScheme ; + skos:prefLabel "Zeiskam"@de . + +:n23205102 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Utscheid"@de . + +:n23205096 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Obergeckler"@de . + +:n23304234 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Retterath"@de . + +:n13709231 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Wolken"@de . + +:n137030070104 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Mittelbaar"@de . + +:n134000451103 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Niederreidenbacherhof, Heil-und Pflegeanstalt"@de . + +:n340090510202 a skos:Concept ; + skos:broader :n34009051 ; + skos:inScheme ; + skos:prefLabel "Biebermühle"@de . + +:n13503005 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Auderath"@de . + +:n333070370101 a skos:Concept ; + skos:broader :n33307037 ; + skos:inScheme ; + skos:prefLabel "Kolbenmühle"@de . + +:n235071110400 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Olk (Ortsbezirk)"@de . + +:n133090460201 a skos:Concept ; + skos:broader :n13309046 ; + skos:inScheme ; + skos:prefLabel "Karlshof"@de . + +:n138000450600 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Irlich (Ortsbezirk)"@de . + +:n23201258 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lauperath"@de . + +:n211000001403 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Trimmelterberg"@de . + +:n33206022 a skos:Concept ; + skos:broader :n33206 ; + skos:inScheme ; + skos:prefLabel "Gönnheim"@de . + +:n23306041 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Lissendorf"@de . + +:n335110470120 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Weiherfelderhof"@de . + +:n4049803n7 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Rhein-Mosel-Département"@de . + +:n4090730n2 a skos:Concept ; + skos:broader :n14 ; + skos:inScheme ; + skos:prefLabel "Deutsche Weinstraße"@de . + +:n23504010 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Bonerath"@de . + +:n336101060101 a skos:Concept ; + skos:broader :n33610106 ; + skos:inScheme ; + skos:prefLabel "Sulzbacher Hof"@de . + +:n23304213 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Gunderath"@de . + +:n14303032 a skos:Concept ; + skos:broader :n14303 ; + skos:inScheme ; + skos:prefLabel "Höhr-Grenzhausen, Stadt"@de . + +:n13210109 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Stürzelbach"@de . + +:n23206223 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Fleringen"@de . + +:n00Sn02s0016a a skos:Concept ; + skos:broader :n18 ; + skos:inScheme ; + skos:prefLabel "Unteres Nahebergland"@de . + +:n231085040100 a skos:Concept ; + skos:broader :n23108504 ; + skos:inScheme ; + skos:prefLabel "Greverath"@de . + +:n340060540105 a skos:Concept ; + skos:broader :n34006054 ; + skos:inScheme ; + skos:prefLabel "Moschelmühle"@de . + +:n23201322 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Waxweiler"@de . + +:n14003502 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Lahr"@de . + +:n333060330101 a skos:Concept ; + skos:broader :n33306033 ; + skos:inScheme ; + skos:prefLabel "Langheckerhof"@de . + +:n33103046 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Mölsheim"@de . + +:n231080260104 a skos:Concept ; + skos:broader :n23108026 ; + skos:inScheme ; + skos:prefLabel "Haus Bergfeld"@de . + +:n133100760106 a skos:Concept ; + skos:broader :n13310076 ; + skos:inScheme ; + skos:prefLabel "Heddarterhof"@de . + +:n23508043 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Hentern"@de . + +:n23501092 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Naurath (Wald)"@de . + +:n231090040200 a skos:Concept ; + skos:broader :n23109004 ; + skos:inScheme ; + skos:prefLabel "Olkenbach (Ortsbezirk)"@de . + +:n332050160104 a skos:Concept ; + skos:broader :n33205016 ; + skos:inScheme ; + skos:prefLabel "Sattelmühle"@de . + +:n23108051 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Heidweiler"@de . + +:n340040320102 a skos:Concept ; + skos:broader :n34004032 ; + skos:inScheme ; + skos:prefLabel "Hombrunnerhof"@de . + +:n132060960105 a skos:Concept ; + skos:broader :n13206096 ; + skos:inScheme ; + skos:prefLabel "Oettershagen"@de . + +:n133110350100 a skos:Concept ; + skos:broader :n13311035 ; + skos:inScheme ; + skos:prefLabel "Heddesheim"@de . + +:n340030280109 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Stephanshof"@de . + +:n13702089 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Polch, Stadt"@de . + +:n132080080111 a skos:Concept ; + skos:broader :n13208008 ; + skos:inScheme ; + skos:prefLabel "Honigsessen"@de . + +:n33406 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Rülzheim, Verbandsgemeinde"@de . + +:n23208030 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Ehlenz"@de . + +:n333070650102 a skos:Concept ; + skos:broader :n33307065 ; + skos:inScheme ; + skos:prefLabel "Ober-Tierwasen"@de . + +:n23206202 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Auw bei Prüm"@de . + +:n23201301 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Roscheid"@de . + +:n13405052 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Mackenrodt"@de . + +:n335080380100 a skos:Concept ; + skos:broader :n33508038 ; + skos:inScheme ; + skos:prefLabel "Miesenbach"@de . + +:n34003052 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Trulben"@de . + +:n231085030202 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Hof Hau"@de . + +:n138010030310 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Kalscheid"@de . + +:n335010030300 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Elschbacherhof"@de . + +:n23109029 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Enkirch"@de . + +:n13803034 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Kleinmaischeid"@de . + +:n14307044 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Marienrachdorf"@de . + +:n14008115 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Oppertshausen"@de . + +:n338070230100 a skos:Concept ; + skos:broader :n33807023 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de . + +:n23106202 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Breit"@de . + +:n23205033 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Ernzen"@de . + +:n23508 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Saarburg-Kell, Verbandsgemeinde"@de . + +:n333075020305 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Inkeltalerhof"@de . + +:n33405006 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Freisbach"@de . + +:n13306115 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Winterbach"@de . + +:n14309249 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Kölbingen"@de . + +:n132100810103 a skos:Concept ; + skos:broader :n13210081 ; + skos:inScheme ; + skos:prefLabel "Niedererbach"@de . + +:n13400045 a skos:Concept ; + skos:broader :n134 ; + skos:inScheme ; + skos:prefLabel "Idar-Oberstein, große kreisangehörige Stadt"@de . + +:n140035020101 a skos:Concept ; + skos:broader :n14003502 ; + skos:inScheme ; + skos:prefLabel "Lahrer Mühle"@de . + +:n141070350101 a skos:Concept ; + skos:broader :n14107035 ; + skos:inScheme ; + skos:prefLabel "Ehrer Bachmühle"@de . + +:n33903046 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Ober-Hilbersheim"@de . + +:n336090920200 a skos:Concept ; + skos:broader :n33609092 ; + skos:inScheme ; + skos:prefLabel "Sand"@de . + +:n333040070102 a skos:Concept ; + skos:broader :n33304007 ; + skos:inScheme ; + skos:prefLabel "Heubergerhof"@de . + +:n23205012 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Berscheid"@de . + +:n138090760105 a skos:Concept ; + skos:broader :n13809076 ; + skos:inScheme ; + skos:prefLabel "Marienhaus, Kloster"@de . + +:n339010620204 a skos:Concept ; + skos:broader :n33901062 ; + skos:inScheme ; + skos:prefLabel "Jagdhaus Marbach"@de . + +:n33107037 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Gundheim"@de . + +:n235041070102 a skos:Concept ; + skos:broader :n23504107 ; + skos:inScheme ; + skos:prefLabel "Geizenburg"@de . + +:n135050040102 a skos:Concept ; + skos:broader :n13505004 ; + skos:inScheme ; + skos:prefLabel "Pulgersmühle"@de . + +:n132070720104 a skos:Concept ; + skos:broader :n13207072 ; + skos:inScheme ; + skos:prefLabel "Niederschelderhütte"@de . + +:n13309 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Kirner Land, Verbandsgemeinde"@de . + +:n34008212 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Käshofen"@de . + +:n23201253 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Krautscheid"@de . + +:n33511018 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Kindsbach"@de . + +:n14309228 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Guckheim"@de . + +:n13306088 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Sankt Katharinen"@de . + +:n233 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Vulkaneifel, Landkreis"@de . + +:n14304026 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Heilberscheid"@de . + +:n13210104 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Seifen"@de . + +:n33701081 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Waldrohrbach"@de . + +:n133110910102 a skos:Concept ; + skos:broader :n13311091 ; + skos:inScheme ; + skos:prefLabel "Neupfalz"@de . + +:n13100090 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Grafschaft"@de . + +:n333060090105 a skos:Concept ; + skos:broader :n33306009 ; + skos:inScheme ; + skos:prefLabel "Kreuzhof"@de . + +:n340060540100 a skos:Concept ; + skos:broader :n34006054 ; + skos:inScheme ; + skos:prefLabel "Burgalben"@de . + +:n231080800200 a skos:Concept ; + skos:broader :n23108080 ; + skos:inScheme ; + skos:prefLabel "Niedermanderscheid"@de . + +:n232080390103 a skos:Concept ; + skos:broader :n23208039 ; + skos:inScheme ; + skos:prefLabel "Otrang"@de . + +:n33103041 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Hohen-Sülzen"@de . + +:n14110046 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Geisig"@de . + +:n133105010200 a skos:Concept ; + skos:broader :n13310501 ; + skos:inScheme ; + skos:prefLabel "Pferdsfeld"@de . + +:n132080800107 a skos:Concept ; + skos:broader :n13208080 ; + skos:inScheme ; + skos:prefLabel "Ebertseifen"@de . + +:n34002 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Hauenstein, Verbandsgemeinde"@de . + +:n231081130200 a skos:Concept ; + skos:broader :n23108113 ; + skos:inScheme ; + skos:prefLabel "Salmrohr"@de . + +:n48 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Hochstift Worms"@de . + +:n33401 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Bellheim, Verbandsgemeinde"@de . + +:n14309207 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Bellingen"@de . + +:n143040130102 a skos:Concept ; + skos:broader :n14304013 ; + skos:inScheme ; + skos:prefLabel "Denzerheide"@de . + +:n13309043 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Hennweiler"@de . + +:n135020510106 a skos:Concept ; + skos:broader :n13502051 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n311000000400 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Mörsch (Ortsbezirk)"@de . + +:n14304005 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Boden"@de . + +:n33702059 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Oberotterbach"@de . + +:n14004071 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Kludenbach"@de . + +:n23506125 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Schweich, Stadt"@de . + +:n333020380106 a skos:Concept ; + skos:broader :n33302038 ; + skos:inScheme ; + skos:prefLabel "Rosenthalerhof (T.a.Ortsbezirk Rosenthal)"@de . + +:n232062220107 a skos:Concept ; + skos:broader :n23206222 ; + skos:inScheme ; + skos:prefLabel "Schwarzbach"@de . + +:n231081030200 a skos:Concept ; + skos:broader :n23108103 ; + skos:inScheme ; + skos:prefLabel "Osann"@de . + +:n14110025 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Dausenau"@de . + +:n232063280102 a skos:Concept ; + skos:broader :n23206328 ; + skos:inScheme ; + skos:prefLabel "Heltenbachermühle"@de . + +:n14103124 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Scheidt"@de . + +:n111000000800 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Immendorf (T.a.Ortsbezirk 1)"@de . + +:n339000050500 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Dromersheim"@de . + +:n336081050100 a skos:Concept ; + skos:broader :n33608105 ; + skos:inScheme ; + skos:prefLabel "Roßbach"@de . + +:n23201211 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Dackscheid"@de . + +:n134020420100 a skos:Concept ; + skos:broader :n13402042 ; + skos:inScheme ; + skos:prefLabel "Hoppstädten"@de . + +:n336080950200 a skos:Concept ; + skos:broader :n33608095 ; + skos:inScheme ; + skos:prefLabel "Gumbsweiler"@de . + +:n33907037 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Mommenheim"@de . + +:n27 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Untere-Saar-Tal"@de . + +:n13809072 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Thalhausen"@de . + +:n132081170105 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Bodenseifen"@de . + +:n14302235 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Hattert"@de . + +:n23503 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Konz, Verbandsgemeinde"@de . + +:n13210056 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Idelberg"@de . + +:n14004050 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Henau"@de . + +:n23106112 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Rorodt"@de . + +:n133010390101 a skos:Concept ; + skos:broader :n13301039 ; + skos:inScheme ; + skos:prefLabel "Dreiweiherhof"@de . + +:n232050160102 a skos:Concept ; + skos:broader :n23205016 ; + skos:inScheme ; + skos:prefLabel "Gaybach"@de . + +:n23506019 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Ensch"@de . + +:n233015010300 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Neunkirchen (Ortsbezirk)"@de . + +:n141102010101 a skos:Concept ; + skos:broader :n14110201 ; + skos:inScheme ; + skos:prefLabel "Bierhaus"@de . + +:n320000000500 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Ixheim"@de . + +:n333070340101 a skos:Concept ; + skos:broader :n33307034 ; + skos:inScheme ; + skos:prefLabel "Felsbergerhof"@de . + +:n33903041 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Nieder-Hilbersheim"@de . + +:n336100700101 a skos:Concept ; + skos:broader :n33610070 ; + skos:inScheme ; + skos:prefLabel "Mayweilerhof"@de . + +:n33701501 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Annweiler am Trifels, Stadt"@de . + +:n140090450103 a skos:Concept ; + skos:broader :n14009045 ; + skos:inScheme ; + skos:prefLabel "Ehrerheide"@de . + +:n13210035 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Forstmehren"@de . + +:n13101026 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Harscheid"@de . + +:n23506077 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Longen"@de . + +:n235070690104 a skos:Concept ; + skos:broader :n23507069 ; + skos:inScheme ; + skos:prefLabel "Kimmlingen"@de . + +:n131010370201 a skos:Concept ; + skos:broader :n13101037 ; + skos:inScheme ; + skos:prefLabel "Herschbach"@de . + +:n13703105 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Virneburg"@de . + +:n13703099 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Siebenbach"@de . + +:n14103076 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Langenscheid"@de . + +:n23106006 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Berglicht"@de . + +:n14304021 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Girod"@de . + +:n232000180700 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Stahl (Ortsbezirk)"@de . + +:n14111125 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Schiesheim"@de . + +:n13210093 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Reiferscheid"@de . + +:n33705051 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Leinsweiler"@de . + +:n335022050101 a skos:Concept ; + skos:broader :n33502205 ; + skos:inScheme ; + skos:prefLabel "Eichenbachermühle"@de . + +:n13104060 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Oberzissen"@de . + +:n13101084 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Wimbach"@de . + +:n111000001900 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Rauental"@de . + +:n13809030 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Hümmerich"@de . + +:n13306004 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Argenschwang"@de . + +:n137025010200 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Küttig (Ortsbezirk)"@de . + +:n143 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Westerwald-Kreis"@de . + +:n33107011 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Hochborn"@de . + +:n14110041 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Fachbach"@de . + +:n13101005 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Aremberg"@de . + +:n231010810108 a skos:Concept ; + skos:broader :n23101081 ; + skos:inScheme ; + skos:prefLabel "Noviand"@de . + +:n13203113 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Weitefeld"@de . + +:n231010700100 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Emmeroth (Ortsbezirk)"@de . + +:n23106064 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Immert"@de . + +:n14306311 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Willingen"@de . + +:n140032020300 a skos:Concept ; + skos:broader :n14003202 ; + skos:inScheme ; + skos:prefLabel "Eveshausen (Ortsbezirk)"@de . + +:n43 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Erzstift Mainz"@de . + +:n33907053 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Selzen"@de . + +:n335100350113 a skos:Concept ; + skos:broader :n33510035 ; + skos:inScheme ; + skos:prefLabel "Messerschwanderhof"@de . + +:n137072260107 a skos:Concept ; + skos:broader :n13707226 ; + skos:inScheme ; + skos:prefLabel "Mallendar"@de . + +:n138000451000 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Rodenbach (Ortsbezirk)"@de . + +:n23503144 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Wawern"@de . + +:n23506120 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Schleich"@de . + +:n33610039 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Herchweiler"@de . + +:n232062220102 a skos:Concept ; + skos:broader :n23206222 ; + skos:inScheme ; + skos:prefLabel "Gesotz"@de . + +:n141090160103 a skos:Concept ; + skos:broader :n14109016 ; + skos:inScheme ; + skos:prefLabel "Loreley"@de . + +:n133110950107 a skos:Concept ; + skos:broader :n13311095 ; + skos:inScheme ; + skos:prefLabel "Marienborn"@de . + +:n33406016 a skos:Concept ; + skos:broader :n33406 ; + skos:inScheme ; + skos:prefLabel "Leimersheim"@de . + +:n211000000601 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Estricherhof"@de . + +:n135030830102 a skos:Concept ; + skos:broader :n13503083 ; + skos:inScheme ; + skos:prefLabel "Forsthaus Hochpochten"@de . + +:n143022940102 a skos:Concept ; + skos:broader :n14302294 ; + skos:inScheme ; + skos:prefLabel "Seeburg"@de . + +:n33201017 a skos:Concept ; + skos:broader :n33201 ; + skos:inScheme ; + skos:prefLabel "Forst an der Weinstraße"@de . + +:n13505088 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Walhausen"@de . + +:n14009104 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Niederburg"@de . + +:n22 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Mittelrhein-Gebiet"@de . + +:n33610103 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Welchweiler"@de . + +:n33610097 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Thallichtenberg"@de . + +:n14107009 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Berg"@de . + +:n138010440300 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Rahms"@de . + +:n13803 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Dierdorf, Verbandsgemeinde"@de . + +:n13210051 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Heupelzen"@de . + +:n133110250102 a skos:Concept ; + skos:broader :n13311025 ; + skos:inScheme ; + skos:prefLabel "Gollenfels, Burg"@de . + +:n4060881n5 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Regierungsbezirk Trier (1946-1999)"@de . + +:n137030740104 a skos:Concept ; + skos:broader :n13703074 ; + skos:inScheme ; + skos:prefLabel "Müsch"@de . + +:n13311114 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Windesheim"@de . + +:n337060520100 a skos:Concept ; + skos:broader :n33706052 ; + skos:inScheme ; + skos:prefLabel "Alsterweiler"@de . + +:n14008020 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Bubach"@de . + +:n13101042 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Kottenborn"@de . + +:n33610018 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Ehweiler"@de . + +:n34009222 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Rieschweiler-Mühlbach"@de . + +:n233060260600 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Lissingen (Ortsbezirk)"@de . + +:n134050370102 a skos:Concept ; + skos:broader :n13405037 ; + skos:inScheme ; + skos:prefLabel "Hammerbirkenfeld"@de . + +:n14107067 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Kasdorf"@de . + +:n33205 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Lambrecht (Pfalz), Verbandsgemeinde"@de . + +:n231005020400 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Gutenthal (Ortsbezirk)"@de . + +:n4639983n5 a skos:Concept ; + skos:broader :n24 ; + skos:inScheme ; + skos:prefLabel "Obermosel-Gebiet"@de . + +:n33907011 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Dexheim"@de . + +:n01 a skos:Concept ; + skos:broader :n1 ; + skos:inScheme ; + skos:prefLabel "Rheinland-Pfalz"@de . + +:n13703036 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Hirten"@de . + +:n131020030200 a skos:Concept ; + skos:broader :n13102003 ; + skos:inScheme ; + skos:prefLabel "Kreuzberg (Ortsbezirk)"@de . + +:n13311087 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Rümmelsheim"@de . + +:n143022870104 a skos:Concept ; + skos:broader :n14302287 ; + skos:inScheme ; + skos:prefLabel "Roßbacher Mühle"@de . + +:n319000000400 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Herrnsheim (Ortsbezirk)"@de . + +:n13101021 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Eichenbach"@de . + +:n23503096 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Oberbillig"@de . + +:n14107131 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Strüth"@de . + +:n23100134 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Wittlich, Stadt"@de . + +:n13805059 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Raubach"@de . + +:n33908068 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Zotzenheim"@de . + +:n134000450800 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Nahbollenbach"@de . + +:n33703069 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Roschbach"@de . + +:n33901038 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Münster-Sarmsheim"@de . + +:n33610055 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Kusel,Stadt"@de . + +:n132100850103 a skos:Concept ; + skos:broader :n13210085 ; + skos:inScheme ; + skos:prefLabel "Heiderhof"@de . + +:n33307201 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Rathskirchen"@de . + +:n316000000705 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Lachener Holzweg"@de . + +:n14107110 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Hainau"@de . + +:n14307305 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Weidenhahn"@de . + +:n34001002 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Busenberg"@de . + +:n333040460101 a skos:Concept ; + skos:broader :n33304046 ; + skos:inScheme ; + skos:prefLabel "Daimbacherhof"@de . + +:n23301052 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Niederstadtfeld"@de . + +:n111000000100 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Arenberg (T.a.Ortsbezirk 1)"@de . + +:n132060340103 a skos:Concept ; + skos:broader :n13206034 ; + skos:inScheme ; + skos:prefLabel "Kaltau"@de . + +:n232063290303 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Elcherath"@de . + +:n141035030201 a skos:Concept ; + skos:broader :n14103503 ; + skos:inScheme ; + skos:prefLabel "Talhof"@de . + +:n135010200103 a skos:Concept ; + skos:broader :n13501020 ; + skos:inScheme ; + skos:prefLabel "Cond"@de . + +:n137072260102 a skos:Concept ; + skos:broader :n13707226 ; + skos:inScheme ; + skos:prefLabel "Bembermühle"@de . + +:n332050140107 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Hornesselwiese"@de . + +:n14111093 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Netzbach"@de . + +:n33703048 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Kleinfischlingen"@de . + +:n13209066 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Malberg"@de . + +:n131000070600 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Lohrsdorf (Ortsbezirk)"@de . + +:n33610034 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Haschbach am Remigiusberg"@de . + +:n231005021500 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Rapperath (Ortsbezirk)"@de . + +:n232062020300 a skos:Concept ; + skos:broader :n23206202 ; + skos:inScheme ; + skos:prefLabel "Schlausenbach"@de . + +:n33704 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Herxheim , Verbandsgemeinde"@de . + +:n13804501 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Kasbach-Ohlenberg"@de . + +:n138010800204 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Oberscheid"@de . + +:n131000900600 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Karweiler (Ortsbezirk)"@de . + +:n235071510101 a skos:Concept ; + skos:broader :n23507151 ; + skos:inScheme ; + skos:prefLabel "Daufenbach (Ortsbezirk)"@de . + +:n33406011 a skos:Concept ; + skos:broader :n33406 ; + skos:inScheme ; + skos:prefLabel "Hördt"@de . + +:n23301031 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Hörscheid"@de . + +:n319000001500 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Wiesoppenheim (Ortsbezirk)"@de . + +:n14003147 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Spesenroth"@de . + +:n14009093 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Mermuth"@de . + +:n33703027 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Freimersheim (Pfalz)"@de . + +:n13505004 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Altstrimmig"@de . + +:n13502028 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Eulgem"@de . + +:n33306011 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Breunigweiler"@de . + +:n14009014 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Bickenbach"@de . + +:n13102036 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Kalenborn"@de . + +:n338000040201 a skos:Concept ; + skos:broader :n33800004 ; + skos:inScheme ; + skos:prefLabel "Scharrau"@de . + +:n33608013 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Cronenberg"@de . + +:n33101012 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Bornheim"@de . + +:n233062140105 a skos:Concept ; + skos:broader :n23306214 ; + skos:inScheme ; + skos:prefLabel "Zur Kehr"@de . + +:n137000030300 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Kell (Ortsbezirk)"@de . + +:n33307068 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Schönborn"@de . + +:n23507151 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Zemmer"@de . + +:n33610071 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Oberstaufenbach"@de . + +:n235081180306 a skos:Concept ; + skos:broader :n23508118 ; + skos:inScheme ; + skos:prefLabel "Niederleuken"@de . + +:n337050730101 a skos:Concept ; + skos:broader :n33705073 ; + skos:inScheme ; + skos:prefLabel "Geilweilerhof, Rebschule"@de . + +:n14111051 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Hahnstätten"@de . + +:n111000001200 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Lützel"@de . + +:n13209024 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Elben"@de . + +:n235010930102 a skos:Concept ; + skos:broader :n23501093 ; + skos:inScheme ; + skos:prefLabel "Muhl (ehemals Gemeinde Börfink-Muhl)"@de . + +:n34001501 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Bruchweiler-Bärenbach"@de . + +:n132070630300 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Katzenbach (Ortsbezirk)"@de . + +:n23208137 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Wolsfeld"@de . + +:n332000020118 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Limburg"@de . + +:n138010770204 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Johannisberg"@de . + +:n13505041 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Hesweiler"@de . + +:n141091210200 a skos:Concept ; + skos:broader :n14109121 ; + skos:inScheme ; + skos:prefLabel "Wellmich"@de . + +:n132090710102 a skos:Concept ; + skos:broader :n13209071 ; + skos:inScheme ; + skos:prefLabel "Seifen"@de . + +:n23205225 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Gilzem"@de . + +:n317000000100 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Erlenbrunn (Ortsbezirk)"@de . + +:n235030680501 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Karthaus"@de . + +:n33608050 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Kirrweiler"@de . + +:n316000000700 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Hambach (Ortsbezirk)"@de . + +:n141070850103 a skos:Concept ; + skos:broader :n14107085 ; + skos:inScheme ; + skos:prefLabel "Hof Aftholderbach"@de . + +:n232080600101 a skos:Concept ; + skos:broader :n23208060 ; + skos:inScheme ; + skos:prefLabel "Meilbrück"@de . + +:n33509049 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Weilerbach"@de . + +:n332050140102 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Appenthal"@de . + +:n13502044 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Kail"@de . + +:n333070140103 a skos:Concept ; + skos:broader :n33307014 ; + skos:inScheme ; + skos:prefLabel "Hoferhof"@de . + +:n23108116 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Schwarzenborn"@de . + +:n13103 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Bad Breisig, Verbandsgemeinde"@de . + +:n331060040200 a skos:Concept ; + skos:broader :n33106004 ; + skos:inScheme ; + skos:prefLabel "Schimsheim"@de . + +:n333060200103 a skos:Concept ; + skos:broader :n33306020 ; + skos:inScheme ; + skos:prefLabel "Merzauerhof"@de . + +:n131030060106 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Wohnplatz Weiler"@de . + +:n4221819n6 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Mittelrheintal / Süd"@de . + +:n232012630200 a skos:Concept ; + skos:broader :n23201263 ; + skos:inScheme ; + skos:prefLabel "Stupbach"@de . + +:n143092420200 a skos:Concept ; + skos:broader :n14309242 ; + skos:inScheme ; + skos:prefLabel "Neuhochstein"@de . + +:n337030200102 a skos:Concept ; + skos:broader :n33703020 ; + skos:inScheme ; + skos:prefLabel "Ludwigshöhe"@de . + +:n137020860116 a skos:Concept ; + skos:broader :n13702086 ; + skos:inScheme ; + skos:prefLabel "Waldorferhof"@de . + +:n141030300101 a skos:Concept ; + skos:broader :n14103030 ; + skos:inScheme ; + skos:prefLabel "Bergerhof"@de . + +:n33307084 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Würzweiler"@de . + +:n133060990101 a skos:Concept ; + skos:broader :n13306099 ; + skos:inScheme ; + skos:prefLabel "Aschbornerhof"@de . + +:n33908021 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Gensingen"@de . + +:n211000001505 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Kockelsberg"@de . + +:n13301078 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Pfaffen-Schwabenheim"@de . + +:n131042080103 a skos:Concept ; + skos:broader :n13104208 ; + skos:inScheme ; + skos:prefLabel "Wollscheid"@de . + +:n13502023 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Düngenheim"@de . + +:n13805070 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Steimel"@de . + +:n23306058 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Rockeskyll"@de . + +:n13402023 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Ellenberg"@de . + +:n337010010101 a skos:Concept ; + skos:broader :n33701001 ; + skos:inScheme ; + skos:prefLabel "Langenscheiderhof"@de . + +:n13709227 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Waldesch"@de . + +:n134000450100 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Enzweiler"@de . + +:n34009042 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Schauerberg"@de . + +:n23504085 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Mertesdorf"@de . + +:n132070370152 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Schmalenbach"@de . + +:n33508 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Ramstein-Miesenbach, Verbandsgemeinde"@de . + +:n133000060500 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Winzenheim (Ortsbezirk)"@de . + +:n140030100400 a skos:Concept ; + skos:broader :n14003010 ; + skos:inScheme ; + skos:prefLabel "Mannebach (Ortsbezirk)"@de . + +:n211000000400 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Eitelsbach (T.a. Ortsbezirk 7)"@de . + +:n335110470116 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Oberhammer"@de . + +:n140005010600 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Holzfeld (Ortsbezirk)"@de . + +:n23206304 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Schönecken"@de . + +:n13310066 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Merxheim"@de . + +:n14301279 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Nistertal"@de . + +:n332000020113 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Kehr dich an nichts, Forsthaus"@de . + +:n143012790201 a skos:Concept ; + skos:broader :n14301279 ; + skos:inScheme ; + skos:prefLabel "Auf dem Birkenhof"@de . + +:n13402002 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Achtelsbach"@de . + +:n335010030402 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Schanzerhof"@de . + +:n13709206 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Burgen"@de . + +:n233060261000 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Roth (Ortsbezirk)"@de . + +:n336090110103 a skos:Concept ; + skos:broader :n33609011 ; + skos:inScheme ; + skos:prefLabel "Neumühle"@de . + +:n13405069 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Rhaunen"@de . + +:n23208111 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Röhl"@de . + +:n233042180500 a skos:Concept ; + skos:broader :n23304218 ; + skos:inScheme ; + skos:prefLabel "Zermüllen (Ortsbezirk)"@de . + +:n339010440102 a skos:Concept ; + skos:broader :n33901044 ; + skos:inScheme ; + skos:prefLabel "Rheindiebach"@de . + +:n231091240300 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Wolf (Ortsbezirk)"@de . + +:n137000030104 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Marienstätterhof"@de . + +:n23208026 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Dockendorf"@de . + +:n235070940100 a skos:Concept ; + skos:broader :n23507094 ; + skos:inScheme ; + skos:prefLabel "Beßlich (Ortsbezirk)"@de . + +:n233062320101 a skos:Concept ; + skos:broader :n23306232 ; + skos:inScheme ; + skos:prefLabel "Neuenstein"@de . + +:n134020850104 a skos:Concept ; + skos:broader :n13402085 ; + skos:inScheme ; + skos:prefLabel "Sonnenberg"@de . + +:n340030260102 a skos:Concept ; + skos:broader :n34003026 ; + skos:inScheme ; + skos:prefLabel "Stausteinerhof"@de . + +:n335100130103 a skos:Concept ; + skos:broader :n33510013 ; + skos:inScheme ; + skos:prefLabel "Rohmühle"@de . + +:n33902006 a skos:Concept ; + skos:broader :n33902 ; + skos:inScheme ; + skos:prefLabel "Bodenheim"@de . + +:n33307021 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Finkenbach-Gersweiler"@de . + +:n14003073 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Korweiler"@de . + +:n33304045 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Marnheim"@de . + +:n314000000400 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Mundenheim (Ortsbezirk)"@de . + +:n23108111 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Rivenich"@de . + +:n235010470200 a skos:Concept ; + skos:broader :n23501047 ; + skos:inScheme ; + skos:prefLabel "Pölert"@de . + +:n34003048 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Schweix"@de . + +:n138010030306 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Ehrenstein"@de . + +:n338000170105 a skos:Concept ; + skos:broader :n33800017 ; + skos:inScheme ; + skos:prefLabel "Kohlhof"@de . + +:n23205114 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Schankweiler"@de . + +:n23108026 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Eisenschmitt"@de . + +:n23101075 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Lieser"@de . + +:n335110450104 a skos:Concept ; + skos:broader :n33511045 ; + skos:inScheme ; + skos:prefLabel "Horst, Forsthaus"@de . + +:n135050920100 a skos:Concept ; + skos:broader :n13505092 ; + skos:inScheme ; + skos:prefLabel "Kaimt"@de . + +:n141101060101 a skos:Concept ; + skos:broader :n14110106 ; + skos:inScheme ; + skos:prefLabel "Dörstheck"@de . + +:n141031330101 a skos:Concept ; + skos:broader :n14103133 ; + skos:inScheme ; + skos:prefLabel "Habenscheid"@de . + +:n131045020100 a skos:Concept ; + skos:broader :n13104502 ; + skos:inScheme ; + skos:prefLabel "Engeln (Ortsbezirk)"@de . + +:n23106 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Thalfang am Erbeskopf, Verbandsgemeinde"@de . + +:n13310024 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Desloch"@de . + +:n23206256 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Lasel"@de . + +:n211000001500 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Pallien (T.a. Ortsbezirk 8)"@de . + +:n13103025 a skos:Concept ; + skos:broader :n13103 ; + skos:inScheme ; + skos:prefLabel "Gönnersdorf"@de . + +:n132060380103 a skos:Concept ; + skos:broader :n13206038 ; + skos:inScheme ; + skos:prefLabel "Oppertsau"@de . + +:n335 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Kaiserslautern, Landkreis"@de . + +:n23306053 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Oberbettingen"@de . + +:n23206320 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Watzerath"@de . + +:n13310082 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Rehbach"@de . + +:n00Sn02t0429a a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Kyllwald"@de . + +:n23304225 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Mannebach"@de . + +:n14307019 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Freirachdorf"@de . + +:n338010140100 a skos:Concept ; + skos:broader :n33801014 ; + skos:inScheme ; + skos:prefLabel "Assenheim"@de . + +:n23508140 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Vierherrenborn"@de . + +:n138030230200 a skos:Concept ; + skos:broader :n13803023 ; + skos:inScheme ; + skos:prefLabel "Kausen (Ortsbezirk)"@de . + +:n335010110102 a skos:Concept ; + skos:broader :n33501011 ; + skos:inScheme ; + skos:prefLabel "Scharrmühle"@de . + +:n23205008 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Bauler"@de . + +:n14301216 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Dreisbach"@de . + +:n131000901000 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Ringen (Ortsbezirk)"@de . + +:n137030490200 a skos:Concept ; + skos:broader :n13703049 ; + skos:inScheme ; + skos:prefLabel "Waldesch"@de . + +:n131020400102 a skos:Concept ; + skos:broader :n13102040 ; + skos:inScheme ; + skos:prefLabel "Burgsahr"@de . + +:n13207037 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Friesenhagen"@de . + +:n23504080 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Lorscheid"@de . + +:n14109114 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Reichenberg"@de . + +:n34008208 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Dietrichingen"@de . + +:n13405006 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Bergen"@de . + +:n33206013 a skos:Concept ; + skos:broader :n33206 ; + skos:inScheme ; + skos:prefLabel "Ellerstadt"@de . + +:n334005010301 a skos:Concept ; + skos:broader :n33400501 ; + skos:inScheme ; + skos:prefLabel "Schaidter Mühle"@de . + +:n14008148 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Steinbach"@de . + +:n335110470111 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Lauberhof"@de . + +:n315000000600 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Gonsenheim (Ortsbezirk)"@de . + +:n23205066 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Keppeshausen"@de . + +:n14110127 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Schweighausen"@de . + +:n13709201 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Alken"@de . + +:n111000000902 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Forsthaus Remstecken"@de . + +:n336081050202 a skos:Concept ; + skos:broader :n33608105 ; + skos:inScheme ; + skos:prefLabel "Reckweilerhof"@de . + +:n13301031 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Frei-Laubersheim"@de . + +:n13405064 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Oberhosenbach"@de . + +:n143022290100 a skos:Concept ; + skos:broader :n14302229 ; + skos:inScheme ; + skos:prefLabel "Altstadt (Ortsbezirk)"@de . + +:n138020380106 a skos:Concept ; + skos:broader :n13802038 ; + skos:inScheme ; + skos:prefLabel "Windhausen"@de . + +:n13104210 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Wehr"@de . + +:n331000030500 a skos:Concept ; + skos:broader :n33100003 ; + skos:inScheme ; + skos:prefLabel "Weinheim (Ortsbezirk)"@de . + +:n336080950302 a skos:Concept ; + skos:broader :n33608095 ; + skos:inScheme ; + skos:prefLabel "Obereisenbach"@de . + +:n14003010 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Beltheim"@de . + +:n13100007 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Bad Neuenahr-Ahrweiler, Stadt"@de . + +:n132100230101 a skos:Concept ; + skos:broader :n13210023 ; + skos:inScheme ; + skos:prefLabel "Gollershoben"@de . + +:n23205130 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Waldhof-Falkenstein"@de . + +:n233010340101 a skos:Concept ; + skos:broader :n23301034 ; + skos:inScheme ; + skos:prefLabel "Heckenmühle"@de . + +:n14307056 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Nordhofen"@de . + +:n23206272 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Neuendorf"@de . + +:n14008127 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Riesweiler"@de . + +:n339000300300 a skos:Concept ; + skos:broader :n33900030 ; + skos:inScheme ; + skos:prefLabel "Heidesheim am Rhein"@de . + +:n231011360104 a skos:Concept ; + skos:broader :n23101136 ; + skos:inScheme ; + skos:prefLabel "Zeltingen (Ortsbezirk)"@de . + +:n132080540109 a skos:Concept ; + skos:broader :n13208054 ; + skos:inScheme ; + skos:prefLabel "Siegenthal"@de . + +:n13701081 a skos:Concept ; + skos:broader :n13701 ; + skos:inScheme ; + skos:prefLabel "Nickenich"@de . + +:n132080080102 a skos:Concept ; + skos:broader :n13208008 ; + skos:inScheme ; + skos:prefLabel "Birken"@de . + +:n14301253 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Langenbach bei Kirburg"@de . + +:n23101012 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Brauneberg"@de . + +:n138090530102 a skos:Concept ; + skos:broader :n13809053 ; + skos:inScheme ; + skos:prefLabel "Gierenderhöhe"@de . + +:n131042020101 a skos:Concept ; + skos:broader :n13104202 ; + skos:inScheme ; + skos:prefLabel "Bad Tönisstein"@de . + +:n14110106 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Oberwies"@de . + +:n33304040 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Kriegsfeld"@de . + +:n231091240210 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Rißbach"@de . + +:n14004067 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Kirchberg (Hunsrück), Stadt"@de . + +:n33609501 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Quirnbach (Pfalz)"@de . + +:n140090360103 a skos:Concept ; + skos:broader :n14009036 ; + skos:inScheme ; + skos:prefLabel "Liesenfeld"@de . + +:n13405043 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Horbruch"@de . + +:n23108504 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Niersbach"@de . + +:n138010030301 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Altenburg"@de . + +:n134020940201 a skos:Concept ; + skos:broader :n13402094 ; + skos:inScheme ; + skos:prefLabel "Wilzenberg"@de . + +:n340020570103 a skos:Concept ; + skos:broader :n34002057 ; + skos:inScheme ; + skos:prefLabel "Hermersbergerhof (Ortsbezirk)"@de . + +:n33405018 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Lustadt"@de . + +:n14109066 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Kamp-Bornhofen"@de . + +:n23108021 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Dierfeld"@de . + +:n23101070 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Kleinich"@de . + +:n13503091 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Wollmerath"@de . + +:n14008106 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Niederkumbd"@de . + +:n33509501 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Reichenbach-Steegen"@de . + +:n23101 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Bernkastel-Kues, Verbandsgemeinde"@de . + +:n138070190200 a skos:Concept ; + skos:broader :n13807019 ; + skos:inScheme ; + skos:prefLabel "Orsberg"@de . + +:n133061150103 a skos:Concept ; + skos:broader :n13306115 ; + skos:inScheme ; + skos:prefLabel "Kuhpferch"@de . + +:n33107049 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Monzernheim"@de . + +:n235030680300 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Könen (Ortsbezirk 2)"@de . + +:n315000001700 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Layenhof"@de . + +:n235070730400 a skos:Concept ; + skos:broader :n23507073 ; + skos:inScheme ; + skos:prefLabel "Metzdorf (Ortsbezirk)"@de . + +:n141100910300 a skos:Concept ; + skos:broader :n14110091 ; + skos:inScheme ; + skos:prefLabel "Scheuern"@de . + +:n333070040105 a skos:Concept ; + skos:broader :n33307004 ; + skos:inScheme ; + skos:prefLabel "Stolzenbergerhof"@de . + +:n13210201 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Berod bei Hachenburg"@de . + +:n141030290200 a skos:Concept ; + skos:broader :n14103029 ; + skos:inScheme ; + skos:prefLabel "Freiendiez"@de . + +:n140041630101 a skos:Concept ; + skos:broader :n14004163 ; + skos:inScheme ; + skos:prefLabel "Wallenbrück"@de . + +:n138090060112 a skos:Concept ; + skos:broader :n13809006 ; + skos:inScheme ; + skos:prefLabel "Hollig"@de . + +:n335090060102 a skos:Concept ; + skos:broader :n33509006 ; + skos:inScheme ; + skos:prefLabel "Untere Pfeifermühle"@de . + +:n131010330102 a skos:Concept ; + skos:broader :n13101033 ; + skos:inScheme ; + skos:prefLabel "Marthel"@de . + +:n23205082 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Minden"@de . + +:n23304220 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Kirsbach"@de . + +:n13210116 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Willroth"@de . + +:n14008079 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Laubach"@de . + +:n23206230 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Großlangenfeld"@de . + +:n232012670200 a skos:Concept ; + skos:broader :n23201267 ; + skos:inScheme ; + skos:prefLabel "Staudenhof"@de . + +:n140080700104 a skos:Concept ; + skos:broader :n14008070 ; + skos:inScheme ; + skos:prefLabel "Kloster"@de . + +:n13809047 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Niederbreitbach"@de . + +:n23205003 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Altscheid"@de . + +:n14301211 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Bölsberg"@de . + +:n33107028 a skos:Concept ; + skos:broader :n33107 ; + skos:inScheme ; + skos:prefLabel "Frettenheim"@de . + +:n14110058 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Hömberg"@de . + +:n23109057 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Hontheim"@de . + +:n34008203 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Bechhofen"@de . + +:n14309298 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Stockum-Püschen"@de . + +:n140091120306 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Schönburg"@de . + +:n33207007 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Carlsberg"@de . + +:n232080090102 a skos:Concept ; + skos:broader :n23208009 ; + skos:inScheme ; + skos:prefLabel "Berghausen"@de . + +:n138030120500 a skos:Concept ; + skos:broader :n13803012 ; + skos:inScheme ; + skos:prefLabel "Wienau (Ortsbezirk)"@de . + +:n33401001 a skos:Concept ; + skos:broader :n33401 ; + skos:inScheme ; + skos:prefLabel "Bellheim"@de . + +:n13702102 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Trimbs"@de . + +:n14309219 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Enspel"@de . + +:n14109024 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Dahlheim"@de . + +:n14308220 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Ettinghausen"@de . + +:n138000450501 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Block (Ortsbezirk)"@de . + +:n14302268 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Mündersbach"@de . + +:n135010170100 a skos:Concept ; + skos:broader :n13501017 ; + skos:inScheme ; + skos:prefLabel "Bruttig"@de . + +:n132100930101 a skos:Concept ; + skos:broader :n13210093 ; + skos:inScheme ; + skos:prefLabel "Krämgen"@de . + +:n13210089 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Peterslahr"@de . + +:n14008058 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Horn"@de . + +:n33903016 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Engelstadt"@de . + +:n138020240103 a skos:Concept ; + skos:broader :n13802024 ; + skos:inScheme ; + skos:prefLabel "Oberhammerstein"@de . + +:n13809026 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Hardert"@de . + +:n312000002102 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Hahnbrunnerhof"@de . + +:n333040390113 a skos:Concept ; + skos:broader :n33304039 ; + skos:inScheme ; + skos:prefLabel "Ziegelhütte"@de . + +:n313000000300 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Godramstein (Ortsbezirk)"@de . + +:n132100480102 a skos:Concept ; + skos:broader :n13210048 ; + skos:inScheme ; + skos:prefLabel "Flögert"@de . + +:n312000000900 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Morlautern (Ortsbezirk)"@de . + +:n334000070200 a skos:Concept ; + skos:broader :n33400007 ; + skos:inScheme ; + skos:prefLabel "Sondernheim (Ortsbezirk)"@de . + +:n33907049 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Oppenheim, Stadt"@de . + +:n23205040 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Geichlingen"@de . + +:n235081180100 a skos:Concept ; + skos:broader :n23508118 ; + skos:inScheme ; + skos:prefLabel "Kahren (Ortsbezirk)"@de . + +:n33705026 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Frankweiler"@de . + +:n14004062 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Kappel"@de . + +:n14008037 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Erbach"@de . + +:n13809005 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Bonefeld"@de . + +:n337020720101 a skos:Concept ; + skos:broader :n33702072 ; + skos:inScheme ; + skos:prefLabel "Haftelhof"@de . + +:n138050570400 a skos:Concept ; + skos:broader :n13805057 ; + skos:inScheme ; + skos:prefLabel "Reichenstein"@de . + +:n33307 a skos:Concept ; + skos:broader :n333 ; + skos:inScheme ; + skos:prefLabel "Nordpfälzer Land, Verbandsgemeinde"@de . + +:n140005011000 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Weiler (Ortsbezirk)"@de . + +:n4108082n8 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Westerwälder Seenplatte"@de . + +:n33207044 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Tiefenthal"@de . + +:n141031300101 a skos:Concept ; + skos:broader :n14103130 ; + skos:inScheme ; + skos:prefLabel "Heckelmann-Mühle"@de . + +:n14304054 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Niedererbach"@de . + +:n33800019 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Mutterstadt"@de . + +:n14008101 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Neuerkirch"@de . + +:n336090640100 a skos:Concept ; + skos:broader :n33609064 ; + skos:inScheme ; + skos:prefLabel "Dietschweiler"@de . + +:n13401 a skos:Concept ; + skos:broader :n134 ; + skos:inScheme ; + skos:prefLabel "Baumholder, Verbandsgemeinde"@de . + +:n18 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Saar-Nahe-Bergland"@de . + +:n132070630407 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Niederasdorf"@de . + +:n33907028 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Hillesheim"@de . + +:n231081170104 a skos:Concept ; + skos:broader :n23108117 ; + skos:inScheme ; + skos:prefLabel "Wilmshof"@de . + +:n132100620105 a skos:Concept ; + skos:broader :n13210062 ; + skos:inScheme ; + skos:prefLabel "Reisbitzen"@de . + +:n335020260100 a skos:Concept ; + skos:broader :n33502026 ; + skos:inScheme ; + skos:prefLabel "Baalborn"@de . + +:n13210047 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Helmenzen"@de . + +:n33702029 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Gleiszellen-Gleishorbach"@de . + +:n14004041 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Gemünden"@de . + +:n23201260 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lichtenborn"@de . + +:n33207023 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Großkarlbach"@de . + +:n235071370200 a skos:Concept ; + skos:broader :n23507137 ; + skos:inScheme ; + skos:prefLabel "Sirzenich (Ortsbezirk)"@de . + +:n231090570108 a skos:Concept ; + skos:broader :n23109057 ; + skos:inScheme ; + skos:prefLabel "Wispelt (Ortsbezirk)"@de . + +:n23106018 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Deuselbach"@de . + +:n13306101 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Sponheim"@de . + +:n14304033 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Holler"@de . + +:n333035010300 a skos:Concept ; + skos:broader :n33303501 ; + skos:inScheme ; + skos:prefLabel "Zell (Ortsbezirk)"@de . + +:n134050460103 a skos:Concept ; + skos:broader :n13405046 ; + skos:inScheme ; + skos:prefLabel "Katzenloch"@de . + +:n13809042 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Meinborn"@de . + +:n14302205 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Atzelgift"@de . + +:n138090070115 a skos:Concept ; + skos:broader :n13809007 ; + skos:inScheme ; + skos:prefLabel "Stopperich"@de . + +:n33702008 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Birkenhördt"@de . + +:n232050670300 a skos:Concept ; + skos:broader :n23205067 ; + skos:inScheme ; + skos:prefLabel "Obersgegen"@de . + +:n138010030105 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Germscheid (ehemals Gemeinde Elsaff)"@de . + +:n232062260400 a skos:Concept ; + skos:broader :n23206226 ; + skos:inScheme ; + skos:prefLabel "Willwerath"@de . + +:n140005010208 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Industriegebiet Boppard-Hellerwald"@de . + +:n14309293 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Stahlhofen am Wiesensee"@de . + +:n140091120301 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Boppard, Weiler"@de . + +:n137092050107 a skos:Concept ; + skos:broader :n13709205 ; + skos:inScheme ; + skos:prefLabel "Kröpplingen"@de . + +:n55 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Hessen-Nassau"@de . + +:n138070730105 a skos:Concept ; + skos:broader :n13807073 ; + skos:inScheme ; + skos:prefLabel "Scheuren"@de . + +:n135010820204 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Grenzhäuserhof"@de . + +:n13306074 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Oberhausen an der Nahe"@de . + +:n33806 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Lambsheim-Heßheim, Verbandsgemeinde"@de . + +:n33705042 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Ilbesheim bei Landau in der Pfalz"@de . + +:n235071510203 a skos:Concept ; + skos:broader :n23507151 ; + skos:inScheme ; + skos:prefLabel "Schönfelderhof"@de . + +:n339010030108 a skos:Concept ; + skos:broader :n33901003 ; + skos:inScheme ; + skos:prefLabel "Neurath (Ortsbezirk)"@de . + +:n13101075 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Senscheid"@de . + +:n134 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Birkenfeld, Landkreis"@de . + +:n14009201 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Beulich"@de . + +:n13210005 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Berzhausen"@de . + +:n340082070101 a skos:Concept ; + skos:broader :n34008207 ; + skos:inScheme ; + skos:prefLabel "Falkenbusch"@de . + +:n333020190108 a skos:Concept ; + skos:broader :n33302019 ; + skos:inScheme ; + skos:prefLabel "Steinborn (Ortsbezirk)"@de . + +:n14306302 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Waigandshain"@de . + +:n336095010100 a skos:Concept ; + skos:broader :n33609501 ; + skos:inScheme ; + skos:prefLabel "Liebsthal"@de . + +:n13709504 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Lehmen"@de . + +:n14009116 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Perscheid"@de . + +:n34 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Katholische Kirche / Erzdiözese Köln"@de . + +:n13702070 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Mertloch"@de . + +:n13203019 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Derschen"@de . + +:n137092120303 a skos:Concept ; + skos:broader :n13709212 ; + skos:inScheme ; + skos:prefLabel "Belltal"@de . + +:n14111089 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Mudershausen"@de . + +:n33702045 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Kapellen-Drusweiler"@de . + +:n33302 a skos:Concept ; + skos:broader :n333 ; + skos:inScheme ; + skos:prefLabel "Eisenberg (Pfalz), Verbandsgemeinde"@de . + +:n34004032 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Münchweiler an der Rodalb"@de . + +:n132060910105 a skos:Concept ; + skos:broader :n13206091 ; + skos:inScheme ; + skos:prefLabel "Wickhausen"@de . + +:n315000001000 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Marienborn (Ortsbezirk)"@de . + +:n334005010100 a skos:Concept ; + skos:broader :n33400501 ; + skos:inScheme ; + skos:prefLabel "Büchelberg (Ortsbezirk)"@de . + +:n23506026 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Föhren"@de . + +:n92 a skos:Concept ; + skos:broader :n5 ; + skos:inScheme ; + skos:prefLabel "Rhein-Main-Gebiet"@de . + +:n4095361n0 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Hocheifel"@de . + +:n4069508n6 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Bitburger Land"@de . + +:n340092150104 a skos:Concept ; + skos:broader :n34009215 ; + skos:inScheme ; + skos:prefLabel "Labach"@de . + +:n23306229 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Nohn"@de . + +:n133061120103 a skos:Concept ; + skos:broader :n13306112 ; + skos:inScheme ; + skos:prefLabel "Scholländerhof"@de . + +:n23304003 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Beinhausen"@de . + +:n23301027 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Gillenfeld"@de . + +:n231090670103 a skos:Concept ; + skos:broader :n23109067 ; + skos:inScheme ; + skos:prefLabel "Hetzhof (Ortsbezirk)"@de . + +:n233060760100 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Heyroth (Ortsbezirk)"@de . + +:n14009089 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Maisborn"@de . + +:n33610088 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Ruthweiler"@de . + +:n13 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Mainzer Becken"@de . + +:n132070630402 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Brühlhof"@de . + +:n231010080200 a skos:Concept ; + skos:broader :n23101008 ; + skos:inScheme ; + skos:prefLabel "Bernkastel"@de . + +:n137020890107 a skos:Concept ; + skos:broader :n13702089 ; + skos:inScheme ; + skos:prefLabel "Kaan"@de . + +:n143040710102 a skos:Concept ; + skos:broader :n14304071 ; + skos:inScheme ; + skos:prefLabel "Berg Moriah"@de . + +:n14111068 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Katzenelnbogen, Stadt"@de . + +:n13501025 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Ellenz-Poltersdorf"@de . + +:n14008011 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Benzweiler"@de . + +:n13101033 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Hümmel"@de . + +:n13311 a skos:Concept ; + skos:broader :n133 ; + skos:inScheme ; + skos:prefLabel "Langenlonsheim-Stromberg, Verbandsgemeinde"@de . + +:n33610009 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Bosenbach"@de . + +:n138010440206 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Eilenberg"@de . + +:n33101008 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Bermersheim vor der Höhe"@de . + +:n13709 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Rhein-Mosel, Verbandsgemeinde"@de . + +:n340082110104 a skos:Concept ; + skos:broader :n34008211 ; + skos:inScheme ; + skos:prefLabel "Ringweilerhof"@de . + +:n131010440100 a skos:Concept ; + skos:broader :n13101044 ; + skos:inScheme ; + skos:prefLabel "Gilgenbach"@de . + +:n132100170101 a skos:Concept ; + skos:broader :n13210017 ; + skos:inScheme ; + skos:prefLabel "Beul"@de . + +:n14309230 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Härtlingen"@de . + +:n333075020201 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Mordkammerhof (ehem.Gem.Dannenfels)"@de . + +:n232062960400 a skos:Concept ; + skos:broader :n23206296 ; + skos:inScheme ; + skos:prefLabel "Steinmehlen"@de . + +:n23301006 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Betteldorf"@de . + +:n143030320103 a skos:Concept ; + skos:broader :n14303032 ; + skos:inScheme ; + skos:prefLabel "Grenzau"@de . + +:n138040680100 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Hargarten"@de . + +:n31100000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Frankenthal(Pfalz), Kreisfreie Stadt"@de . + +:n33610067 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Niederalben"@de . + +:n138090470102 a skos:Concept ; + skos:broader :n13809047 ; + skos:inScheme ; + skos:prefLabel "Bürder"@de . + +:n133000060103 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Gutleuthof"@de . + +:n23506063 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Klüsserath"@de . + +:n132070760201 a skos:Concept ; + skos:broader :n13207076 ; + skos:inScheme ; + skos:prefLabel "Oberasdorf (ehem.Gem.Harbach)"@de . + +:n339010620100 a skos:Concept ; + skos:broader :n33901062 ; + skos:inScheme ; + skos:prefLabel "Genheim (Ortsbezirk)"@de . + +:n231080530103 a skos:Concept ; + skos:broader :n23108053 ; + skos:inScheme ; + skos:prefLabel "Erlenbach"@de . + +:n23301064 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Schönbach"@de . + +:n137092050102 a skos:Concept ; + skos:broader :n13709205 ; + skos:inScheme ; + skos:prefLabel "Ehrenburg"@de . + +:n14107037 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Endlichhofen"@de . + +:n132100900101 a skos:Concept ; + skos:broader :n13210090 ; + skos:inScheme ; + skos:prefLabel "Pleckhausermühle"@de . + +:n50 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Französische Gebiete / 1792-1815"@de . + +:n33907060 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Undenheim"@de . + +:n14103062 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Horhausen"@de . + +:n14305006 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Breitenau"@de . + +:n312000000200 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Dansenberg (Ortsbezirk)"@de . + +:n13505037 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Grenderich"@de . + +:n33801 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Dannstadt-Schauernheim, Verbandsgemeinde"@de . + +:n14009047 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Hausbay"@de . + +:n133090520204 a skos:Concept ; + skos:broader :n13309052 ; + skos:inScheme ; + skos:prefLabel "Kyrburg"@de . + +:n33900030 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Ingelheim am Rhein, große kreisangeh. Stadt"@de . + +:n33610046 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Horschbach"@de . + +:n13703006 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Arft"@de . + +:n235081540300 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Körrig (Ortsbezirk)"@de . + +:n33806015 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Kleinniedesheim"@de . + +:n14306291 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Salzburg"@de . + +:n23301043 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Meisburg"@de . + +:n336100030300 a skos:Concept ; + skos:broader :n33610003 ; + skos:inScheme ; + skos:prefLabel "Patersbach (Ortsbezirk)"@de . + +:n235075010300 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Ittel (Ortsbezirk)"@de . + +:n138040370104 a skos:Concept ; + skos:broader :n13804037 ; + skos:inScheme ; + skos:prefLabel "Krumscheid"@de . + +:n23504129 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Sommerau"@de . + +:n140032020201 a skos:Concept ; + skos:broader :n14003202 ; + skos:inScheme ; + skos:prefLabel "Burg Waldeck, Hsgr."@de . + +:n33610025 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Föckelberg"@de . + +:n33101024 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Flomborn"@de . + +:n140035040101 a skos:Concept ; + skos:broader :n14003504 ; + skos:inScheme ; + skos:prefLabel "Petershäuserhof"@de . + +:n14308502 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Mähren"@de . + +:n235071110100 a skos:Concept ; + skos:broader :n23507111 ; + skos:inScheme ; + skos:prefLabel "Edingen (Ortsbezirk)"@de . + +:n14103503 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Balduinstein"@de . + +:n138000450300 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Feldkirchen (Ortsbezirk)"@de . + +:n138020630102 a skos:Concept ; + skos:broader :n13802063 ; + skos:inScheme ; + skos:prefLabel "Arienheller"@de . + +:n141000750211 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Friedrichssegen"@de . + +:n31900000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Worms, Kreisfreie Stadt"@de . + +:n13505074 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Reidenhausen"@de . + +:n233015010700 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Waldkönigen (Ortsbezirk)"@de . + +:n14009084 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Leiningen"@de . + +:n320000000900 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Oberauerbach (Ortsbezirk)"@de . + +:n140081250211 a skos:Concept ; + skos:broader :n14008125 ; + skos:inScheme ; + skos:prefLabel "Rheinböllerhütte"@de . + +:n13703043 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Kehrig"@de . + +:n133000060602 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Huttental"@de . + +:n332000020300 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Leistadt (Ortsbezirk)"@de . + +:n138040750105 a skos:Concept ; + skos:broader :n13804075 ; + skos:inScheme ; + skos:prefLabel "Oberelsaff"@de . + +:n33303026 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Göllheim"@de . + +:n138020040105 a skos:Concept ; + skos:broader :n13802004 ; + skos:inScheme ; + skos:prefLabel "Reidenbruch"@de . + +:n13501020 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Cochem, Stadt"@de . + +:n132100870101 a skos:Concept ; + skos:broader :n13210087 ; + skos:inScheme ; + skos:prefLabel "Friedenthal"@de . + +:n140005010702 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Hübingen"@de . + +:n14009005 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Badenhard"@de . + +:n13102027 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Heckenbach"@de . + +:n132070370169 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Wippe"@de . + +:n14305 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Ransbach-Baumbach, Verbandsgemeinde"@de . + +:n138010440201 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Altenhütte"@de . + +:n31800000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Speyer, Kreisfreie Stadt"@de . + +:n13704 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Mendig, Verbandsgemeinde"@de . + +:n14003202 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Dommershausen"@de . + +:n232080270105 a skos:Concept ; + skos:broader :n23208027 ; + skos:inScheme ; + skos:prefLabel "Ordorf"@de . + +:n13704106 a skos:Concept ; + skos:broader :n13704 ; + skos:inScheme ; + skos:prefLabel "Volkesfeld"@de . + +:n33706052 a skos:Concept ; + skos:broader :n33706 ; + skos:inScheme ; + skos:prefLabel "Maikammer"@de . + +:n333040100103 a skos:Concept ; + skos:broader :n33304010 ; + skos:inScheme ; + skos:prefLabel "Klosterhof"@de . + +:n14009063 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Karbach"@de . + +:n33901045 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Oberheimbach"@de . + +:n33608062 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Merzweiler"@de . + +:n33106 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Wörrstadt, Verbandsgemeinde"@de . + +:n333070140200 a skos:Concept ; + skos:broader :n33307014 ; + skos:inScheme ; + skos:prefLabel "Steingruben"@de . + +:n336091070200 a skos:Concept ; + skos:broader :n33609107 ; + skos:inScheme ; + skos:prefLabel "Matzenbach"@de . + +:n131020030101 a skos:Concept ; + skos:broader :n13102003 ; + skos:inScheme ; + skos:prefLabel "Altenburg"@de . + +:n232012590103 a skos:Concept ; + skos:broader :n23201259 ; + skos:inScheme ; + skos:prefLabel "Lautzerath"@de . + +:n332050140114 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Speyerbrunn (ehem.Gem.Wilgartswiesen)"@de . + +:n232050010102 a skos:Concept ; + skos:broader :n23205001 ; + skos:inScheme ; + skos:prefLabel "Kohnenhof"@de . + +:n138090710100 a skos:Concept ; + skos:broader :n13809071 ; + skos:inScheme ; + skos:prefLabel "Ellingen"@de . + +:n14305001 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Alsbach"@de . + +:n131030060203 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Mönchsheide"@de . + +:n13505032 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Forst (Hunsrück)"@de . + +:n333040620102 a skos:Concept ; + skos:broader :n33304062 ; + skos:inScheme ; + skos:prefLabel "Steuerwaldsmühle"@de . + +:n235080580104 a skos:Concept ; + skos:broader :n23508058 ; + skos:inScheme ; + skos:prefLabel "Mühlscheid"@de . + +:n13209073 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Nauroth"@de . + +:n13703001 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Acht"@de . + +:n34009017 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Herschberg"@de . + +:n131045020202 a skos:Concept ; + skos:broader :n13104502 ; + skos:inScheme ; + skos:prefLabel "Heidnerhof"@de . + +:n23208 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Bitburger Land, Verbandsgemeinde"@de . + +:n23306240 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Stadtkyll"@de . + +:n143040480300 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Eschelbach (Ortsbezirk)"@de . + +:n337020450105 a skos:Concept ; + skos:broader :n33702045 ; + skos:inScheme ; + skos:prefLabel "Kaplaneihof"@de . + +:n134020200102 a skos:Concept ; + skos:broader :n13402020 ; + skos:inScheme ; + skos:prefLabel "Eborner Berg, Sdlg."@de . + +:n233060290300 a skos:Concept ; + skos:broader :n23306029 ; + skos:inScheme ; + skos:prefLabel "Niederbettingen (Ortsbezirk)"@de . + +:n14310047 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Mogendorf"@de . + +:n33901003 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Bacharach, Stadt"@de . + +:n23504124 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Schöndorf"@de . + +:n23507094 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Newel"@de . + +:n23108107 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Platten"@de . + +:n140040410101 a skos:Concept ; + skos:broader :n14004041 ; + skos:inScheme ; + skos:prefLabel "Panzweiler"@de . + +:n33501011 a skos:Concept ; + skos:broader :n33501 ; + skos:inScheme ; + skos:prefLabel "Gerhardsbrunn"@de . + +:n33102018 a skos:Concept ; + skos:broader :n33102 ; + skos:inScheme ; + skos:prefLabel "Eich"@de . + +:n235081040400 a skos:Concept ; + skos:broader :n23508104 ; + skos:inScheme ; + skos:prefLabel "Kreuzweiler (Ortsbezirk)"@de . + +:n140091120100 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Dellhofen (Ortsbezirk)"@de . + +:n141110890104 a skos:Concept ; + skos:broader :n14111089 ; + skos:inScheme ; + skos:prefLabel "Zollhaus"@de . + +:n235080720107 a skos:Concept ; + skos:broader :n23508072 ; + skos:inScheme ; + skos:prefLabel "Niedersehr"@de . + +:n134020100102 a skos:Concept ; + skos:broader :n13402010 ; + skos:inScheme ; + skos:prefLabel "Feckweiler"@de . + +:n232050080102 a skos:Concept ; + skos:broader :n23205008 ; + skos:inScheme ; + skos:prefLabel "Neuscheuerhof"@de . + +:n13502093 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Zettingen"@de . + +:n33509019 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Kollweiler"@de . + +:n231080690200 a skos:Concept ; + skos:broader :n23108069 ; + skos:inScheme ; + skos:prefLabel "Krames"@de . + +:n138010800105 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Sauerwiese (ehem.Gem.Elsaff)"@de . + +:n335020480101 a skos:Concept ; + skos:broader :n33502048 ; + skos:inScheme ; + skos:prefLabel "Schwarzsohl, Waldhaus"@de . + +:n235060830204 a skos:Concept ; + skos:broader :n23506083 ; + skos:inScheme ; + skos:prefLabel "Neu-Mehring"@de . + +:n231005020800 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Hoxel (Ortsbezirk)"@de . + +:n33508020 a skos:Concept ; + skos:broader :n33508 ; + skos:inScheme ; + skos:prefLabel "Kottweiler-Schwanden"@de . + +:n13301069 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Neu-Bamberg"@de . + +:n134020720101 a skos:Concept ; + skos:broader :n13402072 ; + skos:inScheme ; + skos:prefLabel "Nockenthal"@de . + +:n131000700704 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Rolandsbogen"@de . + +:n13502014 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Brieden"@de . + +:n23504103 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Osburg"@de . + +:n23507073 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Langsur"@de . + +:n335020100105 a skos:Concept ; + skos:broader :n33502010 ; + skos:inScheme ; + skos:prefLabel "Diemerstein"@de . + +:n4006536n4 a skos:Concept ; + skos:broader :n14 ; + skos:inScheme ; + skos:prefLabel "Bienwald"@de . + +:n332070380103 a skos:Concept ; + skos:broader :n33207038 ; + skos:inScheme ; + skos:prefLabel "Nackterhof"@de . + +:n13704101 a skos:Concept ; + skos:broader :n13704 ; + skos:inScheme ; + skos:prefLabel "Thür"@de . + +:n337070410100 a skos:Concept ; + skos:broader :n33707041 ; + skos:inScheme ; + skos:prefLabel "Niederhochstadt"@de . + +:n335080380214 a skos:Concept ; + skos:broader :n33508038 ; + skos:inScheme ; + skos:prefLabel "Moordammühle (ehem.Gem.Landstuhl)"@de . + +:n232013330400 a skos:Concept ; + skos:broader :n23201333 ; + skos:inScheme ; + skos:prefLabel "Oberüttfeld"@de . + +:n33307054 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Obermoschel, Stadt"@de . + +:n23508136 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Trassem"@de . + +:n33901040 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Niederheimbach"@de . + +:n33902039 a skos:Concept ; + skos:broader :n33902 ; + skos:inScheme ; + skos:prefLabel "Nackenheim"@de . + +:n33609056 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Langenbach"@de . + +:n33101 a skos:Concept ; + skos:broader :n331 ; + skos:inScheme ; + skos:prefLabel "Alzey-Land, Verbandsgemeinde"@de . + +:n141000750100 a skos:Concept ; + skos:broader :n14100075 ; + skos:inScheme ; + skos:prefLabel "Niederlahnstein"@de . + +:n317000000505 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Niedersimten (ehem.Gem.Simten) (Ortsbezirk)"@de . + +:n131000700200 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Kripp (Ortsbezirk 1)"@de . + +:n13206034 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Forst"@de . + +:n132070370143 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Neuhöhe"@de . + +:n13805040 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Linkenbach"@de . + +:n14000501 a skos:Concept ; + skos:broader :n140 ; + skos:inScheme ; + skos:prefLabel "Boppard, Stadt"@de . + +:n13402072 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Rötsweiler-Nockenthal"@de . + +:n23306028 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Gönnersdorf"@de . + +:n13310057 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Lauschied"@de . + +:n233060560102 a skos:Concept ; + skos:broader :n23306056 ; + skos:inScheme ; + skos:prefLabel "Kasselburg"@de . + +:n111000000500 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Ehrenbreitstein"@de . + +:n211000000306 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Quint"@de . + +:n339000050200 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Bingerbrück"@de . + +:n13502051 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Landkern"@de . + +:n33200024 a skos:Concept ; + skos:broader :n332 ; + skos:inScheme ; + skos:prefLabel "Grünstadt, Stadt"@de . + +:n33304057 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Orbis"@de . + +:n14109 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Loreley, Verbandsgemeinde"@de . + +:n13309205 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Schwarzerden"@de . + +:n137002030104 a skos:Concept ; + skos:broader :n13700203 ; + skos:inScheme ; + skos:prefLabel "Mülhofen"@de . + +:n23201309 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Sengerich"@de . + +:n33502026 a skos:Concept ; + skos:broader :n33502 ; + skos:inScheme ; + skos:prefLabel "Mehlingen"@de . + +:n33102034 a skos:Concept ; + skos:broader :n33102 ; + skos:inScheme ; + skos:prefLabel "Gimbsheim"@de . + +:n13104206 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Hohenleimbach"@de . + +:n13206013 a skos:Concept ; + skos:broader :n13206 ; + skos:inScheme ; + skos:prefLabel "Breitscheidt"@de . + +:n132070370122 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Hilchenbach"@de . + +:n231005021900 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Wolzburg (Ortsbezirk)"@de . + +:n141091210101 a skos:Concept ; + skos:broader :n14109121 ; + skos:inScheme ; + skos:prefLabel "Block Loreley"@de . + +:n23101087 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Monzelfeld"@de . + +:n23306007 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Birgel"@de . + +:n135010240200 a skos:Concept ; + skos:broader :n13501024 ; + skos:inScheme ; + skos:prefLabel "Eller"@de . + +:n23101008 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Bernkastel-Kues, Stadt"@de . + +:n23208017 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Birtlingen"@de . + +:n320000000200 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Bubenhausen"@de . + +:n131000770200 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Franken (Ortsbezirk)"@de . + +:n14003064 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Kastellaun, Stadt"@de . + +:n14310042 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Leuterod"@de . + +:n23108096 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Niederscheidweiler"@de . + +:n13405039 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Herrstein"@de . + +:n34006015 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Heltersberg"@de . + +:n33206046 a skos:Concept ; + skos:broader :n33206 ; + skos:inScheme ; + skos:prefLabel "Wachenheim an der Weinstraße, Stadt"@de . + +:n21100000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Trier, Kreisfreie Stadt"@de . + +:n23206332 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Hersdorf"@de . + +:n235080720102 a skos:Concept ; + skos:broader :n23508072 ; + skos:inScheme ; + skos:prefLabel "Geisemerich"@de . + +:n13310094 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Seesbach"@de . + +:n23101066 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Kesten"@de . + +:n23208075 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Malberg"@de . + +:n336100970102 a skos:Concept ; + skos:broader :n33610097 ; + skos:inScheme ; + skos:prefLabel "Burglichtenberg"@de . + +:n137000680300 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Kürrenberg (Ortsbezirk)"@de . + +:n13503087 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Wagenhausen"@de . + +:n23508152 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Zerf"@de . + +:n137030070107 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Oberbaar"@de . + +:n232080830102 a skos:Concept ; + skos:broader :n23208083 ; + skos:inScheme ; + skos:prefLabel "Tempelhof"@de . + +:n13701056 a skos:Concept ; + skos:broader :n13701 ; + skos:inScheme ; + skos:prefLabel "Kretz"@de . + +:n333070370104 a skos:Concept ; + skos:broader :n33307037 ; + skos:inScheme ; + skos:prefLabel "Untermittweilerhof"@de . + +:n13503008 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Beuren"@de . + +:n232000180400 a skos:Concept ; + skos:broader :n23200018 ; + skos:inScheme ; + skos:prefLabel "Masholder (Ortsbezirk)"@de . + +:n00Sn03s0395a a skos:Concept ; + skos:broader :n15 ; + skos:inScheme ; + skos:prefLabel "Oberer Mundatwald"@de . + +:n337050400100 a skos:Concept ; + skos:broader :n33705040 ; + skos:inScheme ; + skos:prefLabel "Heuchelheim"@de . + +:n111000001600 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Niederberg"@de . + +:n33202050 a skos:Concept ; + skos:broader :n33202 ; + skos:inScheme ; + skos:prefLabel "Weisenheim am Sand"@de . + +:n2 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Landschaften in Rheinland-Pfalz"@de . + +:n23205078 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Menningen"@de . + +:n23304216 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Horperath"@de . + +:n14110139 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Winden"@de . + +:n33707041 a skos:Concept ; + skos:broader :n33707 ; + skos:inScheme ; + skos:prefLabel "Hochstadt (Pfalz)"@de . + +:n23508131 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Taben-Rodt"@de . + +:n23206226 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Weinsheim"@de . + +:n33902034 a skos:Concept ; + skos:broader :n33902 ; + skos:inScheme ; + skos:prefLabel "Lörzweiler"@de . + +:n231080010101 a skos:Concept ; + skos:broader :n23108001 ; + skos:inScheme ; + skos:prefLabel "Büscheid"@de . + +:n13405076 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Schauren"@de . + +:n317000000500 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Pirmasens"@de . + +:n14109099 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Nochern"@de . + +:n32000000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Zweibrücken, Kreisfreie Stadt"@de . + +:n340040320105 a skos:Concept ; + skos:broader :n34004032 ; + skos:inScheme ; + skos:prefLabel "Riegelbrunnerhof"@de . + +:n14008139 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Schönborn"@de . + +:n23306023 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Feusdorf"@de . + +:n231005021205 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Schmausemühle"@de . + +:n14004164 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Woppenroth"@de . + +:n335110470102 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Aschbacherhof"@de . + +:n23206284 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Oberlauch"@de . + +:n143092490101 a skos:Concept ; + skos:broader :n14309249 ; + skos:inScheme ; + skos:prefLabel "Möllingen"@de . + +:n33906067 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Zornheim"@de . + +:n333070650105 a skos:Concept ; + skos:broader :n33307065 ; + skos:inScheme ; + skos:prefLabel "Unter-Gerbacherhof"@de . + +:n231010870101 a skos:Concept ; + skos:broader :n23101087 ; + skos:inScheme ; + skos:prefLabel "Annenberg"@de . + +:n340030520103 a skos:Concept ; + skos:broader :n34003052 ; + skos:inScheme ; + skos:prefLabel "Imsbacherhof"@de . + +:n211000000301 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Auf der Bausch"@de . + +:n33704044 a skos:Concept ; + skos:broader :n33704 ; + skos:inScheme ; + skos:prefLabel "Insheim"@de . + +:n13100077 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Sinzig, Stadt"@de . + +:n138010030313 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Krankel"@de . + +:n13405055 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Mittelreidenbach"@de . + +:n334040130109 a skos:Concept ; + skos:broader :n33404013 ; + skos:inScheme ; + skos:prefLabel "Minderslachen"@de . + +:n23201298 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Reipeldingen"@de . + +:n141111260102 a skos:Concept ; + skos:broader :n14111126 ; + skos:inScheme ; + skos:prefLabel "Bärbach"@de . + +:n13503 a skos:Concept ; + skos:broader :n135 ; + skos:inScheme ; + skos:prefLabel "Ulmen, Verbandsgemeinde"@de . + +:n232012010300 a skos:Concept ; + skos:broader :n23201201 ; + skos:inScheme ; + skos:prefLabel "Hickeshausen"@de . + +:n33106004 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Armsheim"@de . + +:n23504050 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Holzerath"@de . + +:n138010770100 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Rederscheid"@de . + +:n13104201 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Brenk"@de . + +:n23508025 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Fisch"@de . + +:n14003001 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Alterkülz"@de . + +:n33404031 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Vollmersweiler"@de . + +:n138050140101 a skos:Concept ; + skos:broader :n13805014 ; + skos:inScheme ; + skos:prefLabel "Daufenbach"@de . + +:n23208091 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Niederstedem"@de . + +:n23306002 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Basberg"@de . + +:n233060260300 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Gees (Ortsbezirk)"@de . + +:n14008118 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Pleizenhausen"@de . + +:n13301080 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Pleitersheim"@de . + +:n231005020100 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Bischofsdhron (Ortsbezirk)"@de . + +:n235071370302 a skos:Concept ; + skos:broader :n23507137 ; + skos:inScheme ; + skos:prefLabel "Niederweiler"@de . + +:n33304031 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Ilbesheim"@de . + +:n337015010200 a skos:Concept ; + skos:broader :n33701501 ; + skos:inScheme ; + skos:prefLabel "Bindersbach (Ortsbezirk)"@de . + +:n23108091 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Musweiler"@de . + +:n333075020308 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Rußmühlerhof"@de . + +:n23306060 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Salm"@de . + +:n23208070 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Kyllburg, Stadt"@de . + +:n235010470101 a skos:Concept ; + skos:broader :n23501047 ; + skos:inScheme ; + skos:prefLabel "Gedenkstätte Hinzert"@de . + +:n23205094 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Niehl"@de . + +:n14004122 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Reckershausen"@de . + +:n137030070102 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Engeln"@de . + +:n333070230101 a skos:Concept ; + skos:broader :n33307023 ; + skos:inScheme ; + skos:prefLabel "Gutenbacherhof"@de . + +:n13405092 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Weitersbach"@de . + +:n340090510200 a skos:Concept ; + skos:broader :n34009051 ; + skos:inScheme ; + skos:prefLabel "Thalfröschen"@de . + +:n134000450500 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Idar"@de . + +:n235041070105 a skos:Concept ; + skos:broader :n23504107 ; + skos:inScheme ; + skos:prefLabel "Wilzenburg"@de . + +:n33510 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Otterbach-Otterberg, Verbandsgemeinde"@de . + +:n33304010 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Bolanden"@de . + +:n23508062 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Kirf"@de . + +:n337050510103 a skos:Concept ; + skos:broader :n33705051 ; + skos:inScheme ; + skos:prefLabel "Slevogthof"@de . + +:n14109121 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Sankt Goarshausen, Loreleystadt, Stadt"@de . + +:n13405013 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Breitenthal"@de . + +:n33206020 a skos:Concept ; + skos:broader :n33206 ; + skos:inScheme ; + skos:prefLabel "Friedelsheim"@de . + +:n33908 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Sprendlingen-Gensingen, Verbandsgemeinde"@de . + +:n141095010105 a skos:Concept ; + skos:broader :n14109501 ; + skos:inScheme ; + skos:prefLabel "Im Mühltal"@de . + +:n211000000800 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Heiligkreuz (Ortsbezirk 18)"@de . + +:n13702114 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Wierschem"@de . + +:n137092230100 a skos:Concept ; + skos:broader :n13709223 ; + skos:inScheme ; + skos:prefLabel "Niederspay"@de . + +:n23101040 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Gornhausen"@de . + +:n23205073 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Leimbach"@de . + +:n14308232 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Hahn am See"@de . + +:n14303030 a skos:Concept ; + skos:broader :n14303 ; + skos:inScheme ; + skos:prefLabel "Hilgert"@de . + +:n13702029 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Gering"@de . + +:n231080260102 a skos:Concept ; + skos:broader :n23108026 ; + skos:inScheme ; + skos:prefLabel "Eichelhütte"@de . + +:n338000050100 a skos:Concept ; + skos:broader :n33800005 ; + skos:inScheme ; + skos:prefLabel "Böhl"@de . + +:n143030300101 a skos:Concept ; + skos:broader :n14303030 ; + skos:inScheme ; + skos:prefLabel "Faulbach"@de . + +:n137031130102 a skos:Concept ; + skos:broader :n13703113 ; + skos:inScheme ; + skos:prefLabel "Oberwelschenbach"@de . + +:n14309289 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Rothenbach"@de . + +:n14308290 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Salz"@de . + +:n332050160102 a skos:Concept ; + skos:broader :n33205016 ; + skos:inScheme ; + skos:prefLabel "Erfenstein"@de . + +:n131000070300 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Gimmigen (Ortsbezirk)"@de . + +:n231005021200 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Morbach (Ortsbezirk)"@de . + +:n14008134 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Sargenroth"@de . + +:n340030280107 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Rodalberhof"@de . + +:n33404 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Kandel, Verbandsgemeinde"@de . + +:n335080300200 a skos:Concept ; + skos:broader :n33508030 ; + skos:inScheme ; + skos:prefLabel "Reuschbach"@de . + +:n137020410103 a skos:Concept ; + skos:broader :n13702041 ; + skos:inScheme ; + skos:prefLabel "Windhäuserhof"@de . + +:n13702087 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Pillig"@de . + +:n131000900300 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Eckendorf (Ortsbezirk)"@de . + +:n13309046 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Hochstetten-Dhaun"@de . + +:n14302259 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Lochum"@de . + +:n14304008 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Daubach"@de . + +:n131000700503 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Schloss Calmuth"@de . + +:n137030110105 a skos:Concept ; + skos:broader :n13703011 ; + skos:inScheme ; + skos:prefLabel "Heunenhof"@de . + +:n319000001200 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Pfiffligheim (Ortsbezirk)"@de . + +:n334040130104 a skos:Concept ; + skos:broader :n33404013 ; + skos:inScheme ; + skos:prefLabel "Hardtmühle"@de . + +:n23201293 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Plütscheid"@de . + +:n33103023 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Flörsheim-Dalsheim"@de . + +:n233060760202 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Nollenbach"@de . + +:n314000000800 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Ruchheim (Ortsbezirk)"@de . + +:n336081050103 a skos:Concept ; + skos:broader :n33608105 ; + skos:inScheme ; + skos:prefLabel "Stahlhausen"@de . + +:n23201214 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Dasburg"@de . + +:n332070410401 a skos:Concept ; + skos:broader :n33207041 ; + skos:inScheme ; + skos:prefLabel "Neuoffstein"@de . + +:n132031130100 a skos:Concept ; + skos:broader :n13203113 ; + skos:inScheme ; + skos:prefLabel "Oberdreisbach"@de . + +:n14008113 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Ohlweiler"@de . + +:n23205031 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Emmelbaum"@de . + +:n23506 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Schweich an der Röm. Weinstraße, Verbandsgemeinde"@de . + +:n14110086 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Miellen"@de . + +:n14004053 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Hirschfeld (Hunsrück)"@de . + +:n211000001900 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Trier-West (T.a. Ortsbezirk 8)"@de . + +:n23106115 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Schönberg"@de . + +:n333075020303 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Hintersteinerhof"@de . + +:n232051080102 a skos:Concept ; + skos:broader :n23205108 ; + skos:inScheme ; + skos:prefLabel "Prümer Burg, Gastst."@de . + +:n131000070109 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Kloster Calvarienberg"@de . + +:n33511037 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Queidersbach"@de . + +:n138040680202 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Brochenbach"@de . + +:n235062070102 a skos:Concept ; + skos:broader :n23506207 ; + skos:inScheme ; + skos:prefLabel "Im Dhrönchen"@de . + +:n14309247 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Kaden"@de . + +:n14302296 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Stein-Wingert"@de . + +:n336090100101 a skos:Concept ; + skos:broader :n33609010 ; + skos:inScheme ; + skos:prefLabel "Bambergerhof"@de . + +:n13809054 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Oberraden"@de . + +:n137082160100 a skos:Concept ; + skos:broader :n13708216 ; + skos:inScheme ; + skos:prefLabel "Kärlich"@de . + +:n143062860100 a skos:Concept ; + skos:broader :n14306286 ; + skos:inScheme ; + skos:prefLabel "Emmerichenhain"@de . + +:n34008210 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Großsteinhausen"@de . + +:n132080800126 a skos:Concept ; + skos:broader :n13208080 ; + skos:inScheme ; + skos:prefLabel "Schönborn"@de . + +:n13804068 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Sankt Katharinen (Lkr. Neuwied)"@de . + +:n34004007 a skos:Concept ; + skos:broader :n34004 ; + skos:inScheme ; + skos:prefLabel "Donsieders"@de . + +:n33903 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Gau-Algesheim, Verbandsgemeinde"@de . + +:n14009149 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Thörlingen"@de . + +:n14008150 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Tiefenbach"@de . + +:n316000000400 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Geinsheim (Ortsbezirk)"@de . + +:n14109031 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Dörscheid"@de . + +:n14309226 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Girkenroth"@de . + +:n13306086 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Roxheim"@de . + +:n231 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Bernkastel-Wittlich, Landkreis"@de . + +:n14304024 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Großholbach"@de . + +:n141030290101 a skos:Concept ; + skos:broader :n14103029 ; + skos:inScheme ; + skos:prefLabel "Oranienstein"@de . + +:n141030640100 a skos:Concept ; + skos:broader :n14103064 ; + skos:inScheme ; + skos:prefLabel "Giershausen"@de . + +:n13501079 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Senheim (Mosel)"@de . + +:n14004090 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Maitzborn"@de . + +:n14008065 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Keidelheim"@de . + +:n13707226 a skos:Concept ; + skos:broader :n13707 ; + skos:inScheme ; + skos:prefLabel "Vallendar, Stadt"@de . + +:n333060090103 a skos:Concept ; + skos:broader :n33306009 ; + skos:inScheme ; + skos:prefLabel "Hahnweilerhof"@de . + +:n14110044 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Frücht"@de . + +:n13210017 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Busenhausen"@de . + +:n133111100102 a skos:Concept ; + skos:broader :n13311110 ; + skos:inScheme ; + skos:prefLabel "Wald Erbach"@de . + +:n13101008 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Barweiler"@de . + +:n33501203 a skos:Concept ; + skos:broader :n33501 ; + skos:inScheme ; + skos:prefLabel "Martinshöhe"@de . + +:n132100880101 a skos:Concept ; + skos:broader :n13210088 ; + skos:inScheme ; + skos:prefLabel "Berg"@de . + +:n14309284 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Pottum"@de . + +:n46 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Kurpfalz"@de . + +:n13309041 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Heimweiler"@de . + +:n11100000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Koblenz, Kreisfreie Stadt"@de . + +:n111000002000 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Rübenach (Ortsbezirk 7)"@de . + +:n13101066 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Quiddelbach"@de . + +:n4440854n7 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Voreifel"@de . + +:n140030090400 a skos:Concept ; + skos:broader :n14003009 ; + skos:inScheme ; + skos:prefLabel "Leideneck (Ortsbezirk)"@de . + +:n23301039 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Kirchweiler"@de . + +:n312000002003 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Vogelweh"@de . + +:n33610106 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Bedesbach"@de . + +:n25 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Lahntal"@de . + +:n33907035 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Ludwigshöhe"@de . + +:n138010440303 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Grube Anxbach"@de . + +:n13306044 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Hergenfeld"@de . + +:n23501 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Hermeskeil, Verbandsgemeinde"@de . + +:n137030740107 a skos:Concept ; + skos:broader :n13703074 ; + skos:inScheme ; + skos:prefLabel "Schäfereihof"@de . + +:n33705012 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Böchingen"@de . + +:n338010220200 a skos:Concept ; + skos:broader :n33801022 ; + skos:inScheme ; + skos:prefLabel "Rödersheim"@de . + +:n14008023 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Budenbach"@de . + +:n232050020102 a skos:Concept ; + skos:broader :n23205002 ; + skos:inScheme ; + skos:prefLabel "Oberecken"@de . + +:n13208054 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Hövels"@de . + +:n33900005 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Bingen am Rhein, große kreisangehörige Stadt"@de . + +:n235030680700 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Niedermennig (T.a.Ortsbezirk 4)"@de . + +:n34009225 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Wallhalben"@de . + +:n231090720101 a skos:Concept ; + skos:broader :n23109072 ; + skos:inScheme ; + skos:prefLabel "Kövenig (Ortsbezirk)"@de . + +:n33207030 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Kirchheim an der Weinstraße"@de . + +:n231005021004 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Hunolsteinerhof"@de . + +:n13203068 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Mauden"@de . + +:n14309242 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Höhn"@de . + +:n23301018 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Dockweiler"@de . + +:n137000030308 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Pönterhof"@de . + +:n133000060200 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Bosenheim (Ortsbezirk)"@de . + +:n33800005 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Böhl-Iggelheim"@de . + +:n33610079 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Rammelsbach"@de . + +:n140005010300 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Buchholz (Ortsbezirk)"@de . + +:n14302212 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Borod"@de . + +:n340082060109 a skos:Concept ; + skos:broader :n34008206 ; + skos:inScheme ; + skos:prefLabel "Wahlbacherhof"@de . + +:n232012120107 a skos:Concept ; + skos:broader :n23201212 ; + skos:inScheme ; + skos:prefLabel "Wehrbüsch"@de . + +:n338010060100 a skos:Concept ; + skos:broader :n33801006 ; + skos:inScheme ; + skos:prefLabel "Dannstadt"@de . + +:n13210033 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Fluterschen"@de . + +:n14008002 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Altweidelbach"@de . + +:n340010100102 a skos:Concept ; + skos:broader :n34001010 ; + skos:inScheme ; + skos:prefLabel "Lauterschwan"@de . + +:n14107134 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Weidenbach"@de . + +:n23106083 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Merschbach"@de . + +:n34009204 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Biedershausen"@de . + +:n235070690102 a skos:Concept ; + skos:broader :n23507069 ; + skos:inScheme ; + skos:prefLabel "Hochmark"@de . + +:n233060800200 a skos:Concept ; + skos:broader :n23306080 ; + skos:inScheme ; + skos:prefLabel "Zilsdorf (Ortsbezirk)"@de . + +:n339010030200 a skos:Concept ; + skos:broader :n33901003 ; + skos:inScheme ; + skos:prefLabel "Steeg (Ortsbezirk)"@de . + +:n33402002 a skos:Concept ; + skos:broader :n33402 ; + skos:inScheme ; + skos:prefLabel "Berg (Pfalz)"@de . + +:n13703097 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Sankt Johann"@de . + +:n14306245 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Hüblingen"@de . + +:n135050920304 a skos:Concept ; + skos:broader :n13505092 ; + skos:inScheme ; + skos:prefLabel "Siedlung Althaus"@de . + +:n340040380112 a skos:Concept ; + skos:broader :n34004038 ; + skos:inScheme ; + skos:prefLabel "Neuhof"@de . + +:n13101082 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Wershofen"@de . + +:n333020190200 a skos:Concept ; + skos:broader :n33302019 ; + skos:inScheme ; + skos:prefLabel "Stauf (Ortsbezirk)"@de . + +:n13306002 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Allenfeld"@de . + +:n33608058 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Lauterecken, Stadt"@de . + +:n141 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Rhein-Lahn-Kreis"@de . + +:n340092170102 a skos:Concept ; + skos:broader :n34009217 ; + skos:inScheme ; + skos:prefLabel "Hitscherhof"@de . + +:n314000000100 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Edigheim"@de . + +:n132080110124 a skos:Concept ; + skos:broader :n13208011 ; + skos:inScheme ; + skos:prefLabel "Voßwinkel"@de . + +:n13401074 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Rückweiler"@de . + +:n23301055 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Oberstadtfeld"@de . + +:n332000240100 a skos:Concept ; + skos:broader :n33200024 ; + skos:inScheme ; + skos:prefLabel "Asselheim (Ortsbezirk)"@de . + +:n313000000700 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Queichheim (Ortsbezirk)"@de . + +:n41 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Erzstift Trier"@de . + +:n232062260301 a skos:Concept ; + skos:broader :n23206226 ; + skos:inScheme ; + skos:prefLabel "Brühlborn"@de . + +:n14103053 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Heistenbach"@de . + +:n13203026 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Emmerzhausen"@de . + +:n14309200 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Ailertchen"@de . + +:n13210070 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Michelbach (Westerwald)"@de . + +:n14111102 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Oberneisen"@de . + +:n140091120202 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Reschscheider Hof"@de . + +:n14111096 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Niedertiefenbach"@de . + +:n13501053 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Lieg"@de . + +:n134020630101 a skos:Concept ; + skos:broader :n13402063 ; + skos:inScheme ; + skos:prefLabel "Sauerbrunnen"@de . + +:n33302060 a skos:Concept ; + skos:broader :n33302 ; + skos:inScheme ; + skos:prefLabel "Ramsen"@de . + +:n233060190101 a skos:Concept ; + skos:broader :n23306019 ; + skos:inScheme ; + skos:prefLabel "Dohm"@de . + +:n233060540100 a skos:Concept ; + skos:broader :n23306054 ; + skos:inScheme ; + skos:prefLabel "Oberehe"@de . + +:n141090160101 a skos:Concept ; + skos:broader :n14109016 ; + skos:inScheme ; + skos:prefLabel "Gemeindemühle"@de . + +:n211000001200 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Mariahof (Ortsbezirk 19)"@de . + +:n137000680407 a skos:Concept ; + skos:broader :n13700068 ; + skos:inScheme ; + skos:prefLabel "Geisbüschhof"@de . + +:n33707 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Offenbach an der Queich, Verbandsgemeinde"@de . + +:n132100050101 a skos:Concept ; + skos:broader :n13210005 ; + skos:inScheme ; + skos:prefLabel "Strickhausen"@de . + +:n23208331 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Zendscheid"@de . + +:n23207104 a skos:Concept ; + skos:broader :n23207 ; + skos:inScheme ; + skos:prefLabel "Philippsheim"@de . + +:n14306282 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Oberrod"@de . + +:n143022940100 a skos:Concept ; + skos:broader :n14302294 ; + skos:inScheme ; + skos:prefLabel "Schmidthahn"@de . + +:n235040460101 a skos:Concept ; + skos:broader :n23504046 ; + skos:inScheme ; + skos:prefLabel "Hinzenburgermühle"@de . + +:n23304010 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Boxberg"@de . + +:n23301034 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Immerath"@de . + +:n14009102 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Ney"@de . + +:n33908029 a skos:Concept ; + skos:broader :n33908 ; + skos:inScheme ; + skos:prefLabel "Horrweiler"@de . + +:n20 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Eifel"@de . + +:n13703055 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Kottenheim"@de . + +:n33608095 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Sankt Julian"@de . + +:n13801 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Asbach, Verbandsgemeinde"@de . + +:n137030740102 a skos:Concept ; + skos:broader :n13703074 ; + skos:inScheme ; + skos:prefLabel "Siedlung Cond"@de . + +:n13102039 a skos:Concept ; + skos:broader :n13102 ; + skos:inScheme ; + skos:prefLabel "Kesseling"@de . + +:n23506091 a skos:Concept ; + skos:broader :n23506 ; + skos:inScheme ; + skos:prefLabel "Naurath (Eifel)"@de . + +:n335095010300 a skos:Concept ; + skos:broader :n33509501 ; + skos:inScheme ; + skos:prefLabel "Reichenbach"@de . + +:n138010440213 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Hombach"@de . + +:n143092540300 a skos:Concept ; + skos:broader :n14309254 ; + skos:inScheme ; + skos:prefLabel "Hölzenhausen"@de . + +:n34009220 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Reifenberg"@de . + +:n232050950202 a skos:Concept ; + skos:broader :n23205095 ; + skos:inScheme ; + skos:prefLabel "Rohrbach"@de . + +:n13805078 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Woldert"@de . + +:n33205048 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Weidenthal"@de . + +:n232063180107 a skos:Concept ; + skos:broader :n23206318 ; + skos:inScheme ; + skos:prefLabel "Wickenseifen"@de . + +:n137000030303 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Geishügelhof"@de . + +:n13501090 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Wirfus"@de . + +:n14009075 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Kratzenburg"@de . + +:n13703034 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Hausten"@de . + +:n33508016 a skos:Concept ; + skos:broader :n33508 ; + skos:inScheme ; + skos:prefLabel "Hütschenhausen"@de . + +:n315000000300 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Drais (Ortsbezirk)"@de . + +:n33608074 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Odenbach"@de . + +:n14111054 a skos:Concept ; + skos:broader :n14111 ; + skos:inScheme ; + skos:prefLabel "Herold"@de . + +:n13311085 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Roth"@de . + +:n33303017 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Dreisen"@de . + +:n23507069 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Kordel"@de . + +:n337050070300 a skos:Concept ; + skos:broader :n33705007 ; + skos:inScheme ; + skos:prefLabel "Ingenheim"@de . + +:n131030060300 a skos:Concept ; + skos:broader :n13103006 ; + skos:inScheme ; + skos:prefLabel "Rheineck"@de . + +:n111000000602 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Bisholder"@de . + +:n13805057 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Puderbach"@de . + +:n34001021 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Hirschthal"@de . + +:n332070410200 a skos:Concept ; + skos:broader :n33207041 ; + skos:inScheme ; + skos:prefLabel "Colgenstein-Heidesheim"@de . + +:n23301071 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Strotzbüsch"@de . + +:n332050480103 a skos:Concept ; + skos:broader :n33205048 ; + skos:inScheme ; + skos:prefLabel "Morschbacherhof, Forsthaus"@de . + +:n331000030200 a skos:Concept ; + skos:broader :n33100003 ; + skos:inScheme ; + skos:prefLabel "Dautenheim (Ortsbezirk)"@de . + +:n13703092 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Reudelsterz"@de . + +:n133000060651 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Ebernburg"@de . + +:n13801003 a skos:Concept ; + skos:broader :n13801 ; + skos:inScheme ; + skos:prefLabel "Asbach"@de . + +:n33901036 a skos:Concept ; + skos:broader :n33901 ; + skos:inScheme ; + skos:prefLabel "Manubach"@de . + +:n33608053 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Kreimbach-Kaulbach"@de . + +:n33101052 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Ober-Flörsheim"@de . + +:n13209006 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Betzdorf, Stadt"@de . + +:n235081520109 a skos:Concept ; + skos:broader :n23508152 ; + skos:inScheme ; + skos:prefLabel "Oberzerf"@de . + +:n232080980100 a skos:Concept ; + skos:broader :n23208098 ; + skos:inScheme ; + skos:prefLabel "Beifels"@de . + +:n23507048 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Hockweiler"@de . + +:n132070370139 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Möhren"@de . + +:n131020020300 a skos:Concept ; + skos:broader :n13102002 ; + skos:inScheme ; + skos:prefLabel "Pützfeld"@de . + +:n4322679n6 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Kalkeifel"@de . + +:n23208119 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Seffern"@de . + +:n132060340101 a skos:Concept ; + skos:broader :n13206034 ; + skos:inScheme ; + skos:prefLabel "Dellingen"@de . + +:n332050140105 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Harzofen"@de . + +:n33306030 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Höringen"@de . + +:n332070010102 a skos:Concept ; + skos:broader :n33207001 ; + skos:inScheme ; + skos:prefLabel "Drahtzug"@de . + +:n135010820100 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Karden"@de . + +:n231001340400 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Neuerburg (Ortsbezirk)"@de . + +:n34002057 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Wilgartswiesen"@de . + +:n33101031 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Gau-Heppenheim"@de . + +:n33702 a skos:Concept ; + skos:broader :n337 ; + skos:inScheme ; + skos:prefLabel "Bad Bergzabern, Verbandsgemeinde"@de . + +:n23507027 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Franzenheim"@de . + +:n132070370118 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Hammer"@de . + +:n315000001400 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Neustadt (Ortsbezirk)"@de . + +:n34003205 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Bottenbach"@de . + +:n333060480102 a skos:Concept ; + skos:broader :n33306048 ; + skos:inScheme ; + skos:prefLabel "Neumühle"@de . + +:n14305050 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Nauort"@de . + +:n13505081 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Tellig"@de . + +:n141030300104 a skos:Concept ; + skos:broader :n14103030 ; + skos:inScheme ; + skos:prefLabel "Kalkofen"@de . + +:n33608090 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Rutsweiler an der Lauter"@de . + +:n232062710104 a skos:Concept ; + skos:broader :n23206271 ; + skos:inScheme ; + skos:prefLabel "Schweiler"@de . + +:n33703025 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Flemlingen"@de . + +:n13502026 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Eppenberg"@de . + +:n33307008 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Bisterschied"@de . + +:n335020040102 a skos:Concept ; + skos:broader :n33502004 ; + skos:inScheme ; + skos:prefLabel "Hetschmühle"@de . + +:n143012060400 a skos:Concept ; + skos:broader :n14301206 ; + skos:inScheme ; + skos:prefLabel "Zinhain"@de . + +:n336100030201 a skos:Concept ; + skos:broader :n33610003 ; + skos:inScheme ; + skos:prefLabel "Dreikönigszug"@de . + +:n33101010 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Biebelnheim"@de . + +:n135050710100 a skos:Concept ; + skos:broader :n13505071 ; + skos:inScheme ; + skos:prefLabel "Löffelscheid"@de . + +:n23206328 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Winterscheid"@de . + +:n132081170406 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Hagdorn"@de . + +:n332020500101 a skos:Concept ; + skos:broader :n33202050 ; + skos:inScheme ; + skos:prefLabel "Eyersheimerhof"@de . + +:n33403012 a skos:Concept ; + skos:broader :n33403 ; + skos:inScheme ; + skos:prefLabel "Jockgrim"@de . + +:n14107060 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Holzhausen an der Haide"@de . + +:n132030500300 a skos:Concept ; + skos:broader :n13203050 ; + skos:inScheme ; + skos:prefLabel "Sassenroth (Ortsbezirk)"@de . + +:n13502084 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Urmersbach"@de . + +:n33307066 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Sankt Alban"@de . + +:n131042020300 a skos:Concept ; + skos:broader :n13104202 ; + skos:inScheme ; + skos:prefLabel "Weiler"@de . + +:n13807062 a skos:Concept ; + skos:broader :n13807 ; + skos:inScheme ; + skos:prefLabel "Rheinbreitbach"@de . + +:n331070550103 a skos:Concept ; + skos:broader :n33107055 ; + skos:inScheme ; + skos:prefLabel "Mühlheim"@de . + +:n233062040103 a skos:Concept ; + skos:broader :n23306204 ; + skos:inScheme ; + skos:prefLabel "Rom"@de . + +:n33303012 a skos:Concept ; + skos:broader :n33303 ; + skos:inScheme ; + skos:prefLabel "Bubenheim"@de . + +:n143093080100 a skos:Concept ; + skos:broader :n14309308 ; + skos:inScheme ; + skos:prefLabel "Gershasen"@de . + +:n23101126 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Veldenz"@de . + +:n23208135 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Wilsecker"@de . + +:n336100550200 a skos:Concept ; + skos:broader :n33610055 ; + skos:inScheme ; + skos:prefLabel "Diedelkopf (Ortsbezirk)"@de . + +:n232063080102 a skos:Concept ; + skos:broader :n23206308 ; + skos:inScheme ; + skos:prefLabel "Hontheim"@de . + +:n13805052 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Oberdreis"@de . + +:n13402084 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Siesbach"@de . + +:n335110470119 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Unterhammer"@de . + +:n23206307 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Seiwerath"@de . + +:n138010440102 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Ehrenberg"@de . + +:n131040550103 a skos:Concept ; + skos:broader :n13104055 ; + skos:inScheme ; + skos:prefLabel "Rodder (ehem.Gem.Niederdürenbach)"@de . + +:n336080750200 a skos:Concept ; + skos:broader :n33608075 ; + skos:inScheme ; + skos:prefLabel "Offenbach"@de . + +:n138010770202 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Birken"@de . + +:n13301039 a skos:Concept ; + skos:broader :n13301 ; + skos:inScheme ; + skos:prefLabel "Hallgarten"@de . + +:n33609047 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Hüffler"@de . + +:n34009024 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Höhfröschen"@de . + +:n14003018 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Braunshorn"@de . + +:n23101105 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Piesport"@de . + +:n340092280100 a skos:Concept ; + skos:broader :n34009228 ; + skos:inScheme ; + skos:prefLabel "Niederhausen"@de . + +:n235081540700 a skos:Concept ; + skos:broader :n23508154 ; + skos:inScheme ; + skos:prefLabel "Südlingen (Ortsbezirk)"@de . + +:n23306019 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Dohm-Lammersdorf"@de . + +:n143062560300 a skos:Concept ; + skos:broader :n14306256 ; + skos:inScheme ; + skos:prefLabel "Weißenberg"@de . + +:n13402063 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Oberhambach"@de . + +:n140090840100 a skos:Concept ; + skos:broader :n14009084 ; + skos:inScheme ; + skos:prefLabel "Lamscheid"@de . + +:n132030180100 a skos:Concept ; + skos:broader :n13203018 ; + skos:inScheme ; + skos:prefLabel "Biersdorf"@de . + +:n131010330301 a skos:Concept ; + skos:broader :n13101033 ; + skos:inScheme ; + skos:prefLabel "Heistert"@de . + +:n23208029 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Echtershausen"@de . + +:n133010300102 a skos:Concept ; + skos:broader :n13301030 ; + skos:inScheme ; + skos:prefLabel "Feil"@de . + +:n13502042 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Illerich"@de . + +:n33307024 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Gehrweiler"@de . + +:n23108114 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Schladt"@de . + +:n13101 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Adenau, Verbandsgemeinde"@de . + +:n333060200101 a skos:Concept ; + skos:broader :n33306020 ; + skos:inScheme ; + skos:prefLabel "Bornshof"@de . + +:n138010030309 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Hinterplag"@de . + +:n133090520100 a skos:Concept ; + skos:broader :n13309052 ; + skos:inScheme ; + skos:prefLabel "Kallenfels (Ortsbezirk)"@de . + +:n23504046 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Hinzenburg"@de . + +:n23205117 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Scheuern"@de . + +:n23208087 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Neidenbach"@de . + +:n13402042 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Hoppstädten-Weiersbach"@de . + +:n233010750100 a skos:Concept ; + skos:broader :n23301075 ; + skos:inScheme ; + skos:prefLabel "Tettscheid (Ortsbezirk)"@de . + +:n23109 a skos:Concept ; + skos:broader :n231 ; + skos:inScheme ; + skos:prefLabel "Traben-Trarbach, Verbandsgemeinde"@de . + +:n335100170104 a skos:Concept ; + skos:broader :n33510017 ; + skos:inScheme ; + skos:prefLabel "Kühbörncheshof"@de . + +:n138000450700 a skos:Concept ; + skos:broader :n13800045 ; + skos:inScheme ; + skos:prefLabel "Neuwied"@de . + +:n232051020102 a skos:Concept ; + skos:broader :n23205102 ; + skos:inScheme ; + skos:prefLabel "Glashütte"@de . + +:n131042080101 a skos:Concept ; + skos:broader :n13104208 ; + skos:inScheme ; + skos:prefLabel "Hannebach"@de . + +:n33106058 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Saulheim"@de . + +:n33703020 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Edenkoben,Stadt"@de . + +:n334020020101 a skos:Concept ; + skos:broader :n33402002 ; + skos:inScheme ; + skos:prefLabel "Neulauterburg"@de . + +:n132100400102 a skos:Concept ; + skos:broader :n13210040 ; + skos:inScheme ; + skos:prefLabel "Herpteroth"@de . + +:n131040730104 a skos:Concept ; + skos:broader :n13104073 ; + skos:inScheme ; + skos:prefLabel "Untervinxt"@de . + +:n14003055 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Hollnich"@de . + +:n33307003 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Alsenz"@de . + +:n14109138 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Weyer"@de . + +:n338 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Rhein-Pfalz-Kreis"@de . + +:n23306056 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Pelm"@de . + +:n132081170401 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Alserberg"@de . + +:n23507001 a skos:Concept ; + skos:broader :n23507 ; + skos:inScheme ; + skos:prefLabel "Aach"@de . + +:n312000001700 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Betzenberg (Ortsbezirk)"@de . + +:n232062260100 a skos:Concept ; + skos:broader :n23206226 ; + skos:inScheme ; + skos:prefLabel "Gondelsheim"@de . + +:n23304228 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Nitz"@de . + +:n133105010305 a skos:Concept ; + skos:broader :n13310501 ; + skos:inScheme ; + skos:prefLabel "Steinhardt"@de . + +:n13503078 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Schmitt"@de . + +:n33307061 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Ransweiler"@de . + +:n235075010111 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Träg (Ortsbezirk)"@de . + +:n23206238 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Heisdorf"@de . + +:n131000070402 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Ehlingen"@de . + +:n33509005 a skos:Concept ; + skos:broader :n33509 ; + skos:inScheme ; + skos:prefLabel "Erzenhausen"@de . + +:n13405088 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Sulzbach"@de . + +:n131000901003 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Bölingen"@de . + +:n133110350200 a skos:Concept ; + skos:broader :n13311035 ; + skos:inScheme ; + skos:prefLabel "Waldhilbersheim"@de . + +:n4108577n2 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Vorderwesterwald"@de . + +:n134020570101 a skos:Concept ; + skos:broader :n13402057 ; + skos:inScheme ; + skos:prefLabel "Fischerhof"@de . + +:n23508058 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Kell am See"@de . + +:n231080690101 a skos:Concept ; + skos:broader :n23108069 ; + skos:inScheme ; + skos:prefLabel "Pohlbacher Mühle"@de . + +:n14310012 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Ebernhahn"@de . + +:n13405009 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Berschweiler bei Kirn"@de . + +:n335080440300 a skos:Concept ; + skos:broader :n33508044 ; + skos:inScheme ; + skos:prefLabel "Weltersbach"@de . + +:n339060570100 a skos:Concept ; + skos:broader :n33906057 ; + skos:inScheme ; + skos:prefLabel "Elsheim"@de . + +:n23306035 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Jünkerath"@de . + +:n135050130106 a skos:Concept ; + skos:broader :n13505013 ; + skos:inScheme ; + skos:prefLabel "Maiermund"@de . + +:n23206302 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Roth bei Prüm"@de . + +:n339010400102 a skos:Concept ; + skos:broader :n33901040 ; + skos:inScheme ; + skos:prefLabel "Burg Sooneck"@de . + +:n13310064 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Meddersheim"@de . + +:n23206296 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Prüm, Stadt"@de . + +:n23208045 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Halsdorf"@de . + +:n335080380200 a skos:Concept ; + skos:broader :n33508038 ; + skos:inScheme ; + skos:prefLabel "Ramstein"@de . + +:n23205069 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Kruchten"@de . + +:n14301277 a skos:Concept ; + skos:broader :n14301 ; + skos:inScheme ; + skos:prefLabel "Nisterau"@de . + +:n23304207 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Borler"@de . + +:n23508122 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Schoden"@de . + +:n13709204 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Brey"@de . + +:n13503057 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Lutzerath"@de . + +:n132070630606 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Junkernthal, Schloß und Forsthaus"@de . + +:n133060680103 a skos:Concept ; + skos:broader :n13306068 ; + skos:inScheme ; + skos:prefLabel "Struthof"@de . + +:n335010030400 a skos:Concept ; + skos:broader :n33501003 ; + skos:inScheme ; + skos:prefLabel "Miesau"@de . + +:n231010080404 a skos:Concept ; + skos:broader :n23101008 ; + skos:inScheme ; + skos:prefLabel "Machern"@de . + +:n14310070 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Siershahn"@de . + +:n13405067 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Oberwörresbach"@de . + +:n232063320100 a skos:Concept ; + skos:broader :n23206332 ; + skos:inScheme ; + skos:prefLabel "Niederhersdorf"@de . + +:n33807011 a skos:Concept ; + skos:broader :n33807 ; + skos:inScheme ; + skos:prefLabel "Harthausen"@de . + +:n338070230200 a skos:Concept ; + skos:broader :n33807023 ; + skos:inScheme ; + skos:prefLabel "Heiligenstein"@de . + +:n134050170102 a skos:Concept ; + skos:broader :n13405017 ; + skos:inScheme ; + skos:prefLabel "Reinhardtsmühle"@de . + +:n137000030102 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Gut zur Nette"@de . + +:n143040480700 a skos:Concept ; + skos:broader :n14304048 ; + skos:inScheme ; + skos:prefLabel "Reckenthal (Ortsbezirk)"@de . + +:n23208024 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Dahlem"@de . + +:n33307502 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Rockenhausen, Stadt"@de . + +:n340010390103 a skos:Concept ; + skos:broader :n34001039 ; + skos:inScheme ; + skos:prefLabel "Falkenmühle"@de . + +:n333070250104 a skos:Concept ; + skos:broader :n33307025 ; + skos:inScheme ; + skos:prefLabel "Schneebergerhof"@de . + +:n133100010102 a skos:Concept ; + skos:broader :n13310001 ; + skos:inScheme ; + skos:prefLabel "St.Antoniushof"@de . + +:n13405046 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Kempfeld"@de . + +:n34006022 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Höheinöd"@de . + +:n339000050101 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Auf dem Rochusberg"@de . + +:n138010030304 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Diefenau"@de . + +:n14109069 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Kaub, Stadt"@de . + +:n23205112 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Roth an der Our"@de . + +:n23108024 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Dreis"@de . + +:n336090920300 a skos:Concept ; + skos:broader :n33609092 ; + skos:inScheme ; + skos:prefLabel "Schmittweiler"@de . + +:n23304244 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Welcherath"@de . + +:n335110450102 a skos:Concept ; + skos:broader :n33511045 ; + skos:inScheme ; + skos:prefLabel "Breitenau"@de . + +:n13310022 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Daubach"@de . + +:n312000000404 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Stockborn"@de . + +:n232062960100 a skos:Concept ; + skos:broader :n23206296 ; + skos:inScheme ; + skos:prefLabel "Dausfeld"@de . + +:n14004049 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Heinzenbach"@de . + +:n33304022 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Gauersheim"@de . + +:n335110210104 a skos:Concept ; + skos:broader :n33511021 ; + skos:inScheme ; + skos:prefLabel "Schweinstal"@de . + +:n23108082 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Meerfeld"@de . + +:n34008227 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Wiesbach"@de . + +:n333 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Donnersberg-Kreis"@de . + +:n13405025 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Fischbach"@de . + +:n235070010103 a skos:Concept ; + skos:broader :n23507001 ; + skos:inScheme ; + skos:prefLabel "Haus Wehrborn"@de . + +:n232012580101 a skos:Concept ; + skos:broader :n23201258 ; + skos:inScheme ; + skos:prefLabel "Berscheiderhof"@de . + +:n320000000101 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Bombacherhof"@de . + +:n33510034 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Otterbach"@de . + +:n138090060115 a skos:Concept ; + skos:broader :n13809006 ; + skos:inScheme ; + skos:prefLabel "Verscheid"@de . + +:n23208061 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Idesheim"@de . + +:n335100410102 a skos:Concept ; + skos:broader :n33510041 ; + skos:inScheme ; + skos:prefLabel "Wickelhof"@de . + +:n13306109 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Wallhausen"@de . + +:n340060540200 a skos:Concept ; + skos:broader :n34006054 ; + skos:inScheme ; + skos:prefLabel "Waldfischbach"@de . + +:n23108003 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Arenrath"@de . + +:n23205085 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Nasingen"@de . + +:n132060140103 a skos:Concept ; + skos:broader :n13206014 ; + skos:inScheme ; + skos:prefLabel "Langenbach"@de . + +:n141090660103 a skos:Concept ; + skos:broader :n14109066 ; + skos:inScheme ; + skos:prefLabel "Burg Sterrenberg"@de . + +:n13210119 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Ziegenhain"@de . + +:n13709220 a skos:Concept ; + skos:broader :n13709 ; + skos:inScheme ; + skos:prefLabel "Oberfell"@de . + +:n13103081 a skos:Concept ; + skos:broader :n13103 ; + skos:inScheme ; + skos:prefLabel "Waldorf"@de . + +:n132100550103 a skos:Concept ; + skos:broader :n13210055 ; + skos:inScheme ; + skos:prefLabel "Luchert"@de . + +:n13310001 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Abtweiler"@de . + +:n132060280101 a skos:Concept ; + skos:broader :n13206028 ; + skos:inScheme ; + skos:prefLabel "Heckenhof"@de . + +:n13405083 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Sienhachenbach"@de . + +:n33701017 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Dernbach"@de . + +:n33808026 a skos:Concept ; + skos:broader :n33808 ; + skos:inScheme ; + skos:prefLabel "Waldsee"@de . + +:n14004028 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Dickenschied"@de . + +:n33501 a skos:Concept ; + skos:broader :n335 ; + skos:inScheme ; + skos:prefLabel "Bruchmühlbach-Miesau, Verbandsgemeinde"@de . + +:n14109112 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Prath"@de . + +:n235060830100 a skos:Concept ; + skos:broader :n23506083 ; + skos:inScheme ; + skos:prefLabel "Lörsch"@de . + +:n14309307 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Weltersburg"@de . + +:n34008206 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Contwig"@de . + +:n23201247 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Kesfeld"@de . + +:n13405004 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Asbach"@de . + +:n131000700600 a skos:Concept ; + skos:broader :n13100070 ; + skos:inScheme ; + skos:prefLabel "Rolandseck (T.a.Ortsbezirk 3)"@de . + +:n14307075 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Steinen"@de . + +:n135050130101 a skos:Concept ; + skos:broader :n13505013 ; + skos:inScheme ; + skos:prefLabel "Briedeler Heck"@de . + +:n33510013 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Heiligenmoschel"@de . + +:n111000002102 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Königsbach"@de . + +:n143092890100 a skos:Concept ; + skos:broader :n14309289 ; + skos:inScheme ; + skos:prefLabel "Obersayn"@de . + +:n235010450101 a skos:Concept ; + skos:broader :n23501045 ; + skos:inScheme ; + skos:prefLabel "Abtei"@de . + +:n23205064 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Karlshausen"@de . + +:n23304202 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Bereborn"@de . + +:n337010640101 a skos:Concept ; + skos:broader :n33701064 ; + skos:inScheme ; + skos:prefLabel "Modenbacherhof"@de . + +:n4054837n5 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Siebengebirge"@de . + +:n33903019 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Gau-Algesheim, Stadt"@de . + +:n14004086 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Lindenschied"@de . + +:n132070630601 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Äpfelbach"@de . + +:n13104059 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Oberdürenbach"@de . + +:n33902020 a skos:Concept ; + skos:broader :n33902 ; + skos:inScheme ; + skos:prefLabel "Gau-Bischofsheim"@de . + +:n111000000900 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Karthause"@de . + +:n23109124 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Traben-Trarbach, Stadt"@de . + +:n14111 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Aar-Einrich, Verbandsgemeinde"@de . + +:n339000050600 a skos:Concept ; + skos:broader :n33900005 ; + skos:inScheme ; + skos:prefLabel "Gaulsheim"@de . + +:n340092250100 a skos:Concept ; + skos:broader :n34009225 ; + skos:inScheme ; + skos:prefLabel "Oberhausen"@de . + +:n4039705n1 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Mittelrhein"@de . + +:n134020420200 a skos:Concept ; + skos:broader :n13402042 ; + skos:inScheme ; + skos:prefLabel "Weiersbach"@de . + +:n14004007 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Belg"@de . + +:n14308281 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Oberahr"@de . + +:n141110500106 a skos:Concept ; + skos:broader :n14111050 ; + skos:inScheme ; + skos:prefLabel "Rupbach"@de . + +:n14008125 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Rheinböllen, Stadt"@de . + +:n231011360102 a skos:Concept ; + skos:broader :n23101136 ; + skos:inScheme ; + skos:prefLabel "Rachtig (Ortsbezirk)"@de . + +:n132080540107 a skos:Concept ; + skos:broader :n13208054 ; + skos:inScheme ; + skos:prefLabel "Oberhövels"@de . + +:n14110098 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Nievern"@de . + +:n33701054 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Münchweiler am Klingbach"@de . + +:n33907201 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Dorn-Dürkheim"@de . + +:n13207072 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Mudersbach"@de . + +:n233015010400 a skos:Concept ; + skos:broader :n23301501 ; + skos:inScheme ; + skos:prefLabel "Pützborn (Ortsbezirk)"@de . + +:n320000000600 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Mittelbach (Ortsbezirk)"@de . + +:n131000770600 a skos:Concept ; + skos:broader :n13100077 ; + skos:inScheme ; + skos:prefLabel "Westum (Ortsbezirk)"@de . + +:n13405041 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Hintertiefenbach"@de . + +:n339000300213 a skos:Concept ; + skos:broader :n33900030 ; + skos:inScheme ; + skos:prefLabel "Sporkenheim"@de . + +:n33207047 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Wattenheim"@de . + +:n140005010402 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Windhausen"@de . + +:n337040380100 a skos:Concept ; + skos:broader :n33704038 ; + skos:inScheme ; + skos:prefLabel "Hayna (Ortsbezirk)"@de . + +:n13803023 a skos:Concept ; + skos:broader :n13803 ; + skos:inScheme ; + skos:prefLabel "Großmaischeid"@de . + +:n14304057 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Oberelbert"@de . + +:n312000001000 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Siegelbach (Ortsbezirk)"@de . + +:n131042050101 a skos:Concept ; + skos:broader :n13104205 ; + skos:inScheme ; + skos:prefLabel "Maria Laach"@de . + +:n33906032 a skos:Concept ; + skos:broader :n33906 ; + skos:inScheme ; + skos:prefLabel "Klein-Winternheim"@de . + +:n13809066 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Rüscheid"@de . + +:n23205022 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Burg"@de . + +:n13309016 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Brauweiler"@de . + +:n14302229 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Hachenburg, Stadt"@de . + +:n33701033 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Gossersweiler-Stein"@de . + +:n14004044 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Hahn"@de . + +:n340010040104 a skos:Concept ; + skos:broader :n34001004 ; + skos:inScheme ; + skos:prefLabel "Reichenbach"@de . + +:n23201263 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lützkampen"@de . + +:n333070040103 a skos:Concept ; + skos:broader :n33307004 ; + skos:inScheme ; + skos:prefLabel "Schmalfelderhof"@de . + +:n14309238 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Hergenroth"@de . + +:n133061050101 a skos:Concept ; + skos:broader :n13306105 ; + skos:inScheme ; + skos:prefLabel "Auf dem Rotenfels"@de . + +:n137025010300 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Lasserg (Ortsbezirk)"@de . + +:n23205080 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Mettendorf"@de . + +:n13306098 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Sommerloch"@de . + +:n14302287 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Roßbach"@de . + +:n14304036 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Hübingen"@de . + +:n14110141 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Zimmerschied"@de . + +:n13210114 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Werkhausen"@de . + +:n233010170101 a skos:Concept ; + skos:broader :n23301017 ; + skos:inScheme ; + skos:prefLabel "Desserath"@de . + +:n14008077 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Kümbdchen"@de . + +:n231010700200 a skos:Concept ; + skos:broader :n23101070 ; + skos:inScheme ; + skos:prefLabel "Fronhofen (Ortsbezirk)"@de . + +:n13306019 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Burgsponheim"@de . + +:n23205001 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Affler"@de . + +:n138090360102 a skos:Concept ; + skos:broader :n13809036 ; + skos:inScheme ; + skos:prefLabel "Escherwiese"@de . + +:n140032020400 a skos:Concept ; + skos:broader :n14003202 ; + skos:inScheme ; + skos:prefLabel "Sabershausen (Ortsbezirk)"@de . + +:n33808021 a skos:Concept ; + skos:broader :n33808 ; + skos:inScheme ; + skos:prefLabel "Otterstadt"@de . + +:n33302019 a skos:Concept ; + skos:broader :n33302 ; + skos:inScheme ; + skos:prefLabel "Eisenberg (Pfalz), Stadt"@de . + +:n138010030108 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Limberg (ehemals Gemeinde Elsaff)"@de . + +:n23106079 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Malborn"@de . + +:n34008201 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Althornbach"@de . + +:n140091120304 a skos:Concept ; + skos:broader :n14009112 ; + skos:inScheme ; + skos:prefLabel "Niederbachtal"@de . + +:n23304048 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Neichen"@de . + +:n235040370101 a skos:Concept ; + skos:broader :n23504037 ; + skos:inScheme ; + skos:prefLabel "Romika"@de . + +:n58 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Bayerische Pfalz"@de . + +:n133090460100 a skos:Concept ; + skos:broader :n13309046 ; + skos:inScheme ; + skos:prefLabel "Hochstädten (Ortsbezirk)"@de . + +:n13210087 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Ölsen"@de . + +:n14004081 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Laufersweiler"@de . + +:n14008056 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Holzbach"@de . + +:n13104054 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Niederdürenbach"@de . + +:n137 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Mayen-Koblenz, Landkreis"@de . + +:n312000002100 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Erzhütten/Wiesenthalerhof (Ortsbezirk)"@de . + +:n13208008 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Birken-Honigsessen"@de . + +:n33405032 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Weingarten (Pfalz)"@de . + +:n132081170200 a skos:Concept ; + skos:broader :n13208117 ; + skos:inScheme ; + skos:prefLabel "Köttingerhöhe"@de . + +:n333040390111 a skos:Concept ; + skos:broader :n33304039 ; + skos:inScheme ; + skos:prefLabel "Rothenkircherhof"@de . + +:n23106058 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Horath"@de . + +:n231011330107 a skos:Concept ; + skos:broader :n23101133 ; + skos:inScheme ; + skos:prefLabel "Kasholz"@de . + +:n134010050102 a skos:Concept ; + skos:broader :n13401005 ; + skos:inScheme ; + skos:prefLabel "Eschelbacherhof"@de . + +:n235081040100 a skos:Concept ; + skos:broader :n23508104 ; + skos:inScheme ; + skos:prefLabel "Dilmar (Ortsbezirk)"@de . + +:n37 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Katholische Kirche / Diözese Speyer"@de . + +:n14103049 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Gückingen"@de . + +:n233060260700 a skos:Concept ; + skos:broader :n23306026 ; + skos:inScheme ; + skos:prefLabel "Michelbach (Ortsbezirk)"@de . + +:n13501049 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Klotten"@de . + +:n231005021101 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Dörrwiese"@de . + +:n14008035 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Ellern (Hunsrück)"@de . + +:n333060420102 a skos:Concept ; + skos:broader :n33306042 ; + skos:inScheme ; + skos:prefLabel "Pulvermühle"@de . + +:n23106122 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Talling"@de . + +:n333075020310 a skos:Concept ; + skos:broader :n33307502 ; + skos:inScheme ; + skos:prefLabel "Scharfeeck"@de . + +:n231005020500 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Haag (Ortsbezirk)"@de . + +:n33207042 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Quirnheim"@de . + +:n4102956n2 a skos:Concept ; + skos:broader :n22 ; + skos:inScheme ; + skos:prefLabel "Pellenz"@de . + +:n95 a skos:Concept ; + skos:broader :n07 ; + skos:inScheme ; + skos:prefLabel "Südpfalz"@de . + +:n14309254 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Langenhahn"@de . + +:n14306278 a skos:Concept ; + skos:broader :n14306 ; + skos:inScheme ; + skos:prefLabel "Nister-Möhrendorf"@de . + +:n14304052 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Neuhäusel"@de . + +:n33705082 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Walsheim"@de . + +:n231085030101 a skos:Concept ; + skos:broader :n23108503 ; + skos:inScheme ; + skos:prefLabel "Altenhof"@de . + +:n319000000500 a skos:Concept ; + skos:broader :n31900000 ; + skos:inScheme ; + skos:prefLabel "Hochheim (Ortsbezirk)"@de . + +:n33800017 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Limburgerhof"@de . + +:n16 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Westrich"@de . + +:n132070630405 a skos:Concept ; + skos:broader :n13207063 ; + skos:inScheme ; + skos:prefLabel "Jungenthal"@de . + +:n33903051 a skos:Concept ; + skos:broader :n33903 ; + skos:inScheme ; + skos:prefLabel "Schwabenheim an der Selz"@de . + +:n13809061 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Rengsdorf"@de . + +:n337010330100 a skos:Concept ; + skos:broader :n33701033 ; + skos:inScheme ; + skos:prefLabel "Gossersweiler"@de . + +:n232013330100 a skos:Concept ; + skos:broader :n23201333 ; + skos:inScheme ; + skos:prefLabel "Binscheid"@de . + +:n13311108 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Waldlaubersheim"@de . + +:n340040310103 a skos:Concept ; + skos:broader :n34004031 ; + skos:inScheme ; + skos:prefLabel "Wieslauterhof"@de . + +:n134000450900 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Oberstein"@de . + +:n34009216 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Krähenberg"@de . + +:n13804075 a skos:Concept ; + skos:broader :n13804 ; + skos:inScheme ; + skos:prefLabel "Vettelschoß"@de . + +:n33207021 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Gerolsheim"@de . + +:n14009156 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Utzenhain"@de . + +:n33511023 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Linden"@de . + +:n23208306 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Seinsfeld"@de . + +:n14309233 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Halbs"@de . + +:n13501086 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Valwig"@de . + +:n13209108 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Steineroth"@de . + +:n13306014 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Boos"@de . + +:n131020270107 a skos:Concept ; + skos:broader :n13102027 ; + skos:inScheme ; + skos:prefLabel "Niederheckenbach"@de . + +:n333040130101 a skos:Concept ; + skos:broader :n33304013 ; + skos:inScheme ; + skos:prefLabel "Bastenhaus"@de . + +:n33702006 a skos:Concept ; + skos:broader :n33702 ; + skos:inScheme ; + skos:prefLabel "Barbelroth"@de . + +:n111000000200 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Arzheim (Ortsbezirk 2)"@de . + +:n13501007 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Beilstein"@de . + +:n13700203 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Bendorf, Stadt"@de . + +:n13101015 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Dankerath"@de . + +:n333065030100 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Alsenbrück-Langmeil (Ortsbezirk)"@de . + +:n138010030103 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Büsch"@de . + +:n143022960103 a skos:Concept ; + skos:broader :n14302296 ; + skos:inScheme ; + skos:prefLabel "Ehrlich"@de . + +:n23301067 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Steineberg"@de . + +:n33804 a skos:Concept ; + skos:broader :n338 ; + skos:inScheme ; + skos:prefLabel "Maxdorf, Verbandsgemeinde"@de . + +:n14305009 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Deesen"@de . + +:n33511002 a skos:Concept ; + skos:broader :n33511 ; + skos:inScheme ; + skos:prefLabel "Bann"@de . + +:n13208 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Wissen, Verbandsgemeinde"@de . + +:n131000070700 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Ramersbach (Ortsbezirk)"@de . + +:n53 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Hessen-Darmstadt"@de . + +:n138070730103 a skos:Concept ; + skos:broader :n13807073 ; + skos:inScheme ; + skos:prefLabel "Heister"@de . + +:n135010820202 a skos:Concept ; + skos:broader :n13501082 ; + skos:inScheme ; + skos:prefLabel "Beurenhof"@de . + +:n231001340502 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Wahlholz"@de . + +:n231005021600 a skos:Concept ; + skos:broader :n23100502 ; + skos:inScheme ; + skos:prefLabel "Wederath (Ortsbezirk)"@de . + +:n14302261 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Marzhausen"@de . + +:n13210082 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Oberirsen"@de . + +:n33705040 a skos:Concept ; + skos:broader :n33705 ; + skos:inScheme ; + skos:prefLabel "Heuchelheim-Klingen"@de . + +:n13501065 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Moselkern"@de . + +:n13401007 a skos:Concept ; + skos:broader :n13401 ; + skos:inScheme ; + skos:prefLabel "Berglangenbach"@de . + +:n138010800304 a skos:Concept ; + skos:broader :n13801080 ; + skos:inScheme ; + skos:prefLabel "Jungeroth"@de . + +:n131000900700 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Lantershofen (Ortsbezirk)"@de . + +:n340092220100 a skos:Concept ; + skos:broader :n34009222 ; + skos:inScheme ; + skos:prefLabel "Höhmühlbach"@de . + +:n235070730202 a skos:Concept ; + skos:broader :n23507073 ; + skos:inScheme ; + skos:prefLabel "Wasserbilligerbrück"@de . + +:n33608049 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Kappeln"@de . + +:n132 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Altenkirchen(Ww), Landkreis"@de . + +:n14107104 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Obertiefenbach"@de . + +:n133010030101 a skos:Concept ; + skos:broader :n13301003 ; + skos:inScheme ; + skos:prefLabel "Altenbaumburg"@de . + +:n138090150101 a skos:Concept ; + skos:broader :n13809015 ; + skos:inScheme ; + skos:prefLabel "Forsthaus Gommerscheid"@de . + +:n23301046 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Mückeln"@de . + +:n231062040101 a skos:Concept ; + skos:broader :n23106204 ; + skos:inScheme ; + skos:prefLabel "Heidenburgerhof"@de . + +:n32 a skos:Concept ; + skos:broader :n3 ; + skos:inScheme ; + skos:prefLabel "Evangelische Kirche der Pfalz (Protestantische Landeskirche)"@de . + +:n14107019 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Buch"@de . + +:n138010440310 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Weißenfels"@de . + +:n14302240 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Heuzert"@de . + +:n13210061 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Kettenhausen"@de . + +:n235075010303 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Wellkyll"@de . + +:n13505019 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Bullay"@de . + +:n23503133 a skos:Concept ; + skos:broader :n23503 ; + skos:inScheme ; + skos:prefLabel "Temmels"@de . + +:n13101052 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Müsch"@de . + +:n138010440225 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Rotterheide (ehem.Gem.Elsaffthal)"@de . + +:n318000000104 a skos:Concept ; + skos:broader :n31800000 ; + skos:inScheme ; + skos:prefLabel "Kleine Lann"@de . + +:n137000030400 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Miesenheim (Ortsbezirk)"@de . + +:n340010450200 a skos:Concept ; + skos:broader :n34001045 ; + skos:inScheme ; + skos:prefLabel "Gebüg (Ortsbezirk)"@de . + +:n140030210200 a skos:Concept ; + skos:broader :n14003021 ; + skos:inScheme ; + skos:prefLabel "Mörz (Ortsbezirk)"@de . + +:n131000070111 a skos:Concept ; + skos:broader :n13100007 ; + skos:inScheme ; + skos:prefLabel "Walporzheim (Ortsbezirk)"@de . + +:n132060910103 a skos:Concept ; + skos:broader :n13206091 ; + skos:inScheme ; + skos:prefLabel "Hohegrete"@de . + +:n33101027 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Freimersheim"@de . + +:n90 a skos:Concept ; + skos:broader :n07 ; + skos:inScheme ; + skos:prefLabel "Westpfalz"@de . + +:n13203075 a skos:Concept ; + skos:broader :n13203 ; + skos:inScheme ; + skos:prefLabel "Niederdreisbach"@de . + +:n23106032 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Etgert"@de . + +:n337060470103 a skos:Concept ; + skos:broader :n33706047 ; + skos:inScheme ; + skos:prefLabel "Breitenstein, Forsthaus"@de . + +:n23306227 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Mürlenbach"@de . + +:n111000001300 a skos:Concept ; + skos:broader :n11100000 ; + skos:inScheme ; + skos:prefLabel "Metternich"@de . + +:n23301025 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Gefell"@de . + +:n13505077 a skos:Concept ; + skos:broader :n13505 ; + skos:inScheme ; + skos:prefLabel "Schauren"@de . + +:n14009087 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Lingerhahn"@de . + +:n11 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Taunus"@de . + +:n138040750108 a skos:Concept ; + skos:broader :n13804075 ; + skos:inScheme ; + skos:prefLabel "Willscheid"@de . + +:n33608086 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Relsberg"@de . + +:n233010840106 a skos:Concept ; + skos:broader :n23301084 ; + skos:inScheme ; + skos:prefLabel "Oberwinkel"@de . + +:n13210040 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Gieleroth"@de . + +:n13311103 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Stromberg, Stadt"@de . + +:n137030340101 a skos:Concept ; + skos:broader :n13703034 ; + skos:inScheme ; + skos:prefLabel "Morswiesen"@de . + +:n13209039 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Gebhardshain"@de . + +:n14308 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Wallmerod, Verbandsgemeinde"@de . + +:n4393885n1 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Kroppacher Schweiz"@de . + +:n34001033 a skos:Concept ; + skos:broader :n34001 ; + skos:inScheme ; + skos:prefLabel "Niederschlettenbach"@de . + +:n14308080 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Weroth"@de . + +:n13707 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Vallendar, Verbandsgemeinde"@de . + +:n13311018 a skos:Concept ; + skos:broader :n13311 ; + skos:inScheme ; + skos:prefLabel "Bretzenheim"@de . + +:n13703110 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Weiler"@de . + +:n317000000200 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Fehrbach (Ortsbezirk)"@de . + +:n235030680601 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Obermennig (T.a.Ortsbezirk 4)"@de . + +:n316000000800 a skos:Concept ; + skos:broader :n31600000 ; + skos:inScheme ; + skos:prefLabel "Königsbach (Ortsbezirk)"@de . + +:n320000001000 a skos:Concept ; + skos:broader :n32000000 ; + skos:inScheme ; + skos:prefLabel "Rimschweiler (Ortsbezirk)"@de . + +:n131020470200 a skos:Concept ; + skos:broader :n13102047 ; + skos:inScheme ; + skos:prefLabel "Obliers"@de . + +:n13703025 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Ettringen"@de . + +:n14103002 a skos:Concept ; + skos:broader :n14103 ; + skos:inScheme ; + skos:prefLabel "Altendiez"@de . + +:n131020270102 a skos:Concept ; + skos:broader :n13102027 ; + skos:inScheme ; + skos:prefLabel "Blasweiler"@de . + +:n33608065 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Nerzweiler"@de . + +:n137025010603 a skos:Concept ; + skos:broader :n13702501 ; + skos:inScheme ; + skos:prefLabel "Sevenich"@de . + +:n14107120 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Ruppertshofen"@de . + +:n138040090101 a skos:Concept ; + skos:broader :n13804009 ; + skos:inScheme ; + skos:prefLabel "Arnsau"@de . + +:n13805048 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Niederhofen"@de . + +:n23301062 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Saxler"@de . + +:n33201043 a skos:Concept ; + skos:broader :n33201 ; + skos:inScheme ; + skos:prefLabel "Ruppertsberg"@de . + +:n33205018 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Frankeneck"@de . + +:n13203 a skos:Concept ; + skos:broader :n132 ; + skos:inScheme ; + skos:prefLabel "Daaden-Herdorf, Verbandsgemeinde"@de . + +:n14107035 a skos:Concept ; + skos:broader :n14107 ; + skos:inScheme ; + skos:prefLabel "Ehr"@de . + +:n131020170102 a skos:Concept ; + skos:broader :n13102017 ; + skos:inScheme ; + skos:prefLabel "Marienthal"@de . + +:n333070430102 a skos:Concept ; + skos:broader :n33307043 ; + skos:inScheme ; + skos:prefLabel "Weidelbacherhof"@de . + +:n13501060 a skos:Concept ; + skos:broader :n13501 ; + skos:inScheme ; + skos:prefLabel "Mesenich"@de . + +:n232012630300 a skos:Concept ; + skos:broader :n23201263 ; + skos:inScheme ; + skos:prefLabel "Welchenhausen"@de . + +:n14009045 a skos:Concept ; + skos:broader :n14009 ; + skos:inScheme ; + skos:prefLabel "Halsenbach"@de . + +:n33306042 a skos:Concept ; + skos:broader :n33306 ; + skos:inScheme ; + skos:prefLabel "Lohnsfeld"@de . + +:n143092420300 a skos:Concept ; + skos:broader :n14309242 ; + skos:inScheme ; + skos:prefLabel "Oellingen"@de . + +:n231010120201 a skos:Concept ; + skos:broader :n23101012 ; + skos:inScheme ; + skos:prefLabel "Hirzlei (Ortsbezirk)"@de . + +:n13703004 a skos:Concept ; + skos:broader :n13703 ; + skos:inScheme ; + skos:prefLabel "Anschau"@de . + +:n131010370100 a skos:Concept ; + skos:broader :n13101037 ; + skos:inScheme ; + skos:prefLabel "Jammelshofen"@de . + +:n33608044 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Homberg"@de . + +:n33101043 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Lonsheim"@de . + +:n33806013 a skos:Concept ; + skos:broader :n33806 ; + skos:inScheme ; + skos:prefLabel "Heuchelheim bei Frankenthal"@de . + +:n134020580101 a skos:Concept ; + skos:broader :n13402058 ; + skos:inScheme ; + skos:prefLabel "Böschweiler"@de . + +:n13805027 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Harschbach"@de . + +:n235081260106 a skos:Concept ; + skos:broader :n23508126 ; + skos:inScheme ; + skos:prefLabel "Schloss Saarstein"@de . + +:n14305062 a skos:Concept ; + skos:broader :n14305 ; + skos:inScheme ; + skos:prefLabel "Ransbach-Baumbach, Stadt"@de . + +:n138045010100 a skos:Concept ; + skos:broader :n13804501 ; + skos:inScheme ; + skos:prefLabel "Kasbach"@de . + +:n33508044 a skos:Concept ; + skos:broader :n33508 ; + skos:inScheme ; + skos:prefLabel "Steinwenden"@de . + +:n33609107 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Matzenbach"@de . + +:n340082080102 a skos:Concept ; + skos:broader :n34008208 ; + skos:inScheme ; + skos:prefLabel "Kirschbacherhof"@de . + +:n13502038 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Hambuch"@de . + +:n33608023 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Eßweiler"@de . + +:n33101022 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Esselborn"@de . + +:n141030140101 a skos:Concept ; + skos:broader :n14103014 ; + skos:inScheme ; + skos:prefLabel "Fachingen"@de . + +:n134000450200 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Georg-Weierbach"@de . + +:n33403024 a skos:Concept ; + skos:broader :n33403 ; + skos:inScheme ; + skos:prefLabel "Rheinzabern"@de . + +:n143022650102 a skos:Concept ; + skos:broader :n14302265 ; + skos:inScheme ; + skos:prefLabel "Burbach"@de . + +:n23301020 a skos:Concept ; + skos:broader :n23301 ; + skos:inScheme ; + skos:prefLabel "Dreis-Brück"@de . + +:n211000001101 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Domäne Avelsbach"@de . + +:n33307078 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Unkenbach"@de . + +:n33608 a skos:Concept ; + skos:broader :n336 ; + skos:inScheme ; + skos:prefLabel "Lauterecken-Wolfstein, Verbandsgemeinde"@de . + +:n33801006 a skos:Concept ; + skos:broader :n33801 ; + skos:inScheme ; + skos:prefLabel "Dannstadt-Schauernheim"@de . + +:n33610081 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Rathsweiler"@de . + +:n133000060600 a skos:Concept ; + skos:broader :n13300006 ; + skos:inScheme ; + skos:prefLabel "Bad Münster am Stein-Ebernburg (Ortsbezirk)"@de . + +:n140030100500 a skos:Concept ; + skos:broader :n14003010 ; + skos:inScheme ; + skos:prefLabel "Schnellbach (Ortsbezirk)"@de . + +:n211000000500 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Euren (Ortsbezirk 9)"@de . + +:n141110540101 a skos:Concept ; + skos:broader :n14111054 ; + skos:inScheme ; + skos:prefLabel "Dillenbergermühle"@de . + +:n138020040103 a skos:Concept ; + skos:broader :n13802004 ; + skos:inScheme ; + skos:prefLabel "Girgenrath"@de . + +:n140005010700 a skos:Concept ; + skos:broader :n14000501 ; + skos:inScheme ; + skos:prefLabel "Oppenhausen (Ortsbezirk)"@de . + +:n14303 a skos:Concept ; + skos:broader :n143 ; + skos:inScheme ; + skos:prefLabel "Höhr-Grenzhausen, Verbandsgemeinde"@de . + +:n33610002 a skos:Concept ; + skos:broader :n33610 ; + skos:inScheme ; + skos:prefLabel "Albessen"@de . + +:n13805064 a skos:Concept ; + skos:broader :n13805 ; + skos:inScheme ; + skos:prefLabel "Rodenbach bei Puderbach"@de . + +:n33101001 a skos:Concept ; + skos:broader :n33101 ; + skos:inScheme ; + skos:prefLabel "Albig"@de . + +:n33205034 a skos:Concept ; + skos:broader :n33205 ; + skos:inScheme ; + skos:prefLabel "Lindenberg"@de . + +:n13702 a skos:Concept ; + skos:broader :n137 ; + skos:inScheme ; + skos:prefLabel "Maifeld, Verbandsgemeinde"@de . + +:n235030950200 a skos:Concept ; + skos:broader :n23503095 ; + skos:inScheme ; + skos:prefLabel "Köllig (Ortsbezirk)"@de . + +:n333040100101 a skos:Concept ; + skos:broader :n33304010 ; + skos:inScheme ; + skos:prefLabel "Bolanderhof"@de . + +:n13502075 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Roes"@de . + +:n13708222 a skos:Concept ; + skos:broader :n13708 ; + skos:inScheme ; + skos:prefLabel "Sankt Sebastian"@de . + +:n143040210200 a skos:Concept ; + skos:broader :n14304021 ; + skos:inScheme ; + skos:prefLabel "Kleinholbach"@de . + +:n33608060 a skos:Concept ; + skos:broader :n33608 ; + skos:inScheme ; + skos:prefLabel "Lohnweiler"@de . + +:n232080170103 a skos:Concept ; + skos:broader :n23208017 ; + skos:inScheme ; + skos:prefLabel "Hungerburg"@de . + +:n132070370146 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Obersolbach"@de . + +:n235070940200 a skos:Concept ; + skos:broader :n23507094 ; + skos:inScheme ; + skos:prefLabel "Butzweiler (Ortsbezirk)"@de . + +:n23208126 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Trimport"@de . + +:n34002006 a skos:Concept ; + skos:broader :n34002 ; + skos:inScheme ; + skos:prefLabel "Dimbach"@de . + +:n135010250101 a skos:Concept ; + skos:broader :n13501025 ; + skos:inScheme ; + skos:prefLabel "Ellenz"@de . + +:n314000000500 a skos:Concept ; + skos:broader :n31400000 ; + skos:inScheme ; + skos:prefLabel "Oggersheim (Ortsbezirk)"@de . + +:n332050140112 a skos:Concept ; + skos:broader :n33205014 ; + skos:inScheme ; + skos:prefLabel "Schwabenbach"@de . + +:n233060560105 a skos:Concept ; + skos:broader :n23306056 ; + skos:inScheme ; + skos:prefLabel "Schloßbrunnen Gerolstein"@de . + +:n332000020107 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Grethen (Ortsbezirk)"@de . + +:n235081360101 a skos:Concept ; + skos:broader :n23508136 ; + skos:inScheme ; + skos:prefLabel "Perdenbach"@de . + +:n13209071 a skos:Concept ; + skos:broader :n13209 ; + skos:inScheme ; + skos:prefLabel "Molzhain"@de . + +:n33307036 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Kalkofen"@de . + +:n23508118 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Saarburg, Stadt"@de . + +:n4288874n8 a skos:Concept ; + skos:broader :n50 ; + skos:inScheme ; + skos:prefLabel "Département Donnersberg"@de . + +:n135050920200 a skos:Concept ; + skos:broader :n13505092 ; + skos:inScheme ; + skos:prefLabel "Merl"@de . + +:n4119314n3 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Unterwesterwald"@de . + +:n4109995n3 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Kannenbäckerland"@de . + +:n13104209 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Wassenach"@de . + +:n23206 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Prüm, Verbandsgemeinde"@de . + +:n33807007 a skos:Concept ; + skos:broader :n33807 ; + skos:inScheme ; + skos:prefLabel "Dudenhofen"@de . + +:n14003009 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Bell (Hunsrück)"@de . + +:n23208105 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Pickließem"@de . + +:n23208099 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Oberweis"@de . + +:n211000001600 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Pfalzel (Ortsbezirk 5)"@de . + +:n4012733n3 a skos:Concept ; + skos:broader :n17 ; + skos:inScheme ; + skos:prefLabel "Donnersberg"@de . + +:n231061230102 a skos:Concept ; + skos:broader :n23106123 ; + skos:inScheme ; + skos:prefLabel "Forsthaus Deuselbach"@de . + +:n335100460100 a skos:Concept ; + skos:broader :n33510046 ; + skos:inScheme ; + skos:prefLabel "Obersulzbach"@de . + +:n33801022 a skos:Concept ; + skos:broader :n33801 ; + skos:inScheme ; + skos:prefLabel "Rödersheim-Gronau"@de . + +:n33609102 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Waldmohr, Stadt"@de . + +:n33609096 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Steinbach am Glan"@de . + +:n4049779n3 a skos:Concept ; + skos:broader :n03 ; + skos:inScheme ; + skos:prefLabel "Rheinisches Schiefergebirge"@de . + +:n33703032 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Gommersheim"@de . + +:n13502033 a skos:Concept ; + skos:broader :n13502 ; + skos:inScheme ; + skos:prefLabel "Gamlen"@de . + +:n231091240209 a skos:Concept ; + skos:broader :n23109124 ; + skos:inScheme ; + skos:prefLabel "Litzig"@de . + +:n33304039 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Kirchheimbolanden, Stadt"@de . + +:n232063290202 a skos:Concept ; + skos:broader :n23206329 ; + skos:inScheme ; + skos:prefLabel "Steinebrück"@de . + +:n33609017 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Dunzweiler"@de . + +:n338010140200 a skos:Concept ; + skos:broader :n33801014 ; + skos:inScheme ; + skos:prefLabel "Hochdorf"@de . + +:n141110890102 a skos:Concept ; + skos:broader :n14111089 ; + skos:inScheme ; + skos:prefLabel "Hohlenfels"@de . + +:n23504037 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Gusterath"@de . + +:n232050190108 a skos:Concept ; + skos:broader :n23205019 ; + skos:inScheme ; + skos:prefLabel "Weilerbach"@de . + +:n143050620100 a skos:Concept ; + skos:broader :n14305062 ; + skos:inScheme ; + skos:prefLabel "Baumbach"@de . + +:n23205108 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Prümzurlay"@de . + +:n131000901100 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Vettelhoven (Ortsbezirk)"@de . + +:n335090490104 a skos:Concept ; + skos:broader :n33509049 ; + skos:inScheme ; + skos:prefLabel "Samuelshof"@de . + +:n137020860105 a skos:Concept ; + skos:broader :n13702086 ; + skos:inScheme ; + skos:prefLabel "Fressenhof"@de . + +:n14003131 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Roth"@de . + +:n33307073 a skos:Concept ; + skos:broader :n33307 ; + skos:inScheme ; + skos:prefLabel "Stahlberg"@de . + +:n33703011 a skos:Concept ; + skos:broader :n33703 ; + skos:inScheme ; + skos:prefLabel "Böbingen"@de . + +:n138090540100 a skos:Concept ; + skos:broader :n13809054 ; + skos:inScheme ; + skos:prefLabel "Niederraden"@de . + +:n14003046 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Hasselbach"@de . + +:n315000000700 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Hechtsheim (Ortsbezirk)"@de . + +:n333040450102 a skos:Concept ; + skos:broader :n33304045 ; + skos:inScheme ; + skos:prefLabel "Elbisheimerhof"@de . + +:n23101133 a skos:Concept ; + skos:broader :n23101 ; + skos:inScheme ; + skos:prefLabel "Wintrich"@de . + +:n4064074n7 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Vulkaneifel"@de . + +:n340010020102 a skos:Concept ; + skos:broader :n34001002 ; + skos:inScheme ; + skos:prefLabel "Bärenbrunnermühle"@de . + +:n5 a skos:Concept ; + skos:inScheme ; + skos:prefLabel "Angrenzende Gebiete und länderübergreifende Regionen"@de . + +:n13310076 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Odernheim am Glan"@de . + +:n13704093 a skos:Concept ; + skos:broader :n13704 ; + skos:inScheme ; + skos:prefLabel "Rieden"@de . + +:n338000040100 a skos:Concept ; + skos:broader :n33800004 ; + skos:inScheme ; + skos:prefLabel "Bobenheim"@de . + +:n23208057 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Hütterscheid"@de . + +:n137092120100 a skos:Concept ; + skos:broader :n13709212 ; + skos:inScheme ; + skos:prefLabel "Dreckenach"@de . + +:n13802004 a skos:Concept ; + skos:broader :n13802 ; + skos:inScheme ; + skos:prefLabel "Bad Hönningen, Stadt"@de . + +:n332000020123 a skos:Concept ; + skos:broader :n33200002 ; + skos:inScheme ; + skos:prefLabel "Seebach (Ortsbezirk)"@de . + +:n33704068 a skos:Concept ; + skos:broader :n33704 ; + skos:inScheme ; + skos:prefLabel "Rohrbach"@de . + +:n14004109 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Niederweiler"@de . + +:n33304076 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Stetten"@de . + +:n235075010102 a skos:Concept ; + skos:broader :n23507501 ; + skos:inScheme ; + skos:prefLabel "Helenenberg"@de . + +:n13405079 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Schwerbach"@de . + +:n335100290102 a skos:Concept ; + skos:broader :n33510029 ; + skos:inScheme ; + skos:prefLabel "Karlshöhe"@de . + +:n33609054 a skos:Concept ; + skos:broader :n33609 ; + skos:inScheme ; + skos:prefLabel "Krottelbach"@de . + +:n340092190102 a skos:Concept ; + skos:broader :n34009219 ; + skos:inScheme ; + skos:prefLabel "Neumühle"@de . + +:n33807023 a skos:Concept ; + skos:broader :n33807 ; + skos:inScheme ; + skos:prefLabel "Römerberg"@de . + +:n14310003 a skos:Concept ; + skos:broader :n14310 ; + skos:inScheme ; + skos:prefLabel "Bannberscheid"@de . + +:n14109108 a skos:Concept ; + skos:broader :n14109 ; + skos:inScheme ; + skos:prefLabel "Osterspai"@de . + +:n143100600200 a skos:Concept ; + skos:broader :n14310060 ; + skos:inScheme ; + skos:prefLabel "Sainerholz"@de . + +:n339000300400 a skos:Concept ; + skos:broader :n33900030 ; + skos:inScheme ; + skos:prefLabel "Wackernheim"@de . + +:n14308304 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Wallmerod"@de . + +:n132090660100 a skos:Concept ; + skos:broader :n13209066 ; + skos:inScheme ; + skos:prefLabel "Hommelsberg"@de . + +:n23306026 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Gerolstein, Stadt"@de . + +:n13402070 a skos:Concept ; + skos:broader :n13402 ; + skos:inScheme ; + skos:prefLabel "Rimsberg"@de . + +:n336080850101 a skos:Concept ; + skos:broader :n33608085 ; + skos:inScheme ; + skos:prefLabel "Ausbacherhof"@de . + +:n33510009 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Frankelbach"@de . + +:n13310055 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Langenthal"@de . + +:n13701096 a skos:Concept ; + skos:broader :n13701 ; + skos:inScheme ; + skos:prefLabel "Saffig"@de . + +:n339080500103 a skos:Concept ; + skos:broader :n33908050 ; + skos:inScheme ; + skos:prefLabel "Wißberg"@de . + +:n232012600300 a skos:Concept ; + skos:broader :n23201260 ; + skos:inScheme ; + skos:prefLabel "Stalbach"@de . + +:n23208036 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Feilsdorf"@de . + +:n33707023 a skos:Concept ; + skos:broader :n33707 ; + skos:inScheme ; + skos:prefLabel "Essingen"@de . + +:n13503048 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Kliding"@de . + +:n23206208 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Buchet"@de . + +:n13309203 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Königsau"@de . + +:n143062180200 a skos:Concept ; + skos:broader :n14306218 ; + skos:inScheme ; + skos:prefLabel "Mittelhofen"@de . + +:n14107 a skos:Concept ; + skos:broader :n141 ; + skos:inScheme ; + skos:prefLabel "Nastätten, Verbandsgemeinde"@de . + +:n138010030316 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Niedermühlen"@de . + +:n143040650100 a skos:Concept ; + skos:broader :n14304065 ; + skos:inScheme ; + skos:prefLabel "Goldhausen"@de . + +:n23508028 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Freudenburg"@de . + +:n138010770103 a skos:Concept ; + skos:broader :n13801077 ; + skos:inScheme ; + skos:prefLabel "Günterscheid"@de . + +:n13104204 a skos:Concept ; + skos:broader :n13104 ; + skos:inScheme ; + skos:prefLabel "Galenberg"@de . + +:n23201 a skos:Concept ; + skos:broader :n232 ; + skos:inScheme ; + skos:prefLabel "Arzfeld, Verbandsgemeinde"@de . + +:n233062270104 a skos:Concept ; + skos:broader :n23306227 ; + skos:inScheme ; + skos:prefLabel "Hardt"@de . + +:n33404034 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Winden"@de . + +:n132070370120 a skos:Concept ; + skos:broader :n13207037 ; + skos:inScheme ; + skos:prefLabel "Heiligenborn"@de . + +:n23208100 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Olsdorf"@de . + +:n23108036 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Gipperath"@de . + +:n235030680400 a skos:Concept ; + skos:broader :n23503068 ; + skos:inScheme ; + skos:prefLabel "Kommlingen (Ortsbezirk 3)"@de . + +:n335020260205 a skos:Concept ; + skos:broader :n33502026 ; + skos:inScheme ; + skos:prefLabel "Neukirchen"@de . + +:n23306005 a skos:Concept ; + skos:broader :n23306 ; + skos:inScheme ; + skos:prefLabel "Berndorf"@de . + +:n14004146 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Sohrschied"@de . + +:n23208015 a skos:Concept ; + skos:broader :n23208 ; + skos:inScheme ; + skos:prefLabel "Biersdorf am See"@de . + +:n33106065 a skos:Concept ; + skos:broader :n33106 ; + skos:inScheme ; + skos:prefLabel "Vendersheim"@de . + +:n137092300101 a skos:Concept ; + skos:broader :n13709230 ; + skos:inScheme ; + skos:prefLabel "Distelbergerhof"@de . + +:n23108100 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Oberöfflingen"@de . + +:n13405037 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Hellertshausen"@de . + +:n33510046 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Sulzbachtal"@de . + +:n33404013 a skos:Concept ; + skos:broader :n33404 ; + skos:inScheme ; + skos:prefLabel "Kandel, Stadt"@de . + +:n13310092 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Schweinschied"@de . + +:n23205103 a skos:Concept ; + skos:broader :n23205 ; + skos:inScheme ; + skos:prefLabel "Peffingen"@de . + +:n340015010101 a skos:Concept ; + skos:broader :n34001501 ; + skos:inScheme ; + skos:prefLabel "Reinigshof"@de . + +:n14307029 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Herschbach"@de . + +:n13503085 a skos:Concept ; + skos:broader :n13503 ; + skos:inScheme ; + skos:prefLabel "Urschmitt"@de . + +:n137030070105 a skos:Concept ; + skos:broader :n13703007 ; + skos:inScheme ; + skos:prefLabel "Niederbaar"@de . + +:n339030190104 a skos:Concept ; + skos:broader :n33903019 ; + skos:inScheme ; + skos:prefLabel "Laurenziberg"@de . + +:n13405095 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Wirschweiler"@de . + +:n333070370102 a skos:Concept ; + skos:broader :n33307037 ; + skos:inScheme ; + skos:prefLabel "Obermittweilerhof"@de . + +:n133090460202 a skos:Concept ; + skos:broader :n13309046 ; + skos:inScheme ; + skos:prefLabel "St.Johannisberg"@de . + +:n134000450503 a skos:Concept ; + skos:broader :n13400045 ; + skos:inScheme ; + skos:prefLabel "Tiefenstein"@de . + +:n335080160200 a skos:Concept ; + skos:broader :n33508016 ; + skos:inScheme ; + skos:prefLabel "Katzenbach"@de . + +:n33304013 a skos:Concept ; + skos:broader :n33304 ; + skos:inScheme ; + skos:prefLabel "Dannenfels"@de . + +:n23504090 a skos:Concept ; + skos:broader :n23504 ; + skos:inScheme ; + skos:prefLabel "Morscheid"@de . + +:n235080620100 a skos:Concept ; + skos:broader :n23508062 ; + skos:inScheme ; + skos:prefLabel "Beuren/Saargau (Ortsbezirk)"@de . + +:n13103014 a skos:Concept ; + skos:broader :n13103 ; + skos:inScheme ; + skos:prefLabel "Brohl-Lützing"@de . + +:n132101030101 a skos:Concept ; + skos:broader :n13210103 ; + skos:inScheme ; + skos:prefLabel "Bettgenhausen"@de . + +:n34008218 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Mauschbach"@de . + +:n23201259 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Leidenborn"@de . + +:n211000001404 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Trimmelterhof"@de . + +:n135010170200 a skos:Concept ; + skos:broader :n13501017 ; + skos:inScheme ; + skos:prefLabel "Fankel"@de . + +:n33510025 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Mehlbach"@de . + +:n14008158 a skos:Concept ; + skos:broader :n14008 ; + skos:inScheme ; + skos:prefLabel "Wahlbach"@de . + +:n335110470121 a skos:Concept ; + skos:broader :n33511047 ; + skos:inScheme ; + skos:prefLabel "Wilensteinerhof"@de . + +:n23501035 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Grimburg"@de . + +:n131020490103 a skos:Concept ; + skos:broader :n13102049 ; + skos:inScheme ; + skos:prefLabel "Laach"@de . + +:n23206224 a skos:Concept ; + skos:broader :n23206 ; + skos:inScheme ; + skos:prefLabel "Giesdorf"@de . + +:n312000001601 a skos:Concept ; + skos:broader :n31200000 ; + skos:inScheme ; + skos:prefLabel "Entersweilerhof"@de . + +:n340090350103 a skos:Concept ; + skos:broader :n34009035 ; + skos:inScheme ; + skos:prefLabel "Dusenbrücken"@de . + +:n313000000400 a skos:Concept ; + skos:broader :n31300000 ; + skos:inScheme ; + skos:prefLabel "Mörlheim (Ortsbezirk)"@de . + +:n14003503 a skos:Concept ; + skos:broader :n14003 ; + skos:inScheme ; + skos:prefLabel "Mörsdorf"@de . + +:n34006050 a skos:Concept ; + skos:broader :n34006 ; + skos:inScheme ; + skos:prefLabel "Steinalben"@de . + +:n33103047 a skos:Concept ; + skos:broader :n33103 ; + skos:inScheme ; + skos:prefLabel "Mörstadt"@de . + +:n232050470104 a skos:Concept ; + skos:broader :n23205047 ; + skos:inScheme ; + skos:prefLabel "Windhausen"@de . + +:n131020110107 a skos:Concept ; + skos:broader :n13102011 ; + skos:inScheme ; + skos:prefLabel "Vischel"@de . + +:n23501093 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Neuhütten"@de . + +:n231090040201 a skos:Concept ; + skos:broader :n23109004 ; + skos:inScheme ; + skos:prefLabel "Heinzerathermühle"@de . + +:n235081180200 a skos:Concept ; + skos:broader :n23508118 ; + skos:inScheme ; + skos:prefLabel "Krutweiler (Ortsbezirk)"@de . + +:n34008 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Zweibrücken-Land, Verbandsgemeinde"@de . + +:n132060960106 a skos:Concept ; + skos:broader :n13206096 ; + skos:inScheme ; + skos:prefLabel "Thal"@de . + +:n14110201 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Arzbach"@de . + +:n14307066 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Schenkelberg"@de . + +:n131020390103 a skos:Concept ; + skos:broader :n13102039 ; + skos:inScheme ; + skos:prefLabel "Weidenbach"@de . + +:n13310050 a skos:Concept ; + skos:broader :n13310 ; + skos:inScheme ; + skos:prefLabel "Ippenschied"@de . + +:n23501014 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Damflos"@de . + +:n333070650103 a skos:Concept ; + skos:broader :n33307065 ; + skos:inScheme ; + skos:prefLabel "Schwarzengraben"@de . + +:n31700000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Pirmasens, Kreisfreie Stadt"@de . + +:n235041240101 a skos:Concept ; + skos:broader :n23504124 ; + skos:inScheme ; + skos:prefLabel "Lonzenburg"@de . + +:n340030520101 a skos:Concept ; + skos:broader :n34003052 ; + skos:inScheme ; + skos:prefLabel "Felsenbrunnerhof (Ortsbezirk)"@de . + +:n132100530103 a skos:Concept ; + skos:broader :n13210053 ; + skos:inScheme ; + skos:prefLabel "Hirzbach"@de . + +:n132100670101 a skos:Concept ; + skos:broader :n13210067 ; + skos:inScheme ; + skos:prefLabel "Hüttenhofen"@de . + +:n34003053 a skos:Concept ; + skos:broader :n34003 ; + skos:inScheme ; + skos:prefLabel "Vinningen"@de . + +:n143012790100 a skos:Concept ; + skos:broader :n14301279 ; + skos:inScheme ; + skos:prefLabel "Büdingen"@de . + +:n13501 a skos:Concept ; + skos:broader :n135 ; + skos:inScheme ; + skos:prefLabel "Cochem, Verbandsgemeinde"@de . + +:n23108031 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Esch"@de . + +:n33405028 a skos:Concept ; + skos:broader :n33405 ; + skos:inScheme ; + skos:prefLabel "Schwegenheim"@de . + +:n333040390107 a skos:Concept ; + skos:broader :n33304039 ; + skos:inScheme ; + skos:prefLabel "Haide"@de . + +:n31600000 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Neustadt an der Weinstraße, Kreisfreie Stadt"@de . + +:n13309113 a skos:Concept ; + skos:broader :n13309 ; + skos:inScheme ; + skos:prefLabel "Weitersborn"@de . + +:n14307045 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Maroth"@de . + +:n4827033n7 a skos:Concept ; + skos:broader :n10 ; + skos:inScheme ; + skos:prefLabel "Wildenburgisches Land"@de . + +:n14004141 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Schwarzen"@de . + +:n134020420106 a skos:Concept ; + skos:broader :n13402042 ; + skos:inScheme ; + skos:prefLabel "Neubrücke"@de . + +:n23106203 a skos:Concept ; + skos:broader :n23106 ; + skos:inScheme ; + skos:prefLabel "Büdlich"@de . + +:n13207063 a skos:Concept ; + skos:broader :n13207 ; + skos:inScheme ; + skos:prefLabel "Kirchen (Sieg), Stadt"@de . + +:n211000001903 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Markusberg"@de . + +:n23508081 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Mandern"@de . + +:n340 a skos:Concept ; + skos:broader :n6 ; + skos:inScheme ; + skos:prefLabel "Südwestpfalz, Landkreis"@de . + +:n132090060200 a skos:Concept ; + skos:broader :n13209006 ; + skos:inScheme ; + skos:prefLabel "Dauersberg (Dauersberg)"@de . + +:n13405032 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Griebelschied"@de . + +:n33207038 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Neuleiningen"@de . + +:n33510041 a skos:Concept ; + skos:broader :n33510 ; + skos:inScheme ; + skos:prefLabel "Schallodenbach"@de . + +:n131040540101 a skos:Concept ; + skos:broader :n13104054 ; + skos:inScheme ; + skos:prefLabel "Hain"@de . + +:n23508002 a skos:Concept ; + skos:broader :n23508 ; + skos:inScheme ; + skos:prefLabel "Ayl"@de . + +:n23108010 a skos:Concept ; + skos:broader :n23108 ; + skos:inScheme ; + skos:prefLabel "Binsfeld"@de . + +:n14308251 a skos:Concept ; + skos:broader :n14308 ; + skos:inScheme ; + skos:prefLabel "Kuhnhöfen"@de . + +:n14302299 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Streithausen"@de . + +:n23304230 a skos:Concept ; + skos:broader :n23304 ; + skos:inScheme ; + skos:prefLabel "Oberelz"@de . + +:n14304048 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Montabaur, Stadt"@de . + +:n14004120 a skos:Concept ; + skos:broader :n14004 ; + skos:inScheme ; + skos:prefLabel "Raversbeuren"@de . + +:n333065030202 a skos:Concept ; + skos:broader :n33306503 ; + skos:inScheme ; + skos:prefLabel "Kahlheckerhof"@de . + +:n138010030205 a skos:Concept ; + skos:broader :n13801003 ; + skos:inScheme ; + skos:prefLabel "Löhe"@de . + +:n13702048 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Kerben"@de . + +:n13405090 a skos:Concept ; + skos:broader :n13405 ; + skos:inScheme ; + skos:prefLabel "Vollmersbach"@de . + +:n138090760106 a skos:Concept ; + skos:broader :n13809076 ; + skos:inScheme ; + skos:prefLabel "Over"@de . + +:n235041070103 a skos:Concept ; + skos:broader :n23504107 ; + skos:inScheme ; + skos:prefLabel "Pluwigerhammer"@de . + +:n211000002000 a skos:Concept ; + skos:broader :n21100000 ; + skos:inScheme ; + skos:prefLabel "Zewen (T.a. Ortsbezirk 10)"@de . + +:n33701024 a skos:Concept ; + skos:broader :n33701 ; + skos:inScheme ; + skos:prefLabel "Eußerthal"@de . + +:n141100820102 a skos:Concept ; + skos:broader :n14110082 ; + skos:inScheme ; + skos:prefLabel "Waldschmidtmühle"@de . + +:n143040200101 a skos:Concept ; + skos:broader :n14304020 ; + skos:inScheme ; + skos:prefLabel "Dies"@de . + +:n14309314 a skos:Concept ; + skos:broader :n14309 ; + skos:inScheme ; + skos:prefLabel "Winnen"@de . + +:n23201254 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Lambertsberg"@de . + +:n23109067 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Kinderbeuern"@de . + +:n34008213 a skos:Concept ; + skos:broader :n34008 ; + skos:inScheme ; + skos:prefLabel "Kleinbundenbach"@de . + +:n337020490103 a skos:Concept ; + skos:broader :n33702049 ; + skos:inScheme ; + skos:prefLabel "Klingbachhof"@de . + +:n33906 a skos:Concept ; + skos:broader :n339 ; + skos:inScheme ; + skos:prefLabel "Nieder-Olm, Verbandsgemeinde"@de . + +:n131000900802 a skos:Concept ; + skos:broader :n13100090 ; + skos:inScheme ; + skos:prefLabel "Niederich"@de . + +:n23501030 a skos:Concept ; + skos:broader :n23501 ; + skos:inScheme ; + skos:prefLabel "Geisfeld"@de . + +:n13702112 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Welling"@de . + +:n13306089 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Schloßböckelheim"@de . + +:n235080280104 a skos:Concept ; + skos:broader :n23508028 ; + skos:inScheme ; + skos:prefLabel "Kollesleuken"@de . + +:n14304027 a skos:Concept ; + skos:broader :n14304 ; + skos:inScheme ; + skos:prefLabel "Heiligenroth"@de . + +:n14110132 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Sulzbach"@de . + +:n13210099 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Schöneberg"@de . + +:n13208105 a skos:Concept ; + skos:broader :n13208 ; + skos:inScheme ; + skos:prefLabel "Selbach (Sieg)"@de . + +:n13707229 a skos:Concept ; + skos:broader :n13707 ; + skos:inScheme ; + skos:prefLabel "Weitersburg"@de . + +:n13702027 a skos:Concept ; + skos:broader :n13702 ; + skos:inScheme ; + skos:prefLabel "Gappenach"@de . + +:n232050330101 a skos:Concept ; + skos:broader :n23205033 ; + skos:inScheme ; + skos:prefLabel "Ernzerhof"@de . + +:n13809036 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Kurtscheid"@de . + +:n231090680101 a skos:Concept ; + skos:broader :n23109068 ; + skos:inScheme ; + skos:prefLabel "Kindel"@de . + +:n131020110102 a skos:Concept ; + skos:broader :n13102011 ; + skos:inScheme ; + skos:prefLabel "Freisheim"@de . + +:n23201233 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Hargarten"@de . + +:n133010320102 a skos:Concept ; + skos:broader :n13301032 ; + skos:inScheme ; + skos:prefLabel "Hof Iben"@de . + +:n132060960101 a skos:Concept ; + skos:broader :n13206096 ; + skos:inScheme ; + skos:prefLabel "Hämmerholz"@de . + +:n137030350101 a skos:Concept ; + skos:broader :n13703035 ; + skos:inScheme ; + skos:prefLabel "Döttingen"@de . + +:n34003 a skos:Concept ; + skos:broader :n340 ; + skos:inScheme ; + skos:prefLabel "Pirmasens-Land, Verbandsgemeinde"@de . + +:n14307061 a skos:Concept ; + skos:broader :n14307 ; + skos:inScheme ; + skos:prefLabel "Quirnbach"@de . + +:n231001340100 a skos:Concept ; + skos:broader :n23100134 ; + skos:inScheme ; + skos:prefLabel "Bombogen (Ortsbezirk)"@de . + +:n340030280105 a skos:Concept ; + skos:broader :n34003028 ; + skos:inScheme ; + skos:prefLabel "Kettrichhof (Ortsbezirk)"@de . + +:n33402 a skos:Concept ; + skos:broader :n334 ; + skos:inScheme ; + skos:prefLabel "Hagenbach, Verbandsgemeinde"@de . + +:n14302257 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Limbach"@de . + +:n49 a skos:Concept ; + skos:broader :n4 ; + skos:inScheme ; + skos:prefLabel "Kleinere Territorien und Teile auswärtiger Territorien -1800"@de . + +:n33907059 a skos:Concept ; + skos:broader :n33907 ; + skos:inScheme ; + skos:prefLabel "Uelversheim"@de . + +:n14110111 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Pohl"@de . + +:n335100350119 a skos:Concept ; + skos:broader :n33510035 ; + skos:inScheme ; + skos:prefLabel "Weinbrunnerhof"@de . + +:n13306068 a skos:Concept ; + skos:broader :n13306 ; + skos:inScheme ; + skos:prefLabel "Münchwald"@de . + +:n315000001100 a skos:Concept ; + skos:broader :n31500000 ; + skos:inScheme ; + skos:prefLabel "Mombach (Ortsbezirk)"@de . + +:n137000030502 a skos:Concept ; + skos:broader :n13700003 ; + skos:inScheme ; + skos:prefLabel "Fornich"@de . + +:n311000000401 a skos:Concept ; + skos:broader :n31100000 ; + skos:inScheme ; + skos:prefLabel "Petersau"@de . + +:n235080020200 a skos:Concept ; + skos:broader :n23508002 ; + skos:inScheme ; + skos:prefLabel "Biebelhausen"@de . + +:n13100070 a skos:Concept ; + skos:broader :n131 ; + skos:inScheme ; + skos:prefLabel "Remagen, Stadt"@de . + +:n13210078 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Niedersteinebach"@de . + +:n334005010200 a skos:Concept ; + skos:broader :n33400501 ; + skos:inScheme ; + skos:prefLabel "Maximiliansau (Ortsbezirk)"@de . + +:n335112040101 a skos:Concept ; + skos:broader :n33511204 ; + skos:inScheme ; + skos:prefLabel "Finsterbrunnertal"@de . + +:n13101069 a skos:Concept ; + skos:broader :n13101 ; + skos:inScheme ; + skos:prefLabel "Reifferscheid"@de . + +:n23109110 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Reil"@de . + +:n13809015 a skos:Concept ; + skos:broader :n13809 ; + skos:inScheme ; + skos:prefLabel "Ehlscheid"@de . + +:n23201291 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Pintesfeld"@de . + +:n14110026 a skos:Concept ; + skos:broader :n14110 ; + skos:inScheme ; + skos:prefLabel "Dessighofen"@de . + +:n233060760200 a skos:Concept ; + skos:broader :n23306076 ; + skos:inScheme ; + skos:prefLabel "Leudersdorf (Ortsbezirk)"@de . + +:n231010080300 a skos:Concept ; + skos:broader :n23101008 ; + skos:inScheme ; + skos:prefLabel "Kues"@de . + +:n336081050101 a skos:Concept ; + skos:broader :n33608105 ; + skos:inScheme ; + skos:prefLabel "Immetshausen"@de . + +:n23201212 a skos:Concept ; + skos:broader :n23201 ; + skos:inScheme ; + skos:prefLabel "Dahnen"@de . + +:n28 a skos:Concept ; + skos:broader :n2 ; + skos:inScheme ; + skos:prefLabel "Ahrtal"@de . + +:n138010440306 a skos:Concept ; + skos:broader :n13801044 ; + skos:inScheme ; + skos:prefLabel "Panau"@de . + +:n14302236 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Heimborn"@de . + +:n13809 a skos:Concept ; + skos:broader :n138 ; + skos:inScheme ; + skos:prefLabel "Rengsdorf-Waldbreitbach, Verbandsgemeinde"@de . + +:n23504 a skos:Concept ; + skos:broader :n235 ; + skos:inScheme ; + skos:prefLabel "Ruwer, Verbandsgemeinde"@de . + +:n13210057 a skos:Concept ; + skos:broader :n13210 ; + skos:inScheme ; + skos:prefLabel "Ingelbach"@de . + +:n4439822n0 a skos:Concept ; + skos:broader :n20 ; + skos:inScheme ; + skos:prefLabel "Kondelwald"@de . + +:n317000000302 a skos:Concept ; + skos:broader :n31700000 ; + skos:inScheme ; + skos:prefLabel "Eichelsbachermühle"@de . + +:n34009228 a skos:Concept ; + skos:broader :n34009 ; + skos:inScheme ; + skos:prefLabel "Winterbach (Pfalz)"@de . + +:n232062960500 a skos:Concept ; + skos:broader :n23206296 ; + skos:inScheme ; + skos:prefLabel "Weinsfeld"@de . + +:n33207033 a skos:Concept ; + skos:broader :n33207 ; + skos:inScheme ; + skos:prefLabel "Laumersheim"@de . + +:n138040680200 a skos:Concept ; + skos:broader :n13804068 ; + skos:inScheme ; + skos:prefLabel "Lorscheid"@de . + +:n137020480101 a skos:Concept ; + skos:broader :n13702048 ; + skos:inScheme ; + skos:prefLabel "Minkelfeld"@de . + +:n23109004 a skos:Concept ; + skos:broader :n23109 ; + skos:inScheme ; + skos:prefLabel "Bausendorf"@de . + +:n14302294 a skos:Concept ; + skos:broader :n14302 ; + skos:inScheme ; + skos:prefLabel "Steinebach an der Wied"@de . diff --git a/conf/hebisMarc2lobid-transformation/maps/rpb.ttl b/conf/hebisMarc2lobid-transformation/maps/rpb.ttl new file mode 100644 index 0000000..6f2a6db --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/rpb.ttl @@ -0,0 +1,6820 @@ +@prefix rdf: . +@prefix dct: . +@prefix skos: . +@prefix vann: . + + + a skos:ConceptScheme ; + dct:title "Systematik der Rheinland-Pfälzischen Bibliographie"@de , "Classification scheme for the bibliography of Rhineland-Palatinate"@en ; + dct:license ; + dct:description "This classification was created for use in the bibliography of . The transformation to SKOS was carried out by Felix Ostrowski for the hbz." ; + dct:issued "2014-01-28" ; + dct:publisher ; + vann:preferredNamespaceUri "http://purl.org/lobid/rpb#" ; + vann:preferredNamespacePrefix "rpb" ; + skos:hasTopConcept , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , . + + + a skos:Concept ; + skos:narrower , , , , , ; + skos:notation "rpb100000" ; + skos:prefLabel "Landeskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb100100" ; + skos:prefLabel "Landeskunde allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb101000" ; + skos:prefLabel "Bibliografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb102000" ; + skos:prefLabel "Landesbeschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102040" ; + skos:prefLabel "Kreisbeschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102042" ; + skos:prefLabel "Verbandsgemeindebeschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102045" ; + skos:prefLabel "Regionenbeschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102050" ; + skos:prefLabel "Ortsbeschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102060" ; + skos:prefLabel "Reisebericht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb102070" ; + skos:prefLabel "Wandern / Führer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb105000" ; + skos:prefLabel "Heimatpflege"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb106000" ; + skos:prefLabel "Heimatverein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb109000" ; + skos:prefLabel "Biografie"@de . + + + a skos:Concept ; + skos:narrower , , , ; + skos:notation "rpb120000" ; + skos:prefLabel "Kartografie. Geodäsie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb120100" ; + skos:prefLabel "Kartografie. Geodäsie allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb122000" ; + skos:prefLabel "Kartografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb122030" ; + skos:prefLabel "Kartenauswertung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb122050" ; + skos:prefLabel "Computerkartografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb122070" ; + skos:prefLabel "Luftbildauswertung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb124000" ; + skos:prefLabel "Geodäsie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb126000" ; + skos:prefLabel "Karte"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb140000" ; + skos:prefLabel "Geowissenschaften"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb140100" ; + skos:prefLabel "Geowissenschaften allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb141000" ; + skos:prefLabel "Geophysik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141020" ; + skos:prefLabel "Erdmagnetismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141030" ; + skos:prefLabel "Schwere"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141040" ; + skos:prefLabel "Erdbeben"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb141200" ; + skos:prefLabel "Geologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141220" ; + skos:prefLabel "Tektonik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141230" ; + skos:prefLabel "Ingenieurgeologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141240" ; + skos:prefLabel "Stratigraphie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb141400" ; + skos:prefLabel "Mineralogie. Gesteinskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141420" ; + skos:prefLabel "Mineralogie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141430" ; + skos:prefLabel "Gesteinskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141440" ; + skos:prefLabel "Geochemie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141450" ; + skos:prefLabel "Lagerstättenkunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141460" ; + skos:prefLabel "Mineralquelle. Thermalquelle"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb141600" ; + skos:prefLabel "Paläontologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb141620" ; + skos:prefLabel "Paläobotanik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141622" ; + skos:prefLabel "Fossile Sporenpflanzen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141624" ; + skos:prefLabel "Fossile Samenpflanzen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb141630" ; + skos:prefLabel "Paläozoologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141632" ; + skos:prefLabel "Fossile Wirbellose"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141634" ; + skos:prefLabel "Fossile Wirbeltiere"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb141640" ; + skos:prefLabel "Mikropaläontologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb142000" ; + skos:prefLabel "Bodenkunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142020" ; + skos:prefLabel "Bodenentwicklung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142030" ; + skos:prefLabel "Bodenphysik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142040" ; + skos:prefLabel "Bodenbiologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142050" ; + skos:prefLabel "Bodenmechanik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142060" ; + skos:prefLabel "Bodenchemie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb142100" ; + skos:prefLabel "Geomorphologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142110" ; + skos:prefLabel "Relief / Geografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142120" ; + skos:prefLabel "Abtragung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142130" ; + skos:prefLabel "Klimamorphologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142140" ; + skos:prefLabel "Glazialmorphologie. Periglazialgeomorphologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142150" ; + skos:prefLabel "Vulkanismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142170" ; + skos:prefLabel "Karst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142180" ; + skos:prefLabel "Höhle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142190" ; + skos:prefLabel "Angewandte Geomorphologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , ; + skos:notation "rpb142300" ; + skos:prefLabel "Wasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142310" ; + skos:prefLabel "Wasserrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb142320" ; + skos:prefLabel "Fließgewässer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142323" ; + skos:prefLabel "Hochwasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142325" ; + skos:prefLabel "Niedrigwasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142330" ; + skos:prefLabel "See"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142340" ; + skos:prefLabel "Moor"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb142350" ; + skos:prefLabel "Hydrogeologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142352" ; + skos:prefLabel "Bodenwasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142360" ; + skos:prefLabel "Wasserhaushalt"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb142370" ; + skos:prefLabel "Wasserwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142372" ; + skos:prefLabel "Trinkwasserversorgung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142375" ; + skos:prefLabel "Brauchwasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb142380" ; + skos:prefLabel "Hydroökologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142382" ; + skos:prefLabel "Wasseranalyse"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142390" ; + skos:prefLabel "Wasserstatistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb142500" ; + skos:prefLabel "Klima"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb142520" ; + skos:prefLabel "Klimaelement"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142522" ; + skos:prefLabel "Sonnenstrahlung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142523" ; + skos:prefLabel "Lufttemperatur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142524" ; + skos:prefLabel "Luftfeuchtigkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142525" ; + skos:prefLabel "Luftdruck"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142526" ; + skos:prefLabel "Luftbewegung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142527" ; + skos:prefLabel "Luftelektrizität"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142530" ; + skos:prefLabel "Klimatologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142540" ; + skos:prefLabel "Wetterdienst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142541" ; + skos:prefLabel "Wetterlage"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142550" ; + skos:prefLabel "Klimafaktor"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142560" ; + skos:prefLabel "Klimaschwankung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb142570" ; + skos:prefLabel "Paläoklimatologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb146000" ; + skos:prefLabel "Geoökologie"@de . + + + a skos:Concept ; + skos:narrower , , , , ; + skos:notation "rpb160000" ; + skos:prefLabel "Biowissenschaften"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb160100" ; + skos:prefLabel "Biowissenschaften allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb161000" ; + skos:prefLabel "Biologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb161030" ; + skos:prefLabel "Ökologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb161040" ; + skos:prefLabel "Biozönose"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb161050" ; + skos:prefLabel "Mikrobiologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb162000" ; + skos:prefLabel "Pflanzen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb162030" ; + skos:prefLabel "Kryptogamen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb162040" ; + skos:prefLabel "Samenpflanzen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb163000" ; + skos:prefLabel "Tiere"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163020" ; + skos:prefLabel "Wirbellose"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163030" ; + skos:prefLabel "Insekten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163040" ; + skos:prefLabel "Wirbeltiere"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163050" ; + skos:prefLabel "Fische"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163060" ; + skos:prefLabel "Lurche"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163070" ; + skos:prefLabel "Reptilien"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163080" ; + skos:prefLabel "Vögel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb163090" ; + skos:prefLabel "Säugetiere"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb164000" ; + skos:prefLabel "Humanbiologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb164020" ; + skos:prefLabel "Menschenrasse"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb164030" ; + skos:prefLabel "Skelettfund"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb164040" ; + skos:prefLabel "Paläoanthropologie"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , ; + skos:notation "rpb200000" ; + skos:prefLabel "Historische Hilfswissenschaften"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb200100" ; + skos:prefLabel "Historische Hilfswissenschaften allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb202000" ; + skos:prefLabel "Chronologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb202500" ; + skos:prefLabel "Metrologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb203000" ; + skos:prefLabel "Urkundenlehre"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb203500" ; + skos:prefLabel "Paläografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb204000" ; + skos:prefLabel "Siegelkunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb205000" ; + skos:prefLabel "Numismatik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb205020" ; + skos:prefLabel "Münze"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb205030" ; + skos:prefLabel "Papiergeld"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb206000" ; + skos:prefLabel "Epigraphik"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb207000" ; + skos:prefLabel "Genealogie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb207020" ; + skos:prefLabel "Familie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb208000" ; + skos:prefLabel "Heraldik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb208500" ; + skos:prefLabel "Flagge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb209000" ; + skos:prefLabel "Orden / Ehrenzeichen"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb210000" ; + skos:prefLabel "Archiv. Museum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb210100" ; + skos:prefLabel "Archiv. Museum allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb213000" ; + skos:prefLabel "Archiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213010" ; + skos:prefLabel "Bundesarchiv Koblenz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213020" ; + skos:prefLabel "Staatsarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb213030" ; + skos:prefLabel "Kreisarchiv. Gemeindearchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213031" ; + skos:prefLabel "Kreisarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213033" ; + skos:prefLabel "Gemeindearchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213040" ; + skos:prefLabel "Kirchenarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb213050" ; + skos:prefLabel "Archiv für Literatur, Kunst und Wissenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213052" ; + skos:prefLabel "Literaturarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213053" ; + skos:prefLabel "Kunstarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213054" ; + skos:prefLabel "Wissenschaftsarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213060" ; + skos:prefLabel "Parteiarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb213070" ; + skos:prefLabel "Medienarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213072" ; + skos:prefLabel "Rundfunkarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213073" ; + skos:prefLabel "Pressearchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213074" ; + skos:prefLabel "Filmarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb213080" ; + skos:prefLabel "Wirtschaftsarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213082" ; + skos:prefLabel "Firmenarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213090" ; + skos:prefLabel "Familienarchiv"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb213092" ; + skos:prefLabel "Sonstige Archive"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb217000" ; + skos:prefLabel "Museum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217010" ; + skos:prefLabel "Museumspädagogik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217020" ; + skos:prefLabel "Naturkundemuseum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217030" ; + skos:prefLabel "Technisches Museum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217040" ; + skos:prefLabel "Historisches Museum. Heimatmuseum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217050" ; + skos:prefLabel "Volkskundemuseum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb217090" ; + skos:prefLabel "Sonstige Museen"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb220000" ; + skos:prefLabel "Vor- und Frühgeschichte. Archäologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb220100" ; + skos:prefLabel "Vor- und Frühgeschichte. Archäologie allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb220500" ; + skos:prefLabel "Archäologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb221000" ; + skos:prefLabel "Vor- und Frühgeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb222000" ; + skos:prefLabel "Paläolithikum. Mesolithikum"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb223000" ; + skos:prefLabel "Neolithikum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223020" ; + skos:prefLabel "Bandkeramik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223030" ; + skos:prefLabel "Rössener Kultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223040" ; + skos:prefLabel "Michelsberger Kultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223050" ; + skos:prefLabel "Megalithkultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223060" ; + skos:prefLabel "Schnurkeramik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb223070" ; + skos:prefLabel "Glockenbecherkultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb224000" ; + skos:prefLabel "Bronzezeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb224050" ; + skos:prefLabel "Hügelgräberkultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb224060" ; + skos:prefLabel "Urnenfelderkultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb225000" ; + skos:prefLabel "Vorrömische Eisenzeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb225020" ; + skos:prefLabel "Hallstattkultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb225025" ; + skos:prefLabel "Hunsrück-Eifel-Kultur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb225030" ; + skos:prefLabel "Latène-Zeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb225040" ; + skos:prefLabel "Kelten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb225050" ; + skos:prefLabel "Germanen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb226000" ; + skos:prefLabel "Römerzeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb226020" ; + skos:prefLabel "Kelten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb226030" ; + skos:prefLabel "Römer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb226040" ; + skos:prefLabel "Germanen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb226050" ; + skos:prefLabel "Franken "@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb227000" ; + skos:prefLabel "Völkerwanderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb227020" ; + skos:prefLabel "Römer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb227030" ; + skos:prefLabel "Germanen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb227040" ; + skos:prefLabel "Franken "@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb228000" ; + skos:prefLabel "Mittelalterliche Archäologie. Neuzeitliche Archäologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb228020" ; + skos:prefLabel "Bestattung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb228030" ; + skos:prefLabel "Funde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb228080" ; + skos:prefLabel "Industriearchäologie"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ; + skos:notation "rpb240000" ; + skos:prefLabel "Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240100" ; + skos:prefLabel "Quelle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240200" ; + skos:prefLabel "Geschichtsschreibung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240300" ; + skos:prefLabel "Regionalgeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240350" ; + skos:prefLabel "Verbandsgemeindegeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240400" ; + skos:prefLabel "Ortsgeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240500" ; + skos:prefLabel "Historische Ausstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb240600" ; + skos:prefLabel "Gedenkstätte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb241050" ; + skos:prefLabel "Rheinland-Pfalz (gesamt) / Geschichte Anfänge-1945"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb241100" ; + skos:prefLabel "Rheinland / Geschichte Anfänge-1945"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb241200" ; + skos:prefLabel "Pfalz / Geschichte Anfänge-1945"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb241400" ; + skos:prefLabel "Rheinhessen / Geschichte Anfänge-1945"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242100" ; + skos:prefLabel "Kurpfalz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242200" ; + skos:prefLabel "Hochstift Trier"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242300" ; + skos:prefLabel "Hochstift Mainz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242500" ; + skos:prefLabel "Hochstift Speyer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242600" ; + skos:prefLabel "Hochstift Worms"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb242700" ; + skos:prefLabel "Reichsterritorium. Reichsbeziehung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242720" ; + skos:prefLabel "Reichstag"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242730" ; + skos:prefLabel "Reichsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb242740" ; + skos:prefLabel "Reichsgut"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242743" ; + skos:prefLabel "Königshof"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242744" ; + skos:prefLabel "Königspfalz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242746" ; + skos:prefLabel "Reichsabtei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242747" ; + skos:prefLabel "Reichsstadt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242760" ; + skos:prefLabel "Reichsritterschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , , , , , , , , , , ; + skos:notation "rpb242800" ; + skos:prefLabel "Kleinere Territorien und Teile auswärtiger Territorien"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242810" ; + skos:prefLabel "Luxemburg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242812" ; + skos:prefLabel "Hochstift Köln"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242814" ; + skos:prefLabel "Grafschaft Homburg, Saar"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242816" ; + skos:prefLabel "Grafschaft Saarbrücken"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242818" ; + skos:prefLabel "Staat Leiningen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242830" ; + skos:prefLabel "Grafschaft Virneburg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242832" ; + skos:prefLabel "Grafschaft Manderscheid"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242834" ; + skos:prefLabel "Herzogtum Arenberg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242836" ; + skos:prefLabel "Fürstentum Löwenstein-Wertheim"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242850" ; + skos:prefLabel "Grafschaft Wied"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242852" ; + skos:prefLabel "Fürstentum Isenburg. Grafschaft Isenburg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242854" ; + skos:prefLabel "Grafschaft Sayn"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242856" ; + skos:prefLabel "Grafschaft Katzenelnbogen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242870" ; + skos:prefLabel "Grafschaft Veldenz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242872" ; + skos:prefLabel "Grafschaft Sponheim"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242874" ; + skos:prefLabel "Wild- und Rheingrafen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242876" ; + skos:prefLabel "Pfalz-Simmern"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb242878" ; + skos:prefLabel "Hanau-Lichtenberg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb243100" ; + skos:prefLabel "Pfalz-Zweibrücken"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb243400" ; + skos:prefLabel "Staat Nassau"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb245100" ; + skos:prefLabel "Französische Besetzung / 1792-1815"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245120" ; + skos:prefLabel "Mainzer Republik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245130" ; + skos:prefLabel "Wälderdepartement"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245140" ; + skos:prefLabel "Rhein-Mosel-Département"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245160" ; + skos:prefLabel "Département Donnersberg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245180" ; + skos:prefLabel "Saardepartement"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb245300" ; + skos:prefLabel "Rheinbund / 1806-1813"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246100" ; + skos:prefLabel "Rheinprovinz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246200" ; + skos:prefLabel "Hessen-Darmstadt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246300" ; + skos:prefLabel "Hessen-Nassau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246500" ; + skos:prefLabel "Bayerische Pfalz"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb246700" ; + skos:prefLabel "Kleinere Territorien des 19. Jahrhunderts"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246720" ; + skos:prefLabel "Fürstentum Birkenfeld"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246740" ; + skos:prefLabel "Fürstentum Lichtenberg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb246760" ; + skos:prefLabel "Oberamt Meisenheim"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb248000" ; + skos:prefLabel "Rheinland-Pfalz / Geschichte 1945-1947"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb248100" ; + skos:prefLabel "Rheinland / Geschichte 1945-"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb248300" ; + skos:prefLabel "Rheinhessen / Geschichte 1945-"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb248500" ; + skos:prefLabel "Pfalz / Geschichte 1945-"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb249100" ; + skos:prefLabel "Rheinland-Pfalz / Geschichte 1947-"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb260000" ; + skos:prefLabel "Militär- und Wehrwesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb260100" ; + skos:prefLabel "Militär- und Wehrwesen allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb262000" ; + skos:prefLabel "Militär"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb262010" ; + skos:prefLabel "Militärbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262011" ; + skos:prefLabel "Burg"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262012" ; + skos:prefLabel "Festung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262014" ; + skos:prefLabel "Schanze"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262016" ; + skos:prefLabel "Standort"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb262020" ; + skos:prefLabel "Militär / Ausrüstung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262022" ; + skos:prefLabel "Kriegswaffe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262023" ; + skos:prefLabel "Rüstung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262024" ; + skos:prefLabel "Uniform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262025" ; + skos:prefLabel "Feldzeichen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb262026" ; + skos:prefLabel "Orden / Ehrenzeichen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb263000" ; + skos:prefLabel "Wehrwesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263010" ; + skos:prefLabel "Bürgerwehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263020" ; + skos:prefLabel "Militär / Geschichte Anfänge-1918"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263030" ; + skos:prefLabel "Deutschland / Reichswehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263040" ; + skos:prefLabel "Deutschland / Wehrmacht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263050" ; + skos:prefLabel "Ausländisches Militär"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263060" ; + skos:prefLabel "Deutschland / Bundeswehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb263090" ; + skos:prefLabel "Soldat"@de . + + + a skos:Concept ; + skos:narrower , , , , , ; + skos:notation "rpb400000" ; + skos:prefLabel "Staat. Politik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb400100" ; + skos:prefLabel "Staat. Politik allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb402000" ; + skos:prefLabel "Staatsgrundlage"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402020" ; + skos:prefLabel "Staatsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402030" ; + skos:prefLabel "Staatsangehörigkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402040" ; + skos:prefLabel "Staatsgebiet"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402050" ; + skos:prefLabel "Hoheitsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402060" ; + skos:prefLabel "Staatsform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402070" ; + skos:prefLabel "Föderalismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb402300" ; + skos:prefLabel "Verfassung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402330" ; + skos:prefLabel "Verfassung / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb402340" ; + skos:prefLabel "Grundrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402344" ; + skos:prefLabel "Datenschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb402350" ; + skos:prefLabel "Gewaltenteilung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb404000" ; + skos:prefLabel "Politisches System"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404030" ; + skos:prefLabel "Regierungsbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404040" ; + skos:prefLabel "Regierungschef"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404050" ; + skos:prefLabel "Regierung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404060" ; + skos:prefLabel "Ministerium"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404070" ; + skos:prefLabel "Regierungspolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404090" ; + skos:prefLabel "Landespartnerschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb404300" ; + skos:prefLabel "Parlament"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404320" ; + skos:prefLabel "Parlament / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404340" ; + skos:prefLabel "Regierungspartei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404350" ; + skos:prefLabel "Opposition"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb404360" ; + skos:prefLabel "Parlamentsorganisation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404361" ; + skos:prefLabel "Parlamentsausschuss"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404365" ; + skos:prefLabel "Ombudsmann"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb404380" ; + skos:prefLabel "Abgeordneter"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb406000" ; + skos:prefLabel "Politische Willensbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406020" ; + skos:prefLabel "Öffentlichkeitsarbeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406030" ; + skos:prefLabel "Politische Bildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406040" ; + skos:prefLabel "Öffentliche Meinung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406060" ; + skos:prefLabel "Politische Bewegung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406080" ; + skos:prefLabel "Parteistiftung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb406100" ; + skos:prefLabel "Partei. Politikerin. Politiker"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406120" ; + skos:prefLabel "Partei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406130" ; + skos:prefLabel "Politikerin. Politiker"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb406200" ; + skos:prefLabel "Politische Gruppe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406230" ; + skos:prefLabel "Politischer Verein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406250" ; + skos:prefLabel "Bürgerinitiative"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406270" ; + skos:prefLabel "Projektgruppe"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , ; + skos:notation "rpb406300" ; + skos:prefLabel "Wahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406310" ; + skos:prefLabel "Wahlrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406320" ; + skos:prefLabel "Wahlkreiseinteilung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406330" ; + skos:prefLabel "Volksabstimmung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406340" ; + skos:prefLabel "Europawahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406350" ; + skos:prefLabel "Bundestagswahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406360" ; + skos:prefLabel "Landtagswahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406370" ; + skos:prefLabel "Kreistag / Wahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406380" ; + skos:prefLabel "Bezirkstag / Wahl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb406390" ; + skos:prefLabel "Kommunalwahl"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb420000" ; + skos:prefLabel "Verwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb420100" ; + skos:prefLabel "Verwaltung allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb421000" ; + skos:prefLabel "Verwaltungsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb421400" ; + skos:prefLabel "Verwaltungskontrolle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb422000" ; + skos:prefLabel "Verwaltung / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb423000" ; + skos:prefLabel "Allgemeine Verwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423020" ; + skos:prefLabel "Verwaltung / Struktur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423030" ; + skos:prefLabel "Behörde / Organisation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423050" ; + skos:prefLabel "Behörde / Datenverarbeitung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb423400" ; + skos:prefLabel "Verwaltungsreform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423420" ; + skos:prefLabel "Länderneugliederung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423430" ; + skos:prefLabel "Gebietsreform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423440" ; + skos:prefLabel "Funktionalreform"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb423600" ; + skos:prefLabel "Öffentlicher Dienst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423610" ; + skos:prefLabel "Dienstrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423620" ; + skos:prefLabel "Personalwesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb423640" ; + skos:prefLabel "Beamter"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb424000" ; + skos:prefLabel "Öffentlicher Haushalt"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb424020" ; + skos:prefLabel "Finanzverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424021" ; + skos:prefLabel "Finanzamt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424022" ; + skos:prefLabel "Finanzausgleich"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424024" ; + skos:prefLabel "Finanzreform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424026" ; + skos:prefLabel "Öffentliche Beschaffung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424028" ; + skos:prefLabel "Rechnungshof"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424030" ; + skos:prefLabel "Abgabe"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb424040" ; + skos:prefLabel "Steuer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424042" ; + skos:prefLabel "Steuerberatung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424050" ; + skos:prefLabel "Gebühr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb424060" ; + skos:prefLabel "Zoll"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb425000" ; + skos:prefLabel "Bezirksverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425020" ; + skos:prefLabel "Regierungspräsident"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425030" ; + skos:prefLabel "Regierungsbezirk Koblenz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425040" ; + skos:prefLabel "Regierungsbezirk Trier"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb425050" ; + skos:prefLabel "Regierungsbezirk Rheinhessen-Pfalz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425052" ; + skos:prefLabel "Bezirksverband Pfalz"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb425200" ; + skos:prefLabel "Kreisverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425220" ; + skos:prefLabel "Kreisrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425230" ; + skos:prefLabel "Kreisparlament"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb425290" ; + skos:prefLabel "Kreispartnerschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb426000" ; + skos:prefLabel "Gemeindeverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426020" ; + skos:prefLabel "Ortsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426030" ; + skos:prefLabel "Gemeinderat"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426040" ; + skos:prefLabel "Kommunale Selbstverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426050" ; + skos:prefLabel "Auftragsverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426060" ; + skos:prefLabel "Kommunaler Spitzenverband"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426070" ; + skos:prefLabel "Verbandsgemeinde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb426090" ; + skos:prefLabel "Kommunale Partnerschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb427000" ; + skos:prefLabel "Obere Landesbehörde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb427010" ; + skos:prefLabel "Rheinland-Pfalz / Struktur- und Genehmigungsdirektion Nord"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb427020" ; + skos:prefLabel "Rheinland-Pfalz / Struktur- und Genehmigungsdirektion Süd"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb427030" ; + skos:prefLabel "Rheinland-Pfalz / Aufsichts- und Dienstleistungsdirektion"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb427040" ; + skos:prefLabel "Rheinland-Pfalz / Landesuntersuchungsamt"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb428000" ; + skos:prefLabel "Sicherheit und Ordnung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428020" ; + skos:prefLabel "Ordnungsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb428030" ; + skos:prefLabel "Polizei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428032" ; + skos:prefLabel "Polizeiorganisation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428033" ; + skos:prefLabel "Polizei / Ausrüstung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428040" ; + skos:prefLabel "Zivilschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb428050" ; + skos:prefLabel "Staatsschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428052" ; + skos:prefLabel "Grenzschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428054" ; + skos:prefLabel "Verfassungsschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428060" ; + skos:prefLabel "Personenstandswesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb428070" ; + skos:prefLabel "Sicherheitsbehörde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428072" ; + skos:prefLabel "Technischer Überwachungsverein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428074" ; + skos:prefLabel "Feuerwehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428076" ; + skos:prefLabel "Rettungswesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428078" ; + skos:prefLabel "Katastrophe. Unfall"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb428080" ; + skos:prefLabel "Friedhofsordnung"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb440000" ; + skos:prefLabel "Recht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb440100" ; + skos:prefLabel "Recht allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb442000" ; + skos:prefLabel "Recht / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb442050" ; + skos:prefLabel "Recht / Geschichte / Quelle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb443000" ; + skos:prefLabel "Privatrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb444000" ; + skos:prefLabel "Strafrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb444030" ; + skos:prefLabel "Strafvollzug"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb444050" ; + skos:prefLabel "Kriminalität"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb444070" ; + skos:prefLabel "Kriminalfall"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb446000" ; + skos:prefLabel "Gerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446010" ; + skos:prefLabel "Verfassungsgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb446030" ; + skos:prefLabel "Ordentliche Gerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446032" ; + skos:prefLabel "Strafgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446034" ; + skos:prefLabel "Zivilgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446050" ; + skos:prefLabel "Verwaltungsgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446060" ; + skos:prefLabel "Finanzgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446070" ; + skos:prefLabel "Arbeitsgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb446080" ; + skos:prefLabel "Sozialgerichtsbarkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb447000" ; + skos:prefLabel "Rechtsprechung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb448000" ; + skos:prefLabel "Rechtspflege"@de . + + + a skos:Concept ; + skos:narrower , , , , , ; + skos:notation "rpb500000" ; + skos:prefLabel "Bevölkerung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb500100" ; + skos:prefLabel "Bevölkerung allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb502000" ; + skos:prefLabel "Bevölkerung / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb503000" ; + skos:prefLabel "Bevölkerungsstruktur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503020" ; + skos:prefLabel "Altersstruktur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503030" ; + skos:prefLabel "Geschlechtsverhältnis"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503040" ; + skos:prefLabel "Volkszählung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503050" ; + skos:prefLabel "Einwohnerverzeichnis"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503060" ; + skos:prefLabel "Haushaltsgrösse"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503070" ; + skos:prefLabel "Wohnstandard"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503080" ; + skos:prefLabel "Einkommensstatistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503090" ; + skos:prefLabel "Denomination / Religion"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb503200" ; + skos:prefLabel "Bevölkerungsentwicklung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503220" ; + skos:prefLabel "Bevölkerungspolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503230" ; + skos:prefLabel "Geburt / Statistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503240" ; + skos:prefLabel "Heirat / Statistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503250" ; + skos:prefLabel "Tod / Statistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503260" ; + skos:prefLabel "Bevölkerungsentwicklung / Prognose"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb503400" ; + skos:prefLabel "Migration"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb503420" ; + skos:prefLabel "Binnenwanderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503424" ; + skos:prefLabel "Berufspendlerin. Berufspendler"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503430" ; + skos:prefLabel "Auswanderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503440" ; + skos:prefLabel "Einwanderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb503600" ; + skos:prefLabel "Bevölkerungsdichte"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb520000" ; + skos:prefLabel "Sozialwesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb520100" ; + skos:prefLabel "Sozialwesen allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521000" ; + skos:prefLabel "Sozialpolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521200" ; + skos:prefLabel "Sozialrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb521400" ; + skos:prefLabel "Sozialversicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521410" ; + skos:prefLabel "Krankenversicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521420" ; + skos:prefLabel "Unfallversicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521430" ; + skos:prefLabel "Rentenversicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb521450" ; + skos:prefLabel "Arbeitslosenversicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb522000" ; + skos:prefLabel "Sozialhilfe / Kostenträger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb522010" ; + skos:prefLabel "Öffentlicher Träger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb522020" ; + skos:prefLabel "Kirchlicher Träger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb522030" ; + skos:prefLabel "Privater Träger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb522050" ; + skos:prefLabel "Karitative Stiftung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , ; + skos:notation "rpb523000" ; + skos:prefLabel "Sozialhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523010" ; + skos:prefLabel "Arbeitslosenunterstützung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb523030" ; + skos:prefLabel "Fürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523035" ; + skos:prefLabel "Obdachlosenhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523040" ; + skos:prefLabel "Unfallfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523050" ; + skos:prefLabel "Krankenfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523060" ; + skos:prefLabel "Behindertenhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523070" ; + skos:prefLabel "Kriegsopferfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523075" ; + skos:prefLabel "Gefangenenfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523080" ; + skos:prefLabel "Waisenfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb523090" ; + skos:prefLabel "Altenhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb524000" ; + skos:prefLabel "Sozialpädagogik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb524010" ; + skos:prefLabel "Jugendhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb524050" ; + skos:prefLabel "Bewährungshilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb524060" ; + skos:prefLabel "Erziehungsberatung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb524070" ; + skos:prefLabel "Familienfürsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb524080" ; + skos:prefLabel "Berufsbetreuung"@de . + + + a skos:Concept ; + skos:narrower , , , , , ; + skos:notation "rpb530000" ; + skos:prefLabel "Gesundheitswesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb530100" ; + skos:prefLabel "Gesundheitswesen allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb532000" ; + skos:prefLabel "Medizin"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb532010" ; + skos:prefLabel "Medizin / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb532030" ; + skos:prefLabel "Medizinische Versorgung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb532050" ; + skos:prefLabel "Ärztin. Arzt. Heilberuf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb532070" ; + skos:prefLabel "Gesundheitsvorsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb533000" ; + skos:prefLabel "Apotheke"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb534000" ; + skos:prefLabel "Krankenversorgung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534010" ; + skos:prefLabel "Krankenpflege"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534020" ; + skos:prefLabel "Krankenpflege / Beruf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534030" ; + skos:prefLabel "Krankenhaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534050" ; + skos:prefLabel "Sanatorium"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534060" ; + skos:prefLabel "Suchtkrankenhilfe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb534080" ; + skos:prefLabel "Psychiatrie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb535000" ; + skos:prefLabel "Hygiene"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb537000" ; + skos:prefLabel "Veterinärwesen"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , , , , , , , , , , , , , , ; + skos:notation "rpb540000" ; + skos:prefLabel "Wirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb540100" ; + skos:prefLabel "Wirtschaft allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb541000" ; + skos:prefLabel "Wirtschaftspolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb541500" ; + skos:prefLabel "Wirtschaftsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb542000" ; + skos:prefLabel "Wirtschaft / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb543000" ; + skos:prefLabel "Wirtschaftsstruktur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543010" ; + skos:prefLabel "Wirtschaftsförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543040" ; + skos:prefLabel "Bruttoinlandsprodukt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543060" ; + skos:prefLabel "Außenwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543080" ; + skos:prefLabel "Wirtschaftsstatistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543200" ; + skos:prefLabel "Wirtschaftsverfassung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb543400" ; + skos:prefLabel "Wirtschaftsverband"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543430" ; + skos:prefLabel "Industrie- und Handelskammer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543440" ; + skos:prefLabel "Verbraucherverband"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543460" ; + skos:prefLabel "Arbeitgeberverband"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543480" ; + skos:prefLabel "Gewerkschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb543600" ; + skos:prefLabel "Arbeitsmarkt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543620" ; + skos:prefLabel "Unternehmerin. Unternehmer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543630" ; + skos:prefLabel "Arbeitnehmerin. Arbeitnehmer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543640" ; + skos:prefLabel "Freier Beruf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543660" ; + skos:prefLabel "Lohn"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543680" ; + skos:prefLabel "Arbeitslosigkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb543800" ; + skos:prefLabel "Marketing"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb544000" ; + skos:prefLabel "Landwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544010" ; + skos:prefLabel "Agrarpolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544020" ; + skos:prefLabel "Landwirtschaft / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544030" ; + skos:prefLabel "Bauernhof / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544040" ; + skos:prefLabel "Flurform"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb544050" ; + skos:prefLabel "Landwirtschaft / Beruf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544052" ; + skos:prefLabel "Bäuerin. Bauer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544054" ; + skos:prefLabel "Landfrau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544056" ; + skos:prefLabel "Landarbeiterin. Landarbeiter"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544060" ; + skos:prefLabel "Landwirtschaftliche Betriebslehre"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544090" ; + skos:prefLabel "Landwirtschaftsgenossenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb544200" ; + skos:prefLabel "Agrarproduktion"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544220" ; + skos:prefLabel "Ackerbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544230" ; + skos:prefLabel "Grünlandwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb544240" ; + skos:prefLabel "Gartenbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544245" ; + skos:prefLabel "Baumschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544250" ; + skos:prefLabel "Obstbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544280" ; + skos:prefLabel "Tierzucht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544300" ; + skos:prefLabel "Weinbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb544310" ; + skos:prefLabel "Weinbau / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb544320" ; + skos:prefLabel "Weinbaugebiet"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544322" ; + skos:prefLabel "Großlage"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544325" ; + skos:prefLabel "Weingut"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb544340" ; + skos:prefLabel "Weinherstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544341" ; + skos:prefLabel "Schaumweinherstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544344" ; + skos:prefLabel "Branntweinherstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb544360" ; + skos:prefLabel "Weinhandel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544361" ; + skos:prefLabel "Schaumwein / Handel"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb544400" ; + skos:prefLabel "Forstwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544410" ; + skos:prefLabel "Forstrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544420" ; + skos:prefLabel "Forstwirtschaft / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544440" ; + skos:prefLabel "Forstproduktion"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544450" ; + skos:prefLabel "Baumart"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544460" ; + skos:prefLabel "Forst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544490" ; + skos:prefLabel "Försterin. Förster"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb544600" ; + skos:prefLabel "Jagd. Fischfang"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544610" ; + skos:prefLabel "Jagd"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544620" ; + skos:prefLabel "Jagdrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544640" ; + skos:prefLabel "Wild"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544650" ; + skos:prefLabel "Fischfang"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544660" ; + skos:prefLabel "Fischereirecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb544670" ; + skos:prefLabel "Fischzucht"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb545000" ; + skos:prefLabel "Bergbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545010" ; + skos:prefLabel "Bergrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545020" ; + skos:prefLabel "Bergbau / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545030" ; + skos:prefLabel "Kohlenbergbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545040" ; + skos:prefLabel "Gesteinsabbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545050" ; + skos:prefLabel "Erzbergbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545060" ; + skos:prefLabel "Salzbergbau. Kalibergbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545070" ; + skos:prefLabel "Erdöl"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb545080" ; + skos:prefLabel "Erdgas"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb546000" ; + skos:prefLabel "Energiewirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb546020" ; + skos:prefLabel "Elektrizitätsversorgung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546022" ; + skos:prefLabel "Wasserkraftwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546024" ; + skos:prefLabel "Wärmekraftwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546026" ; + skos:prefLabel "Kernkraftwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546028" ; + skos:prefLabel "Alternative Energiequelle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546040" ; + skos:prefLabel "Gasversorgung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb546060" ; + skos:prefLabel "Verbundwirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb547000" ; + skos:prefLabel "Handwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547020" ; + skos:prefLabel "Handwerk / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb547030" ; + skos:prefLabel "Handwerk / Beruf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547035" ; + skos:prefLabel "Handwerksbetrieb"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb547040" ; + skos:prefLabel "Handwerksorganisation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547042" ; + skos:prefLabel "Handwerkskammer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547044" ; + skos:prefLabel "Innung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb547400" ; + skos:prefLabel "Industrie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547420" ; + skos:prefLabel "Industrie / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547440" ; + skos:prefLabel "Industriezweig"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547460" ; + skos:prefLabel "Industriebetrieb"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb547600" ; + skos:prefLabel "Technik. Technologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb548000" ; + skos:prefLabel "Handel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548010" ; + skos:prefLabel "Handelsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548020" ; + skos:prefLabel "Handel / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548030" ; + skos:prefLabel "Handelsform"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb548040" ; + skos:prefLabel "Messe / Wirtschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548045" ; + skos:prefLabel "Markt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548050" ; + skos:prefLabel "Firma"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548060" ; + skos:prefLabel "Handelsgut"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548090" ; + skos:prefLabel "Handelsgenossenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb548200" ; + skos:prefLabel "Dienstleistungssektor"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548250" ; + skos:prefLabel "Dienstleistungsbetrieb"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548300" ; + skos:prefLabel "Öffentliches Unternehmen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548400" ; + skos:prefLabel "Bank"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548600" ; + skos:prefLabel "Versicherung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb548800" ; + skos:prefLabel "Tourismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548820" ; + skos:prefLabel "Kurort"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548830" ; + skos:prefLabel "Naherholung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548840" ; + skos:prefLabel "Gastgewerbe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb548870" ; + skos:prefLabel "Jugendherberge"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , ; + skos:notation "rpb550000" ; + skos:prefLabel "Verkehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb550100" ; + skos:prefLabel "Verkehr allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb551000" ; + skos:prefLabel "Verkehrsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb552000" ; + skos:prefLabel "Verkehr / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb553000" ; + skos:prefLabel "Straßenverkehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb554000" ; + skos:prefLabel "Öffentlicher Personennahverkehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb555000" ; + skos:prefLabel "Eisenbahn"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb555020" ; + skos:prefLabel "Eisenbahn / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb556000" ; + skos:prefLabel "Luftverkehr"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb557000" ; + skos:prefLabel "Schifffahrt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb557020" ; + skos:prefLabel "Schifffahrt / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb557040" ; + skos:prefLabel "Kanal"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb557060" ; + skos:prefLabel "Hafen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb558000" ; + skos:prefLabel "Post. Fernmeldewesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb558020" ; + skos:prefLabel "Post / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb558040" ; + skos:prefLabel "Briefmarke"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb558050" ; + skos:prefLabel "Fernmeldewesen"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb560000" ; + skos:prefLabel "Siedlung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb560100" ; + skos:prefLabel "Siedlung allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb562000" ; + skos:prefLabel "Siedlung / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb562040" ; + skos:prefLabel "Wüstung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb562060" ; + skos:prefLabel "Allmende"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb562300" ; + skos:prefLabel "Kulturlandschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb562600" ; + skos:prefLabel "Siedlungsraum"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb563000" ; + skos:prefLabel "Siedlungsform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb563020" ; + skos:prefLabel "Industriestadt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb563030" ; + skos:prefLabel "Marktzentrum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb563040" ; + skos:prefLabel "Wohnsiedlung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb563050" ; + skos:prefLabel "Gewerbegebiet"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb564000" ; + skos:prefLabel "Ländliche Siedlung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb564040" ; + skos:prefLabel "Ländliche Siedlungsform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb564050" ; + skos:prefLabel "Dorf / Topographie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb564080" ; + skos:prefLabel "Dorferneuerung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb566000" ; + skos:prefLabel "Stadt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566010" ; + skos:prefLabel "Stadttyp"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566020" ; + skos:prefLabel "Städtische Siedlungsform"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb566040" ; + skos:prefLabel "Stadtgliederung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566041" ; + skos:prefLabel "Stadtkern"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566042" ; + skos:prefLabel "Vorort"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566043" ; + skos:prefLabel "Geschäftsviertel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566045" ; + skos:prefLabel "Stadtteil"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566046" ; + skos:prefLabel "Stadt / Erholungsgebiet"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb566050" ; + skos:prefLabel "Stadt / Topographie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566051" ; + skos:prefLabel "Platz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566052" ; + skos:prefLabel "Straße"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566053" ; + skos:prefLabel "Öffentliches Gebäude"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566060" ; + skos:prefLabel "Verstädterung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566070" ; + skos:prefLabel "Ballungsraum"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb566080" ; + skos:prefLabel "Stadt / Umland"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb570000" ; + skos:prefLabel "Raumordnung und Städtebau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb570100" ; + skos:prefLabel "Raumordnung und Städtebau allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb572000" ; + skos:prefLabel "Raumordnung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb572020" ; + skos:prefLabel "Landesplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb572030" ; + skos:prefLabel "Regionalplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb572040" ; + skos:prefLabel "Kreisplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb572050" ; + skos:prefLabel "Landschaftsplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb572060" ; + skos:prefLabel "Gemeindeplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb574000" ; + skos:prefLabel "Bauwesen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb574020" ; + skos:prefLabel "Bau- und Bodenrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb574030" ; + skos:prefLabel "Städtebau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb574040" ; + skos:prefLabel "Straßenbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb574050" ; + skos:prefLabel "Wohnungsbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb574060" ; + skos:prefLabel "Wohnungswirtschaft"@de . + + + a skos:Concept ; + skos:narrower , , , ; + skos:notation "rpb580000" ; + skos:prefLabel "Umwelt- und Naturschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb580100" ; + skos:prefLabel "Umwelt- und Naturschutz allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb582000" ; + skos:prefLabel "Umweltschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582010" ; + skos:prefLabel "Klimaschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582020" ; + skos:prefLabel "Bodenschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582030" ; + skos:prefLabel "Luftverschmutzung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582040" ; + skos:prefLabel "Lärmbelastung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb582050" ; + skos:prefLabel "Gewässerschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582052" ; + skos:prefLabel "Abwasser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582054" ; + skos:prefLabel "Kanalisation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582060" ; + skos:prefLabel "Abfallbeseitigung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb582070" ; + skos:prefLabel "Strahlenbelastung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb584000" ; + skos:prefLabel "Naturschutz. Landschaftspflege"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584040" ; + skos:prefLabel "Naturdenkmal"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584050" ; + skos:prefLabel "Pflanzen / Artenschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584060" ; + skos:prefLabel "Tierschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584070" ; + skos:prefLabel "Naturschutzgebiet"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584075" ; + skos:prefLabel "Nationalpark"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584080" ; + skos:prefLabel "Naturpark"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb584090" ; + skos:prefLabel "Landschaftsentwicklung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb586000" ; + skos:prefLabel "Grünanlage"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb586020" ; + skos:prefLabel "Park"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb586030" ; + skos:prefLabel "Botanischer Garten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb586040" ; + skos:prefLabel "Zoologischer Garten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb586080" ; + skos:prefLabel "Gartenbauausstellung"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , ; + skos:notation "rpb610000" ; + skos:prefLabel "Kirche"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb610100" ; + skos:prefLabel "Kirche allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb611000" ; + skos:prefLabel "Katholische Kirche"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611010" ; + skos:prefLabel "Kirchengeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611020" ; + skos:prefLabel "Kirchenrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611025" ; + skos:prefLabel "Kirchenverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611030" ; + skos:prefLabel "Kirchengemeinde"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb611040" ; + skos:prefLabel "Kirchliches Leben"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611042" ; + skos:prefLabel "Seelsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611043" ; + skos:prefLabel "Laienamt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611044" ; + skos:prefLabel "Kirchlicher Verein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611045" ; + skos:prefLabel "Kirchliche Stiftung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611050" ; + skos:prefLabel "Geistlicher. Ordensleute"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611060" ; + skos:prefLabel "Kloster. Stift"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611070" ; + skos:prefLabel "Orden"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb611080" ; + skos:prefLabel "Gottesdienst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611082" ; + skos:prefLabel "Sakrament"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611083" ; + skos:prefLabel "Kirchenfest"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611084" ; + skos:prefLabel "Prozession"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611085" ; + skos:prefLabel "Wallfahrt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb611090" ; + skos:prefLabel "Heiligenverehrung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb612000" ; + skos:prefLabel "Reformation"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb612020" ; + skos:prefLabel "Calvinismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612022" ; + skos:prefLabel "Zwinglianer"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb612030" ; + skos:prefLabel "Täufer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612032" ; + skos:prefLabel "Mennoniten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612040" ; + skos:prefLabel "Schwärmer / Theologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612050" ; + skos:prefLabel "Reformator"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612070" ; + skos:prefLabel "Glaubensflüchtling"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612080" ; + skos:prefLabel "Hugenotten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb612500" ; + skos:prefLabel "Gegenreformation"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb613000" ; + skos:prefLabel "Evangelische Kirche"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613010" ; + skos:prefLabel "Kirchengeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613020" ; + skos:prefLabel "Kirchenrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613025" ; + skos:prefLabel "Kirchenverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613030" ; + skos:prefLabel "Kirchengemeinde"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb613040" ; + skos:prefLabel "Kirchliches Leben"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613042" ; + skos:prefLabel "Seelsorge"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613043" ; + skos:prefLabel "Diakonie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613044" ; + skos:prefLabel "Kirchlicher Verein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613045" ; + skos:prefLabel "Kirchliche Stiftung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613050" ; + skos:prefLabel "Pfarrerin. Pfarrer. Geistliche"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb613070" ; + skos:prefLabel "Gottesdienst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613072" ; + skos:prefLabel "Sakrament"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb613073" ; + skos:prefLabel "Kirchenfest"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb615000" ; + skos:prefLabel "Sonstige christliche Religionsgemeinschaften"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb616000" ; + skos:prefLabel "Ökumene"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb617000" ; + skos:prefLabel "Bestattung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb617030" ; + skos:prefLabel "Friedhof"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb617050" ; + skos:prefLabel "Grabmal"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb630000" ; + skos:prefLabel "Juden"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb630100" ; + skos:prefLabel "Juden allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb631000" ; + skos:prefLabel "Judentum"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb632000" ; + skos:prefLabel "Juden / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb632050" ; + skos:prefLabel "Judenverfolgung"@de . + + + a skos:Concept ; + skos:narrower , ; + skos:notation "rpb650000" ; + skos:prefLabel "Nichtchristliche Religion"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb651000" ; + skos:prefLabel "Nichtchristliche Religion allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb651020" ; + skos:prefLabel "Islam"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb651030" ; + skos:prefLabel "Buddhismus"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb655000" ; + skos:prefLabel "Weltanschauungsgemeinschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb655030" ; + skos:prefLabel "Freimaurer"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , ; + skos:notation "rpb700000" ; + skos:prefLabel "Volkskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb700100" ; + skos:prefLabel "Volkskunde allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb702000" ; + skos:prefLabel "Alltag"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb704000" ; + skos:prefLabel "Brauch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704020" ; + skos:prefLabel "Brauch / Alltag"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb704040" ; + skos:prefLabel "Brauch / Jahreslauf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704042" ; + skos:prefLabel "Winter / Brauch. Weihnachten. Neujahr"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704043" ; + skos:prefLabel "Karneval"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704044" ; + skos:prefLabel "Frühling / Brauch. Ostern"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704045" ; + skos:prefLabel "Mai / Brauch. Pfingsten. Sommer / Brauch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704046" ; + skos:prefLabel "Erntedankfest"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704047" ; + skos:prefLabel "Kirchweih"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb704060" ; + skos:prefLabel "Lebenslauf / Brauch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704061" ; + skos:prefLabel "Geburt"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704063" ; + skos:prefLabel "Liebe / Brauch. Verlobung. Hochzeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704064" ; + skos:prefLabel "Tod / Brauch. Bestattung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb704080" ; + skos:prefLabel "Beruf / Brauch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704082" ; + skos:prefLabel "Handwerk / Brauch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704090" ; + skos:prefLabel "Brauchtumspflege / Verein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb704200" ; + skos:prefLabel "Volkswissen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704220" ; + skos:prefLabel "Volksmedizin"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704230" ; + skos:prefLabel "Ethnobotanik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704240" ; + skos:prefLabel "Volkszoologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704250" ; + skos:prefLabel "Wetter / Bauernregel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704260" ; + skos:prefLabel "Astrologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704270" ; + skos:prefLabel "Wahrsagen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704280" ; + skos:prefLabel "Alchemie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704400" ; + skos:prefLabel "Rechtliche Volkskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb704600" ; + skos:prefLabel "Religiöse Volkskunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb704630" ; + skos:prefLabel "Volksfrömmigkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704634" ; + skos:prefLabel "Gegenstände der Volksfrömmigkeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb704700" ; + skos:prefLabel "Volksglaube"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb706000" ; + skos:prefLabel "Volksliteratur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706020" ; + skos:prefLabel "Volksbuch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706040" ; + skos:prefLabel "Märchen. Sage. Legende"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb706050" ; + skos:prefLabel "Schwank"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706052" ; + skos:prefLabel "Witz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706060" ; + skos:prefLabel "Sprichwort"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706070" ; + skos:prefLabel "Inschrift"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706080" ; + skos:prefLabel "Rätsel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706090" ; + skos:prefLabel "Mundartliteratur"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb706200" ; + skos:prefLabel "Volksmusik. Volkstanz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706210" ; + skos:prefLabel "Volksmusik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706230" ; + skos:prefLabel "Volkslied"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb706240" ; + skos:prefLabel "Volkstanz"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb708000" ; + skos:prefLabel "Sachkulturforschung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb708020" ; + skos:prefLabel "Hausform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708024" ; + skos:prefLabel "Bürgerhaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708026" ; + skos:prefLabel "Bauernhaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708028" ; + skos:prefLabel "Landwirtschaftliches Gebäude"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708029" ; + skos:prefLabel "Mühle"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708030" ; + skos:prefLabel "Hausrat"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708040" ; + skos:prefLabel "Gerät"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708050" ; + skos:prefLabel "Spielzeug"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708060" ; + skos:prefLabel "Nahrung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb708200" ; + skos:prefLabel "Volkskunst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708220" ; + skos:prefLabel "Holzbearbeitung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708230" ; + skos:prefLabel "Malerei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708250" ; + skos:prefLabel "Keramik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708260" ; + skos:prefLabel "Steinbearbeitung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708270" ; + skos:prefLabel "Metallbearbeitung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708280" ; + skos:prefLabel "Glas"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708290" ; + skos:prefLabel "Textilien"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb708400" ; + skos:prefLabel "Kleidung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708420" ; + skos:prefLabel "Kostümkunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708430" ; + skos:prefLabel "Tracht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb708450" ; + skos:prefLabel "Schmuck"@de . + + + a skos:Concept ; + skos:narrower , , , , ; + skos:notation "rpb720000" ; + skos:prefLabel "Gesellschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb720100" ; + skos:prefLabel "Gesellschaft allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb722000" ; + skos:prefLabel "Sozialgeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb724000" ; + skos:prefLabel "Sozialstruktur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724020" ; + skos:prefLabel "Kind"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724030" ; + skos:prefLabel "Jugend"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724040" ; + skos:prefLabel "Frau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724050" ; + skos:prefLabel "Mann"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724060" ; + skos:prefLabel "Alter"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb724070" ; + skos:prefLabel "Original / Person"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb725000" ; + skos:prefLabel "Gruppe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725010" ; + skos:prefLabel "Familie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725020" ; + skos:prefLabel "Nachbarschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725030" ; + skos:prefLabel "Dorfgemeinschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725040" ; + skos:prefLabel "Alternativbewegung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725050" ; + skos:prefLabel "Interessenverband"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725060" ; + skos:prefLabel "Randgruppe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725070" ; + skos:prefLabel "Ausländerin. Ausländer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb725080" ; + skos:prefLabel "Behinderter Mensch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb726000" ; + skos:prefLabel "Sozialer Wandel"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb730000" ; + skos:prefLabel "Kultur und Freizeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb730100" ; + skos:prefLabel "Kultur und Freizeit allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb731000" ; + skos:prefLabel "Kulturpolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb732000" ; + skos:prefLabel "Kulturgeschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb733000" ; + skos:prefLabel "Kulturleben"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb733030" ; + skos:prefLabel "Kulturveranstaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb733050" ; + skos:prefLabel "Kulturpreis"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb733070" ; + skos:prefLabel "Kulturverein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb734000" ; + skos:prefLabel "Feier. Fest"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb735000" ; + skos:prefLabel "Freizeit und Erholung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb735020" ; + skos:prefLabel "Freizeiteinrichtung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb735040" ; + skos:prefLabel "Freizeitgestaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb735090" ; + skos:prefLabel "Verein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb736000" ; + skos:prefLabel "Sport und Spiel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb736030" ; + skos:prefLabel "Sportart"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb736050" ; + skos:prefLabel "Sportverein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb736080" ; + skos:prefLabel "Sportlerin. Sportler"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb740000" ; + skos:prefLabel "Sprache"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb740100" ; + skos:prefLabel "Sprache allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb742000" ; + skos:prefLabel "Sprache / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb743000" ; + skos:prefLabel "Grammatik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb744000" ; + skos:prefLabel "Mundart"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb745000" ; + skos:prefLabel "Sprachgeographie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb746000" ; + skos:prefLabel "Namenkunde"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746020" ; + skos:prefLabel "Personenname"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb746030" ; + skos:prefLabel "Hausname. Hofname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746032" ; + skos:prefLabel "Hausname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746034" ; + skos:prefLabel "Hofname"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb746040" ; + skos:prefLabel "Geographischer Name"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746042" ; + skos:prefLabel "Ortsname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746043" ; + skos:prefLabel "Straßenname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746044" ; + skos:prefLabel "Flurname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746045" ; + skos:prefLabel "Bergname"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746046" ; + skos:prefLabel "Gewässername"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746050" ; + skos:prefLabel "Tiername"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb746060" ; + skos:prefLabel "Pflanzenname"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb747000" ; + skos:prefLabel "Soziolinguistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747010" ; + skos:prefLabel "Umgangssprache"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747020" ; + skos:prefLabel "Geheimsprache"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747030" ; + skos:prefLabel "Fachsprache"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747040" ; + skos:prefLabel "Spracherwerb"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747050" ; + skos:prefLabel "Sprachunterricht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb747060" ; + skos:prefLabel "Sprachpflege"@de . + + + a skos:Concept ; + skos:narrower , , , , , , ; + skos:notation "rpb760000" ; + skos:prefLabel "Literatur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb760100" ; + skos:prefLabel "Literatur allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb761000" ; + skos:prefLabel "Literaturwissenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb761020" ; + skos:prefLabel "Literaturgeographie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb761050" ; + skos:prefLabel "Stoff / Literatur. Motiv / Literatur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb762000" ; + skos:prefLabel "Literatur / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb766000" ; + skos:prefLabel "Literatursoziologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb766030" ; + skos:prefLabel "Leserin. Leser"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb766050" ; + skos:prefLabel "Literaturförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb766060" ; + skos:prefLabel "Literaturausstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb767000" ; + skos:prefLabel "Literarischer Text"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb767040" ; + skos:prefLabel "Anthologie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb768000" ; + skos:prefLabel "Schriftstellerin. Schriftsteller"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb768010" ; + skos:prefLabel "Schriftstellerin. Schriftsteller / Primärliteratur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb768030" ; + skos:prefLabel "Schriftstellerin. Schriftsteller / Sekundärliteratur"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb769000" ; + skos:prefLabel "Literaturgattung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb769020" ; + skos:prefLabel "Lyrik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb769030" ; + skos:prefLabel "Drama"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb769040" ; + skos:prefLabel "Epik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb769050" ; + skos:prefLabel "Kurzform"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , ; + skos:notation "rpb780000" ; + skos:prefLabel "Bildung. Erziehung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb780100" ; + skos:prefLabel "Bildung. Erziehung allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb781000" ; + skos:prefLabel "Bildungspolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb781040" ; + skos:prefLabel "Ausbildungsförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb782000" ; + skos:prefLabel "Erziehung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb782500" ; + skos:prefLabel "Vorschulerziehung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb783000" ; + skos:prefLabel "Schule / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , , , , , , , , , , , , , ; + skos:notation "rpb784000" ; + skos:prefLabel "Allgemein bildende Schule"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb784010" ; + skos:prefLabel "Schulpolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784012" ; + skos:prefLabel "Schulreform"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784014" ; + skos:prefLabel "Schulversuch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784016" ; + skos:prefLabel "Privatschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784020" ; + skos:prefLabel "Schulrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784025" ; + skos:prefLabel "Elternarbeit"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784030" ; + skos:prefLabel "Schulverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784035" ; + skos:prefLabel "Schulbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784040" ; + skos:prefLabel "Schulgliederung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784041" ; + skos:prefLabel "Grundschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784042" ; + skos:prefLabel "Hauptschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb784043" ; + skos:prefLabel "Realschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784033" ; + skos:prefLabel "Realschule Plus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784044" ; + skos:prefLabel "Gymnasium"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784045" ; + skos:prefLabel "Gesamtschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784046" ; + skos:prefLabel "Kollegschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784047" ; + skos:prefLabel "Sonderschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784048" ; + skos:prefLabel "Regionale Schule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784049" ; + skos:prefLabel "Duale Oberschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb784050" ; + skos:prefLabel "Schulstufe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784052" ; + skos:prefLabel "Primarstufe"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784053" ; + skos:prefLabel "Sekundarstufe 1"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784054" ; + skos:prefLabel "Sekundarstufe 2"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb784060" ; + skos:prefLabel "Lehrerin. Lehrer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784062" ; + skos:prefLabel "Lehrerbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784064" ; + skos:prefLabel "Lehrerfortbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784066" ; + skos:prefLabel "Lehrerin. Lehrer / Besoldung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb784070" ; + skos:prefLabel "Schülerin. Schüler"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784072" ; + skos:prefLabel "Schülermitverwaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784074" ; + skos:prefLabel "Schülertransport"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784076" ; + skos:prefLabel "Schulverpflegung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784078" ; + skos:prefLabel "Schüleraustausch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784080" ; + skos:prefLabel "Unterricht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb784090" ; + skos:prefLabel "Schulleben"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb785000" ; + skos:prefLabel "Berufsbildende Schule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785020" ; + skos:prefLabel "Berufsschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785030" ; + skos:prefLabel "Berufsfachschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785040" ; + skos:prefLabel "Berufsaufbauschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785050" ; + skos:prefLabel "Fachoberschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785060" ; + skos:prefLabel "Berufliches Gymnasium"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785070" ; + skos:prefLabel "Fachschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785080" ; + skos:prefLabel "Nichtstaatliche Berufsschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb785500" ; + skos:prefLabel "Berufsausbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb786000" ; + skos:prefLabel "Außerschulische Bildung"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , ; + skos:notation "rpb790000" ; + skos:prefLabel "Hochschule. Wissenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb790100" ; + skos:prefLabel "Hochschule. Wissenschaft allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb791000" ; + skos:prefLabel "Hochschulrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb792000" ; + skos:prefLabel "Hochschulpolitik"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb794000" ; + skos:prefLabel "Hochschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb794010" ; + skos:prefLabel "Einzelne Hochschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb796000" ; + skos:prefLabel "Fachhochschule"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb797000" ; + skos:prefLabel "Hochschullehrerin. Hochschullehrer. Wissenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb798000" ; + skos:prefLabel "Studentin. Student"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb798200" ; + skos:prefLabel "Außeruniversitäre Forschung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb799000" ; + skos:prefLabel "Wissenschaftsförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb799200" ; + skos:prefLabel "Wissenschaftliche Gesellschaft"@de . + + + a skos:Concept ; + skos:narrower , , , , ; + skos:notation "rpb800000" ; + skos:prefLabel "Darstellende Kunst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb800100" ; + skos:prefLabel "Darstellende Kunst allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb802000" ; + skos:prefLabel "Theater"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802020" ; + skos:prefLabel "Theater / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802030" ; + skos:prefLabel "Volksschauspiel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802040" ; + skos:prefLabel "Laienspiel"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802050" ; + skos:prefLabel "Kindertheater. Jugendtheater"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802060" ; + skos:prefLabel "Einzelne Theater"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802070" ; + skos:prefLabel "Inszenierung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb802080" ; + skos:prefLabel "Schauspielerin. Schauspieler"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb803000" ; + skos:prefLabel "Ballett"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb804000" ; + skos:prefLabel "Film"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb804020" ; + skos:prefLabel "Filmtheater"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb806000" ; + skos:prefLabel "Kleinkunst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb806020" ; + skos:prefLabel "Kabarett"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , , , ; + skos:notation "rpb820000" ; + skos:prefLabel "Musik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb820100" ; + skos:prefLabel "Musik allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb821000" ; + skos:prefLabel "Musikwissenschaft"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb822000" ; + skos:prefLabel "Musikerin. Musiker / Ausbildung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb822400" ; + skos:prefLabel "Musikförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb822500" ; + skos:prefLabel "Musikpreis"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb823000" ; + skos:prefLabel "Musik / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , ; + skos:notation "rpb824000" ; + skos:prefLabel "Musikerin. Musiker"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb824020" ; + skos:prefLabel "Instrumentalmusikerin. Instrumentalmusiker"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb824040" ; + skos:prefLabel "Komponistin. Komponist"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb824060" ; + skos:prefLabel "Dirigentin. Dirigent"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb824080" ; + skos:prefLabel "Sängerin. Sänger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb824500" ; + skos:prefLabel "Chor"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb825000" ; + skos:prefLabel "Orchester"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb826000" ; + skos:prefLabel "Konzert. Musikveranstaltung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb826020" ; + skos:prefLabel "Einzelne Aufführungen"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb827000" ; + skos:prefLabel "Kirchenmusik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb827010" ; + skos:prefLabel "Kirchenmusik / Aufführung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb828000" ; + skos:prefLabel "Musikinstrument"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb829000" ; + skos:prefLabel "Laienmusik"@de . + + + a skos:Concept ; + skos:narrower , , , , , , , , , , , , ; + skos:notation "rpb840000" ; + skos:prefLabel "Kunst. Architektur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb840100" ; + skos:prefLabel "Kunst. Architektur allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , ; + skos:notation "rpb841000" ; + skos:prefLabel "Kunst"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841020" ; + skos:prefLabel "Kunststudium"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841040" ; + skos:prefLabel "Kunstmuseum. Kunstsammlung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841050" ; + skos:prefLabel "Kunstgalerie"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841060" ; + skos:prefLabel "Kunstausstellung"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb841070" ; + skos:prefLabel "Künstlerin.Künstler"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841072" ; + skos:prefLabel "Bildhauerin. Bildhauer"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841074" ; + skos:prefLabel "Malerin. Maler"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841076" ; + skos:prefLabel "Zeichnerin. Zeichner"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841078" ; + skos:prefLabel "Grafikerin. Grafiker"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841079" ; + skos:prefLabel "Fotografin. Fotograf"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841080" ; + skos:prefLabel "Künstlervereinigung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb841090" ; + skos:prefLabel "Kunstförderung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb842000" ; + skos:prefLabel "Kunst / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb843000" ; + skos:prefLabel "Architektur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843010" ; + skos:prefLabel "Baukonstruktion. Bautechnik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843020" ; + skos:prefLabel "Öffentliches Gebäude"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb843040" ; + skos:prefLabel "Büro-, Geschäfts- und Industriebauten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843042" ; + skos:prefLabel "Bürohaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843044" ; + skos:prefLabel "Geschäftshaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843046" ; + skos:prefLabel "Industriebau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843050" ; + skos:prefLabel "Bauernhaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843060" ; + skos:prefLabel "Wohnhaus"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb843090" ; + skos:prefLabel "Architektin. Architekt"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , ; + skos:notation "rpb844000" ; + skos:prefLabel "Baudenkmal. Kunstwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844010" ; + skos:prefLabel "Kunst / Inventar"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844020" ; + skos:prefLabel "Baustil"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844030" ; + skos:prefLabel "Sakralbau"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844040" ; + skos:prefLabel "Burg. Schloss"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844050" ; + skos:prefLabel "Profanarchitektur"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844060" ; + skos:prefLabel "Park. Garten"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844070" ; + skos:prefLabel "Brunnen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844080" ; + skos:prefLabel "Denkmal"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844200" ; + skos:prefLabel "Denkmalpflege. Denkmalschutz"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb844500" ; + skos:prefLabel "Städtebau"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb845000" ; + skos:prefLabel "Plastik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb845020" ; + skos:prefLabel "Plastik / Einzelne Objekte"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb846000" ; + skos:prefLabel "Malerei"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb846020" ; + skos:prefLabel "Malerei / Einzelne Objekte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb847000" ; + skos:prefLabel "Zeichnung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb847500" ; + skos:prefLabel "Druckgrafik"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb848000" ; + skos:prefLabel "Fotografie"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , , ; + skos:notation "rpb849000" ; + skos:prefLabel "Kunsthandwerk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849020" ; + skos:prefLabel "Goldschmiedekunst. Silberschmiedekunst. Schmuck"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849030" ; + skos:prefLabel "Eisenguss"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849032" ; + skos:prefLabel "Bronzeguss"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849034" ; + skos:prefLabel "Zinnguss"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849040" ; + skos:prefLabel "Keramik"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb849050" ; + skos:prefLabel "Porzellan. Glas. Fayence"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849052" ; + skos:prefLabel "Porzellan"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849054" ; + skos:prefLabel "Fayence"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849056" ; + skos:prefLabel "Glas"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849060" ; + skos:prefLabel "Hausrat"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849070" ; + skos:prefLabel "Möbel"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb849080" ; + skos:prefLabel "Textilien. Teppich. Tapete"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849082" ; + skos:prefLabel "Textilien"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849084" ; + skos:prefLabel "Teppich"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849086" ; + skos:prefLabel "Tapete"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb849090" ; + skos:prefLabel "Uhr. Musikinstrument"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb860000" ; + skos:prefLabel "Buch. Bibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb860100" ; + skos:prefLabel "Buch. Bibliothek allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , ; + skos:notation "rpb861000" ; + skos:prefLabel "Buch"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861010" ; + skos:prefLabel "Schrift / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861020" ; + skos:prefLabel "Handschrift"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861030" ; + skos:prefLabel "Buch / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861040" ; + skos:prefLabel "Buchdruck"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , ; + skos:notation "rpb861050" ; + skos:prefLabel "Verlag"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861052" ; + skos:prefLabel "Urheberrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861054" ; + skos:prefLabel "Verlagsrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861056" ; + skos:prefLabel "Verlegerin. Verleger"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb861060" ; + skos:prefLabel "Buchhandel"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , , , , , ; + skos:notation "rpb865000" ; + skos:prefLabel "Bibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865010" ; + skos:prefLabel "Bibliotheksrecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865020" ; + skos:prefLabel "Bibliothek / Geschichte"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865030" ; + skos:prefLabel "Bibliotheksplanung"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865040" ; + skos:prefLabel "Wissenschaftliche Bibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb865050" ; + skos:prefLabel "Öffentliche Bibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865052" ; + skos:prefLabel "Stadtbibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865054" ; + skos:prefLabel "Kommunale Bibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865060" ; + skos:prefLabel "Spezialbibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865070" ; + skos:prefLabel "Schulbibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865080" ; + skos:prefLabel "Privatbibliothek"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb865090" ; + skos:prefLabel "Bibliothekarin. Bibliothekar"@de . + + + a skos:Concept ; + skos:narrower , , ; + skos:notation "rpb880000" ; + skos:prefLabel "Publizistik. Information. Dokumentation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb880100" ; + skos:prefLabel "Publizistik. Information. Dokumentation allgemein"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , , , , ; + skos:notation "rpb882000" ; + skos:prefLabel "Publizistik"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower , ; + skos:notation "rpb882020" ; + skos:prefLabel "Presse"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882022" ; + skos:prefLabel "Presserecht"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882026" ; + skos:prefLabel "Zeitung. Zeitschrift"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882030" ; + skos:prefLabel "Audiovisuelle Medien"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882040" ; + skos:prefLabel "Hörfunk"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882060" ; + skos:prefLabel "Fernsehen"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb882090" ; + skos:prefLabel "Journalistin. Journalist"@de . + + + a skos:Concept ; + skos:broader ; + skos:narrower ; + skos:notation "rpb884000" ; + skos:prefLabel "Information und Dokumentation"@de . + + + a skos:Concept ; + skos:broader ; + skos:notation "rpb884020" ; + skos:prefLabel "Internet"@de . diff --git a/conf/hebisMarc2lobid-transformation/maps/rvk.tsv b/conf/hebisMarc2lobid-transformation/maps/rvk.tsv new file mode 100644 index 0000000..2cf327f --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/maps/rvk.tsv @@ -0,0 +1,4 @@ +990067531130206441 MG 11380,MF 3390,MC 7200 +990019247190206441 NQ 2360,NY 4760,BD 7100 +990367731740206441 NQ 2360,NY 4760,BD 7100 +990063668050206441 NQ 2360,NY 4760,BD 7100 diff --git a/conf/hebisMarc2lobid-transformation/marcToLobid.fix b/conf/hebisMarc2lobid-transformation/marcToLobid.fix new file mode 100644 index 0000000..7e74763 --- /dev/null +++ b/conf/hebisMarc2lobid-transformation/marcToLobid.fix @@ -0,0 +1,107 @@ +# Setup adds maps, macros and vars once +do once("setup") + include ("./fix/maps.fix") + include ("./fix/macros.fix") + put_var("member", "-") +end + +# Skip all deleted records +if any_equal("DEL??.a", "Y") + reject() +end + +add_field("@context","http://lobid.org/resources/context.jsonld") + +# Set empty elements to manipulate the order winthin the record. +add_field("id","") +set_array("type[]") +set_array("medium[]") +add_field("title","") +add_field("rpbId","") + +do list(path:"880??","var":"$i") + copy_field("$i.6","$i.linkageTest") + replace_all("$i.linkageTest","\\d{3}(-\\d{2}).*","880$1") + copy_field("$i.6","$i.@script.id") + copy_field("$i.6","$i.@script.label") + replace_all("$i.@script.id","(\\d{3}-\\d{2})/(.*)","https://unicode.org/iso15924/iso15924.txt#$2") + replace_all("$i.@script.label","(\\d{3}-\\d{2})/(.*)","$2") + lookup("$i.@script.label","ISO15924-to-script") +end +set_array("alternateGraphicRepresentation[]") + +include ("./fix/identifiers.fix") +include ("./fix/titleRelatedFields.fix") +include ("./fix/describedBy.fix") +# identifiers.fix and titleRelatedFields.fix are needed ahead of relatedRessourcesAndLinks.fix because of dependencies +include ("./fix/relatedRessourcesAndLinks.fix") +include ("./fix/otherFields.fix") +include ("./fix/subjects.fix") +include ("./fix/item.fix") +include ("./fix/mediumAndType.fix") +# mediumAndType.fix is needed ahead of contribution.fix because of dependencies +include ("./fix/contribution.fix") + +vacuum() +retain( + "@context", + "abstract[]", + "almaMmsId", + "alternateGraphicRepresentation[]", + "alternativeTitle[]", + "bibliographicCitation", + "bibliographicLevel", + "describedBy", + "description[]", + "containedIn[]", + "containsExampleOfWork[]", + "contribution[]", + "deprecatedUri", + "dnbId", + "doi[]", + "extent", + "edition[]", + "exampleOfWork", + "fulltextOnline[]", + "hasItem[]", + "secondaryForm[]", + "hbzId", + "id", + "inCollection[]", + "isbn[]", + "issn[]", + "ismn[]", + "isPartOf[]", + "language[]", + "langNote[]", + "license[]", + "manufacture[]", + "medium[]", + "natureOfContent[]", + "note[]", + "oclcNumber[]", + "otherTitleInformation[]", + "publication[]", + "predecessor[]", + "primaryForm[]", + "related[]", + "responsibilityStatement[]", + "rpbId", + "sameAs[]", + "seeAlso[]", + "shortTitle[]", + "spatial[]", + "stockNumber[]", + "subject[]", + "successor[]", + "supplement[]", + "tableOfContents[]", + "thesisInformation[]", + "title", + "titleKeyword[]", + "type[]", + "urn[]", + "webPageArchived[]", + "zdbId", + "subjectslabels[]" + ) diff --git a/conf/hebisSruLinks.txt b/conf/hebisSruLinks.txt new file mode 100644 index 0000000..52135b9 --- /dev/null +++ b/conf/hebisSruLinks.txt @@ -0,0 +1,14 @@ +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22514226781%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512839662%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512013683%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512849919%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22516707701%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22475390555%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22488844266%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22487803779%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22478607776%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090680634%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090358163%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090363000%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22508037980%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C +http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22487803779%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C diff --git a/conf/hebisTestIds.txt b/conf/hebisTestIds.txt new file mode 100644 index 0000000..c2f8333 --- /dev/null +++ b/conf/hebisTestIds.txt @@ -0,0 +1,14 @@ +514226781 +512839662 +512013683 +512849919 +516707701 +475390555 +488844266 +487803779 +478607776 +090680634 +090358163 +090363000 +508037980 +487803779 \ No newline at end of file diff --git a/conf/output/test-hebis-to-lobid-output-0.json b/conf/output/test-hebis-to-lobid-output-0.json new file mode 100644 index 0000000..a7f14fd --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-0.json @@ -0,0 +1,76 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/514226781#!", + "type" : [ "BibliographicResource", "Festschrift", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Wie wir wurden was wir sind - 10-jähriges Jubiläum des Mehrgenerationenhauses Ingelheim", + "almaMmsId" : "514226781", + "oclcNumber" : [ "1415743560" ], + "publication" : [ { + "startDate" : "2019", + "type" : [ "PublicationEvent" ], + "location" : [ "Ingelheim am Rhein" ], + "publishedBy" : [ "Stadtverwaltung Ingelheim am Rhein" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22514226781%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1415743560", + "label" : "OCLC Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "62 Seiten : Illustrationen", + "natureOfContent" : [ { + "label" : "Festschrift", + "id" : "https://d-nb.info/gnd/4016928-5" + } ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "K 2023 Q 152" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Redaktionsteam: Anke Caltapanides [und 3 weitere] ; Herausgeber: Stadtverwaltung Ingelheim am Rhein" ], + "contribution" : [ { + "agent" : { + "label" : "Caltapanides, Anke", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "123750354X", + "id" : "https://d-nb.info/gnd/123750354X", + "label" : "Ingelheim am Rhein. Stadtverwaltung", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-1.json b/conf/output/test-hebis-to-lobid-output-1.json new file mode 100644 index 0000000..5b0273b --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-1.json @@ -0,0 +1,76 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/512839662#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Alter Dom St. Johannis", + "almaMmsId" : "512839662", + "oclcNumber" : [ "1407066536" ], + "otherTitleInformation" : [ "1500 Jahre Geschichte im Herzen von Mainz" ], + "publication" : [ { + "startDate" : "2023", + "type" : [ "PublicationEvent" ], + "location" : [ "Mainz" ], + "publishedBy" : [ "Evangelisches Dekanat Mainz" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512839662%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1407066536", + "label" : "OCLC Ressource" + } ], + "related" : [ { + "note" : [ "Parallele Sprachausgabe englisch" ], + "label" : "The ancient cathedral St. John" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "1 gefaltetes Blatt ( 16 Seiten) : Illustrationen", + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog m 7188" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog m 7188, 2. Ex." + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Evangelisches Dekanat Mainz" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "1123222142", + "id" : "https://d-nb.info/gnd/1123222142", + "label" : "Evangelische Kirche in Hessen und Nassau. Evangelisches Dekanat Mainz", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-10.json b/conf/output/test-hebis-to-lobid-output-10.json new file mode 100644 index 0000000..850e94b --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-10.json @@ -0,0 +1,129 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/090358163#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Mainz transparent", + "almaMmsId" : "090358163", + "isbn" : [ "3874394883", "9783874394888" ], + "oclcNumber" : [ "76115483" ], + "dnbId" : "958853371", + "otherTitleInformation" : [ "2000 Jahre einer Stadt ; [Stadtbegleiter]" ], + "publication" : [ { + "startDate" : "2000", + "type" : [ "PublicationEvent" ], + "location" : [ "Mainz" ], + "publishedBy" : [ "Schmidt" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090358163%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/76115483", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/958853371", + "label" : "DNB-Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "127 S. : zahlr. Ill., Kt.", + "natureOfContent" : [ { + "label" : "Führer", + "id" : "https://d-nb.info/gnd/4155569-7" + } ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Mainz", + "id" : "https://d-nb.info/gnd/4037124-4", + "gndIdentifier" : "4037124-4" + }, { + "notation" : "61", + "type" : [ "Concept" ], + "source" : { + "label" : "Systematik der DNB (bis 2003)", + "id" : "https://bartoc.org/en/node/18497" + } + }, { + "notation" : "19.1d", + "type" : [ "Concept" ] + } ], + "subjectslabels" : [ "Mainz" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 1974" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 1974, 2. Ex." + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 3537" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "hrsg. von Georg Schuler ... [Konzept und Texte: Frank Herda ... Fotos: Philippa Pfahler ...]" ], + "contribution" : [ { + "agent" : { + "label" : "Schuler, Georg", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "label" : "Herda, Frank", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "label" : "Pfahler, Philippa", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-11.json b/conf/output/test-hebis-to-lobid-output-11.json new file mode 100644 index 0000000..59eef97 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-11.json @@ -0,0 +1,120 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/090363000#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Mainz transparent", + "almaMmsId" : "090363000", + "isbn" : [ "3874395340", "9783874395342" ], + "oclcNumber" : [ "57680814" ], + "dnbId" : "958645337", + "otherTitleInformation" : [ "2000 years of a city ; [city guide]" ], + "publication" : [ { + "startDate" : "2000", + "type" : [ "PublicationEvent" ], + "location" : [ "Mainz" ], + "publishedBy" : [ "Schmidt" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090363000%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/57680814", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/958645337", + "label" : "DNB-Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/eng", + "label" : "Englisch" + } ], + "extent" : "127 S. : zahlr. Ill., graph. Darst., Kt.", + "natureOfContent" : [ { + "label" : "Führer", + "id" : "https://d-nb.info/gnd/4155569-7" + } ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Mainz", + "id" : "https://d-nb.info/gnd/4037124-4", + "gndIdentifier" : "4037124-4" + }, { + "notation" : "61", + "type" : [ "Concept" ], + "source" : { + "label" : "Systematik der DNB (bis 2003)", + "id" : "https://bartoc.org/en/node/18497" + } + }, { + "notation" : "19.1d", + "type" : [ "Concept" ] + } ], + "subjectslabels" : [ "Mainz" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 1975" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 2727" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "by Georg Schuler, Ellen Vest and Frank Herda" ], + "contribution" : [ { + "agent" : { + "label" : "Schuler, Georg", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "label" : "Vest, Ellen", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "label" : "Herda, Frank", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-12.json b/conf/output/test-hebis-to-lobid-output-12.json new file mode 100644 index 0000000..3f9546a --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-12.json @@ -0,0 +1,195 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/508037980#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Auszeiten für die Seele - 33 Orte im Rhein-Main-Gebiet", + "almaMmsId" : "508037980", + "isbn" : [ "9783846409626", "3846409626" ], + "oclcNumber" : [ "1403376624" ], + "dnbId" : "1271796821", + "stockNumber" : [ "978-3-8464-0962-6", "0640962", "52182" ], + "alternativeTitle" : [ "Auszeiten für die Seele Rhein-Main-Gebiet" ], + "otherTitleInformation" : [ "innehalten, lauschen, aufblühen" ], + "edition" : [ "1. Auflage" ], + "publication" : [ { + "startDate" : "2023", + "type" : [ "PublicationEvent" ], + "location" : [ "München" ], + "publishedBy" : [ "Polyglott" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22508037980%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1403376624", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/1271796821", + "label" : "DNB-Ressource" + } ], + "tableOfContents" : [ { + "label" : "Inhaltsverzeichnis", + "id" : "https://d-nb.info/1271796821/04" + } ], + "related" : [ { + "note" : [ "Online-Ausgabe" ], + "label" : "Auszeiten für die Seele im Rhein-Main-Gebiet" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "191 Seiten : Illustrationen, Karten ; 20 cm, 520 g", + "natureOfContent" : [ { + "label" : "Führer", + "id" : "https://d-nb.info/gnd/4155569-7" + } ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Tourismus", + "id" : "https://d-nb.info/gnd/4018406-7", + "gndIdentifier" : "4018406-7" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Freizeitplanung", + "id" : "https://d-nb.info/gnd/4130372-6", + "gndIdentifier" : "4130372-6" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Wanderweg", + "id" : "https://d-nb.info/gnd/4140582-1", + "gndIdentifier" : "4140582-1" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Freizeit", + "id" : "https://d-nb.info/gnd/4018382-8", + "gndIdentifier" : "4018382-8" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Hessen", + "id" : "https://d-nb.info/gnd/4024729-6", + "gndIdentifier" : "4024729-6" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Rhein-Main-Gebiet", + "id" : "https://d-nb.info/gnd/4049799-9", + "gndIdentifier" : "4049799-9" + }, { + "notation" : "914.3", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Geografie, Reisen (Deutschland)" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Geografie Mitteleuropas und Reisen in Mitteleuropa", + "notation" : "914.3", + "version" : "sdnb" + }, { + "notation" : "610", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Medizin, Gesundheit" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Medizin und Gesundheit", + "notation" : "610", + "version" : "sdnb" + }, { + "notation" : "RD 50029", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + }, { + "notation" : "RD 65012", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + }, { + "notation" : "NZ 64350", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + } ], + "subjectslabels" : [ "Tourismus", "Freizeitplanung", "Wanderweg", "Freizeit", "Hessen", "Rhein-Main-Gebiet" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "2023/589" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Annette Bernjus" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "1156186978", + "id" : "https://d-nb.info/gnd/1156186978", + "label" : "Bernjus, Annette", + "type" : [ "Person" ], + "dateOfBirth" : "1961" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-13.json b/conf/output/test-hebis-to-lobid-output-13.json new file mode 100644 index 0000000..3fd5012 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-13.json @@ -0,0 +1,204 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/487803779#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "˜Derœ Stahlberg in Mainz", + "almaMmsId" : "487803779", + "isbn" : [ "9783943915532", "3943915530" ], + "oclcNumber" : [ "1282186376" ], + "dnbId" : "1244538620", + "otherTitleInformation" : [ "Festung - Spielplatz - Jugendhaus" ], + "publication" : [ { + "startDate" : "2021", + "type" : [ "PublicationEvent" ], + "location" : [ "München" ], + "publishedBy" : [ "morisel Verlag" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22487803779%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1282186376", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/1244538620", + "label" : "DNB-Ressource" + } ], + "tableOfContents" : [ { + "label" : "Inhaltsverzeichnis", + "id" : "https://d-nb.info/1244538620/04" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "175 Seiten : Illustrationen ; 23.5 cm x 13.5 cm", + "note" : [ "Quellen- und Literaturverzeichnis Seite 172-175" ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Katholische Kirche", + "id" : "https://d-nb.info/gnd/2009545-4", + "gndIdentifier" : "2009545-4" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Jugendarbeit", + "id" : "https://d-nb.info/gnd/4028863-8", + "gndIdentifier" : "4028863-8" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Lehrling", + "id" : "https://d-nb.info/gnd/4035114-2", + "gndIdentifier" : "4035114-2" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Kirchliche Sozialarbeit", + "id" : "https://d-nb.info/gnd/4137002-8", + "gndIdentifier" : "4137002-8" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Mainz", + "id" : "https://d-nb.info/gnd/4037124-4", + "gndIdentifier" : "4037124-4" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Bundesfestung Mainz (Mainz)", + "id" : "https://d-nb.info/gnd/4298330-7", + "gndIdentifier" : "4298330-7" + }, { + "notation" : "230", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Theologie, Christentum" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Christentum", + "notation" : "230", + "version" : "sdnb" + }, { + "notation" : "943", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Geschichte Deutschlands" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Deutschland und benachbarte mitteleuropäische Länder", + "notation" : "943", + "version" : "sdnb" + }, { + "notation" : "360", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Soziale Probleme, Sozialdienste, Versicherungen" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Soziale Probleme und Sozialdienste; Verbände", + "notation" : "360", + "version" : "sdnb" + }, { + "notation" : "NR 2290", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + }, { + "notation" : "NZ 64850", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + } ], + "subjectslabels" : [ "Katholische Kirche", "Jugendarbeit", "Lehrling", "Kirchliche Sozialarbeit", "Mainz", "Bundesfestung Mainz (Mainz)" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "- Dek GOEB" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 3175" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Manfred Göbel" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "114667449X", + "id" : "https://d-nb.info/gnd/114667449X", + "label" : "Göbel, Manfred", + "type" : [ "Person" ], + "dateOfBirth" : "1954" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-14.json b/conf/output/test-hebis-to-lobid-output-14.json new file mode 100644 index 0000000..e69de29 diff --git a/conf/output/test-hebis-to-lobid-output-2.json b/conf/output/test-hebis-to-lobid-output-2.json new file mode 100644 index 0000000..90169c3 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-2.json @@ -0,0 +1,73 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/512013683#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Miteinander für Integration - Das Ehrenamtsbündnis für Flüchtlingsarbeit stellt sich vor", + "almaMmsId" : "512013683", + "oclcNumber" : [ "1404835958" ], + "alternativeTitle" : [ "Miteinander für Integration in Mainz - Ehrenamtsbündnis für Flüchtlingsarbeit" ], + "otherTitleInformation" : [ "eine Präsentation der vielfältigen und vielseitigen Angebotslandschaft ehrenamtlich engagierter Initiativen, Institutionen und Vereine in der Mainzer Flüchtlingsarbeit" ], + "publication" : [ { + "startDate" : "2020", + "type" : [ "PublicationEvent" ], + "location" : [ "Mainz" ], + "publishedBy" : [ "Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit, Flüchtlingskoordination" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512013683%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1404835958", + "label" : "OCLC Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "24 Seiten : Illustrationen", + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog m:4° /3602" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog m:4° /3602, 2. Ex." + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Landeshauptstadt Mainz, Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit, Flüchtlingskoordination" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "1304715574", + "id" : "https://d-nb.info/gnd/1304715574", + "label" : "Mainz. Dezernat für Soziales, Kinder, Jugend, Schule und Gesundheit. Flüchtlingskoordination", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-3.json b/conf/output/test-hebis-to-lobid-output-3.json new file mode 100644 index 0000000..3cc63df --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-3.json @@ -0,0 +1,104 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/512849919#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Findet Hadi - Lernorte in der Ausstellung Der charismatische Ort - Stationen der reisenden Könige im Mittelalter", + "almaMmsId" : "512849919", + "oclcNumber" : [ "1407112396" ], + "otherTitleInformation" : [ "Rätselheft für Kinder und Erwachsene" ], + "publication" : [ { + "startDate" : "2019", + "type" : [ "PublicationEvent" ], + "location" : [ "Ingelheim am Rhein" ], + "publishedBy" : [ "Stadt Ingelheim am Rhein" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22512849919%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1407112396", + "label" : "OCLC Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "12 Seiten : Illustrationen", + "natureOfContent" : [ { + "label" : "Kindersachbuch", + "id" : "https://d-nb.info/gnd/4163854-2" + }, { + "label" : "Ausstellungskatalog", + "id" : "https://d-nb.info/gnd/4135467-9" + } ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "K 2023 Q 140" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Herausgeber: Stadt Ingelheim am Rhein ; Konzept und Inhalte: Dr. Barbara Gaertner ; Veranstalter der Ausstellung: Stadtverwaltung Ingelheim am Rhein, Forschungsstelle Kaiserpfalz" ], + "contribution" : [ { + "agent" : { + "label" : "Gaertner, Barbara", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "16162519-8", + "id" : "https://d-nb.info/gnd/16162519-8", + "label" : "Forschungsstelle Kaiserpfalz", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/orm", + "label" : "Veranstalter/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "16162519-8", + "id" : "https://d-nb.info/gnd/16162519-8", + "label" : "Forschungsstelle Kaiserpfalz", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/sng", + "label" : "Gesang" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "1175257540", + "id" : "https://d-nb.info/gnd/1175257540", + "label" : "Kunstforum Ingelheim - Altes Rathaus", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/his", + "label" : "Gastgebende Institution" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-4.json b/conf/output/test-hebis-to-lobid-output-4.json new file mode 100644 index 0000000..d7d0442 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-4.json @@ -0,0 +1,79 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/516707701#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Sportwoche Ingelheim am Rhein vom 10.-18. September 1977", + "almaMmsId" : "516707701", + "oclcNumber" : [ "1428135055" ], + "otherTitleInformation" : [ "Programm und Vereinsspiegel der teilnehmenden Vereine :" ], + "publication" : [ { + "startDate" : "1977", + "type" : [ "PublicationEvent" ], + "location" : [ "Ingelheim am Rhein" ], + "publishedBy" : [ "Stadtverwaltung" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22516707701%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1428135055", + "label" : "OCLC Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "28 Seiten : Illustrationen", + "natureOfContent" : [ { + "label" : "Programmheft", + "id" : "https://d-nb.info/gnd/4373950-7" + } ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "K 2024/20" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Herausgeber: Stadtverwaltung Ingelheim am Rhein" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "4026954-1", + "id" : "https://d-nb.info/gnd/4026954-1", + "label" : "Ingelheim am Rhein", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "1324708093", + "id" : "https://d-nb.info/gnd/1324708093", + "label" : "Sportwoche (1977 : Ingelheim am Rhein)", + "type" : [ "ConferenceOrEvent" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-5.json b/conf/output/test-hebis-to-lobid-output-5.json new file mode 100644 index 0000000..d9ef772 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-5.json @@ -0,0 +1,57 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/475390555#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Liederheft", + "almaMmsId" : "475390555", + "publication" : [ { + "startDate" : "2002", + "type" : [ "PublicationEvent" ], + "location" : [ "Ober-Olm" ], + "publishedBy" : [ "Carneval Club 1948 Ober-Olm e.V." ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22475390555%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "40 Seiten : Illustrationen", + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "K 2021/46" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Carneval Club 1948 Ober-Olm e.V." ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "3042322-3", + "id" : "https://d-nb.info/gnd/3042322-3", + "label" : "Carneval-Club 1948 Ober-Olm", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-6.json b/conf/output/test-hebis-to-lobid-output-6.json new file mode 100644 index 0000000..3e8e4f4 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-6.json @@ -0,0 +1,65 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/488844266#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Jack the Ripper - Verdächtigter vom Rhein", + "almaMmsId" : "488844266", + "isbn" : [ "9783739271699", "3739271698" ], + "oclcNumber" : [ "1288418997" ], + "otherTitleInformation" : [ "Mörder in USA aus Region Bingen, Alzey" ], + "publication" : [ { + "startDate" : "2015", + "type" : [ "PublicationEvent" ], + "location" : [ "Norderstedt" ], + "publishedBy" : [ "Bod - Books on Demand" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22488844266%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1288418997", + "label" : "OCLC Ressource" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "271 Seiten : Illustrationen", + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "2021/1406" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Thomas Hattemer" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "1340838648", + "id" : "https://d-nb.info/gnd/1340838648", + "label" : "Hattemer, Thomas", + "type" : [ "Person" ], + "dateOfBirth" : "1967" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-7.json b/conf/output/test-hebis-to-lobid-output-7.json new file mode 100644 index 0000000..3fd5012 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-7.json @@ -0,0 +1,204 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/487803779#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "˜Derœ Stahlberg in Mainz", + "almaMmsId" : "487803779", + "isbn" : [ "9783943915532", "3943915530" ], + "oclcNumber" : [ "1282186376" ], + "dnbId" : "1244538620", + "otherTitleInformation" : [ "Festung - Spielplatz - Jugendhaus" ], + "publication" : [ { + "startDate" : "2021", + "type" : [ "PublicationEvent" ], + "location" : [ "München" ], + "publishedBy" : [ "morisel Verlag" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22487803779%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1282186376", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/1244538620", + "label" : "DNB-Ressource" + } ], + "tableOfContents" : [ { + "label" : "Inhaltsverzeichnis", + "id" : "https://d-nb.info/1244538620/04" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "175 Seiten : Illustrationen ; 23.5 cm x 13.5 cm", + "note" : [ "Quellen- und Literaturverzeichnis Seite 172-175" ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Katholische Kirche", + "id" : "https://d-nb.info/gnd/2009545-4", + "gndIdentifier" : "2009545-4" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Jugendarbeit", + "id" : "https://d-nb.info/gnd/4028863-8", + "gndIdentifier" : "4028863-8" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Lehrling", + "id" : "https://d-nb.info/gnd/4035114-2", + "gndIdentifier" : "4035114-2" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Kirchliche Sozialarbeit", + "id" : "https://d-nb.info/gnd/4137002-8", + "gndIdentifier" : "4137002-8" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Mainz", + "id" : "https://d-nb.info/gnd/4037124-4", + "gndIdentifier" : "4037124-4" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Bundesfestung Mainz (Mainz)", + "id" : "https://d-nb.info/gnd/4298330-7", + "gndIdentifier" : "4298330-7" + }, { + "notation" : "230", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Theologie, Christentum" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Christentum", + "notation" : "230", + "version" : "sdnb" + }, { + "notation" : "943", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Geschichte Deutschlands" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Deutschland und benachbarte mitteleuropäische Länder", + "notation" : "943", + "version" : "sdnb" + }, { + "notation" : "360", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Soziale Probleme, Sozialdienste, Versicherungen" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Soziale Probleme und Sozialdienste; Verbände", + "notation" : "360", + "version" : "sdnb" + }, { + "notation" : "NR 2290", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + }, { + "notation" : "NZ 64850", + "type" : [ "Concept" ], + "source" : { + "label" : "RVK (Regensburger Verbundklassifikation)", + "id" : "https://d-nb.info/gnd/4449787-8" + } + } ], + "subjectslabels" : [ "Katholische Kirche", "Jugendarbeit", "Lehrling", "Kirchliche Sozialarbeit", "Mainz", "Bundesfestung Mainz (Mainz)" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "- Dek GOEB" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + }, { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "Mog 3175" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Manfred Göbel" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "114667449X", + "id" : "https://d-nb.info/gnd/114667449X", + "label" : "Göbel, Manfred", + "type" : [ "Person" ], + "dateOfBirth" : "1954" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-8.json b/conf/output/test-hebis-to-lobid-output-8.json new file mode 100644 index 0000000..3a5f183 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-8.json @@ -0,0 +1,129 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/478607776#!", + "type" : [ "BibliographicResource", "Festschrift", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "˜Dieœ Alzeyer Nikolaikirche", + "almaMmsId" : "478607776", + "oclcNumber" : [ "1196889751" ], + "dnbId" : "121992976X", + "alternativeTitle" : [ "Festschrift zur Wiederindienststellung zweitausendzwanzig" ], + "otherTitleInformation" : [ "Festschrift zur Wiederindienststellung 2020" ], + "publication" : [ { + "startDate" : "2020", + "type" : [ "PublicationEvent" ], + "location" : [ "Alzey" ], + "publishedBy" : [ "Evangelische Kirchengemeinde" ] + } ], + "manufacture" : [ { + "type" : [ "Event" ], + "location" : [ "Radebeul" ], + "manufacturedBy" : [ "Unitedprint.com" ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22478607776%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/1196889751", + "label" : "OCLC Ressource" + }, { + "id" : "https://d-nb.info/121992976X", + "label" : "DNB-Ressource" + } ], + "tableOfContents" : [ { + "label" : "Inhaltsverzeichnis", + "id" : "https://d-nb.info/121992976X/04" + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "172 Seiten : Illustrationen ; 30 cm", + "natureOfContent" : [ { + "label" : "Festschrift", + "id" : "https://d-nb.info/gnd/4016928-5" + } ], + "subject" : [ { + "notation" : "720", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Architektur" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "720", + "notation" : "720", + "version" : "sdnb" + }, { + "notation" : "230", + "type" : [ "Concept" ], + "source" : { + "label" : "Sachgruppen der DNB", + "id" : "https://bartoc.org/en/node/20049" + }, + "label" : "Theologie, Christentum" + }, { + "type" : [ "Concept" ], + "source" : { + "label" : "Dewey-Dezimalklassifikation", + "id" : "https://d-nb.info/gnd/4149423-4" + }, + "label" : "Christentum", + "notation" : "230", + "version" : "sdnb" + } ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "2021 Q 511" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Herausgeberin Evangelische Kirchengemeinde Alzey ; verantwortlich, Redaktion: Hartmut Müller" ], + "contribution" : [ { + "agent" : { + "gndIdentifier" : "1175120235", + "id" : "https://d-nb.info/gnd/1175120235", + "label" : "Müller, Hartmut", + "type" : [ "Person" ], + "dateOfBirth" : "1974" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/edt", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "2038312-5", + "id" : "https://d-nb.info/gnd/2038312-5", + "label" : "Evangelische Kirchengemeinde Alzey", + "type" : [ "CorporateBody" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "Herausgeber/in" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/output/test-hebis-to-lobid-output-9.json b/conf/output/test-hebis-to-lobid-output-9.json new file mode 100644 index 0000000..aad5007 --- /dev/null +++ b/conf/output/test-hebis-to-lobid-output-9.json @@ -0,0 +1,97 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "id" : "http://lobid.org/resources/090680634#!", + "type" : [ "BibliographicResource", "Book" ], + "medium" : [ { + "label" : "Print", + "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010" + } ], + "title" : "Gau-Algesheim", + "almaMmsId" : "090680634", + "oclcNumber" : [ "45021318" ], + "otherTitleInformation" : [ "mit Kamera und Herz eines Winzers gesehen" ], + "publication" : [ { + "startDate" : "2000", + "type" : [ "PublicationEvent" ], + "location" : [ "Gau-Algesheim" ], + "publishedBy" : [ "Carl-Brilmayer-Ges." ] + } ], + "describedBy" : { + "resultOf" : { + "object" : { + "id" : "http://sru.hebis.de/sru/DB=2.1?query=pica.ppn+%3D+%22090680634%22&version=1.1&operation=searchRetrieve&stylesheet=http%3A%2F%2Fsru.hebis.de%2Fsru%2F%3Fxsl%3DsearchRetrieveResponse&recordSchema=marc21&maximumRecords=10&startRecord=1&recordPacking=xml&sortKeys=LST_Y%2Cpica%2C0%2C%2C" + } + } + }, + "sameAs" : [ { + "id" : "http://worldcat.org/oclc/45021318", + "label" : "OCLC Ressource" + } ], + "isPartOf" : [ { + "hasSuperordinate" : [ { + "label" : "Beiträge zur Geschichte des Gau-Algesheimer Raumes" + } ], + "numbering" : "42", + "type" : [ "IsPartOfRelation" ] + } ], + "language" : [ { + "id" : "http://id.loc.gov/vocabulary/iso639-2/ger", + "label" : "Deutsch" + } ], + "extent" : "72 S. : zahlr. Ill.", + "natureOfContent" : [ { + "label" : "Bildband", + "id" : "https://d-nb.info/gnd/4145395-5" + } ], + "subject" : [ { + "type" : [ "Concept" ], + "source" : { + "label" : "Gemeinsame Normdatei (GND)", + "id" : "https://d-nb.info/gnd/7749153-1" + }, + "label" : "Gau-Algesheim", + "id" : "https://d-nb.info/gnd/4019445-0", + "gndIdentifier" : "4019445-0" + } ], + "subjectslabels" : [ "Gau-Algesheim" ], + "hasItem" : [ { + "label" : "lobid Bestandsressource", + "type" : [ "Item", "PhysicalObject" ], + "callNumber" : "2000/38" + }, { + "heldBy" : { + "id" : "http://lobid.org/organisations/DE-36#!", + "label" : "Wissenschaftliche Stadtbibliothek Mainz" + } + } ], + "bibliographicLevel" : { + "label" : "Monograph/Item", + "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item" + }, + "responsibilityStatement" : [ "Fotos: Philipp Eckert. [Texte: Ludwig Hellriegel]" ], + "contribution" : [ { + "agent" : { + "label" : "Eckert, Philipp", + "type" : [ "Person" ] + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "gndIdentifier" : "118183575", + "id" : "https://d-nb.info/gnd/118183575", + "label" : "Hellriegel, Ludwig", + "type" : [ "Person" ], + "dateOfBirth" : "1932", + "dateOfDeath" : "2011" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/ctb", + "label" : "Beitragende/r" + }, + "type" : [ "Contribution" ] + } ] +} diff --git a/conf/rpbEntriesOfHebisRecords.txt b/conf/rpbEntriesOfHebisRecords.txt new file mode 100644 index 0000000..cecf701 --- /dev/null +++ b/conf/rpbEntriesOfHebisRecords.txt @@ -0,0 +1,14 @@ +036t240017 +036t240110 +036t240113 +036t240114 +036t240339 +036t220001 +036t220003 +036t220004 +036t220066 +036t000007 +036t000008 +036t000019 +036t240055 +036t220004 \ No newline at end of file