全部產品
Search
文件中心

PolarDB:ST_{T|2D|2DT|3D|3DT}Within

更新時間:Jul 06, 2024

ST_ndWithin函數,判斷第一個參數所對應的對象在指定的座標軸上是否被包含於第二個參數所對應的對象。

文法

bool ST_TWithin(tsrange r, trajectory traj);
bool ST_TWithin(trajectory traj, tsrange r);
bool ST_2DWithin(geometry geom, trajectory traj);
bool ST_2DWithin(trajectory traj, geometry geom);
bool ST_2DWithin(geometry geom, trajectory traj, timestamp ts, timestamp te);
bool ST_2DWithin(trajectory traj, geometry geom, timestamp ts, timestamp te);
bool ST_{2D|2DT|3D|3DT}Within(trajectory traj, boxndf box);
bool ST_{2D|2DT|3D|3DT}Within(trajectory traj, boxndf box, timestamp ts, timestamp te);

參數

參數名稱描述
geom需要判斷的幾何對象。
traj需要判斷的軌跡對象,或者產生子軌跡的原始軌跡。
box需要判斷的外包框對象。
r需要判斷的時間範圍。
ts如存在,表示按此時間作為開始時間截取子軌跡。
te如存在,表示按此時間作為結束時間截取子軌跡。

描述

判斷第一個參數是否被包含於第二個參數,等價於將第一個參數與第二個參數交換的ST_ndContains函數。

說明 部分geometry類型(如POLYHEDRALSURFACE)目前不支援ST_Within操作。

樣本

WITH traj AS(
    SELECT (' {"trajectory":{"version":1,"type":"STPOINT","leafcount":6,"start_time":"2000-01-01 03:15:42","end_time":"2000-01-01 05:16:43",' ||
            '"spatial":"LINESTRING(2 2 0,33.042158099636 36.832684322819 0,47.244002354518 47.230026333034 0,64.978971942887 60.618813472986 0,77.621717839502 78.012496630661 0,80 78 0)",' ||
            '"timeline":["2000-01-01 03:15:42","2000-01-01 03:39:54","2000-01-01 04:04:06","2000-01-01 04:28:18","2000-01-01 04:52:31","2000-01-01 05:16:43"]}}')::trajectory a,
           'LINESTRING(2 2 0,33.042158099636 36.832684322819 0,47.244002354518 47.230026333034 0,64.978971942887 60.618813472986 0,77.621717839502 78.012496630661 0,80 78 0)'::geometry b
)
SELECT ST_2dWithin(b,a) from traj;
 st_2dwithin 
-------------
 t