use log::info;
use rstest::*;
use std::str::FromStr;
use crate::{
navigation::apriori::Apriori,
prelude::{Almanac, Config, Epoch, Frame, Method, PVTSolutionType, Solver, UserParameters},
tests::{
ephemeris::NullEph, init_logger, time::NullTime, CandidatesBuilder, OrbitsData,
TestEnvironment, TestSpacebornBiases, ROVER_REFERENCE_COORDS_ECEF_M,
},
};
#[fixture]
fn build_almanac() -> Almanac {
use crate::tests::almanac;
almanac()
}
#[fixture]
fn build_earth_frame() -> Frame {
use crate::tests::earth_frame;
earth_frame()
}
#[fixture]
fn build_initial_apriori() -> Apriori {
use crate::tests::rover_reference_apriori_at_ref_epoch;
rover_reference_apriori_at_ref_epoch()
}
#[test]
#[ignore]
fn static_ppp() {
init_logger();
let cfg = Config::default().with_navigation_method(Method::PPP);
let default_params = UserParameters::default();
let almanac = build_almanac();
let earth_frame = build_earth_frame();
let null_time = NullTime {};
let null_eph = NullEph {};
let environment = TestEnvironment::new();
let space_biases = TestSpacebornBiases::build();
let orbits_data = OrbitsData::new(earth_frame);
let mut solver = Solver::new_survey(
almanac,
earth_frame,
cfg,
null_eph.into(),
orbits_data.into(),
space_biases.into(),
environment.into(),
null_time,
);
for (nth, epoch_str) in [
"2020-06-25T00:00:00 GPST",
"2020-06-25T00:15:00 GPST",
]
.iter()
.enumerate()
{
let t_gpst = Epoch::from_str(epoch_str).unwrap();
let candidates = CandidatesBuilder::build_rover_at(t_gpst);
assert!(
!candidates.is_empty(),
"no measurements to propose at \"{epoch_str}\""
);
let status = solver.ppp(t_gpst, default_params, &candidates);
match status {
Err(e) => panic!("Static PPP process failed with invalid error: {e}"),
Ok(pvt) => {
info!("Solution #{} {:#?}", nth + 1, pvt);
let (pos_x_m, pos_y_m, pos_z_m) = pvt.pos_m;
let (expected_x_m, expected_y_m, expected_z_m) = ROVER_REFERENCE_COORDS_ECEF_M;
let (err_x_m, err_y_m, err_z_m) = (
(pos_x_m - expected_x_m).abs(),
(pos_y_m - expected_y_m).abs(),
(pos_z_m - expected_z_m).abs(),
);
assert!(
err_x_m < 100.0,
"epoch={epoch_str} - x error={err_x_m:.4}m too large"
);
assert!(
err_y_m < 100.0,
"epoch={epoch_str} - y error={err_y_m:.4}m too large"
);
assert!(
err_z_m < 100.0,
"epoch={epoch_str} - z error={err_z_m:.4}m too large"
);
assert_eq!(pvt.solution_type, PVTSolutionType::PPP);
info!(
"{} (static) ppp (survey) error: x={:.4}m y={:.4}m z={:.4}m, GDOP={} TDOP={}",
epoch_str, err_x_m, err_y_m, err_z_m, pvt.gdop, pvt.tdop,
);
},
}
}
}