historical-time / archaeometry-si

Achaeometry Special Issue on Chronological Modelling project
MIT License
2 stars 0 forks source link

CIDOC-CRM representation of the LM IB period #2

Open zoometh opened 9 months ago

zoometh commented 9 months ago

Aim: to create a CIDOC-CRM representation of the different assessments of the dating of the Late Minoan period IB made by different researchers


The dataframe is here: https://github.com/historical-time/archaeometry-si/blob/main/docs/LMIB.tsv

I asked ChatGPT 3.5 to convert this dataframe into turtle:

image

I have copied GPT answer and added it in https://www.ldf.fi/service/rdf-grapher this turtle code:

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/>.
@prefix ex: <http://example.org/>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.

# Pendlebury 1954
ex:Pendlebury1954 a crm:E29_Actor ;
  crm:P82a_begin_of_the_begin [
    a crm:E63_Beginning_of_Existence ;
    crm:P4_has_time-span ex:Pendlebury1954_begin
  ] ;
  crm:P82b_end_of_the_end [
    a crm:E64_End_of_Existence ;
    crm:P4_has_time-span ex:Pendlebury1954_end
  ] ;
  a crm:E4_Period ;
  crm:P82_at_some_time_within [
    a crm:E52_Time-Span ;
    crm:P82a_begin_of_the_begin [
      a crm:E63_Beginning_of_Existence ;
      crm:P4_has_time-span ex:Pendlebury1954_begin
    ] ;
    crm:P82b_end_of_the_end [
      a crm:E64_End_of_Existence ;
      crm:P4_has_time-span ex:Pendlebury1954_end
    ]
  ] .

ex:Pendlebury1954_begin a crm:E61_Time-Primitive ;
  crm:P82a_begin_of_the_begin [
    a crm:E52_Time-Span ;
    crm:P82a_begin_of_the_begin "-1500"^^xsd:integer ;
    crm:P82b_end_of_the_end "-1450"^^xsd:integer
  ] .

ex:Pendlebury1954_end a crm:E61_Time-Primitive ;
  crm:P82a_begin_of_the_begin [
    a crm:E52_Time-Span ;
    crm:P82a_begin_of_the_begin "-1450"^^xsd:integer ;
    crm:P82b_end_of_the_end "-1425"^^xsd:integer
  ] .
# Hankey & Warren 1974 (similar representations for other authors)
# Manning et al. 2006
# Schelmerdine 2008
# BSA 2022

The result is:

image