Skip to content

Commit

Permalink
adding my ontology with photograph description and some photograph in…
Browse files Browse the repository at this point in the history
…fo in index
  • Loading branch information
kurijn committed Mar 21, 2024
1 parent 09575c3 commit 89d52ac
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
7 changes: 7 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix teach: <http://linkedscience.org/teach/ns#>.
@prefix konto: <https://kurijn.github.io/konto/>.

<#> dcterms:created "2024-03-04"^^xsd:Date.

Expand All @@ -50,6 +51,12 @@
foaf:name "Knowledge Graph course students"@en;
foaf:member <https://kurijn.github.io/#me>, <https://lukv.github.io/#me>, <https://users.ugent.be/~alatinis/>, <https://pietervdvn.github.io/me.jsonld>
].

<https://photos.app.goo.gl/dtD7Btve2q9yqoa96> a konto:Photo;
konto:photoning <https://users.ugent.be/~alatinis/>.

<https://scontent.fbru5-1.fna.fbcdn.net/v/t1.6435-9/86970645_2734649763322833_5569999269202493440_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=5f2048&_nc_ohc=lFkqySvG1GQAX_VWhng&_nc_oc=Adj8zz42g9eS7wbSMzI1rPeqBf-O7iQtMXTuvwrxg9V3Tx9mo5uK1JmzqeSvzOayQSc&_nc_ht=scontent.fbru5-1.fna&oh=00_AfBKbVtLiRwyk6d11aOItDBiIqX8HTLeeSovmmN9jF_y0g&oe=6622EE27> a konto:Photo;
konto:photographedBy <#me>.
</script>

<link rel="stylesheet" href="/assets/css/style.css?v=a3803b719b600d52ced91eadb8f8c52b5a218679">
Expand Down
36 changes: 36 additions & 0 deletions konto.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<script type="text/turtle">
@prefix konto: <https://kurijn.github.io/konto/>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dcelements: <http://purl.org/dc/elements/1.1/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.

### Classes ###

konto:Photo rdfs:subClassOf foaf:Image;
rdfs:label "photo"@en;
rdfs:comment "A photo. A definition loyal to the ethymological meaning: there must have been photons at the basis of its generation."@en;
rdfs:isDefinedBy <http://kurijn.github.io/> ;
owl:equivalentClass <http://schema.org/Photograph>.

konto:PhysicalReality a rdfs:Class;
rdfs:label "physical reality"@en;
rdfs:comment "Anything in the physical realm."@en;
owl:equivalentClass <http://www.europeana.eu/schemas/edm/PhysicalThing>;
owl:subClassOf rdfs:Resource.

<http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing> rdfs:subClassOf konto:PhysicalReality.

### Properties ###

konto:photographedBy rdfs:subPropertyOf foaf:maker;
rdfs:label "photographed by"@en;
rdfs:domain konto:Photo;
rdfs:range foaf:Agent.

konto:photoning rdfs:subPropertyOf foaf:depicts;
rdfs:label "photoning"@en;
rdfs:comment "A new verb: depicting, but uniquely to be used for photos!"@en;
rdfs:domain konto:Photo;
rdfs:range konto:PhysicalReality.
</script>

0 comments on commit 89d52ac

Please sign in to comment.