ST_Polygon

This section contains reference documentation for the ST_Polygon function.

Returns a geometry type polygon object from Well-Known Text representation or extended (WKT).

This function only works for WKT formatted polygons.

Signature

ST_Polygon(wkt)

Usage Examples

These examples are based on the Streaming Quick Start.

select ST_Polygon('POLYGON ((2 2, 2 6, 6 6, 6 2, 2 2))') AS value
from meetupRsvp 
LIMIT 1
value

040000000100000005000000004000000000000000400000000000000040000000000000004018000000000000401800000000000040180000000000004018000000000000400000000000000040000000000000004000000000000000

select ST_Polygon('POLYGON EMPTY') AS value
from meetupRsvp 
LIMIT 1
value

040000000000000000

This function doesn't accept values that represent non polygons. It will throw an exception if passed other primitives or geometries:

select ST_Polygon('LINESTRING (30 10, 10 30, 40 40)') AS value
from meetupRsvp 
LIMIT 1

To create geometry objects for non polygons, see ST_GeomFromText.

Last updated

Was this helpful?