From 826469876df25fbaee2abea3465cd600e13aba09 Mon Sep 17 00:00:00 2001 From: Rasbats Date: Sat, 16 May 2020 10:34:11 +0100 Subject: [PATCH] to eliminate refpoints which also have lat/lon attributes --- src/RTZassistPanelMain.cpp | 49 ++++++++++++++++++++++++-------------- src/RTZassistPanelMain.h | 1 + 2 files changed, 32 insertions(+), 18 deletions(-) diff --git a/src/RTZassistPanelMain.cpp b/src/RTZassistPanelMain.cpp index 29d99c7..6eb6565 100644 --- a/src/RTZassistPanelMain.cpp +++ b/src/RTZassistPanelMain.cpp @@ -467,6 +467,8 @@ int RTZassistPanelMain::ExportGPX() { vector myVectorWaypoints; // end of placeholders + wxString isRefpoint; + string readFile = "dom_out.txt"; // intermediate file - make temporary? vector myVector; @@ -484,7 +486,7 @@ int RTZassistPanelMain::ExportGPX() { int c = myVector.size(); for (int z = 0; z < c; z++) { - + wxStringTokenizer tokenizer(myVector[z], ":"); while (tokenizer.HasMoreTokens()) { @@ -495,6 +497,15 @@ int RTZassistPanelMain::ExportGPX() { myRoute.routeName = tokenizer.GetNextToken(); } + myWaypoint.b_isRefpoint = false; + + if (token == "tag") { + isRefpoint = tokenizer.GetNextToken(); + if (isRefpoint == "refpoint") { + myWaypoint.b_isRefpoint = true; + } + } + if (token == "id") { myWaypoint.id = tokenizer.GetNextToken(); } @@ -510,8 +521,9 @@ int RTZassistPanelMain::ExportGPX() { if (token == "lon") { myWaypoint.lon = tokenizer.GetNextToken(); - myRoute.waypoints.push_back(myWaypoint); - + // + if(!myWaypoint.b_isRefpoint) myRoute.waypoints.push_back(myWaypoint); // this eliminates RTZ refpoints, which have lat/lon and could be misinterpreted as waypoints. + // } } } @@ -564,21 +576,22 @@ int RTZassistPanelMain::ExportGPX() { for (int i = 0; i < waypointCount; i++) { tinyxml2::XMLElement*m_waypoint = doc.NewElement("rtept"); - Route->InsertEndChild(m_waypoint); - m_waypoint->SetAttribute("lat", myRoute.waypoints[i].lat.mb_str()); - m_waypoint->SetAttribute("lon", myRoute.waypoints[i].lon.mb_str()); - - tinyxml2::XMLElement* name = doc.NewElement("name"); - m_waypoint->InsertFirstChild(name); - name->SetText(myRoute.waypoints[i].name.mb_str()); - - tinyxml2::XMLElement* symbol = doc.NewElement("sym"); - m_waypoint->InsertFirstChild(symbol); - symbol->SetText("diamond"); - - tinyxml2::XMLElement* type = doc.NewElement("type"); - m_waypoint->InsertFirstChild(type); - type->SetText("WPT"); + + Route->InsertEndChild(m_waypoint); + m_waypoint->SetAttribute("lat", myRoute.waypoints[i].lat.mb_str()); + m_waypoint->SetAttribute("lon", myRoute.waypoints[i].lon.mb_str()); + + tinyxml2::XMLElement* name = doc.NewElement("name"); + m_waypoint->InsertFirstChild(name); + name->SetText(myRoute.waypoints[i].name.mb_str()); + + tinyxml2::XMLElement* symbol = doc.NewElement("sym"); + m_waypoint->InsertFirstChild(symbol); + symbol->SetText("diamond"); + + tinyxml2::XMLElement* type = doc.NewElement("type"); + m_waypoint->InsertFirstChild(type); + type->SetText("WPT"); } diff --git a/src/RTZassistPanelMain.h b/src/RTZassistPanelMain.h index deaa9e7..241f5d3 100644 --- a/src/RTZassistPanelMain.h +++ b/src/RTZassistPanelMain.h @@ -40,6 +40,7 @@ class waypoint wxString id; wxString name; wxString lat, lon; + bool b_isRefpoint; }; class route