From 0d17be39fa14b6ae4301f8d6e6711580e9aa1e77 Mon Sep 17 00:00:00 2001 From: Daniel Warner Date: Tue, 13 Dec 2011 21:36:21 +0000 Subject: [PATCH] Reverted latitude width --- CoordGeodetic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CoordGeodetic.h b/CoordGeodetic.h index 3a55d5b..44d5c21 100644 --- a/CoordGeodetic.h +++ b/CoordGeodetic.h @@ -59,7 +59,7 @@ public: { std::stringstream ss; ss << std::right << std::fixed << std::setprecision(2); - ss << "Lat: " << std::setw(6) << RadiansToDegrees(latitude); + ss << "Lat: " << std::setw(7) << RadiansToDegrees(latitude); ss << ", Lon: " << std::setw(7) << RadiansToDegrees(longitude); ss << ", Alt: " << std::setw(9) << altitude; return ss.str();