|
| 1 | +@prefix mod: <https://w3id.org/mod#> . |
| 2 | +@prefix ns: <http://webcam.linkeddata.Gijon.es.org/ontology/airquality#> . |
| 3 | +@prefix owl: <http://www.w3.org/2002/07/owl#> . |
| 4 | +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
| 5 | +@prefix sc: <https://schema.org/> . |
| 6 | +@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . |
| 7 | + |
| 8 | +sc:latitude a owl:DatatypeProperty ; |
| 9 | + rdfs:label "latitude" ; |
| 10 | + rdfs:domain ns:EstacionMedicion ; |
| 11 | + rdfs:range xsd:Decimal . |
| 12 | + |
| 13 | +sc:longitude a owl:DatatypeProperty ; |
| 14 | + rdfs:label "longitude" ; |
| 15 | + rdfs:domain ns:EstacionMedicion ; |
| 16 | + rdfs:range xsd:Decimal . |
| 17 | + |
| 18 | +ns: a owl:Ontology ; |
| 19 | + mod:createdWith <https://chowlk.linkeddata.es/> . |
| 20 | + |
| 21 | +ns:tieneNumeroEstacion a owl:DatatypeProperty ; |
| 22 | + rdfs:label "tiene numero estacion" ; |
| 23 | + rdfs:domain ns:EstacionMedicion ; |
| 24 | + rdfs:range xsd:Integer . |
| 25 | + |
| 26 | +ns:tieneTitulo a owl:DatatypeProperty ; |
| 27 | + rdfs:label "tiene titulo" ; |
| 28 | + rdfs:domain ns:EstacionMedicion ; |
| 29 | + rdfs:range xsd:String . |
| 30 | + |
| 31 | +ns:tieneFecha a owl:DatatypeProperty ; |
| 32 | + rdfs:label "tiene fecha" ; |
| 33 | + rdfs:domain ns:Medicion ; |
| 34 | + rdfs:range xsd:Date . |
| 35 | + |
| 36 | +ns:tienePeriodo a owl:DatatypeProperty ; |
| 37 | + rdfs:label "tiene periodo" ; |
| 38 | + rdfs:domain ns:Medicion ; |
| 39 | + rdfs:range xsd:Integer . |
| 40 | + |
| 41 | +ns:tieneSO2 a owl:DatatypeProperty ; |
| 42 | + rdfs:label "tiene SO2" ; |
| 43 | + rdfs:domain ns:Medicion ; |
| 44 | + rdfs:range xsd:Decimal . |
| 45 | + |
| 46 | +ns:tieneH2S a owl:DatatypeProperty ; |
| 47 | + rdfs:label "tiene H2S" ; |
| 48 | + rdfs:domain ns:Medicion ; |
| 49 | + rdfs:range xsd:Decimal . |
| 50 | + |
| 51 | +ns:tieneNO a owl:DatatypeProperty ; |
| 52 | + rdfs:label "tiene NO" ; |
| 53 | + rdfs:domain ns:Medicion ; |
| 54 | + rdfs:range xsd:Decimal . |
| 55 | + |
| 56 | +ns:tieneNO2 a owl:DatatypeProperty ; |
| 57 | + rdfs:label "tiene NO2" ; |
| 58 | + rdfs:domain ns:Medicion ; |
| 59 | + rdfs:range xsd:Decimal . |
| 60 | + |
| 61 | +ns:tieneNOX a owl:DatatypeProperty ; |
| 62 | + rdfs:label "tiene NOX" ; |
| 63 | + rdfs:domain ns:Medicion ; |
| 64 | + rdfs:range xsd:Decimal . |
| 65 | + |
| 66 | +ns:tieneO3 a owl:DatatypeProperty ; |
| 67 | + rdfs:label "tiene O3" ; |
| 68 | + rdfs:domain ns:Medicion ; |
| 69 | + rdfs:range xsd:Decimal . |
| 70 | + |
| 71 | +ns:tieneDireccionViento a owl:DatatypeProperty ; |
| 72 | + rdfs:label "tiene direccion viento" ; |
| 73 | + rdfs:domain ns:Medicion ; |
| 74 | + rdfs:range xsd:Integer . |
| 75 | + |
| 76 | +ns:tieneVelocidadViento a owl:DatatypeProperty ; |
| 77 | + rdfs:label "tiene velocidad viento" ; |
| 78 | + rdfs:domain ns:Medicion ; |
| 79 | + rdfs:range xsd:Decimal . |
| 80 | + |
| 81 | +ns:tieneTemperatura a owl:DatatypeProperty ; |
| 82 | + rdfs:label "tiene temperatura" ; |
| 83 | + rdfs:domain ns:Medicion ; |
| 84 | + rdfs:range xsd:Decimal . |
| 85 | + |
| 86 | +ns:tieneHumedadRelativa a owl:DatatypeProperty ; |
| 87 | + rdfs:label "tiene humedad relativa" ; |
| 88 | + rdfs:domain ns:Medicion ; |
| 89 | + rdfs:range xsd:Integer . |
| 90 | + |
| 91 | +ns:tienePRB a owl:DatatypeProperty ; |
| 92 | + rdfs:label "tiene PRB" ; |
| 93 | + rdfs:domain ns:Medicion ; |
| 94 | + rdfs:range xsd:Integer . |
| 95 | + |
| 96 | +ns:tieneRS a owl:DatatypeProperty ; |
| 97 | + rdfs:label "tiene RS" ; |
| 98 | + rdfs:domain ns:Medicion ; |
| 99 | + rdfs:range xsd:Integer . |
| 100 | + |
| 101 | +ns:tieneLL a owl:DatatypeProperty ; |
| 102 | + rdfs:label "tiene LL" ; |
| 103 | + rdfs:domain ns:Medicion ; |
| 104 | + rdfs:range xsd:Integer . |
| 105 | + |
| 106 | +ns:realizadaEn a owl:ObjectProperty ; |
| 107 | + rdfs:label "realizada en" ; |
| 108 | + rdfs:domain ns:Medicion ; |
| 109 | + rdfs:range ns:EstacionMedicion . |
| 110 | + |
| 111 | +ns:EstacionMedicion a owl:Class ; |
| 112 | + rdfs:label "Estacion de Medicion" . |
| 113 | + |
| 114 | +ns:Medicion a owl:Class ; |
| 115 | + rdfs:label "Medicion" . |
0 commit comments