http://schema.org/latitude
The latitude of a location. For example ```37.42242``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System)).
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:GeoCoordinates | schema:latitude | xsd:float |
@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))." .