forked from jonaslanzlinger/exercise-3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtbox.ttl
86 lines (57 loc) · 3.73 KB
/
tbox.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@prefix : <https://was-course.interactions.ics.unisg.ch/farm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix was: <https://was-course.interactions.ics.unisg.ch/farm-ontology#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@base <https://was-course.interactions.ics.unisg.ch/farm-ontology#> .
<https://was-course.interactions.ics.unisg.ch/farm-ontology#> rdf:type owl:Ontology ;
vann:preferredNamespacePrefix "was" ;
rdfs:comment "An ontology for representing knowledge useful for the management of farms."@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://was-course.interactions.ics.unisg.ch/farm-ontology#hasDimensions
was:hasDimensions rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#isCropped
was:isCropped rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#isMoistured
was:isMoistured rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty .
#################################################################
# Classes
#################################################################
### https://was-course.interactions.ics.unisg.ch/farm-ontology#Coordinates
was:Coordinates rdf:type owl:Class ;
rdfs:comment "A set of 4 coordinates [X1,Y1,X2,Y2] that define the opposite corners of a square section at points [X1,Y1] and [X2,Y2]."@en .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#Crop
was:Crop rdf:type owl:Class ;
rdfs:comment "A crop of type [Wheat, Corn]" .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#Farm
was:Farm rdf:type owl:Class ;
rdfs:comment "A plot of land devoted to the growing of crops."@en .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#IrrigateAffordance
was:IrrigateAffordance rdf:type owl:Class ;
rdfs:comment "An affordance offerred by the environment to agents for irrigating the soil."@en .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#ReadSoilMoistureAffordance
was:ReadSoilMoistureAffordance rdf:type owl:Class ;
rdfs:comment "An affordance offerred by the environment to agents for reading the moisture level of soil."@en .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#Section
was:Section rdf:type owl:Class ;
rdfs:comment "A section of land." .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#SoilMoisture
was:SoilMoisture rdf:type owl:Class ;
rdfs:comment "The level of moisture in soil."@en .
### https://was-course.interactions.ics.unisg.ch/farm-ontology#Tractor
was:Tractor rdf:type owl:Class ;
rdfs:comment "An automotive vehicle that offers affordances to agents for managing a farm."@en .
### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi