Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
根据文本表示构造圆弧线串。
NEW ST_CircularString(text-representation[, srid])
text-representation
LONG VARCHAR
包含圆弧线串文本表示的字符串。输入格式可以是任何支持的文本输入格式,包括 WKT 或 EWKT。
srid
INT
结果的 SRID。如果未指定,缺省值是 0。
根据字符串表示构造圆弧线串。数据库服务器通过检查提供的字符串确定输入格式。
SQL/MM (ISO/IEC 13249-3: 2006) 7.3.2
以下示例返回 CircularString (5 10, 10 12, 15 10)
SELECT NEW ST_CircularString('CircularString (5 10, 10 12, 15 10)')
以下示例显示含有两个半圆线段的圆弧线串。
SELECT NEW ST_CircularString('CircularString (0 4, 2.5 6.5, 5 4, 7.5 1.5, 10 4)') CS