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
GeometryType
GeometryType returns the subtype of an input geometry as a string.
Syntax
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 for 2D, 3DZ, 4D geometries | Returned string value for 3DM geometries | 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 converts a well-known text (WKT) representation of a polygon and
returns the GEOMETRY subtype as a string.
SELECT GeometryType(ST_GeomFromText('POLYGON((0 2,1 1,0 -1,0 2))'));
geometrytype
-------------
POLYGON