kshana 0.15.1

Open, reproducible PNT-resilience simulator with quantum-sensor performance models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0
//! Alternative-PNT (GPS-denied) navigation packs.
//!
//! The map-aided navigators that fix position without GNSS by matching a stored
//! georeferenced field against what the platform's sensors measure along its track.
//! [`terrain`] adds terrain-referenced navigation (TERCOM/SITAN) against an SRTM digital
//! elevation model, and the combined gravity+magnetic+terrain navigator that fuses three
//! scalar field channels — composing the gravity-anomaly field in [`crate::gravimeter`],
//! the IGRF-14 magnetic field in [`crate::igrf`], the map-match likelihood in
//! [`crate::mapmatch`], and the [`crate::particle_filter`] estimator engine.

pub mod terrain;