schema:longitude leaf node


URI

http://schema.org/longitude

Label

longitude

Description

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

Usage

DOMAINPROPERTYRANGE
schema:GeoCoordinates schema:longitude 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:longitude a rdf:Property ;
    rdfs:label "longitude" ;
    schema:domainIncludes schema:GeoCoordinates ;
    schema:rangeIncludes xsd:float ;
    rdfs:comment "The longitude of a location. For example ```-122.08585``` ([WGS 84](https://en.wikipedia.org/wiki/World_Geodetic_System))." .