@idm-plugin/geo 1.6.2 → 1.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +80 -60
- package/dist/index.umd.cjs +2 -2
- package/dist/lane/src/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/lane/src/index.d.ts
CHANGED
|
@@ -315,6 +315,12 @@ export declare class LaneHelper {
|
|
|
315
315
|
* @param waypoints 带时间的轨迹, 单位秒
|
|
316
316
|
*/
|
|
317
317
|
static nearestTSPointInWaypoints(ts: number, step: number, waypoints: Coordinate[]): Coordinate | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* 推测船位
|
|
320
|
+
* @param ts 目标时间的船位,单位 s
|
|
321
|
+
* @param positions 带时间(positionTime)的轨迹
|
|
322
|
+
*/
|
|
323
|
+
static deadReckoning(ts: number, positions: Coordinate[]): any;
|
|
318
324
|
/**
|
|
319
325
|
* 翻转轨迹
|
|
320
326
|
* @param route
|