This is the multi-page printable view of this section. Click here to print.
Measurement Functions
- 1: func.ST_ShortestLine
- 2: func.ST_Project
- 3: func.ST_Perimeter2D
- 4: func.ST_Perimeter
- 5: func.ST_MaxDistance
- 6: func.ST_LongestLine
- 7: func.ST_3DShortestLine
- 8: func.ST_3DPerimeter
- 9: func.ST_3DMaxDistance
- 10: func.ST_LengthSpheroid
- 11: func.ST_3DLongestLine
- 12: func.ST_3DLength
- 13: func.ST_Length2D
- 14: func.ST_Length
- 15: func.ST_HausdorffDistance
- 16: func.ST_DistanceSpheroid
- 17: func.ST_Distance
- 18: func.ST_3DClosestPoint
- 19: func.ST_ClosestPoint
- 20: func.ST_Azimuth
- 21: func.ST_Area
- 22: func.ST_Length2D_Spheroid
1 - func.ST_ShortestLine
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_ShortestLine(geometry g1, geometry g2);
PlaidCloud
func.ST_ShortestLine(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_Project
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_Project(geography g1, float distance, float azimuth);
PlaidCloud
func.ST_Project(geography g1, float distance, float azimuth)
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_Perimeter2D
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_Perimeter2D(geometry geomA);
PlaidCloud
func.ST_Perimeter2D(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
4 - func.ST_Perimeter
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_Perimeter(geometry g1);
PlaidCloud
func.ST_Perimeter(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
5 - func.ST_MaxDistance
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_MaxDistance(geometry g1, geometry g2);
PlaidCloud
func.ST_MaxDistance(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
6 - func.ST_LongestLine
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_LongestLine(geometry g1, geometry g2);
PlaidCloud
func.ST_LongestLine(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
7 - func.ST_3DShortestLine
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_3DShortestLine(geometry g1, geometry g2);
PlaidCloud
func.ST_3DShortestLine(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
8 - func.ST_3DPerimeter
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_3DPerimeter(geometry geomA);
PlaidCloud
func.ST_3DPerimeter(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
9 - func.ST_3DMaxDistance
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_3DMaxDistance(geometry g1, geometry g2);
PlaidCloud
func.ST_3DMaxDistance(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
10 - func.ST_LengthSpheroid
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_LengthSpheroid(geometry a_geometry, spheroid a_spheroid);
PlaidCloud
func.ST_LengthSpheroid(geometry a_geometry, spheroid a_spheroid)
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_3DLongestLine
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_3DLongestLine(geometry g1, geometry g2);
PlaidCloud
func.ST_3DLongestLine(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
12 - func.ST_3DLength
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_3DLength(geometry a_3dlinestring);
PlaidCloud
func.ST_3DLength(geometry a_3dlinestring)
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_Length2D
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_Length2D(geometry a_2dlinestring);
PlaidCloud
func.ST_Length2D(geometry a_2dlinestring)
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_Length
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_Length(geometry a_2dlinestring);
PlaidCloud
func.ST_Length(geometry a_2dlinestring)
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_HausdorffDistance
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_HausdorffDistance(geometry g1, geometry g2);
PlaidCloud
func.ST_HausdorffDistance(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
16 - func.ST_DistanceSpheroid
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_DistanceSpheroid(geometry geomlonlatA, geometry geomlonlatB, spheroid measurement_spheroid);
PlaidCloud
func.ST_DistanceSpheroid(geometry geomlonlatA, geometry geomlonlatB, spheroid measurement_spheroid)
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_Distance
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_Distance(geometry g1, geometry g2);
PlaidCloud
func.ST_Distance(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
18 - func.ST_3DClosestPoint
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_3DClosestPoint(geometry g1, geometry g2);
PlaidCloud
func.ST_3DClosestPoint(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
19 - func.ST_ClosestPoint
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_ClosestPoint(geometry g1, geometry g2);
PlaidCloud
func.ST_ClosestPoint(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
20 - func.ST_Azimuth
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_Azimuth(geometry pointA, geometry pointB);
PlaidCloud
func.ST_Azimuth(geometry pointA, geometry pointB)
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_Area
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_Area(geometry g1);
PlaidCloud
func.ST_Area(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
22 - func.ST_Length2D_Spheroid
Syntax
func.ST_Length2D_Spheroid()
Examples
Documentation for func.ST_Length2D_Spheroid is coming soon.