@idm-plugin/vessel 1.3.2 → 1.3.4
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.
|
@@ -133,7 +133,9 @@ export declare class SpeedHelper {
|
|
|
133
133
|
* @param useMeteo true 启用气象分析
|
|
134
134
|
* @param useRouteParam true 启用设置速度
|
|
135
135
|
*/
|
|
136
|
-
|
|
136
|
+
static speedLoseAt(props: VesselProperties, coordinate: any, eta: moment.Moment, source?: string, role?: number, useMeteo?: boolean, useRouteParam?: boolean, options?: {
|
|
137
|
+
requestId?: string;
|
|
138
|
+
}): Promise<any>;
|
|
137
139
|
/**
|
|
138
140
|
* 基于步长计算失速样本
|
|
139
141
|
* @param props 船舶属性(失速模型依赖)
|
|
@@ -203,8 +205,8 @@ export declare class SpeedHelper {
|
|
|
203
205
|
static analyseInstantWithThreshed(from: any, etd: any, threshed: moment.Moment, vessel: VesselAssemble, cp: {
|
|
204
206
|
loadCondition: string;
|
|
205
207
|
speed: number;
|
|
206
|
-
fo
|
|
207
|
-
dgo
|
|
208
|
+
fo?: number;
|
|
209
|
+
dgo?: number;
|
|
208
210
|
}, route: number[][][], waypoints: any[], source?: string, stepHrs?: number, useMeteo?: boolean, useRouteParam?: boolean, options?: {
|
|
209
211
|
requestId?: string;
|
|
210
212
|
}): Promise<{
|