Reverted latitude width

feature/19
Daniel Warner 2011-12-13 21:36:21 +00:00
parent 390adaf224
commit 0d17be39fa
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ public:
{ {
std::stringstream ss; std::stringstream ss;
ss << std::right << std::fixed << std::setprecision(2); 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 << ", Lon: " << std::setw(7) << RadiansToDegrees(longitude);
ss << ", Alt: " << std::setw(9) << altitude; ss << ", Alt: " << std::setw(9) << altitude;
return ss.str(); return ss.str();