Signal K
    Preparing search index...

    Interface NavigationLights

    Current state of the vessels navigation lights

    interface NavigationLights {
        source?: Source;
        timestamp?: string;
        value?:
            | "anchored"
            | "sailing"
            | "motoring"
            | "towing < 200m"
            | "towing > 200m"
            | "pushing"
            | "fishing"
            | "fishing-hampered"
            | "trawling"
            | "trawling-shooting"
            | "trawling-hauling"
            | "pilotage"
            | "not-under-way"
            | "aground"
            | "restricted manouverability"
            | "restricted manouverability towing < 200m"
            | "restricted manouverability towing > 200m"
            | "restricted manouverability underwater operations"
            | "constrained by draft"
            | "mine clearance"
            | "off"
            | "fault";
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    source?: Source
    timestamp?: string

    RFC 3339 (UTC only without local offset) string representing date and time.

    value?:
        | "anchored"
        | "sailing"
        | "motoring"
        | "towing < 200m"
        | "towing > 200m"
        | "pushing"
        | "fishing"
        | "fishing-hampered"
        | "trawling"
        | "trawling-shooting"
        | "trawling-hauling"
        | "pilotage"
        | "not-under-way"
        | "aground"
        | "restricted manouverability"
        | "restricted manouverability towing < 200m"
        | "restricted manouverability towing > 200m"
        | "restricted manouverability underwater operations"
        | "constrained by draft"
        | "mine clearance"
        | "off"
        | "fault"