This is the multi-page printable view of this section. Click here to print.
Overlay Functions
1 - func.ST_UnaryUnion
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_UnaryUnion(geometry geom, float8 gridSize = -1);
PlaidCloud
func.ST_UnaryUnion(geometry geom, float8 gridSize = -1);
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_Union
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_Union(geometry g1, geometry g2);
PlaidCloud
func.ST_Union(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
3 - func.ST_SymDifference
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_SymDifference(geometry geomA, geometry geomB, float8 gridSize = -1);
PlaidCloud
func.ST_SymDifference(geometry geomA, geometry geomB, float8 gridSize = -1)
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_Subdivide
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_Subdivide(geometry geom, integer max_vertices=256, float8 gridSize = -1);
PlaidCloud
func.ST_Subdivide(geometry geom, integer max_vertices=256, float8 gridSize = -1)
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_Split
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_Split(geometry input, geometry blade);
PlaidCloud
func.ST_Split(geometry input, geometry blade)
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_Node
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_Node(geometry geom);
PlaidCloud
func.ST_Node(geometry geom)
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_MemUnion
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_MemUnion(geometry set geomfield);
PlaidCloud
func.ST_MemUnion(geometry set geomfield)
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_Intersection
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_Intersection( geography geogA , geography geogB );
PlaidCloud
func.ST_Intersection( geography geogA , geography geogB )
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_Difference
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_Difference(geometry geomA, geometry geomB, float8 gridSize = -1);
PlaidCloud
func.ST_Difference(geometry geomA, geometry geomB, float8 gridSize = -1)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation
10 - func.ST_ClipByBox2D
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_ClipByBox2D(geometry geom, box2d box);
PlaidCloud
func.ST_ClipByBox2D(geometry geom, box2d box)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation