This is the multi-page printable view of this section. Click here to print.
Geometry Constructors
1 - func.ST_Collect
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_Collect(geometry g1, geometry g2)
PlaidCloud
func.ST_Collect(geometry g1, geometry g2)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
2 - func.ST_LineFromMultiPoint
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_LineFromMultiPoint(geometry aMultiPoint); PlaidCloud
PlaidCloud
func.ST_LineFromMultiPoint(geometry aMultiPoint)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
3 - func.ST_MakeEnvelope
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_MakeEnvelope(float xmin, float ymin, float xmax, float ymax, integer srid=unknown);
PlaidCloud
func.ST_MakeEnvelope(float xmin, float ymin, float xmax, float ymax, integer srid=unknown);
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
4 - func.ST_MakeLine
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_MakeLine(geometry geom1, geometry geom2);
PlaidCloud
func.ST_MakeLine(geometry geom1, geometry geom2)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
5 - func.ST_MakePoint
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_MakePoint(float x, float y, float z, float m);
PlaidCloud
func.ST_MakePoint(float x, float y, float z, float m)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
6 - func.ST_MakePointM
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_MakePointM(float x, float y, float m);
PlaidCloud
func.ST_MakePointM(float x, float y, float m)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
7 - func.ST_MakePolygon
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_MakePolygon(geometry linestring);
PlaidCloud
func.ST_MakePolygon(geometry linestring)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
8 - func.ST_Point
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_Point(float x, float y);
PlaidCloud
func.ST_Point(float x, float y)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
9 - func.ST_Polygon
Description
PlaidCloud expressions and filters provide use of most non-administrative PostGIS methods. PostGIS methods are accessed by prefixing the standard method name with func.
.
Examples
SQL
ST_Polygon(geometry lineString, integer srid);
PlaidCloud
func.ST_Polygon(geometry lineString, integer srid)
External References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.