gnss_solutions
Version:
Javascript GNSS solution analysis library
56 lines (55 loc) • 1.95 kB
TypeScript
export declare const GPS_TIME: string;
export declare const EPOCH_TIME: string;
export declare const MEAS_H_ERR: string;
export declare const MEAS_V_ERR: string;
export declare const MEAS_SPH_ERR: string;
export declare const EST_H_ERR: string;
export declare const EST_V_ERR: string;
export declare const EST_SPH_ERR: string;
export declare const SAMPLE_LAT: string;
export declare const SAMPLE_LON: string;
export declare const SAMPLE_HGT: string;
export declare const SAMPLE_X: string;
export declare const SAMPLE_Y: string;
export declare const SAMPLE_Z: string;
export declare const SAMPLE_SPP_LAT: string;
export declare const SAMPLE_SPP_LON: string;
export declare const SAMPLE_SPP_HGT: string;
export declare const SAMPLE_SPP_X: string;
export declare const SAMPLE_SPP_Y: string;
export declare const SAMPLE_SPP_Z: string;
export declare const BASELINE_X: string;
export declare const BASELINE_Y: string;
export declare const BASELINE_Z: string;
export declare const BASELINE_NORM: string;
export declare const SAMPLE_DX: string;
export declare const SAMPLE_DY: string;
export declare const SAMPLE_DZ: string;
export declare const SAMPLE_DN: string;
export declare const SAMPLE_DE: string;
export declare const SAMPLE_DD: string;
export declare const FIX_MODE: string;
export declare const enum FIX_MODE_TYPE {
INT_RTK = 0,
FLOAT_RTK = 1,
SPP = 2,
UNKNOWN = 3,
INVALID = 4,
}
export declare const FIX_MODES: FIX_MODE_TYPE[];
export declare const fixModeToString: {
[fixMode: number]: string;
};
export declare const fixModeFromString: {
[str: string]: number;
};
export declare const renderFixMode: {
[fixMode: number]: string;
};
export declare const NUM_SATS: string;
export declare const LATENCY: string;
export declare const POLE_SOUTH: string;
export declare const POLE_NORTH: string;
export declare const POLE_EAST: string;
export declare const POLE_WEST: string;
export declare const COLUMNS: [string];