Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions swiftnav/src/geoid.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
// Copyright (c) 2020-2021 Swift Navigation Inc.
// Contact: Swift Navigation <dev@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.
//! Geoid height calculation
//!
//! GNSS positions have a height which is usually referenced to a ellipsoid,
//! a smooth surface which very roughly approximates the mean sea level. This
//! ellipsoid can deviate by a large amount for the actual local mean sea level
//! due to the variations in the local gravitational field. A geoid model is
//! built to better approximate these variations in mean sea level, and can be
//! used to give a height relative to mean sea level which can be more helpful
//! to an end user.

use crate::coords::LLHRadians;

/// List of potential Geoid models used
Expand Down