Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

concentration-sensor

::{tab-item} Turtle

@prefix P: <urn:___param___#> .
@prefix ns1: <http://data.ashrae.org/standard223#> .
@prefix ns3: <http://qudt.org/schema/qudt/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

P:name a ns1:Sensor ;
    rdfs:label P:label ;
    ns1:hasObservationLocation P:where ;
    ns1:observes P:property .

P:property ns1:ofConstituent P:substance ;
    ns3:hasUnit P:unit .

:: ::{tab-item} With Inline Dependencies

@prefix P: <urn:___param___#> .
@prefix ns1: <http://data.ashrae.org/standard223#> .
@prefix ns2: <http://qudt.org/schema/qudt/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

P:name a ns1:Sensor ;
    rdfs:label P:label ;
    ns1:hasObservationLocation P:where ;
    ns1:observes P:property .

P:property-owner ns1:hasProperty P:property .

P:property-constituent a ns1:EnumerationKind-Substance .

P:unit a ns2:Unit .

P:property a ns1:QuantifiableProperty ;
    ns1:ofConstituent P:property-constituent,
        P:substance ;
    ns2:hasUnit P:unit .

::

Parameters

Dependencies

Dependents

Nothing depends on this template.

Graph Visualization

::{tab-item} Template :: ::{tab-item} With Inline Dependencies ::