gnss_solutions
Version:
Javascript GNSS solution analysis library
17 lines (15 loc) • 658 B
TypeScript
/*
* Copyright (c) 2016 Swift Navigation Inc.
* Contact: engineering@swiftnav.com
*
* This source is subject to the license found in the file 'LICENSE' which must
* be be distributed together with this source. All other rights reserved.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
*/
declare module "ecef-projector" {
function project(latitude:number, longitude:number , altitude:number): [number];
function unproject(x:number, y:number , z:number): [number];
}