diff --git a/search/latlon_match.cpp b/search/latlon_match.cpp index 655757fe80..7857537f7e 100644 --- a/search/latlon_match.cpp +++ b/search/latlon_match.cpp @@ -24,6 +24,11 @@ bool IsDecimalMark(char c) return kDecimalMarks.find(c) != string::npos; } +bool IsNegativeSymbol(char c) +{ + return c == '-'; +} + template void SkipSpaces(Char *& s) { @@ -99,6 +104,7 @@ double EatDouble(char const * str, char ** strEnd) bool gotDigitAfterMark = false; char const * markPos = nullptr; char const * p = str; + double modifier = 1.0; while (true) { if (IsDecimalMark(*p)) @@ -115,6 +121,10 @@ double EatDouble(char const * str, char ** strEnd) else gotDigitBeforeMark = true; } + else if (IsNegativeSymbol(*p)) + { + modifier = -1.0; + } else { break; @@ -129,7 +139,7 @@ double EatDouble(char const * str, char ** strEnd) *strEnd = const_cast(p); auto const x1 = atof(part1.c_str()); auto const x2 = atof(part2.c_str()); - return x1 + x2 * pow(10.0, -static_cast(part2.size())); + return x1 + x2 * modifier * pow(10.0, -static_cast(part2.size())); } return strtod(str, strEnd); diff --git a/search/search_tests/latlon_match_test.cpp b/search/search_tests/latlon_match_test.cpp index c807312ff1..3e9459d891 100644 --- a/search/search_tests/latlon_match_test.cpp +++ b/search/search_tests/latlon_match_test.cpp @@ -46,10 +46,38 @@ UNIT_TEST(LatLon_Match_Smoke) TestAlmostEqual(lat, 10.1); TestAlmostEqual(lon, 20.2); + TEST(MatchLatLonDegree("-10,10, 20,20", lat, lon), ()); + TestAlmostEqual(lat, -10.1); + TestAlmostEqual(lon, 20.2); + + TEST(MatchLatLonDegree("10,10, -20,20", lat, lon), ()); + TestAlmostEqual(lat, 10.1); + TestAlmostEqual(lon, -20.2); + + TEST(MatchLatLonDegree("-10,10, -20,20", lat, lon), ()); + TestAlmostEqual(lat, -10.1); + TestAlmostEqual(lon, -20.2); + + TEST(MatchLatLonDegree("-10,10 20,20", lat, lon), ()); + TestAlmostEqual(lat, -10.1); + TestAlmostEqual(lon, 20.2); + + TEST(MatchLatLonDegree("10,10 -20,20", lat, lon), ()); + TestAlmostEqual(lat, 10.1); + TestAlmostEqual(lon, -20.2); + + TEST(MatchLatLonDegree("-10,10 -20,20", lat, lon), ()); + TestAlmostEqual(lat, -10.1); + TestAlmostEqual(lon, -20.2); + TEST(MatchLatLonDegree("-22.3534 -42.7076\n", lat, lon), ()); TestAlmostEqual(lat, -22.3534); TestAlmostEqual(lon, -42.7076); + TEST(MatchLatLonDegree("-22,3534 -42,7076\n", lat, lon), ()); + TestAlmostEqual(lat, -22.3534); + TestAlmostEqual(lon, -42.7076); + // The ".123" form is not accepted, so our best-effort // parse results in "10" and "20". TEST(MatchLatLonDegree(".10, ,20", lat, lon), ());