This is the multi-page printable view of this section. Click here to print.
Geometry Processing
- 1: func.ST_SetEffectiveArea
- 2: func.ST_SimplifyVW
- 3: func.ST_SimplifyPreserveTopology
- 4: func.ST_Simplify
- 5: func.ST_SharedPaths
- 6: func.ST_Polygonize
- 7: func.ST_PointOnSurface
- 8: func.ST_OffsetCurve
- 9: func.ST_MinimumBoundingCircle
- 10: func.ST_DelaunayTriangles
- 11: func.ST_ConvexHull
- 12: func.ST_ConcaveHull
- 13: func.ST_Centroid
- 14: func.ST_BuildArea
- 15: func.ST_Buffer
- 16: func.St_Accum
1 - func.ST_SetEffectiveArea
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_SetEffectiveArea(geometry geomA, float threshold = 0, integer set_area = 1);
PlaidCloud
func.ST_SetEffectiveArea(geometry geomA, float threshold = 0, integer set_area = 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_SimplifyVW
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_SimplifyVW(geometry geomA, float tolerance);
PlaidCloud
func.ST_SimplifyVW(geometry geomA, float tolerance)
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_SimplifyPreserveTopology
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_SimplifyPreserveTopology(geometry geomA, float tolerance);
PlaidCloud
func.ST_SimplifyPreserveTopology(geometry geomA, float tolerance)
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_Simplify
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_Simplify(geometry geomA, float tolerance, boolean preserveCollapsed);
PlaidCloud
func.ST_Simplify(geometry geomA, float tolerance, boolean preserveCollapsed)
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_SharedPaths
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_SharedPaths(geometry lineal1, geometry lineal2);
PlaidCloud
func.ST_SharedPaths(geometry lineal1, geometry lineal2)
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_Polygonize
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_Polygonize(geometry set geomfield);
PlaidCloud
func.ST_Polygonize(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.
7 - func.ST_PointOnSurface
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_PointOnSurface(geometry g1);
PlaidCloud
func.ST_PointOnSurface(geometry g1)
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_OffsetCurve
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_OffsetCurve(geometry line, float signed_distance, text style_parameters='');
PlaidCloud
func.ST_OffsetCurve(geometry line, float signed_distance, text style_parameters='')
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_MinimumBoundingCircle
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_MinimumBoundingCircle(geometry geomA, integer num_segs_per_qt_circ=48);
PlaidCloud
func.ST_MinimumBoundingCircle(geometry geomA, integer num_segs_per_qt_circ=48);
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_DelaunayTriangles
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_DelaunayTriangles(geometry g1, float tolerance, int4 flags);
PlaidCloud
func.ST_DelaunayTriangles(geometry g1, float tolerance, int4 flags)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
11 - func.ST_ConvexHull
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_ConvexHull(geometry geomA);
PlaidCloud
func.ST_ConvexHull(geometry geomA)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
12 - func.ST_ConcaveHull
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_ConcaveHull(geometry geom, float target_percent, boolean allow_holes = false);
PlaidCloud
func.ST_ConcaveHull(geometry geom, float target_percent, boolean allow_holes = false)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
13 - func.ST_Centroid
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_Centroid(geometry g1);
PlaidCloud
func.ST_Centroid(geometry g1);
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
14 - func.ST_BuildArea
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_BuildArea(geometry geom);
PlaidCloud
func.ST_BuildArea(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.
15 - func.ST_Buffer
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_Buffer(geometry g1, float radius_of_buffer, text buffer_style_parameters = '');
PlaidCloud
func.ST_Buffer(geometry g1, float radius_of_buffer, text buffer_style_parameters = '')
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
16 - func.St_Accum
Syntax
func.ST_Accum()
Examples
Documentation for func.ST_Accum is coming soon.