Returns the transform definition of the spatial reference system that is the source of the projection.
ST_SpatialRefSys::ST_GetUnProjectedTransformDefinition(transform-definition)
Name | Type | Description |
---|---|---|
transform-definition |
LONG VARCHAR |
The spatial reference system transform definition text |
LONG VARCHAR Returns a text string defining the transform definition of the unprojected spatial reference system.
If the transform-definition parameter defines a projected spatial reference system, returns the definition of the source spatial reference system.
SQL/MM (ISO/IEC 13249-3: 2006) Vendor extension
The following example returns the result +proj=latlong +a=6371000 +b=6371000 +no_defs
.
SELECT ST_SpatialRefSys::ST_GetUnProjectedTransformDefinition( '+proj=robin +lon_0=0 +x_0=0 +y_0=0 +a=6371000 +b=6371000 +units=m no_defs' ) |
![]() |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |