gnss_solutions
Version:
Javascript GNSS solution analysis library
50 lines (35 loc) • 1.61 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.time = exports.table = exports.errors = exports.csv = exports.coords = exports.constants = undefined;
var _constants = require("./constants");
var constants = _interopRequireWildcard(_constants);
var _coords = require("./coords");
var coords = _interopRequireWildcard(_coords);
var _csv = require("./formats/csv");
var csv = _interopRequireWildcard(_csv);
var _errors = require("./errors");
var errors = _interopRequireWildcard(_errors);
var _solution_table = require("./solution_table");
var table = _interopRequireWildcard(_solution_table);
var _time = require("./time");
var time = _interopRequireWildcard(_time);
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
/*
* 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.
*/
exports.constants = constants;
exports.coords = coords;
exports.csv = csv;
exports.errors = errors;
exports.table = table;
exports.time = time;