standardised-vessel-dataset
Version:
This is an open-source typescript library designed to wrap around and provide additional functionality related to the standardised Vessel Dataset for Noon Reports developed by the Smart Maritime Network.
46 lines (45 loc) • 1.42 kB
TypeScript
/**
* Represents the "Arrival Times" section of SVD.
*/
export type ArrivalTimes = {
/**
* The date and time the ship arrives at a specified location (Actual Time of Arrival, ATA).
*/
Arrival: string;
/**
* The date and time the ship departs from a specified location (Actual Time of Departure, ATD).
*/
Departure: string;
/**
* The date and time the ship estimates to reach the specified location in port (Estimated Time of Arrival, ETA).
*/
LocationEta: string;
/**
* The actual date and time the ship actually reached the specified location in port.
*/
LocationActual: string;
/**
* The date and time the ship estimates to reach the Pilot Boarding Place.
*/
PilotBoardingPlaceEta: string;
/**
* The actual date and time the ship actually reached the Pilot Boarding Place.
*/
PilotBoardingPlaceActual: string;
/**
* The date and time the ship estimates to reach the VTS (Vessel Traffic Service) area.
*/
VtsEta: string;
/**
* The actual date and time the ship actually reached the VTS (Vessel Traffic Service) area.
*/
VtsActual: string;
/**
* The date and time the ship is estimated to arrive at the next port of call.
*/
NextPortEta: string;
/**
* Travel time from departed port to destination port in hours.
*/
VoyageTime: number;
};