This is the multi-page printable view of this section. Click here to print.
Geometry Editors
- 1: func.ST_SwapOrdinates
- 2: func.ST_Snap
- 3: func.ST_SnapToGrid
- 4: func.ST_ShiftLongitude
- 5: func.ST_SetPoint
- 6: func.ST_Segmentize
- 7: func.ST_Reverse
- 8: func.ST_RemoveRepeatedPoints
- 9: func.ST_RemovePoint
- 10: func.ST_Multi
- 11: func.ST_LineToCurve
- 12: func.ST_LineMerge
- 13: func.ST_ForceCurve
- 14: func.ST_ForceRHR
- 15: func.ST_ForceSFS
- 16: func.ST_ForceCollection
- 17: func.ST_Force4D
- 18: func.ST_Force3DM
- 19: func.ST_Force3DZ
- 20: func.ST_Force3D
- 21: func.ST_Force2D
- 22: func.ST_FlipCoordinates
- 23: func.ST_CurveToLine
- 24: func.ST_CollectionHomogenize
- 25: func.ST_CollectionExtract
- 26: func.ST_AddPoint
1 - func.ST_SwapOrdinates
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_SwapOrdinates(geometry geom, cstring ords);
PlaidCloud
func.ST_SwapOrdinates(geometry geom, cstring ords)
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_Snap
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_Snap(geometry input, geometry reference, float tolerance);
PlaidCloud
func.ST_Snap(geometry input, geometry reference, 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_SnapToGrid
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_SnapToGrid(geometry geomA, float originX, float originY, float sizeX, float sizeY);
PlaidCloud
func.ST_SnapToGrid(geometry geomA, float originX, float originY, float sizeX, float sizeY)
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_ShiftLongitude
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_ShiftLongitude(geometry geom);
PlaidCloud
func.ST_ShiftLongitude(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
5 - func.ST_SetPoint
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_SetPoint(geometry linestring, integer zerobasedposition, geometry point);
PlaidCloud
func.ST_SetPoint(geometry linestring, integer zerobasedposition,
geometry point)
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_Segmentize
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_Segmentize(geometry geom, float max_segment_length);
PlaidCloud
func.ST_Segmentize(geometry geom, float max_segment_length)
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_Reverse
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_Reverse(geometry g1);
PlaidCloud
func.ST_Reverse(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_RemoveRepeatedPoints
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_RemoveRepeatedPoints(geometry geom, float8 tolerance);
PlaidCloud
func.ST_RemoveRepeatedPoints(geometry geom, float8 tolerance)
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_RemovePoint
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_RemovePoint(geometry linestring, integer offset);
PlaidCloud
func.ST_RemovePoint(geometry linestring, integer offset)
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_Multi
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_Multi(geometry g1);
PlaidCloud
func.ST_Multi(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
11 - func.ST_LineToCurve
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_LineToCurve(geometry geomANoncircular);
PlaidCloud
func.ST_LineToCurve(geometry geomANoncircular)
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_LineMerge
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_LineMerge(geometry amultilinestring);
PlaidCloud
func.ST_LineMerge(geometry amultilinestring)
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_ForceCurve
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_ForceCurve(geometry g);
PlaidCloud
func.ST_ForceCurve(geometry g)
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_ForceRHR
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_ForceRHR(geometry g);
PlaidCloud
func.ST_ForceRHR(geometry g)
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_ForceSFS
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_ForceSFS(geometry geomA);
PlaidCloud
func.ST_ForceSFS(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
16 - func.ST_ForceCollection
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_ForceCollection(geometry geomA);
PlaidCloud
func.ST_ForceCollection(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
17 - func.ST_Force4D
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_Force4D(geometry geomA, float Zvalue = 0.0, float Mvalue = 0.0);
PlaidCloud
ST_Force4D(geometry geomA, float Zvalue = 0.0, float Mvalue = 0.0)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation
18 - func.ST_Force3DM
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_Force3DM(geometry geomA, float Mvalue = 0.0);
PlaidCloud
func.ST_Force3DM(geometry geomA, float Mvalue = 0.0)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation
19 - func.ST_Force3DZ
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_Force3DZ(geometry geomA, float Zvalue = 0.0);
PlaidCloud
func.ST_Force3DZ(geometry geomA, float Zvalue = 0.0)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation
20 - func.ST_Force3D
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_Force3D(geometry geomA, float Zvalue = 0.0);
PlaidCloud
func.ST_Force3D(geometry geomA, float Zvalue = 0.0)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
21 - func.ST_Force2D
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_Force2D(geometry geomA);
PlaidCloud
func.ST_Force2D(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.
22 - func.ST_FlipCoordinates
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_FlipCoordinates(geometry geom);
PlaidCloud
func.ST_FlipCoordinates(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.
23 - func.ST_CurveToLine
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_CurveToLine(geometry curveGeom, float tolerance, integer tolerance_type, integer flags);
PlaidCloud
func.ST_CurveToLine(geometry curveGeom, float tolerance, integer tolerance_type, integer flags)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
24 - func.ST_CollectionHomogenize
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_CollectionHomogenize(geometry collection);
PlaidCloud
func.ST_CollectionHomogenize(geometry collection)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
25 - func.ST_CollectionExtract
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_CollectionExtract(geometry collection);
PlaidCloud
func.ST_CollectionExtract(geometry collection)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.
26 - func.ST_AddPoint
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_AddPoint(geometry linestring, geometry point);
PlaidCloud
func.ST_AddPoint(geometry linestring, geometry point)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.