Bootssymbol hinzugefügt
Test and publish container images / test (push) Successful in 2m20s
Test and publish container images / publish (push) Failing after 4s

This commit is contained in:
BuTzZ
2026-07-26 12:31:49 +02:00
parent c9a20aacd7
commit 55ce94066e
19 changed files with 1969 additions and 122 deletions
+26
View File
@@ -11,6 +11,32 @@ export type VesselProfile = {
cruiseSpeedKn?: number;
};
export type BoatCategory =
| "sailboat"
| "motorboat"
| "motor-sailer"
| "multihull"
| "houseboat"
| "human-powered"
| "other";
/**
* The boat selected in the client. This is deliberately separate from
* VesselProfile: identity and overall length are local profile metadata and
* must not be added to routing requests that do not need them.
*/
export type BoatProfile = {
name: string;
category: BoatCategory;
lengthM: number;
beamM: number;
draughtM: number;
airDraftM: number;
bowRollerHeightM: number;
safetyReserveM: number;
cruiseSpeedKn: number;
};
export type RouteWarningSeverity = "info" | "caution" | "critical";
export type RouteWarning = {