Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
投影のソースとなっている空間参照系の変換定義を返します。
ST_SpatialRefSys::ST_GetUnProjectedTransformDefinition(transform-definition)
transform-definition
LONG VARCHAR
空間参照系の変換定義テキスト
LONG VARCHAR 未投影の空間参照系の変換定義を定義しているテキスト文字列を返します。
transform-definition パラメータで投影後の空間参照系が定義されている場合は、ソースの空間参照系の定義を返します。
SQL/MM (ISO/IEC 13249-3: 2006) ベンダー拡張
次の例では、結果として +proj=latlong +a=6371000 +b=6371000 +no_defs を返します。
+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' )