#  This pretends to be the data page returned by a sensor

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

#  Just make temp ontlogy in this file - would really be elsewhere and shared
@prefix meteo:   <#>.
@keywords is, of, a.

sensor
    rainfall 2.0;
    windspeed 4.3;
    sun 0.9.


rainfall a rdf:Property; rdfs:label "rainfall".
windspeed a rdf:Property; rdfs:label "wind speed".
sun a rdf:Property;  rdfs:label "sunshine".

#ends
