DO.COM.04 GeoLocation

The spdci:GeoLocation object represents a geographical location set defined by a latitude, a longitude, and altitude (optional) according to the WGS 84 system, and an option for a Google Plus Code.

References:

This class is useful for specifying precise locations in a standardized, machine-readable format. It conforms to the global standard WGS 84 which is crucial for interoperability and accuracy in geographical data representation.

Property KeyData Type (and Restrictions)CardinalityDescription

latitude*

0...1

The latitude of a location. For example 37.42242 (WGS 84).

longitude*

0...1

The longitude of a location. For example -122.08585 (WGS 84).

altitude

0...1

The altitude of a location. For example 500.42212 (WGS 84).

plus_code

0...1

Contains the plus code information for the location.

Example of Use

{
    "@context": {
        "spdci": "https://schema.spdci.org/common/v1/",
        "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
        "schema": "http://schema.org/",
        "xsd": "http://www.w3.org/2001/XMLSchema#"
    },
    "@id": "spdci:GeoLocation_1",
    "@type": "spdci:GeoLocation",
    "latitude": 33.3128,
    "longitude": 44.3615,
    "altitude": 1000.0123,
    "plus_code": " "
}

Used in

This data object is used in the following other Data Objects

Last updated