Skip to content

Anpassung der Datenstruktur & URIs für NWBib Inhaltserschließung

Adrian edited this page Jun 13, 2019 · 7 revisions

❗ Die hier dokumentierten Änderungen wurden am Montag, den 3. Juni in lobid-resources produktiv geschaltet.:exclamation:


Überblick der Änderungen

NWBib-Sachsystematik

  • subject.id für NWBib-Sachsystematikstellen änder sich von http://purl.org/lobid/nwbib#s{notation} zuhttps://nwbib.de/subjects#N{notation}
  • subject.source.id ist jetzt https://nwbib.de/subjects für die Sachsystematik anstatt bisher http://purl.org/lobid/nwbib

NWBib-Ortssystematik

  • Alle Ortsschlagwörter sind jetzt im spatial-Array (und nicht mehr teilweise in subject)
  • spatial.id nutzt https://nwbib.de/spatial# als namespace anstatt http://purl.org/lobid/nwbib-spatial#
  • spatial.source ist dementsprechend https://nwbib.de/spatial
  • Aus Wikidata werden nach wie vor die URI, die Typen und die Geokoordinaten (wo vorhanden) ergänzt. Diese Informationen befinden sich im focus-Objekt.
  • Das Feld coverage wird mit der Zeit wegfallen, weil es die alten unkontrollierten Strings enthält

Beispiel

Zur Veranschaulichung, hier Snippets von HT017150239.

Vorher

{
   "id":"http://lobid.org/resources/HT017150239#!",
   "coverage":[
      "Münster <Westfalen> | 99"
   ],
   "subject":[
      {
         "id":"http://purl.org/lobid/nwbib-spatial#n05",
         "source":{
            "id":"http://purl.org/lobid/nwbib-spatial",
            "label":"Raumsystematik der Nordrhein-Westfälischen Bibliographie"
         },
         "notation":"05",
         "label":"Westfalen"
      },
      {
         "id":"http://purl.org/lobid/nwbib#s844200",
         "source":{
            "id":"http://purl.org/lobid/nwbib",
            "label":"Sachsystematik der Nordrhein-Westfälischen Bibliographie"
         },
         "notation":"844200",
         "label":"Denkmalpflege. Denkmalschutz"
      }
   ],
   "spatial":[
      {
         "id":"http://www.wikidata.org/entity/Q2742",
         "label":"Münster",
         "geo":{
            "lat":51.9625,
            "lon":7.6255555555556
         },
         "type":[
            "http://www.wikidata.org/entity/Q22865",
            "http://www.wikidata.org/entity/Q262166",
            "http://www.wikidata.org/entity/Q707813",
            "http://www.wikidata.org/entity/Q1549591",
            "http://www.wikidata.org/entity/Q42744322"
         ]
      }
   ]
}

Nachher

{
   "id":"http://lobid.org/resources/HT017150239#!",
   "subject":[
      {
         "id":"https://nwbib.de/subjects#N844200",
         "source":{
            "id":"https://nwbib.de/subjects",
            "label":"Sachsystematik der Nordrhein-Westfälischen Bibliographie"
         },
         "notation":"844200",
         "label":"Denkmalpflege. Denkmalschutz"
      }
   ],
   "spatial":[
      {
         "id":"https://nwbib.de/spatial#N05",
         "type":[
            "Concept"
         ],
         "source":{
            "id":"https://nwbib.de/spatial",
            "label":"Raumsystematik der Nordrhein-Westfälischen Bibliographie"
         },
         "notation":"05",
         "label":"Westfalen"
      },
      {
         "id":"https://nwbib.de/spatial#Q2742",
         "type":[
            "Concept"
         ],
         "label":"Münster",
         "source":{
            "id":"https://nwbib.de/spatial",
            "label":"Raumsystematik der Nordrhein-Westfälischen Bibliographie"
         },
         "focus":{
            "id":"http://www.wikidata.org/entity/Q2742",
            "geo":{
               "lat":51.9625,
               "lon":7.6255555555556
            },
            "type":[
               "http://www.wikidata.org/entity/Q22865",
               "http://www.wikidata.org/entity/Q262166",
               "http://www.wikidata.org/entity/Q707813",
               "http://www.wikidata.org/entity/Q1549591",
               "http://www.wikidata.org/entity/Q42744322"
            ]
         }
      }
   ]
}