Giter Site home page Giter Site logo

Comments (1)

rwarren2 avatar rwarren2 commented on July 2, 2024 1

This is because of an annoying corner case: some people want to record events that occur on monuments and others just want to records monuments as they are. A typical example is the ShipWrecks vs the Ships or Hulls: it's the same things but it's status has changed along with its position. The other is the reinterment of remains as with the Canadian War Memorial example with currently uses the movedFrom instance (See #32).

To solve your immediate problem, if you just want to say the Tombstone only existed from 1861 to 1870.

  <graves:Tombstone rdf:about="#TheSpecificTombstone">
   <graves:inscription>A Canadian Soldier of the Great War</graves:inscription>
   <graves:epitaph>Known unto God</graves:epitaph>
   <prov:startedAtTime rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1861</prov:startedAtTime>
   <prov:endedAtTime rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1870</prov:endedAtTime>
  <graves:hasStatus rdf:resources="https://rdf.muninn-project.org/ontologies/graves#Serviceable"/>
  </graves:Tombstone> 

if the Tombstone was only ruined and not destroyed in 1807:

  <graves:Tombstone rdf:about="#TheSpecificTombstoneRuined">
   <time:after rdf:resource=""/>
   <graves:inscription>A Canadian Soldier of the Great War</graves:inscription>
   <graves:epitaph>Known unto God</graves:epitaph>
   <prov:startedAtTime rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1870</prov:startedAtTime>
  <graves:hasStatus rdf:resources="https://rdf.muninn-project.org/ontologies/graves#Ruins"/>
  </graves:Tombstone> 

If you'd like to add a specific event that leads to its demise:

 <prov:Activity rdf:about="...">
  <time:after rdf:resource="#TheSpecificTombstone"/>
  <time:before rdf:resource="#TheSpecificTombstoneRuined"/>
  <rdfs:label xml:lang="en">Tombstone destroyed by vandals in 1870</rdfs:label>
  <prov:startedAtTime rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1870</prov:startedAtTime>
  <prov:endedAtTime rdf:datatype="http://www.w3.org/2001/XMLSchema#gYear">1870</prov:endedAtTime>
 <prov:Activity>

Please ignore next_instance and previous_instances from now on.

from graves.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.