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("");