@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <http://www.w3.org/2003/01/geo/wgs84_pos#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ns1: <http://www.opengis.net/ont/geosparql#> . @prefix metadata_def: <http://data.bioontology.org/metadata/def/> . @prefix metadata: <http://data.bioontology.org/metadata/> . ns0:Point metadata_def:mappingLoom "point" ; metadata_def:mappingSameURI ns0:Point ; metadata_def:prefLabel "Point" ; metadata:prefixIRI "wgs84:Point" ; a owl:Class ; rdfs:comment """ Uniquely identified by lat/long/alt. i.e. spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT), lat(P2, LAT), long(P2, LONG), alt(P2, ALT). sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2). """, "A point, typically described using a coordinate system relative to Earth, such as WGS84."@en ; rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ; rdfs:label "Point"@en ; rdfs:subClassOf ns1:Geometry .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns1: <http://www.opengis.net/ont/geosparql#> .
@prefix metadata_def: <http://data.bioontology.org/metadata/def/> .
@prefix metadata: <http://data.bioontology.org/metadata/> .

ns0:Point
    metadata_def:mappingLoom "point" ;
    metadata_def:mappingSameURI ns0:Point ;
    metadata_def:prefLabel "Point" ;
    metadata:prefixIRI "wgs84:Point" ;
    a owl:Class ;
    rdfs:comment """ 
Uniquely identified by lat/long/alt. i.e.

spaciallyIntersects(P1, P2) :- lat(P1, LAT), long(P1, LONG), alt(P1, ALT),
  lat(P2, LAT), long(P2, LONG), alt(P2, ALT).

sameThing(P1, P2) :- type(P1, Point), type(P2, Point), spaciallyIntersects(P1, P2).
  """, "A point, typically described using a coordinate system relative to Earth, such as WGS84."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2003/01/geo/wgs84_pos#> ;
    rdfs:label "Point"@en ;
    rdfs:subClassOf ns1:Geometry .