定义
ST_MLineFromText 以 ST_MultiLineString 类型的熟知文本表示和空间参考 ID 作为输入参数,并返回 ST_MultiLineString 类型的对象。
语法
Oracle
sde.st_mlinefromtext (wkt clob, srid integer)
sde.st_mlinefromtext (wkt clob)
如果您未指定 SRID,则空间参考默认为 4326。
SQLite
st_mlinefromtext (wkt text, srid int32)
st_mlinefromtext (wkt text)
如果您未指定 SRID,则空间参考默认为 4326。
返回类型
ST_MultiLineString
示例
创建 mlinestring_test 表,其中包含用于唯一标识行的 gid smallint 列以及 ml1 ST_MultiLineString 列。
此 INSERT 语句使用 ST_MLineFromText 函数插入 ST_MultiLineString。
Oracle
CREATE TABLE mlinestring_test (
gid smallint,
ml1 sde.st_geometry
);
INSERT INTO MLINESTRING_TEST VALUES (
1,
sde.st_mlinefromtext ('multilinestring ((10.01 20.03, 10.52 40.11, 30.29 41.56,
31.78 10.74), (20.93 20.81, 21.52 40.10))', 4326)
);
SQLite
CREATE TABLE mlinestring_test (
gid integer
);
SELECT AddGeometryColumn (
NULL,
'mlinestring_test',
'ml1',
4326,
'multilinestring',
'xy',
'null'
);
INSERT INTO MLINESTRING_TEST VALUES (
1,
st_mlinefromtext ('multilinestring ((10.01 20.03, 10.52 40.11, 30.29 41.56,
31.78 10.74), (20.93 20.81, 21.52 40.10))', 4326)
);