From 4aac371bbf5013a8c85e375f9f31304d1e7e8def Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 14 Nov 2015 14:39:10 +0100 Subject: [PATCH] saving some work --- src/algorithms/PVT/libs/geojson_printer.cc | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/algorithms/PVT/libs/geojson_printer.cc b/src/algorithms/PVT/libs/geojson_printer.cc index 2d9f7648a..eaef9ea7c 100644 --- a/src/algorithms/PVT/libs/geojson_printer.cc +++ b/src/algorithms/PVT/libs/geojson_printer.cc @@ -33,6 +33,7 @@ #include "geojson_printer.h" #include #include +#include GeoJSON_Printer::GeoJSON_Printer () {} @@ -46,10 +47,6 @@ GeoJSON_Printer::~GeoJSON_Printer () bool GeoJSON_Printer::set_headers(std::string filename) { - //time_t rawtime; - //struct tm * timeinfo; - //time ( &rawtime ); - //timeinfo = localtime ( &rawtime ); geojson_file.open(filename.c_str()); if (geojson_file.is_open()) { @@ -57,10 +54,12 @@ bool GeoJSON_Printer::set_headers(std::string filename) // Set iostream numeric format and precision geojson_file.setf(geojson_file.fixed, geojson_file.floatfield); geojson_file << std::setprecision(14); - geojson_file << "" << std::endl + geojson_file << "{" << std::endl; + geojson_file << " \"type\": \"Feature\"," << std::endl; + geojson_file << " \"geometry\": {" << std::endl; + geojson_file << " \"type\": \"MultiPoint\"," << std::endl; + geojson_file << " \"coordinates\": [" << std::endl; - << "absolute" << std::endl - << "" << std::endl; return true; } else @@ -94,7 +93,7 @@ bool GeoJSON_Printer::print_position(const std::shared_ptr& position, bo if (geojson_file.is_open()) { - geojson_file << longitude << "," << latitude << "," << height << std::endl; + geojson_file << " [" << longitude << ", " << latitude << ", " << height << "]," << std::endl; return true; } else @@ -109,11 +108,9 @@ bool GeoJSON_Printer::close_file() { if (geojson_file.is_open()) { - geojson_file << "" << std::endl - << "" << std::endl - << "" << std::endl - << "" << std::endl - << ""; + geojson_file << " ]" << std::endl; + geojson_file << " }" << std::endl; + geojson_file << "}" << std::endl; geojson_file.close(); return true; }