@idm-plugin/vessel 3.4.1 → 3.4.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 CHANGED
@@ -1,26 +1,26 @@
1
- var ht = Object.defineProperty;
2
- var lt = (E, s, t) => s in E ? ht(E, s, { enumerable: !0, configurable: !0, writable: !0, value: t }) : E[s] = t;
3
- var U = (E, s, t) => (lt(E, typeof s != "symbol" ? s + "" : s, t), t);
4
- import V from "got";
5
- import ct from "@log4js-node/log4js-api";
1
+ var mt = Object.defineProperty;
2
+ var ft = (N, e, t) => e in N ? mt(N, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : N[e] = t;
3
+ var U = (N, e, t) => (ft(N, typeof e != "symbol" ? e + "" : e, t), t);
4
+ import B from "got";
5
+ import ut from "@log4js-node/log4js-api";
6
6
  import p from "moment";
7
- import { LngLatHelper as z, LaneHelper as W } from "@idm-plugin/geo2";
8
- import { MeteoHelper2 as mt } from "@idm-plugin/meteo2";
9
- import { Meteo2Assist as it } from "@idm-plugin/meteo";
10
- let f;
7
+ import { LngLatHelper as z, LaneHelper as V } from "@idm-plugin/geo2";
8
+ import { MeteoHelper2 as yt } from "@idm-plugin/meteo2";
9
+ import { Meteo2Assist as dt } from "@idm-plugin/meteo";
10
+ let y;
11
11
  try {
12
- f = ct.getLogger("vessel");
12
+ y = ut.getLogger("vessel");
13
13
  } catch {
14
14
  } finally {
15
15
  }
16
- class st {
16
+ class nt {
17
17
  /**
18
18
  * 解析AIS状态码
19
19
  * @param status
20
20
  */
21
- parseStatus(s) {
21
+ parseStatus(e) {
22
22
  let t, a;
23
- switch (s) {
23
+ switch (e) {
24
24
  case 0:
25
25
  t = "在航(主机推动)", a = "Underway Using Engine";
26
26
  break;
@@ -54,7 +54,7 @@ class st {
54
54
  return { labelCn: t, labelEn: a };
55
55
  }
56
56
  }
57
- class Ft extends st {
57
+ class Et extends nt {
58
58
  constructor(t, a) {
59
59
  super();
60
60
  U(this, "clientId");
@@ -69,8 +69,8 @@ class Ft extends st {
69
69
  client_secret: this.clientSecret,
70
70
  grant_type: "client_credentials"
71
71
  }
72
- }, n = await V.post(a, i).json();
73
- f == null || f.info("[%s] fetch access token from: %s - %j", t.requestId, a, n), n.error || (this.token = {
72
+ }, n = await B.post(a, i).json();
73
+ y == null || y.info("[%s] fetch access token from: %s - %j", t.requestId, a, n), n.error || (this.token = {
74
74
  accessToken: n.access_token,
75
75
  tokenType: n.token_type,
76
76
  expiresIn: n.expires_in,
@@ -89,20 +89,20 @@ class Ft extends st {
89
89
  * @param options
90
90
  */
91
91
  async suggest(t, a = {}) {
92
- var e, c;
92
+ var s, r;
93
93
  await this.checkToken(a);
94
94
  const i = "https://market.myvessel.cn/sdc/v1/mkt/vessels/fuzzy", n = {
95
95
  headers: {
96
- Authorization: `${(e = this.token) == null ? void 0 : e.tokenType} ${(c = this.token) == null ? void 0 : c.accessToken}`
96
+ Authorization: `${(s = this.token) == null ? void 0 : s.tokenType} ${(r = this.token) == null ? void 0 : r.accessToken}`
97
97
  },
98
98
  json: {
99
99
  kw: t,
100
100
  recordNum: a.ps || 10
101
101
  }
102
102
  };
103
- f == null || f.info("[%s] fetch suggest vessels from: %s - %j", a.requestId, i, n);
104
- const o = await V.post(i, n).json();
105
- return o.status !== 200 ? (f == null || f.warn("[%s] fetch suggest vessels failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), []) : (o.data || []).map((h) => ({
103
+ y == null || y.info("[%s] fetch suggest vessels from: %s - %j", a.requestId, i, n);
104
+ const o = await B.post(i, n).json();
105
+ return o.status !== 200 ? (y == null || y.warn("[%s] fetch suggest vessels failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), []) : (o.data || []).map((h) => ({
106
106
  mmsi: h.mmsi,
107
107
  name: h.nameEn,
108
108
  nameCn: h.nameCn,
@@ -120,107 +120,107 @@ class Ft extends st {
120
120
  * @param options
121
121
  */
122
122
  async search(t, a = {}) {
123
- var u, h;
123
+ var d, h;
124
124
  await this.checkToken(a);
125
- const i = /^\d{7}$/.test(t.toString()), n = i ? "https://market.myvessel.cn/sdc/v1/mkt/vessels/detail/imo" : "https://market.myvessel.cn/sdc/v1/mkt/vessels/detail/mmsi", o = i ? { imo: t } : { mmsi: t }, e = {
125
+ const i = /^\d{7}$/.test(t.toString()), n = i ? "https://market.myvessel.cn/sdc/v1/mkt/vessels/detail/imo" : "https://market.myvessel.cn/sdc/v1/mkt/vessels/detail/mmsi", o = i ? { imo: t } : { mmsi: t }, s = {
126
126
  headers: {
127
- Authorization: `${(u = this.token) == null ? void 0 : u.tokenType} ${(h = this.token) == null ? void 0 : h.accessToken}`
127
+ Authorization: `${(d = this.token) == null ? void 0 : d.tokenType} ${(h = this.token) == null ? void 0 : h.accessToken}`
128
128
  },
129
129
  searchParams: o
130
130
  };
131
- f == null || f.info("[%s] fetch vessel from: %s - %j", a.requestId, n, e);
132
- const c = await V.get(n, e).json();
133
- if (c.status !== 200)
134
- return f == null || f.warn("[%s] fetch suggest vessels failed: %j", a.requestId, { message: c.message, status: c.status, code: c.code }), {};
131
+ y == null || y.info("[%s] fetch vessel from: %s - %j", a.requestId, n, s);
132
+ const r = await B.get(n, s).json();
133
+ if (r.status !== 200)
134
+ return y == null || y.warn("[%s] fetch suggest vessels failed: %j", a.requestId, { message: r.message, status: r.status, code: r.code }), {};
135
135
  {
136
- const d = c.data;
137
- if (d)
136
+ const c = r.data;
137
+ if (c)
138
138
  return {
139
- mmsi: d.mmsi,
140
- imo: Number.isNaN(d.imo) ? null : Number(d.imo),
141
- callSign: d.callsign,
142
- name: d.nameEn,
143
- nameCn: d.nameCn,
144
- type: d.vesselTypeNameEn,
145
- flagName: d.flagCtry,
146
- clasz: d.classSociety,
147
- dateOfBuild: d.buildYearMonth,
148
- deadweight: d.dwt,
149
- grossTonnage: d.grt,
150
- netTonnage: d.net,
151
- teu: d.teu,
152
- length: d.length,
153
- breadth: d.width,
154
- height: d.height,
155
- draught: d.draught,
156
- speed: d.speed,
157
- passengerCapacity: d.passengercapacity,
139
+ mmsi: c.mmsi,
140
+ imo: Number.isNaN(c.imo) ? null : Number(c.imo),
141
+ callSign: c.callsign,
142
+ name: c.nameEn,
143
+ nameCn: c.nameCn,
144
+ type: c.vesselTypeNameEn,
145
+ flagName: c.flagCtry,
146
+ clasz: c.classSociety,
147
+ dateOfBuild: c.buildYearMonth,
148
+ deadweight: c.dwt,
149
+ grossTonnage: c.grt,
150
+ netTonnage: c.net,
151
+ teu: c.teu,
152
+ length: c.length,
153
+ breadth: c.width,
154
+ height: c.height,
155
+ draught: c.draught,
156
+ speed: c.speed,
157
+ passengerCapacity: c.passengercapacity,
158
158
  vendor: "myvessel",
159
- raw: d
159
+ raw: c
160
160
  };
161
161
  }
162
162
  return {};
163
163
  }
164
164
  async archives(t, a = {}) {
165
- var e, c;
165
+ var s, r;
166
166
  await this.checkToken(a);
167
167
  const i = "https://svc.data.myvessel.cn/sdc/v1/ship/info/batch", n = {
168
168
  headers: {
169
- Authorization: `${(e = this.token) == null ? void 0 : e.tokenType} ${(c = this.token) == null ? void 0 : c.accessToken}`
169
+ Authorization: `${(s = this.token) == null ? void 0 : s.tokenType} ${(r = this.token) == null ? void 0 : r.accessToken}`
170
170
  },
171
171
  json: {
172
172
  mmsiList: typeof t == "number" ? [t] : t
173
173
  }
174
174
  };
175
- f == null || f.info("[%s] fetch vessel archive from: %s - %j", a.requestId, i, n);
176
- const o = await V.post(i, n).json();
177
- return o.status !== 200 ? (f == null || f.warn("[%s] fetch vessel archive failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), {}) : o.data;
175
+ y == null || y.info("[%s] fetch vessel archive from: %s - %j", a.requestId, i, n);
176
+ const o = await B.post(i, n).json();
177
+ return o.status !== 200 ? (y == null || y.warn("[%s] fetch vessel archive failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), {}) : o.data;
178
178
  }
179
179
  async realTimePosition(t, a = {}) {
180
- var c, u;
180
+ var r, d;
181
181
  await this.checkToken(a);
182
182
  const i = "https://svc.data.myvessel.cn/sdc/v1/vessels/status/location/unit", n = {
183
183
  headers: {
184
- Authorization: `${(c = this.token) == null ? void 0 : c.tokenType} ${(u = this.token) == null ? void 0 : u.accessToken}`
184
+ Authorization: `${(r = this.token) == null ? void 0 : r.tokenType} ${(d = this.token) == null ? void 0 : d.accessToken}`
185
185
  },
186
186
  searchParams: { mmsi: t }
187
187
  };
188
- f == null || f.info("[%s] fetch realtime position from: %s - %j", a.requestId, i, n);
189
- const o = await V.get(i, n).json();
188
+ y == null || y.info("[%s] fetch realtime position from: %s - %j", a.requestId, i, n);
189
+ const o = await B.get(i, n).json();
190
190
  if (o.code)
191
- return f == null || f.warn("[%s] fetch realtime position failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), o;
192
- const e = o.data;
193
- for (const h in e)
194
- !isNaN(e[h]) && Number(e[h]) !== 1 / 0 && (e[h] = Number(e[h]));
195
- if (e) {
196
- const h = p(`${e.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
191
+ return y == null || y.warn("[%s] fetch realtime position failed: %j", a.requestId, { message: o.message, status: o.status, code: o.code }), o;
192
+ const s = o.data;
193
+ for (const h in s)
194
+ !isNaN(s[h]) && Number(s[h]) !== 1 / 0 && (s[h] = Number(s[h]));
195
+ if (s) {
196
+ const h = p(`${s.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
197
197
  return {
198
- mmsi: e.mmsi,
199
- name: e.vesselName || e.aisVesselName,
200
- imo: e.imo,
201
- callSign: e.callsign || e.aisCallSign,
202
- lat: e.lat,
203
- lng: e.lon,
204
- length: e.length,
205
- width: e.width,
206
- draught: e.currDraught,
207
- sog: e.sog,
208
- cog: e.cog,
209
- hdg: e.hdg,
210
- rot: e.rot,
211
- eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(e.eta) ? p.utc(e.eta).format() : void 0,
212
- destination: e.dest,
198
+ mmsi: s.mmsi,
199
+ name: s.vesselName || s.aisVesselName,
200
+ imo: s.imo,
201
+ callSign: s.callsign || s.aisCallSign,
202
+ lat: s.lat,
203
+ lng: s.lon,
204
+ length: s.length,
205
+ width: s.width,
206
+ draught: s.currDraught,
207
+ sog: s.sog,
208
+ cog: s.cog,
209
+ hdg: s.hdg,
210
+ rot: s.rot,
211
+ eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(s.eta) ? p.utc(s.eta).format() : void 0,
212
+ destination: s.dest,
213
213
  positionTime: h.unix(),
214
- status: e.status,
215
- labelCn: e.statusNameCn,
216
- labelEn: e.statusNameEn,
217
- vesselType: e.vesselTypeNameEn,
218
- flag: e.flagCtryNameEn,
219
- clasz: e.classSociety,
220
- build: e.buildYear,
221
- dwt: e.dwt,
222
- grt: e.grt,
223
- net: e.net,
214
+ status: s.status,
215
+ labelCn: s.statusNameCn,
216
+ labelEn: s.statusNameEn,
217
+ vesselType: s.vesselTypeNameEn,
218
+ flag: s.flagCtryNameEn,
219
+ clasz: s.classSociety,
220
+ build: s.buildYear,
221
+ dwt: s.dwt,
222
+ grt: s.grt,
223
+ net: s.net,
224
224
  method: "position",
225
225
  vendor: "myVessel",
226
226
  utc: h.utc().format()
@@ -229,11 +229,11 @@ class Ft extends st {
229
229
  return {};
230
230
  }
231
231
  async calculateRoute(t, a, i = {}) {
232
- var c, u;
232
+ var r, d;
233
233
  await this.checkToken(i);
234
234
  const n = "https://svc.data.myvessel.cn/sdc/v1/routes/routing/nodes", o = {
235
235
  headers: {
236
- Authorization: `${(c = this.token) == null ? void 0 : c.tokenType} ${(u = this.token) == null ? void 0 : u.accessToken}`
236
+ Authorization: `${(r = this.token) == null ? void 0 : r.tokenType} ${(d = this.token) == null ? void 0 : d.accessToken}`
237
237
  },
238
238
  json: {
239
239
  startPoint: {
@@ -249,22 +249,22 @@ class Ft extends st {
249
249
  withECA: i.withECA || !1
250
250
  }
251
251
  };
252
- f == null || f.info("[%s] fetch route from: %s - %j", i.requestId, n, o);
253
- const e = await V.post(n, o).json();
254
- return e.status !== 200 ? (f == null || f.warn("[%s] fetch route failed: %j", i.requestId, { message: e.message, status: e.status, code: e.code }), {}) : e.data;
252
+ y == null || y.info("[%s] fetch route from: %s - %j", i.requestId, n, o);
253
+ const s = await B.post(n, o).json();
254
+ return s.status !== 200 ? (y == null || y.warn("[%s] fetch route failed: %j", i.requestId, { message: s.message, status: s.status, code: s.code }), {}) : s.data;
255
255
  }
256
- async trajectory(t, a, i, n, o = !0, e = {}) {
257
- await this.checkToken(e);
258
- const c = await this.realTimePosition(t, e), u = p(a), h = p(i), d = [];
259
- for (; h.diff(u, "day", !0) > 30; )
260
- await this.trajectoryIn30Day(t, u, u.clone().add(30, "day"), c, n, d, e), u.add(30, "day");
261
- return await this.trajectoryIn30Day(t, u, h, c, n, d, e), d;
256
+ async trajectory(t, a, i, n, o = !0, s = {}) {
257
+ await this.checkToken(s);
258
+ const r = await this.realTimePosition(t, s), d = p(a), h = p(i), c = [];
259
+ for (; h.diff(d, "day", !0) > 30; )
260
+ await this.trajectoryIn30Day(t, d, d.clone().add(30, "day"), r, n, c, s), d.add(30, "day");
261
+ return await this.trajectoryIn30Day(t, d, h, r, n, c, s), c;
262
262
  }
263
- async trajectoryIn30Day(t, a, i, n, o, e, c = {}) {
264
- var M, j, I, w, g;
265
- const u = "https://svc.data.myvessel.cn/sdc/v1/vessels/status/track", h = {
263
+ async trajectoryIn30Day(t, a, i, n, o, s, r = {}) {
264
+ var b, j, F, g, v;
265
+ const d = "https://svc.data.myvessel.cn/sdc/v1/vessels/status/track", h = {
266
266
  headers: {
267
- Authorization: `${(M = this.token) == null ? void 0 : M.tokenType} ${(j = this.token) == null ? void 0 : j.accessToken}`
267
+ Authorization: `${(b = this.token) == null ? void 0 : b.tokenType} ${(j = this.token) == null ? void 0 : j.accessToken}`
268
268
  },
269
269
  json: {
270
270
  mmsi: t,
@@ -272,39 +272,39 @@ class Ft extends st {
272
272
  endTime: i.utcOffset(8).format("YYYY-MM-DD HH:mm:ss")
273
273
  }
274
274
  };
275
- f == null || f.info("[%s] fetch trajectory from: %s - %j", c.requestId, u, h);
276
- const d = await V.post(u, h).json();
277
- if (d.code)
278
- return f == null || f.warn("[%s] fetch trajectory failed: %j", c.requestId, u, { message: d.message, status: d.status, code: d.code }), d;
279
- let y = -1;
280
- const v = p(`${(w = (I = d.data) == null ? void 0 : I[0]) == null ? void 0 : w.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
281
- return (g = d.data) == null || g.forEach((r) => {
282
- for (const P in r)
283
- !isNaN(r[P]) && Number(r[P]) !== 1 / 0 && (r[P] = Number(r[P]));
284
- const b = p(`${r.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00"), m = r.status, { labelCn: l, labelEn: k } = this.parseStatus(m), S = {
285
- mmsi: r.mmsi,
275
+ y == null || y.info("[%s] fetch trajectory from: %s - %j", r.requestId, d, h);
276
+ const c = await B.post(d, h).json();
277
+ if (c.code)
278
+ return y == null || y.warn("[%s] fetch trajectory failed: %j", r.requestId, d, { message: c.message, status: c.status, code: c.code }), c;
279
+ let M = -1;
280
+ const w = p(`${(g = (F = c.data) == null ? void 0 : F[0]) == null ? void 0 : g.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
281
+ return (v = c.data) == null || v.forEach((f) => {
282
+ for (const q in f)
283
+ !isNaN(f[q]) && Number(f[q]) !== 1 / 0 && (f[q] = Number(f[q]));
284
+ const u = p(`${f.postime} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00"), l = f.status, { labelCn: m, labelEn: I } = this.parseStatus(l), k = {
285
+ mmsi: f.mmsi,
286
286
  imo: n == null ? void 0 : n.imo,
287
- lat: r.lat,
288
- lng: r.lon,
289
- sog: r.sog,
290
- cog: r.cog,
291
- hdg: r.hdg,
292
- draught: r.draught,
293
- status: m,
294
- eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(r.eta) ? p(`${r.eta} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00").utc().format() : void 0,
295
- destination: r.dest,
296
- positionTime: b.unix(),
297
- labelCn: l,
298
- labelEn: k,
287
+ lat: f.lat,
288
+ lng: f.lon,
289
+ sog: f.sog,
290
+ cog: f.cog,
291
+ hdg: f.hdg,
292
+ draught: f.draught,
293
+ status: l,
294
+ eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(f.eta) ? p(`${f.eta} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00").utc().format() : void 0,
295
+ destination: f.dest,
296
+ positionTime: u.unix(),
297
+ labelCn: m,
298
+ labelEn: I,
299
299
  method: "trajectory",
300
300
  vendor: "myVessel",
301
- utc: b.utc().format()
302
- }, D = Math.floor(b.diff(v, "minute", !0) / (o || 1));
303
- D !== y && (y = D, e.push(S));
304
- }), e;
301
+ utc: u.utc().format()
302
+ }, E = Math.floor(u.diff(w, "minute", !0) / (o || 1));
303
+ E !== M && (M = E, s.push(k));
304
+ }), s;
305
305
  }
306
306
  }
307
- class Et extends st {
307
+ class xt extends nt {
308
308
  constructor(t) {
309
309
  super();
310
310
  U(this, "token");
@@ -316,39 +316,39 @@ class Et extends st {
316
316
  mmsi: t,
317
317
  usertoken: this.token
318
318
  }
319
- }, o = await V.post(i, n).json();
320
- f == null || f.info("[%s] fetch realtime position from: %s - %j", a.requestId, i, n);
321
- const e = o == null ? void 0 : o.list;
322
- if (!e)
323
- return f == null || f.warn("[%s] fetch realtime position failed: %j", a.requestId, i, o), o;
324
- for (const v in e)
325
- !isNaN(e[v]) && Number(e[v]) !== 1 / 0 && (e[v] = Number(e[v]));
326
- e.status = e.sp > 3 ? 0 : 1;
327
- const c = e.status, { labelCn: u, labelEn: h } = this.parseStatus(c), d = p(`${e.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
319
+ }, o = await B.post(i, n).json();
320
+ y == null || y.info("[%s] fetch realtime position from: %s - %j", a.requestId, i, n);
321
+ const s = o == null ? void 0 : o.list;
322
+ if (!s)
323
+ return y == null || y.warn("[%s] fetch realtime position failed: %j", a.requestId, i, o), o;
324
+ for (const w in s)
325
+ !isNaN(s[w]) && Number(s[w]) !== 1 / 0 && (s[w] = Number(s[w]));
326
+ s.status = s.sp > 3 ? 0 : 1;
327
+ const r = s.status, { labelCn: d, labelEn: h } = this.parseStatus(r), c = p(`${s.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
328
328
  return {
329
- mmsi: e.m,
330
- name: e.n,
331
- imo: e.imonumber,
332
- callSign: e.callsign,
333
- lat: Math.round(e.la / 60 * 1e5) / 1e5,
334
- lng: Math.round(e.lo / 60 * 1e5) / 1e5,
335
- length: e.l,
336
- width: e.w,
337
- draught: e.draught,
338
- sog: e.sp,
339
- cog: e.co,
340
- hdg: e.h,
341
- rot: isNaN(e.rot) ? 0 : e.rot,
342
- eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(e.eta) ? p.utc(e.eta).format() : void 0,
343
- destination: e.destination,
344
- vesselType: e.type,
345
- dwt: e.dwt,
346
- build: e.buildyear,
347
- flag: e.fn,
348
- positionTime: d.unix(),
349
- utc: d.utc().format(),
350
- status: c,
351
- labelCn: u,
329
+ mmsi: s.m,
330
+ name: s.n,
331
+ imo: s.imonumber,
332
+ callSign: s.callsign,
333
+ lat: Math.round(s.la / 60 * 1e5) / 1e5,
334
+ lng: Math.round(s.lo / 60 * 1e5) / 1e5,
335
+ length: s.l,
336
+ width: s.w,
337
+ draught: s.draught,
338
+ sog: s.sp,
339
+ cog: s.co,
340
+ hdg: s.h,
341
+ rot: isNaN(s.rot) ? 0 : s.rot,
342
+ eta: /\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/.test(s.eta) ? p.utc(s.eta).format() : void 0,
343
+ destination: s.destination,
344
+ vesselType: s.type,
345
+ dwt: s.dwt,
346
+ build: s.buildyear,
347
+ flag: s.fn,
348
+ positionTime: c.unix(),
349
+ utc: c.utc().format(),
350
+ status: r,
351
+ labelCn: d,
352
352
  labelEn: h,
353
353
  method: "position",
354
354
  vendor: "hifleet"
@@ -366,11 +366,11 @@ class Et extends st {
366
366
  Host: "www.hifleet.com"
367
367
  }
368
368
  };
369
- let o = await V.post(i, n).json();
370
- f == null || f.info("[%s] fetch vessel props from: %s - %j", a.requestId, i, n), o instanceof Array && (o = o[0]);
371
- for (const c in o)
372
- !isNaN(o[c]) && Number(o[c]) !== 1 / 0 && (o[c] = Number(o[c]));
373
- const e = {
369
+ let o = await B.post(i, n).json();
370
+ y == null || y.info("[%s] fetch vessel props from: %s - %j", a.requestId, i, n), o instanceof Array && (o = o[0]);
371
+ for (const r in o)
372
+ !isNaN(o[r]) && Number(o[r]) !== 1 / 0 && (o[r] = Number(o[r]));
373
+ const s = {
374
374
  mmsi: o.m,
375
375
  name: o.n,
376
376
  imo: o.i,
@@ -380,7 +380,7 @@ class Et extends st {
380
380
  draught: o.dr,
381
381
  type: o.t
382
382
  };
383
- return i = "https://www.hifleet.com/hifleetapi/sameShipSearch.do", o = await V.post(i, n).json(), f == null || f.info("[%s] search vessel dead weight from: %s - %j", a.requestId, i, n), o instanceof Array && (o = o[0]), o && (e.deadweight = Number(o.dwt)), e;
383
+ return i = "https://www.hifleet.com/hifleetapi/sameShipSearch.do", o = await B.post(i, n).json(), y == null || y.info("[%s] search vessel dead weight from: %s - %j", a.requestId, i, n), o instanceof Array && (o = o[0]), o && (s.deadweight = Number(o.dwt)), s;
384
384
  }
385
385
  async suggest(t, a = {}) {
386
386
  const i = "https://www.hifleet.com/hifleetapi/getShipSuggest.do", n = {
@@ -392,71 +392,71 @@ class Et extends st {
392
392
  Origin: "https://www.hifleet.com",
393
393
  Host: "www.hifleet.com"
394
394
  }
395
- }, o = await V.post(i, n).json();
396
- f == null || f.info("[%s] suggest vessel props from: %s - %j", a.requestId, i, n);
397
- const e = [];
398
- for (const c of o)
399
- e.push({
400
- mmsi: !c.mmsi || isNaN(c.mmsi) ? null : Number(c.mmsi),
401
- name: c.name,
402
- callSign: c.callsign,
403
- imo: !c.imo || isNaN(c.imo) ? null : Number(c.imo),
404
- score: c._score
395
+ }, o = await B.post(i, n).json();
396
+ y == null || y.info("[%s] suggest vessel props from: %s - %j", a.requestId, i, n);
397
+ const s = [];
398
+ for (const r of o)
399
+ s.push({
400
+ mmsi: !r.mmsi || isNaN(r.mmsi) ? null : Number(r.mmsi),
401
+ name: r.name,
402
+ callSign: r.callsign,
403
+ imo: !r.imo || isNaN(r.imo) ? null : Number(r.imo),
404
+ score: r._score
405
405
  });
406
- return e.sort((c, u) => u.score - c.score), e;
406
+ return s.sort((r, d) => d.score - r.score), s;
407
407
  }
408
- async trajectory(t, a, i, n, o = !0, e = {}) {
409
- var r, b, m;
410
- const c = await this.realTimePosition(t, e);
411
- let u = p(a);
412
- const h = p(i), d = p();
408
+ async trajectory(t, a, i, n, o = !0, s = {}) {
409
+ var f, u, l;
410
+ const r = await this.realTimePosition(t, s);
411
+ let d = p(a);
412
+ const h = p(i), c = p();
413
413
  if (o) {
414
- let l = h.diff(u, "d", !0);
415
- l < 0 ? u = h.clone().subtract(40, "d") : l < 30 ? u.subtract(10, "d") : l < 60 ? u.subtract(5, "d") : u = h.clone().subtract(80, "d"), l = d.diff(h, "d", !0), h.add(l > 10 ? 240 : l * 24, "h");
414
+ let m = h.diff(d, "d", !0);
415
+ m < 0 ? d = h.clone().subtract(40, "d") : m < 30 ? d.subtract(10, "d") : m < 60 ? d.subtract(5, "d") : d = h.clone().subtract(80, "d"), m = c.diff(h, "d", !0), h.add(m > 10 ? 240 : m * 24, "h");
416
416
  }
417
- const y = {
417
+ const M = {
418
418
  searchParams: {
419
419
  endtime: h.utcOffset("+8:00").format("YYYY-MM-DD HH:mm:ss"),
420
- starttime: u.utcOffset("+8:00").format("YYYY-MM-DD HH:mm:ss"),
420
+ starttime: d.utcOffset("+8:00").format("YYYY-MM-DD HH:mm:ss"),
421
421
  mmsi: t,
422
422
  usertoken: this.token
423
423
  }
424
- }, v = "https://api.hifleet.com/position/trajectory/nocompressed/withstatic/token", M = await V.get(v, y).json();
425
- f == null || f.info("[%s] fetch trajectory from: %s - %j", e.requestId, v, y);
424
+ }, w = "https://api.hifleet.com/position/trajectory/nocompressed/withstatic/token", b = await B.get(w, M).json();
425
+ y == null || y.info("[%s] fetch trajectory from: %s - %j", s.requestId, w, M);
426
426
  let j;
427
- M && (j = ((b = (r = M.ships) == null ? void 0 : r.offors) == null ? void 0 : b.ship) || [], j.length || f == null || f.warn("[%s] fetch trajectory failed: %j", e.requestId, M));
428
- const I = [];
429
- let w = -1;
430
- const g = p(`${(m = j == null ? void 0 : j[0]) == null ? void 0 : m.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
431
- for (const l of j) {
432
- for (const A in l)
433
- !isNaN(l[A]) && Number(l[A]) !== 1 / 0 && (l[A] = Number(l[A]));
434
- const k = p(`${l.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
435
- l.status = l.sp > 4 ? 0 : 1;
436
- const { labelEn: S, labelCn: D } = this.parseStatus(l.status), P = {
437
- mmsi: l.m,
438
- name: l.n,
439
- imo: c == null ? void 0 : c.imo,
440
- lat: l.la,
441
- lng: l.lo,
442
- draught: l.draught,
443
- sog: l.sp,
444
- cog: l.co,
445
- hdg: l.hdg,
446
- positionTime: k.unix(),
447
- utc: k.utc().format(),
448
- status: l.status,
449
- labelCn: D,
450
- labelEn: S,
427
+ b && (j = ((u = (f = b.ships) == null ? void 0 : f.offors) == null ? void 0 : u.ship) || [], j.length || y == null || y.warn("[%s] fetch trajectory failed: %j", s.requestId, b));
428
+ const F = [];
429
+ let g = -1;
430
+ const v = p(`${(l = j == null ? void 0 : j[0]) == null ? void 0 : l.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
431
+ for (const m of j) {
432
+ for (const H in m)
433
+ !isNaN(m[H]) && Number(m[H]) !== 1 / 0 && (m[H] = Number(m[H]));
434
+ const I = p(`${m.ti} +08:00`, "YYYY-MM-DD HH:mm:ss +08:00");
435
+ m.status = m.sp > 4 ? 0 : 1;
436
+ const { labelEn: k, labelCn: E } = this.parseStatus(m.status), q = {
437
+ mmsi: m.m,
438
+ name: m.n,
439
+ imo: r == null ? void 0 : r.imo,
440
+ lat: m.la,
441
+ lng: m.lo,
442
+ draught: m.draught,
443
+ sog: m.sp,
444
+ cog: m.co,
445
+ hdg: m.hdg,
446
+ positionTime: I.unix(),
447
+ utc: I.utc().format(),
448
+ status: m.status,
449
+ labelCn: E,
450
+ labelEn: k,
451
451
  method: "trajectory",
452
452
  vendor: "hifleet"
453
- }, N = Math.floor(k.diff(g, "minute", !0) / (n || 1));
454
- N !== w && (w = N, I.push(P));
453
+ }, D = Math.floor(I.diff(v, "minute", !0) / (n || 1));
454
+ D !== g && (g = D, F.push(q));
455
455
  }
456
- return I;
456
+ return F;
457
457
  }
458
458
  }
459
- class Nt extends st {
459
+ class Nt extends nt {
460
460
  constructor(t) {
461
461
  super();
462
462
  U(this, "token");
@@ -469,71 +469,71 @@ class Nt extends st {
469
469
  k: this.token,
470
470
  enc: 1
471
471
  }
472
- }, n = "https://api.shipxy.com/apicall/GetSingleShip", o = await V.get(n, i).json();
473
- if (f == null || f.info("[%s] fetch realtime position from: %s - %j", a.requestId, n, i), (o == null ? void 0 : o.status) !== 0)
472
+ }, n = "https://api.shipxy.com/apicall/GetSingleShip", o = await B.get(n, i).json();
473
+ if (y == null || y.info("[%s] fetch realtime position from: %s - %j", a.requestId, n, i), (o == null ? void 0 : o.status) !== 0)
474
474
  return o;
475
- const e = o.data[0];
476
- for (const y in e)
477
- !isNaN(e[y]) && Number(e[y]) !== 1 / 0 && (e[y] = Number(e[y]));
478
- const { labelCn: c, labelEn: u } = await this.parseStatus(e.navistat), h = p.unix(e.lasttime);
475
+ const s = o.data[0];
476
+ for (const M in s)
477
+ !isNaN(s[M]) && Number(s[M]) !== 1 / 0 && (s[M] = Number(s[M]));
478
+ const { labelCn: r, labelEn: d } = await this.parseStatus(s.navistat), h = p.unix(s.lasttime);
479
479
  return {
480
- mmsi: e.ShipID,
481
- name: e.name,
482
- imo: e.imo,
483
- callSign: e.callsign,
484
- lat: Math.round(e.lat / 1e6 * 1e5) / 1e5,
485
- lng: Math.round(e.lon / 1e6 * 1e5) / 1e5,
486
- length: Math.round(e.length / 10 * 100) / 100,
487
- width: Math.round(e.width / 10 * 100) / 100,
488
- draught: Math.round(e.draught / 1e3 * 100) / 100,
489
- sog: Math.round(e.sog * 3600 / 1e3 / 1852 * 100) / 100,
490
- cog: Math.round(e.cog / 100 * 100) / 100,
491
- hdg: Math.round(e.hdg / 100 * 100) / 100,
492
- rot: Math.round(e.rot / 100 * 100) / 100,
493
- positionTime: e.lasttime,
480
+ mmsi: s.ShipID,
481
+ name: s.name,
482
+ imo: s.imo,
483
+ callSign: s.callsign,
484
+ lat: Math.round(s.lat / 1e6 * 1e5) / 1e5,
485
+ lng: Math.round(s.lon / 1e6 * 1e5) / 1e5,
486
+ length: Math.round(s.length / 10 * 100) / 100,
487
+ width: Math.round(s.width / 10 * 100) / 100,
488
+ draught: Math.round(s.draught / 1e3 * 100) / 100,
489
+ sog: Math.round(s.sog * 3600 / 1e3 / 1852 * 100) / 100,
490
+ cog: Math.round(s.cog / 100 * 100) / 100,
491
+ hdg: Math.round(s.hdg / 100 * 100) / 100,
492
+ rot: Math.round(s.rot / 100 * 100) / 100,
493
+ positionTime: s.lasttime,
494
494
  utc: h.utc().format(),
495
- status: e.navistat,
496
- labelEn: u,
497
- labelCn: c,
495
+ status: s.navistat,
496
+ labelEn: d,
497
+ labelCn: r,
498
498
  method: "position",
499
499
  vendor: "shipxy"
500
500
  };
501
501
  }
502
- async trajectory(t, a, i, n, o = !0, e = {}) {
503
- var g;
504
- const c = await this.realTimePosition(t, e), u = p(a), h = p(i), d = "https://api.shipxy.com/apicall/GetShipTrack", y = {
502
+ async trajectory(t, a, i, n, o = !0, s = {}) {
503
+ var v;
504
+ const r = await this.realTimePosition(t, s), d = p(a), h = p(i), c = "https://api.shipxy.com/apicall/GetShipTrack", M = {
505
505
  searchParams: {
506
506
  id: t,
507
507
  k: this.token,
508
508
  enc: 1,
509
509
  cut: 0,
510
- btm: u.unix(),
510
+ btm: d.unix(),
511
511
  etm: h.unix()
512
512
  }
513
- }, v = await V.get(d, y).json();
514
- if (f == null || f.info("[%s] fetch trajectory from: %s - %j", e.requestId, d, y), (v == null ? void 0 : v.status) !== 0)
515
- return v;
516
- const M = v == null ? void 0 : v.points, j = [], I = p.unix((g = M[0]) == null ? void 0 : g.utc);
517
- let w = -1;
518
- for (const r of M) {
519
- const b = p.unix(r.utc), m = {
520
- imo: c == null ? void 0 : c.imo,
513
+ }, w = await B.get(c, M).json();
514
+ if (y == null || y.info("[%s] fetch trajectory from: %s - %j", s.requestId, c, M), (w == null ? void 0 : w.status) !== 0)
515
+ return w;
516
+ const b = w == null ? void 0 : w.points, j = [], F = p.unix((v = b[0]) == null ? void 0 : v.utc);
517
+ let g = -1;
518
+ for (const f of b) {
519
+ const u = p.unix(f.utc), l = {
520
+ imo: r == null ? void 0 : r.imo,
521
521
  mmsi: t,
522
- sog: Math.round(r.sog * 3600 / 1e3 / 1852 * 100) / 100,
523
- cog: Math.round(r.cog / 100 * 100) / 100,
524
- lat: Math.round(r.lat / 1e6 * 1e5) / 1e5,
525
- lng: Math.round(r.lon / 1e6 * 1e5) / 1e5,
526
- positionTime: b.unix(),
527
- utc: b.utc().format(),
522
+ sog: Math.round(f.sog * 3600 / 1e3 / 1852 * 100) / 100,
523
+ cog: Math.round(f.cog / 100 * 100) / 100,
524
+ lat: Math.round(f.lat / 1e6 * 1e5) / 1e5,
525
+ lng: Math.round(f.lon / 1e6 * 1e5) / 1e5,
526
+ positionTime: u.unix(),
527
+ utc: u.utc().format(),
528
528
  method: "trajectory",
529
529
  vendor: "shipxy"
530
- }, l = Math.floor(b.diff(I, "minute", !0) / (n || 1));
531
- l !== w && (w = l, j.push(m));
530
+ }, m = Math.floor(u.diff(F, "minute", !0) / (n || 1));
531
+ m !== g && (g = m, j.push(l));
532
532
  }
533
533
  return j;
534
534
  }
535
535
  }
536
- class Tt extends st {
536
+ class Dt extends nt {
537
537
  constructor(t) {
538
538
  super();
539
539
  U(this, "token");
@@ -547,8 +547,8 @@ class Tt extends st {
547
547
  json: {
548
548
  mmsiList: t
549
549
  }
550
- }, n = "https://api3.myships.com/sp/ships/getShipIdByMMSI", o = await V.post(n, i).json();
551
- return f == null || f.info("[%s] fetch ship id from: %s - %j", a.requestId, n, i), o.code !== "0" ? o : o.data[0].shipId;
550
+ }, n = "https://api3.myships.com/sp/ships/getShipIdByMMSI", o = await B.post(n, i).json();
551
+ return y == null || y.info("[%s] fetch ship id from: %s - %j", a.requestId, n, i), o.code !== "0" ? o : o.data[0].shipId;
552
552
  }
553
553
  async getShipInfo(t, a = {}) {
554
554
  const i = {
@@ -558,19 +558,19 @@ class Tt extends st {
558
558
  json: {
559
559
  shipId: t
560
560
  }
561
- }, n = "https://api3.myships.com/sp/ships/aissta", o = await V.post(n, i).json();
562
- if (f == null || f.info("[%s] fetch ship info from: %s - %j", a.requestId, n, i), o.code !== "0")
561
+ }, n = "https://api3.myships.com/sp/ships/aissta", o = await B.post(n, i).json();
562
+ if (y == null || y.info("[%s] fetch ship info from: %s - %j", a.requestId, n, i), o.code !== "0")
563
563
  return o;
564
- const e = o.data;
565
- let c = e.imo;
566
- return t === "407170" && (c = "9198379", f == null || f.warn("[%s] ship(%s) imo error: %s, should be %s", a.requestId, t, e.imo, c)), {
567
- mmsi: e.mmsi,
568
- name: e.shipnameEn,
569
- imo: c,
570
- callSign: e.callSign,
571
- length: e.length,
572
- width: e.breadth,
573
- draught: (e.draught || 100) / 10
564
+ const s = o.data;
565
+ let r = s.imo;
566
+ return t === "407170" && (r = "9198379", y == null || y.warn("[%s] ship(%s) imo error: %s, should be %s", a.requestId, t, s.imo, r)), {
567
+ mmsi: s.mmsi,
568
+ name: s.shipnameEn,
569
+ imo: r,
570
+ callSign: s.callSign,
571
+ length: s.length,
572
+ width: s.breadth,
573
+ draught: (s.draught || 100) / 10
574
574
  };
575
575
  }
576
576
  async realTimePosition(t, a = {}) {
@@ -581,38 +581,38 @@ class Tt extends st {
581
581
  json: {
582
582
  shipId: i
583
583
  }
584
- }, e = "https://api3.myships.com/sp/ships/position/latest", c = await V.post(e, o).json();
585
- f == null || f.info("[%s] fetch realtime position from: %s - %j", a.requestId, e, o);
586
- const u = c.data[0];
587
- for (const M in u)
588
- !isNaN(u[M]) && Number(u[M]) !== 1 / 0 && (u[M] = Number(u[M]));
589
- const { labelCn: h, labelEn: d } = await this.parseStatus(u.aisNavStatus), y = p.unix(u.posTime);
584
+ }, s = "https://api3.myships.com/sp/ships/position/latest", r = await B.post(s, o).json();
585
+ y == null || y.info("[%s] fetch realtime position from: %s - %j", a.requestId, s, o);
586
+ const d = r.data[0];
587
+ for (const b in d)
588
+ !isNaN(d[b]) && Number(d[b]) !== 1 / 0 && (d[b] = Number(d[b]));
589
+ const { labelCn: h, labelEn: c } = await this.parseStatus(d.aisNavStatus), M = p.unix(d.posTime);
590
590
  return {
591
591
  ...n,
592
592
  mmsi: t,
593
- lat: Math.round(u.lat / 1e4 / 60 * 1e5) / 1e5,
594
- lng: Math.round(u.lon / 1e4 / 60 * 1e5) / 1e5,
595
- sog: Math.round(u.sog / 10 * 100) / 100,
596
- cog: Math.round(u.cog / 10 * 100) / 100,
597
- hdg: Math.round(u.heading * 100) / 100,
598
- rot: Math.round(u.rot * 100) / 100,
599
- positionTime: u.posTime,
600
- utc: y.utc().format(),
601
- status: u.aisNavStatus,
602
- labelEn: d,
593
+ lat: Math.round(d.lat / 1e4 / 60 * 1e5) / 1e5,
594
+ lng: Math.round(d.lon / 1e4 / 60 * 1e5) / 1e5,
595
+ sog: Math.round(d.sog / 10 * 100) / 100,
596
+ cog: Math.round(d.cog / 10 * 100) / 100,
597
+ hdg: Math.round(d.heading * 100) / 100,
598
+ rot: Math.round(d.rot * 100) / 100,
599
+ positionTime: d.posTime,
600
+ utc: M.utc().format(),
601
+ status: d.aisNavStatus,
602
+ labelEn: c,
603
603
  labelCn: h,
604
604
  method: "position",
605
605
  vendor: "myship"
606
606
  };
607
607
  }
608
- async trajectory(t, a, i, n, o = !0, e = {}) {
609
- const c = p(a), u = p(i), h = await this.getShipId(t), d = await this.getShipInfo(h), y = [];
610
- for (; u.diff(c, "day", !0) > 30; )
611
- await this.trajectoryIn30Day(h, c.unix(), c.add(30, "day").unix(), d, t, n, y);
612
- return await this.trajectoryIn30Day(h, c.unix(), u.unix(), d, t, n, y), y;
608
+ async trajectory(t, a, i, n, o = !0, s = {}) {
609
+ const r = p(a), d = p(i), h = await this.getShipId(t), c = await this.getShipInfo(h), M = [];
610
+ for (; d.diff(r, "day", !0) > 30; )
611
+ await this.trajectoryIn30Day(h, r.unix(), r.add(30, "day").unix(), c, t, n, M);
612
+ return await this.trajectoryIn30Day(h, r.unix(), d.unix(), c, t, n, M), M;
613
613
  }
614
- async trajectoryIn30Day(t, a, i, n, o, e, c, u = {}) {
615
- var I;
614
+ async trajectoryIn30Day(t, a, i, n, o, s, r, d = {}) {
615
+ var F;
616
616
  const h = {
617
617
  headers: {
618
618
  appKey: this.token
@@ -622,42 +622,42 @@ class Tt extends st {
622
622
  startTime: a,
623
623
  endTime: i
624
624
  }
625
- }, d = "https://api3.myships.com/sp/ships/position/history", y = await V.post(d, h).json();
626
- if (f == null || f.info("[%s] fetch trajectory from: %s - %j", u.requestId, d, h), y.code !== "0")
627
- return f == null || f.warn("[%s] invoke myship trajectory failed: %j", u.requestId, y), y;
628
- const v = y.data;
629
- for (const w in v)
630
- !isNaN(v[w]) && Number(v[w]) !== 1 / 0 && (v[w] = Number(v[w]));
631
- const M = p.unix((I = v[0]) == null ? void 0 : I.posTime);
625
+ }, c = "https://api3.myships.com/sp/ships/position/history", M = await B.post(c, h).json();
626
+ if (y == null || y.info("[%s] fetch trajectory from: %s - %j", d.requestId, c, h), M.code !== "0")
627
+ return y == null || y.warn("[%s] invoke myship trajectory failed: %j", d.requestId, M), M;
628
+ const w = M.data;
629
+ for (const g in w)
630
+ !isNaN(w[g]) && Number(w[g]) !== 1 / 0 && (w[g] = Number(w[g]));
631
+ const b = p.unix((F = w[0]) == null ? void 0 : F.posTime);
632
632
  let j = -1;
633
- for (const w of v) {
634
- const g = p.unix(w.posTime), r = {
633
+ for (const g of w) {
634
+ const v = p.unix(g.posTime), f = {
635
635
  imo: n == null ? void 0 : n.imo,
636
636
  mmsi: o,
637
- lat: Math.round(w.lat / 1e4 / 60 * 1e5) / 1e5,
638
- lng: Math.round(w.lon / 1e4 / 60 * 1e5) / 1e5,
639
- sog: Math.round(w.sog / 10 * 100) / 100,
640
- cog: Math.round(w.cog / 10 * 100) / 100,
641
- hdg: Math.round(w.heading * 100) / 100,
642
- rot: Math.round(w.rot * 100) / 100,
643
- positionTime: g.unix(),
644
- utc: g.utc().format(),
637
+ lat: Math.round(g.lat / 1e4 / 60 * 1e5) / 1e5,
638
+ lng: Math.round(g.lon / 1e4 / 60 * 1e5) / 1e5,
639
+ sog: Math.round(g.sog / 10 * 100) / 100,
640
+ cog: Math.round(g.cog / 10 * 100) / 100,
641
+ hdg: Math.round(g.heading * 100) / 100,
642
+ rot: Math.round(g.rot * 100) / 100,
643
+ positionTime: v.unix(),
644
+ utc: v.utc().format(),
645
645
  method: "trajectory",
646
646
  vendor: "myship"
647
- }, b = Math.floor(g.diff(M, "minute", !0) / (e || 1));
648
- b !== j && (j = b, c.push(r));
647
+ }, u = Math.floor(v.diff(b, "minute", !0) / (s || 1));
648
+ u !== j && (j = u, r.push(f));
649
649
  }
650
- return c;
650
+ return r;
651
651
  }
652
652
  }
653
653
  let _;
654
654
  try {
655
- _ = ct.getLogger("vessel");
655
+ _ = ut.getLogger("vessel");
656
656
  } catch {
657
657
  } finally {
658
658
  }
659
- var ft = /* @__PURE__ */ ((E) => (E.NOTICE = "NOTICE", E.WARN = "WARN", E.HEAVY = "HEAVY", E.SEVERE = "SEVERE", E.ERROR = "ERROR", E.FATAL = "FATAL", E))(ft || {});
660
- class yt {
659
+ var Mt = /* @__PURE__ */ ((N) => (N.NOTICE = "NOTICE", N.WARN = "WARN", N.HEAVY = "HEAVY", N.SEVERE = "SEVERE", N.ERROR = "ERROR", N.FATAL = "FATAL", N))(Mt || {});
660
+ class bt {
661
661
  /**
662
662
  * 解析告警规则, 多规则场景
663
663
  * @param rule
@@ -666,21 +666,21 @@ class yt {
666
666
  *
667
667
  * @param options
668
668
  */
669
- parsePrinciple(s, t = {}) {
670
- var e, c, u;
671
- _ == null || _.debug("[%s] parse rule: %s", t.requestId, s);
672
- const a = new RegExp("(?<=\\[)(.+)(?=])", "g"), i = s.match(a) ? (e = s.match(a)) == null ? void 0 : e[0] : void 0, n = i == null ? void 0 : i.split(";");
669
+ parsePrinciple(e, t = {}) {
670
+ var s, r, d;
671
+ _ == null || _.debug("[%s] parse rule: %s", t.requestId, e);
672
+ const a = new RegExp("(?<=\\[)(.+)(?=])", "g"), i = e.match(a) ? (s = e.match(a)) == null ? void 0 : s[0] : void 0, n = i == null ? void 0 : i.split(";");
673
673
  if (!n)
674
674
  return;
675
675
  const o = {};
676
676
  for (let h = 0; h < (n == null ? void 0 : n.length); h++) {
677
- const d = (u = (c = n[h].match(a)) == null ? void 0 : c[0]) == null ? void 0 : u.split("],");
678
- if (h === 0 && !d)
677
+ const c = (d = (r = n[h].match(a)) == null ? void 0 : r[0]) == null ? void 0 : d.split("],");
678
+ if (h === 0 && !c)
679
679
  o.scope = n[0];
680
- else if (d)
681
- for (let y = 0, v = d.length; y < v; y++) {
682
- const M = this.parseRule(d[y]);
683
- M && (o[M.level] ? M.key ? o[M.level][M == null ? void 0 : M.key] = M : o[M.level] = M : M.key ? o[M.level] = { [M == null ? void 0 : M.key]: M } : o[M.level] = M);
680
+ else if (c)
681
+ for (let M = 0, w = c.length; M < w; M++) {
682
+ const b = this.parseRule(c[M]);
683
+ b && (o[b.level] ? b.key ? o[b.level][b == null ? void 0 : b.key] = b : o[b.level] = b : b.key ? o[b.level] = { [b == null ? void 0 : b.key]: b } : o[b.level] = b);
684
684
  }
685
685
  }
686
686
  return o;
@@ -691,17 +691,17 @@ class yt {
691
691
  * @param rule
692
692
  * @param options
693
693
  */
694
- parseRule(s, t = {}) {
694
+ parseRule(e, t = {}) {
695
695
  var o;
696
- _ == null || _.debug("[%s] parse rule: %s", t.requestId, s), s = s.startsWith("[") ? s : `[${s}`, s = s.endsWith("]") ? s : `${s}]`;
697
- const a = new RegExp("(?<=\\[)(.+?)(?=])", "g"), i = (o = s == null ? void 0 : s.match(a)) == null ? void 0 : o[0], n = i == null ? void 0 : i.split(",");
696
+ _ == null || _.debug("[%s] parse rule: %s", t.requestId, e), e = e.startsWith("[") ? e : `[${e}`, e = e.endsWith("]") ? e : `${e}]`;
697
+ const a = new RegExp("(?<=\\[)(.+?)(?=])", "g"), i = (o = e == null ? void 0 : e.match(a)) == null ? void 0 : o[0], n = i == null ? void 0 : i.split(",");
698
698
  if (n) {
699
- let e = n[3] === "Number.MAX_VALUE" ? 100 : Number(n[3]);
700
- return e = isNaN(e) ? 1 : e, {
699
+ let s = n[3] === "Number.MAX_VALUE" ? 100 : Number(n[3]);
700
+ return s = isNaN(s) ? 1 : s, {
701
701
  operator: n[0],
702
702
  number: Number.isNaN(Number(n[1])) ? n[1] : Number(n[1]),
703
703
  level: n[2],
704
- time: e,
704
+ time: s,
705
705
  key: n[4]
706
706
  };
707
707
  }
@@ -712,27 +712,27 @@ class yt {
712
712
  * @param principle 告警规则
713
713
  * @param options
714
714
  */
715
- checkWeather(s, t, a = {}) {
716
- var M, j, I, w, g, r, b, m, l, k, S, D, P, N, A;
717
- let i = 0, n = 0, o = 0, e = 0;
718
- const c = Math.round(((j = (M = t == null ? void 0 : t.SEVERE) == null ? void 0 : M.sigWave) == null ? void 0 : j.number) * 1.6 * 100) / 100, u = (w = (I = t == null ? void 0 : t.SEVERE) == null ? void 0 : I.sigWave) == null ? void 0 : w.number, h = (r = (g = t == null ? void 0 : t.HEAVY) == null ? void 0 : g.sigWave) == null ? void 0 : r.number, d = Math.round((((m = (b = t == null ? void 0 : t.SEVERE) == null ? void 0 : b.wind) == null ? void 0 : m.number) + 2) * 100) / 100, y = (k = (l = t == null ? void 0 : t.SEVERE) == null ? void 0 : l.wind) == null ? void 0 : k.number, v = (D = (S = t == null ? void 0 : t.HEAVY) == null ? void 0 : S.wind) == null ? void 0 : D.number;
719
- for (let x = 0; x < (s == null ? void 0 : s.length); x++) {
720
- const T = s[x], q = (N = (P = T == null ? void 0 : T.meteo) == null ? void 0 : P.wave) == null ? void 0 : N.sig, R = (A = T == null ? void 0 : T.meteo) == null ? void 0 : A.wind, J = x ? p(T.eta).diff(p(s[x - 1].eta), "hour", !0) : 0;
721
- e = J > e ? J : e, _ == null || _.debug("[%s] check sig.wave: %j", a.requestId, { ...q, dgThd4Wv: c, svThd4Wv: u, hvThd4Wv: h }), (q == null ? void 0 : q.height) >= c ? T.isDangerous = !0 : (q == null ? void 0 : q.height) >= u ? T.isSevere = !0 : (q == null ? void 0 : q.height) >= h && (T.isHeavy = !0), _ == null || _.debug("[%s] check wind: %j", a.requestId, { ...R, dgThd4Wd: d, svThd4Wd: y, hvThd4Wd: v }), (R == null ? void 0 : R.scale) >= d ? (T.isDangerous = !0, delete T.isSevere, delete T.isHeavy) : (R == null ? void 0 : R.scale) > y ? (T.isDangerous || (T.isSevere = !0), delete T.isHeavy) : (R == null ? void 0 : R.scale) === v && !T.isDangerous && !T.isSevere && (T.isHeavy = !0), i += T.isDangerous ? J : 0, n += T.isSevere ? J : 0, o += T.isHeavy ? J : 0;
715
+ checkWeather(e, t, a = {}) {
716
+ var b, j, F, g, v, f, u, l, m, I, k, E, q, D, H;
717
+ let i = 0, n = 0, o = 0, s = 0;
718
+ const r = Math.round(((j = (b = t == null ? void 0 : t.SEVERE) == null ? void 0 : b.sigWave) == null ? void 0 : j.number) * 1.6 * 100) / 100, d = (g = (F = t == null ? void 0 : t.SEVERE) == null ? void 0 : F.sigWave) == null ? void 0 : g.number, h = (f = (v = t == null ? void 0 : t.HEAVY) == null ? void 0 : v.sigWave) == null ? void 0 : f.number, c = Math.round((((l = (u = t == null ? void 0 : t.SEVERE) == null ? void 0 : u.wind) == null ? void 0 : l.number) + 2) * 100) / 100, M = (I = (m = t == null ? void 0 : t.SEVERE) == null ? void 0 : m.wind) == null ? void 0 : I.number, w = (E = (k = t == null ? void 0 : t.HEAVY) == null ? void 0 : k.wind) == null ? void 0 : E.number;
719
+ for (let T = 0; T < (e == null ? void 0 : e.length); T++) {
720
+ const x = e[T], O = (D = (q = x == null ? void 0 : x.meteo) == null ? void 0 : q.wave) == null ? void 0 : D.sig, R = (H = x == null ? void 0 : x.meteo) == null ? void 0 : H.wind, J = T ? p(x.eta).diff(p(e[T - 1].eta), "hour", !0) : 0;
721
+ s = J > s ? J : s, _ == null || _.debug("[%s] check sig.wave: %j", a.requestId, { ...O, dgThd4Wv: r, svThd4Wv: d, hvThd4Wv: h }), (O == null ? void 0 : O.height) >= r ? x.isDangerous = !0 : (O == null ? void 0 : O.height) >= d ? x.isSevere = !0 : (O == null ? void 0 : O.height) >= h && (x.isHeavy = !0), _ == null || _.debug("[%s] check wind: %j", a.requestId, { ...R, dgThd4Wd: c, svThd4Wd: M, hvThd4Wd: w }), (R == null ? void 0 : R.scale) >= c ? (x.isDangerous = !0, delete x.isSevere, delete x.isHeavy) : (R == null ? void 0 : R.scale) > M ? (x.isDangerous || (x.isSevere = !0), delete x.isHeavy) : (R == null ? void 0 : R.scale) === w && !x.isDangerous && !x.isSevere && (x.isHeavy = !0), i += x.isDangerous ? J : 0, n += x.isSevere ? J : 0, o += x.isHeavy ? J : 0;
722
722
  }
723
- return i = Math.round(i * 100) / 100, n = Math.round(n * 100) / 100, o = Math.round(o * 100) / 100, e = Math.round(e), { sample: s, dangerous: i, severe: n, heavy: o, step: e < 3 ? 3 : e, wind: { dgThd4Wd: d, svThd4Wd: y, hvThd4Wd: v }, sig: { dgThd4Wv: c, svThd4Wv: u, hvThd4Wv: h } };
723
+ return i = Math.round(i * 100) / 100, n = Math.round(n * 100) / 100, o = Math.round(o * 100) / 100, s = Math.round(s), { sample: e, dangerous: i, severe: n, heavy: o, step: s < 3 ? 3 : s, wind: { dgThd4Wd: c, svThd4Wd: M, hvThd4Wd: w }, sig: { dgThd4Wv: r, svThd4Wv: d, hvThd4Wv: h } };
724
724
  }
725
725
  }
726
- const xt = new yt();
726
+ const At = new bt();
727
727
  let C;
728
728
  try {
729
- C = ct.getLogger("vessel");
729
+ C = ut.getLogger("vessel");
730
730
  } catch {
731
731
  } finally {
732
732
  }
733
- const Mt = new mt("", !0);
734
- var bt = /* @__PURE__ */ ((E) => (E.common = "common", E.container = "container", E.tugs = "tugs", E))(bt || {}), gt = /* @__PURE__ */ ((E) => (E.Ballast = "Ballast", E.Laden = "Laden", E))(gt || {}), vt = /* @__PURE__ */ ((E) => (E.Cp = "CP", E.Perf = "Basis", E.Instruct = "Other", E))(vt || {});
735
- class O {
733
+ const gt = new yt("", !0);
734
+ var pt = /* @__PURE__ */ ((N) => (N.common = "common", N.container = "container", N.tugs = "tugs", N))(pt || {}), vt = /* @__PURE__ */ ((N) => (N.Ballast = "Ballast", N.Laden = "Laden", N))(vt || {}), wt = /* @__PURE__ */ ((N) => (N.Cp = "CP", N.Perf = "Basis", N.Instruct = "Other", N))(wt || {});
735
+ class W {
736
736
  /**
737
737
  * @see https://baike.baidu.com/item/%E6%96%B9%E5%BD%A2%E7%B3%BB%E6%95%B0/4965568?fr=aladdin
738
738
  * 方形系数(block coefficient)
@@ -745,11 +745,11 @@ class O {
745
745
  * @param draught 吃水 m
746
746
  * @return [0.55, 0.85]
747
747
  */
748
- static blockCoefficient(s, t, a, i) {
749
- let n = Math.round(s / (t * a * i) * 100) / 100;
748
+ static blockCoefficient(e, t, a, i) {
749
+ let n = Math.round(e / (t * a * i) * 100) / 100;
750
750
  n = n < 0.55 ? 0.55 : n > 0.85 ? 0.85 : n;
751
- const o = [0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85], e = o.map((c) => Math.abs(c - n));
752
- return o[e.indexOf(Math.min(...e))];
751
+ const o = [0.55, 0.6, 0.65, 0.7, 0.75, 0.8, 0.85], s = o.map((r) => Math.abs(r - n));
752
+ return o[s.indexOf(Math.min(...s))];
753
753
  }
754
754
  /**
755
755
  * @see https://baike.baidu.com/item/%E5%BC%97%E5%8A%B3%E5%BE%B7%E6%95%B0/228891?fromModule=search-result_lemma-recommend
@@ -762,8 +762,8 @@ class O {
762
762
  * @param g 重力加速度 9.80 m/s^2
763
763
  * @return [0.05, 0.30]
764
764
  */
765
- static froudeNumber(s, t, a = 9.8) {
766
- let i = Math.round(Math.sqrt(s * s / (a * t)) * 100) / 100;
765
+ static froudeNumber(e, t, a = 9.8) {
766
+ let i = Math.round(Math.sqrt(e * e / (a * t)) * 100) / 100;
767
767
  return i = i < 0.05 ? 0.05 : i > 0.3 ? 0.3 : i, i;
768
768
  }
769
769
  /**
@@ -773,7 +773,7 @@ class O {
773
773
  * @param loadCondition
774
774
  * @private
775
775
  */
776
- static amendFactor(s, t, a) {
776
+ static amendFactor(e, t, a) {
777
777
  const i = {
778
778
  0.55: [1.7, -1.4, -7.4],
779
779
  0.6: [2.2, -2.5, -9.7],
@@ -791,8 +791,8 @@ class O {
791
791
  0.75: [2.6, -12.5, -13.5],
792
792
  0.8: [3, -16.3, -21.6],
793
793
  0.85: [3.4, -20.9, 31.8]
794
- }[s];
795
- return a === "Laden" && (o = i[s]), o[0] + o[1] * t + o[2] * Math.pow(t, 2);
794
+ }[e];
795
+ return a === "Laden" && (o = i[e]), o[0] + o[1] * t + o[2] * Math.pow(t, 2);
796
796
  }
797
797
  /**
798
798
  * 失速方向因子
@@ -805,9 +805,9 @@ class O {
805
805
  * @param bn
806
806
  * @private
807
807
  */
808
- static directionFactor(s, t = 0) {
808
+ static directionFactor(e, t = 0) {
809
809
  let a;
810
- return s > 30 && s <= 60 ? a = (1.7 - 0.03 * Math.pow(t - 4, 2)) / 2 : s > 60 && s <= 150 ? a = (0.9 - 0.06 * Math.pow(t - 6, 2)) / 2 : s > 150 && s <= 180 ? a = (0.4 - 0.03 * Math.pow(t - 8, 2)) / 2 : a = 1, Math.round(a * 1e5) / 1e5;
810
+ return e > 30 && e <= 60 ? a = (1.7 - 0.03 * Math.pow(t - 4, 2)) / 2 : e > 60 && e <= 150 ? a = (0.9 - 0.06 * Math.pow(t - 6, 2)) / 2 : e > 150 && e <= 180 ? a = (0.4 - 0.03 * Math.pow(t - 8, 2)) / 2 : a = 1, Math.round(a * 1e5) / 1e5;
811
811
  }
812
812
  /**
813
813
  * 失速船型因子
@@ -821,9 +821,9 @@ class O {
821
821
  * @param kts
822
822
  * @private
823
823
  */
824
- static vesselTagFactor(s, t, a, i) {
824
+ static vesselTagFactor(e, t, a, i) {
825
825
  let n;
826
- return a === "container" ? n = 0.7 * i / 2 + Math.pow(i, 3) / (22 * Math.pow(s, 2 / 3)) : t === "Ballast" ? n = 0.7 * i / 2 + Math.pow(i, 3) / (2.7 * Math.pow(s, 2 / 3)) : n = 0.5 * i / 2 + Math.pow(i, 3) / (2.7 * Math.pow(s, 2 / 3)), n;
826
+ return a === "container" ? n = 0.7 * i / 2 + Math.pow(i, 3) / (22 * Math.pow(e, 2 / 3)) : t === "Ballast" ? n = 0.7 * i / 2 + Math.pow(i, 3) / (2.7 * Math.pow(e, 2 / 3)) : n = 0.5 * i / 2 + Math.pow(i, 3) / (2.7 * Math.pow(e, 2 / 3)), n;
827
827
  }
828
828
  /**
829
829
  * 浪高影响因子
@@ -831,10 +831,10 @@ class O {
831
831
  * @param beta 夹角
832
832
  * @private
833
833
  */
834
- static waveHeightFactor(s, t) {
835
- s = s < 3 ? s * 0.7 : s, s = s < 0 ? 0.2 : s, s = s > 6 ? s - 0.9 * (s - 6) : s, s = s > 9 ? 9 : s;
834
+ static waveHeightFactor(e, t) {
835
+ e = e < 3 ? e * 0.7 : e, e = e < 0 ? 0.2 : e, e = e > 6 ? e - 0.9 * (e - 6) : e, e = e > 9 ? 9 : e;
836
836
  let a;
837
- return t > 30 && t <= 60 ? a = -0.6 : t > 60 && t <= 90 ? a = -0.4 : t > 90 && t <= 120 ? a = s < 3 ? 0.4 : -0.3 : t > 120 && t <= 150 ? a = s < 3 ? 0.6 : -0.5 : t > 150 && t <= 180 ? a = s < 3 ? 0.7 : -0.6 : a = -0.7, Math.round(a * (0.144 * Math.pow(s, 2) + 0.278 * s) * 1e4) / 1e4;
837
+ return t > 30 && t <= 60 ? a = -0.6 : t > 60 && t <= 90 ? a = -0.4 : t > 90 && t <= 120 ? a = e < 3 ? 0.4 : -0.3 : t > 120 && t <= 150 ? a = e < 3 ? 0.6 : -0.5 : t > 150 && t <= 180 ? a = e < 3 ? 0.7 : -0.6 : a = -0.7, Math.round(a * (0.144 * Math.pow(e, 2) + 0.278 * e) * 1e4) / 1e4;
838
838
  }
839
839
  /**
840
840
  * 组装船舶运行参数
@@ -844,18 +844,18 @@ class O {
844
844
  * @param bearing 方位角
845
845
  * @private
846
846
  */
847
- static assembleProperties(s, t, a, i) {
848
- var y;
849
- const n = s.lbp ?? s.length ?? s.lengthOverall ?? 198.9642, o = s.draught ?? 8, e = s.breadthMoulded ?? s.breadth ?? s.breadthExtreme ?? 32.4572, c = s.deadweight ?? 67035.7773, u = ((y = s == null ? void 0 : s.type) == null ? void 0 : y.toLowerCase()) || "common";
847
+ static assembleProperties(e, t, a, i) {
848
+ var M;
849
+ const n = e.lbp ?? e.length ?? e.lengthOverall ?? 198.9642, o = e.draught ?? 8, s = e.breadthMoulded ?? e.breadth ?? e.breadthExtreme ?? 32.4572, r = e.deadweight ?? 67035.7773, d = ((M = e == null ? void 0 : e.type) == null ? void 0 : M.toLowerCase()) || "common";
850
850
  return {
851
- tag: u.indexOf("container") > -1 ? "container" : u.indexOf("tugs") > -1 ? "tugs" : "common",
851
+ tag: d.indexOf("container") > -1 ? "container" : d.indexOf("tugs") > -1 ? "tugs" : "common",
852
852
  lbp: n,
853
853
  loadCondition: t,
854
854
  draught: o,
855
- breadthMoulded: e,
855
+ breadthMoulded: s,
856
856
  // 排水量(吨)= 载重量(吨)/ 1.025 + 吃水(米)× 船舶型宽(米)× 船舶型长(米)× 0.7
857
857
  // 其中,1.025是指海水的密度,吨是指公吨,吃水是指船舶的最大吃水深度。船舶型宽是指船舶的最大型宽,船舶型长是指船舶的设计型长。上述公式是针对常规船舶适用的,不同类型的船舶可能会有一些差异。
858
- displacement: Math.round((c / 1.025 + o * e * n * 0.7) * 1e4) / 1e4,
858
+ displacement: Math.round((r / 1.025 + o * s * n * 0.7) * 1e4) / 1e4,
859
859
  // 换算为m/s
860
860
  speed: Math.round((a ?? 14.1382) * 1852 / 3600 * 1e4) / 1e4,
861
861
  bearing: i || 90
@@ -872,41 +872,41 @@ class O {
872
872
  * @param useRouteParam true 启用设置速度
873
873
  * @param options
874
874
  */
875
- static async speedLoseAt(s, t, a, i = "", n = 2, o = !0, e = !1, c = {}) {
876
- let u;
877
- if (t.velocity && e && (s.speed = z.roundPrecision(t.velocity * 1852 / 3600, 6)), o) {
875
+ static async speedLoseAt(e, t, a, i = "", n = 2, o = !0, s = !1, r = {}) {
876
+ let d;
877
+ if (t.velocity && s && (e.speed = z.roundPrecision(t.velocity * 1852 / 3600, 6)), o) {
878
878
  let h;
879
879
  try {
880
880
  i = (i == null ? void 0 : i.toUpperCase()) === "CMEMS" ? "ECMWF" : i, i = (i == null ? void 0 : i.toUpperCase()) === "METEO2" ? "best_match" : i;
881
- const { weatherModels: M, marineModels: j } = await it.autoPickMeteoModel(i), I = await Mt.spotForecast(t.lat, t.lng, a.utc().format(), !1, !1, !0, {
882
- ...c,
881
+ const { weatherModels: b, marineModels: j } = await dt.autoPickMeteoModel(i), F = await gt.spotForecast(t.lat, t.lng, a.utc().format(), !1, !1, !0, {
882
+ ...r,
883
883
  pastDays: 1,
884
884
  forecastDays: 1,
885
- weatherModels: M,
885
+ weatherModels: b,
886
886
  marineModels: j
887
- }), [w] = it.pickHourly(I, a);
888
- h = it.toLegacy(w);
889
- } catch (M) {
890
- C.warn("[%s] meteo2 spot(%j) forecast failed: %s", c.requestId, { ...t, eta: a.utc().format(), source: i }, M);
887
+ }), [g] = dt.pickHourly(F, a);
888
+ h = dt.toLegacy(g);
889
+ } catch (b) {
890
+ C.warn("[%s] meteo2 spot(%j) forecast failed: %s", r.requestId, { ...t, eta: a.utc().format(), source: i }, b);
891
891
  }
892
- const d = O.currentFactor(s.bearing, h == null ? void 0 : h.current, n), y = O.weatherFactor(s, h, d), v = Math.round((s.speed * 1.943844 + y + d) * 100) / 100;
893
- u = {
892
+ const c = W.currentFactor(e.bearing, h == null ? void 0 : h.current, n), M = W.weatherFactor(e, h, c), w = Math.round((e.speed * 1.943844 + M + c) * 100) / 100;
893
+ d = {
894
894
  meteo: { ...h },
895
- wxFactor: y,
896
- cFactor: d,
897
- speed: t.velocity && e ? t.velocity : v < 0 ? 1 : v,
895
+ wxFactor: M,
896
+ cFactor: c,
897
+ speed: t.velocity && s ? t.velocity : w < 0 ? 1 : w,
898
898
  eta: a.utc().format(),
899
899
  etd: a.utc().format()
900
900
  };
901
901
  } else
902
- u = {
902
+ d = {
903
903
  wxFactor: 0,
904
904
  cFactor: 0,
905
- speed: t.velocity && e ? t.velocity : Math.round(s.speed * 1.943844 * 100) / 100,
905
+ speed: t.velocity && s ? t.velocity : Math.round(e.speed * 1.943844 * 100) / 100,
906
906
  eta: a.utc().format(),
907
907
  etd: a.utc().format()
908
908
  };
909
- return delete t.meteo, delete t.wxFactor, delete t.cFactor, delete t.speed, delete t.etd, { ...u, ...t };
909
+ return delete t.meteo, delete t.wxFactor, delete t.cFactor, delete t.speed, delete t.etd, { ...d, ...t };
910
910
  }
911
911
  /**
912
912
  * 基于步长计算失速样本
@@ -922,53 +922,53 @@ class O {
922
922
  * @param options
923
923
  * @private
924
924
  */
925
- static async speedLoseInHoursStep(s, t, a, i, n, o, e = "", c = !0, u = !1, h = {}) {
925
+ static async speedLoseInHoursStep(e, t, a, i, n, o, s = "", r = !0, d = !1, h = {}) {
926
926
  t.utc();
927
- const d = t.clone().add(14, "days"), y = [], v = [];
928
- let M = 0, j = 0, I, w;
929
- for (let g = 0; g < o.length - 1; g++) {
930
- let r = o[g];
931
- r.distanceFromStart = Math.round((n + j) * 1e3) / 1e3;
932
- const b = o[g + 1];
933
- if (s.bearing = W.calculateBearing(r, b, !b.gcToPrevious), r.bearing = s.bearing, r.suspend && u) {
934
- r.eta = r.eta || t.utc().format(), r.elapsed = r.elapsed ?? 0;
935
- const k = r.suspend - r.elapsed;
936
- if (i - M > k)
937
- i = i - M - k, t.add(k, "hour"), r.elapsed = r.suspend;
927
+ const c = t.clone().add(14, "days"), M = [], w = [], b = [];
928
+ let j = 0, F = 0, g, v;
929
+ for (let f = 0; f < o.length - 1; f++) {
930
+ let u = o[f];
931
+ u.distanceFromStart = Math.round((n + F) * 1e3) / 1e3;
932
+ const l = o[f + 1];
933
+ if (e.bearing = V.calculateBearing(u, l, !l.gcToPrevious), u.bearing = e.bearing, u.suspend && d) {
934
+ u.eta = u.eta || t.utc().format(), u.elapsed = u.elapsed ?? 0;
935
+ const k = u.suspend - u.elapsed;
936
+ if (i - j > k)
937
+ i = i - j - k, t.add(k, "hour"), u.elapsed = u.suspend;
938
938
  else {
939
- const S = i - M;
940
- r.elapsed += S, t.add(S, "hour"), i = 0;
939
+ const E = i - j;
940
+ u.elapsed += E, t.add(E, "hour"), i = 0;
941
941
  }
942
- if (C == null || C.info(`[%s] suspend ${r.elapsed} hours at %j, and remain ${i} hours need to go...`, h.requestId, r), i === 0)
943
- return r.distanceFromPrevious = j, { etd: t, from: w || r, to: r, next: o.filter((S) => S), wps: y, days: v };
942
+ if (C == null || C.info(`[%s] suspend ${u.elapsed} hours at %j, and remain ${i} hours need to go...`, h.requestId, u), i === 0)
943
+ return u.distanceFromPrevious = F, { etd: t, from: v || u, to: u, next: o.filter((E) => E), wps: M, days: w, all: b };
944
944
  } else
945
- r.suspend = 0;
946
- c = t.isAfter(d) ? !1 : c, r = await O.speedLoseAt(s, r, t, e, 0, c, u, h), w = w || r, r.important && y.push(r), t.isSameOrAfter(a) && (v.push(r), a.add(24, "hour"));
947
- const m = W.calculateDistance(r, b, !b.gcToPrevious);
948
- let l = Math.round(m / w.speed * 1e5) / 1e5;
949
- if (M + l < i) {
950
- if (M += l, t.add(l, "hour"), delete o[g], C == null || C.debug(
951
- `[%s] go to %j from %j with ${m}nm, and cost ${l} hours`,
945
+ u.suspend = 0;
946
+ r = t.isAfter(c) ? !1 : r, u = await W.speedLoseAt(e, u, t, s, 0, r, d, h), b.push(u), v = v || u, u.important && M.push(u), t.isSameOrAfter(a) && (w.push(u), a.add(24, "hour"));
947
+ const m = V.calculateDistance(u, l, !l.gcToPrevious);
948
+ let I = Math.round(m / v.speed * 1e5) / 1e5;
949
+ if (j + I < i) {
950
+ if (j += I, t.add(I, "hour"), delete o[f], C == null || C.debug(
951
+ `[%s] go to %j from %j with ${m}nm, and cost ${I} hours`,
952
952
  h.requestId,
953
- { lat: b.lat, lng: b.lng },
954
- { lat: w.lat, lng: w.lng, etd: w.etd }
955
- ), j += m, o.filter((k) => k).length <= 1) {
956
- I = b, I.eta = t.utc().format(), I.distanceFromPrevious = m, I.distanceFromStart = Math.round((n + j) * 1e4) / 1e4, y.push(I), delete o[g + 1];
953
+ { lat: l.lat, lng: l.lng },
954
+ { lat: v.lat, lng: v.lng, etd: v.etd }
955
+ ), F += m, o.filter((k) => k).length <= 1) {
956
+ g = l, g.eta = t.utc().format(), g.distanceFromPrevious = m, g.distanceFromStart = Math.round((n + F) * 1e4) / 1e4, M.push(g), b.push(g), delete o[f + 1];
957
957
  break;
958
958
  }
959
959
  } else {
960
- l = i - M, t.add(l, "hour");
961
- const k = z.roundPrecision(w.speed * l, 5);
962
- I = W.calculateCoordinate(r, s.bearing, k, "nauticalmiles", !b.gcToPrevious), I.eta = t.utc().format(), o[g] = I, C == null || C.debug(
963
- `[%s] go to %j from %j with ${k}nm, and cost ${l} hours`,
960
+ I = i - j, t.add(I, "hour");
961
+ const k = z.roundPrecision(v.speed * I, 5);
962
+ g = V.calculateCoordinate(u, e.bearing, k, "nauticalmiles", !l.gcToPrevious), g.eta = t.utc().format(), o[f] = g, C == null || C.debug(
963
+ `[%s] go to %j from %j with ${k}nm, and cost ${I} hours`,
964
964
  h.requestId,
965
- { lat: I.lat, lng: I.lng },
966
- { lat: r.lat, lng: r.lng, etd: r.etd }
967
- ), j += k, I.distanceFromPrevious = Math.round(j * 1e4) / 1e4, I.distanceFromStart = Math.round((n + j) * 1e4) / 1e4;
965
+ { lat: g.lat, lng: g.lng },
966
+ { lat: u.lat, lng: u.lng, etd: u.etd }
967
+ ), F += k, g.distanceFromPrevious = Math.round(F * 1e4) / 1e4, g.distanceFromStart = Math.round((n + F) * 1e4) / 1e4;
968
968
  break;
969
969
  }
970
970
  }
971
- return { etd: t, from: w, to: I, next: o.filter((g) => g), wps: y, days: v };
971
+ return { etd: t, from: v, to: g, next: o.filter((f) => f), wps: M, days: w, all: b };
972
972
  }
973
973
  /**
974
974
  * 洋流影响因子
@@ -976,8 +976,8 @@ class O {
976
976
  * @param current 洋流要素
977
977
  * @param role 1: 船东, 2: 租家, 0: 未知
978
978
  */
979
- static currentFactor(s, t, a = 0) {
980
- const i = (s - (t == null ? void 0 : t.degree) || 0) / 180 * Math.PI;
979
+ static currentFactor(e, t, a = 0) {
980
+ const i = (e - (t == null ? void 0 : t.degree) || 0) / 180 * Math.PI;
981
981
  if (Math.abs(i) === Math.PI / 2)
982
982
  return 0;
983
983
  let n = ((t == null ? void 0 : t.kts) || 0) * Math.cos(i);
@@ -989,17 +989,17 @@ class O {
989
989
  * @param wwc 气象要素
990
990
  * @param cFactor 洋流因子
991
991
  */
992
- static weatherFactor(s, t, a = 0) {
993
- var v, M, j, I, w, g, r;
994
- C == null || C.debug("calculate weather factor via: %j", { ...s, ...t });
995
- const i = O.blockCoefficient(s.displacement, s.lbp, s.breadthMoulded, s.draught), n = z.roundPrecision(a * 1852 / 3600, 6), o = O.froudeNumber(s.speed - n, s.lbp), e = O.amendFactor(i, o, s.loadCondition);
996
- let c = Math.abs(s.bearing % 360 - (((v = t == null ? void 0 : t.wind) == null ? void 0 : v.degree) % 360 || 0));
997
- c = c > 180 ? 360 - c : c;
998
- const u = O.directionFactor(c, (M = t == null ? void 0 : t.wind) == null ? void 0 : M.scale), h = O.vesselTagFactor(s.displacement, s.loadCondition, s.tag, (j = t == null ? void 0 : t.wind) == null ? void 0 : j.kts);
999
- let d = u * e * h / 100 * (s.speed - n);
1000
- d = Math.round(d * 1.943844 * 1e4) / 1e4 * -1, s.tag === "tugs" && Math.abs(d) > 1 && (d = d / (Math.abs(Math.round(d)) + 1)), C == null || C.debug("wind wx factor = %d", d), c = Math.abs(s.bearing % 360 - (((w = (I = t == null ? void 0 : t.wave) == null ? void 0 : I.sig) == null ? void 0 : w.degree) % 360 || 0)), c = c > 180 ? 360 - c : c;
1001
- const y = O.waveHeightFactor(((r = (g = t == null ? void 0 : t.wave) == null ? void 0 : g.sig) == null ? void 0 : r.height) ?? 1, c);
1002
- return C == null || C.debug("wave wx factor = %d", y), d = Math.abs(d) > Math.abs(y) ? d : d * 0.3 + y * 0.7, C == null || C.debug("weather factor = %d", d), d = Math.abs(d) > 3 ? 3 * (Math.abs(d) / d) + Math.abs(d) / d * (Math.abs(d) - 2) * 0.1 : d, Math.round((d || 0) * 100) / 100;
992
+ static weatherFactor(e, t, a = 0) {
993
+ var w, b, j, F, g, v, f;
994
+ C == null || C.debug("calculate weather factor via: %j", { ...e, ...t });
995
+ const i = W.blockCoefficient(e.displacement, e.lbp, e.breadthMoulded, e.draught), n = z.roundPrecision(a * 1852 / 3600, 6), o = W.froudeNumber(e.speed - n, e.lbp), s = W.amendFactor(i, o, e.loadCondition);
996
+ let r = Math.abs(e.bearing % 360 - (((w = t == null ? void 0 : t.wind) == null ? void 0 : w.degree) % 360 || 0));
997
+ r = r > 180 ? 360 - r : r;
998
+ const d = W.directionFactor(r, (b = t == null ? void 0 : t.wind) == null ? void 0 : b.scale), h = W.vesselTagFactor(e.displacement, e.loadCondition, e.tag, (j = t == null ? void 0 : t.wind) == null ? void 0 : j.kts);
999
+ let c = d * s * h / 100 * (e.speed - n);
1000
+ c = Math.round(c * 1.943844 * 1e4) / 1e4 * -1, e.tag === "tugs" && Math.abs(c) > 1 && (c = c / (Math.abs(Math.round(c)) + 1)), C == null || C.debug("wind wx factor = %d", c), r = Math.abs(e.bearing % 360 - (((g = (F = t == null ? void 0 : t.wave) == null ? void 0 : F.sig) == null ? void 0 : g.degree) % 360 || 0)), r = r > 180 ? 360 - r : r;
1001
+ const M = W.waveHeightFactor(((f = (v = t == null ? void 0 : t.wave) == null ? void 0 : v.sig) == null ? void 0 : f.height) ?? 1, r);
1002
+ return C == null || C.debug("wave wx factor = %d", M), c = Math.abs(c) > Math.abs(M) ? c : c * 0.3 + M * 0.7, C == null || C.debug("weather factor = %d", c), c = Math.abs(c) > 3 ? 3 * (Math.abs(c) / c) + Math.abs(c) / c * (Math.abs(c) - 2) * 0.1 : c, Math.round((c || 0) * 100) / 100;
1003
1003
  }
1004
1004
  /**
1005
1005
  * 全程失速分析(走完航程)
@@ -1014,81 +1014,84 @@ class O {
1014
1014
  * @param useRouteParam
1015
1015
  * @param options
1016
1016
  */
1017
- static async analyseInstant(s, t, a, i, n, o = "", e = 0, c = !0, u = !1, h = {}) {
1018
- var K, G, X, Q, Z, $;
1019
- const d = p().valueOf();
1020
- s.lng = z.convertToStdLng(s.lng);
1021
- const { route: y, waypoints: v } = n.points, M = W.calculateSubRoute(s, y);
1022
- if (((K = M[0]) == null ? void 0 : K.length) <= 1)
1017
+ static async analyseInstant(e, t, a, i, n, o = "", s = 0, r = !0, d = !1, h = {}) {
1018
+ var K, G, X, Q, Z, $, tt;
1019
+ const c = p().valueOf();
1020
+ e.lng = z.convertToStdLng(e.lng);
1021
+ const { route: M, waypoints: w } = n.points, b = V.calculateSubRoute(e, M);
1022
+ if (((K = b[0]) == null ? void 0 : K.length) <= 1)
1023
1023
  return;
1024
- const { v0: j, label: I } = s.sog ? {
1025
- v0: s.sog,
1026
- label: s.label || "Other"
1024
+ const { v0: j, label: F } = e.sog ? {
1025
+ v0: e.sog,
1026
+ label: e.label || "Other"
1027
1027
  /* Instruct */
1028
1028
  } : {
1029
1029
  v0: i.speed,
1030
1030
  label: "CP"
1031
1031
  /* Cp */
1032
- }, w = O.assembleProperties(a, i.loadCondition, j, 0), g = v.length ? W.calculateSubWaypoints(s, v) : [];
1033
- g.forEach((Y) => Y.important = !0);
1034
- const r = {
1035
- from: { ...s },
1036
- route: M,
1037
- waypoints: g,
1032
+ }, g = W.assembleProperties(a, i.loadCondition, j, 0), v = w.length ? V.calculateSubWaypoints(e, w) : [];
1033
+ v.forEach((A) => A.important = !0);
1034
+ const f = {
1035
+ from: { ...e },
1036
+ route: b,
1037
+ waypoints: v,
1038
1038
  v0: j,
1039
- label: I
1040
- }, b = {
1039
+ label: F
1040
+ }, u = {
1041
1041
  hours: [],
1042
1042
  days: [],
1043
- wps: []
1043
+ wps: [],
1044
+ all: []
1044
1045
  };
1045
- e || (W.calculateRouteDistance(M) / i.speed <= 72 ? e = 3 : e = 6);
1046
- let m = W.simplifyRouteToCoordinates(M, g, 0), l = 0, k = 0, S = 0, D = 0;
1046
+ s || (V.calculateRouteDistance(b) / i.speed <= 72 ? s = 3 : s = 6);
1047
+ let l = V.simplifyRouteToCoordinates(b, v, 0), m = 0, I = 0, k = 0, E = 0;
1047
1048
  t = p(t).utc();
1048
- const P = t.clone();
1049
- for (; m.length > 0; ) {
1050
- const Y = e - t.hour() % e, B = Math.ceil(t.clone().add(Y, "h").set({ minute: 0, second: 0, millisecond: 0 }).diff(t, "h", !0) * 1e4) / 1e4, F = await O.speedLoseInHoursStep(
1051
- w,
1049
+ const q = t.clone();
1050
+ for (; l.length > 0; ) {
1051
+ const A = s - t.hour() % s, L = Math.ceil(t.clone().add(A, "h").set({ minute: 0, second: 0, millisecond: 0 }).diff(t, "h", !0) * 1e4) / 1e4, S = await W.speedLoseInHoursStep(
1052
+ g,
1052
1053
  t,
1053
- P,
1054
- B,
1055
- l,
1054
+ q,
1055
+ L,
1056
1056
  m,
1057
+ l,
1057
1058
  o,
1058
- c,
1059
- u,
1059
+ r,
1060
+ d,
1060
1061
  h
1061
1062
  );
1062
- if ((G = F.from) != null && G.speed && (b.hours.push(F.from), b.wps.push(...F.wps), b.days.push(...F.days)), m = F == null ? void 0 : F.next, !m.length) {
1063
- const L = await O.speedLoseAt(w, F.to, p(F.to.eta), o, 0, c, u, h);
1064
- L.bearing = w.bearing, b.hours.push(L);
1063
+ if (u.all.push(...S.all), (G = S.from) != null && G.speed && (u.hours.push(S.from), u.wps.push(...S.wps), u.days.push(...S.days)), l = S == null ? void 0 : S.next, !l.length) {
1064
+ const Y = await W.speedLoseAt(g, S.to, p(S.to.eta), o, 0, r, d, h);
1065
+ Y.bearing = g.bearing, u.hours.push(Y), u.all.push(Y);
1065
1066
  }
1066
- l += Math.round((((X = F == null ? void 0 : F.to) == null ? void 0 : X.distanceFromPrevious) ?? 0) * 1e4) / 1e4;
1067
+ m += Math.round((((X = S == null ? void 0 : S.to) == null ? void 0 : X.distanceFromPrevious) ?? 0) * 1e4) / 1e4;
1067
1068
  }
1068
- const N = b.hours;
1069
- for (let Y = 0; Y < N.length - 1; Y++) {
1070
- const B = p(N[Y + 1].eta).diff(N[Y].etd, "hour", !0) || 1;
1071
- k += (N[Y].wxFactor || 0) * B, S += (N[Y].cFactor || 0) * B, D += B;
1069
+ const D = u.hours;
1070
+ for (let A = 0; A < D.length - 1; A++) {
1071
+ const L = p(D[A + 1].eta).diff(D[A].etd, "hour", !0) || 1;
1072
+ I += (D[A].wxFactor || 0) * L, k += (D[A].cFactor || 0) * L, E += L;
1072
1073
  }
1073
- (Q = b.wps) == null || Q.forEach((Y, B) => {
1074
- Y.positionTime = p.utc(Y.etd || Y.eta).unix();
1075
- const F = b.wps[B - 1];
1076
- if (F) {
1077
- const L = Y.distanceFromStart - F.distanceFromStart, H = p(Y.eta || Y.etd).diff(p(F.etd || F.eta), "h", !0);
1078
- Y.avgSpd = Math.round(L / H * 100) / 100, F.bearing = W.calculateBearing(F, Y);
1074
+ const H = D.reduce((A, L) => A + (L.suspend || 0), 0);
1075
+ (Q = u.wps) == null || Q.forEach((A, L) => {
1076
+ A.positionTime = p.utc(A.etd || A.eta).unix();
1077
+ const S = u.wps[L - 1];
1078
+ if (S) {
1079
+ const Y = A.distanceFromStart - S.distanceFromStart, P = p(A.eta || A.etd).diff(p(S.etd || S.eta), "h", !0);
1080
+ A.avgSpd = Math.round(Y / P * 100) / 100, S.bearing = V.calculateBearing(S, A);
1079
1081
  }
1080
- }), b.wps = (Z = b.wps) == null ? void 0 : Z.reduce((Y, B) => (Y.some((F) => Math.round(F.positionTime / 60) === Math.round(B.positionTime / 60)) || Y.push(B), Y), []), r.sample = b;
1081
- const A = b.hours.at(0), x = b.hours.at(-1);
1082
- r.distance = Math.round(x.distanceFromStart * 1e3) / 1e3, r.etd = p(A.eta).utc().format(), r.eta = p(x.eta).utc().format(), r.wxFactor = Math.round(k / D * 1e3) / 1e3, r.cFactor = Math.round(S / D * 1e3) / 1e3, r.avgSpeed = Math.round(x.distanceFromStart / D * 1e3) / 1e3, r.totalHrs = Math.round(D * 1e3) / 1e3;
1083
- const { distanceInECA: T, hoursInECA: q, totalDgoConsInECA: R, eca: J } = await this.calculateECA(r, i, h), tt = z.roundPrecision(i.fo / 24 * (D - q), 3), at = z.roundPrecision(i.dgo / 24 * D, 3);
1084
- r.extend = {
1085
- eca: J,
1086
- distanceInECA: T,
1087
- hoursInECA: q,
1088
- totalDgoConsInECA: R
1089
- }, r.totalFoCons = tt < 0 ? 0 : tt, r.totalDgoCons = at;
1090
- const et = p().valueOf() - d, ot = (($ = b == null ? void 0 : b.hours) == null ? void 0 : $.length) || 1;
1091
- return C == null || C.info("[%s] each hour-sample speed analyse cost: (%d / %d = %d) ms", h == null ? void 0 : h.requestId, et, ot, Math.round(et / ot * 1e3) / 1e3), r;
1082
+ }), u.wps = (Z = u.wps) == null ? void 0 : Z.reduce((A, L) => (A.some((S) => Math.round(S.positionTime / 60) === Math.round(L.positionTime / 60)) || A.push(L), A), []), u.all = ($ = u.all) == null ? void 0 : $.reduce((A, L) => (L.positionTime = p.utc(L.etd || L.eta).unix(), A.some((S) => Math.round(S.positionTime / 60) === Math.round(L.positionTime / 60)) || A.push(L), A), []), f.sample = u;
1083
+ const T = u.hours.at(0), x = u.hours.at(-1);
1084
+ f.distance = Math.round(x.distanceFromStart * 1e3) / 1e3, f.etd = p(T.eta).utc().format(), f.eta = p(x.eta).utc().format(), f.wxFactor = Math.round(I / E * 1e3) / 1e3, f.cFactor = Math.round(k / E * 1e3) / 1e3, f.avgSpeed = Math.round(x.distanceFromStart / E * 1e3) / 1e3, f.totalHrs = Math.round(E * 1e3) / 1e3, f.suspend = Math.round(H * 1e3) / 1e3;
1085
+ const O = z.roundPrecision(i.dgo / 24 * H, 3), { distanceInECA: R, hoursInECA: J, totalDgoConsInECA: ot, eca: et } = await this.calculateECA(f, i, h), st = z.roundPrecision(i.fo / 24 * (E - J), 3), it = z.roundPrecision(i.dgo / 24 * E + O, 3);
1086
+ f.extend = {
1087
+ eca: et,
1088
+ distanceInECA: R,
1089
+ hoursInECA: J,
1090
+ totalDgoConsInECA: ot,
1091
+ totalDgoConsInSuspend: O
1092
+ }, f.totalFoCons = st < 0 ? 0 : st, f.totalDgoCons = it;
1093
+ const at = p().valueOf() - c, ct = ((tt = u == null ? void 0 : u.hours) == null ? void 0 : tt.length) || 1;
1094
+ return C == null || C.info("[%s] each hour-sample speed analyse cost: (%d / %d = %d) ms", h == null ? void 0 : h.requestId, at, ct, Math.round(at / ct * 1e3) / 1e3), f;
1092
1095
  }
1093
1096
  /**
1094
1097
  * 分段失速分析(最多走hours 小时)
@@ -1105,78 +1108,79 @@ class O {
1105
1108
  * @param useRouteParam
1106
1109
  * @param options
1107
1110
  */
1108
- static async analyseInstantWithThreshed(s, t, a, i, n, o, e, c = "", u = 3, h = !0, d = !1, y = {}) {
1109
- var X, Q, Z, $, Y, B;
1110
- const v = p().valueOf();
1111
- s.lng = z.convertToStdLng(s.lng);
1112
- const { v0: M, label: j } = s.sog ? {
1113
- v0: s.sog,
1114
- label: s.label || "Other"
1111
+ static async analyseInstantWithThreshed(e, t, a, i, n, o, s, r = "", d = 3, h = !0, c = !1, M = {}) {
1112
+ var X, Q, Z, $, tt, A, L;
1113
+ const w = p().valueOf();
1114
+ e.lng = z.convertToStdLng(e.lng);
1115
+ const { v0: b, label: j } = e.sog ? {
1116
+ v0: e.sog,
1117
+ label: e.label || "Other"
1115
1118
  /* Instruct */
1116
1119
  } : {
1117
1120
  v0: n.speed,
1118
1121
  label: "CP"
1119
1122
  /* Cp */
1120
- }, I = O.assembleProperties(i, n.loadCondition, M, 0), w = W.calculateSubRoute(s, o);
1121
- if (((X = w[0]) == null ? void 0 : X.length) <= 1)
1123
+ }, F = W.assembleProperties(i, n.loadCondition, b, 0), g = V.calculateSubRoute(e, o);
1124
+ if (((X = g[0]) == null ? void 0 : X.length) <= 1)
1122
1125
  return;
1123
- const g = e.length ? W.calculateSubWaypoints(s, e) : [];
1124
- g.forEach((F) => F.important = !0);
1125
- let r = W.simplifyRouteToCoordinates(w, g, 0), b = 0, m = 0, l = 0, k = 0;
1126
- const S = {
1126
+ const v = s.length ? V.calculateSubWaypoints(e, s) : [];
1127
+ v.forEach((S) => S.important = !0);
1128
+ let f = V.simplifyRouteToCoordinates(g, v, 0), u = 0, l = 0, m = 0, I = 0;
1129
+ const k = {
1127
1130
  hours: [],
1128
1131
  wps: [],
1129
- days: []
1132
+ days: [],
1133
+ all: []
1130
1134
  };
1131
1135
  t = p(t).utc();
1132
- const D = t.clone();
1133
- for (; r.length > 0; ) {
1134
- const F = u - t.hour() % u;
1135
- let L = Math.ceil(t.clone().add(F, "h").set({ minute: 0, second: 0, millisecond: 0 }).diff(t, "h", !0) * 1e4) / 1e4;
1136
- L = t.clone().add(L, "h").isSameOrAfter(a) ? a.diff(t, "h", !0) * 1e4 / 1e4 : L;
1137
- const H = await O.speedLoseInHoursStep(I, t, D, L, b, r, c, h, d, y);
1138
- if ((Q = H.from) != null && Q.speed && (S.hours.push(H.from), H != null && H.wps && S.wps.push(...H.wps), S.days.push(...H.days)), r = H == null ? void 0 : H.next, r.length || S.hours.push(H == null ? void 0 : H.to), b += Math.round((((Z = H == null ? void 0 : H.to) == null ? void 0 : Z.distanceFromPrevious) ?? 0) * 1e4) / 1e4, !L)
1136
+ const E = t.clone();
1137
+ for (; f.length > 0; ) {
1138
+ const S = d - t.hour() % d;
1139
+ let Y = Math.ceil(t.clone().add(S, "h").set({ minute: 0, second: 0, millisecond: 0 }).diff(t, "h", !0) * 1e4) / 1e4;
1140
+ Y = t.clone().add(Y, "h").isSameOrAfter(a) ? a.diff(t, "h", !0) * 1e4 / 1e4 : Y;
1141
+ const P = await W.speedLoseInHoursStep(F, t, E, Y, u, f, r, h, c, M);
1142
+ if (k.all.push(...P.all), (Q = P.from) != null && Q.speed && (k.hours.push(P.from), P != null && P.wps && k.wps.push(...P.wps), k.days.push(...P.days)), f = P == null ? void 0 : P.next, f.length || k.hours.push(P == null ? void 0 : P.to), u += Math.round((((Z = P == null ? void 0 : P.to) == null ? void 0 : Z.distanceFromPrevious) ?? 0) * 1e4) / 1e4, !Y)
1139
1143
  break;
1140
1144
  }
1141
- S.wps = ($ = S.wps) == null ? void 0 : $.reduce((F, L) => (F.some((H) => Math.round(p(H.etd).unix() / 60) === Math.round(p(L.etd).unix() / 60)) || F.push(L), F), []), (Y = S.wps) == null || Y.forEach((F, L) => {
1142
- const H = S.wps[L - 1];
1143
- if (H) {
1144
- const rt = F.distanceFromStart - H.distanceFromStart, dt = p(F.eta || F.etd).diff(p(H.etd || H.eta), "h", !0);
1145
- F.avgSpd = Math.round(rt / dt * 100) / 100;
1146
- const ut = W.calculateBearing(H, F);
1147
- H.bearing = ut;
1145
+ k.wps = ($ = k.wps) == null ? void 0 : $.reduce((S, Y) => (S.some((P) => Math.round(p(P.etd).unix() / 60) === Math.round(p(Y.etd).unix() / 60)) || S.push(Y), S), []), k.all = (tt = k.all) == null ? void 0 : tt.reduce((S, Y) => (Y.positionTime = p.utc(Y.etd || Y.eta).unix(), S.some((P) => Math.round(p(P.etd).unix() / 60) === Math.round(p(Y.etd).unix() / 60)) || S.push(Y), S), []), (A = k.wps) == null || A.forEach((S, Y) => {
1146
+ const P = k.wps[Y - 1];
1147
+ if (P) {
1148
+ const ht = S.distanceFromStart - P.distanceFromStart, lt = p(S.eta || S.etd).diff(p(P.etd || P.eta), "h", !0);
1149
+ S.avgSpd = Math.round(ht / lt * 100) / 100, P.bearing = V.calculateBearing(P, S);
1148
1150
  }
1149
1151
  });
1150
- const P = S.hours;
1151
- for (let F = 0; F < P.length - 1; F++) {
1152
- const L = p(P[F + 1].eta).diff(P[F].etd, "hour", !0);
1153
- m += P[F].wxFactor * L, l += P[F].cFactor * L, k += L;
1152
+ const q = k.hours;
1153
+ for (let S = 0; S < q.length - 1; S++) {
1154
+ const Y = p(q[S + 1].eta).diff(q[S].etd, "hour", !0);
1155
+ l += q[S].wxFactor * Y, m += q[S].cFactor * Y, I += Y;
1154
1156
  }
1155
- const N = S.hours.at(0), A = S.hours.at(-1), x = await W.calculateRangeRoute(N, A, w), T = await W.calculateRangeWaypoints(N, A, w, g), q = {
1156
- sample: S,
1157
- distance: Math.round(((A == null ? void 0 : A.distanceFromStart) || 0) * 1e4) / 1e4,
1157
+ const D = q.reduce((S, Y) => S + (Y.suspend || 0), 0), H = k.hours.at(0), T = k.hours.at(-1), x = await V.calculateRangeRoute(H, T, g), O = await V.calculateRangeWaypoints(H, T, g, v), R = {
1158
+ sample: k,
1159
+ distance: Math.round(((T == null ? void 0 : T.distanceFromStart) || 0) * 1e4) / 1e4,
1158
1160
  // 注意,可能会在first节点Drift,所有采用eta做为初始出发时间
1159
- etd: p(N.eta).utc().format(),
1160
- eta: p(A == null ? void 0 : A.eta).utc().format(),
1161
- wxFactor: Math.round(m / k * 1e3) / 1e3,
1162
- cFactor: Math.round(l / k * 1e3) / 1e3,
1163
- avgSpeed: Math.round(((A == null ? void 0 : A.distanceFromStart) || 0) / k * 1e3) / 1e3,
1164
- totalHrs: Math.round(k * 1e3) / 1e3,
1165
- from: N,
1166
- to: A,
1161
+ etd: p(H.eta).utc().format(),
1162
+ eta: p(T == null ? void 0 : T.eta).utc().format(),
1163
+ wxFactor: Math.round(l / I * 1e3) / 1e3,
1164
+ cFactor: Math.round(m / I * 1e3) / 1e3,
1165
+ avgSpeed: Math.round(((T == null ? void 0 : T.distanceFromStart) || 0) / I * 1e3) / 1e3,
1166
+ totalHrs: Math.round(I * 1e3) / 1e3,
1167
+ suspend: Math.round(D * 1e3) / 1e3,
1168
+ from: H,
1169
+ to: T,
1167
1170
  route: x,
1168
- waypoints: T,
1169
- v0: M,
1171
+ waypoints: O,
1172
+ v0: b,
1170
1173
  label: j
1171
- }, { distanceInECA: R, hoursInECA: J, totalDgoConsInECA: tt, eca: at } = await this.calculateECA(q, n, y), nt = z.roundPrecision(n.fo / 24 * (k - J), 3), et = z.roundPrecision(n.dgo / 24 * k, 3);
1172
- q.extend = {
1173
- eca: at,
1174
- distanceInECA: R,
1175
- hoursInECA: J,
1176
- totalDgoConsInECA: tt
1177
- }, q.totalDgoCons = et, q.totalFoCons = nt < 0 ? 0 : nt;
1178
- const K = p().valueOf() - v, G = ((B = S == null ? void 0 : S.hours) == null ? void 0 : B.length) || 1;
1179
- return C == null || C.debug("[%s] each hour-sample speed analyse cost: (%d / %d = %d) ms", y == null ? void 0 : y.requestId, K, G, Math.round(K / G * 1e3) / 1e3), q;
1174
+ }, J = z.roundPrecision(n.dgo / 24 * D, 3), { distanceInECA: ot, hoursInECA: et, totalDgoConsInECA: st, eca: it } = await this.calculateECA(R, n, M), rt = z.roundPrecision(n.fo / 24 * (I - et), 3), at = z.roundPrecision(n.dgo / 24 * I + J, 3);
1175
+ R.extend = {
1176
+ eca: it,
1177
+ distanceInECA: ot,
1178
+ hoursInECA: et,
1179
+ totalDgoConsInECA: st,
1180
+ totalDgoConsInSuspend: J
1181
+ }, R.totalDgoCons = at, R.totalFoCons = rt < 0 ? 0 : rt;
1182
+ const K = p().valueOf() - w, G = ((L = k == null ? void 0 : k.hours) == null ? void 0 : L.length) || 1;
1183
+ return C == null || C.debug("[%s] each hour-sample speed analyse cost: (%d / %d = %d) ms", M == null ? void 0 : M.requestId, K, G, Math.round(K / G * 1e3) / 1e3), R;
1180
1184
  }
1181
1185
  /**
1182
1186
  * 在指定航线条件下,基于多CP,动态计算最优成本(租金+油费)方案
@@ -1193,59 +1197,59 @@ class O {
1193
1197
  * @param lane 基础航线(重要转向点)
1194
1198
  * @param options
1195
1199
  */
1196
- static async analyseCost(s, t, a, i, n = {}) {
1197
- var w, g;
1198
- const o = p().valueOf(), e = [];
1199
- s.speedStep = s.speedStep || 3, s.alterStep = s.alterStep ?? 1;
1200
- const c = W.calculateRouteDistance(i.route);
1201
- let u = 0;
1202
- a.forEach((r) => {
1203
- const b = Math.ceil(c / r.speed / 24);
1204
- u = u < b ? b : u;
1205
- }), u = u * 1.3;
1206
- const h = p.utc(s.etd).add(u ?? 14, "day");
1207
- let d = 1;
1208
- for (const r of a) {
1209
- const b = JSON.parse(JSON.stringify(i.route)), m = JSON.parse(JSON.stringify(i.waypoints)), l = await O.analyseInstantWithThreshed(
1210
- { lat: s.lat, lng: s.lng },
1211
- s.etd,
1200
+ static async analyseCost(e, t, a, i, n = {}) {
1201
+ var g, v;
1202
+ const o = p().valueOf(), s = [];
1203
+ e.speedStep = e.speedStep || 3, e.alterStep = e.alterStep ?? 1;
1204
+ const r = V.calculateRouteDistance(i.route);
1205
+ let d = 0;
1206
+ a.forEach((f) => {
1207
+ const u = Math.ceil(r / f.speed / 24);
1208
+ d = d < u ? u : d;
1209
+ }), d = d * 1.3;
1210
+ const h = p.utc(e.etd).add(d ?? 14, "day");
1211
+ let c = 1;
1212
+ for (const f of a) {
1213
+ const u = JSON.parse(JSON.stringify(i.route)), l = JSON.parse(JSON.stringify(i.waypoints)), m = await W.analyseInstantWithThreshed(
1214
+ { lat: e.lat, lng: e.lng },
1215
+ e.etd,
1212
1216
  h,
1213
1217
  t,
1214
- r,
1215
- b,
1216
- m,
1217
- s.meteoVendor,
1218
- s.speedStep,
1219
- s.useMeteo,
1220
- s.useRouteParam,
1218
+ f,
1219
+ u,
1220
+ l,
1221
+ e.meteoVendor,
1222
+ e.speedStep,
1223
+ e.useMeteo,
1224
+ e.useRouteParam,
1221
1225
  n
1222
1226
  );
1223
- l && (await O.calculateCost(l, r, s, n), e.push(l), C == null || C.info("[%s][L%d-%d] analyse from %s to %s cost: %j", n.requestId, 1, d, s.etd, h.format(), {
1224
- cost: l.cost.total,
1225
- hire: l.cost.hire,
1226
- bunker: l.cost.bunker,
1227
- distance: l.distance,
1228
- hours: l.totalHrs,
1229
- cp: `${r.speed}/${r.fo}/${r.dgo}`
1230
- })), d++;
1227
+ m && (await W.calculateCost(m, f, e, n), s.push(m), C == null || C.info("[%s][L%d-%d] analyse from %s to %s cost: %j", n.requestId, 1, c, e.etd, h.format(), {
1228
+ cost: m.cost.total,
1229
+ hire: m.cost.hire,
1230
+ bunker: m.cost.bunker,
1231
+ distance: m.distance,
1232
+ hours: m.totalHrs,
1233
+ cp: `${f.speed}/${f.fo}/${f.dgo}`
1234
+ })), c++;
1231
1235
  }
1232
- e.sort((r, b) => r.cost.total - b.cost.total);
1233
- const y = e.at(0), v = e.at(1), M = [];
1234
- if (M.push({ combined: !1, speeds: [y], cost: (w = y.cost) == null ? void 0 : w.total }), v) {
1235
- const r = y.cost.cp, b = v.cost.cp, m = p(y.eta), l = p(y.etd), k = m.diff(l, "days", !0);
1236
- let S = Math.ceil(k / 2);
1237
- S = S > 7 ? 7 : S < s.alterStep ? s.alterStep : S;
1238
- let D = 2, P = { combined: !1, speeds: [v], cost: (g = v.cost) == null ? void 0 : g.total }, N;
1239
- for (; S >= s.alterStep; ) {
1240
- const A = await O.combinedAnalyse(s, t, h, [r, b], i, S, { ...n, level: D });
1241
- if (P.cost > A.cost ? N ? (N == null ? void 0 : N.cost) > A.cost && (N = A) : (N = P, P = A) : (!N || (N == null ? void 0 : N.cost) > A.cost) && (N = A), S <= s.alterStep)
1236
+ s.sort((f, u) => f.cost.total - u.cost.total);
1237
+ const M = s.at(0), w = s.at(1), b = [];
1238
+ if (b.push({ combined: !1, speeds: [M], cost: (g = M.cost) == null ? void 0 : g.total }), w) {
1239
+ const f = M.cost.cp, u = w.cost.cp, l = p(M.eta), m = p(M.etd), I = l.diff(m, "days", !0);
1240
+ let k = Math.ceil(I / 2);
1241
+ k = k > 7 ? 7 : k < e.alterStep ? e.alterStep : k;
1242
+ let E = 2, q = { combined: !1, speeds: [w], cost: (v = w.cost) == null ? void 0 : v.total }, D;
1243
+ for (; k >= e.alterStep; ) {
1244
+ const H = await W.combinedAnalyse(e, t, h, [f, u], i, k, { ...n, level: E });
1245
+ if (q.cost > H.cost ? D ? (D == null ? void 0 : D.cost) > H.cost && (D = H) : (D = q, q = H) : (!D || (D == null ? void 0 : D.cost) > H.cost) && (D = H), k <= e.alterStep)
1242
1246
  break;
1243
- S = Math.ceil(S / 2), D += 1;
1247
+ k = Math.ceil(k / 2), E += 1;
1244
1248
  }
1245
- M.push(P), N && M.push(N);
1249
+ b.push(q), D && b.push(D);
1246
1250
  }
1247
- const I = p().valueOf() - o;
1248
- return C == null || C.info("[%s] analyse elapsed: %d ms", n == null ? void 0 : n.requestId, I), M.sort((r, b) => r.cost - b.cost);
1251
+ const F = p().valueOf() - o;
1252
+ return C == null || C.info("[%s] analyse elapsed: %d ms", n == null ? void 0 : n.requestId, F), b.sort((f, u) => f.cost - u.cost);
1249
1253
  }
1250
1254
  /**
1251
1255
  * 按步长多次减半,分别用7,4,2,1天步长及cpa,cpb交替计算各种组合下的成本
@@ -1257,24 +1261,24 @@ class O {
1257
1261
  * @param step 步长,7,4,2,1
1258
1262
  * @param options
1259
1263
  */
1260
- static async combinedAnalyse(s, t, a, i, n, o, e = {}) {
1261
- e.counter = 1, C == null || C.info("[%s][L%d] analyse with alternate cp in every %d days", e.requestId, e.level, o);
1262
- const c = await O.alternateAnalyse(s, t, a, i, 0, n, o, e), u = c.reduce((b, m) => b + m.cost.total, 0), h = c.reduce((b, m) => b + m.cost.hire, 0), d = c.reduce((b, m) => b + m.cost.bunker, 0), y = c.reduce((b, m) => b + m.distance, 0), v = c.reduce((b, m) => b + m.totalHrs, 0);
1263
- C == null || C.info("[%s][L%d] cost with cpa/cpb turn: %j", e.requestId, e.level, {
1264
- cost: u,
1264
+ static async combinedAnalyse(e, t, a, i, n, o, s = {}) {
1265
+ s.counter = 1, C == null || C.info("[%s][L%d] analyse with alternate cp in every %d days", s.requestId, s.level, o);
1266
+ const r = await W.alternateAnalyse(e, t, a, i, 0, n, o, s), d = r.reduce((u, l) => u + l.cost.total, 0), h = r.reduce((u, l) => u + l.cost.hire, 0), c = r.reduce((u, l) => u + l.cost.bunker, 0), M = r.reduce((u, l) => u + l.distance, 0), w = r.reduce((u, l) => u + l.totalHrs, 0);
1267
+ C == null || C.info("[%s][L%d] cost with cpa/cpb turn: %j", s.requestId, s.level, {
1268
+ cost: d,
1265
1269
  hire: h,
1266
- bunker: d,
1267
- distance: y,
1268
- hours: v
1270
+ bunker: c,
1271
+ distance: M,
1272
+ hours: w
1269
1273
  });
1270
- const M = await O.alternateAnalyse(s, t, a, i, 1, n, o, e), j = M.reduce((b, m) => b + m.cost.total, 0), I = M.reduce((b, m) => b + m.cost.hire, 0), w = M.reduce((b, m) => b + m.cost.bunker, 0), g = M.reduce((b, m) => b + m.distance, 0), r = M.reduce((b, m) => b + m.totalHrs, 0);
1271
- return C == null || C.info("[%s][L%d] cost with cpb/cpa turn: %j", e.requestId, e.level, {
1274
+ const b = await W.alternateAnalyse(e, t, a, i, 1, n, o, s), j = b.reduce((u, l) => u + l.cost.total, 0), F = b.reduce((u, l) => u + l.cost.hire, 0), g = b.reduce((u, l) => u + l.cost.bunker, 0), v = b.reduce((u, l) => u + l.distance, 0), f = b.reduce((u, l) => u + l.totalHrs, 0);
1275
+ return C == null || C.info("[%s][L%d] cost with cpb/cpa turn: %j", s.requestId, s.level, {
1272
1276
  cost: j,
1273
- hire: I,
1274
- bunker: w,
1275
- distance: g,
1276
- hours: r
1277
- }), u < j ? { combined: !0, cost: Math.round(u * 1e3) / 1e3, speeds: c, step: o } : { combined: !0, cost: Math.round(j * 1e3) / 1e3, speeds: M, step: o };
1277
+ hire: F,
1278
+ bunker: g,
1279
+ distance: v,
1280
+ hours: f
1281
+ }), d < j ? { combined: !0, cost: Math.round(d * 1e3) / 1e3, speeds: r, step: o } : { combined: !0, cost: Math.round(j * 1e3) / 1e3, speeds: b, step: o };
1278
1282
  }
1279
1283
  /**
1280
1284
  * 基于cp索引,交替计算指定步长下的成本
@@ -1287,48 +1291,48 @@ class O {
1287
1291
  * @param step 步长,7,4,2,1
1288
1292
  * @param options
1289
1293
  */
1290
- static async alternateAnalyse(s, t, a, i, n, o, e, c = {}) {
1291
- var y, v;
1292
- let u = p.utc(s.etd);
1293
- const h = { lat: s.lat, lng: s.lng }, d = [];
1294
- for (; u.isBefore(a); ) {
1295
- const M = u.clone().utc().add(e, "day"), j = JSON.parse(JSON.stringify(o.route)), I = JSON.parse(JSON.stringify(o.waypoints)), w = i[n], g = await O.analyseInstantWithThreshed(
1294
+ static async alternateAnalyse(e, t, a, i, n, o, s, r = {}) {
1295
+ var M, w;
1296
+ let d = p.utc(e.etd);
1297
+ const h = { lat: e.lat, lng: e.lng }, c = [];
1298
+ for (; d.isBefore(a); ) {
1299
+ const b = d.clone().utc().add(s, "day"), j = JSON.parse(JSON.stringify(o.route)), F = JSON.parse(JSON.stringify(o.waypoints)), g = i[n], v = await W.analyseInstantWithThreshed(
1296
1300
  h,
1297
- u.utc().format(),
1298
- M,
1301
+ d.utc().format(),
1302
+ b,
1299
1303
  t,
1300
- w,
1304
+ g,
1301
1305
  j,
1302
- I,
1303
- s.meteoVendor,
1304
- s.speedStep,
1305
- s.useMeteo,
1306
- s.useRouteParam,
1307
- c
1306
+ F,
1307
+ e.meteoVendor,
1308
+ e.speedStep,
1309
+ e.useMeteo,
1310
+ e.useRouteParam,
1311
+ r
1308
1312
  );
1309
- g && (await O.calculateCost(g, w, s, c), C == null || C.info(
1313
+ v && (await W.calculateCost(v, g, e, r), C == null || C.info(
1310
1314
  "[%s][L%d-%d] analyse from %s to %s cost: %j",
1311
- c.requestId,
1312
- c.level,
1313
- c.counter,
1314
- u.utc().format(),
1315
- M.utc().format(),
1315
+ r.requestId,
1316
+ r.level,
1317
+ r.counter,
1318
+ d.utc().format(),
1319
+ b.utc().format(),
1316
1320
  {
1317
- cost: g.cost.total,
1318
- hire: g.cost.hire,
1319
- bunker: g.cost.bunker,
1320
- distance: g.distance,
1321
- hours: g.totalHrs,
1322
- cp: `${w.speed}/${w.fo}/${w.dgo}`
1321
+ cost: v.cost.total,
1322
+ hire: v.cost.hire,
1323
+ bunker: v.cost.bunker,
1324
+ distance: v.distance,
1325
+ hours: v.totalHrs,
1326
+ cp: `${g.speed}/${g.fo}/${g.dgo}`
1323
1327
  }
1324
- )), c.counter = c.counter + 1;
1325
- const r = (v = (y = g == null ? void 0 : g.sample) == null ? void 0 : y.hours) == null ? void 0 : v.at(-1);
1326
- if (r)
1327
- h.lat = r.lat, h.lng = r.lng, u = p(r.eta), d.push(g), n = n ? 0 : 1;
1328
+ )), r.counter = r.counter + 1;
1329
+ const f = (w = (M = v == null ? void 0 : v.sample) == null ? void 0 : M.hours) == null ? void 0 : w.at(-1);
1330
+ if (f)
1331
+ h.lat = f.lat, h.lng = f.lng, d = p(f.eta), c.push(v), n = n ? 0 : 1;
1328
1332
  else
1329
1333
  break;
1330
1334
  }
1331
- return d;
1335
+ return c;
1332
1336
  }
1333
1337
  /**
1334
1338
  * 计算Speed的cost
@@ -1337,39 +1341,39 @@ class O {
1337
1341
  * @param props
1338
1342
  * @param options
1339
1343
  */
1340
- static async calculateCost(s, t, a, i = {}) {
1344
+ static async calculateCost(e, t, a, i = {}) {
1341
1345
  var n;
1342
- if (s) {
1343
- const o = (a.addComm || 0) >= 1 ? (a.addComm || 0) / 100 : a.addComm || 0, e = Math.round(s.totalHrs / 24 * (a.dailyHire || 0) * (1 - o) * 1e3) / 1e3, c = Math.round(s.totalFoCons * (a.priceFO || 0) * 1e3) / 1e3, u = Math.round((s.totalDgoCons + (((n = s.extend) == null ? void 0 : n.totalDgoConsInECA) || 0)) * (a.priceDGO || 0) * 1e3) / 1e3;
1344
- s.cost = {
1345
- total: Math.round((e + c + u) * 1e3) / 1e3,
1346
- hire: e,
1347
- bunker: Math.round((c + u) * 1e3) / 1e3,
1346
+ if (e) {
1347
+ const o = (a.addComm || 0) >= 1 ? (a.addComm || 0) / 100 : a.addComm || 0, s = (a.dailyHire || 0) * e.suspend / 24, r = Math.round(s + e.totalHrs / 24 * (a.dailyHire || 0) * (1 - o) * 1e3) / 1e3, d = Math.round(e.totalFoCons * (a.priceFO || 0) * 1e3) / 1e3, h = Math.round((e.totalDgoCons + (((n = e.extend) == null ? void 0 : n.totalDgoConsInECA) || 0)) * (a.priceDGO || 0) * 1e3) / 1e3;
1348
+ e.cost = {
1349
+ total: Math.round((r + d + h) * 1e3) / 1e3,
1350
+ hire: r,
1351
+ bunker: Math.round((d + h) * 1e3) / 1e3,
1348
1352
  cp: t
1349
1353
  };
1350
1354
  }
1351
- return s;
1355
+ return e;
1352
1356
  }
1353
1357
  /**
1354
1358
  * 计算单cp模式下的ECA属性
1355
1359
  *
1356
1360
  */
1357
- static async calculateECA(s, t, a = {}) {
1358
- var c, u, h, d;
1359
- const i = await W.intersectInECA((s == null ? void 0 : s.route) || []);
1360
- let n = 0, o = 0, e = 0;
1361
- (u = (c = s == null ? void 0 : s.sample) == null ? void 0 : c.wps) == null || u.forEach((y) => {
1362
- y.positionTime = p.utc(y.etd || y.eta).unix();
1361
+ static async calculateECA(e, t, a = {}) {
1362
+ var r, d, h, c;
1363
+ const i = await V.intersectInECA((e == null ? void 0 : e.route) || []);
1364
+ let n = 0, o = 0, s = 0;
1365
+ (d = (r = e == null ? void 0 : e.sample) == null ? void 0 : r.wps) == null || d.forEach((M) => {
1366
+ M.positionTime = p.utc(M.etd || M.eta).unix();
1363
1367
  });
1364
- for (const y of i) {
1365
- n += y.distance;
1366
- const v = await W.deadReckoningTime((h = y.waypoints) == null ? void 0 : h.at(0), s.sample.wps), M = await W.deadReckoningTime((d = y.waypoints) == null ? void 0 : d.at(-1), s.sample.wps);
1367
- y.in = v, y.out = M, y.totalHrs = z.roundPrecision((M.positionTime - v.positionTime) / 3600, 3), y.totalDgoCons = z.roundPrecision(t.fo / 24 * y.totalHrs, 3), o += y.totalHrs, e += y.totalDgoCons;
1368
+ for (const M of i) {
1369
+ n += M.distance;
1370
+ const w = await V.deadReckoningTime((h = M.waypoints) == null ? void 0 : h.at(0), e.sample.all || e.sample.wps), b = await V.deadReckoningTime((c = M.waypoints) == null ? void 0 : c.at(-1), e.sample.all || e.sample.wps);
1371
+ M.in = w, M.out = b, M.totalHrs = z.roundPrecision((b.positionTime - w.positionTime) / 3600, 3), M.totalDgoCons = z.roundPrecision(t.fo / 24 * M.totalHrs, 3), o += M.totalHrs, s += M.totalDgoCons;
1368
1372
  }
1369
- return n = z.roundPrecision(n, 3), o = z.roundPrecision(o, 3), e = z.roundPrecision(e, 3), {
1373
+ return n = z.roundPrecision(n, 3), o = z.roundPrecision(o, 3), s = z.roundPrecision(s, 3), {
1370
1374
  distanceInECA: n,
1371
1375
  hoursInECA: o,
1372
- totalDgoConsInECA: e,
1376
+ totalDgoConsInECA: s,
1373
1377
  eca: i
1374
1378
  };
1375
1379
  }
@@ -1378,99 +1382,99 @@ class O {
1378
1382
  * @param speeds
1379
1383
  * @param options
1380
1384
  */
1381
- static async mergeSpeeds(s, t = {}) {
1382
- var r, b;
1385
+ static async mergeSpeeds(e, t = {}) {
1386
+ var f, u;
1383
1387
  const a = {
1384
1388
  hours: [],
1385
1389
  wps: [],
1386
1390
  days: []
1387
- }, i = s.reduce((m, l) => m + l.distance, 0), n = s.reduce((m, l) => {
1388
- var k;
1389
- return m + (((k = l.extend) == null ? void 0 : k.distanceInECA) || 0);
1390
- }, 0), o = s.reduce((m, l) => m + l.totalHrs, 0), e = s.reduce((m, l) => {
1391
- var k;
1392
- return m + (((k = l.extend) == null ? void 0 : k.hoursInECA) || 0);
1393
- }, 0), c = s.reduce((m, l) => {
1394
- var k;
1395
- return m + (((k = l.extend) == null ? void 0 : k.totalDgoConsInECA) || 0);
1396
- }, 0), u = s.reduce((m, l) => m + l.wxFactor * l.totalHrs / o, 0), h = s.reduce((m, l) => m + l.cFactor * l.totalHrs / o, 0), d = s.reduce((m, l) => m + l.totalFoCons, 0), y = s.reduce((m, l) => m + l.totalDgoCons, 0), v = s.reduce((m, l) => m + l.cost.total, 0), M = s.reduce((m, l) => m + l.cost.hire, 0), j = s.reduce((m, l) => m + l.cost.bunker, 0), I = [], w = [];
1397
- let g;
1398
- for (const m of s) {
1399
- w.push(...((r = m.extend) == null ? void 0 : r.eca) || []);
1400
- const l = m.sample.hours, k = m.sample.wps, S = m.sample.days, D = l.at(0);
1401
- g && (D.distanceFromPrevious = g.distanceFromPrevious, D.distanceFromStart = g.distanceFromStart, l.forEach((x, T) => {
1402
- T && (x.distanceFromStart = x.distanceFromStart + g.distanceFromStart);
1403
- }), k.at(0).distanceFromPrevious = g.distanceFromPrevious, k.at(0).distanceFromStart = g.distanceFromStart, k.forEach((x, T) => {
1404
- T && (x.distanceFromStart = x.distanceFromStart + g.distanceFromStart);
1405
- }), S.at(0).distanceFromPrevious = g.distanceFromPrevious, S.at(0).distanceFromStart = g.distanceFromStart, S.forEach((x, T) => {
1406
- T && (x.distanceFromStart = x.distanceFromStart + g.distanceFromStart);
1407
- })), D.cp = m.cost.cp;
1408
- const P = [m.etd, m.eta], N = I.findIndex((x) => x.id === D.cp.id);
1409
- N === -1 ? (D.cp.segment = [P], I.push(D.cp)) : I[N].segment.push(P), l.forEach((x) => {
1410
- var q;
1411
- ((q = a.hours) == null ? void 0 : q.findIndex((R) => R.eta === x.eta)) === -1 && a.hours.push(x);
1412
- }), k.forEach((x) => {
1413
- var q;
1414
- ((q = a.wps) == null ? void 0 : q.findIndex((R) => R.eta === x.eta)) === -1 && a.wps.push(x);
1415
- }), S.forEach((x) => {
1416
- var q;
1417
- ((q = a == null ? void 0 : a.days) == null ? void 0 : q.findIndex((R) => R.eta === x.eta)) === -1 && a.days.push(x);
1391
+ }, i = e.reduce((l, m) => l + m.distance, 0), n = e.reduce((l, m) => {
1392
+ var I;
1393
+ return l + (((I = m.extend) == null ? void 0 : I.distanceInECA) || 0);
1394
+ }, 0), o = e.reduce((l, m) => l + m.totalHrs, 0), s = e.reduce((l, m) => {
1395
+ var I;
1396
+ return l + (((I = m.extend) == null ? void 0 : I.hoursInECA) || 0);
1397
+ }, 0), r = e.reduce((l, m) => {
1398
+ var I;
1399
+ return l + (((I = m.extend) == null ? void 0 : I.totalDgoConsInECA) || 0);
1400
+ }, 0), d = e.reduce((l, m) => l + m.wxFactor * m.totalHrs / o, 0), h = e.reduce((l, m) => l + m.cFactor * m.totalHrs / o, 0), c = e.reduce((l, m) => l + m.totalFoCons, 0), M = e.reduce((l, m) => l + m.totalDgoCons, 0), w = e.reduce((l, m) => l + m.cost.total, 0), b = e.reduce((l, m) => l + m.cost.hire, 0), j = e.reduce((l, m) => l + m.cost.bunker, 0), F = [], g = [];
1401
+ let v;
1402
+ for (const l of e) {
1403
+ g.push(...((f = l.extend) == null ? void 0 : f.eca) || []);
1404
+ const m = l.sample.hours, I = l.sample.wps, k = l.sample.days, E = m.at(0);
1405
+ v && (E.distanceFromPrevious = v.distanceFromPrevious, E.distanceFromStart = v.distanceFromStart, m.forEach((T, x) => {
1406
+ x && (T.distanceFromStart = T.distanceFromStart + v.distanceFromStart);
1407
+ }), I.at(0).distanceFromPrevious = v.distanceFromPrevious, I.at(0).distanceFromStart = v.distanceFromStart, I.forEach((T, x) => {
1408
+ x && (T.distanceFromStart = T.distanceFromStart + v.distanceFromStart);
1409
+ }), k.at(0).distanceFromPrevious = v.distanceFromPrevious, k.at(0).distanceFromStart = v.distanceFromStart, k.forEach((T, x) => {
1410
+ x && (T.distanceFromStart = T.distanceFromStart + v.distanceFromStart);
1411
+ })), E.cp = l.cost.cp;
1412
+ const q = [l.etd, l.eta], D = F.findIndex((T) => T.id === E.cp.id);
1413
+ D === -1 ? (E.cp.segment = [q], F.push(E.cp)) : F[D].segment.push(q), m.forEach((T) => {
1414
+ var O;
1415
+ ((O = a.hours) == null ? void 0 : O.findIndex((R) => R.eta === T.eta)) === -1 && a.hours.push(T);
1416
+ }), I.forEach((T) => {
1417
+ var O;
1418
+ ((O = a.wps) == null ? void 0 : O.findIndex((R) => R.eta === T.eta)) === -1 && a.wps.push(T);
1419
+ }), k.forEach((T) => {
1420
+ var O;
1421
+ ((O = a == null ? void 0 : a.days) == null ? void 0 : O.findIndex((R) => R.eta === T.eta)) === -1 && a.days.push(T);
1418
1422
  });
1419
- const A = (b = a.wps) == null ? void 0 : b.findIndex((x) => x.eta === D.eta);
1420
- A === -1 ? a.wps.push(D) : a.wps[A] = D, g = l.at(-1);
1423
+ const H = (u = a.wps) == null ? void 0 : u.findIndex((T) => T.eta === E.eta);
1424
+ H === -1 ? a.wps.push(E) : a.wps[H] = E, v = m.at(-1);
1421
1425
  }
1422
- return a.wps.sort((m, l) => {
1423
- p(m.etd).unix() - p(l.etd).unix();
1424
- }), a.wps.forEach((m, l) => {
1425
- const k = a.wps[l - 1];
1426
- if (k) {
1427
- const S = m.distanceFromStart - (k.distanceFromStart || 0), D = p(m.eta || m.etd).diff(p(k.etd || k.eta), "hour", !0), P = Math.round(S / D * 100) / 100;
1428
- m.avgSpd = P;
1429
- const N = W.calculateBearing(k, m);
1430
- k.bearing = N;
1426
+ return a.wps.sort((l, m) => {
1427
+ p(l.etd).unix() - p(m.etd).unix();
1428
+ }), a.wps.forEach((l, m) => {
1429
+ const I = a.wps[m - 1];
1430
+ if (I) {
1431
+ const k = l.distanceFromStart - (I.distanceFromStart || 0), E = p(l.eta || l.etd).diff(p(I.etd || I.eta), "hour", !0), q = Math.round(k / E * 100) / 100;
1432
+ l.avgSpd = q;
1433
+ const D = V.calculateBearing(I, l);
1434
+ I.bearing = D;
1431
1435
  }
1432
1436
  }), {
1433
1437
  sample: a,
1434
- etd: s.at(0).etd,
1435
- eta: s.at(-1).eta,
1436
- from: s.at(0).from,
1437
- to: s.at(-1).to,
1438
- v0: s.at(0).v0,
1438
+ etd: e.at(0).etd,
1439
+ eta: e.at(-1).eta,
1440
+ from: e.at(0).from,
1441
+ to: e.at(-1).to,
1442
+ v0: e.at(0).v0,
1439
1443
  label: "Combined",
1440
1444
  distance: Math.round(i * 1e3) / 1e3,
1441
1445
  totalHrs: Math.round(o * 1e3) / 1e3,
1442
1446
  avgSpeed: Math.round(i / o * 1e3) / 1e3,
1443
- wxFactor: Math.round(u * 1e3) / 1e3,
1447
+ wxFactor: Math.round(d * 1e3) / 1e3,
1444
1448
  cFactor: Math.round(h * 1e3) / 1e3,
1445
- totalFoCons: Math.round(d * 1e3) / 1e3,
1446
- totalDgoCons: Math.round(y * 1e3) / 1e3,
1449
+ totalFoCons: Math.round(c * 1e3) / 1e3,
1450
+ totalDgoCons: Math.round(M * 1e3) / 1e3,
1447
1451
  cost: {
1448
- total: Math.round(v * 1e3) / 1e3,
1449
- hire: Math.round(M * 1e3) / 1e3,
1452
+ total: Math.round(w * 1e3) / 1e3,
1453
+ hire: Math.round(b * 1e3) / 1e3,
1450
1454
  bunker: Math.round(j * 1e3) / 1e3
1451
1455
  },
1452
1456
  extend: {
1453
- cps: I,
1454
- eca: w,
1457
+ cps: F,
1458
+ eca: g,
1455
1459
  distanceInECA: Math.round(n * 1e3) / 1e3,
1456
- hoursInECA: Math.round(e * 1e3) / 1e3,
1457
- totalDgoConsInECA: Math.round(c * 1e3) / 1e3,
1458
- speeds: s
1460
+ hoursInECA: Math.round(s * 1e3) / 1e3,
1461
+ totalDgoConsInECA: Math.round(r * 1e3) / 1e3,
1462
+ speeds: e
1459
1463
  }
1460
1464
  };
1461
1465
  }
1462
1466
  }
1463
1467
  export {
1464
- st as AISImpl,
1465
- yt as AlertHelper,
1466
- ft as AlertLevel,
1467
- Et as HifleetImpl,
1468
- gt as LoadCondition,
1469
- Tt as MyShipImpl,
1470
- Ft as MyVesselImpl,
1468
+ nt as AISImpl,
1469
+ bt as AlertHelper,
1470
+ Mt as AlertLevel,
1471
+ xt as HifleetImpl,
1472
+ vt as LoadCondition,
1473
+ Dt as MyShipImpl,
1474
+ Et as MyVesselImpl,
1471
1475
  Nt as ShipxyImpl,
1472
- O as SpeedHelper,
1473
- vt as SpeedLabel,
1474
- bt as VesselTag,
1475
- xt as alertHelper
1476
+ W as SpeedHelper,
1477
+ wt as SpeedLabel,
1478
+ pt as VesselTag,
1479
+ At as alertHelper
1476
1480
  };