Last active
September 20, 2016 19:19
-
-
Save rsimon/9d1e56a9487a76773012b997e36f83a1 to your computer and use it in GitHub Desktop.
Amber Routes routes & annotations dummy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@prefix cnt: <http://www.w3.org/2011/content#> . | |
@prefix dcterms: <http://purl.org/dc/terms/> . | |
@prefix foaf: <http://xmlns.com/foaf/0.1/> . | |
@prefix oa: <http://www.w3.org/ns/oa#> . | |
@prefix pelagios: <http://pelagios.github.io/vocab/terms#> . | |
@prefix relations: <http://pelagios.github.io/vocab/relations#> . | |
@prefix xsd: <http://www.w3.org/2001/XMLSchema> . | |
# Any custom vocab terms that might be needed | |
@prefix topotime: <...> . | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/001> a pelagios:AnnotatedThing ; | |
rdf:type topotime:HRoute; | |
dcterms:title "Amber Routes Prehistoric" ; | |
foaf:homepage <...> ; | |
# Everything else OPTIONAL (but highly encouraged) | |
dcterms:description "..." ; | |
# Use ISO 8601 (YYYY[-MM-DD) or time interval (<start>/<end>) | |
# to express date information | |
dcterms:temporal "366/402" ; | |
# Additionally, we encourage the use of (one or multiple) | |
# PeriodO identifiers to denote time periods | |
dcterms:temporal <http://n2t.net/ark:/99152/p03wskd389m> ; # Greco-Roman | |
# Feel free to assign 'tags' to your data | |
dcterms:subject topotime:Flow ; | |
. | |
# One annotation per place | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#annotation/001> | |
a oa:Annotation ; | |
oa:hasTarget <https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/001> ; | |
oa:hasBody <http://pleiades.stoa.org/places/422995> ; | |
. | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#annotation/002> | |
a oa:Annotation ; | |
oa:hasTarget <https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/001> ; | |
oa:hasBody <http://pleiades.stoa.org/places/123456> ; | |
. | |
# | |
# ANOTHER ROUTE | |
# | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/002> a pelagios:AnnotatedThing ; | |
rdf:type topotime:HRoute; | |
dcterms:title "Amber Routes Medieval" ; | |
dcterms:description "..." ; | |
dcterms:temporal "366/402" ; | |
dcterms:temporal <http://n2t.net/ark:/99152/p03wskd389m> ; # Greco-Roman | |
dcterms:subject topotime:Flow ; | |
. | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#annotation/003> | |
a oa:Annotation ; | |
oa:hasTarget <https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/002> ; | |
oa:hasBody <http://pleiades.stoa.org/places/422995> ; | |
. | |
<https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#annotation/004> | |
a oa:Annotation ; | |
oa:hasTarget <https://github.com/kgeographer/topotime/hroutes/amber/pelagios.ttl#route/002> ; | |
oa:hasBody <http://pleiades.stoa.org/places/123456> ; | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment