From 4ce7739453683e5b3fc67e5662d5df3d95275512 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 23 Jul 2010 13:00:16 +0000 Subject: [PATCH] Lat/Lon mixed up in output of locate command. Thanks to Ted Rosenbaum. --- HttpServer/request_handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpServer/request_handler.h b/HttpServer/request_handler.h index 9b346be05..8ce254614 100644 --- a/HttpServer/request_handler.h +++ b/HttpServer/request_handler.h @@ -74,7 +74,7 @@ public: std::stringstream out2; out2 << setprecision(10); - out2 << "" << data->lat / 100000. << "," << data->lon / 100000. << ""; + out2 << "" << data->lon / 100000. << "," << data->lat / 100000. << ""; rep.content.append(out2.str()); rep.content.append(""); rep.content.append("");