| 151 | } |
| 152 | |
| 153 | void FormatMercatorAsDMS(m2::PointD const & mercator, std::string & lat, std::string & lon, int dac) |
| 154 | { |
| 155 | lat = FormatLatLonAsDMSImpl(mercator::YToLat(mercator.y), 'N', 'S', dac); |
| 156 | lon = FormatLatLonAsDMSImpl(mercator::XToLon(mercator.x), 'E', 'W', dac); |
| 157 | } |
| 158 | |
| 159 | std::string FormatMercatorAsDMS(m2::PointD const & mercator, int dac) |
| 160 | { |
nothing calls this directly
no test coverage detected