is numerically comparable to


URI

http://semanticscience.org/resource/isNumericallyComparableTo

Label

is numerically comparable to

Description

is numerically comparable to is a comparison relation between two quantities whose datatype value can be compared.

Usage

DOMAINPROPERTYRANGE
quantity is numerically comparable to quantity

Implementation

@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sio: <http://semanticscience.org/resource/> .

sio:isNumericallyComparableTo a owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "is numerically comparable to"@en ;
    dct:description "is numerically comparable to is a comparison relation between two quantities whose datatype value can be compared."@en ;
    rdfs:domain sio:Quantity ;
    rdfs:isDefinedBy <http://semanticscience.org/ontology/sio/v1.53/sio-subset-labels.owl> ;
    rdfs:range sio:Quantity ;
    rdfs:subPropertyOf sio:isComparableTo .