crm:P118_overlaps_in_time_with leaf node


URI

http://www.cidoc-crm.org/cidoc-crm/P118_overlaps_in_time_with

Label

P118 overlaps in time with

Description

Scope note:
This property identifies an overlap between the instances of E52 Time-Span of two instances of E2 Temporal Entity.

It implies a temporal order between the two entities: if A overlaps in time B, then A must start before B, and B must end after A. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated).

This property is the same as the "overlaps / overlapped-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).

Examples:
- the Iron Age (E4) overlaps in time with the Roman period (E4)

In First Order Logic:
P118(x,y) ⊃ E2(x)
P118(x,y) ⊃ E2(y)

Usage

DOMAINPROPERTYRANGE
crm:E2_Temporal_Entity crm:P118_overlaps_in_time_with crm:E2_Temporal_Entity

Implementation

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix ecrm: <http://erlangen-crm.org/current/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

crm:P118_overlaps_in_time_with a owl:ObjectProperty ;
    rdfs:label "P118 overlaps in time with"@en ;
    rdfs:comment """Scope note:
This property identifies an overlap between the instances of E52 Time-Span of two instances of E2 Temporal Entity.

It implies a temporal order between the two entities: if A overlaps in time B, then A must start before B, and B must end after A. This property is only necessary if the relevant time spans are unknown (otherwise the relationship can be calculated).

This property is the same as the "overlaps / overlapped-by" relationships of Allen’s temporal logic (Allen, 1983, pp. 832-843).

Examples:
- the Iron Age (E4) overlaps in time with the Roman period (E4)

In First Order Logic:
P118(x,y) ⊃ E2(x)
P118(x,y) ⊃ E2(y)"""@en ;
    rdfs:domain crm:E2_Temporal_Entity ;
    rdfs:range crm:E2_Temporal_Entity ;
    owl:equivalentProperty ecrm:P118_overlaps_in_time_with ;
    owl:inverseOf crm:P118i_is_overlapped_in_time_by ;
    skos:notation "P118"^^xsd:string .