This is the multi-page printable view of this section. Click here to print.
Linear Referencing
1 - func.ST_AddMeasure
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_AddMeasure(geometry geom_mline, float8 measure_start, float8 measure_end);
PlaidCloud
func.ST_AddMeasure(geometry geom_mline, float8 measure_start, float8 measure_end)
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_InterpolatePoint
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_InterpolatePoint(geometry line, geometry point);
PlaidCloud
func.ST_InterpolatePoint(geometry line, 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.
3 - func.ST_LocateBetweenElevations
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_LocateBetweenElevations(geometry geom, float8 elevation_start, float8 elevation_end);
PlaidCloud
func.ST_LocateBetweenElevations(geometry geom, float8 elevation_start, float8 elevation_end)
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_LocateBetween
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_LocateBetween(geometry geom, float8 measure_start, float8 measure_end, float8 offset);
PlaidCloud
func.ST_LocateBetween(geometry geom, float8 measure_start, float8 measure_end, float8 offset)
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_LocateAlong
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_LocateAlong(geometry ageom_with_measure, float8 a_measure, float8 offset);
PlaidCloud
func.ST_LocateAlong(geometry ageom_with_measure, float8 a_measure, float8 offset)
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_LineSubstring
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_LineSubstring(geometry a_linestring, float8 startfraction, float8 endfraction);
PlaidCloud
func.ST_LineSubstring(geometry a_linestring, float8 startfraction, float8 endfraction)
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_LineLocatePoint
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_LineLocatePoint(geometry a_linestring, geometry a_point);
PlaidCloud
func.ST_LineLocatePoint(geometry a_linestring, geometry a_point)
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_LineInterpolatePoint
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_LineInterpolatePoint(geometry a_linestring, float8 a_fraction);
PlaidCloud
func.ST_LineInterpolatePoint(geometry a_linestring, float8 a_fraction)
References
PostGIS Official Documentation for this method can be found here.
Additional capabilities and usage examples can be found in the PostGIS documentation.