将外包框的空间范围扩大至指定数值。
语法
boxndf ST_ExpandSpatial(boxndf box, float8 len);
参数
参数名称 | 描述 |
---|---|
box | 需要扩大的外包框。 |
len | 需要扩大的长度。 |
描述
如果外包框中存在xyz三个维度,下界将减少len的长度,上界将增加len的长度。
示例
Select ST_ExpandSpatial(ST_MakeBox2dt(0,0,'2000-01-02', 20,20, '2000-03-03'), 4);
st_expandspatial
-------------------------------------------------------------
BOX2DT(-4 -4 2000-01-02 00:00:00,24 24 2000-03-03 00:00:00)