diff --git a/src/WorldCoordinateSystem.zig b/src/WorldCoordinateSystem.zig index 20765ae..15feabe 100644 --- a/src/WorldCoordinateSystem.zig +++ b/src/WorldCoordinateSystem.zig @@ -17,6 +17,7 @@ z: f64, /// Currently this function assumes a fully parsed TLE already pub fn fromTle(tle: Tle, t0: f64, celestial_object: constants.CelestialBody) WorldCoordinateSystem { + std.log.info("TLE PARSING, {}", .{tle}); const orbital_elements = calculations.tleToOrbitalElements(tle);