Well-known Text Representation Of Coordinate Reference Systems
   HOME

TheInfoList



OR:

Well-known text representation of coordinate reference systems (WKT or WKT-CRS) is a text
markup language Markup language refers to a text-encoding system consisting of a set of symbols inserted in a text document to control its structure, formatting, or the relationship between its parts. Markup is often used to control the display of the document ...
for representing
spatial reference system A spatial reference system (SRS) or coordinate reference system (CRS) is a framework used to precisely measure locations on the surface of the Earth as coordinates. It is thus the application of the abstract mathematics of coordinate systems and ...
s and transformations between spatial reference systems. The formats were originally defined by the
Open Geospatial Consortium The Open Geospatial Consortium (OGC), an international voluntary consensus standards organization for geospatial content and location-based services, sensor web and Internet of Things, GIS data processing and data sharing. It originated in 1994 ...
(OGC) and described in their ''
Simple Feature Access Simple Features (officially Simple Feature Access) is a set of standards that specify a common storage and access model of geographic feature made of mostly two-dimensional geometries (point, line, polygon, multi-point, multi-line, etc.) used by ...
'' and ''Well-known text representation of coordinate reference systems'' specifications. The current standard definition is ISO 19162:2019. This supersedes ISO 19162:2015.


Version history

This WKT format was initially defined by the Open Geospatial Consortium (OGC) in 1999, then extended in 2001. This format, also defined in ISO 19125-1:2004, is sometime known as "WKT 1". Later, evolution of the Coordinate Reference System conceptual model, new requirements and inconsistencies in implementation of WKT 1 format between different software have encouraged the revision of that format. The updated "Well-known text representation of coordinate reference systems" standard, sometime known as "WKT 2", was adopted by the Open Geospatial Consortium in 2015. This standard is published conjointly by the International Organization for Standardization as ISO 19162:2015. Confusingly, the original 2015 "WKT 2" standard has a version number 1 for the new, stricter WKT-CRS specification. A newer revision called WKT-CRS 2 was published in 2018, with the ISO version being ISO 19162:2019.


Backward compatibility

A software capable to read coordinate reference systems in WKT 2 format can also read many (but not all) equivalent systems in WKT 1 format. Some caveats exist, notably the removal of the TOWGS84 element which is replaced by the BOUNDCRS element. Another caveat is about the units of measurement. Some of them were unspecified in oldest WKT 1 specifications (for example the PRIMEM unit), which has led to different interpretations by different software. Those units of measurement have been clarified in the 2001 update and the WKT 2 specification is consistent with that clarification. But not all software have followed the 2001 clarification.


ESRI vs OGC

Esri Esri (; Environmental Systems Research Institute) is an American multinational geographic information system (GIS) software company. It is best known for its ArcGIS products. With a 43% market share, Esri is the world's leading supplier of GIS ...
, which also participated in writing the WKT 2 specification, had a few variations on OGC's WKT 1 specification, making it stricter and contain less ambiguities. As a result, some databases differentiate between "OGC WKT" and "ESRI WKT" representations. The problem is largely resolved in WKT 2, as it is better-defined. One distinction is that it does not have TOWGS84, much like WKT 2.


Coordinate reference systems

WKT can describe
coordinate reference system A spatial reference system (SRS) or coordinate reference system (CRS) is a framework used to precisely measure locations on the surface of the Earth as coordinates. It is thus the application of the abstract mathematics of coordinate systems and ...
s. For example, the WKT below describes a two-dimensional geographic coordinate reference system with a latitude axis first, then a longitude axis. The coordinate system is related to Earth by the WGS84 geodetic datum: GEODCRS WGS 84", DATUM["World Geodetic System 1984", ELLIPSOID["WGS 84", 6378137, 298.257223563, LENGTHUNIT["metre", 1], CS[ellipsoidal, 2], AXIS["Latitude (lat)", north, ORDER[1, AXIS["Longitude (lon)", east, ORDER[2, ANGLEUNIT["degree", 0.0174532925199433 The WKT format can describe not only geographic coordinate reference systems, but also geocentric, projected, vertical, temporal and engineering ones (for example a coordinate reference system attached to a boat). The standard describes how to combine those coordinate reference systems together.


Coordinate operations

A WKT format is defined to describe the operation methods and parameters used to convert or transform coordinates between two different coordinate reference systems. The WKT 1 and WKT 2 formats are incompatible regarding coordinate operations, because of differences in the modelling. Below is an example of a concatenation of two WKT 1 transformation descriptions, where the Mercator projection is applied first and then an affine transform is applied on the result: CONCAT_MT PARAM_MT["Mercator_2SP", PARAMETER["semi_major",6370997.0 PARAMETER["semi_minor",6370997.0], PARAMETER["central_meridian",180.0], PARAMETER["false_easting",-500000.0], PARAMETER["false_northing",-1000000.0], PARAMETER["standard parallel 1",60.0, PARAM_MT["Affine", PARAMETER num_row",3 PARAMETER num_col",3 PARAMETER elt_0_1",1 PARAMETER elt_0_2",2 PARAMETER elt 1 2",3] Below is an example of a datum shift operation in WKT 2 format. Contrarily to an equivalent description in WKT 1 format, the WKT 2 description specifies the source and target coordinate reference systems, together with the domain of validity and the accuracy (in metres) that we can expect from this operation: COORDINATEOPERATION AGD84 to GDA94 Auslig 5m", SOURCECRS[…full CRS definition required here but omitted for brevity… TARGETCRS[…full CRS definition required here but omitted for brevity…], METHOD["Geocentric translations", ID["EPSG", 1031, PARAMETER["X-axis translation", -128.5, LENGTHUNIT["metre", 1, PARAMETER["Y-axis translation", -53.0, LENGTHUNIT["metre", 1, PARAMETER Z-axis_translation",__153.4,_LENGTHUNIT["metre",_1 __OPERATIONACCURACY[5.html" ;"title="metre",_1.html" ;"title="Z-axis translation", 153.4, LENGTHUNIT["metre", 1">Z-axis translation", 153.4, LENGTHUNIT["metre", 1 OPERATIONACCURACY[5">metre",_1.html" ;"title="Z-axis translation", 153.4, LENGTHUNIT["metre", 1">Z-axis translation", 153.4, LENGTHUNIT["metre", 1 OPERATIONACCURACY[5 AREA["Australia onshore"], BBOX[-43.7, 112.85, -9.87, 153.68


APIs that provide support


Apache Spatial Information System
parses and formats WKT versions 1 and 2 for coordinate reference systems and coordinate operations *
PROJ PROJ (formerly PROJ.4) is a library for performing conversions between cartographic projections. The library is based on the work of Gerald Evenden at the United States Geological Survey (USGS), but since 2019-11-26 is an Open Source Geospatial F ...


See also

*
Well-known text representation of geometry Well-known text (WKT) is a text markup language for representing vector geometry objects. A binary equivalent, known as well-known binary (WKB), is used to transfer and store the same information in a more compact form convenient for computer proce ...


References

{{Reflist


External links


Coordinate Transformation Service
Specification

Map projections GIS file formats Markup languages