DO.COM.05 GeoCoordinates

The spdci:GeoCoordinates object represents a geographical coordinate set defined by a latitude and a longitude according to the WGS 84 system.

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

longitude

0...1

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:GeoCoordinates_1",
    "@type": "spdci:GeoCoordinates",
    "latitude": 33.3128,
    "longitude": 44.3615
}

In this example, the spdci:geo_coordinates instance specifies a particular geographical location in Baghdad, Iraq. The latitude and longitude values are represented in decimal format as per the WGS 84 standard

JSON-LD File on GitHub

Last updated