- Build instances of various shapes (e.g., using
ST_MakePolygonon a Linestring). - Convert existing shapes to a text representation for ease of reading.
POINT(...)LINESTRING(...)POLYGON((...))
MULTIPOLYGON(...)MultiPolygon(...)
LINESTRING(-88.243385 40.116421, -87.906471 43.038902, -95.992775 36.153980)
Shapes expressed in WKT can have an prepended to the shape and followed by a semicolon, in the form SRID=123;TAG(...). The format is known as Extended Well Known Text (EWKT); it is the same as WKT, with an representation prepended to the data structure.
For example, below is a polygon representing a geometry that uses , which is used to represent latitude and longitude coordinates on the Earth as defined in the standard:
SRID=4326;POLYGON((-87.906471 43.038902, -95.992775 36.153980, -75.704722 36.076944, -87.906471 43.038902))
For more detailed information about the Well Known Text format, see the OGC specification for WKT.
CockroachDB only supports 2-dimensional geometries.

