| 25 | } |
| 26 | |
| 27 | std::string PointToLineString(geometry::PointWithAltitude const & pt) |
| 28 | { |
| 29 | char constexpr kSeparator = ','; |
| 30 | if (pt.GetAltitude() != geometry::kInvalidAltitude) |
| 31 | return PointToString(pt.GetPoint(), kSeparator) + kSeparator + strings::to_string(pt.GetAltitude()); |
| 32 | return PointToString(pt.GetPoint(), kSeparator); |
| 33 | } |
| 34 | |
| 35 | std::string PointToGxString(geometry::PointWithAltitude const & pt) |
| 36 | { |
no test coverage detected