Name

ST_SRID — Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table.

Synopsis

integer ST_SRID(geometry g1);

説明

Returns the spatial reference identifier for the ST_Geometry as defined in spatial_ref_sys table. Section 4.3.1, “SPATIAL_REF_SYSテーブルと空間参照系”

[Note]

spatial_ref_sysテーブルはPostGISが知る参照系の全てのカタログを作っていて、ある空間参照系から他の空間参照系に変換するために使われます。ジオメトリの変換を予定している場合は正しい空間参照系の識別番号を持っているか確認することは重要です。

This method implements the OpenGIS Simple Features Implementation Specification for SQL 1.1. s2.1.1.1

This method implements the SQL/MM specification. SQL-MM 3: 5.1.5

This method supports Circular Strings and Curves

SELECT ST_SRID(ST_GeomFromText('POINT(-71.1043 42.315)',4326));
                -- 結果
                4326
                

関連情報

Section 4.3.1, “SPATIAL_REF_SYSテーブルと空間参照系”, ST_GeomFromText, ST_SetSRID, ST_Transform