This is the multi-page printable view of this section. Click here to print.
Spatial Reference System Functions
1 - func.ST_Transform
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_Transform(geometry g1, integer srid);
PlaidCloud
func.ST_Transform(geometry g1, integer srid)
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_SRID
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_SRID(geometry g1);
PlaidCloud
func.ST_SRID(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
3 - func.ST_SetSRID
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_SetSRID(geometry geom, integer srid);
PlaidCloud
func.ST_SetSRID(geometry geom, integer srid)
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.Find_SRID
Syntax
func.Find_SRID()
Examples
Documentation for func.Find_SRID is coming soon.
References