Interface Touchdown

Written when landing on a planet surface.

interface Touchdown {
    Body?: string;
    BodyID?: number;
    Latitude?: number;
    Longitude?: number;
    Multicrew?: boolean;
    NearestDestination?: string;
    NearestDestination_Localised?: string;
    OnPlanet?: boolean;
    OnStation?: boolean;
    PlayerControlled?: boolean;
    StarSystem?: string;
    SystemAddress?: number;
    Taxi?: boolean;
    event: "Touchdown";
    timestamp: string;
}

Hierarchy (view full)

Properties

Body?: string
BodyID?: number
Latitude?: number
Longitude?: number
Multicrew?: boolean
NearestDestination?: string

Included if within 50 km of a location listed in the nav panel.

NearestDestination_Localised?: string
OnPlanet?: boolean
OnStation?: boolean
PlayerControlled?: boolean

False if ship was recalled from SRV, true if player is landing.

StarSystem?: string
SystemAddress?: number
Taxi?: boolean
event: "Touchdown"

The type of event.

timestamp: string

The time in GMT, ISO 8601.