ntrip-sourcetable-parser - v1.0.8
    Preparing search index...

    Interface NtripConfig

    Configuration options for the NTRIP sourcetable parser.

    interface NtripConfig {
        host: string;
        password?: string;
        port: number;
        position?: { lat: number; lon: number };
        username?: string;
        version?: "1.0" | "2.0";
    }
    Index

    Properties

    host: string

    NTRIP caster hostname (required)

    password?: string

    Optional: password for authentication

    port: number

    NTRIP caster port (required)

    position?: { lat: number; lon: number }

    Optional: position for VRS in the format { lat, lon }

    username?: string

    Optional: username for authentication

    version?: "1.0" | "2.0"

    Optional: NTRIP version ("1.0" or "2.0", default: "2.0")