No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tp-iss.ttl 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. @prefix : <http://www.w3.org/2002/07/owl#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix ssn: <http://purl.oclc.org/NET/ssnx/ssn#> .
  5. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  6. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  7. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  8. @prefix tp-iss: <http://homepages.laas.fr/nseydoux/ontologies/tp-iss#> .
  9. @base <http://homepages.laas.fr/nseydoux/ontologies/tp-iss> .
  10. <http://homepages.laas.fr/nseydoux/ontologies/tp-iss> rdf:type owl:Ontology .
  11. #################################################################
  12. # Annotation properties
  13. #################################################################
  14. ### http://purl.oclc.org/NET/ssnx/ssn#observes
  15. ssn:observes rdf:type owl:AnnotationProperty .
  16. #################################################################
  17. # Object Properties
  18. #################################################################
  19. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasSymptom
  20. tp-iss:hasSymptom rdf:type owl:ObjectProperty ;
  21. rdfs:domain tp-iss:Phenomenon ;
  22. rdfs:range tp-iss:WeatherObservation ;
  23. rdfs:label "a pour symptome"@fr;
  24. rdfs:label "has symptom"@en .
  25. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasCapital
  26. tp-iss:hasCapital rdf:type owl:ObjectProperty ;
  27. owl:inverseOf tp-iss:isCapital ;
  28. rdfs:domain tp-iss:Country ,
  29. [ rdf:type owl:Restriction ;
  30. owl:onProperty tp-iss:hasCapital ;
  31. owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
  32. owl:onClass tp-iss:City
  33. ] ;
  34. rdfs:range tp-iss:City ;
  35. rdfs:label "a pour capitale"@fr ;
  36. rdfs:label "has capital"@en .
  37. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasDate
  38. tp-iss:hasDate rdf:type owl:ObjectProperty ;
  39. rdfs:domain tp-iss:WeatherObservation ;
  40. rdfs:range tp-iss:Instant ;
  41. rdfs:label "a pour date"@fr;
  42. rdfs:label "has date"@en .
  43. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#isCapital
  44. tp-iss:isCapital rdf:type owl:ObjectProperty ;
  45. rdfs:subPropertyOf tp-iss:isIncludedIn ;
  46. rdfs:label "est la capitale de"@fr ;
  47. rdfs:label "is capital"@en .
  48. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasLocation
  49. tp-iss:hasLocation rdf:type owl:ObjectProperty ;
  50. rdfs:domain tp-iss:WeatherObservation ;
  51. rdfs:range tp-iss:Place ;
  52. rdfs:label "a pour localisation"@fr ;
  53. rdfs:label "has location"@en .
  54. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#isIncludedIn
  55. tp-iss:isIncludedIn rdf:type owl:ObjectProperty , owl:TransitiveProperty ;
  56. rdfs:domain tp-iss:Place ;
  57. rdfs:range tp-iss:Place ;
  58. rdfs:label "est inclus dans"@fr ;
  59. rdfs:label "is included in"@en .
  60. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#startsAt
  61. tp-iss:startsAt rdf:type owl:ObjectProperty ;
  62. rdfs:domain tp-iss:Phenomenon ;
  63. rdfs:range tp-iss:Instant ;
  64. rdfs:label "débute à"@fr ;
  65. rdfs:label "starts at"@en .
  66. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasCharacteristics
  67. tp-iss:hasCharacteristics rdf:type owl:ObjectProperty ;
  68. rdfs:domain tp-iss:Phenomenon ;
  69. rdfs:range tp-iss:Parameters ;
  70. rdfs:label "caractérisé par"@fr ;
  71. rdfs:label "has characteristics"@en .
  72. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#endsAt
  73. tp-iss:endsAt rdf:type owl:ObjectProperty ;
  74. rdfs:domain tp-iss:Phenomenon ;
  75. rdfs:range tp-iss:Instant ;
  76. rdfs:label "finit à"@fr ;
  77. rdfs:label "end at"@en .
  78. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#measures
  79. tp-iss:measures rdf:type owl:ObjectProperty ;
  80. rdfs:domain tp-iss:WeatherObservation ;
  81. rdfs:range tp-iss:Parameters ;
  82. rdfs:label "mesure"@fr ;
  83. rdfs:label "measures"@en .
  84. ### http://purl.oclc.org/NET/ssnx/ssn#attachedSystem
  85. ssn:attachedSystem rdf:type owl:ObjectProperty .
  86. ### http://purl.oclc.org/NET/ssnx/ssn#onPlatform
  87. ssn:onPlatform rdf:type owl:ObjectProperty .
  88. ### http://www.w3.org/2002/07/owl#OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405
  89. owl:OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405 rdf:type owl:ObjectProperty ;
  90. owl:propertyChainAxiom ( ssn:onPlatform
  91. owl:OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405
  92. ) ,
  93. ( owl:OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405
  94. tp-iss:isIncludedIn
  95. ) ;
  96. rdfs:label "se situe dans"@en .
  97. ### http://www.w3.org/2002/07/owl#compatibleWith
  98. owl:compatibleWith rdf:type owl:ObjectProperty ;
  99. rdfs:domain ssn:System ;
  100. rdfs:range ssn:System ;
  101. owl:propertyChainAxiom ( ssn:onPlatform
  102. ssn:attachedSystem
  103. ) ;
  104. rdfs:label "est compatible avec"@fr ;
  105. rdfs:label "compatible with"@en .
  106. #################################################################
  107. # Data properties
  108. #################################################################
  109. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasValue
  110. tp-iss:hasValue rdf:type owl:DatatypeProperty ;
  111. rdfs:domain tp-iss:WeatherObservation ;
  112. rdfs:range xsd:float ;
  113. rdfs:label "a pour valeur"@fr ;
  114. rdfs:label "has value"@en .
  115. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasTimestamp
  116. tp-iss:hasTimestamp rdf:type owl:DatatypeProperty ;
  117. rdfs:domain tp-iss:Instant ;
  118. rdfs:range xsd:dateTimeStamp ;
  119. rdfs:label "a pour timestamp"@fr ;
  120. rdfs:label "has timestamp"@en .
  121. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#hasDuration
  122. tp-iss:hasDuration rdf:type owl:DatatypeProperty .
  123. #################################################################
  124. # Classes
  125. #################################################################
  126. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Ensoleillement
  127. tp-iss:Sunshine rdf:type owl:Class ;
  128. rdfs:subClassOf tp-iss:NiceWeather ;
  129. rdfs:label "Ensoleillement"@fr ;
  130. rdfs:label "Sunshine"@en .
  131. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Rainfall
  132. tp-iss:Rainfall rdf:type owl:Class ;
  133. owl:equivalentClass [ owl:intersectionOf ( tp-iss:Phenomenon
  134. [ rdf:type owl:Restriction ;
  135. owl:onProperty tp-iss:hasSymptom ;
  136. owl:someValuesFrom [ owl:intersectionOf ( tp-iss:WeatherObservation
  137. [ rdf:type owl:Restriction ;
  138. owl:onProperty tp-iss:measures ;
  139. owl:hasValue owl:OWLNamedIndividual_2a8dc066_4bd2_454c_a56b_11db9452e7dd
  140. ]
  141. [ rdf:type owl:Restriction ;
  142. owl:onProperty tp-iss:hasValue ;
  143. owl:someValuesFrom [ rdf:type rdfs:Datatype ;
  144. owl:onDatatype xsd:float ;
  145. owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:float
  146. ]
  147. )
  148. ]
  149. ]
  150. ) ;
  151. rdf:type owl:Class
  152. ]
  153. ]
  154. ) ;
  155. rdf:type owl:Class
  156. ] ;
  157. rdfs:subClassOf tp-iss:BadWeather ;
  158. rdfs:label "Pluie"@en .
  159. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#BadWeather
  160. tp-iss:BadWeather rdf:type owl:Class ;
  161. rdfs:subClassOf tp-iss:Phenomenon ;
  162. rdfs:label "Mauvais temps"@fr;
  163. rdfs:label "Bad Weather"@en .
  164. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Fog
  165. tp-iss:Fog rdf:type owl:Class ;
  166. rdfs:subClassOf tp-iss:BadWeather ;
  167. rdfs:label "Brouillard"@fr;
  168. rdfs:label "Fog"@en .
  169. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Parameters
  170. tp-iss:Parameters rdf:type owl:Class ;
  171. rdfs:subClassOf ssn:Property ;
  172. rdfs:label "Paramètre mesurables"@fr;
  173. rdfs:label "Parameters"@en .
  174. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Instant
  175. tp-iss:Instant rdf:type owl:Class ;
  176. rdfs:label "Instant"@en, "Instant"@fr .
  177. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Phenomenon
  178. tp-iss:Phenomenon rdf:type owl:Class ;
  179. rdfs:label "Phénomène"@fr, "Phenomenon"@en .
  180. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#NiceWeather
  181. tp-iss:NiceWeather rdf:type owl:Class ;
  182. rdfs:subClassOf tp-iss:Phenomenon ;
  183. rdfs:label "Beau temps"@fr, "Nice Weather"@en .
  184. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#WeatherObservation
  185. tp-iss:WeatherObservation rdf:type owl:Class ;
  186. rdfs:label "Observation"@fr ,
  187. "Observation météo"@fr, "WeatherObservation"@en .
  188. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Place
  189. tp-iss:Place rdf:type owl:Class ;
  190. rdfs:label "Lieu"@fr, "Place"@en .
  191. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Country
  192. tp-iss:Country rdf:type owl:Class ;
  193. rdfs:subClassOf tp-iss:Place ;
  194. owl:disjointWith tp-iss:City ;
  195. rdfs:label "Pays"@fr, "Country"@en .
  196. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#City
  197. tp-iss:City rdf:type owl:Class ;
  198. rdfs:subClassOf tp-iss:Place ;
  199. rdfs:label "Ville"@fr, "City"@en .
  200. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Continent
  201. tp-iss:Continent rdf:type owl:Class ;
  202. rdfs:subClassOf tp-iss:Place ;
  203. rdfs:label "Continent"@en, "Continent"@fr .
  204. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Phénomène_court
  205. tp-iss:Phénomène_court rdf:type owl:Class ;
  206. owl:equivalentClass [ owl:intersectionOf ( tp-iss:Phenomenon
  207. [ rdf:type owl:Restriction ;
  208. owl:onProperty tp-iss:hasDuration ;
  209. owl:someValuesFrom [ rdf:type rdfs:Datatype ;
  210. owl:onDatatype xsd:int ;
  211. owl:withRestrictions ( [ xsd:maxInclusive "15"^^xsd:int
  212. ]
  213. )
  214. ]
  215. ]
  216. ) ;
  217. rdf:type owl:Class
  218. ] ;
  219. rdfs:subClassOf tp-iss:Phenomenon .
  220. ### http://purl.oclc.org/NET/ssnx/ssn#Platform
  221. ssn:Platform rdf:type owl:Class ;
  222. rdfs:subClassOf [ rdf:type owl:Restriction ;
  223. owl:onProperty owl:OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405 ;
  224. owl:someValuesFrom tp-iss:Place
  225. ] .
  226. ### http://purl.oclc.org/NET/ssnx/ssn#Property
  227. ssn:Property rdf:type owl:Class .
  228. ### http://purl.oclc.org/NET/ssnx/ssn#SensingDevice
  229. ssn:SensingDevice rdf:type owl:Class .
  230. ### http://purl.oclc.org/NET/ssnx/ssn#System
  231. ssn:System rdf:type owl:Class .
  232. ### http://www.w3.org/2002/07/owl#Parameter
  233. owl:Parameter rdf:type owl:Class ;
  234. rdfs:label "Paramètre observable"@en .
  235. #################################################################
  236. # Individuals
  237. #################################################################
  238. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#Temperature
  239. tp-iss:Temperature rdf:type owl:NamedIndividual ,
  240. tp-iss:Parameters ;
  241. rdfs:label "Température"@fr, "Temperature"@en .
  242. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_2be00ec6_20f0_4ce1_a370_949a455cb0a1
  243. tp-iss:OWLNamedIndividual_2be00ec6_20f0_4ce1_a370_949a455cb0a1 rdf:type owl:NamedIndividual ,
  244. tp-iss:WeatherObservation ;
  245. tp-iss:hasDate tp-iss:OWLNamedIndividual_4f731814_91f0_4d75_a5cf_4a0d3629a308 ;
  246. tp-iss:hasLocation tp-iss:OWLNamedIndividual_40c87ce2_4767_4cb0_9cd7_1dda03352a38 ;
  247. tp-iss:measures owl:OWLNamedIndividual_2a8dc066_4bd2_454c_a56b_11db9452e7dd ;
  248. tp-iss:hasValue "3.0"^^xsd:float ;
  249. rdfs:label "P1"@en .
  250. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_40c87ce2_4767_4cb0_9cd7_1dda03352a38
  251. tp-iss:OWLNamedIndividual_40c87ce2_4767_4cb0_9cd7_1dda03352a38 rdf:type owl:NamedIndividual ,
  252. tp-iss:City ,
  253. owl:Thing ;
  254. tp-iss:isIncludedIn tp-iss:OWLNamedIndividual_e2cea48d_7da1_41cf_9a6e_167bd3b64a8f ;
  255. rdfs:label "Toulouse"@en .
  256. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_4ef6700d_d3ca_437e_96a6_5f531744c9fd
  257. tp-iss:OWLNamedIndividual_4ef6700d_d3ca_437e_96a6_5f531744c9fd rdf:type owl:NamedIndividual ,
  258. tp-iss:OWLClass_6d5bb482_3e1e_47a0_be94_995d4df0f35e ;
  259. rdfs:label "Hygrométrie"@fr, "Humidity" .
  260. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_4f731814_91f0_4d75_a5cf_4a0d3629a308
  261. tp-iss:OWLNamedIndividual_4f731814_91f0_4d75_a5cf_4a0d3629a308 rdf:type owl:NamedIndividual ,
  262. tp-iss:Instant ;
  263. tp-iss:hasTimestamp "2015-10-11T13:20:00Z"^^xsd:dateTimeStamp ;
  264. rdfs:label "I1"@en .
  265. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_779078ef_da9a_47ac_bb61_59a30ffffa85
  266. tp-iss:OWLNamedIndividual_779078ef_da9a_47ac_bb61_59a30ffffa85 rdf:type owl:NamedIndividual ,
  267. tp-iss:Country ;
  268. tp-iss:hasCapital tp-iss:OWLNamedIndividual_b95bbab6_16d9_4238_9ba6_b4c2874a3912 ,
  269. tp-iss:OWLNamedIndividual_e51e3974_f657_469e_b7a1_6ebaf4935b6a ;
  270. rdfs:label "France"@fr .
  271. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_b95bbab6_16d9_4238_9ba6_b4c2874a3912
  272. tp-iss:OWLNamedIndividual_b95bbab6_16d9_4238_9ba6_b4c2874a3912 rdf:type owl:NamedIndividual ,
  273. tp-iss:City ;
  274. rdfs:label "Paris"@fr .
  275. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_c85bf788_ee5b_4da6_a867_08c79d7380e3
  276. tp-iss:OWLNamedIndividual_c85bf788_ee5b_4da6_a867_08c79d7380e3 rdf:type owl:NamedIndividual ,
  277. tp-iss:Parameters ;
  278. rdfs:label "Vitesse du vent"@en .
  279. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_ddf74788_0035_4c06_bdc7_e519b04c7f99
  280. tp-iss:OWLNamedIndividual_ddf74788_0035_4c06_bdc7_e519b04c7f99 rdf:type owl:NamedIndividual ,
  281. tp-iss:Phenomenon ;
  282. tp-iss:hasSymptom tp-iss:OWLNamedIndividual_2be00ec6_20f0_4ce1_a370_949a455cb0a1 ;
  283. rdfs:label "A1"@en .
  284. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_e2cea48d_7da1_41cf_9a6e_167bd3b64a8f
  285. tp-iss:OWLNamedIndividual_e2cea48d_7da1_41cf_9a6e_167bd3b64a8f rdf:type owl:NamedIndividual ,
  286. owl:Thing ;
  287. rdfs:label "France"@en .
  288. ### http://homepages.laas.fr/nseydoux/ontologies/tp-iss#OWLNamedIndividual_e51e3974_f657_469e_b7a1_6ebaf4935b6a
  289. tp-iss:OWLNamedIndividual_e51e3974_f657_469e_b7a1_6ebaf4935b6a rdf:type owl:NamedIndividual ,
  290. tp-iss:City ;
  291. rdfs:label "La ville Lumière"@fr .
  292. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_268609f4_8a6e_4076_a5c9_cfd144dde88e
  293. owl:OWLNamedIndividual_268609f4_8a6e_4076_a5c9_cfd144dde88e rdf:type owl:NamedIndividual ,
  294. owl:Parameter ;
  295. rdfs:label "Pression athmosphérique"@en .
  296. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_2a8dc066_4bd2_454c_a56b_11db9452e7dd
  297. owl:OWLNamedIndividual_2a8dc066_4bd2_454c_a56b_11db9452e7dd rdf:type owl:NamedIndividual ,
  298. owl:Parameter ;
  299. rdfs:label "Pluviométrie"@en .
  300. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_61229c23_41e4_4ec8_aa17_04ca3dcc42d2
  301. owl:OWLNamedIndividual_61229c23_41e4_4ec8_aa17_04ca3dcc42d2 rdf:type owl:NamedIndividual ,
  302. ssn:SensingDevice ;
  303. ssn:onPlatform owl:OWLNamedIndividual_61237d59_bb40_44ac_bfe3_d9e45ffe04d6 ;
  304. rdfs:label "Sonde T1"@en .
  305. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_61237d59_bb40_44ac_bfe3_d9e45ffe04d6
  306. owl:OWLNamedIndividual_61237d59_bb40_44ac_bfe3_d9e45ffe04d6 rdf:type owl:NamedIndividual ,
  307. ssn:Platform ;
  308. ssn:attachedSystem owl:OWLNamedIndividual_dbca17ec_b04b_47fd_a523_4698b3d40ba5 ;
  309. owl:OWLObjectProperty_c71b5265_ff81_4c91_b30d_a3e858340405 tp-iss:OWLNamedIndividual_40c87ce2_4767_4cb0_9cd7_1dda03352a38 ;
  310. rdfs:label "Platform1"@en .
  311. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_b544466b_449c_4af9_a082_33aa45fcda65
  312. owl:OWLNamedIndividual_b544466b_449c_4af9_a082_33aa45fcda65 rdf:type owl:NamedIndividual ,
  313. owl:Parameter ;
  314. rdfs:label "Hygrométrie"@en .
  315. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_babab508_1c69_472e_8f83_56a6d02a4b52
  316. owl:OWLNamedIndividual_babab508_1c69_472e_8f83_56a6d02a4b52 rdf:type owl:NamedIndividual ,
  317. owl:Parameter ;
  318. rdfs:label "Vitesse du vent"@en .
  319. ### http://www.w3.org/2002/07/owl#OWLNamedIndividual_dbca17ec_b04b_47fd_a523_4698b3d40ba5
  320. owl:OWLNamedIndividual_dbca17ec_b04b_47fd_a523_4698b3d40ba5 rdf:type owl:NamedIndividual ,
  321. ssn:SensingDevice ;
  322. ssn:observes owl:OWLNamedIndividual_2a8dc066_4bd2_454c_a56b_11db9452e7dd ;
  323. rdfs:label "Sonde_P1"@en .
  324. ### Generated by the OWL API (version 4.2.5.20160517-0735) https://github.com/owlcs/owlapi