Bootssymbol hinzugefügt
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user