Satellite tracking TUI using ratatui

whoops wrong sign

Changed files
+1 -1
src
+1 -1
src/main.rs
···
let pred_spherical = location::polar_loc_transformer(prediction.position);
-
let long_value = if pred_spherical[0]-(rad_diff_earth_rotation as f32)*180.0/PI < 180.0
+
let long_value = if pred_spherical[0]-(rad_diff_earth_rotation as f32)*180.0/PI < -180.0
{
pred_spherical[0]-(rad_diff_earth_rotation as f32)*180.0/PI + 360.0
} else {