7.
t1 开始时间。 t2 结束时间。 range 时间段。 d 指定距离。 示例 Select ST_distanceWithin((Select traj from traj_table where id=1), (Select traj from traj_table where id=2), '2010-1-1 13:00:00', '2010-1-1 14:00:00', 100); 上一篇:ST_equals下一篇:ST_duration...
boolean ST_distanceWithin(trajectory traj, tsrange range, geometry g, float8 d); boolean ST_distanceWithin(trajectory traj, timestamp t1, timestamp t2, geometry g, float8 d); 参数 参数名称 描述 traj 轨迹对象。 t1 开始时间。 t2 结束时间。 range 时间段。 g 几何对象。 d 距离。 示例 Select...
7.
traj 轨迹对象。 t1 开始时间。 t2 结束时间。 range 时间段。 g 几何对象。 示例 Select ST_nearestApproachDistance(traj, '2010-1-1 13:00:00', '2010-1-1 14:00:00', 'LINESTRING(0 0, 5 5, 9 9)'::geometry) from traj_table;
float[] ST_mdistance(trajectory traj1, trajectory traj2); 参数 参数名称 描述 traj1 轨迹对象1。 traj2 轨迹对象2。 描述 未经过标准化处理。 示例 Select ST_mDistance((Select traj from traj_table where id=1), (Select traj from traj_table where id=2)); 上一篇:ST_euclideanDistance下一篇:相...
NULL) b) Select st_LCSDistance(a, b,100, interval '30 seconds') from traj; st_lcsdistance ---0.666666666666667(1row) With traj AS ( Select ST_makeTrajectory('STPOINT', 'LINESTRINGZ(114.00052833.58816354.87 , 114.00053533.58823554.85 , 114.00044733.58827254.69 , 114.00034833.58828754.73 , ...
float ST_euclideanDistance(trajectory traj1, trajectory traj2); 参数 参数名称描述 traj1 轨迹对象1。 traj2 轨迹对象2。 描述 距离已经进行了标准化处理。 示例 Select ST_euclideanDistance((Select traj from traj_table where id=1), (Select traj from traj_table where id=2)); 上一篇:ST_length下...
traj2 轨迹对象2。 t1 开始时间。 t2 结束时间。 range 时间段。 示例 Select ST_nearestApproachDistance((Select traj from traj_table where id=1), (Select traj from traj_table where id=2), '2010-1-1 13:00:00', '2010-1-1 14:00:00'); 上一篇:ST_nearestApproachPoint下一篇:ST_Density ...
float8 ST_nearestApproachDistance(trajectory traj, tsrange range, geometry g); float8 ST_nearestApproachDistance(trajectory traj, timestamp t1, timestamp t2, geometry g); 参数 参数名称 描述 traj 轨迹对象。 t1 开始时间。 t2 结束时间。 range 时间段。 g 几何对象。 示例 Select ST_neares...