Amazon Redshift will no longer support the use of Python UDFs after June 30, 2026.
We will start enforcing it in phases. For more information on the details of Python end of life
and migration options, see the
blog post
ST_GeometryType
ST_GeometryType returns the subtype of an input geometry as a string.
For 3DM, 3DZ, and 4D geometry inputs, ST_GeometryType returns the same result as for 2D geometry inputs.
Syntax
ST_GeometryType(geom)
Arguments
- geom
-
A value of data type
GEOMETRYor an expression that evaluates to aGEOMETRYtype.
Return type
VARCHAR representing the subtype of geom.
If geom is null, then null is returned.
The values returned are as follows.
| Returned string value | Geometry subtype |
|---|---|
|
Returned if geom is a |
|
Returned if geom is a |
|
Returned if geom is a |
|
Returned if geom is a |
|
Returned if geom is a |
|
Returned if geom is a |
|
Returned if geom is a |
Examples
The following SQL returns the subtype of the input linestring geometry.
SELECT ST_GeometryType(ST_GeomFromText('LINESTRING(77.29 29.07,77.42 29.26,77.27 29.31,77.29 29.07)'));
st_geometrytype
-------------
ST_LineString