semantic-kraus / dw-data

converts XML/TEI data into CIDOCish RDF
https://semantic-kraus.github.io/dw-data/
MIT License
0 stars 1 forks source link

Data: Missing links from non-death events to respective person #13

Closed BOberreither closed 1 year ago

BOberreither commented 1 year ago

Currently, burial / declared missing / declared dead events are built without any link to the resp. person.

Declared Missing / Declared Dead

Looks like:

<https://sk.acdh.oeaw.ac.at/DWpers0164/event/0> a cidoc:E5_Event ;
        rdfs:label "Event: Declared/Gone Missing"@und ;
        cidoc:P2_has_type <https://sk.acdh.oeaw.ac.at/types/event/missing> ;
        cidoc:P4_has_time-span <https://sk.acdh.oeaw.ac.at/DWpers0164/event/0/time-span> .

Should look like:

<https://sk.acdh.oeaw.ac.at/DWpers0164/event/0> a cidoc:E13_Attribute_Assignment ;
        rdfs:label "Declared/Gone Missing"@und ;
        cidoc:P2_has_type <https://sk.acdh.oeaw.ac.at/types/event/missing> ;
        cidoc:P140_assigned_attribute_to <https://sk.acdh.oeaw.ac.at/DWpers0164> ;
        cidoc:P4_has_time-span <https://sk.acdh.oeaw.ac.at/DWpers0164/event/0/time-span> .

So:

Burial

Looks like:

    <https://sk.acdh.oeaw.ac.at/DWpers1105/event/0> a cidoc:E5_Event ;
        rdfs:label "Event: Burial"@und ;
        cidoc:P2_has_type <https://sk.acdh.oeaw.ac.at/types/event/burial> ;
        cidoc:P4_has_time-span <https://sk.acdh.oeaw.ac.at/DWpers1105/event/0/time-span> ;
        cidoc:P7_took_place_at sk:DWplace00066 .

Just add this line with the respective person-URI: cidoc:P12_occurred_in_the_presence_of <https://sk.acdh.oeaw.ac.at/DWpers1105> ; And maybe change the language tag (line 2) to "en".

BOberreither commented 1 year ago

@linxOD

Very minor things:

linxOD commented 1 year ago

@linxOD

Very minor things:

  • [ ] shorten label:
<https://sk.acdh.oeaw.ac.at/DWpers0060/event/1> a cidoc:E13_Attribute_Assignment ;
        rdfs:label "Event type: Declared Dead"@en ;
        cidoc:P140_assigned_attribute_to sk:DWpers0060 ;
        cidoc:P2_has_type <https://sk.acdh.oeaw.ac.at/types/event/decl-dead> ;
        cidoc:P4_has_time-span <https://sk.acdh.oeaw.ac.at/DWpers0060/event/1/time-span> .

In this case "Event type: " is part of the data in indices/listper.xml. Should I still handle it or can it be removed from the data?