Skip to content

Commit

Permalink
Merge pull request #15 from dhlab-basel/doc-modifications
Browse files Browse the repository at this point in the history
Formatting
  • Loading branch information
Nora-Olivia-Ammann authored Sep 23, 2024
2 parents 8b14e80 + aec35fb commit 299ab25
Show file tree
Hide file tree
Showing 8 changed files with 789 additions and 779 deletions.
301 changes: 301 additions & 0 deletions example/Data/jacob_bernoulli_Basel_to_Geneva.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,301 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix schema: <https://schema.org/> .
@prefix js: <http://journey-star.dhlab.unibas.ch/ontology/JourneyStar#> .
@prefix : <http://journeyStar.dhlab.ch/data/JBReisebuechlein#> .
@base <http://journeyStar.dhlab.ch/data/JBReisebuechlein#> .

# Data – Reise von Basel nach Genf

# Journey
:JourneyBaselGenf a js:Journey ;
js:hasStartLocation :Basel;
js:hasDestination :Genf ;
js:hasDescription "Journey from Basel to Geneva with a long stay in Geneva.".

# JourneyStar Data
:JacobBernoulli js:hasJourney :JourneyBaselGenf.

# mentioned in Entry 1 of Reisbüchlein, using entry IRI
<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:mentionedIn <http://rdfh.ch/0801/GcXDoaZgRu6E2scC77h6gw> .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStartDate "1676-08-20"^^xsd:date .
<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasEndDate "1678-05-08"^^xsd:date.
<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasDescription "Duration of stay in Geneva 20 months".


<< :JourneyBaselGenf js:hasStartLocation :Basel >> js:hasDeparture "1676-08-20"^^xsd:date .
<< :JourneyBaselGenf js:hasDestination :Genf >> js:hasArrival "1676-08-27"^^xsd:dateTime .

### Basel–Liestal###
##################################

:StageBaselLiestal a js:Journey;
js:hasStartLocation :Basel;
js:hasDestination :Liestal ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:hasStartDate "1676-08-20"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:hasEndDate "1676-08-21"^^xsd:date.


# mentioned in Page 13 of Reisebuechlein, using page IRI
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:mentionedIn <http://rdfh.ch/0801/zcLJ81hdQFaH8Kq3kmcqCQ> .

<< :StageBaselLiestal js:hasStartLocation :Basel >> js:hasDeparture "1676-08-20"^^xsd:date .
<< :StageBaselLiestal js:hasDestination :Liestal >> js:hasArrival "1676-08-20"^^xsd:date .

#Stay
:StageBaselLiestal js:hasStay :StayStageBaselLiestal .

:StayStageBaselLiestal a js:Stay ;
js:hasAccommodation :Schluessel .

:Schluessel a js:Accommodation ;
schema:name "Schlüssel" .

# here: combined cost
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:hasCost 2 .
<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:hasCost 2 >> js:hasCurrency "Francken".
<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBaselLiestal >> js:hasCost 2 >> js:hasDescription "Total cost of accomodation and dining.".

### Stage Liestal–Waldenburg ###
##################################

:StageLiestalWaldenburg a js:Journey;
js:hasStartLocation :Liestal;
js:hasDestination :Waldenburg ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLiestalWaldenburg .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLiestalWaldenburg >> js:hasStartDate "1676-08-21"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLiestalWaldenburg >> js:hasEndDate "1676-08-22"^^xsd:date.
# mentioned in page 14, page IRI used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLiestalWaldenburg >> js:mentionedIn <http://rdfh.ch/0801/xNykPawcT36A5cEFSTSHKg> .

<< :StageLiestalWaldenburg js:hasStartLocation :Liestal >> js:hasDeparture "1676-08-21"^^xsd:date .
<< :StageLiestalWaldenburg js:hasDestination :Waldenburg >> js:hasArrival "1676-08-21"^^xsd:date .

#Stay
:StageLiestalWaldenburg js:hasStay :StayStageLiestalWaldenburg .

:StayStageLiestalWaldenburg a js:Stay ;
js:hasAccommodation :WaldenburgSchloss .

:WaldenburgSchloss a js:Accommodation ;
schema:name "Waldenburg Schloss" .


### Stage Waldenburg-Solothurn###
##################################
:StageWaldenburgSolothurn a js:Journey;
js:hasStartLocation :Waldenburg;
js:hasDestination :Solothurn ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageWaldenburgSolothurn .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageWaldenburgSolothurn >> js:hasStartDate "1676-08-22"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageWaldenburgSolothurn >> js:hasEndDate "1676-08-23"^^xsd:date.

# mentioned in page 14, page IRI used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageWaldenburgSolothurn >> js:mentionedIn <http://rdfh.ch/0801/xNykPawcT36A5cEFSTSHKg> .

<< :StageWaldenburgSolothurn js:hasStartLocation :Waldenburg >> js:hasDeparture "1676-08-22"^^xsd:date .
<< :StageWaldenburgSolothurn js:hasDestination :Solothurn >> js:hasArrival "1676-08-22"^^xsd:date .

#Stay
:StageWaldenburgSolothurn js:hasStay :StayStageWaldenburgSolothurn .

:StayStageWaldenburgSolothurn a js:Stay ;
js:hasAccommodation :Cronen .

:Cronen a js:Accommodation ;
schema:name "Cronen" .

### The region that contains the start of the description of Solothurn is added with its IRI.
<< :StageWaldenburgSolothurn js:hasDestination :Solothurn >> :hasDescription <http://rdfh.ch/0801/cnwPZJ2aTDSLtPWwp1zACA> .

### Stage Solothurn-Biel###
##################################
:StageSolothurnBiel a js:Journey;
js:hasStartLocation :Solothurn;
js:hasDestination :Biel ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:hasStartDate "1676-08-23"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:hasEndDate "1676-08-24"^^xsd:date.

<< :StageSolothurnBiel js:hasStartLocation :Solothurn >> js:hasDeparture "1676-08-23"^^xsd:date .
<< :StageSolothurnBiel js:hasDestination :Biel >> js:hasArrival "1676-08-23"^^xsd:date .

#Stay
:StageSolothurnBiel js:hasStay :StayStageSolothurnBiel .

:StayStageSolothurnBiel a js:Stay ;
js:hasAccommodation :WeissenCreuetz .

:WeissenCreuetz a js:Accommodation ;
schema:name "Weissen Creütz" .

# here: combined cost
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:hasCost 5 .
<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:hasCost 5 >> js:hasCurrency "Francken".

#comment
<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:hasCost 5 >> js:hasDescription "Paid for others".

### mentionedIn page 15, page IRI is used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageSolothurnBiel >> js:mentionedIn <http://rdfh.ch/0801/GVg8b_JYSryLAPUj-1GWSw> .

### Stage Biel-Avenches###
##################################

:StageBielAvenches a js:Journey;
js:hasStartLocation :Biel;
js:hasDestination :Avenches ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:hasStartDate "1676-08-24"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:hasEndDate "1676-08-25"^^xsd:date.

<< :StageBielAvenches js:hasStartLocation :Biel >> js:hasDeparture "1676-08-24"^^xsd:date .
<< :StageBielAvenches js:hasDestination :Avenches >> js:hasArrival "1676-08-24"^^xsd:date .

#Stay
:StageBielAvenches js:hasStay :StayStageBielAvenches .

:StayStageBielAvenches a js:Stay ;
js:hasAccommodation :Pfauen .

:Pfauen a js:Accommodation ;
schema:name "Pfauen" .

# here: combined cost
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:hasCost 16 .
<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:hasCost 16 >> js:hasCurrency "schweitzbz".

<< << << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:hasCost 16 >> js:hasDescription "Total cost of accomodation and dining".

### mentionedIn page 16, page IRI is used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageBielAvenches >> js:mentionedIn <http://rdfh.ch/0801/e4h3lbvlRVazAHR9Vgnlpw> .

### Stage Avenches-Lausanne###
##################################

:StageAvenchesLausanne a js:Journey;
js:hasStartLocation :Avenches;
js:hasDestination :Lausanne ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageAvenchesLausanne .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageAvenchesLausanne >> js:hasStartDate "1676-08-25"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageAvenchesLausanne >> js:hasEndDate "1676-08-26"^^xsd:date.



<< :StageAvenchesLausanne js:hasStartLocation :Avenches >> js:hasDeparture "1676-08-25"^^xsd:date .
<< :StageAvenchesLausanne js:hasDestination :Lausanne >> js:hasArrival "1676-08-25"^^xsd:date .

#Stay
:StageAvenchesLausanne js:hasStay :StayStageAvenchesLausanne .

:StayStageAvenchesLausanne a js:Stay ;
js:hasAccommodation :alOurs .

:alOurs a js:Accommodation ;
schema:name "à l'ours" .

# activity
:StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_lunch .

:StageAvenchesLausanne_lunch a js:Dining ;
js:mealType "Lunch" ;
js:hasLocation "La maison de ville".

<< :StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_lunch >> js:hasCost 1 .
<< << :StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_lunch >> js:hasCost 1 >> js:hasCurrency "Francken".
### mentionedIn page 17, page IRI is used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageAvenchesLausanne >> js:mentionedIn <http://rdfh.ch/0801/DHpF4ip3SbSdxm97CcEeNA> .

# activity
:StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_dinner .

:StageAvenchesLausanne_dinner a js:Dining;
js:mealType "Dinner".

<< :StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_dinner >> js:hasCost 17 .
<< << :StageAvenchesLausanne js:hasActivity :StageAvenchesLausanne_dinner >> js:hasCost 17 >> js:hasCurrency "schweitzbz".


### Stage Lausanne-Coppet ###
##################################

:StageLausanneCoppet a js:Journey;
js:hasStartLocation :Lausanne;
js:hasDestination :Coppet ;
js:meanOfTransportation :Horse .

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLausanneCoppet .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLausanneCoppet >> js:hasStartDate "1676-08-26"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLausanneCoppet >> js:hasEndDate "1676-08-27"^^xsd:date.
### mentionedIn page 17, page IRI is used
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageLausanneCoppet >> js:mentionedIn <http://rdfh.ch/0801/DHpF4ip3SbSdxm97CcEeNA> .

<< :StageLausanneCoppet js:hasStartLocation :Lausanne >> js:hasDeparture "1676-08-26"^^xsd:date .
<< :StageLausanneCoppet js:hasDestination :Coppet >> js:hasArrival "1676-08-26"^^xsd:date .

# activity
:StageLausanneCoppet js:hasActivity :StageLausanneCoppet_lunch .

:StageLausanneCoppet_lunch a js:Dining;
js:mealType "Lunch".

<< :StageAvenchesLausanne js:hasActivity :StageLausanneCoppet_lunch >> js:hasCost 12 .
<< << :StageAvenchesLausanne js:hasActivity :StageLausanneCoppet_lunch >> js:hasCost 12 >> js:hasCurrency "schweitzbz".

# activity
:StageLausanneCoppet js:hasActivity :StageLausanneCoppet_dinner .

:StageLausanneCoppet_dinner a js:Dining;
js:mealType "Dinner".

<< :StageLausanneCoppet js:hasActivity :StageLausanneCoppet_dinner >> js:hasCost 19 .
<< << :StageLausanneCoppet js:hasActivity :StageLausanneCoppet_dinner >> js:hasCost 19 >> js:hasCurrency "schweitzbz".

#
### Stage Coppet-Genf ###
##################################

<< :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageCoppetGenf .
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageCoppetGenf >> js:hasStartDate "1676-08-27"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageCoppetGenf >> js:hasEndDate "1678-05-08"^^xsd:date.
<< << :JacobBernoulli js:hasJourney :JourneyBaselGenf >> js:hasStage :StageCoppetGenf >> js:mentionedIn <http://rdfh.ch/0801/DHpF4ip3SbSdxm97CcEeNA>, <http://rdfh.ch/0801/CsdlPD0YRc2X9PZg2e59Jw> .

:StageCoppetGenf a js:Journey;
js:hasStartLocation :Coppet;
js:hasDestination :Genf ;
js:meanOfTransportation :Horse .

# AK: check dates >> inconsistencies departure arrival
<< :StageCoppetGenf js:hasStartLocation :Coppet >> js:hasDeparture "1676-08-27"^^xsd:date .
<< :StageCoppetGenf js:hasDestination :Genf >> js:hasArrival "1676-08-27"^^xsd:date .

:StageCoppetGenf js:hasStay :StayStageCoppetGenf .

:StayStageCoppetGenf a js:Stay;
js:hasAccommodation :TroisRois .

:TroisRois a js:Accommodation;
schema:name "Trois rois" .


# activity
:StageCoppetGenf js:hasActivity :StageCoppetGenf_meal .

:StageCoppetGenf_meal a js:Dining;
js:hasDescription "3 meals 1 Rchthl (upon arrival)".

### mentionedIn region text3 of page 17
<< :StageCoppetGenf js:hasActivity :StageCoppetGenf_meal >> js:mentionedIn <http://rdfh.ch/0801/JAzTtpHsS0qKjH4TdM9WeQ> .
Loading

0 comments on commit 299ab25

Please sign in to comment.