snap:TwoDimensionalRegion leaf node


URI

http://www.ifomis.org/bfo/1.1/snap#TwoDimensionalRegion

Label

two_dimensional_region

Description

Definition: A spatial region [snap:SpatialRegion] with two dimensions. - Examples: the surface of a cube-shaped part of space, the surface of a sphere-shaped part of space, the surface of a rectilinear planar figure-shaped part of space

Usage

Instances of snap:TwoDimensionalRegion can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
dc:contributor owl:AnnotationProperty owl:Thing
dc:creator owl:AnnotationProperty owl:Thing
dc:format owl:AnnotationProperty owl:Thing
dc:identifier owl:AnnotationProperty owl:Thing
dc:language owl:AnnotationProperty owl:Thing
dc:publisher owl:AnnotationProperty owl:Thing
dc:rights owl:AnnotationProperty owl:Thing
dc:source owl:AnnotationProperty owl:Thing
dc:title owl:AnnotationProperty owl:Thing

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix snap: <http://www.ifomis.org/bfo/1.1/snap#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

snap:TwoDimensionalRegion a owl:Class ;
    rdfs:label "two_dimensional_region"^^xsd:string ;
    rdfs:comment "Definition: A spatial region [snap:SpatialRegion] with two dimensions."^^xsd:string,
        "Examples: the surface of a cube-shaped part of space, the surface of a sphere-shaped part of space, the surface of a rectilinear planar figure-shaped part of space"^^xsd:string ;
    rdfs:subClassOf snap:SpatialRegion ;
    owl:disjointWith snap:OneDimensionalRegion,
        snap:ThreeDimensionalRegion,
        snap:ZeroDimensionalRegion .