semantic-kraus / lk-data

Legal-Kraus XML/TEI data to RDF
https://semantic-kraus.github.io/lk-data/
MIT License
0 stars 0 forks source link

Minor: little mixup in "orig"-creation #95

Closed BOberreither closed 1 year ago

BOberreither commented 1 year ago

Wrong URI for original author in original text creation

For texts that are actually translations, the original text is also created; the URI is built from the ID + "orig", as is the creation's ID. Like this:

    <https://sk.acdh.oeaw.ac.at/pmb53315orig/creation> a frbroo:F28_Expression_Creation ;
        rdfs:label "Creation of original: Shakespeare Sonnette"@en ;
        cidoc:P14_carried_out_by sk:pmb2437 ;
        frbroo:R17_created sk:pmb53315orig .

Fine so far, except for line 3, the carried_out_by triple. The ID for the object of this triple has to be taken from author[@role="hat-geschaffen"] (now it's from hat-ubersetzt). Should be:

    <https://sk.acdh.oeaw.ac.at/pmb53315orig/creation> a frbroo:F28_Expression_Creation ;
        rdfs:label "Creation of original: Shakespeare Sonnette"@en ;
        cidoc:P14_carried_out_by sk:pmb2412 ;
        frbroo:R17_created sk:pmb53315orig .

Thanks!