schema:latitude leaf node


URI

http://schema.org/latitude

Label

latitude

Description

The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).

Usage

DOMAINPROPERTYRANGE
schema:GeoCoordinates schema:latitude xsd:float

Implementation

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

schema:latitude a rdf:Property ;
    rdfs:label "latitude" ;
    schema:domainIncludes schema:GeoCoordinates ;
    schema:rangeIncludes xsd:float ;
    rdfs:comment "The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System))." .